@charset "UTF-8";
html {
  font-size: 62.5%;
  overscroll-behavior-y: none;
}

body {
  background: #fff8e8;
  letter-spacing: 0.08em;
  overflow-x: hidden;
  width: 100%;
  /* 追加：バウンド防止とGPU描画の安定化 */
}

.LC_Page_User #main-content {
  margin-bottom: 0;
}

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

.page-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  letter-spacing: 0;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #62574d;
}

.sp {
  display: none !important;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

img {
  vertical-align: bottom;
  height: auto;
  display: block;
}

/* --- 初期状態（画面に入る前） --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px); /* 少し下から */
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* フェードインやアニメーションさせている要素全てに指定 */
.fade-up,
.left-fixed-txt,
.recommendSwiper {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.caro {
  font-family: "Cormorant Infant", serif;
}

.txt {
  font-family: "Shippori Mincho B1", serif;
  text-align: justify;
  font-feature-settings: "palt";
  font-size: clamp(1.5rem, 1.2vw + 1.1rem, 1.8rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.sec-txt {
  font-family: "Shippori Mincho B1", serif;
  text-align: justify;
  font-feature-settings: "palt";
  font-size: clamp(1.4rem, 0.5vw + 1.2rem, 1.6rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: #62574D !important;
}

@media screen and (min-width: 769px) {
  a {
    text-decoration: none;
    transition: 0.4s;
    color: inherit;
  }
  a:hover {
    opacity: 0.7;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .nav a:hover {
    color: #C8A96A !important;
  }
}
@media screen and (max-width: 768px) {
  .page-wrap {
    max-width: 100%;
  }
  a:hover {
    opacity: 1;
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .inner {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .sec-txt {
    text-align: justify;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 344px) {
  .txt {
    font-size: 1.38rem;
  }
}
/* ==========================================
flex
========================================== */
.flex {
  display: flex;
}

.flex_around {
  justify-content: space-around;
}

.flex_between {
  justify-content: space-between;
}

.flex_wrap {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.flex_center {
  align-items: center;
}

.flex_top {
  align-items: flex-start;
}

.flex_bottom {
  align-items: flex-end;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.txt-center {
  text-align: center;
} 
/* ==========================================
header　
========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 99999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s;
}

.header.show {
  transform: translateY(0);
  opacity: 1;
}

.header-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
}

/* ---------- Logo ---------- */
.logo img {
  height: 24px;
  width: auto;
}

/* ---------- Navigation ---------- */
.nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav a {
  font-family: "Cormorant Infant", serif;
  font-size: clamp(1.3rem, 0.8vw + 1rem, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333333;
  text-decoration: none;
  transition: 0.3s;
}

.nav li:first-child {
  position: relative;
  padding-right: 24px;
}

.nav li:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(212, 175, 55, 0.55);
}

@media screen and (max-width: 768px) {
  .header-inner {
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
  }
  .nav ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
  }
  .nav li:first-child {
    position: relative;
    padding-right: 10px;
  }
  .logo img {
    height: 20px;
    width: auto;
  }
}
@media screen and (max-width: 375px) {
  .header {
    height: 48px;
  }
  .header-inner {
    padding: 0 5px;
  }
  /* ---------- Logo ---------- */
  .logo img {
    height: 18px;
    width: auto;
  }
}
@media screen and (max-width: 344px) {
  .header {
    height: 40px;
  }
  .header-inner {
    padding: 0 3px;
  }
  .nav ul {
    gap: 5px;
  }
  /* ---------- Logo ---------- */
  .logo img {
    height: 16px;
    width: auto;
  }
}
/*==========================================
scroll　ダウン
==========================================*/
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 30;
}

/* 大きな矢印 */
.scroll-arrow {
  display: block;
  width: 28px;
  height: 28px;
  border-right: 3px solid rgba(255, 255, 255, 0.95);
  border-bottom: 3px solid rgba(255, 255, 255, 0.95);
  transform: rotate(45deg);
  animation: scrollArrow 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
}

@keyframes scrollArrow {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: rotate(45deg) translate(8px, 8px);
    opacity: 1;
  }
}
/* ==========================================
アニメーション　バグ防止
========================================== */
/* 親要素（枠組み） */
.parallax-image {
  overflow: hidden; /* はみ出た画像をしっかりカット */
  position: relative;
}

/* 画像本体 */
.parallax-image img {
  display: block;
  width: 100%;
  height: auto;
  /* 滑らかにするための最適化（バッチリです！） */
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ==========================================
Layout left
========================================== */
.left-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 50vw;
  height: 100dvh;
  overflow: hidden;
  background: url(../img/main_img_pc.jpg) no-repeat center/cover;
}

.left-fixed-txt {
  position: absolute;
  left: 11%;
  bottom: 14%;
  color: rgb(74, 53, 38);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-family: "Ysabeau SC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: 0em;
  z-index: 20;
}
.left-fixed-txt-carof {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  font-size: clamp(3.8rem, 5vw, 6rem);
  letter-spacing: 0.03em;
}

.left-p {
  position: absolute;
  bottom: 8%;
  left: 11%;
  z-index: 30;
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.4rem, 0.6vw + 1rem, 1.9rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: rgba(74, 53, 38, 0.92);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.45);
}

@media screen and (max-width: 1146px) {
  .left-p {
    bottom: 5%;
  }
}
@media screen and (max-width: 1044px) {
  .left-fixed {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
  }
  .left-p {
    bottom: 8%;
  }
}
@media screen and (max-width: 768px) {
  .left-fixed {
    width: 100%;
    height: 100vh;
    /* 古いiOS Safari向けのフォールバック（先に書く） */
    min-height: -webkit-fill-available;
    /* モダンブラウザ・最新iOS向け（後から書いて上書きさせるのがポイント！） */
    height: 100dvh;
    overflow: hidden;
    background: url(../img/main_img.jpg) no-repeat center/cover;
    background-attachment: scroll; /* ★これを明示しておくとChromeで安定します */
  }
  .left-fixed-txt {
    left: 11%;
    bottom: 18%;
  }
  .left-p {
    bottom: 9%;
  }
}
@media screen and (max-width: 520px) {
  .left-fixed-txt {
    bottom: 24%;
  }
  .left-p {
    bottom: 16%;
  }
}
@media screen and (max-width: 400px) {
  .left-fixed-txt {
    left: 6%;
  }
  .left-p {
    left: 6%;
  }
}
/*==========================================
Right
==========================================*/
.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb56 {
  margin-bottom: 56px;
}

@media screen and (max-width: 768px) {
  .mb10 {
    margin-bottom: 1.333vw;
  }
  .mb20 {
    margin-bottom: 2.667vw;
  }
  .mb32 {
    margin-bottom: 4.267vw;
  }
  .mb56 {
    margin-bottom: 7.467vw;
  }
}
.sec-pd {
  padding: 100px 60px;
  margin: 0 auto 80px;
}

@media screen and (max-width: 768px) {
  .sec-pd {
    padding: 60px 20px;
    margin: 0 auto 60px;
  }
}
/* ---------- 商品NO start---------- */
.sec {
  position: relative;
}

.product-bg-number {
  position: absolute;
  right: 5%;
  bottom: 2%;
  font-family: "Cormorant Infant", serif;
  font-size: 9rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(74, 53, 38, 0.07);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media screen and (max-width: 768px) {
  .product-bg-number {
    font-size: 4.5rem;
  }
}
/* ---------- フレーム start---------- */
.art-frame {
  padding: 25px;
  border: 1px solid #C9A44C;
  position: relative;
}

.art-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.art-frame-pro {
  position: relative;
  padding: 18px;
  background: #f7efef;
}

.art-frame-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #D4AF37;
  pointer-events: none;
}

.clear-acrylic-frame {
  line-height: 0;
  background: linear-gradient(135deg, #FFFDF8 0%, #FFF5DF 45%, #FCEED2 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 30px rgba(241, 196, 15, 0.15), 0 12px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.clear-acrylic-frame-blue {
  background: linear-gradient(135deg, #F7FCFF 0%, #EDF6FB 45%, #E3F2FA 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.clear-acrylic-frame-white {
  line-height: 0;
  background: linear-gradient(135deg, #FFFDF8 0%, #FCFBF7 45%, #F8F5EF 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 30px rgba(241, 196, 15, 0.15), 0 12px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.gold-frame {
  position: relative;
  display: inline-block;
  padding: 12px;
}

/* 内側の額縁 */
.gold-frame::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 245, 200, 0.6);
  pointer-events: none;
}

/* 商品画像 */
.gold-frame img {
  display: block;
}

.gold-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
  pointer-events: none;
}

.product-img {
  position: relative;
  display: block;
  line-height: 0;
}

.product-img img {
  display: block;
  width: 100%;
  height: auto;
}

.product-img::before,
.product-img::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 10;
}

/* 左上 */
.product-img::before {
  top: -8px;
  left: -8px;
  border-top: 1px solid rgba(203, 178, 138, 0.8);
  border-left: 1px solid rgba(203, 178, 138, 0.8);
}

/* 右下 */
.product-img::after {
  right: -8px;
  bottom: -8px;
  border-right: 1px solid rgba(203, 178, 138, 0.8);
  border-bottom: 1px solid rgba(203, 178, 138, 0.8);
}

.sec03-prod-sun {
  aspect-ratio: 1/1;
  overflow: visible;
}

/* ---------- フレーム end---------- */
/* ---------- price start---------- */
.price {
  width: 100%;
  max-width: 360px;
  margin-bottom: 5rem;
  text-align: justify;
}
.price-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
}
.price-name {
  font-family: "Cormorant Infant", serif;
  font-size: clamp(1.5rem, 0.5vw + 1.3rem, 1.7rem);
  color: #5A4632;
  white-space: nowrap;
  font-weight: bold;
}
.price-line {
  height: 1px;
  background: #D8B56A;
  width: 100%;
}
.price-value {
  font-family: "Cormorant Infant", serif;
  font-size: clamp(1.5rem, 0.5vw + 1.3rem, 1.7rem);
  color: #b8913e;
  white-space: nowrap;
  text-align: right;
  font-weight: bold;
}
.price-note {
  margin: 8px auto 24px;
  font-size: 1.2rem;
  color: #766E65;
  line-height: 1.6;
  font-family: "Shippori Mincho B1", serif;
}

.price-item {
  display: flex;
  align-items: center;
}
.price-item .price-cart-btn {
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.price-item .price-cart-btn:hover {
  opacity: 0.6;
  transform: translateY(-1px);
}
.price-item .price-cart-btn .price-cart-icon {
  width: 12px;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .price {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 5rem;
  }
}
/* ---------- price end---------- */
.sec-prod-ttl {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(2.2rem, 1vw + 1.8rem, 2.8rem);
  font-weight: 400;
  color: #766E65;
  letter-spacing: 0;
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.6;
}

.right-contents {
  margin-left: 50vw;
  width: 50vw;
  padding-top: 50px;
}

.sec02-prod-sun,
.sec03-prod-sun,
.sec04-prod-sun {
  aspect-ratio: 1/1;
}

.sec02-prod-sun img,
.sec03-prod-sun img,
.sec04-prod-sun img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sec01-main {
  background: url(../img/sec01_bg.png) no-repeat center/cover;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 0 auto 120px;
  width: 100%;
  max-width: 700px;
  padding: clamp(40px, 5vw, 60px) clamp(16px, 3vw, 20px);
}
.sec01-main-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Ysabeau SC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(2.5rem, 2.8vw, 3.5rem);
  font-weight: 200;
  color: #7A7268;
  margin-bottom: 2.5rem;
}
.sec01-main-ttl::before, .sec01-main-ttl::after {
  content: "";
  width: 92px;
  height: 1px;
  background: #C9A44C;
  flex: none;
}
.sec01-main-ttl::before {
  margin-right: 30px;
}
.sec01-main-ttl::after {
  margin-left: 30px;
}
.sec01-main-ttl .ttl-text {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}
.sec01-main-ttl-carof {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  letter-spacing: 0.03em;
}
.sec01-main-sabttl {
  font-family: "Cormorant Infant", serif;
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  font-weight: 400;
  color: #7A7268;
  letter-spacing: 0;
  margin-bottom: 32px;
  text-align: center;
}
.sec01-main-sabttl-txt {
  font-family: "Shippori Mincho B1", serif !important;
}
.sec01-main-sun {
  justify-content: center;
}
.sec01-main-sun-wrap-ttl {
  font-size: 1.4rem !important;
  font-family: "Shippori Mincho B1", serif !important;
  font-feature-settings: "palt";
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 2;
  letter-spacing: 0 !important;
  text-align: center;
  color: #7A7268;
}
.sec01-main-sun-wrap-ttl-com {
  font-family: "Ysabeau SC", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.4rem !important;
  font-weight: 400;
  letter-spacing: 0em;
}
.sec01-main-sun-wrap-ttl-sab {
  display: block;
}
.sec01-main-sun-wrap-txt {
  font-size: 1.3rem !important;
  font-family: "Shippori Mincho B1", serif !important;
  font-feature-settings: "palt";
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1.6;
  letter-spacing: 0 !important;
  text-align: center;
}
.sec01-main-sun-img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1540px) {
  .sec01-main {
    max-width: 620px;
  }
  .sec01-main-ttl {
    padding: 0 30px;
    max-width: 480px;
    margin: 0 auto 32px;
  }
}
@media (max-width: 1440px) {
  .sec01-main {
    max-width: 590px;
  }
  .sec01-main-ttl {
    padding: 0 10px;
  }
}
@media (max-width: 1380px) {
  .sec01-main {
    max-width: 540px;
  }
}
@media (max-width: 1240px) {
  .sec01-main {
    max-width: 520px;
  }
}
@media (max-width: 1120px) {
  .sec01-main {
    max-width: 500px;
  }
  .sec01-main-ttl::before, .sec01-main-ttl::after {
    width: 74px;
  }
}
@media (max-width: 1044px) {
  .right-contents {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 100svh;
    background: #fff8e8;
    margin-left: 0;
    padding: 0;
  }
  .sec01-main {
    max-width: 100%;
    border-radius: 0;
  }
  .sec01-main-ttl::before, .sec01-main-ttl::after {
    margin-right: 35px;
    margin-left: 35px;
    width: 90px;
  }
  .sec {
    width: 100%;
    max-width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .right-contents {
    margin-left: 0;
    width: 100%;
    z-index: 5;
    padding: 0 0;
  }
  .sec01-main {
    border-radius: 0;
    padding: 40px 16px;
    margin: 0 auto 60px;
  }
  .sec01-main-ttl::before, .sec01-main-ttl::after {
    margin-right: 24px;
    margin-left: 24px;
    width: 60px;
  }
  .sec01-main-sun-wrap-ttl {
    font-size: 1.2rem !important;
    line-height: 1.6;
    letter-spacing: 0 !important;
    text-align: center;
    color: #7A7268;
  }
  .sec01-main-sun-wrap-ttl-com {
    font-size: 2rem !important;
  }
  .sec01-main-sun-wrap-txt {
    font-size: 1.1rem !important;
  }
}
@media screen and (max-width: 400px) {
  .sec01-main-ttl::before, .sec01-main-ttl::after {
    margin-right: 20px;
    margin-left: 20px;
    width: 50px;
  }
  .sec01-main-sun-img {
    max-width: 42%;
  }
}
.sec02 {
  width: 100%;
  max-width: 750px;
}
.sec02-prod {
  max-width: 680px;
  margin: 0 auto;
}
.sec02-prod-sun {
  width: 100%;
  margin: 0 auto 32px;
}
.sec02-prod-sun img {
  width: 100%;
  display: block;
}
.sec02-prod-txt {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.sec03 {
  width: 100%;
  max-width: 750px;
}
.sec03-prod {
  max-width: 680px;
  margin: 0 auto;
}
.sec03-prod-sun {
  width: 100%;
  margin: 0 auto 32px;
}
.sec03-prod-sun img {
  width: 100%;
  display: block;
}
.sec03-prod-txt {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.sec04 {
  width: 100%;
  max-width: 750px;
}
.sec04-prod {
  max-width: 680px;
  margin: 0 auto;
}
.sec04-prod-sun {
  width: 100%;
  margin: 0 auto 32px;
}
.sec04-prod-sun img {
  width: 100%;
  display: block;
}
.sec04-prod-txt {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.sec05 {
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.8) 0%, transparent 60%), linear-gradient(180deg, #FAF8F5 0%, #E6F6FF 30%, #E6F6FF 70%, #FAF8F5 100%);
}
.sec05-ttl {
  font-family: "Cormorant Infant", serif;
  font-size: clamp(2.8rem, 3vw, 8rem);
  font-weight: 400;
  color: #3e4a59;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 0.08em;
}
.sec05-prod {
  max-width: 800px;
  margin: 0 auto;
}
.sec05-prod-box {
  max-width: 350px;
  margin: 0 auto 48px;
}
.sec05-prod-box img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #D4AF37;
  border: 3px solid rgba(203, 178, 138, 0.8);
  box-sizing: border-border;
}
.sec05-prod-txt {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  color: #4F5D52;
}

@media screen and (max-width: 768px) {
  .sec05-prod {
    max-width: 100%;
    margin: 0 auto;
  }
  .sec05-prod-box {
    max-width: 250px;
    margin: 0 auto 32px;
  }
}
/*=========================
Recommend
=========================*/
.recommend {
  overflow: visible;
  padding: 40px 0 80px;
}

@media screen and (max-width: 768px) {
  .recommend {
    overflow: visible;
    padding: 20px 0 60px;
  }
}
.recommend-ttl {
  margin-bottom: 32px;
  text-align: center;
  font-family: "Cormorant Infant", serif;
  font-size: clamp(3rem, 4vw, 4.8rem);
  font-weight: 400;
  color: #3e4a59;
  letter-spacing: 0.08em;
}

.recommendSwiper {
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.recommendSwiper .swiper-slide {
  opacity: 0.5;
}
.recommendSwiper .swiper-slide-active {
  opacity: 1;
}

.recommendSwiper img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  border-radius: 20px;
}

.recommendSwiper {
  position: relative;
}

.recommendSwiper .swiper-pagination {
  position: static;
  margin-top: 20px;
  text-align: center;
  width: auto;
}

.swiper-pagination-bullet {
  background: #D9D3C6 !important;
  opacity: 1;
  width: 6px;
  height: 6px;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background: #8FA66A !important;
}

/*==================================
footer 
=====================================*/
footer, .recommend {
  /* スマホのチタつき・微揺れを抑えるおまじない */
  backface-visibility: hidden;
  transform: translateZ(0);
}

.bottom {
  position: relative;
  background: linear-gradient(160deg, #cbb28a 0%, #b99863 50%, #9e7d49 100%);
  background-size: cover;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* 全要素の border-box 前の寸法に戻す（SP / PC 共通） */
.bottom .btn,
.bottom .btn a,
.bottom .btn p {
  box-sizing: content-box;
}

.btn {
  padding: 2.5em 0 5em 0;
  margin: 0em auto;
  text-align: center;
}

.btn p {
  font-family: "Bodoni Moda", serif;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.2em;
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: clamp(1.4rem, 1vw + 1rem, 2rem);
  margin: 1.8em auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 260px;
  height: 30px;
  padding: 0.5em 0.2em;
  color: rgba(255, 255, 255, 0.9);
  background-color: transparent;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.14) 50%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: moveGradient 7s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.8s ease, color 0.8s ease, border-color 0.8s ease;
}

.btn a {
  text-decoration: none;
  border: 0;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.btn p:hover, .btn p:active {
  transition: 0.5s;
  color: #fff !important; /* 文字色を金色系に */
  border: 1px solid #000 !important; /* 枠線も金色系に */
  background: rgba(0, 0, 0, 0.5);
  animation: none !important; /* グラデーションアニメーション停止 */
}

.icon {
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3rem; /* または 0 */
  position: relative;
  opacity: 0.8;
  display: flex;
  justify-content: center;
}

.icon img {
  width: clamp(3.5rem, 5vw, 5rem);
  height: auto;
  padding: 0 0.8rem;
  box-sizing: content-box;
}

.footer {
  padding: 15px 0 25px;
  text-align: center;
}
.footer-txt {
  font-family: "Cormorant Infant", serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.2rem, 0.3vw + 1rem, 1.4rem);
}

.page-top {
  display: block;
  text-align: right;
  font-size: clamp(1.2rem, 0.4vw + 1rem, 1.5rem);
  margin-right: 3%;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */