@charset "UTF-8";
/*
Theme Name: Planus
*/
/*
 * htmlのフォントサイズ
 * @args ベースの画面幅
 */
/*
   * ルートのフォントサイズを基準にフォントサイズを可変にする
   * @args 最大値（デザイン上の数値）
   */
/*
   * get_vwの設定
   */
/*
   * breakpointの設定
   */
/** --------------------------------
* cssの値を単位を除いて数字だけにしてくれる関数
*
* @param 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* 値の「単位」を取得する関数
*
* @param $value 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* pxやremをvwに変換してくれる関数
*
* @param $viewport pcデザインの横幅
* @param $fontSize フォントサイズ(pxでもremでも)
*/
/** --------------------------------
* フォントサイズをレスポンシブで調整する関数
*
* @param $pc pcのフォントサイズ
* @param $sp spのフォントサイズ
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  position: relative;
}

body {
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
}

a {
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

#root,
#__next {
  isolation: isolate;
}

ul {
  list-style: none;
}

.pc_contents,
.pc-only {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc_contents,
  .pc-only {
    display: none !important;
  }
}

.pc_contentsInline {
  display: inline !important;
}
@media screen and (max-width: 768px) {
  .pc_contentsInline {
    display: none !important;
  }
}

.pc_contentsFlex {
  display: flex !important;
}
@media screen and (max-width: 768px) {
  .pc_contentsFlex {
    display: none !important;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.sp_contentsInline {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp_contentsInline {
    display: inline !important;
  }
}

.sp_contentsFlex {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp_contentsFlex {
    display: flex !important;
  }
}

.flexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.justifyContentCenter {
  justify-content: center;
}

.no-click {
  pointer-events: none;
}

.no-hover {
  pointer-events: none;
}

.--mt134 {
  margin-top: 134px;
}
@media screen and (max-width: 768px) {
  .--mt134 {
    margin-top: 80px;
  }
}

.--mt300 {
  margin-top: 300px;
}
@media screen and (max-width: 768px) {
  .--mt300 {
    margin-top: 120px;
  }
}

.--mt120 {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .--mt120 {
    margin-top: 80px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes opacityAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mask-animation {
  0% {
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  to {
    -webkit-mask-position: center 0%;
    -webkit-mask-size: auto 500%;
    mask-position: center 0%;
    mask-size: auto 500%;
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
[data-scroll-fadein] {
  opacity: 0;
}

.anim_fadein {
  animation: fadeInUp 0.8s ease forwards;
}

html, body, button, a {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #3C3C3C;
}
a:hover {
  opacity: 0.7;
}

input[type=checkbox] {
  display: none;
}

.h1 {
  font-family: "cardo", serif;
  font-size: clamp(1px, 3.7037037037vw, 56px);
  line-height: 1.0714285714;
  font-weight: 400;
  padding: 0 70px;
}
@media screen and (max-width: 768px) {
  .h1 {
    padding: 0 16px;
    font-size: 9.1603053435vw;
    line-height: 1.2222222222;
  }
}

.photo {
  position: relative;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: -25px;
  bottom: 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
    position: static;
  }
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  border-radius: initial;
  margin: 0;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:not(:first-child) {
  margin-left: 4px;
}

.swiper-pagination-bullet-active {
  background: #3C3C3C;
}

.text-container {
  position: absolute;
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .text-container {
    position: relative;
    margin-top: 0;
  }
}
.text-container .photo__text {
  opacity: 1;
  font-size: 18px;
  transition: all 0.25s;
  margin-top: 0;
}
.text-container .photo__text.active {
  opacity: 1;
}

.project-single .swiper-slide {
  aspect-ratio: 16/9;
  height: clamp(1px, 57.1428571429vw, 864px);
}

.wp-block-planus-slider-block {
  margin: clamp(1px, 10.582010582vw, 160px) auto 0;
  width: clamp(1px, 66.1375661376vw, 1000px);
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .wp-block-planus-slider-block {
    margin: 20.3562340967vw 0 0;
    width: 100%;
  }
  .wp-block-planus-slider-block .swiper-pagination-bullets.swiper-pagination-horizontal {
    padding-right: 16px;
  }
}

.custom-slider .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-slider .swiper-slide img {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  top: 0;
  position: relative;
}

.wp-block-planus-slider-block-b {
  margin: clamp(1px, 10.582010582vw, 160px) auto 0;
  width: clamp(1px, 38.4920634921vw, 582px);
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .wp-block-planus-slider-block-b {
    margin: 20.3562340967vw 0 0;
    padding: 0 16px;
    width: 100%;
  }
}

.custom-slider-b .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-slider-b .swiper-slide img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-slider-b .swiper-pagination-bullets.swiper-pagination-horizontal {
  top: 0;
  position: relative;
}

[data-scroll-trigger=mask] {
  position: relative;
  overflow: hidden;
}
[data-scroll-trigger=mask] img, [data-scroll-trigger=mask] video, [data-scroll-trigger=mask] iframe {
  z-index: 0;
  -webkit-mask-image: url(../assets/images/common/mask.webp);
          mask-image: url(../assets/images/common/mask.webp);
  mask-mode: alpha;
  -webkit-mask-position: center bottom;
          mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: auto 200%;
          mask-size: auto 200%;
  opacity: 0;
}
[data-scroll-trigger=mask].visible img, [data-scroll-trigger=mask].visible video, [data-scroll-trigger=mask].visible iframe {
  animation: 2.3s mask-animation cubic-bezier(0.115, 0.405, 0.24, 1) 0s forwards;
}

.video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  scale: 1.3;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s linear;
}
.video.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .video {
    scale: 1;
  }
}
.video__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100vh;
  width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

.top__block-pat01 .image-container {
  position: relative;
  overflow: hidden;
}
.top__block-pat01 .image-container img {
  width: 100%;
  height: 100%;
  display: block;
}
.top__block-pat01 {
  /* 最初は白で完全に覆う */
}
.top__block-pat01 .white-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 2;
}
.top__block-pat01 {
  /* 灰色のオーバーレイ */
}
.top__block-pat01 .gray-overlay {
  position: absolute;
  bottom: -100%; /* 初期状態では見えない */
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  z-index: 3;
}

