.hand{ cursor:pointer; }

.product-number{ margin-top:30px; }
.product-number input{ background-color: #fff;color:#666; }
.product_button{ padding:0 10px; }


input:focus::placeholder {
	color: transparent;
}
textarea:focus::placeholder {
	color: transparent;
}

/* header */
@media (min-width: 1024px) {
  .hdr_logo{ padding:50px 0;margin-bottom:50px; }
}
@media (max-width: 1023px) {
  /*.hdr_logo{ margin-left:20px; }*/
}
.icon-list{ margin-top:50px; }

/* ハンバーガー */
.header {
  position: relative;
  padding: 10px;
}
@media screen and (min-width: 769px) {
  .hamburger_area {display:none;}

  .cant_change{ margin-top:20px;color:red;font-size:14px; }
}

@media screen and (max-width: 768px) {
  .hero_sec {
    /*padding-bottom: 80px;*/
    padding-left:20px !important;
  }
  .cant_change{ margin-top:20px;color:red; }
}


.hero_log {
  padding: 20px 0 100px 20px;

  width: 200px;
  height: 30px;
  margin: 0 auto 30px;
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}
.hamburger__line:nth-of-type(2) {
  top: 23px;
}
.hamburger__line:nth-of-type(3) {
  top: 32px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 4px rgba(0,0,0,.1);
  transform: translateX(-100%);
  transition: transform .4s;
  z-index: 90;
  color:#888;
  padding-top: 40px;
  line-height: 3rem;
  font-size: 1.2rem;
}

.nav.active {
  transform: translateX(0);
}

.nav__list {
  margin: 0;
  padding: 100px 0 0;
  list-style: none;
}

.nav__item {
  padding: 0 20px;
}

.nav__link {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}



/* footer */
footer {
  border-top: 2px solid #B20611;
  padding-bottom: 50px;
}

.footer_log {
  padding-bottom: 100px;
  position: relative;
  display: inline-block;
}

.footer_log::before {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 3px;
  background: #B20611;
}

.footer-text {
  font-size: 12px;
  color: #F8F5E6;
  font-weight: 300;
}

.footer-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
  padding-bottom: 10px;
}

.menu-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-info {
  margin-bottom: 20px;
}

/* RESPONSIVE STYLES - タブレット対応 */
@media (max-width: 1024px) {
  /* フッター */
  .footer_log {
    padding-bottom: 60px;
  }
  .footer_log::before {
    width: 50%;
  }
  .footer-links {
     flex-direction: row;
    gap: 15px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_log::before {
    width: 50%;
  }
}


/*RESPONSIVE STYLES -*/
@media (max-width: 480px) {
  .footer_log {
    padding-bottom: 60px;
  }
  .footer_log::before {
    width: 50%;
  }
  .footer-links {
    flex-direction: row;
    gap: 15px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_log::before {
    width: 50%;
  }
}

/*  RESPONSIVE STYLES -  */
@media (max-width: 390px) {
  .footer_log {
    padding-bottom: 40px;
  }
  
  .footer_log::before {
    width: 90%;
  }
  
  .footer-links {
    gap: 8px;
  }
  
  .footer-text {
    font-size: 10px;
  }
}

/* 　ホバーエフェクトの調整（タッチデバイス対応） */
@media (hover: hover) {
  button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    transition: all 0.2s ease;
  }
}

@media (hover: none) {
  button:active {
    opacity: 0.9;
    transform: translateY(1px);
  }
}

/* status */

.status_sec {
  margin-bottom: 50px;
}

.status-area {
  display: flex;
  grid-template-columns: repeat(3, 1fr); /* PC：3列 */
  gap: 23px;
  max-width: 960px;
  margin: 0 auto;
  justify-content: center;
}

.status-card {
  width: 305px;
  /*height: 248px;*/
  background: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.status-name, .status-header {
  color: #7E6551;
}

.status-header {
  background: #f0f0f0;
  text-align: center;
  padding: 8px 0;
  font-weight: 400;
}

.status-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  text-align: center;
}

.status-content.selected .product {
  display: flex;
  gap: 8px;
  text-align: left;
  align-items: center;
}

.product img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.status-name {
  margin-bottom: 4px;
  color: #7E6551;
}

.product-link {
  font-size: 12px;
  color: #bbbcbd;
  text-decoration: underline;
}

.product_btn {
  display: inline-block;
  position: relative;
  padding: 12px 40px;
  font-size: 15px;
  font-weight: 300;
  color: #7E6551;
  border: 1px solid #7E6551;
  background-color: transparent;
  text-decoration: none;
  margin-top:20px;
}


.product_btn::after {
  content: "›"; 
  position: absolute;
  right: 16px; 
  opacity: 0; 
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 16px;
}


.product_btn:hover::after {
  opacity: 1;
  transform: translateX(4px); 
}




.not-selected .unselected-text {
  color: #bbbcbd;
  font-size: 14px;
}

.btn-submit {
  background: #d74040;
  color: #fff;
  border: none;
  padding: 12px;
  width: 254px;
  cursor: pointer;
}

.btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}



