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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  background: #D0CFDE;
  overflow-x: hidden;
  color: #333;
  font-size: min(18px, calc((18 / 1600) * 100vw));
  letter-spacing: min(1px, calc((1 / 1600) * 100vw));
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  body {
    font-size: calc((18 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  body {
    letter-spacing: calc((1 / 700) * 100vw);
  }
}
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  background: url(../img/bg.webp);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  top: 0;
  left: 0;
}

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

h2 {
  opacity: 0;
}

.page-layout {
  position: relative;
  width: 100vw;
  height: 100vh;
}
@media (max-width: 768px) {
  .page-layout {
    height: auto;
  }
}

.logo_icn {
  position: fixed;
  width: min(66px, calc((66 / 1600) * 100vw));
  left: min(25px, calc((25 / 1600) * 100vw));
  top: min(45px, calc((45 / 1600) * 100vw));
  filter: drop-shadow(0px 0px 1px #777);
}
@media (max-width: 768px) {
  .logo_icn {
    width: calc((66 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .logo_icn {
    left: calc((25 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .logo_icn {
    top: calc((45 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .logo_icn {
    display: none;
  }
}

.side-menu {
  position: fixed;
  left: min(25px, calc((25 / 1600) * 100vw));
  top: 60%;
  transform: translateY(-50%);
  z-index: 1000;
}
@media (max-width: 768px) {
  .side-menu {
    left: calc((25 / 700) * 100vw);
  }
}
.side-menu .menu-list {
  list-style: none;
  font-family: "Noto Serif", serif;
}
.side-menu .menu-list li {
  margin-bottom: min(45px, calc((45 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .side-menu .menu-list li {
    margin-bottom: calc((45 / 700) * 100vw);
  }
}
.side-menu .menu-list li a {
  color: #2F1843;
  text-decoration: none;
  font-size: min(28px, calc((28 / 1600) * 100vw));
  font-weight: 300;
  transition: color 0.3s ease;
  font-size: min(34px, calc((34 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .side-menu .menu-list li a {
    font-size: calc((28 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .side-menu .menu-list li a {
    font-size: calc((34 / 700) * 100vw);
  }
}
.side-menu .menu-list li a:hover {
  color: #fff;
  filter: drop-shadow(0px 0px 1.5px #777);
}
.side-menu .menu-list li a.active {
  color: #fff;
  font-weight: 400;
  filter: drop-shadow(0px 0px 1px #777);
}
@media (max-width: 768px) {
  .side-menu {
    display: none;
  }
}

.hamburger {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.5));
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: left 0.3s ease;
  padding: min(180px, calc((180 / 1600) * 100vw)) min(30px, calc((30 / 1600) * 100vw)) min(30px, calc((30 / 1600) * 100vw)) min(30px, calc((30 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .mobile-menu {
    padding: calc((180 / 700) * 100vw) calc((30 / 700) * 100vw) calc((30 / 700) * 100vw) calc((30 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu ul li {
  margin-bottom: min(30px, calc((30 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .mobile-menu ul li {
    margin-bottom: calc((30 / 700) * 100vw);
  }
}
.mobile-menu ul li a {
  color: #8B7355;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  font-size: min(34px, calc((34 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .mobile-menu ul li a {
    font-size: calc((34 / 700) * 100vw);
  }
}
.mobile-menu ul li a:hover, .mobile-menu ul li a.active {
  color: #6B5542;
  font-weight: 500;
}

.sns-icons {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}
.sns-icons .sns-list {
  list-style: none;
}
.sns-icons .sns-list li {
  margin-bottom: min(20px, calc((20 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .sns-icons .sns-list li {
    margin-bottom: calc((20 / 700) * 100vw);
  }
}
.sns-icons .sns-list li a {
  display: block;
  width: min(40px, calc((40 / 1600) * 100vw));
  aspect-ratio: 1/1;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .sns-icons .sns-list li a {
    width: calc((40 / 700) * 100vw);
  }
}
.sns-icons .sns-list li a:hover {
  opacity: 1;
}
.sns-icons .sns-list li a svg {
  width: 100%;
  aspect-ratio: 1/1;
  color: #2F1843;
  transition: color 0.3s ease;
}
.sns-icons .sns-list li a:hover svg {
  color: #777;
}
@media (max-width: 768px) {
  .sns-icons {
    display: none;
  }
}

header {
  background: #151515;
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: min(18px, calc((18 / 1600) * 100vw));
  text-align: center;
  padding: min(4px, calc((4 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
}
@media (max-width: 768px) {
  header {
    font-size: calc((18 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  header {
    padding: calc((4 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}

.container {
  width: 43.75vw;
  max-width: 700px;
  margin-left: 18%;
  background: #D0CFDE;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

.side-video {
  position: fixed;
  right: 6%;
  bottom: 0;
  width: 25.641025641vw;
  max-width: 600px;
  aspect-ratio: 600/1066;
  z-index: 5;
  overflow: hidden;
  clip-path: polygon(0 15%, 30% 0, 100% 0, 100% 100%, 70% 100%, 0 100%);
}
.side-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .side-video {
    display: none;
  }
}

.fv {
  position: relative;
  overflow: hidden;
}
.fv .content {
  position: relative;
  height: 100%;
}
.fv .text {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 76%;
  transform: translate(-50%, -50%);
}
.fv .text h1 {
  font-family: "Noto Serif", serif;
  font-size: min(46px, calc((46 / 1600) * 100vw));
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: min(10px, calc((10 / 1600) * 100vw));
  color: #fff;
  text-align: center;
  filter: drop-shadow(0px 0px 9px #050246) drop-shadow(0px 0px 9px #050246);
  letter-spacing: min(6px, calc((6 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .fv .text h1 {
    font-size: calc((46 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .fv .text h1 {
    margin-bottom: calc((10 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .fv .text h1 {
    letter-spacing: calc((6 / 700) * 100vw);
  }
}
.fv .text h1 span.emph {
  font-size: min(66px, calc((66 / 1600) * 100vw));
  letter-spacing: min(10px, calc((10 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .fv .text h1 span.emph {
    font-size: calc((66 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .fv .text h1 span.emph {
    letter-spacing: calc((10 / 700) * 100vw);
  }
}
.fv .logo img {
  width: min(320px, calc((320 / 1600) * 100vw));
  height: auto;
  display: block;
  margin: auto;
}
@media (max-width: 768px) {
  .fv .logo img {
    width: calc((320 / 700) * 100vw);
  }
}

.brand-collab_area {
  position: relative;
  z-index: 0;
}
.brand-collab_area::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/brand-collab_bg.webp) no-repeat;
  background-size: cover;
  background-position: 0 0;
  z-index: -1;
}

.brand-collab {
  padding: min(110px, calc((110 / 1600) * 100vw)) min(40px, calc((40 / 1600) * 100vw)) min(80px, calc((80 / 1600) * 100vw));
  background: transparent;
  text-align: center;
}
@media (max-width: 768px) {
  .brand-collab {
    padding: calc((110 / 700) * 100vw) calc((40 / 700) * 100vw) calc((80 / 700) * 100vw);
  }
}
.brand-collab .collab-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(30px, calc((30 / 1600) * 100vw));
  max-width: min(400px, calc((400 / 1600) * 100vw));
  margin: 0 auto;
}
@media (max-width: 768px) {
  .brand-collab .collab-content {
    gap: calc((30 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .brand-collab .collab-content {
    max-width: calc((400 / 700) * 100vw);
  }
}
.brand-collab .collab-item {
  text-align: center;
}
.brand-collab .collab-item img {
  width: 100%;
  max-width: min(254px, calc((254 / 1600) * 100vw));
  height: auto;
  margin-bottom: min(15px, calc((15 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .brand-collab .collab-item img {
    max-width: calc((254 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .brand-collab .collab-item img {
    margin-bottom: calc((15 / 700) * 100vw);
  }
}
.brand-collab .collab-cross {
  margin-top: min(20px, calc((20 / 1600) * 100vw));
  margin-bottom: min(20px, calc((20 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .brand-collab .collab-cross {
    margin-top: calc((20 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .brand-collab .collab-cross {
    margin-bottom: calc((20 / 700) * 100vw);
  }
}
.brand-collab .collab-cross img {
  width: min(39px, calc((39 / 1600) * 100vw));
  height: auto;
}
@media (max-width: 768px) {
  .brand-collab .collab-cross img {
    width: calc((39 / 700) * 100vw);
  }
}

.logo-section {
  padding: min(80px, calc((80 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
  background: #D0CFDE;
}
@media (max-width: 768px) {
  .logo-section {
    padding: calc((80 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
.logo-section .logo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(40px, calc((40 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .logo-section .logo-content {
    gap: calc((40 / 700) * 100vw);
  }
}
.logo-section .logo-item {
  text-align: center;
}
.logo-section .logo-item img {
  width: min(120px, calc((120 / 1600) * 100vw));
  height: auto;
  margin-bottom: min(10px, calc((10 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .logo-section .logo-item img {
    width: calc((120 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .logo-section .logo-item img {
    margin-bottom: calc((10 / 700) * 100vw);
  }
}
.logo-section .logo-item p {
  font-size: min(19px, calc((19 / 1600) * 100vw));
  font-weight: 500;
  color: #8B7355;
}
@media (max-width: 768px) {
  .logo-section .logo-item p {
    font-size: calc((19 / 700) * 100vw);
  }
}
.logo-section .logo-cross img {
  width: min(30px, calc((30 / 1600) * 100vw));
  height: auto;
}
@media (max-width: 768px) {
  .logo-section .logo-cross img {
    width: calc((30 / 700) * 100vw);
  }
}

.mobile-video-section {
  display: none;
  padding: 0;
  padding-top: min(100px, calc((100 / 1600) * 100vw));
  text-align: center;
  background: transparent;
}
@media (max-width: 768px) {
  .mobile-video-section {
    padding-top: calc((100 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .mobile-video-section {
    display: block;
    position: relative;
    z-index: 0;
  }
  .mobile-video-section::after {
    content: "";
    position: absolute;
    background: url(../img/logo_bg.webp) no-repeat;
    width: min(515px, calc((515 / 1600) * 100vw));
    height: 100%;
    left: min(-106px, calc((-106 / 1600) * 100vw));
    top: min(-65px, calc((-65 / 1600) * 100vw));
    z-index: -1;
    background-size: contain;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .mobile-video-section::after {
    width: calc((515 / 700) * 100vw);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .mobile-video-section::after {
    left: calc((-106 / 700) * 100vw);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .mobile-video-section::after {
    top: calc((-65 / 700) * 100vw);
  }
}
.mobile-video-section .mobile-video-container {
  width: min(600px, calc((600 / 1600) * 100vw));
  margin: 0 auto;
  clip-path: polygon(0 15%, 30% 0, 100% 0, 100% 100%, 70% 100%, 0 100%);
  overflow: hidden;
  padding-bottom: min(100px, calc((100 / 1600) * 100vw));
  position: relative;
}
@media (max-width: 768px) {
  .mobile-video-section .mobile-video-container {
    width: calc((600 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .mobile-video-section .mobile-video-container {
    padding-bottom: calc((100 / 700) * 100vw);
  }
}
.mobile-video-section .mobile-video-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.mobile-video-section .mobile-video-container .mobile-video-mute-btn {
  position: absolute;
  bottom: min(120px, calc((120 / 1600) * 100vw));
  right: min(20px, calc((20 / 1600) * 100vw));
  width: min(44px, calc((44 / 1600) * 100vw));
  height: min(44px, calc((44 / 1600) * 100vw));
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10;
}
@media (max-width: 768px) {
  .mobile-video-section .mobile-video-container .mobile-video-mute-btn {
    bottom: calc((120 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .mobile-video-section .mobile-video-container .mobile-video-mute-btn {
    right: calc((20 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .mobile-video-section .mobile-video-container .mobile-video-mute-btn {
    width: calc((44 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .mobile-video-section .mobile-video-container .mobile-video-mute-btn {
    height: calc((44 / 700) * 100vw);
  }
}
.mobile-video-section .mobile-video-container .mobile-video-mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.mobile-video-section .mobile-video-container .mobile-video-mute-btn svg {
  width: min(24px, calc((24 / 1600) * 100vw));
  height: min(24px, calc((24 / 1600) * 100vw));
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .mobile-video-section .mobile-video-container .mobile-video-mute-btn svg {
    width: calc((24 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .mobile-video-section .mobile-video-container .mobile-video-mute-btn svg {
    height: calc((24 / 700) * 100vw);
  }
}
.mobile-video-section .mobile-video-container .mobile-video-mute-btn .mute-icon {
  display: none !important;
  opacity: 0;
}
.mobile-video-section .mobile-video-container .mobile-video-mute-btn .unmute-icon {
  display: block !important;
  opacity: 1;
}
.mobile-video-section .mobile-video-container .mobile-video-mute-btn.unmuted .mute-icon {
  display: block !important;
  opacity: 1;
}
.mobile-video-section .mobile-video-container .mobile-video-mute-btn.unmuted .unmute-icon {
  display: none !important;
  opacity: 0;
}

.concept-section {
  padding: min(140px, calc((140 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(420px, calc((420 / 1600) * 100vw));
  background: #D0CFDE;
  text-align: center;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .concept-section {
    padding: calc((140 / 700) * 100vw) calc((0 / 700) * 100vw) calc((420 / 700) * 100vw);
  }
}
.concept-section::after {
  content: "";
  position: absolute;
  background: url(../img/concept_bg.webp) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.95;
  z-index: -1;
}
.concept-section .title {
  margin: 0 auto;
  margin-bottom: min(100px, calc((100 / 1600) * 100vw));
  width: min(168px, calc((168 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .concept-section .title {
    margin-bottom: calc((100 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .concept-section .title {
    width: calc((168 / 700) * 100vw);
  }
}
.concept-section .concept-subtitle {
  font-family: "Noto Serif", serif;
  font-size: min(37px, calc((37 / 1600) * 100vw));
  color: #fff;
  margin-bottom: min(70px, calc((70 / 1600) * 100vw));
  font-weight: 300;
  letter-spacing: min(4px, calc((4 / 1600) * 100vw));
  filter: drop-shadow(0px 0px 6px #301546) drop-shadow(0px 0px 20px #301546);
  /*box-shadow: 0 0px 55px #fff;*/
  /*background: rgba(86, 79, 153, 0.6);*/
}
@media (max-width: 768px) {
  .concept-section .concept-subtitle {
    font-size: calc((37 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .concept-section .concept-subtitle {
    margin-bottom: calc((70 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .concept-section .concept-subtitle {
    letter-spacing: calc((4 / 700) * 100vw);
  }
}
.concept-section .concept-subtitle span {
  font-size: min(48px, calc((48 / 1600) * 100vw));
  letter-spacing: min(5px, calc((5 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .concept-section .concept-subtitle span {
    font-size: calc((48 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .concept-section .concept-subtitle span {
    letter-spacing: calc((5 / 700) * 100vw);
  }
}
.concept-section .concept-text {
  font-family: "Noto Serif", serif;
  color: #fff;
  margin: 0 auto;
  line-height: 2.7;
  font-size: min(23px, calc((23 / 1600) * 100vw));
  filter: drop-shadow(0px 0px 3px #301546) drop-shadow(0px 0px 20px #301546);
}
@media (max-width: 768px) {
  .concept-section .concept-text {
    font-size: calc((23 / 700) * 100vw);
  }
}

.image-section {
  background: #000;
  position: relative;
  height: min(1925px, calc((1925 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .image-section {
    height: calc((1925 / 700) * 100vw);
  }
}
.image-section .image-content {
  position: absolute;
  top: -13.5%;
}

#top_pg .lineup-section {
  padding: min(0px, calc((0 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(280px, calc((280 / 1600) * 100vw));
  background: #151515;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  #top_pg .lineup-section {
    padding: calc((0 / 700) * 100vw) calc((0 / 700) * 100vw) calc((280 / 700) * 100vw);
  }
}
#top_pg .lineup-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/top_lineup_bg.webp) no-repeat;
  background-size: cover;
  background-position: 0 95%;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#top_pg .lineup-section::after {
  content: "";
  position: absolute;
  bottom: -0.01%;
  left: 0;
  right: 0;
  height: min(120px, calc((120 / 1600) * 100vw));
  background: linear-gradient(153deg, #9f99ca 0%, #938ac4 88%, #9087c1 100%);
  --clip-size: min(120px, calc((120 / 1600) * 100vw));
  clip-path: polygon(0% var(--clip-size), 100% 0px, 100% 0px, 100% var(--clip-size));
  z-index: 1;
}
@media (max-width: 768px) {
  #top_pg .lineup-section::after {
    height: calc((120 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section::after {
    --clip-size: calc((120 / 700) * 100vw);
  }
}
#top_pg .lineup-section .title {
  text-align: center;
  margin: 0 auto;
  margin-bottom: min(100px, calc((100 / 1600) * 100vw));
  width: min(180px, calc((180 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .title {
    margin-bottom: calc((100 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .title {
    width: calc((180 / 700) * 100vw);
  }
}
#top_pg .lineup-section .title img {
  max-width: 100%;
  height: auto;
}
#top_pg .lineup-section .lens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(30px, calc((30 / 1600) * 100vw));
  margin-bottom: min(100px, calc((100 / 1600) * 100vw));
  width: min(620px, calc((620 / 1600) * 100vw));
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  #top_pg .lineup-section .lens-grid {
    gap: calc((30 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .lens-grid {
    margin-bottom: calc((100 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .lens-grid {
    width: calc((620 / 700) * 100vw);
  }
}
#top_pg .lineup-section .lens-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}
#top_pg .lineup-section .lens-item.active {
  transform: scale(1.1);
}
#top_pg .lineup-section .lens-item img {
  width: min(160px, calc((160 / 1600) * 100vw));
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  #top_pg .lineup-section .lens-item img {
    width: calc((160 / 700) * 100vw);
  }
}
#top_pg .lineup-section .lens-item:hover img {
  transform: translateY(-5px);
}
#top_pg .lineup-section .lens-item p {
  color: #f6f6f6;
  margin-bottom: min(5px, calc((5 / 1600) * 100vw));
  font-weight: 500;
  letter-spacing: min(0.7px, calc((0.7 / 1600) * 100vw));
  font-size: min(20px, calc((20 / 1600) * 100vw));
  font-family: "Noto Serif", serif;
}
@media (max-width: 768px) {
  #top_pg .lineup-section .lens-item p {
    margin-bottom: calc((5 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .lens-item p {
    letter-spacing: calc((0.7 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .lens-item p {
    font-size: calc((20 / 700) * 100vw);
  }
}
#top_pg .lineup-section .lens-item .category {
  display: inline-block;
  font-size: min(11px, calc((11 / 1600) * 100vw));
  margin-top: min(8px, calc((8 / 1600) * 100vw));
  position: absolute;
  top: -5%;
  left: -10%;
  color: white;
  background: #7773AC;
  padding: min(5px, calc((5 / 1600) * 100vw)) min(10px, calc((10 / 1600) * 100vw));
  border-radius: 50px;
  font-weight: 400;
  line-height: 1.2;
  transform: rotate(-15deg);
}
@media (max-width: 768px) {
  #top_pg .lineup-section .lens-item .category {
    font-size: calc((11 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .lens-item .category {
    margin-top: calc((8 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .lens-item .category {
    padding: calc((5 / 700) * 100vw) calc((10 / 700) * 100vw);
  }
}
#top_pg .lineup-section .slider-section {
  margin-bottom: min(120px, calc((120 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slider-section {
    margin-bottom: calc((120 / 700) * 100vw);
  }
}
#top_pg .lineup-section .slider-section .more-btn-wrapper {
  text-align: center;
  margin-top: min(40px, calc((40 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slider-section .more-btn-wrapper {
    margin-top: calc((40 / 700) * 100vw);
  }
}
#top_pg .lineup-section .slider-section .more-btn {
  display: inline-block;
  background: #7262A8;
  color: #fff;
  border: 1px solid #7262A8;
  text-decoration: none;
  padding: min(14px, calc((14 / 1600) * 100vw));
  border-radius: 50px;
  font-weight: 500;
  transition: background 0.3s ease;
  width: min(270px, calc((270 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slider-section .more-btn {
    padding: calc((14 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slider-section .more-btn {
    width: calc((270 / 700) * 100vw);
  }
}
#top_pg .lineup-section .slider-section .more-btn:hover {
  background: #fff;
  color: #7262A8;
}
#top_pg .lineup-section .slider-container {
  position: relative;
  overflow: hidden;
}
#top_pg .lineup-section .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(40px, calc((40 / 1600) * 100vw));
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #7262A8;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: min(20px, calc((20 / 1600) * 100vw));
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slider-arrow {
    width: calc((40 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slider-arrow {
    font-size: calc((20 / 700) * 100vw);
  }
}
#top_pg .lineup-section .slider-arrow:hover {
  background: white;
  color: #6B5542;
  transform: translateY(-50%) scale(1.1);
}
#top_pg .lineup-section .slider-arrow.slider-arrow-left {
  left: min(50px, calc((50 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slider-arrow.slider-arrow-left {
    left: calc((50 / 700) * 100vw);
  }
}
#top_pg .lineup-section .slider-arrow.slider-arrow-right {
  right: min(50px, calc((50 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slider-arrow.slider-arrow-right {
    right: calc((50 / 700) * 100vw);
  }
}
#top_pg .lineup-section .slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
#top_pg .lineup-section .slide {
  min-width: 100%;
  padding: min(40px, calc((40 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slide {
    padding: calc((40 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
#top_pg .lineup-section .slide .slide-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
#top_pg .lineup-section .slide .eye-demo {
  position: relative;
}
#top_pg .lineup-section .slide .eye-demo img {
  width: min(450px, calc((450 / 1600) * 100vw));
  object-fit: cover;
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slide .eye-demo img {
    width: calc((450 / 700) * 100vw);
  }
}
#top_pg .lineup-section .slider-dots {
  display: flex;
  justify-content: center;
  gap: min(10px, calc((10 / 1600) * 100vw));
  padding: min(20px, calc((20 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slider-dots {
    gap: calc((10 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slider-dots {
    padding: calc((20 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
#top_pg .lineup-section .slider-dots .dot {
  width: min(15px, calc((15 / 1600) * 100vw));
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  border: 0.5px solid #333;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  #top_pg .lineup-section .slider-dots .dot {
    width: calc((15 / 700) * 100vw);
  }
}
#top_pg .lineup-section .slider-dots .dot.active {
  background: #ae9fe2;
}
#top_pg .lineup-section .lens-spec {
  margin-bottom: min(80px, calc((80 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .lens-spec {
    margin-bottom: calc((80 / 700) * 100vw);
  }
}
#top_pg .lineup-section .product-info-section {
  background: white;
  --radius-size: min(100px, calc((100 / 1600) * 100vw));
  border-radius: 0 var(--radius-size) 0 var(--radius-size);
  padding: min(50px, calc((50 / 1600) * 100vw));
  margin: auto;
  width: min(557px, calc((557 / 1600) * 100vw));
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  #top_pg .lineup-section .product-info-section {
    --radius-size: calc((100 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .product-info-section {
    padding: calc((50 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .product-info-section {
    width: calc((557 / 700) * 100vw);
  }
}
#top_pg .lineup-section .product-info-section h3 {
  color: #7773AC;
  margin-bottom: min(30px, calc((30 / 1600) * 100vw));
  font-size: min(26px, calc((26 / 1600) * 100vw));
  text-align: center;
  font-weight: 400;
  border-bottom: 1px solid;
  padding-bottom: min(30px, calc((30 / 1600) * 100vw));
  letter-spacing: min(2.5px, calc((2.5 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .product-info-section h3 {
    margin-bottom: calc((30 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .product-info-section h3 {
    font-size: calc((26 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .product-info-section h3 {
    padding-bottom: calc((30 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .product-info-section h3 {
    letter-spacing: calc((2.5 / 700) * 100vw);
  }
}
#top_pg .lineup-section .product-info-section .info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: min(30px, calc((30 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .product-info-section .info-table {
    margin-bottom: calc((30 / 700) * 100vw);
  }
}
#top_pg .lineup-section .product-info-section .info-table td {
  padding: min(15px, calc((15 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
  border-bottom: 1px solid #f0f0f0;
  font-size: min(20px, calc((20 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .product-info-section .info-table td {
    padding: calc((15 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #top_pg .lineup-section .product-info-section .info-table td {
    font-size: calc((20 / 700) * 100vw);
  }
}
#top_pg .lineup-section .product-info-section .info-table td:first-child {
  width: 40%;
  text-align: right;
  padding-right: min(50px, calc((50 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #top_pg .lineup-section .product-info-section .info-table td:first-child {
    padding-right: calc((50 / 700) * 100vw);
  }
}
#top_pg .lineup-section .product-info-section .info-table td:last-child {
  color: #333;
  text-align: left;
}

.profile-section {
  padding: 0;
  position: relative;
}
.profile-section .profile-bg {
  background: linear-gradient(153deg, #9E95D0 0%, #5B5388 88%, #373062 100%);
  position: relative;
  padding: min(160px, calc((160 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(160px, calc((160 / 1600) * 100vw));
  text-align: center;
}
@media (max-width: 768px) {
  .profile-section .profile-bg {
    padding: calc((160 / 700) * 100vw) calc((0 / 700) * 100vw) calc((160 / 700) * 100vw);
  }
}
.profile-section .profile-bg::after {
  content: "";
  position: absolute;
  bottom: -0.02%;
  left: 0;
  right: 0;
  height: min(120px, calc((120 / 1600) * 100vw));
  background: #D0CFDE;
  --clip-size: min(120px, calc((120 / 1600) * 100vw));
  clip-path: polygon(0% var(--clip-size), 100% 0px, 100% 0px, 100% var(--clip-size));
  z-index: 1;
}
@media (max-width: 768px) {
  .profile-section .profile-bg::after {
    height: calc((120 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .profile-section .profile-bg::after {
    --clip-size: calc((120 / 700) * 100vw);
  }
}
.profile-section .profile-title-img {
  position: relative;
  z-index: 2;
  margin-bottom: min(40px, calc((40 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .profile-section .profile-title-img {
    margin-bottom: calc((40 / 700) * 100vw);
  }
}
.profile-section .profile-title-img img {
  width: min(152px, calc((152 / 1600) * 100vw));
  height: auto;
}
@media (max-width: 768px) {
  .profile-section .profile-title-img img {
    width: calc((152 / 700) * 100vw);
  }
}
.profile-section .profile-content {
  position: relative;
  margin: 0 auto;
}
.profile-section .profile-image {
  margin-bottom: min(70px, calc((70 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .profile-section .profile-image {
    margin-bottom: calc((70 / 700) * 100vw);
  }
}
.profile-section .profile-text .profile-name {
  margin-bottom: min(50px, calc((50 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .profile-section .profile-text .profile-name {
    margin-bottom: calc((50 / 700) * 100vw);
  }
}
.profile-section .profile-text .profile-name img {
  width: min(358px, calc((358 / 1600) * 100vw));
  height: auto;
}
@media (max-width: 768px) {
  .profile-section .profile-text .profile-name img {
    width: calc((358 / 700) * 100vw);
  }
}
.profile-section .profile-text .profile-description {
  font-weight: 400;
  line-height: 2.2;
  font-size: min(20px, calc((20 / 1600) * 100vw));
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .profile-section .profile-text .profile-description {
    font-size: calc((20 / 700) * 100vw);
  }
}

.movie-section {
  padding: min(100px, calc((100 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(180px, calc((180 / 1600) * 100vw));
  background: #D0CFDE;
  text-align: center;
}
@media (max-width: 768px) {
  .movie-section {
    padding: calc((100 / 700) * 100vw) calc((0 / 700) * 100vw) calc((180 / 700) * 100vw);
  }
}
.movie-section .movie-title {
  margin-bottom: min(100px, calc((100 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .movie-section .movie-title {
    margin-bottom: calc((100 / 700) * 100vw);
  }
}
.movie-section .movie-title img {
  width: min(171px, calc((171 / 1600) * 100vw));
  height: auto;
}
@media (max-width: 768px) {
  .movie-section .movie-title img {
    width: calc((171 / 700) * 100vw);
  }
}
.movie-section .movie-content {
  width: min(600px, calc((600 / 1600) * 100vw));
  margin: 0 auto;
}
@media (max-width: 768px) {
  .movie-section .movie-content {
    width: calc((600 / 700) * 100vw);
  }
}
.movie-section .movie-item {
  margin-bottom: min(40px, calc((40 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .movie-section .movie-item {
    margin-bottom: calc((40 / 700) * 100vw);
  }
}
.movie-section .movie-item:last-child {
  margin-bottom: 0;
}
.movie-section .movie-item .video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.movie-section .movie-item .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.infinite-slider-section {
  padding: min(280px, calc((280 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
  background: #D0CFDE;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .infinite-slider-section {
    padding: calc((280 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
.infinite-slider-section::after {
  content: "";
  background: url(../img/slider_bg.webp) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.infinite-slider-section .slider-wrapper {
  width: 100%;
  overflow: hidden;
}
.infinite-slider-section .slider-track-infinite {
  display: flex;
  will-change: transform;
}
.infinite-slider-section .slide-item {
  flex: 0 0 auto;
  margin-right: min(40px, calc((40 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .infinite-slider-section .slide-item {
    margin-right: calc((40 / 700) * 100vw);
  }
}
.infinite-slider-section .slide-item img {
  width: min(430px, calc((430 / 1600) * 100vw));
  object-fit: cover;
  pointer-events: none;
}
@media (max-width: 768px) {
  .infinite-slider-section .slide-item img {
    width: calc((430 / 700) * 100vw);
  }
}

.footer {
  background: #151515;
  color: white;
  padding: min(80px, calc((80 / 1600) * 100vw)) min(40px, calc((40 / 1600) * 100vw)) min(20px, calc((20 / 1600) * 100vw));
  text-align: center;
}
@media (max-width: 768px) {
  .footer {
    padding: calc((80 / 700) * 100vw) calc((40 / 700) * 100vw) calc((20 / 700) * 100vw);
  }
}
.footer .footer-content {
  width: min(600px, calc((600 / 1600) * 100vw));
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer .footer-content {
    width: calc((600 / 700) * 100vw);
  }
}
.footer .footer-logo {
  margin-bottom: min(30px, calc((30 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .footer .footer-logo {
    margin-bottom: calc((30 / 700) * 100vw);
  }
}
.footer .footer-logo img {
  width: min(150px, calc((150 / 1600) * 100vw));
  height: auto;
}
@media (max-width: 768px) {
  .footer .footer-logo img {
    width: calc((150 / 700) * 100vw);
  }
}
.footer .footer-description {
  font-size: min(20px, calc((20 / 1600) * 100vw));
  line-height: 1.8;
  margin-bottom: min(40px, calc((40 / 1600) * 100vw));
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .footer .footer-description {
    font-size: calc((20 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .footer .footer-description {
    margin-bottom: calc((40 / 700) * 100vw);
  }
}
.footer .footer-social {
  display: flex;
  justify-content: center;
  gap: min(20px, calc((20 / 1600) * 100vw));
  margin-bottom: min(60px, calc((60 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .footer .footer-social {
    gap: calc((20 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .footer .footer-social {
    margin-bottom: calc((60 / 700) * 100vw);
  }
}
.footer .footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(40px, calc((40 / 1600) * 100vw));
  aspect-ratio: 1/1;
  color: white;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .footer .footer-social .social-link {
    width: calc((40 / 700) * 100vw);
  }
}
.footer .footer-social .social-link:hover {
  opacity: 0.7;
}
.footer .footer-nav {
  margin-bottom: min(60px, calc((60 / 1600) * 100vw));
  text-align: left;
}
@media (max-width: 768px) {
  .footer .footer-nav {
    margin-bottom: calc((60 / 700) * 100vw);
  }
}
.footer .footer-nav ul {
  list-style: none;
  display: inline-block;
}
.footer .footer-nav ul li {
  margin-bottom: min(20px, calc((20 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .footer .footer-nav ul li {
    margin-bottom: calc((20 / 700) * 100vw);
  }
}
.footer .footer-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: min(19px, calc((19 / 1600) * 100vw));
  font-weight: 300;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .footer .footer-nav ul li a {
    font-size: calc((19 / 700) * 100vw);
  }
}
.footer .footer-nav ul li a:hover {
  opacity: 0.7;
}
.footer .footer-copyright {
  font-size: min(12px, calc((12 / 1600) * 100vw));
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
@media (max-width: 768px) {
  .footer .footer-copyright {
    font-size: calc((12 / 700) * 100vw);
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-section .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #8b6f4d;
}
.hero-section .brand-logo h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.color-section {
  padding: min(60px, calc((60 / 1600) * 100vw)) min(40px, calc((40 / 1600) * 100vw));
  background: #f8f4f0;
  text-align: center;
}
@media (max-width: 768px) {
  .color-section {
    padding: calc((60 / 700) * 100vw) calc((40 / 700) * 100vw);
  }
}

.color-palette {
  display: inline-block;
}

.color-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  justify-content: center;
}
.color-row:last-child {
  margin-bottom: 0;
}

.color-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.color-circle:hover {
  transform: scale(1.1);
}
.color-circle.selected {
  transform: scale(1.2);
  box-shadow: 0 4px 16px rgba(139, 111, 77, 0.4);
}

.product-detail {
  padding: 80px 40px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.product-detail .product-image {
  flex: 1;
}
.product-detail .product-image img {
  border-radius: 8px;
}
.product-detail .product-info {
  flex: 1;
}
.product-detail .product-info h3 {
  font-size: 1.5rem;
  color: #8b6f4d;
  margin-bottom: 2rem;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
}
.product-table td {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.product-table td:first-child {
  font-weight: 500;
  color: #8b6f4d;
  width: 30%;
}

.artist-section {
  padding: 80px 40px;
  background: #faf7f3;
}
.artist-section .artist-content {
  display: flex;
  gap: 40px;
  align-items: center;
}
.artist-section .artist-content img {
  flex: 1;
  border-radius: 8px;
}
.artist-section .artist-content .artist-info {
  flex: 1;
}
.artist-section .artist-content .artist-info h3 {
  font-size: 2rem;
  color: #8b6f4d;
  margin-bottom: 1rem;
}
.artist-section .artist-content .artist-info p {
  color: #666;
  line-height: 1.8;
}

.video-section {
  padding: 80px 40px;
  text-align: center;
}
.video-section .video-container {
  max-width: 600px;
  margin: 0 auto;
}
.video-section .video-container video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-section {
  padding: 80px 40px;
  background: #f8f4f0;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-section .gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.photo-gallery {
  padding: 80px 40px;
}
.photo-gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8b6f4d;
  margin-bottom: 60px;
}
.photo-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 111, 77, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.view-btn {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 25px;
}

.filter-section {
  padding: 20px 40px;
  text-align: center;
  background: #faf7f3;
}
.filter-section h3 {
  font-size: 1.5rem;
  color: #8b6f4d;
  margin-bottom: 20px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid #8b6f4d;
  color: #8b6f4d;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.filter-btn:hover, .filter-btn.active {
  background: #8b6f4d;
  color: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.active {
  opacity: 1;
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  top: 50%;
  transform: translateY(-50%);
}
.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #8b6f4d;
}

.animate-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.animate-element.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.shopinfo-fv .fv-image {
  width: 100%;
}
.shopinfo-fv .fv-image img {
  width: 100%;
  height: auto;
  display: block;
}

#shopinfo_pg .inner {
  position: relative;
  z-index: 0;
}
#shopinfo_pg .inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../img/shopinfo_bg.webp) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
}

.store-section {
  padding: min(120px, calc((120 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(80px, calc((80 / 1600) * 100vw));
  text-align: center;
}
@media (max-width: 768px) {
  .store-section {
    padding: calc((120 / 700) * 100vw) calc((0 / 700) * 100vw) calc((80 / 700) * 100vw);
  }
}
.store-section .store-title {
  text-align: center;
  margin: auto;
  margin-bottom: min(100px, calc((100 / 1600) * 100vw));
  width: min(131px, calc((131 / 1600) * 100vw));
  filter: drop-shadow(0px 0 26px #412A7E) drop-shadow(0px 0 26px #412A7E);
}
@media (max-width: 768px) {
  .store-section .store-title {
    margin-bottom: calc((100 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-title {
    width: calc((131 / 700) * 100vw);
  }
}
.store-section .store-title img {
  max-width: 100%;
  height: auto;
}
.store-section .store-nav {
  display: flex;
  justify-content: center;
  gap: min(40px, calc((40 / 1600) * 100vw));
  margin-bottom: min(170px, calc((170 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .store-section .store-nav {
    gap: calc((40 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-nav {
    margin-bottom: calc((170 / 700) * 100vw);
  }
}
.store-section .store-nav .store-btn {
  font-family: "Noto Serif", serif;
  width: min(250px, calc((250 / 1600) * 100vw));
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid #fff;
  color: #fff;
  font-size: min(26px, calc((26 / 1600) * 100vw));
  cursor: pointer;
  padding: min(12px, calc((12 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .store-section .store-nav .store-btn {
    width: calc((250 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-nav .store-btn {
    font-size: calc((26 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-nav .store-btn {
    padding: calc((12 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
.store-section .store-nav .store-btn:hover {
  border-color: #ccc;
  color: #999;
}
.store-section .store-content {
  margin: auto;
  margin-bottom: min(85px, calc((85 / 1600) * 100vw));
  background: #fff;
  border-radius: min(10px, calc((10 / 1600) * 100vw));
  width: min(600px, calc((600 / 1600) * 100vw));
  padding: min(60px, calc((60 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(80px, calc((80 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .store-section .store-content {
    margin-bottom: calc((85 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-content {
    border-radius: calc((10 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-content {
    width: calc((600 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-content {
    padding: calc((60 / 700) * 100vw) calc((0 / 700) * 100vw) calc((80 / 700) * 100vw);
  }
}
.store-section .store-content:last-of-type {
  margin-bottom: 0;
}
.store-section .online-header {
  font-family: "Noto Serif", serif;
  margin-bottom: min(50px, calc((50 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .store-section .online-header {
    margin-bottom: calc((50 / 700) * 100vw);
  }
}
.store-section .online-header p {
  font-size: min(22px, calc((22 / 1600) * 100vw));
  padding: min(7px, calc((7 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
  border: 1px solid;
  width: min(170px, calc((170 / 1600) * 100vw));
  margin: auto;
}
@media (max-width: 768px) {
  .store-section .online-header p {
    font-size: calc((22 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .online-header p {
    padding: calc((7 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .online-header p {
    width: calc((170 / 700) * 100vw);
  }
}
.store-section .online-stores {
  display: flex;
  justify-content: center;
  gap: min(60px, calc((60 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .store-section .online-stores {
    gap: calc((60 / 700) * 100vw);
  }
}
.store-section .store-item {
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.store-section .store-item a {
  text-decoration: none;
}
.store-section .store-item:hover {
  opacity: 0.7;
}
.store-section .store-item.sweet .store-logo {
  color: #E8A5A0;
  font-family: "Noto Serif", serif;
  font-size: min(32px, calc((32 / 1600) * 100vw));
  font-weight: 400;
  font-style: italic;
  margin-bottom: min(10px, calc((10 / 1600) * 100vw));
  width: min(150px, calc((150 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .store-section .store-item.sweet .store-logo {
    font-size: calc((32 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-item.sweet .store-logo {
    margin-bottom: calc((10 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-item.sweet .store-logo {
    width: calc((150 / 700) * 100vw);
  }
}
.store-section .store-item.morecon .store-logo {
  background: #E8756A;
  color: white;
  font-size: min(12px, calc((12 / 1600) * 100vw));
  padding-top: min(8px, calc((8 / 1600) * 100vw));
  padding-bottom: min(8px, calc((8 / 1600) * 100vw));
  padding-left: min(16px, calc((16 / 1600) * 100vw));
  padding-right: min(16px, calc((16 / 1600) * 100vw));
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: min(10px, calc((10 / 1600) * 100vw));
  display: inline-block;
  width: min(150px, calc((150 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .store-section .store-item.morecon .store-logo {
    font-size: calc((12 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-item.morecon .store-logo {
    padding-top: calc((8 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-item.morecon .store-logo {
    padding-bottom: calc((8 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-item.morecon .store-logo {
    padding-left: calc((16 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-item.morecon .store-logo {
    padding-right: calc((16 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-item.morecon .store-logo {
    margin-bottom: calc((10 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-item.morecon .store-logo {
    width: calc((150 / 700) * 100vw);
  }
}
.store-section .store-item .store-name {
  font-size: min(16px, calc((16 / 1600) * 100vw));
  color: #666;
  font-weight: 400;
}
@media (max-width: 768px) {
  .store-section .store-item .store-name {
    font-size: calc((16 / 700) * 100vw);
  }
}
.store-section .offline-header {
  font-family: "Noto Serif", serif;
  margin-bottom: min(40px, calc((40 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .store-section .offline-header {
    margin-bottom: calc((40 / 700) * 100vw);
  }
}
.store-section .offline-header p {
  font-size: min(22px, calc((22 / 1600) * 100vw));
  padding: min(7px, calc((7 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
  border: 1px solid;
  width: min(170px, calc((170 / 1600) * 100vw));
  margin: auto;
}
@media (max-width: 768px) {
  .store-section .offline-header p {
    font-size: calc((22 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .offline-header p {
    padding: calc((7 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .offline-header p {
    width: calc((170 / 700) * 100vw);
  }
}
.store-section .offline-description {
  margin-bottom: min(40px, calc((40 / 1600) * 100vw));
  line-height: 1.6;
}
@media (max-width: 768px) {
  .store-section .offline-description {
    margin-bottom: calc((40 / 700) * 100vw);
  }
}
.store-section .offline-stores {
  width: min(430px, calc((430 / 1600) * 100vw));
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 768px) {
  .store-section .offline-stores {
    width: calc((430 / 700) * 100vw);
  }
}
.store-section .store-area {
  border-bottom: 1px solid #7773AC;
}
.store-section .store-area:last-child {
  border-bottom: none;
}
.store-section .store-area .area-btn {
  width: 100%;
  padding: min(20px, calc((20 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(20px, calc((20 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: min(20px, calc((20 / 1600) * 100vw));
  color: #7773AC;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .store-section .store-area .area-btn {
    padding: calc((20 / 700) * 100vw) calc((0 / 700) * 100vw) calc((20 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-area .area-btn {
    font-size: calc((20 / 700) * 100vw);
  }
}
.store-section .store-area .area-btn:hover {
  background: #fafafa;
}
.store-section .store-area .area-btn .plus {
  font-size: min(20px, calc((20 / 1600) * 100vw));
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .store-section .store-area .area-btn .plus {
    font-size: calc((20 / 700) * 100vw);
  }
}
.store-section .store-area .area-btn.active .plus {
  transform: rotate(180deg);
}
.store-section .store-area .area-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.store-section .store-area .area-content.active {
  max-height: 5000px;
}
.store-section .store-area .area-content .store-list {
  padding: min(20px, calc((20 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(30px, calc((30 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
  font-size: min(16px, calc((16 / 1600) * 100vw));
  color: #666;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .store-section .store-area .area-content .store-list {
    padding: calc((20 / 700) * 100vw) calc((0 / 700) * 100vw) calc((30 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .store-section .store-area .area-content .store-list {
    font-size: calc((16 / 700) * 100vw);
  }
}
.store-section .store-area .area-content .store-list .list-ttl {
  font-weight: 600;
  color: #333;
}
.store-section .store-area .area-content .store-list .list-add {
  margin-bottom: min(20px, calc((20 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .store-section .store-area .area-content .store-list .list-add {
    margin-bottom: calc((20 / 700) * 100vw);
  }
}

.news-section {
  padding: min(80px, calc((80 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(160px, calc((160 / 1600) * 100vw));
  text-align: center;
}
@media (max-width: 768px) {
  .news-section {
    padding: calc((80 / 700) * 100vw) calc((0 / 700) * 100vw) calc((160 / 700) * 100vw);
  }
}
.news-section .news-title {
  text-align: center;
  margin-bottom: min(76px, calc((76 / 1600) * 100vw));
  width: min(144px, calc((144 / 1600) * 100vw));
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0px 0 26px #412A7E) drop-shadow(0px 0 26px #412A7E);
}
@media (max-width: 768px) {
  .news-section .news-title {
    margin-bottom: calc((76 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .news-section .news-title {
    width: calc((144 / 700) * 100vw);
  }
}
.news-section .news-title img {
  max-width: 100%;
  height: auto;
}
.news-section .news-list {
  width: min(530px, calc((530 / 1600) * 100vw));
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 768px) {
  .news-section .news-list {
    width: calc((530 / 700) * 100vw);
  }
}
.news-section .news-item {
  margin-bottom: min(60px, calc((60 / 1600) * 100vw));
  background: #fff;
  --radius-size: min(100px, calc((100 / 1600) * 100vw));
  border-radius: var(--radius-size) 0 var(--radius-size) 0;
  padding: min(50px, calc((50 / 1600) * 100vw)) min(55px, calc((55 / 1600) * 100vw)) min(50px, calc((50 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .news-section .news-item {
    margin-bottom: calc((60 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .news-section .news-item {
    --radius-size: calc((100 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .news-section .news-item {
    padding: calc((50 / 700) * 100vw) calc((55 / 700) * 100vw) calc((50 / 700) * 100vw);
  }
}
.news-section .news-item:last-child {
  margin-bottom: 0;
}
.news-section .news-item .news-date {
  font-size: min(15px, calc((15 / 1600) * 100vw));
  color: #999;
  margin-bottom: min(15px, calc((15 / 1600) * 100vw));
  display: block;
}
@media (max-width: 768px) {
  .news-section .news-item .news-date {
    font-size: calc((15 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .news-section .news-item .news-date {
    margin-bottom: calc((15 / 700) * 100vw);
  }
}
.news-section .news-item .news-headline {
  font-size: min(20px, calc((20 / 1600) * 100vw));
  font-weight: 600;
  margin-bottom: min(15px, calc((15 / 1600) * 100vw));
  color: #333;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .news-section .news-item .news-headline {
    font-size: calc((20 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .news-section .news-item .news-headline {
    margin-bottom: calc((15 / 700) * 100vw);
  }
}
.news-section .news-item .news-text {
  line-height: 1.6;
  color: #666;
}

.lineup-fv .fv-image {
  width: 100%;
}
.lineup-fv .fv-image img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-section {
  padding: min(100px, calc((100 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(60px, calc((60 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .banner-section {
    padding: calc((100 / 700) * 100vw) calc((0 / 700) * 100vw) calc((60 / 700) * 100vw);
  }
}
.banner-section .banner-image {
  margin: auto;
  width: min(600px, calc((600 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .banner-section .banner-image {
    width: calc((600 / 700) * 100vw);
  }
}
.banner-section .banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

#top_pg .banner-section {
  padding: min(100px, calc((100 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(140px, calc((140 / 1600) * 100vw));
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}
@media (max-width: 768px) {
  #top_pg .banner-section {
    padding: calc((100 / 700) * 100vw) calc((0 / 700) * 100vw) calc((140 / 700) * 100vw);
  }
}

#lineup_pg .inner {
  position: relative;
  z-index: 0;
}
#lineup_pg .inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../img/lineup_bg.webp) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
}

#lineup_pg .lineup-section {
  padding: min(60px, calc((60 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(190px, calc((190 / 1600) * 100vw));
  text-align: center;
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section {
    padding: calc((60 / 700) * 100vw) calc((0 / 700) * 100vw) calc((190 / 700) * 100vw);
  }
}
#lineup_pg .lineup-section .lineup-title {
  text-align: center;
  margin: auto;
  margin-bottom: min(90px, calc((90 / 1600) * 100vw));
  width: min(212px, calc((212 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section .lineup-title {
    margin-bottom: calc((90 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section .lineup-title {
    width: calc((212 / 700) * 100vw);
  }
}
#lineup_pg .lineup-section .lineup-title img {
  max-width: 100%;
  height: auto;
}
#lineup_pg .lineup-section .lens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(40px, calc((40 / 1600) * 100vw));
  max-width: min(600px, calc((600 / 1600) * 100vw));
  margin: 0 auto;
  margin-bottom: min(80px, calc((80 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section .lens-grid {
    gap: calc((40 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section .lens-grid {
    max-width: calc((600 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section .lens-grid {
    margin-bottom: calc((80 / 700) * 100vw);
  }
}
#lineup_pg .lineup-section .lens-item {
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: block;
}
#lineup_pg .lineup-section .lens-item:hover {
  transform: translateY(-5px);
}
#lineup_pg .lineup-section .lens-item img {
  width: 100%;
  max-width: min(150px, calc((150 / 1600) * 100vw));
  height: auto;
  margin-bottom: min(15px, calc((15 / 1600) * 100vw));
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section .lens-item img {
    max-width: calc((150 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section .lens-item img {
    margin-bottom: calc((15 / 700) * 100vw);
  }
}
#lineup_pg .lineup-section .lens-item p {
  font-size: min(20px, calc((20 / 1600) * 100vw));
  font-weight: 400;
  color: #f6f6f6;
  line-height: 1.4;
  font-family: "Noto Serif", serif;
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section .lens-item p {
    font-size: calc((20 / 700) * 100vw);
  }
}
#lineup_pg .lineup-section .lens-item .category {
  display: inline-block;
  font-size: min(11px, calc((11 / 1600) * 100vw));
  margin-top: min(8px, calc((8 / 1600) * 100vw));
  position: absolute;
  top: -5%;
  left: -10%;
  color: white;
  background: #7773AC;
  padding: min(5px, calc((5 / 1600) * 100vw)) min(10px, calc((10 / 1600) * 100vw));
  border-radius: 50px;
  font-weight: 400;
  line-height: 1.2;
  transform: rotate(-15deg);
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section .lens-item .category {
    font-size: calc((11 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section .lens-item .category {
    margin-top: calc((8 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  #lineup_pg .lineup-section .lens-item .category {
    padding: calc((5 / 700) * 100vw) calc((10 / 700) * 100vw);
  }
}

.lens-detail-section {
  padding: min(80px, calc((80 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
  background-image: url("../img/lens_detail_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .lens-detail-section {
    padding: calc((80 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
.lens-detail-section .lens-detail-card {
  width: min(660px, calc((660 / 1600) * 100vw));
  margin-bottom: min(60px, calc((60 / 1600) * 100vw));
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .lens-detail-section .lens-detail-card {
    width: calc((660 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lens-detail-section .lens-detail-card {
    margin-bottom: calc((60 / 700) * 100vw);
  }
}
.lens-detail-section .lens-detail-card:last-child {
  margin-bottom: 0;
}
.lens-detail-section .lens-detail-card img {
  width: 100%;
  height: auto;
  display: block;
}

.color-chart-image {
  max-width: min(600px, calc((600 / 1600) * 100vw));
  margin: 0 auto;
}
@media (max-width: 768px) {
  .color-chart-image {
    max-width: calc((600 / 700) * 100vw);
  }
}
.color-chart-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cards_area {
  position: relative;
  z-index: 0;
}
.cards_area::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../img/lens-details_bg.webp) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
}

.lens-details-section {
  position: relative;
  z-index: 0;
  padding: min(260px, calc((260 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
  background: transparent;
  height: min(6000px, calc((6000 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .lens-details-section {
    padding: calc((260 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lens-details-section {
    height: calc((6000 / 700) * 100vw);
  }
}
.lens-details-section::after {
  content: "";
  position: absolute;
  background: url(../img/lineup_card_bg.webp) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  mix-blend-mode: overlay;
  background-position: 50% 0;
}
.lens-details-section .lens-card {
  width: min(660px, calc((660 / 1600) * 100vw));
  margin: 0 auto;
  margin-bottom: min(38px, calc((38 / 1600) * 100vw));
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .lens-details-section .lens-card {
    width: calc((660 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lens-details-section .lens-card {
    margin-bottom: calc((38 / 700) * 100vw);
  }
}
.lens-details-section .lens-card:last-child {
  margin-bottom: 0;
}
.lens-details-section .lens-card img {
  width: 100%;
  height: auto;
  display: block;
}
.lens-details-section .lens-card#elegant-glow {
  margin-bottom: 4%;
  padding-top: 6%;
}
.lens-details-section .lens-card#etoile-beige {
  margin-bottom: 4%;
  padding-top: 6%;
}
.lens-details-section .lens-card#night-orchid {
  padding-top: 10%;
}
.lens-details-section .lens-card#night-orchid .category {
  bottom: 86%;
}
.lens-details-section .lens-card .category {
  text-align: center;
  position: absolute;
  left: min(-5px, calc((-5 / 1600) * 100vw));
  bottom: 90%;
  background: #7773AC;
  color: #fff;
  border-radius: 50px;
  font-weight: 400;
  padding: min(10px, calc((10 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw));
  font-size: min(20px, calc((20 / 1600) * 100vw));
  line-height: 1.3;
  width: min(227px, calc((227 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .lens-details-section .lens-card .category {
    left: calc((-5 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lens-details-section .lens-card .category {
    padding: calc((10 / 700) * 100vw) calc((0 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lens-details-section .lens-card .category {
    font-size: calc((20 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lens-details-section .lens-card .category {
    width: calc((227 / 700) * 100vw);
  }
}
.lens-details-section .lens-card .movie_btn {
  position: absolute;
  width: min(202px, calc((202 / 1600) * 100vw));
  right: min(16px, calc((16 / 1600) * 100vw));
  bottom: min(20px, calc((20 / 1600) * 100vw));
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .lens-details-section .lens-card .movie_btn {
    width: calc((202 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lens-details-section .lens-card .movie_btn {
    right: calc((16 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lens-details-section .lens-card .movie_btn {
    bottom: calc((20 / 700) * 100vw);
  }
}
.lens-details-section .lens-card .movie_btn:hover {
  opacity: 0.7;
}
.lens-details-section .series_ttl {
  position: relative;
  z-index: 0;
}
.lens-details-section .series_ttl::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 83%;
  top: 50%;
  background: #272727;
  opacity: 0.2;
  transform: translateY(-50%);
  z-index: -1;
}
.lens-details-section .series_ttl img {
  width: min(490px, calc((490 / 1600) * 100vw));
  display: block;
  margin: 0 auto;
  margin-bottom: min(0px, calc((0 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .lens-details-section .series_ttl img {
    width: calc((490 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lens-details-section .series_ttl img {
    margin-bottom: calc((0 / 700) * 100vw);
  }
}

.lineup-section .lens-grid .lens-item {
  text-decoration: none;
  color: inherit;
}

.lineup-page .lens-grid-lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(40px, calc((40 / 1600) * 100vw));
  max-width: min(600px, calc((600 / 1600) * 100vw));
  margin: 0 auto;
  margin-bottom: min(80px, calc((80 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .lineup-page .lens-grid-lineup {
    gap: calc((40 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lineup-page .lens-grid-lineup {
    max-width: calc((600 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lineup-page .lens-grid-lineup {
    margin-bottom: calc((80 / 700) * 100vw);
  }
}
.lineup-page .lens-grid-lineup .lens-item {
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.lineup-page .lens-grid-lineup .lens-item:hover {
  transform: translateY(-5px);
}
.lineup-page .lens-grid-lineup .lens-item img {
  width: 100%;
  max-width: min(150px, calc((150 / 1600) * 100vw));
  height: auto;
  margin-bottom: min(15px, calc((15 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .lineup-page .lens-grid-lineup .lens-item img {
    max-width: calc((150 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lineup-page .lens-grid-lineup .lens-item img {
    margin-bottom: calc((15 / 700) * 100vw);
  }
}
.lineup-page .lens-grid-lineup .lens-item p {
  font-size: min(20px, calc((20 / 1600) * 100vw));
  font-weight: 400;
  color: #f6f6f6;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .lineup-page .lens-grid-lineup .lens-item p {
    font-size: calc((20 / 700) * 100vw);
  }
}
.lineup-page .lens-grid-lineup .lens-item .category {
  display: inline-block;
  font-size: min(11px, calc((11 / 1600) * 100vw));
  margin-top: min(8px, calc((8 / 1600) * 100vw));
  position: absolute;
  top: -5%;
  left: -10%;
  color: white;
  background: #7773AC;
  padding: min(5px, calc((5 / 1600) * 100vw)) min(10px, calc((10 / 1600) * 100vw));
  border-radius: 50px;
  font-weight: 400;
  line-height: 1.2;
  transform: rotate(-15deg);
}
@media (max-width: 768px) {
  .lineup-page .lens-grid-lineup .lens-item .category {
    font-size: calc((11 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lineup-page .lens-grid-lineup .lens-item .category {
    margin-top: calc((8 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lineup-page .lens-grid-lineup .lens-item .category {
    padding: calc((5 / 700) * 100vw) calc((10 / 700) * 100vw);
  }
}

.lineup-page .color-chart-image {
  max-width: min(600px, calc((600 / 1600) * 100vw));
  margin: 0 auto;
  margin-top: min(155px, calc((155 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .lineup-page .color-chart-image {
    max-width: calc((600 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lineup-page .color-chart-image {
    margin-top: calc((155 / 700) * 100vw);
  }
}
.lineup-page .color-chart-image img {
  width: 100%;
  height: auto;
  display: block;
}

.lineup-image-section {
  position: relative;
  padding: min(140px, calc((140 / 1600) * 100vw)) min(0px, calc((0 / 1600) * 100vw)) min(160px, calc((160 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .lineup-image-section {
    padding: calc((140 / 700) * 100vw) calc((0 / 700) * 100vw) calc((160 / 700) * 100vw);
  }
}
.lineup-image-section .image-container {
  position: relative;
  width: 100%;
  height: min(950px, calc((950 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .lineup-image-section .image-container {
    height: calc((950 / 700) * 100vw);
  }
}
.lineup-image-section .lineup-image {
  position: absolute;
}
.lineup-image-section .lineup-image.lineup-text {
  top: min(30px, calc((30 / 1600) * 100vw));
  left: min(60px, calc((60 / 1600) * 100vw));
  width: min(493px, calc((493 / 1600) * 100vw));
  z-index: 2;
}
@media (max-width: 768px) {
  .lineup-image-section .lineup-image.lineup-text {
    top: calc((30 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lineup-image-section .lineup-image.lineup-text {
    left: calc((60 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lineup-image-section .lineup-image.lineup-text {
    width: calc((493 / 700) * 100vw);
  }
}
.lineup-image-section .lineup-image.lineup-model {
  bottom: 0;
  right: min(0px, calc((0 / 1600) * 100vw));
  width: min(570px, calc((570 / 1600) * 100vw));
  z-index: 1;
}
@media (max-width: 768px) {
  .lineup-image-section .lineup-image.lineup-model {
    right: calc((0 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .lineup-image-section .lineup-image.lineup-model {
    width: calc((570 / 700) * 100vw);
  }
}

.model-image-section {
  position: relative;
  z-index: 0;
  height: min(1181px, calc((1181 / 1600) * 100vw));
  background-image: url("../img/lineup_accent_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 768px) {
  .model-image-section {
    height: calc((1181 / 700) * 100vw);
  }
}
.model-image-section::before {
  /*content: "";*/
  position: absolute;
  top: min(452.5px, calc((452.5 / 1600) * 100vw));
  left: min(184.5px, calc((184.5 / 1600) * 100vw));
  width: min(220px, calc((220 / 1600) * 100vw));
  height: min(192px, calc((192 / 1600) * 100vw));
  border-width: min(8px, calc((8 / 1600) * 100vw));
  border-bottom: 0;
  border-right: 0;
  border-color: #D0CFDE;
  background: #D0CFDE;
  border-style: solid;
  z-index: 2;
}
@media (max-width: 768px) {
  .model-image-section::before {
    top: calc((452.5 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .model-image-section::before {
    left: calc((184.5 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .model-image-section::before {
    width: calc((220 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .model-image-section::before {
    height: calc((192 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .model-image-section::before {
    border-width: calc((8 / 700) * 100vw);
  }
}
.model-image-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /*background: $base-sp-color;*/
  /*mix-blend-mode: hard-light;*/
}
.model-image-section .model-image {
  position: absolute;
}
.model-image-section .model-image.model-girl-01 {
  top: min(150px, calc((150 / 1600) * 100vw));
  left: min(0px, calc((0 / 1600) * 100vw));
  width: min(371px, calc((371 / 1600) * 100vw));
  z-index: 1;
}
@media (max-width: 768px) {
  .model-image-section .model-image.model-girl-01 {
    top: calc((150 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .model-image-section .model-image.model-girl-01 {
    left: calc((0 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .model-image-section .model-image.model-girl-01 {
    width: calc((371 / 700) * 100vw);
  }
}
.model-image-section .model-image.model-text {
  top: min(605px, calc((605 / 1600) * 100vw));
  left: min(68px, calc((68 / 1600) * 100vw));
  width: min(107px, calc((107 / 1600) * 100vw));
  z-index: 3;
}
@media (max-width: 768px) {
  .model-image-section .model-image.model-text {
    top: calc((605 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .model-image-section .model-image.model-text {
    left: calc((68 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .model-image-section .model-image.model-text {
    width: calc((107 / 700) * 100vw);
  }
}
.model-image-section .model-image.model-girl-02 {
  top: min(483px, calc((483 / 1600) * 100vw));
  right: min(0px, calc((0 / 1600) * 100vw));
  width: min(508px, calc((508 / 1600) * 100vw));
  z-index: 2;
}
@media (max-width: 768px) {
  .model-image-section .model-image.model-girl-02 {
    top: calc((483 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .model-image-section .model-image.model-girl-02 {
    right: calc((0 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .model-image-section .model-image.model-girl-02 {
    width: calc((508 / 700) * 100vw);
  }
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.8);
  backdrop-filter: blur(8px);
}
.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal .video-modal-content {
  position: relative;
  max-width: min(800px, calc((800 / 1600) * 100vw));
}
@media (max-width: 768px) {
  .video-modal .video-modal-content {
    max-width: calc((800 / 700) * 100vw);
  }
}
.video-modal .video-modal-close {
  position: absolute;
  top: min(-80px, calc((-80 / 1600) * 100vw));
  right: 0;
  color: #fff;
  font-size: min(60px, calc((60 / 1600) * 100vw));
  cursor: pointer;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .video-modal .video-modal-close {
    top: calc((-80 / 700) * 100vw);
  }
}
@media (max-width: 768px) {
  .video-modal .video-modal-close {
    font-size: calc((60 / 700) * 100vw);
  }
}
.video-modal .video-modal-close:hover {
  color: #ccc;
}
.video-modal .video-wrapper {
  position: relative;
  width: auto;
  height: 70vh;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #000;
}
.video-modal .video-wrapper iframe, .video-modal .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