.top__block-pat02 .image-container {
  z-index: 1;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.swiper-section {
  position: relative;
  z-index: 1;
}
.swiper-section .top__block-pat02.photo {
  z-index: 0;
  -webkit-mask-image: url(../assets/images/common/mask.webp);
          mask-image: url(../assets/images/common/mask.webp);
  mask-mode: alpha;
  -webkit-mask-position: center bottom;
          mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: auto 200%;
          mask-size: auto 200%;
  opacity: 0;
}
.swiper-section .top__block-pat02.photo .swiper-pagination {
  opacity: 1;
}
.swiper-section .top__block-pat02.photo.visible {
  animation: 2.3s mask-animation cubic-bezier(0.115, 0.405, 0.24, 1) 0s forwards;
}

/* CSS Document */
/*  - header - */
.siteheader__info {
  border-bottom: 1px solid;
  text-align: center;
  box-sizing: border-box;
  padding: 1.3333333333%;
  font-size: clamp(10px, 2.6666666667vw, 20px);
  line-height: 1.7em;
  background: #fff;
  position: relative;
  z-index: 3;
}

#siteheader {
  display: block;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--c-wh);
}

#siteheader .siteheader--sp {
  display: block;
}

.siteheader__spmain {
  display: flex;
  flex-wrap: nowrap;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: clamp(0px, 2.6666666667%, 20px);
  width: 100%;
}

.siteheader__spnav {
  display: flex;
  flex-wrap: nowrap;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 32.3943661972%;
  gap: 10px;
}

.u-icon--search {
  color: var(--c-red);
}

#spnav {
  cursor: pointer;
  display: block;
  padding-bottom: 26.0869565217%;
  position: relative;
  width: 21.7391304348%;
}

.siteheader__spnavbar {
  position: absolute;
  width: 60%;
  height: clamp(2px, 0.5333333333vw, 2px);
  background: var(--c-red);
  left: 50%;
  transition: all 0.5s ease;
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
}

.siteheader__spnavbar:nth-child(1) {
  top: 16.6666666667%;
}

.siteheader__spnavbar:nth-child(2) {
  top: calc((100% - clamp(2px, 0.5333333333vw, 2px)) / 2);
}

.siteheader__spnavbar:nth-child(3) {
  bottom: 16.6666666667%;
}

.spnav--open .siteheader__spnavbar:nth-child(1) {
  top: calc((100% - clamp(2px, 0.5333333333vw, 2px)) / 2);
  width: 92%;
  transform: translate3d(-50%, 0, 0) rotate(235.6deg);
}

.spnav--open .siteheader__spnavbar:nth-child(2) {
  top: calc((100% - clamp(2px, 0.5333333333vw, 2px)) / 2);
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.spnav--open .siteheader__spnavbar:nth-child(3) {
  bottom: calc((100% - clamp(2px, 0.5333333333vw, 2px)) / 2);
  width: 92%;
  transform: translate3d(-50%, 0, 0) rotate(-235.6deg);
}

.siteheader__splogo {
  display: block;
  width: 26.0563380282%;
}

.siteheader__splink {
  display: flex;
  flex-wrap: nowrap;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(5px, 1.3333333333vw, 10px);
  width: 32.3943661972%;
}

.siteheader__splinkitem {
  color: var(--c-red);
  display: block;
  font-size: clamp(7px, 1.8666666667vw, 14px);
  font-weight: 500;
  line-height: 1em;
  white-space: nowrap;
  word-break: keep-all;
  text-align: center;
  box-sizing: border-box;
  padding-top: 2.1739130435%;
}

.siteheader__spmain .siteheader__splinkitem--mypage {
  display: block;
  width: 30.4347826087%;
}

.siteheader__spmain .siteheader__splinkitem--mypage img {
  display: block;
  margin: 0 auto 11.4285714286%;
  width: 40%;
}

.siteheader__spmain .siteheader__splinkitem--cart {
  display: block;
  position: relative;
  width: 26.0869565217%;
}

.siteheader__spmain .siteheader__splinkitem--cart img {
  display: block;
  margin: 0 auto 13.3333333333%;
  width: 46.6666666667%;
}

.siteheader__spmain .siteheader__splinkitem--badge {
  position: absolute;
  top: 0;
  right: 8.3333333333%;
  z-index: 2;
  font-size: clamp(6px, 1.6vw, 12px);
  background: var(--c-red);
  color: var(--c-wh);
  width: 1.5em;
  height: 1.5em;
  border-radius: 2em;
  display: flex;
  flex-wrap: nowrap;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  min-width: 0px;
  left: auto;
}

.siteheader__spsub {
  background: var(--c-pink2);
  display: block;
  box-sizing: border-box;
  padding: 8%;
  margin: 0 auto;
}

.siteheader__spsub .siteheader__spsublink {
  display: block;
  box-sizing: border-box;
  border-bottom: 1px solid var(--c-pink);
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.siteheader__spsub .siteheader__spsublink:first-of-type {
  border-top: 1px solid var(--c-pink);
}

.siteheader__spsub .siteheader__spsubitem {
  display: block;
  box-sizing: border-box;
  font-size: clamp(13px, 3.4666666667vw, 26px);
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 4.7619047619% 1.5873015873%;
  position: relative;
}

.siteheader__spsubitem--acd:before {
  content: "";
  display: block;
  background: var(--c-bk);
  transition: all 0.3s ease;
  position: absolute;
  top: calc(50% - 1px);
  right: 1.5873015873%;
  height: 2px;
  width: 3.1746031746%;
  transform: rotate(0deg);
  opacity: 1;
}

.siteheader__spsubitem--acd:after {
  content: "";
  display: block;
  background: var(--c-bk);
  transition: all 0.3s ease;
  position: absolute;
  top: calc(50% - 1px);
  right: 1.5873015873%;
  height: 2px;
  width: 3.1746031746%;
  transform: rotate(90deg);
  opacity: 1;
}

.acd--open.siteheader__spsubitem--acd:before {
  content: "";
  display: block;
  transform: rotate(90deg);
  opacity: 0;
}

.acd--open.siteheader__spsubitem--acd:after {
  content: "";
  display: block;
  transform: rotate(180deg);
}

.siteheader__spsublink--child {
  box-sizing: border-box;
  padding-bottom: 1.5873015873%;
}

.siteheader__spsub .siteheader__spsubitem--child {
  display: block;
  box-sizing: border-box;
  font-size: clamp(12px, 3.2vw, 24px);
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 0% 4.7619047619%;
  position: relative;
  margin-bottom: 3.1746031746%;
}

.siteheader__spsub .siteheader__spclose {
  box-sizing: border-box;
  margin: 7.9365079365% auto 0;
}

.siteheader__spsub .header__navclose {
  display: block;
  box-sizing: border-box;
  padding: 4%;
  font-size: clamp(7px, 1.8666666667vw, 14px);
  font-weight: 500;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  cursor: pointer;
}

.siteheader__spsub .header__navclose:before {
  content: "×";
  font-size: 1.2857142857em;
  vertical-align: baseline;
  margin-right: 0.5em;
}

.gimcbtn--search {
  width: 20px;
  font-size: 20px;
}

#q_products_product_categories_product_category_id_eq {
  width: 100%;
  height: 40px;
  font-size: 16px;
  padding: 0 20px;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  border-color: #BDC1C2;
}

.siteheader__pcnavitem__childbg {
  display: none;
}

/* -------------------------------------------- */
/* Mobile-only styles - PC styles removed */
/* -------------------------------------------- */
#siteheader .siteheader--pc {
  display: none;
}

.siteheader {
  display: none;
}

#siteheader {
  display: none;
}

@media screen and (max-width: 768px) {
  #siteheader {
    display: block;
  }
}
.siteheader__splink {
  opacity: 0;
  visibility: hidden;
}

.sitefooter__grouptext {
  display: none;
}

/* CSS Document */
/*  - footer - */
#sitefooter {
  margin: clamp(70px, 18.6666666667%, 140px) auto 0;
  width: 100%;
  padding: 0;
}

.sitefooter__main {
  margin: clamp(30px, 8%, 60px) auto 0;
}

.sitefooter__logo {
  width: 57.4666666667%;
  margin: clamp(30px, 8%, 60px) auto;
  display: block;
}

.sitefooter__snslink {
  display: flex;
  flex-wrap: nowrap;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin: clamp(30px, 8%, 60px) auto 0;
  gap: clamp(20px, 5.3333333333vw, 40px);
}

.sitefooter__snsitem {
  display: flex;
  flex-wrap: nowrap;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  height: clamp(40px, 10.6666666667vw, 80px);
  width: clamp(40px, 10.6666666667vw, 80px);
  background: var(--c-pink2);
  border-radius: clamp(40px, 10.6666666667vw, 80px);
  transition: all 0.5s ease;
}

.sitefooter__snsitem:hover {
  background: var(--c-pink);
}

.sitefooter__snsitem--x {
  display: block;
  width: 50%;
}

.sitefooter__snsitem--ig {
  display: block;
  width: 50%;
}

.sitefooter__snsitem--fb {
  display: block;
  width: 25%;
}

.sitefooter__snsitem--line {
  display: block;
  width: 62.5%;
}

.sitefooter__spsub {
  display: block;
  box-sizing: border-box;
  padding: 8%;
  margin: 0 auto;
}

.sitefooter__spsub .sitefooter__spsublink {
  display: block;
  box-sizing: border-box;
  border-bottom: 1px solid var(--c-pink);
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.sitefooter__spsub .sitefooter__spsublink:first-of-type {
  border-top: 1px solid var(--c-pink);
}

.sitefooter__spsub .sitefooter__spsubitem {
  display: block;
  box-sizing: border-box;
  font-size: clamp(13px, 3.4666666667vw, 26px);
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 4.7619047619% 1.5873015873%;
  position: relative;
}

a.sitefooter__spsubitem {
  border-bottom: 1px solid var(--c-pink);
}

.sitefooter__spsubitem--acd:before {
  content: "";
  display: block;
  background: var(--c-bk);
  transition: all 0.3s ease;
  position: absolute;
  top: calc(50% - 1px);
  right: 1.5873015873%;
  height: 2px;
  width: 3.1746031746%;
  transform: rotate(0deg);
  opacity: 1;
}

.sitefooter__spsubitem--acd:after {
  content: "";
  display: block;
  background: var(--c-bk);
  transition: all 0.3s ease;
  position: absolute;
  top: calc(50% - 1px);
  right: 1.5873015873%;
  height: 2px;
  width: 3.1746031746%;
  transform: rotate(90deg);
  opacity: 1;
}

.acd--open.sitefooter__spsubitem--acd:before {
  content: "";
  display: block;
  transform: rotate(90deg);
  opacity: 0;
}

.acd--open.sitefooter__spsubitem--acd:after {
  content: "";
  display: block;
  transform: rotate(180deg);
}

.sitefooter__spsublink--child {
  box-sizing: border-box;
  padding-bottom: 1.5873015873%;
}

.sitefooter__spsub .sitefooter__spsubitem--child {
  display: block;
  box-sizing: border-box;
  font-size: clamp(12px, 3.2vw, 24px);
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 0% 4.7619047619%;
  position: relative;
  margin-bottom: 3.1746031746%;
}

.sitefooter__group {
  box-sizing: border-box;
  display: block;
  padding: 5.3333333333%;
  margin: 0 auto;
}

.sitefooter__groupttl {
  text-align: left;
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  margin: 0 auto clamp(10px, 2.6666666667%, 20px);
}

.sitefooter__grouplink {
  display: flex;
  flex-wrap: nowrap;
  -ms-align-items: stretch;
  align-items: stretch;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  margin: clamp(30px, 8%, 60px) auto;
}

.sitefooter__grouplinkitem {
  display: block;
  box-sizing: border-box;
  border: 1px solid transparent;
  width: 46.3768115942%;
  font-size: 0.9166666667em;
  box-sizing: border-box;
  padding: 4.347826087% 0;
}

.sitefooter__grouplinkitem a {
  display: block;
  margin: 9.375% auto 0;
}

.sitefooter__grouplinkitem img {
  width: 86.875%;
  margin: 0 auto;
}

.sitefooter__grouplinkbar {
  width: 1px;
  background: var(--c-beige);
}

.sitefooter__groupbar {
  display: none;
}

#copyright {
  text-align: center;
  color: var(--c-red);
  font-size: 0.8333333333em;
  margin: 0 auto clamp(50px, 13.3333333333%, 100px);
}

