@charset "UTF-8";

* {
  /* outline: 2px solid blue; */
  /* max-width: 1440px; */
  font-family: "GFS Didot", "Hiragino Mincho ProN", serif;
  box-sizing: border-box;
}
/* .gfs-didot-regular {
  font-family: "GFS Didot", serif;
  font-weight: 400;
  font-style: normal;
} */

a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
}
li {
  list-style: none;
}
body {
  margin: 0;
}
h2 {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 60px;
  font-size: 36px;
  font-weight: normal;
  text-align: left;
}
.sec-title h2::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #BD6856;
  left: 0px;
  top: 1px;
}
@media screen and (max-width: 768px) {
  h2 {
    margin: 0 auto 35px;
    font-size: 24px;
    text-align: center;
  }
  #products .sec-title {
    margin: 0 35px 35px;
  }
  #news .sec-title {
    padding: 0 35px 0;
  }
  .sec-title h2::before {
    width: 10px;
    height: 10px;
    left: 0px;
    top: 8px;
  }
}
/* ドロワーメニュー */
#navi {
  display: none;
}
.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .nav {
    display: none;
  }

/* ドロワーメニュー */
#navi {
  display: flex;
  width: 270px;
  height: 100%;
  background: #887260;
  padding: 25px;
  position: fixed;
  top: 70px;
  right: -270px; /* 初期状態ではメニューが画面外に隠れている */
  bottom: 0;
  opacity: 0;
  overflow-y: auto;
  transition: right 0.5s ease; /* メニューがスライドインするアニメーション */
  z-index: 1000;
  opacity: 0; /* 初期状態では透明 */
  visibility: hidden; /* 初期状態では非表示 */
}
.open #navi {
  right: 0;
  opacity: 1;
}
#navi ul.nav-menu {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-top: 45px;
  font-size: 16px;
  color: #E7DDD3;
}
#navi ul li {
  margin-bottom: 20px;

}
#navi.active {
  right: 0; /* メニューがスライドインして表示される */
  opacity: 1;
  visibility: visible; /* 初期状態では非表示 */
}
#mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  z-index: 999; /* メニューより前面に表示 */
}
#mask.active { /* マスクが表示される状態 */
  display: block; 
}
.open #mask {
  width: 100%;
  height: 100%;
  background-color: #000;
  cursor: pointer;
  display: block;
  opacity: 0.8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

/* ハンバーガーメニュー */
.hamburger {
  display: flex;
  width: 100px;
  height: 100px;
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  cursor: pointer;
  transition: 0.3s;
}
.hamburger:hover {
  opacity: 0.7;
}
/* ハンバーガーメニューの線の設定（メニューが閉じている時） */
.hamburger span {
  width: 30px;
  height: 2px ;
  background: #333333;
  position: absolute;
  left: 25px;
  transition: 0.3s ease-in-out;
}
/* 1本目の線の位置を設定 */
.hamburger span:nth-child(1) {
  top: 36px;
}
/* 2本目の線の位置を設定 */
.hamburger span:nth-child(2) {
  top: 50px;
}
/* 3本目の線の位置を設定 */
.hamburger span:nth-child(3) {
  top: 64px;
}
/*
ハンバーガーメニューの線の設定（メニューが開いている時）
1本目の線を-45度回転
*/
.hamburger.active span:nth-child(1) {
  top: 47px;
  left: 25px;
  background :#333333;
  transform: rotate(-45deg);
}
/* 2本目と3本目は重ねて45度回転 */
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 47px;
  background: #333333;
  transform: rotate(45deg);
}
/*
メニューの設定
最初は閉じている状態なので、「opacity: 0;」「visibility: hidden;」
で要素を非表示にしておく
*/
}
/* 矢印　scroll */

.scroll_down {
  position: absolute;
  right: 20px;
  bottom: -100px;
  height: 150px;
}
.scroll_down .arrow {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 100px;
  margin: 0 auto;
  border-radius: 9999px;
  background-color: #000;
  animation: sdl01 1.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
.scroll_down .arrow::before,
.scroll_down .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 7px;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: bottom center;
}

.scroll_down .arrow::before {
  transform: rotate(45deg);
}

.scroll_down .arrow::after {
  transform: rotate(-45deg);
}

.scroll_down:hover {
  opacity: .5;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}



/*  ボタン　VIEW MORE
-------------------------------------------- */
  .btn {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    width: 280px;
    height: 70px;
    font-size: 20px;
    border: 1px solid #000000;
  }
  @media screen and (max-width: 768px) {
    .btn {
      width: 200px;
      height: 50px;
      margin: 0 auto;
      font-size: 14px;
    }
  }
