@charset "UTF-8";

html {
  font-size: 100%;
  background-color: #fdf6ee;
  background-image: linear-gradient(#fdf6eecf, #fdf6eecf),
  /* ベース色 */
  url(https://maisondelamer-design.com/blog/wp-content/uploads/2025/01/noise.png);/* ノイズ画像 */
  background-repeat: repeat;/* 繰り返し */
  background-size: 100px;/* ノイズパターンのサイズ調整 */
}
/*-------------------------------------------
header
-------------------------------------------*/
/* ========
loading
======== */
.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fdf6eecf;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c-loading.-loaded {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.c-loading>* {
  pointer-events: none;
}

.c-loading__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.c-loading__bg .-vertical,
.c-loading__bg .-horizontal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.c-loading__bg .-vertical:before,
.c-loading__bg .-horizontal:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fdf6eecf;
  opacity: .6;
}

.c-loading__bg .-vertical {
  background: transparent url(../images/bg_grid_line1.png) center top repeat;
  opacity: .3;
  -webkit-animation: switchZindex 6s -3s infinite;
  animation: switchZindex 6s -3s infinite;
}

.c-loading__bg .-vertical:before {
  z-index: -11;
  top: -100%;
  left: 0;
  -webkit-animation: mask1 6s linear infinite forwards;
  animation: mask1 6s linear infinite forwards;
}

.c-loading__bg .-horizontal {
  background: transparent url(../images/bg_grid_line2.png) center top repeat;
  opacity: .3;
  -webkit-animation: switchZindex 6s infinite;
  animation: switchZindex 6s infinite;
}

.c-loading__bg .-horizontal:before {
  z-index: -1;
  top: 0;
  left: -100%;
  -webkit-animation: mask2 3s linear infinite forwards;
  animation: mask2 3s linear infinite forwards;
}

.c-loading__horse {
  width: 138px;
  height: 92px;
  overflow: hidden;
  margin: 0 0 0 4px;
}

@media (max-width: 750px) {
  .c-loading__horse {
    transform: scale(0.8);
  }
}

.c-loading__horse img {
  width: 828px;
  max-width: none;
  -webkit-animation: sprite 0.8s steps(6) 0s infinite forwards;
  animation: sprite 0.8s steps(6) 0s infinite forwards;
}

.c-loading__text {
  /*font-family: "Crimson Text", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;*/
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1;
  display: block;
  transform: translate(0.35em, 0);
  margin: 12px 0 0;
}

@media (max-width: 750px) {
  .c-loading__text {
    font-size: 1.8rem;
    margin: 0 0 8px;
  }
}

.c-loading__dot {
  font-size: 1.8rem;
}

@media (max-width: 750px) {
  .c-loading__dot {
    font-size: 1.4rem;
  }
}

.c-loading__dot:nth-child(1) {
  -webkit-animation: dot1 1.4s infinite forwards;
  animation: dot1 1.4s infinite forwards;
}

.c-loading__dot:nth-child(2) {
  -webkit-animation: dot2 1.4s infinite forwards;
  animation: dot2 1.4s infinite forwards;
}

.c-loading__dot:nth-child(3) {
  -webkit-animation: dot3 1.4s infinite forwards;
  animation: dot3 1.4s infinite forwards;
}

@keyframes switchZindex{
  0%{
    z-index: -1;
  }
  50%{
    z-index: -1;
  }
  51%{
    z-index: -2;
  }
  100%{
    z-index: -2;
  }
}

@keyframes sprite{
  0%{
    transform: translate(0%,0);
  }
  100%{
    transform: translate(-100%,0);
  }
}

@keyframes dot1{
  0%{
    opacity: 0;
  }
  20%{
    opacity: 0;
  }
  21%{
    opacity: 1;
  }
  100%{
    opacity: 1;
  }
}
@keyframes dot2{
  0%{
    opacity: 0;
  }
  40%{
    opacity: 0;
  }
  41%{
    opacity: 1;
  }
  100%{
    opacity: 1;
  }
}
@keyframes dot3{
  0%{
    opacity: 0;
  }
  60%{
    opacity: 0;
  }
  61%{
    opacity: 1;
  }
  100%{
    opacity: 1;
  }
}
/*---------------ヘッダー-------------------*/
#header{
  text-align: center;         /* 中央揃え */
  /*background-color: #000;     /* 任意：背景色を設定する場合 */
  padding: 0;                 /* 必要に応じて調整 */
  margin: 0 auto;
}
#header img {
  display: inline-block;      /* 中央寄せのため */
  max-width: 1600px;   
  width: 100%;        /* 親幅に収まるように */
  height: auto;               /* 縦横比を維持して拡縮 */
}
/* ヘッダー全体のスタイル */
.site-header {
  background: #fdf6eecf;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 999;
}
.header-container {
  max-width: 1600px;
  margin: 0 auto;
  height: 64px; /* 高さを固定 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
/* ロゴのスタイル */
.logo img {
  width: 100px;
  display: block;
}
/* ハンバーガーアイコン（3本線） */
.menu-toggle {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;    /* メニューより上に表示 */
}
/* ハンバーガーが active かつ固定表示用のクラス */
.menu-toggle.fixed {
  position: fixed;  /* ← 変更: relative → fixed */
  top: 20px;        /* 画面上からの位置 */
  right: 20px;      /* 画面右からの位置 */
}
.menu-toggle .bar {
  display: block;
  width: 70%;
  height: 1px;
  background: #555;
  margin: 5px 0;
  transition: all 0.3s ease;
}
/* アイコン開閉アニメーション */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* メニューの基本設定（PC） */
.main-nav {
  display: flex;
}
/* メニュー */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  line-height: 64px; /* ヘッダーと揃える */
  display: inline-block;
}
  /* SP対応+ */
  @media (max-width: 1100px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fdf6eecf;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    padding: 80px 24px 24px;
  }
  .main-nav.active {
    right: 0;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav a {
    line-height: 1.6;
    font-size: 16px;
  }
}
/*---------------TOP画面-------------------*/
.main_title {
  max-width: 1300px;
  padding: 7% 10% 3%;
  margin: 0 auto;
}
.main_top {
  width: 1100px;
  padding: 7% 20% 3%;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .title {
    padding: 7% 20%;
    margin-top: 7%;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .title {
    padding: 7% 10%;
    margin-top: 7%;
    margin: 0 auto;
  }
}
.top {
  padding: 5%;
  gap: 3%;
}
.top_img {
  margin-top: 5%;
}
body {
  font-display: swap;
  font-family: 'Noto Serif Japanese', Garamond, Serif,
  'Noto Sans Japanese', sans-serif;
  font-style: normal; 
  color: #333;/* テキスト色 */
  text-align: justify; /* 両端揃え */
  text-justify: inter-ideograph; /* 両端揃えの種類 */
  margin: 0 auto;
  padding: 0%;
} 
.wrapper {
  margin: 0 auto;
  padding: 0 5%;
  max-width: 1100px;
}
.border-top {
  border-top: 1px solid #999;
}
.border-top-2 {
  border-top: 1px solid #999;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}
h1 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight:500; 
  line-height: 150%;
}
h2 {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight:700;
  line-height: 150%;
}
h3 {
  font-size: clamp(15px, 2vw, 18px); 
  font-weight:700; 
  line-height: 150%;
}
h4 {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  line-height: 175%;
}
h5 {
  font-size: clamp(11px, 1.25vw, 12px);
  font-weight: 400;
  line-height: 150%;
}
h6 {
  font-size: clamp(9px, 1.15vw, 11px);
  font-weight: 400;
  line-height: 150%;
}
h7 {
  font-size: clamp(7px, 1.15vw, 9px);
  font-weight: 400;
  line-height: 150%;
}
p {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 400;
  line-height: 175%;
}
b {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 700;
  line-height: 200%;
}
a {
  transition: color 0.3s;
}
a:hover{
  text-decoration: underline;
  color : #538490;
}
.page_top_btn_1 {
  border: 1px solid #999;
  border-radius: 5px;
  padding: 10px; 
  background-color: #fdf6eecf;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
.scroll-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #fdf6ee;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: none; /* 初期非表示 */
  z-index: 1000;
  padding: 0;
  transition: background-color 0.3s ease;
  }

.scroll-top-btn:hover {
  background-color: #555;
  }

  /*矢印*/
.scroll-top-btn svg {
  margin-top: 1.5px;
  width: 50px;
  height: 50px;
  text-align: center;
  fill: #999;
  }

/*---------------商品紹介-------------------*/
.twocols-container {
margin-top: 3%;
display: grid;
grid-template-columns: 5fr 5fr;
padding: 0% 5% ;
gap: 10%;
text-align: center;
/*background-color: #f9f9f9;*/
}
.twocols-container img{
  margin-bottom: 3%;
}
.twocols-container h2{
  line-height: 100%;
  text-align: center;
}
.twocols-container h4{
  text-align: center;
}
.twocols-container h5{
  text-align: center;
}
.twocols-container p{
  margin-top: 3%;
  margin-bottom: 3%;
  padding: 0 5%;
  font-size: clamp(11px, 1.25%, 12px);
  font-weight: 500;
  line-height: 150%;
}
@media (min-width: 700px) {
  .twocols-container{
    grid-template-columns: 1fr 1fr;
    padding: 5%;
    gap: 10%;
    text-align: center;
  }
  .twocols-container p{
    text-align: left;
  }
}
@media (max-width: 700px) {
  .twocols-container{
    grid-template-columns: 1fr;
    padding: 0 20%;
    margin-top: 10%;
    margin-bottom: 10%;
    gap: 3%;
    text-align: center;
  }
  .twocols-container p{
  text-align: left;
  }
}
/*-------------------------------------------
　　　　　1. 商品について（ソメスサドル）
-------------------------------------------*/
/*------「 SOMÈS SADDLE」との出会い----------*/
.about_somes {
  padding: 5% 5%;
}
  /*------スライド----------*/
  .swiper {
    max-width: 1100px;
    width: 90%;
    height: 0 auto;
    margin: 0 auto;
    padding: auto;
    margin-bottom: 5px;
  }
  .swiper-wrapper {
    /* wrapperのサイズを調整*/
    max-width: 1100px;
    width: 100%;
    height: 300px;
  }
  .swiper-slide {
    /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
    color: #000;
    height: o auto;
    text-align: left;
    line-height: 30px;
  }
  
  .swiper-button-next::after, 
  .swiper-button-prev::after {
    color: #fff;
    font-size: 10px; /* 例: 30px */
    width: 30px; /* 必要に応じて */
    height: 30px; /* 必要に応じて */
   /*background-color: rgba(0,0,0,0.5); /* 半透明背景 */
    /*border-radius: 50%;*/
  }

  .swiper-slide:nth-child(3n + 1) {
    /*1、4、7、3n+1枚目の背景色 */
  background-color: none;
  }
  .swiper-slide:nth-child(3n + 2) {
    /*2、5、8、3n+2枚目の背景色 */
    background-color: none;
  }
  .swiper-slide:nth-child(3n + 3) {
    /*3、6、9、3n+3枚目の背景色 */
    background-color: none;
  }
  .swiper-pagination-bullet {
    width: 7px !important;
    height: 7px !important;
    margin: 0 0 0 10px !important;
    background: #fff !important;
  }
  .swiper-pagination-bullet:first-child {
    margin: 0 !important;
  }
/*------画像----------*/
.twocols-container2 img{
  margin-bottom: 3%;
}

.twocols-container3 img{
  margin-bottom: 5px;
}

.twocols-container2 {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 5px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  }
  @media (min-width: 700px) {
    .twocols-container2{
      display: grid;
      grid-template-columns: 7fr 3fr;
    }
  }
  @media (max-width: 700px) {
    .twocols-container2{
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    }
    .twocols-container3{
      margin-top: 5%;
      margin-bottom: 5px;
      display: grid;
      grid-template-columns: 1fr;
      }
      .twocols-container3 img{
        margin-bottom: 5px;
      }
  }
  .about_somes_1 {
    padding: 5%;
  }
  .about_somes_2 {
    padding: 5%;
  }
  .about_somes_3 {
    padding: 5%;
  }
  .story-text {
  width: 95%;
  margin: 0 auto;
  }
/*-------------------------------------------
　　　2. （ユーザー目線での）商品紹介について
-------------------------------------------*/
.twocols-container4 {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 3%;
  max-width: 1100px;
  margin: 0 auto;
  }
  @media (min-width: 700px) {
    .twocols-container4{
      display: grid;
      grid-template-columns: 7fr 3fr;
    }
  }
  @media (max-width: 700px) {
    .twocols-container4{
    display: grid;
    grid-template-columns: 1fr;
    }
  }
/*------日常に少しのゆとりを----------*/
.concept {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.concept-text {
  padding: 5% 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.long-dash {
  display: inline-block;
  transform-origin: left;
  transform: scaleX(8);
  letter-spacing: 28px; /* 文字間隔を調整 */
}
.concept-1{
  padding: 5% 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.concept-2{
  padding: 5% 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.concept-3{
  padding: 5% 5%;
  max-width: 1100px;
  margin: 0 auto;
}
  /*------スライド-2----------*/
  .swiper mySwiper2 {
    max-width: 1100px;
    /*width: 90%;*/
    height: 0 auto;
    margin: 0 auto;
    padding: auto;
    /*margin-bottom: 5px;*/
  }
  .swiper-wrapper-2 {
    /* wrapperのサイズを調整*/
    /*max-width: 1100px;*/
    width: 100%;
    /*height: 300px;*/
  }
  .swiper-slide-2 {
    /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
    color: #000;
    height: o auto;
    text-align: left;
    line-height: 30px;
  }
  
  .swiper-button-next::after, 
  .swiper-button-prev::after {
    color: #fff;
    font-size: 10px; /* 例: 30px */
    width: 30px; /* 必要に応じて */
    height: 30px; /* 必要に応じて */
   /*background-color: rgba(0,0,0,0.5); /* 半透明背景 */
    /*border-radius: 50%;*/
  }

  .swiper-slide:nth-child(3n + 1) {
    /*1、4、7、3n+1枚目の背景色 */
  background-color: none;
  }
  .swiper-slide:nth-child(3n + 2) {
    /*2、5、8、3n+2枚目の背景色 */
    background-color: none;
  }
  .swiper-slide:nth-child(3n + 3) {
    /*3、6、9、3n+3枚目の背景色 */
    background-color: none;
  }
  .swiper-pagination-bullet {
    width: 7px !important;
    height: 7px !important;
    margin: 0 0 0 10px !important;
    background: #fff !important;
  }
  .swiper-pagination-bullet:first-child {
    margin: 0 !important;
  }
/*-------------------------------------------
　　　　　　3. 商品詳細（スペックなど）
-------------------------------------------*/
.product_details {
  padding: 5%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.price h5{
  text-align: center;
  margin: 0 auto;
}
.product_details_img {
  width: 80%;
  margin: 0 auto;
}
.bordered-image {
  border: 1px solid #d5d0c2;
}
.twocols-container5{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 5px;
  gap: 5px;
}
.product_details p{
  padding: 0 15%;
  margin: 0 auto;
  text-align: left;
}
.product_details h5{
  padding: 0 15%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 700px) {
  .product_details {
    padding: 0%;
    margin: 0 auto;
  }
  .product_details p{
    text-align: left;
    padding: 0 auto;
  }
    .product_details h5{
      text-align: center;
      padding: 0 auto;
  }
  .price h5{
    text-align: center;
    margin: 0 auto;
  }
    }
/*-------------------------------------------
　　　　　　　　　　　　フッター
-------------------------------------------*/
#footer {
  background-color:  #d5d0c2;
  padding: 0 auto;
  margin: 0 auto;
  padding: 60px 80px;
  gap: 40px; /* 必要なら間隔も調整 */
}
.footer-logo {
  font-weight: bold;
  margin-bottom:0px;
  text-align: center;
  margin: 0 auto;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 5%;
  gap: 5px;
}

.footer-column {
  text-align: center;
  }

@media (max-width: 700px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 5px;
    gap: 5px;
    padding-left: 0 auto;
  }
    .footer-column {
    text-align: center;
    }
    .footer-logo {
    text-align: center;
    }
  }

@media (max-width: 400px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 5px;
    gap: 5px;
  }
}

.footer-column {
  min-width: 180px;
  margin-bottom: 20px;
}
.footer-column h5 {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 400;
  line-height: 175%;
  margin-bottom: 0px;
}
.footer-column ul li a {
  text-decoration: none;
  color: #555;
  transition: 0.3s;
}
.footer-column ul li a:hover {
  text-decoration: underline;
  color : #538490;
}
.subscribe-btn {
  background-color: #b59d74;
  color: #999;
}
.unsubscribe-btn {
  background-color: #000;
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
  font-size: 10px;
}
.social-icons a {
  margin-right: 16px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.page-top {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  letter-spacing: 2px;
}
#footer img {
  width: 30%;
  max-width: 240px;
  min-width: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
}
#footer h6{
  margin-bottom: 10px;
}
/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 900px) {
  .body {
    display:flex;
    justify-content:center;
    align-items:center;
    padding: 0;
    margin: 0;
    text-align:center;
    }
  } 
