@charset "UTF-8";

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 共通 */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  color: #111111;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
}
a {
  color: #111111;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
li {
  list-style: none;
}
.wrapper {
  max-width: 1120px;
  padding: 0 16px;
  margin: 0 auto;
}
.btn {
  display: inline-block;
  white-space: nowrap;
  padding: 14px 36px;
  background: #933c24;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: .3s ease;
  text-align: center;
    
}
.btn:hover {
  opacity: 0.8;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.page-content {
    padding-top: 160px;
}

/* ヘッダー */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header .wrapper {
  display: flex;
  align-items: center;
  padding: 19px 0;
}
.header-logo img {
  width: 87px;
}
.hamburger {
  display: none; /* PCでは非表示 */
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 30px;
  height: 3px;
  background: #fff;
}
.header nav {
  margin-left: 138px;
  display: block;
}
.header nav ul {
  display: flex;
  gap: 30px;
}
.header nav a {
  color: #e9bd8c;
  font-size: 22px;
  font-weight: 500;
}
.header nav a.active {
  color: #e9bd8c;
}

/* メインビジュアル */
.mv {
  background-size: cover;
  background-position: center;
  height: 813px;
}
.mv .wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mv-sub {
  color: #e9bd8c;
  font-size: 24px;
  margin-top: 100px;
}
.mv h1 {
  color: #f5f5f5;
  font-size: 74px;
  margin-bottom: 101px;
  font-family: "Sansita Swashed", cursive;
  line-height: 1.1;
  font-weight: 500;
}

.mv-buttons {
  display: flex;
  align-items: center;
}

.mv-buttons a:last-child {
  color: #e9bd8c;
  font-size: 24px;
  margin-left: 19px;
}

/* セクション */
.section-title {
  font-size: 64px;
  text-align: center;
  font-family: "Sansita Swashed", cursive;
}

/* セクション１ */
.section1 {
  padding: 130px 0;
}

.section1 .products {
  margin-top: 130px;
}

.product-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  transition:.3s;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img {
  width:100%;
  height:350px;
  object-fit:cover;
  transition: transform .4s;
}

.product-card__body{
    padding:20px;
    display:flex;
    flex-direction:column;
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-card__name{
  font-size:30px;
  font-weight:600;
}

.product-card__price{
  font-size:24px;
  margin-top:10px;
}

/* セカンドビジュアル */
.second-visual {
  background-size: cover;
  background-position: center;
  height: 442px;
}

.second-visual .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 54px 0 87px 0;
  max-width: 502px;
}

.second-visual .second-title {
  font-family: "Sansita Swashed", cursive;
  color: #933c24;
  margin-bottom: 20px;
  text-align: center;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 550;
}

.second-visual .second-text {
  font-family: "Inter", sans-serif;
  color: #5d5d5d;
  margin-bottom: 20px;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
}

/* セクション2 */
.section2 .wrapper {
  margin-top: 130px;
}

.section2 .section-title {
  margin-bottom: 95px;
}

.section2 .category-tab {
  display: flex;
  justify-content: center;
  font-size: 24px;
  gap: 40px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 8px;
}
/* 各リンクの準備 */
.section2 .category-tab a {
  position: relative;
  display: inline-block;
  color: #5d5d5d;
  font-weight: 600;
}

.section2 .category-tab a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px; /* 親のborder-bottom（padding分+1px）にピッタリ重ねる数値 */
  width: 100%;
  height: 6px;
  background-color: #933c24;
  border-radius: 6px;
}
.section2 .gallery {
  margin-top: 121px;
  margin-bottom: 130px;
}

/* サードビジュアル */
.third-visual {
  background-size: cover;
  background-position: center;
  height: 454px;
  margin-bottom: 130px;
}

.third-visual .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.third-visual .third-title {
  font-family: "Sansita Swashed", cursive;
  color: #f5f5f5;
  margin-bottom: 30px;
  text-align: center;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 550;
}

.third-visual .third-text {
  font-family: "Inter", sans-serif;
  color: #b9b9b9;
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
}

/* セクション3 */
.section3 .featured {
  margin-top: 130px;
}

.section3 .featured-item img {
  /* width: 360px; */
  /* height: 356px; */
  margin-bottom: 31px;
}

/* フッター */
.footer {
  background-image: url(../images/footer.png);
  background-size: cover;
  background-position: center;
  margin-top: 130px;
  padding: 30px 0 56px;
  height: 633px;
}

.footer .wrapper {
  height: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #e9bd8c;
}

.footer-logo img {
  width: 114px;
  height: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-right: 100px;
}

.footer-social-title {
  color: #e9bd8c;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}

.footer-social-items {
  display: flex;
  gap: 24px;
}

.footer-social-items img {
  width: 42px;
  height: 42px;
}

/* フッター中央をGridで3カラムに配置
   各カラムは最低220pxを確保し、余白を均等に分配する */
.footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 52px;
}

.footer-title {
  color: #e9bd8c;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1.4;
}

.footer .footer-text {
  font-size: 24px;
  margin-bottom: 12px;
  color: #f5f5f5;
  line-height: 1.4;
}

.footer-explore .footer-text {
  line-height: 1.6;
}

/* Recent News */
.news-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-set {
  display: flex;
  gap: 23px;
}

.footer-news img {
  width: 100px;
  height: 67px;
  object-fit: cover;
}

.footer-date {
  color: #e9bd8c;
  font-size: 18px;
}

/* フッターボトム */
.footer-bottom {
  text-align: center;
  margin-top: 80px;
}

.footer-bottom p {
  color: #a3a3a3;
  font-size: 20px;
}

/* Aboutページ */
.about-hero {
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.about-hero h1 {
  font-size: 64px;
  font-family: "Sansita Swashed", cursive;
  color: white;
}

.about-story
 {
  padding: 120px 0;
}

.about-story h2,
.about-philosophy h2 {
  font-size: 48px;
  font-family: "Sansita Swashed", cursive;
  margin-bottom: 30px;
}

.contact-hero{
    height:500px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.contact-hero h1{
    font-size:64px;
    color:#fff;
    font-family:"Sansita Swashed",cursive;
}

.contact-content{
    padding:120px 0;
}

.contact-content h2{
    font-size:48px;
    text-align:center;
    margin-bottom:40px;
}

.contact-description{
    max-width:700px;
    margin:0 auto 60px;
    text-align:center;
    line-height:2;
}

.contact-info{
    max-width:500px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:30px;
}

.contact-info p{
    padding:20px;
    border:1px solid #ddd;
    border-radius:10px;
}

.contact-map{
    max-width: 700px;  
    width: 100%;       
    margin:60px auto;
}

.contact-page .contact-content .contact-map iframe {
    width: 100% !important;
    height: 450px !important;
    border: 0;
    border-radius: 12px;
}

.contact-form{
    max-width:700px;
    margin:80px auto;
}

.contact-form p{
    margin-bottom:24px;
}

.contact-form label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.contact-form textarea{
    min-height:180px;
    resize:vertical;
}

.contact-form input[type="submit"]{
    background:#933c24;
    color:#fff;
    border:none;
    padding:16px 36px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.contact-form input[type="submit"]:hover{
    opacity:.85;
}

.error-404 {
    padding: 120px 20px;
    text-align: center;
}

.error-404 h1 {
    font-size: 120px;
    color: #7a4b2c;
    line-height: 1;
    margin-bottom: 20px;
}

.error-404 h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.error-404 p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.8;
}

/* single-productページ */
.product-single{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:20px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .header {
    padding: 0 16px;
  }
  .header .wrapper {
    justify-content: space-between;
  }
  .header-logo {
    flex-shrink: 0;
  }
  .header nav {
    display: none;
    width: 100%;
  }
  .header nav.active {
    display: block;
    background: black;
    padding: 30px 0;
    opacity: 0.8;
  }
  .header nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .hamburger {
    display: flex;
  }
  .hamburger span {
    transition: transform 0.3s;
    opacity: 0.7;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .product-grid{
    grid-template-columns:repeat(1,1fr);
}
  .section2 .category-tab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .footer {
    height: 100%;
  }
  .footer-logo {
    flex-shrink: 0;
  }
  .footer-social {
    gap: 15px;
    margin-right: 0px;
  }
  .footer-social-items {
    gap: 10px;
  }
  .footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-about,
  .footer-explore {
    width: 220px;
  }
  .footer-news {
    width: 300px;
  }
  .contact-hero{
    height:300px;
}

.contact-hero h1{
    font-size:42px;
}

.contact-content{
    padding:80px 0;
}

.contact-content h2{
    font-size:34px;
}

.contact-info{
    max-width:100%;
}
.contact-map iframe{
    height:300px;
}
 .product-single {
    flex-direction: column;
  }
}