/*-------------------------------------------
ヘッダー
-------------------------------------------*/
.header {
  position: relative;
  height: 50vh;
  min-height: 800px;
  padding: 30px 40px;
  margin-bottom: 150px;
  background: url("../img/mv.pc.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .header {
    background: url("../img/mv.sp.jpg") no-repeat center center/cover;
    height: 78vh;
    min-height: auto;
    padding: 15px;
    margin-bottom: 80px;
  }
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
}
.nav ul {
  display: flex;
}
.nav a {
  color: #333333;
  font-size: 16px;
  font-weight: 100;
}
.nav a:hover {
  color: #000;
  font-weight: bold;
}
.nav ul li {
  margin-right: 40px;
}
.nav ul :last-child {
  margin-right: 0px;
}
#nav-icon {
  display: flex;
}
#nav-icon li:first-child {
  margin-right: 24px;
}
.mv__title {
  position: absolute;
  top: 45%;
  font-size: 50px;
  font-weight: 100;
}
.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 24px;
    font-weight: 300;
  }
  .br-sp {
    display: block;
  }
  #nav-icon {
    display: none;
  }
}

/* --------------------------------------
　 メイン                       
-------------------------------------- */

/*  Features
-------------------------------------------- */

#features {
  max-width: 1115px;
  margin: 0 auto 180px;
}

#features .sec-title {
  text-align: center;
}
.features-list {
  display: flex;
  gap: 40px;
}
.features-list li {
  width: 30%;
}
.features-ttl {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}
.features-comment {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  #features {
    width: 100%;
    margin-bottom: 80px;
  }
  .features-list {
    display: block;
    margin: 0 15px 40px;
    padding-left: 0;
  }
  .features-list li {
    width: 100%;
    margin-bottom: 40px;
  }
  .features-ttl {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
  }
  .features-comment {
    letter-spacing: -1.0px;
  }
}

/*  Products
-------------------------------------------- */
.products-contents {
  max-width: 980px;
  margin: 0 auto 180px;
}
.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 5%;
  padding-left: 0;
}
.products-list li {
  width: 30%;
  margin-bottom: 70px;
}
.product__heading {
  text-align: center;
  margin-bottom: 5px;
  font-size: 24px;
}
.products-comment {
  text-align: left;
  margin-bottom: 15px;
  font-size: 16px;
}
.products-price {
  text-align: right;
  font-size: 18px;
}
#products .btn {
  margin-left: auto;
}
#description {
  background-color: #E7DDD3;
  padding: 110px 120px;
  margin-bottom: 70px;
}
.contents {
  display: flex;
  max-width: 1200px;
  height: 380px;
  margin: 0 auto;
  gap: 80px;
}
.contents-item {
  width: 41%;
  padding-top: 30px;
}
h4 {
  font-size: 32px;
  margin-bottom: 24px;
}
.contents p {
  font-size: 16px;
  text-align: left;
  line-height: 36px;
  letter-spacing: -0.5px;
}
.contents__img {
  width: 51%;
}
@media screen and (max-width: 768px) {
  .products-contents {
    width: 100%;
    margin: 0 auto 80px;
  }
  #products .sec-title {
    padding-left: 20%;
  }
  .products-list {
    display: block;
    margin: 0 36px 40px 36px;
  }
  .products-list li {
    width: 100%;
    margin-bottom: 70px;
  }
  .product__heading {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .products-comment {
    letter-spacing: 0px;
  }
  .products-price {
    text-align: right;
    font-size: 18px;
  }
  #products .btn {
    margin-left: auto;
  }
  #description {
    background-color: #E7DDD3;
    padding: 0px 0px;
    margin-bottom: 40px;
  }
  .contents {
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
    margin: 0 auto;
    gap: 0;
  }
  .contents-item {
    width: 100%;
    padding: 0 16px 40px;
  }
  h4 {
    margin-bottom: 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
  }
  .contents p {
    font-weight: 300;
    letter-spacing: -1.5px;
  }
  .contents__img {
    width: 100%;
  }
}
/*  News
-------------------------------------------- */