/* FAQ */

/* メイン */

.faq_sec-title {
letter-spacing: 5.4px;
}




/* FAQ */

.faq_sec .innerWrap {
  padding: 0 0 135px 0 ;
}


.faq-area {
  width: 960px;
  margin: 0 auto;

  
}

.faq-item {
  margin-bottom: 20px;
}

/* Qエリア */
.faq-question {
  width: 960px;
  height: 72px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 3px 15px 3px 3px;
  box-sizing: border-box;
}

.faq-q {
  font-family: "Playfair Display", serif;
  width: 47px;
  height: 66px;
  display: flex;
  background-color: #ECD7AC;
  align-items: center;
  justify-content: center;
  font-weight: 200;
  font-size: 18px;
  color: #7E6551;
}




.faq-text {
  flex: 1;
  margin-left: 30px;
  font-size: 15px;
  color: #7E6551;
  text-align: left;
  font-weight: 200;
}


.faq-text-q {
  font-weight: 600;
}



/* 矢印 */
.faq-arrow {
  width: 8px;
  height: 8px;
  border-right: 1px solid #7E6551;
  border-bottom: 1px solid #7E6551;
  transform: rotate(45deg);
  transition: transform 0.3s;
}



/* Aエリア（閉じているとき） */
.faq-answer {
  display: flex; 
  max-height: 0; 
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  width: 960px;
  background: #F2F2F2;
  padding: 0 3px; 
  box-sizing: border-box;
  align-items: flex-start;
}

/* 開いたとき */
.faq-item.active .faq-answer {
  max-height: 500px; /* ← 中身に合わせて十分大きめに指定 */
  padding: 30px 15px 30px 3px;
}


.faq-a {
  flex-shrink: 0;
  font-family: "Playfair Display", serif;
  width: 47px;
  height: 66px;
  display: flex;
  background-color: #dedede;
  align-items: center;
  justify-content: center;
  font-weight: 200;
  font-size: 18px;
  color: #7E6551;
  margin-right: 30px; /* Qと同じ余白 */
}

.faq-answer-inner {
  flex: 1; 
  margin-right: 20px;
  font-size: 15px;
  color: #7E6551;
  text-align: left;
  display: flex;       
  word-wrap: break-word; 
  overflow-wrap: break-word;
}



.faq-text-a {
  font-weight: 200;
  line-height: 1.6;
}


.highlight-link {
  color: #B20611;
  text-decoration: underline;
  font-weight: bold;
}


/* 開いているとき */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-arrow {
  transform: rotate(-135deg);
}





/* ===========================================
   RESPONSIVE STYLES - タブレット対応
   =========================================== */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  
  .faq-area {
    width: 90%; /* 固定幅から%指定に変更 */
  }

.faq_sec {

    width: 100%;          /* 95%から100%に変更 */
    padding: 0 10px;       /* 左右10pxの内側余白 */
    box-sizing: border-box;
}

  .faq-question {
    width: 100%;
    height: 60px;
    padding: 3px 10px 3px 3px;
  }

  .faq-answer {
    width: 100%;

  }

  .faq-text, .faq-answer-inner {
    font-size: 14px;
  }

  .faq-q, .faq-a {
    width: 40px;
    height: 55px;
    font-size: 16px;
  }

}

/* ===========================================
   RESPONSIVE STYLES - スマートフォン対応
   =========================================== */

@media screen and (max-width: 768px) {

 .faq-area {
    width: 95%;
  }

.faq_sec {

    width: 100%;          /* 95%から100%に変更 */
    padding: 0 10px;       /* 左右10pxの内側余白 */
    box-sizing: border-box;
}

  .faq-question {
    width: 100%;
    height: 60px;
    padding: 3px 10px 3px 3px;
  }

  .faq-answer {
    width: 100%;
  }

  .faq-text, .faq-answer-inner {
    font-size: 14px;
  }

  .faq-q, .faq-a {
    width: 35px;
    height: 55px;
    font-size: 15px;
  }

  
  
}

/* ===========================================
   RESPONSIVE STYLES - 小さなスマートフォン対応
   =========================================== */

@media screen and (max-width: 480px) {
  
  
  .faq-area {
    width: 100%;
    padding: 0 10px;
  }


  .faq_sec {

    width: 100%;          /* 95%から100%に変更 */
    padding: 0 10px;       /* 左右10pxの内側余白 */
    box-sizing: border-box;
}

  .faq-question {
    width: 100%;
    height: 55px;
    padding: 3px 10px 3px 3px;
  }

  .faq-answer {
    width: 100%;
  }

  .faq-text, .faq-answer-inner {
    font-size: 13px;
  }

  .faq-q, .faq-a {
    width: 30px;
    height: 50px;
    font-size: 14px;
  }
  
}
