/* 共通設定 */
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  width: 100%;
  max-width: 100vw;
}

main{
  padding-top: 80px;
  width: 100%;
  max-width: 100vw;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin:0;
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: #666;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  margin-top: -10px;
}

.underline {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #74c3e2; /* 画像と同じ青系 */
  margin: -20px auto 0;
  border-radius: 2px;
}
.underline.blue       { background: #5fb3ce; }
.underline.purple     { background: #c6b3e5; }
.underline.green      { background: #a2d8b7; }
.underline.pink       { background: #e8a9a9; }
.underline.beige      { background: #dbccb3; }
.underline.lightpurple { background: #bcaee0; }

@media (max-width: 768px) {
  .underline{
    width: 100px;
    height: 5px;
  }
}
.section-description {
  font-size: 18px;
  line-height: 2;
  margin-top: 10px;
  font-weight: bold;  
}

/* PC表示限定 */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  main{
    padding-top: 67px;
  }
  
  .section-title {
    font-size: 22px;
  }

  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/* ヘッダー */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  height:80px;
  margin: 0 auto;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #222;
}

.header-nav .nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: #333;
  padding-bottom: 5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  border-radius: 3px;
}
@media (max-width: 768px) {
    .nav-link::after {
      left: 0;
      right: 0;
      height: 4px;
      width: 25%;
      margin:auto;
    }
}

/* 各色ごとの下線 */
.nav-blue::after       { background: #5fb3ce; }
.nav-purple::after     { background: #c6b3e5; }
.nav-green::after      { background: #a2d8b7; }
.nav-pink::after       { background: #e8a9a9; }
.nav-beige::after      { background: #dbccb3; }
.nav-lightpurple::after { background: #bcaee0; }

.header-contact .contact-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e29610;
  color: #fff;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
}

/*ハンバーガーメニュー */
.hamburger {
  display: none;
}

/* ==============================
   SP専用ハンバーガーメニュー調整
   ============================== */

/* ハンバーガーボタン（右上） */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}

.hamburger:hover {
  background: #eee;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  margin: 3px 0;
}

/* SPメニュー本体 */
.sp-menu {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(50, 50, 50, 0.6); /* 背景半透明 */
  backdrop-filter: blur(4px);
}

.sp-menu.open {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 中身の白いパネル */
.sp-menu-inner {
  position: relative;
  background: #fff;
  width: 80%;
  max-width: 320px;
  height: 100%;
  padding: 40px 24px;
  box-shadow: 2px 0 12px rgba(0,0,0,0.2);
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* 閉じるボタン */
.sp-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #eee;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: none;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  line-height: 1;
}

/* ロゴ */
.sp-logo {
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 32px;
  text-decoration: none;
  color: #333;
}

/* メニューリスト */
.sp-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-nav-list li {
  margin-bottom: 20px;
}

.sp-nav-list a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  padding-bottom: 6px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
  text-align:center;
}

/* 各色の下線 */
.sp-nav-list a.nav-blue:hover       { border-color: #5fb3ce; }
.sp-nav-list a.nav-purple:hover     { border-color: #c6b3e5; }
.sp-nav-list a.nav-green:hover      { border-color: #a2d8b7; }
.sp-nav-list a.nav-pink:hover       { border-color: #e8a9a9; }
.sp-nav-list a.nav-beige:hover      { border-color: #dbccb3; }
.sp-nav-list a.nav-lightpurple:hover { border-color: #bcaee0; }

/* お問い合わせボタン */
.sp-buttons {
  margin-top: 40px;
  text-align: center;
}

.sp-mail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #e29610;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
  width: 60%;
  margin: auto;  
}

.sp-mail-btn:hover {
  background: #c97f0c;
}

.sp-mail-btn img {
  width: 20px;
  height: 20px;
}

/* メインビジュアル */
.mv {
  position: relative;
  width: 100%;
  height: 680px; /* 必要に応じて */
}

.mv-background {
  width: 100%;
  height: 100%;
}

.mv-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 背景に影響しないように */
}

/* テキスト */
.mv-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: 0.2em;
  color: #FFFFFFFF;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.5;
  pointer-events: auto;
}

/* テキスト */
.mv-text-small {
  font-size: 30px;
  font-weight: bold;
}

/* テキスト */
.mv-text-big {
  font-size: 72px;
  font-weight: 900;
}

.mv-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.mv-subs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 430px;
  margin-top: -345px; /* 曲線に重ねる */
}

.mv-subs img {
  width: auto;
  height: 250px;
}

/* === SP用調整 === */
@media (max-width: 768px) {
  .mv {
    height: 600px;
    max-height: none;
  }

  .mv-text {
    font-size: 30px;
    width:100%;
    letter-spacing: 0.4em;
    line-height: 2;
  }

  .mv-text-small {
    font-size: 26px;
  }

  .mv-text-big {
    font-size: 52px;
    margin-top: 12px;
  }

  .mv-subs {
    gap: 100px;
    margin-top: -200px;
  }
  .mv-subs img {
    height: 154px;
  }
}

/* About */
.about {
  text-align: center;
  padding: 0;
  background: #fff;
}

.about-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 18px;
  line-height: 2;
  color: #333;
  font-weight: 500;
}

.about-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* SP用 */
@media (max-width: 768px) {
  .about {
    padding: 40px 0 0;
  }

  .about-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2.2;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .about-content img {
    max-width: 90%;
    margin-top: 20px;
  }
}

/* お知らせ */
.news {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.news-list li {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

.news-list .date {
  width: 120px;
  color: #666;
  font-size: 14px;
}

.news-list .label {
  font-size: 12px;
  padding: 4px 12px;
  margin-right: 16px;
  background: #f5f5f5;
  border-radius: 999px;
  color: #666;
  white-space: nowrap;
}

.news-list .text {
  flex: 1;
}

/* SP調整 */
@media (max-width: 768px) {
  .news-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .news-list .date {
    width: auto;
    font-size: 13px;
  }

  .news-list .label {
    font-size: 11px;
    padding: 3px 10px;
  }

  .news-list .text {
    font-size: 15px;
    line-height: 1.6;
  }
}
/* === サービスセクション === */
.services {
  background: url('../img/service_bk.png') repeat;
  padding: 60px 0px;
  text-align: center;
}

.from-title {
  margin: 30px 0;
}
.from-title p {
  font-size: 24px;
}
.from-title .kumamoto {
  color: #00a84f;
  font-weight: bold;
}
.from-title .osaka {
  color: #d84d5f;
  font-weight: bold;
}
.from-visual {
  margin: 30px 0;
}
.from-visual img {
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
  height: auto;
}

.fromkumamoto {
  width: 449px;
}

.colabo {
  width: 379px;
}

.description {
  max-width: 600px;
  margin: 0 auto 40px;
}

.service-block {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 40px;  margin-bottom: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.service-block.reverse {
  flex-direction: row-reverse;
}
.service-block img {
  height: 270px;
  border-radius: 12px;
  margin-right: 20px;
}
.service-block.reverse img {
  margin-right: 0;
  margin-left: 20px;
}
.service-block .content {
  text-align: left;
}
.service-block h4 {
  margin: 0 0 8px;
  font-size: 20px;
}
.service-block .btn {
  margin-top: 10px;
  display: inline-block;
  background: #00a84f;
  color: #fff;
  padding: 8px 16px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 14px;
}

.store-section-title {
  color: #009966;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 20px;
}

.store-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 40px auto;
  max-width: 900px;
  gap: 24px;
}

.store-image {
  width: 300px;
  border-radius: 12px;
}

.store-details {
  flex: 1;
  font-size: 16px;
  line-height: 1.7;
}

.store-name {
  font-weight: bold;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 12px;
  text-align: left;
}

.store-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.store-meta li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.store-meta img {
  width: 20px;
  margin-right: 8px;
}

.gallery-container {
  overflow: hidden;
  width: 100vw;
  padding: 40px 0;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.gallery-item {
  width: 160px;
  height: 220px;
  margin-right: 12px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 上下ジグザグ：oddは上へ、evenは下へ */
.gallery-item:nth-child(odd) {
  transform: translateY(-20px);
}
.gallery-item:nth-child(even) {
  transform: translateY(20px);
}

/* アニメーション */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SP調整 */
@media (max-width: 768px) {
  .services {
    padding: 60px 30px;
  }
  .service-block {
    flex-direction: column;
    text-align: center;
  }

  .service-block img {
    width: 100%;
    height: 266px;
    margin-right: 0px;
  }

  .service-block .content {
    padding: 16px;
    text-align: center;
  }

  .service-block h4 {
    font-size: 18px;
    font-weight: bold;
  }

  .service-block p {
    font-size: 16px;
    font-weight: 400;
    text-align:left;
  }

  .from-title p {
    font-size: 32px;
    font-weight: bold;
  }

  .description {
    font-size: 18px;
    font-weight: 400;
  }
  
  .service-block .btn{
    width:80%;
  }

  .gallery-container {
    width: 100%;
  }
}
/* メッセージ */
.message {
  background: url('../img/message_bg.jpg') no-repeat center center;
  background-size: cover; /* ← contain ではなく cover にする */
  padding: 80px 20px;
  color: #333;
}

.message-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.profile {
  text-align: center;
  flex: 0 0 240px;
}
.ceo-photo {
  width: 185px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.ceo-name p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}
.ceo-name strong {
  display: block;
  font-size: 22px;
  font-weight: bold;
  margin: 5px 0;
}
.ceo-name span {
  font-size: 14px;
  color: #666;
}
.map {
  width: 230px;
  margin-top: 20px;
}

.speech-bubble {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 620px;
  position: relative;
  font-size:14px;
  margin-top: 30px;
}
.speech-bubble::before {
  content: '';
  position: absolute;
  left: -75px;
  top: 30px;
  width: 0;
  height: 0;
  border: 40px solid transparent;
  border-right-color: #fff;
}

.speech-bubble .lead {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
.speech-bubble .quote {
  color: #d84d5f;
  font-weight: bold;
  margin: 20px 0;
}

.focus-link {
  background: #ffffff;
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  gap: 20px;
}

.focus-logo {
  width: 163px;
  flex-shrink: 0;
}

.focus-text {
  text-align: left;
  font-size: 15px;
  color: #333;
}

.focus-text p {
  margin: 0 0 10px;
  line-height: 1.6;
}

.focus-text a {
  color: #0073aa;
  text-decoration: underline;
  word-break: break-word;
}

@media (max-width: 768px) {
  .message {
    padding: 20px 20px;
  }
  
  .message-content {
    margin: 40px auto 0;
  }
  .speech-bubble::before {
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border: none;
    border-right-color: none;
  }

  /* SP用 Focusカード */
  .focus-card {
    background: #fff;
    text-align: center;
    padding: 20px;
    margin: 0px auto;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .focus-img {
    background: #F1EFE9;
  }

  .focus-logo-sp {
    max-width: 200px;
    width: 200px;
    margin: 0 auto;
    display: block;
  }

  .focus-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
  }

  .focus-card a {
    font-size: 13px;
    color: #0073aa;
    word-break: break-word;
    text-decoration: underline;
  }
}
/* 会社概要 */
.company {
  background: url('../img/service_bk.png') repeat;
  padding: 60px 20px;
  text-align: center;
}

.company-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.company-table {
  width: 80%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  margin: 10px auto 0;
}

.company-table th {
  width: 120px;
  font-weight: bold;
  color: #8c7b67;
  padding: 10px 0;
  border-bottom: 1px dotted #ddd;
  vertical-align: middle;
}

.company-table td {
  padding: 10px 0;
  border-bottom: 1px dotted #ddd;
  color: #333;
}

@media (max-width: 768px) {
  .company-table {
    font-size: 12px;
  }
  .company-table th {
    width: 90px;
  }
}
/* アクセス */
.access {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.access-info {
  max-width: 800px;
  margin: 0 auto;
}

.access-info .company-name {
  font-weight: bold;
  font-size: 18px;
  margin: 20px 0 10px;
}

.access-info .address {
  font-size: 15px;
  margin-bottom: 30px;
}

.map-wrapper iframe {
  width: 100%;
  max-width: 600px;
  height: 400px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .access-info .address {
    font-size:12px;
    text-align:left;
    margin:0 auto 30px;
    padding-left:50px;
  }
}
/* お問い合わせ */
.contact {
  background: #f4f1eb;
  padding: 60px 20px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.wpcf7-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
}

.wpcf7-form .required {
  background: #b72218;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-bottom: 20px;
  background: #fff;
}

.wpcf7-form textarea {
  height: 120px;
  resize: vertical;
}

.wpcf7-acceptance {
  margin-bottom: 20px;
}

.wpcf7-form input[type="submit"] {
  background: #a01910;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.wpcf7-form input[type="submit"]:hover {
  background: #89160e;
}

/* お問い合わせ */
.contact {
  background: #f4f1eb;
  padding: 60px 20px;
  text-align: center;
  overflow-x: hidden; /* 横スクロール防止 */
}

.contact .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.contact-form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box; /* パディングを含めて幅計算 */
  background: #fff;
  border-radius: 12px;
  text-align: left;
}

/* ラベル */
.wpcf7-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: bold;
}

/* 必須マーク */
.wpcf7-form .required {
  background: #a01910;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
}

/* 入力欄 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  max-width: 100%; /* 親からはみ出さない */
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-bottom: 20px;
  background: #fff;
  box-sizing: border-box; /* パディング込みで100% */
}

.wpcf7-form textarea {
  height: 120px;
  resize: vertical;
}

/* チェックボックス */
.wpcf7-acceptance {
  margin-bottom: 20px;
  font-size: 13px;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap; /* SPで折り返し */
}

/* 送信ボタン */
.wpcf7-form input[type="submit"] {
  background: #a01910;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
  transition: background 0.3s ease, transform 0.2s;
}

.wpcf7-form input[type="submit"]:hover {
  background: #89160e;
  transform: translateY(-2px);
}

.wpcf7-form input[type="submit"]:active {
  transform: translateY(0);
}

/* SP対応 */
@media (max-width: 768px) {
  .contact {
    padding: 40px 10px;
  }

  .contact-form {
    padding: 16px;
    border-radius: 8px;
  }

  .wpcf7-form input[type="submit"] {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }
}
/* フッター */
.site-footer {
  background-color: #a3afb7; /* グレー背景 */
  color: #fff;
  padding: 40px 20px 0;
  text-align: center;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-sns-btn {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  gap: 8px;
}

.footer-sns-btn img{
  width:23px;
}
.sns-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.sns-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.sns-button {
  width:120px;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
}

.footer-bottom {
  padding: 20px 0;
}

.privacy-link {
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
}

.footer-copyright {
  background: #333;
  padding: 10px 0;
}

.footer-copyright small {
  color: #fff;
  font-size: 13px;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 0;
  }
  .footer-inner{
    padding: 20px 20px 0;
  }
  .footer-copyright {
    padding: 20px 0;
  }
}

/* スクロール用 */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fadein.scrollin {
  opacity: 1;
  transform: translateY(0);
}

.fadein-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.fadein-left.scrollin {
  opacity: 1;
  transform: translateX(0);
}

.fadein-right {
  opacity: 0;
  transform: translateX(50px); /* ←ここが右方向 */
  transition: all 0.8s ease;
}

.fadein-right.scrollin {
  opacity: 1;
  transform: translateX(0);
}

.fadein-top {
  opacity: 0;
  transform: translateY(50px); /* ←ここが上方向 */
  transition: all 0.8s ease;
}

.fadein-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}

.fadein-bottom {
  opacity: 0;
  transform: translateY(-50px); /* ←ここが下方向 */
  transition: all 0.8s ease;
}

.fadein-bottom.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/* プライバシーポリシーページ */
.privacy-policy-original {
  max-width: 800px;
  margin: auto;  
}

.policy-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  background: #fff;
  color: #222;
  font-size: 14px;
  line-height: 1.8;
}

.policy-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.policy-content h3 {
  font-size: 14px;
  margin-top: 24px;
  font-weight: bold;
}

.policy-content ul {
  margin-left: 20px;
  list-style: disc;
}

/* 商品一覧 */
.product-list {
  background: url('../img/service_bk.png') repeat;
  padding: 60px 20px;
}

.product-list .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  gap: 8px;
}

.product-location {
  padding: 5px 12px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 13px;
  color: #333;
}

.instagram-icon {
  width: 18px;
  height: 18px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 14px;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.product-label {
  margin-top: 12px;
  font-size: 12px;
  color: #999;
}

.product-title {
  font-size: 16px;
  margin-top: 6px;
  font-weight: bold;
}

.product-description {
  font-size: 13px;
  color: #444;
  margin-top: 6px;
  text-align: left;
}

.shop-button-wrapper {
  text-align: center;
  margin: 40px 0 60px;
}

.shop-button {
  display: inline-block;
  background-color: #59c16b;
  color: #fff;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: 0.2s ease;
}

.shop-button:hover {
  background-color: #47a85a;
}

.shop-button .arrow {
  margin-left: 12px;
  font-weight: normal;
}