.news-contents {
  max-width: 1250px;
  margin: 0 auto 180px;
}
#news .sec-title {
  margin-left: 50px;
}
.news-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.news-list li {
  width: 45%;
  gap: 10%;
}
.news__img {
  margin-bottom: 19px;
}
.news__img:hover {
  filter: brightness(80%);
  transition: 0.3s;
}
.news-txt {
  display: flex;
  justify-content: space-between;
}
.news-title {
  margin-bottom: 19px;
  font-size: 24px;
}
time {
  font-size: 14px;
  line-height: 36px;
}
.news__p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.5px;
}
#news .btn {
  margin: 0 auto;
}
@media screen and (max-width: 768px){
  .news-contents {
    width: 100%;
    margin: 0 auto 80px;
  }

  .news-list {
    display: block;
    padding-left: 0;
    margin: 0 14px 60px;
  }
  .news-list li {
    width: 100%;
    margin-bottom: 40px;
  }
  .news__img {
    margin-bottom: 19px;
  }
  .news-txt {
    display: block;
  }
  .news-title {
    margin-bottom: 19px;
    font-size: 18px;
  }
  time {
    font-size: 14px;
    line-height: 36px;
  }
  .news__p {
    line-height: 24px;
    letter-spacing: -0.2px;
  }
  #news .btn {
    margin: 0 auto;
  }
}

/*  Gallery
-------------------------------------------- */

.gallery {
  margin: 0 auto 126px;
}
#gallery .sec-title {
  text-align: center;
}
#gallery-item {
  display: flex;
  gap: 19px;
}
#gallery-item > img {
  width: 400px;
  margin-bottom: 80px;
}

#gallery .btn {
  margin-left: auto;
  margin-right: 40px;
}

/* swiper */
.swiper-container {
  /* width: 1440px; */
  position: relative;
}
.swiper-slide img {
  /* height: auto;
  width: 100%; */
  width: 400px;
  margin-bottom: 80px;
}
/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 30px;
}
.swiper-pagination-bullet {
  background-color: #BD6856;
}

@media screen and (max-width: 768px) {
  #gallery-item {
    gap: 0px;
  }
  #gallery-item > img {
    width: 100%;
    margin-bottom: 80px;
  }
  
  #gallery .btn {
    margin: 0 auto;
  }
  
  /* swiper */
  .swiper-container {
    width: 100%;
  }
  .swiper-slide img {
    width: 100%;
    margin-bottom: 80px;
  }
  /* ページネーション */
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 30px;
  }

}

/*  Contact
-------------------------------------------- */

#contact {
  background-color: #E7DDD3;
}
#contact-area {
  padding-bottom: 60px;
}
#contact .sec-title {
  text-align: center;
}
#contact-page {
  width: 608px;
  margin: 0 auto;
}
#radio {
  text-align: center;
  margin-bottom: 60px;
  font-size: 18px;
}
.form-label {
  width: 600px;
  display: flex;
  justify-content: space-between;
}
.label {
  margin-bottom: 26px;
  font-size: 18px;
  font-weight: 300;
  color: #333333;
}
span {
  width: 40px;
  height: 24px;
  line-height: 24px;
  background-color: #333333;
  color: #FFFFFF;
  display: inline-block;
  font-size: 12px;
  margin-left: 10px;
  text-align: center;
}
#textarea {
  font-size: 18px;
  color: #333333;
  margin-top: 60px;
}

/* inputのみスタイル変更 */
input[type="text"] {
  width: 360px;
  height: 40px;
  border: none; /* 線の色 */
  background: #FFFFFF;
}
textarea {
  width: 360px;
  height: 180px;
  margin-bottom: 30px;
  border: none;
  resize: vertical;
}
#box {
  text-align: center;
  margin-bottom: 32px;
}
#checkbox {
  margin-bottom: 32px;
}
.form-button {
  text-align: center;
}
.form-button input {
  width: 280px;
  height: 70px;
  text-align: center;
  font-size: 20px;
  background-color: #fff;
  border: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  #contact {
    padding-top: 40px;
  }
  #contact-page {
    width: 100%;
    margin: 0 auto;
  }
  #radio {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    text-align: left;
    font-size: 16px;
  }
  form {
    padding: 0 15px;
  }
  .form-label {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .label {
    margin-left: 15px;
    margin-bottom: 20px;
  }
  span {
    width: 24px;
    height: 18px;
    line-height: 18px;
    margin-left: 10px;
  }
  #textarea {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  /* inputのみスタイル変更 */
  input[type="text"] {
    width: 100%;
    height: 40px;
    margin: 0 auto 20px;
  }
  textarea {
    width: 100%;
    margin: 0 auto 30px;
  }
  .form-label label {
    margin-left: 15px;
  }
  #box {
    margin-left: 15px;
    margin-bottom: 32px;
    text-align: left;
  }
  #checkbox {
    margin-bottom: 32px;
  }
  .form-button {
    text-align: center;
  }
  .form-button input {
    width: 280px;
    height: 70px;
    text-align: center;
    font-size: 20px;
    background-color: #fff;
    border: 1px #000 solid;
  }
}
/* ====　ラジオボタン　カスタマイズ ==== */
/* ラジオボタンを非表示にする */
input[type="radio"] {
  position: absolute;
  opacity: 0;
}