/* -------------------------------------------- */
@media screen and (min-width: 750px) {
  .sitefooter__main {
    margin: 140px auto 60px;
    max-width: 1040px;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    flex-wrap: nowrap;
    -ms-align-items: stretch;
    align-items: stretch;
    justify-content: space-between;
  }
  .sitefooter__sns {
    width: 320px;
    margin: 0;
  }
  .sitefooter__logo {
    margin: 0 auto;
    display: block;
    width: 308px;
    margin-left: 0;
  }
  .sitefooter__snslink {
    margin: 80px auto;
    gap: clamp(20px, 5.3333333333vw, 40px);
  }
  .sitefooter__snsitem {
    height: 80px;
    width: 80px;
    border-radius: 80px;
  }
  .sitefooter__link {
    width: calc(100% - 340px);
    max-width: 520px;
    margin: 0;
  }
  .sitefooter__link a:hover {
    color: var(--c-red);
  }
  .sitefooter__pcsubitem {
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin: 20px auto 20px 0;
  }
  .sitefooter__pcsubitem--child {
    font-size: 18px;
    font-weight: 500;
    display: block;
    box-sizing: border-box;
    padding-left: 0;
    margin: 20px auto 20px 0;
  }
  .sitefooter__pcsub {
    display: flex;
    flex-wrap: wrap;
    -ms-align-items: stretch;
    align-items: stretch;
    justify-content: flex-start;
  }
  .sitefooter__pcsublink {
    width: 50%;
    box-sizing: border-box;
    padding-right: 10px;
    padding-bottom: 20px;
    margin: 0;
  }
  .sitefooter__groupbar {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 1px;
    border: none;
    background: var(--c-bk);
  }
  .sitefooter__group {
    margin: 0px auto 0;
    max-width: 1040px;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    flex-wrap: nowrap;
    -ms-align-items: stretch;
    align-items: stretch;
    justify-content: space-between;
  }
  .sitefooter__groupbox {
    width: 47%;
    max-width: 470px;
    margin: 0;
  }
  .sitefooter__groupttl {
    text-align: left;
    font-size: 26px;
    margin: 60px auto 20px;
  }
  .sitefooter__grouptext {
    font-size: 20px;
    line-height: 40px;
  }
  .sitefooter__grouplink {
    width: 49%;
    max-width: 490px;
    margin: 60px auto;
    gap: 20px;
  }
  .sitefooter__grouplinkitem {
    border: none;
    width: 50%;
    font-size: 20px;
    padding: 0;
  }
  .sitefooter__grouplinkitem a {
    display: block;
    margin: 20px auto 0;
  }
  .sitefooter__grouplinkitem img {
    width: 90.612244898%;
    margin: 0 auto;
  }
  .sitefooter__grouplinkbar {
    display: none;
  }
  #copyright {
    text-align: center;
    color: var(--c-red);
    font-size: 14px;
    margin: 60px auto 0;
    padding: 30px 0;
    border-top: 10px solid var(--c-red);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.precious-time-hero__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.precious-time-hero {
  max-width: 1512px;
  margin: auto;
}

.precious-time-hero__left {
  width: clamp(1px, 33.3994708995vw, 505px);
  position: sticky;
  left: 0;
  top: 0;
  height: 100vh;
}
@media screen and (max-width: 840px) {
  .precious-time-hero__left {
    display: none;
  }
}
.precious-time-hero__left .precious-time-hero__logo {
  width: clamp(1px, 12.6984126984vw, 192px);
  margin: 0 0 0 0;
  padding-top: clamp(1px, 2.1164021164vw, 32px);
  padding-left: clamp(1px, 2.1164021164vw, 32px);
}
.precious-time-hero__left .precious-time-hero__nav {
  width: clamp(1px, 21.626984127vw, 327px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 1100px) {
  .precious-time-hero__left .precious-time-hero__nav {
    left: 25%;
  }
}
@media screen and (max-width: 1080px) {
  .precious-time-hero__left .precious-time-hero__nav {
    width: clamp(1px, 33.0687830688vw, 500px);
  }
}
.precious-time-hero__left figure.precious-time-hero__dog-image {
  width: clamp(1px, 5.4232804233vw, 82px);
  margin: 0 0 0 clamp(1px, 1.3227513228vw, 20px);
}
.precious-time-hero__left .precious-time-hero__category-wrap {
  display: flex;
  justify-content: start;
  gap: clamp(40px, 10.1781170483vw, 50.8905852417px);
  margin-top: clamp(1px, 3.5714285714vw, 54px);
}
.precious-time-hero__left nav.precious-time-hero__bottom-nav {
  position: absolute;
  bottom: clamp(1px, 2.1164021164vw, 32px);
  left: clamp(1px, 2.1164021164vw, 32px);
}
.precious-time-hero__left a.precious-time-hero__bottom-nav-link {
  color: var(--black, #2e2e2e);
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.precious-time-hero__category-item {
  margin-bottom: clamp(1px, 1.0582010582vw, 16px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.precious-time-hero__category-item::before {
  content: "";
  display: inline-block;
  width: clamp(1px, 0.5291005291vw, 8px);
  height: clamp(1px, 0.5291005291vw, 8px);
  background-image: url("../img/triangle_marker.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: clamp(1px, 0.5291005291vw, 8px);
  transform: rotate(90deg);
  vertical-align: middle;
}

a.precious-time-hero__category-link {
  color: var(--red, #70061a);
  text-align: center;
  font-family: Oranienbaum;
  font-size: f;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.96px;
}

.precious-time-hero__right {
  width: clamp(1px, 33.5317460317vw, 507px);
  position: sticky;
  right: 0;
  top: 0;
  height: 100vh;
}
@media screen and (max-width: 1100px) {
  .precious-time-hero__right {
    display: none;
  }
}
.precious-time-hero__right .precious-time-hero__accent-bg {
  width: clamp(1px, 19.3121693122vw, 292px);
  background: var(--red, #70061a);
  backdrop-filter: blur(25px);
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 0;
}
.precious-time-hero__right figure.precious-time-hero__photo-card-image {
  width: clamp(1px, 26.1904761905vw, 396px);
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  height: -moz-max-content;
  height: max-content;
}
.precious-time-hero__right figure.precious-time-hero__photo-card-image .precious-time-hero__photo-card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  height: auto;
}
.precious-time-hero__right figure.precious-time-hero__photo-card-image .precious-time-hero__photo-card-img:first-child {
  opacity: 1;
}
.precious-time-hero__right figure.precious-time-hero__photo-card-image .precious-time-hero__photo-card-img.active {
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .precious-time-hero__right figure.precious-time-hero__photo-card-image {
    display: none;
  }
}
.precious-time-hero__right .precious-time-hero__accent-bg:before {
  width: clamp(1px, 19.3121693122vw, 292px);
  background: var(--red, #70061a);
  backdrop-filter: blur(25px);
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  content: "";
  width: 2000px;
  left: 0;
}

.main-visual.precious-time-hero__center {
  max-width: 505px;
  margin: 0;
}
@media screen and (max-width: 840px) {
  .main-visual.precious-time-hero__center {
    max-width: 100%;
  }
}
.main-visual.precious-time-hero__center .main-visual__wrap {
  position: relative;
}
.main-visual.precious-time-hero__center .main-visual__wrap .main-visual__image.v2 {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
}
.main-visual.precious-time-hero__center .main-visual__content {
  background: var(--beige, #efe3d2);
  display: flex;
  width: 100%;
  padding: clamp(80px, 20.3562340967vw, 101.7811704835px) clamp(24px, 6.106870229vw, 30.534351145px) clamp(136px, 34.6055979644vw, 173.0279898219px) clamp(24px, 6.106870229vw, 30.534351145px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 8.1424936387vw, 40.7124681934px);
}
.main-visual.precious-time-hero__center {
  color: var(--black, #2e2e2e);
  text-align: center;
}
.main-visual.precious-time-hero__center .main-visual__title {
  /* copy */
  font-family: "Zen Kaku Gothic New";
  font-size: clamp(24px, 6.106870229vw, 30.534351145px);
  font-style: normal;
  font-weight: 700;
  line-height: clamp(44px, 11.1959287532vw, 55.9796437659px); /* 167% */
  letter-spacing: 2.4px;
}
.main-visual.precious-time-hero__center .main-visual__head {
  overflow: hidden;
}
.main-visual.precious-time-hero__center .main-visual__lead {
  color: var(--black, #2e2e2e);
  text-align: center;
  /* read */
  font-family: "Zen Kaku Gothic New";
  font-size: clamp(16px, 4.0712468193vw, 20.3562340967px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(36px, 9.1603053435vw, 45.8015267176px); /* 225% */
}
.main-visual.precious-time-hero__center .main-visual__tag {
  display: inline-flex;
  height: clamp(38px, 9.6692111959vw, 48.3460559796px);
  padding-left: clamp(8px, 2.0356234097vw, 10.1781170483px);
  justify-content: flex-start;
  align-items: center;
  background: var(--red, #70061a);
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.main-visual.precious-time-hero__center .main-visual__tag-text {
  color: var(--beige, #efe3d2) !important;
  text-align: center;
  font-family: "Oranienbaum", "Times New Roman", serif !important;
  font-size: clamp(40px, 10.1781170483vw, 50.8905852417px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(62px, 15.7760814249vw, 78.8804071247px); /* 155% */
  text-transform: uppercase;
  animation: scrollText 30s linear infinite;
  display: inline-block;
  padding-right: clamp(50px, 12.7226463104vw, 63.6132315522px);
  white-space: nowrap;
}
@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.main-visual.precious-time-hero__center .sec1 {
  padding: clamp(80px, 20.3562340967vw, 101.7811704835px) 0 clamp(80px, 20.3562340967vw, 101.7811704835px) 0;
  background: var(--beige, #efe3d2);
}
.main-visual.precious-time-hero__center .sec1__title {
  color: var(--red, #70061a);
  text-align: center;
  font-family: "Oranienbaum", "Times New Roman", serif !important;
  font-size: clamp(40px, 10.1781170483vw, 50.8905852417px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: clamp(-1.6px, -0.4071246819vw, -2.0356234097px);
  margin-bottom: clamp(16px, 4.0712468193vw, 20.3562340967px);
}
.main-visual.precious-time-hero__center .sec1__text {
  color: var(--black, #2e2e2e);
  text-align: center;
  /* read */
  font-family: "Zen Kaku Gothic New";
  font-size: clamp(16px, 4.0712468193vw, 20.3562340967px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(36px, 9.1603053435vw, 45.8015267176px); /* 225% */
  margin-bottom: clamp(30px, 7.6335877863vw, 38.1679389313px);
}
.main-visual.precious-time-hero__center .sec1__products-slider-container {
  position: relative;
  width: 100%;
}
.main-visual.precious-time-hero__center .swiper {
  width: 100%;
  height: auto;
  min-height: clamp(400px, 101.7811704835vw, 508.9058524173px);
  overflow: hidden;
  padding: clamp(80px, 20.3562340967vw, 101.7811704835px) 0 clamp(54px, 13.7404580153vw, 68.7022900763px);
}
.main-visual.precious-time-hero__center .sec1__products-navigation {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 clamp(20px, 5.0890585242vw, 25.4452926209px);
}
.main-visual.precious-time-hero__center .sec1__products-nav {
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 10.1781170483vw, 50.8905852417px);
  height: clamp(40px, 10.1781170483vw, 50.8905852417px);
}
.main-visual.precious-time-hero__center .sec1__products-nav img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-visual.precious-time-hero__center .sec1__products-nav:hover {
  transform: scale(1.05);
}
.main-visual.precious-time-hero__center .sec1__products-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.main-visual.precious-time-hero__center .sec1__products-nav--prev {
  left: -15px;
  position: relative;
}
.main-visual.precious-time-hero__center .sec1__products-nav--next {
  right: -15px;
  position: relative;
}
.main-visual.precious-time-hero__center .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.main-visual.precious-time-hero__center .swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-visual.precious-time-hero__center .sec1__products-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: clamp(345px, 87.786259542vw, 438.9312977099px);
  min-height: clamp(400px, 101.7811704835vw, 508.9058524173px);
  width: 100%;
  transition: all 0.3s ease;
}
.main-visual.precious-time-hero__center .sec1__products-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  pointer-events: none;
  cursor: default;
}
.main-visual.precious-time-hero__center .sec1__products-image {
  width: 100%;
  height: clamp(345px, 87.786259542vw, 438.9312977099px);
  min-height: clamp(345px, 87.786259542vw, 438.9312977099px);
  aspect-ratio: 1;
  margin: 0 0 clamp(16px, 4.0712468193vw, 20.3562340967px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0;
}
.main-visual.precious-time-hero__center .sec1__products-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.main-visual.precious-time-hero__center .sec1__products-name {
  color: var(--black, #2e2e2e);
  text-align: center;
  /* body */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 4.0712468193vw, 20.3562340967px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(26px, 6.6157760814vw, 33.0788804071px); /* 162.5% */
}
.main-visual.precious-time-hero__center .sec1__products-color {
  color: var(--black, #2e2e2e);
  text-align: center;
  /* body */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 4.0712468193vw, 20.3562340967px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(26px, 6.6157760814vw, 33.0788804071px); /* 162.5% */
}
.main-visual.precious-time-hero__center .sec1__colors {
  margin-bottom: clamp(64px, 16.2849872774vw, 81.4249363868px);
}
.main-visual.precious-time-hero__center .sec1__products-list {
  display: none;
}
.main-visual.precious-time-hero__center .sec1__sub-title {
  color: var(--black, #2e2e2e);
  text-align: center;
  font-family: "Oranienbaum", "Times New Roman", serif !important;
  font-size: clamp(24px, 6.106870229vw, 30.534351145px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: clamp(24px, 6.106870229vw, 30.534351145px);
}
.main-visual.precious-time-hero__center ul.sec1__colors-list {
  display: grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(16px, 4.0712468193vw, 20.3562340967px);
  padding: 0 clamp(24px, 6.106870229vw, 30.534351145px);
}
.main-visual.precious-time-hero__center .sec1__colors-button {
  width: 100%;
  pointer-events: none;
  cursor: default;
}
.main-visual.precious-time-hero__center p.sec1__colors-name {
  color: var(--black, #2e2e2e);
  text-align: center;
  font-family: "Zen Kaku Gothic New" !important;
  font-size: clamp(14px, 3.5623409669vw, 17.8117048346px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(20px, 5.0890585242vw, 25.4452926209px);
  margin-top: clamp(8px, 2.0356234097vw, 10.1781170483px);
}
.main-visual.precious-time-hero__center .sec1__other-list {
  display: flex;
  gap: clamp(24px, 6.106870229vw, 30.534351145px);
  padding: 0 clamp(24px, 6.106870229vw, 30.534351145px);
  flex-direction: column;
}
.main-visual.precious-time-hero__center .sec1__other-item {
  flex: 1;
  min-width: 0;
}
.main-visual.precious-time-hero__center .sec1__other-item:nth-child(2) .sec1__other-body {
  order: 1;
}
.main-visual.precious-time-hero__center .sec1__other-item:nth-child(2) .sec1__other-image {
  order: 2;
}
.main-visual.precious-time-hero__center .sec1__other-link {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2.0356234097vw, 10.1781170483px);
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.main-visual.precious-time-hero__center .sec1__other-image {
  aspect-ratio: 1;
  flex: 1 0 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.main-visual.precious-time-hero__center .sec1__other-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-visual.precious-time-hero__center .sec1__other-body {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  margin-bottom: clamp(16px, 4.0712468193vw, 20.3562340967px);
}
.main-visual.precious-time-hero__center .sec1__other-name,
.main-visual.precious-time-hero__center .sec1__other-price {
  color: var(--black, #2e2e2e);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 4.0712468193vw, 20.3562340967px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(26px, 6.6157760814vw, 33.0788804071px);
  margin: 0;
  width: 100%;
}
.main-visual.precious-time-hero__center .sec1__other-button {
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: clamp(16px, 4.0712468193vw, 20.3562340967px);
}
.main-visual.precious-time-hero__center .sec1__other-button:hover {
  transform: scale(1.05);
}
.main-visual.precious-time-hero__center .sec2,
.main-visual.precious-time-hero__center .sec4 {
  background: var(--gray, #eceae7);
}
.main-visual.precious-time-hero__center {
  /*ここからSP用*/
}
@media screen and (max-width: 840px) {
  .main-visual.precious-time-hero__center .main-visual__content {
    padding: 20.3562340967vw 6.106870229vw 34.6055979644vw 6.106870229vw;
    gap: 8.1424936387vw;
  }
  .main-visual.precious-time-hero__center .main-visual__title {
    font-size: 6.106870229vw;
    line-height: 11.1959287532vw; /* 167% */
  }
  .main-visual.precious-time-hero__center .main-visual__lead {
    font-size: 4.0712468193vw;
    line-height: 9.1603053435vw; /* 225% */
  }
  .main-visual.precious-time-hero__center .main-visual__tag {
    height: 9.6692111959vw;
    padding-left: 2.0356234097vw;
  }
  .main-visual.precious-time-hero__center .main-visual__tag-text {
    font-size: 10.1781170483vw;
    line-height: 15.7760814249vw; /* 155% */
    padding-right: 12.7226463104vw;
  }
  .main-visual.precious-time-hero__center .swiper {
    padding: 20.3562340967vw 0 13.7404580153vw;
  }
  .main-visual.precious-time-hero__center .sec1__products-navigation {
    padding: 0 5.0890585242vw;
  }
  .main-visual.precious-time-hero__center .sec1__products-nav {
    width: 10.1781170483vw;
    height: 10.1781170483vw;
  }
  .main-visual.precious-time-hero__center .sec1__title {
    font-size: 10.1781170483vw;
    letter-spacing: -0.4071246819vw;
    margin-bottom: 4.0712468193vw;
  }
  .main-visual.precious-time-hero__center .sec1__text {
    font-size: 4.0712468193vw;
    line-height: 9.1603053435vw; /* 225% */
  }
  .main-visual.precious-time-hero__center .sec1__products-item {
    max-width: 87.786259542vw;
  }
  .main-visual.precious-time-hero__center .sec1__products-image {
    height: 87.786259542vw;
    margin: 0 0 4.0712468193vw 0;
  }
  .main-visual.precious-time-hero__center .sec1__products-name {
    font-size: 4.0712468193vw;
    line-height: 6.6157760814vw; /* 162.5% */
  }
  .main-visual.precious-time-hero__center .sec1__products-color {
    font-size: 4.0712468193vw;
    line-height: 6.6157760814vw; /* 162.5% */
  }
  .main-visual.precious-time-hero__center .sec1__colors {
    margin-bottom: 16.2849872774vw;
  }
  .main-visual.precious-time-hero__center .sec1__sub-title {
    font-size: 6.106870229vw;
    margin-bottom: 6.106870229vw;
  }
  .main-visual.precious-time-hero__center ul.sec1__colors-list {
    gap: 4.0712468193vw;
    padding: 0 6.106870229vw;
  }
  .main-visual.precious-time-hero__center p.sec1__colors-name {
    font-size: 3.5623409669vw;
    line-height: 5.0890585242vw;
    margin-top: 2.0356234097vw;
  }
  .main-visual.precious-time-hero__center .sec1__other-list {
    gap: 6.106870229vw;
    padding: 0 6.106870229vw;
  }
  .main-visual.precious-time-hero__center .sec1__other-link {
    gap: 2.0356234097vw;
  }
  .main-visual.precious-time-hero__center .sec1__other-body {
    margin-bottom: 4.0712468193vw;
  }
  .main-visual.precious-time-hero__center .sec1__other-name,
  .main-visual.precious-time-hero__center .sec1__other-price {
    font-size: 4.0712468193vw;
    line-height: 6.6157760814vw;
  }
  .main-visual.precious-time-hero__center .sec1__other-button {
    margin-top: 4.0712468193vw;
  }
}

.sec1 {
  padding: clamp(80px, 20.3562340967vw, 101.7811704835px) 0 clamp(80px, 20.3562340967vw, 101.7811704835px) 0;
  background: var(--beige, #efe3d2);
}
.sec1.sec2, .sec1.sec4 {
  background: var(--gray, #eceae7);
}

.sec1__title {
  color: var(--red, #70061a);
  text-align: center;
  font-family: "Oranienbaum", "Times New Roman", serif !important;
  font-size: clamp(40px, 10.1781170483vw, 50.8905852417px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: clamp(-1.6px, -0.4071246819vw, -2.0356234097px);
  margin-bottom: clamp(16px, 4.0712468193vw, 20.3562340967px);
}

.sec1__text {
  color: var(--black, #2e2e2e);
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: clamp(16px, 4.0712468193vw, 20.3562340967px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(36px, 9.1603053435vw, 45.8015267176px);
  margin-bottom: clamp(30px, 7.6335877863vw, 38.1679389313px);
}

.sec1__products-slider-container {
  position: relative;
  width: 100%;
  min-height: clamp(400px, 101.7811704835vw, 508.9058524173px);
}

.swiper {
  width: 100%;
  height: auto;
  min-height: clamp(400px, 101.7811704835vw, 508.9058524173px);
  overflow: hidden;
  padding: clamp(80px, 20.3562340967vw, 101.7811704835px) 0 clamp(54px, 13.7404580153vw, 68.7022900763px);
}

.sec1__products-navigation {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 clamp(20px, 5.0890585242vw, 25.4452926209px);
}

.sec1__products-nav {
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 10.1781170483vw, 50.8905852417px);
  height: clamp(40px, 10.1781170483vw, 50.8905852417px);
}
.sec1__products-nav img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sec1__products-nav:hover {
  transform: scale(1.05);
}
.sec1__products-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.sec1__products-nav--prev {
  left: -15px;
  position: relative;
}

.sec1__products-nav--next {
  right: -15px;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec1__products-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: clamp(345px, 87.786259542vw, 438.9312977099px);
  min-height: clamp(400px, 101.7811704835vw, 508.9058524173px);
  width: 100%;
  transition: all 0.3s ease;
}
.sec1__products-item:hover {
  /* transform: scale(1.02); ホバー時の拡大効果を無効化 */
}

.sec1__products-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  pointer-events: none;
  cursor: default;
}

.sec1__products-image {
  width: 100%;
  height: clamp(345px, 87.786259542vw, 438.9312977099px);
  min-height: clamp(345px, 87.786259542vw, 438.9312977099px);
  aspect-ratio: 1;
  margin: 0 0 clamp(16px, 4.0712468193vw, 20.3562340967px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0;
}
.sec1__products-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.sec1__products-name,
.sec1__products-color {
  color: var(--black, #2e2e2e);
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 4.0712468193vw, 20.3562340967px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(26px, 6.6157760814vw, 33.0788804071px);
  margin: 0;
  padding: 0;
}

.sec1__sub-title {
  color: var(--black, #2e2e2e);
  text-align: center;
  font-family: "Oranienbaum", "Times New Roman", serif !important;
  font-size: clamp(24px, 6.106870229vw, 30.534351145px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: clamp(24px, 6.106870229vw, 30.534351145px);
}

.sec1__colors {
  margin-bottom: clamp(64px, 16.2849872774vw, 81.4249363868px);
}

ul.sec1__colors-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(16px, 4.0712468193vw, 20.3562340967px);
  padding: 0 clamp(24px, 6.106870229vw, 30.534351145px);
}

.sec1__colors-button {
  width: 100%;
  pointer-events: none;
  cursor: default;
}

p.sec1__colors-name {
  color: var(--black, #2e2e2e);
  text-align: center;
  font-family: "Zen Kaku Gothic New" !important;
  font-size: clamp(14px, 3.5623409669vw, 17.8117048346px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(20px, 5.0890585242vw, 25.4452926209px);
  margin-top: clamp(8px, 2.0356234097vw, 10.1781170483px);
}

.sec1__other-list {
  display: flex;
  gap: clamp(24px, 6.106870229vw, 30.534351145px);
  padding: 0 clamp(24px, 6.106870229vw, 30.534351145px);
  flex-direction: column;
}

.sec1__other-item {
  flex: 1;
  min-width: 0;
}
.sec1__other-item:nth-child(2) .sec1__other-body {
  order: 1;
}
.sec1__other-item:nth-child(2) .sec1__other-image {
  order: 2;
}

.sec1__other-link {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2.0356234097vw, 10.1781170483px);
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.sec1__other-image {
  aspect-ratio: 1;
  flex: 1 0 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.sec1__other-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sec1__other-body {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  margin-bottom: clamp(16px, 4.0712468193vw, 20.3562340967px);
}

.sec1__other-name,
.sec1__other-price {
  color: var(--black, #2e2e2e);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 4.0712468193vw, 20.3562340967px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(26px, 6.6157760814vw, 33.0788804071px);
  margin: 0;
  width: 100%;
}

.sec1__other-button {
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: clamp(16px, 4.0712468193vw, 20.3562340967px);
}
.sec1__other-button:hover {
  transform: scale(1.05);
}

.sec1__decoration {
  margin-top: clamp(80px, 20.3562340967vw, 101.7811704835px);
}

.movie_area {
  margin: 0vw 0;
  text-align: center;
}
.movie_area.area1 {
  margin-top: clamp(40px, 10.1781170483vw, 50.8905852417px);
}
.movie_area__container {
  display: flex;
  justify-content: center;
  width: 100%;
}
.movie_area__video-wrapper {
  width: 100%;
  max-width: 88%;
  height: auto;
}
.movie_area__video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1; /* 正方形 */
  overflow: hidden;
}

.movie_area__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 177.78%; /* 9:16動画を中央配置 */
}

@media screen and (max-width: 840px) {
  .sec1 {
    padding: 20.3562340967vw 0 20.3562340967vw 0;
  }
  .sec1__title {
    font-size: 10.1781170483vw;
    letter-spacing: -0.4071246819vw;
    margin-bottom: 4.0712468193vw;
  }
  .sec1__text {
    font-size: 4.0712468193vw;
    line-height: 9.1603053435vw;
    margin-bottom: 7.6335877863vw;
  }
  .sec1__sub-title {
    font-size: 6.106870229vw;
    margin-bottom: 6.106870229vw;
  }
  .sec1__colors {
    margin-bottom: 16.2849872774vw;
  }
  ul.sec1__colors-list {
    gap: 4.0712468193vw;
    padding: 0 6.106870229vw;
  }
  p.sec1__colors-name {
    font-size: 3.5623409669vw;
    line-height: 5.0890585242vw;
    margin-top: 2.0356234097vw;
  }
  .sec1__other-list {
    gap: 6.106870229vw;
    padding: 0 6.106870229vw;
  }
  .sec1__other-link {
    gap: 2.0356234097vw;
  }
  .sec1__other-body {
    margin-bottom: 4.0712468193vw;
  }
  .sec1__other-name,
  .sec1__other-price {
    font-size: 4.0712468193vw;
    line-height: 6.6157760814vw;
  }
  .sec1__other-button {
    margin-top: 4.0712468193vw;
  }
  .area1 {
    margin-top: 20.3562340967vw;
  }
}
figure.sec1__main-image {
  margin: 0 0 -3px 0;
}

.siteheader__info {
  border-bottom: 0;
  text-align: center;
  box-sizing: border-box;
  padding: 0;
}

@media screen and (max-width: 840px) {
  .siteheader__info {
    border-bottom: 0;
    text-align: center;
    box-sizing: border-box;
    padding: 0;
  }
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-left: 0;
    padding-right: 0;
  }
}/*# sourceMappingURL=style.css.map */