/* ラベルの基本スタイル */
.radio-label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  margin-right: 40px;
  display: inline-block;
}

.radio-label:last-child {
  margin-right: 0;
}

/* 枠線を作成 */
.radio-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #333333;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #ffffff;
}

/* 中央の丸を作成（非表示状態） */
.radio-label::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #BD6856;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

/* チェック時のスタイル */
input[type="radio"]:checked + .radio-label::before {
  border-color: #BD6856;
}

input[type="radio"]:checked + .radio-label::after {
  opacity: 1;
  background-color: #BD6856;
  transition: opacity 0.2s ease-in-out;
}

/* ホバー時のスタイル */
.radio-label:hover::after {
  opacity: 0.5;
  width: 14px;
  height: 14px;
  left: 4.5px;
  transition: opacity 0.2s ease-in-out;
}


    /* メディアクエリでのラベルの調整 */ 
    @media screen and (max-width: 768px) {
      .radio-label { 
        margin-left: 15px; 
        margin-bottom: 16px; 
      } 
    }

    

/* ====　チェックボックス　カスタマイズ ==== */
/* チェックボックスを隠す */
#box input[type="checkbox"] {
  display: none;
}

/* カスタムスタイルのための基本デザイン */
#box label {
  position: relative;
  padding-left: 30px; /* チェックマーク部分のスペースを確保 */
  cursor: pointer;
  font-size: 18px;
}

/* チェックボックスの見た目部分 丸の枠線 */
#box label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #BD6856; /* 丸の枠線 色と太さ */
  background-color: #BD6856;
  border-radius: 50%; /* 角を丸くして円形にする */
  box-sizing: border-box;
}
/* 丸の色をホバー時に変更 */
#box label:hover::before {
  border-color: #333333; /* ホバー時の枠線の色 */
  background-color: #BD685680;
 /* ホバー時の背景色 */
}
/* チェック状態のスタイル */
#box input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  left: 7px; /* チェックマークの位置調整 */
  top: 3px;  /* チェックマークの位置調整 */
  width: 6px;
  height: 12px;
  border: solid #ffffff; /* チェックマークの色 */
  border-width: 0 1px 1px 0; /* 右と下に線を引く */
  transform: rotate(45deg); /* 斜めにしてチェックマークを表現 */
  box-sizing: border-box;
}

/* --------------------------------------
　footer                        
-------------------------------------- */
#footer {
  color: #E7DDD3;
  background-color: #887260;
  padding-left: 40px;
  padding-bottom: 15px;
}
#footer-content {
  display: flex;
  justify-content: space-between;
  padding: 60px 40px 60px 0;
}
#footer h1 {
  margin: 0;
}
#footer__nav ul {
  display: flex;
  color: #E7DDD3;
  padding-left: 0;
  margin-right: 38px;
  margin-bottom: 30px;
  font-size: 16px;
}
#footer__nav a {
  color: #E7DDD3;
  margin-right: 38px;
  font-size: 16px;
}
#footer__nav a:hover {
  font-weight: bold;
}
#footer-nav-icon {
  display: flex;
  padding-left: 0;
}
#footer-nav-icon li:first-child {
  margin-right: 24px;
}
#footer-map {
  display: flex;
  gap: 40px;
}
.add {
  padding-top: 180px;
}
.add a {
  color: #E7DDD3;
}
iframe {
  width: 420px;
}
#footer__copy {
  font-size: 12px;
}
@media screen and (max-width: 1200px) {
  #footer__nav ul {
    flex-direction: column;
  }
  #footer-map {
    flex-direction: column-reverse;
  }
  .add {
    padding-top: 0px;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding-left: 15px;
  }
  #footer-content {
    flex-direction: column-reverse;
    padding: 40px 15px 0;
  }
  #footer__nav ul {
    display: block;
    padding-left: 0;
    margin-bottom: 20px;
  }
  #footer__nav li {
    margin-bottom: 20px;
  } 
  #footer__nav a {
    margin-right: 0px;
  }
  #footer-nav-icon li:first-child {
    margin-right: 20px;
  }
  #footer-map {
    display: flex;
    flex-direction: column-reverse;
    gap: 0px;
    margin-bottom: 56px;
  }

  iframe {
    width: 100%;
  }
  .add {
    padding-top: 20px;
  }
  #footer__copy {
    margin-left: 15px;
    font-size: 12px;
  }
}