@charset "utf-8";
* {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}
/*ヘッダーメニュー*/
h1 img {
  width: 300px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  background-color: rgba(255, 255, 255, 0.95);
  height: 10vh;
}
.header.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 100px 0 30px; /* ← 左右に適度な余白 */
}
.hamburger {
  display: none;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: fixed;
    top: 20px;
    left: 20px;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    z-index: 1100;
    cursor: pointer;
  }
  .hamburger span {
    height: 2px;
    width: 100%;
    background-color: #494848;
    border-radius: 2px;
    transition: 0.3s;
  }
}
.sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #F6F6F5;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.sp-menu li {
  margin-bottom: 32px;
}
.sp-menu a {
  font-size: 20px;
  color: #494848;
  text-decoration: none;
  letter-spacing: 0.15em;
}
.sp-menu.is-open {
  transform: translateX(0);
}
@media (max-width: 768px) {
  .header .menu {
    display: none;
  }
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.logo {
  height: 40px; /* ここを基準に調整 */
  width: auto;
  margin-left: 30px;
}
.menu {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  list-style: none; /* ・を消す */
  margin: 0;
  padding: 0;
}
.menu li {
  margin-right: 20px; /* メニュー同士の間隔 */
}
.menu li a {
  text-decoration: none;
  color: #333;
}
/* hero全体 */
.hero {
  height: 100vh;
  display: flex;
  align-items: center; /* 縦センター */
  justify-content: center; /* 横センター */
}
/* 画像と重ね要素の基準 */
.hero-inner {
  position: relative;
  width: 80%;
  height: 100%; /* ← これを追加 */
  opacity: 0;
  animation: heroFade 3.5s ease-out forwards;
  animation-delay: 0.5s;
}
/* hero画像 フェードイン */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
  /* ★ 常に呼吸させる */
  animation: floatBubble 18s ease-in-out infinite;
}
.hero-img.is-active {
  opacity: 1;
}
@keyframes heroFade {
  to {
    opacity: 1;
  }
}
/*ヒーロー画像シャボン玉エフェクト*/
@keyframes floatBubble {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.02) translate(6px, -8px);
  }
  50% {
    transform: scale(1.04) translate(-4px, -14px);
  }
  75% {
    transform: scale(1.02) translate(-8px, -6px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
/* 重ねる全体の箱（センタリング用） */
.hero-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 500px;
}
/* 下：F6F6F5 */
.box-back {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 100%;
  height: 100%;
  background-color: #F6F6F5;
  z-index: 1;
}
/* 上：FEFDFB */
.box-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FEFDFB;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
/* 縦書き文字 */
.hero-text {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  margin: 0;
  z-index: 3;
}
.top {
  position: relative;
  overflow-x: hidden;
}
/* 右上固定のお問い合わせ */
.fixed-contact {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #FBE36E;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #494848;
  font-size: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* アイコン */
.fixed-contact-icon {
  font-size: 20px;
  margin-bottom: 2px;
}
/* ホバー */
.fixed-contact:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
/* 背景写真エリア */
.brand-message {
  width: 100%;
  min-height: 80vh;
  background-image: url("../images/camerabg.jpeg"); /* 背景写真 */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  margin: 120px 0 120px 0;
  box-sizing: border-box;
}
/* テキスト全体 */
.brand-message-inner {
  max-width: 900px;
  padding-left: 280px;
}
/* 上のキャッチコピー */
.brand-message-title {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left;
}
/* 下の説明文 */
.brand-message-text {
  color: #494848;
  font-size: 16px;
  line-height: 2;
  text-align: left;
}
/* 全体（中央寄せ） */
.photo-list {
  display: flex;
  justify-content: center;
  margin: 150px 0 150px 0;
}
/* 幅70%の縦並び */
.photo-list-inner {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 40px; /* 画像同士の間隔 */
}
/* 各画像 */
.photo-list-inner img {
  width: 100%;
  height: 180px;
  object-fit: cover; /* ← はみ出した部分を切り取る */
  object-position: center; /* ← 切り取る位置（中央） */
  //border: 1px solid #494848;
  display: block;
}
/* Aboutセクション全体 */
.about {
  width: 100%;
  background-color: #F6F6F5;
  padding: 100px 20px;
  margin: 60px 0 60px 0;
}
/* 中央寄せ・読みやすい幅 */
.about-inner {
  max-width: 700px;
  margin: 0 auto;
  color: #494848;
}
/* 見出し（About） */
.about-head {
  margin-bottom: 48px;
}
/* About（大） */
.about-en {
  font-family: "Gruppo", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 36px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
/* わたしたちについて（小） */
.about-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
}
/* 中見出し */
.about-lead {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 32px;
  font-weight: normal;
}
/* 本文 */
.about-text {
  font-size: 15px;
  line-height: 2;
}
/* セクション全体 */
.strengths {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 20px;
  color: #494848;
}
/* Strengths + 番号 */
.strengths-head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 32px;
}
/* Strengths文字 */
.strengths-title {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.15em;
  padding-bottom: 6px;
  border-bottom: 1px solid #FADD4D;
}
/* 番号（01-03） */
.strengths-number {
  font-size: 40px; /* やや大きめ */
  color: #F249AE;
  font-weight: bold;
  line-height: 1;
}
/* 中見出し */
.strengths-subtitle {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: normal;
}
/* 見出し行を横並び */
.strengths-row {
  display: flex;
  align-items: baseline;
  gap: 40px;
  margin-bottom: 24px;
}
/* 本文 */
.strengths-text {
  font-size: 15px;
  line-height: 2;
}
/* 初期状態 */
.strengths {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
/* 表示されたら */
.strengths.is-show {
  opacity: 1;
  transform: translateX(0);
}
.strengths:nth-of-type(2) {
  transition-delay: 0.15s;
}
.strengths:nth-of-type(3) {
  transition-delay: 0.3s;
}
.small {
  font-size: 0.7rem;
}
/* Messageセクション全体 */
.message {
  padding: 100px 20px;
  color: #494848;
}
/* 幅制御 */
.message-inner {
  max-width: 1000px;
  margin: 0 auto;
}
/* タイトル（Aboutと統一） */
.message-head {
  margin-bottom: 60px;
}
.message-en {
  font-family: "Gruppo", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 36px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.message-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
}
/* メイン内容 */
.message-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(73, 72, 72, 0.15);
}
/* 最後の人だけ余白なし */
.message-content:last-child {
  border-bottom: none;
}
/* プロフィール */
.message-profile {
  width: 260px;
  position: relative;
}
.message-profile::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 12px;
  width: 100%;
  height: 100%;
  background: #F6F6F5;
  border-radius: 12px;
  z-index: -1;
}
.message-photo {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
  border-radius: 12px;
}
/* 名前 */
.message-name {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}
.message-name-en {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #888;
}
/* 文章 */
.message-text {
  flex: 1;
  font-size: 15px;
  line-height: 2;
}
.message-text p {
  margin-top: 0;
}
/* Productsセクション */
.products {
  padding: 100px 20px;
  color: #494848;
}
.products-inner {
  max-width: 1000px;
  margin: 0 auto;
}
/* タイトル */
.products-head {
  margin-bottom: 60px;
}
.products-en {
  font-family: "Gruppo", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 36px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.products-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
}
/* 一覧 */
.products-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
/* 各メニュー */
.product-item {
  border: 1px solid #494848;
  padding: 20px;
}
/* 画像 */
.product-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
/* タイトル */
.product-title {
  font-size: 20px;
  color: #F249AE;
  margin-bottom: 12px;
  font-weight: normal;
}
/* 説明文 */
.product-text {
  font-size: 15px;
  line-height: 1.8;
}
.product-item {
  border: 1px solid #494848;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.product-img {
  transition: transform 0.3s ease;
}
.product-item:hover .product-img {
  transform: scale(1.03);
}
.product-img-wrap {
  position: relative;
  display: inline-block;
  padding: 16px; /* ← この余白が「一回り大きい」分 */
  background-color: #FBE36E; /* 黄色 */
}
.product-img {
  display: block;
  width: 100%;
}
/* 写真販売セクション */
.photo-sales {
  background-color: #F6F6F5;
  padding: 100px 0;
  color: #494848;
}
.photo-sales-inner {
  max-width: 800px; /* ← 700 → 800 */
  margin: 0 auto;
}
/* タイトル */
.photo-sales-title {
  color: #F249AE;
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: normal;
}
/* 説明文 */
.photo-sales-text {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 48px;
}
/* 下段レイアウト */
.photo-sales-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* 左画像 */
.photo-sales-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
/* 右リンク */
.photo-sales-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.photo-sales-button.main {
  display: block;
  background-color: #FBE36E;
  padding: 18px 24px;
  border-radius: 16px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 16px;
}
/* メインボタン */
.photo-sales-button {
  display: inline-block;
  background-color: #FBE36E;
  color: #494848;
  padding: 16px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
}
.photo-sales-button span {
  font-size: 12px;
}
.photo-sales-subbutton {
  display: block;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background-color: #fff;
  text-align: center;
  font-size: 14px;
  color: inherit;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  transition: background 0.2s ease;
}
.photo-sales-subbutton:hover {
  background-color: #f6f6f5;
  text-decoration: underline !important;
  -webkit-text-decoration: underline !important;
  text-underline-offset: 4px;
}
.photo-sales-link {
  font-size: 14px;
  color: #494848;
  text-decoration: none;
}
.photo-sales-link:hover {
  text-decoration: underline;
}
.photo-sales-button {
  transition: opacity 0.3s ease;
}
.photo-sales-button:hover {
  opacity: 0.8;
}
/* Companyセクション */
.company {
  padding: 100px 20px;
  color: #494848;
}
.company-inner {
  max-width: 1000px;
  margin: 0 auto;
}
/* タイトル */
.company-head {
  margin-bottom: 60px;
}
.company-en {
  font-family: "Gruppo", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 36px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.company-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
}
/* 内容レイアウト */
.company-content {
  position: relative;
}
/* 会社情報 */
.company-list {
  max-width: 600px;
}
.company-list div {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid #E0E0E0;
}
.company-list dt {
  width: 140px;
  font-weight: normal;
}
.company-list dd {
  margin: 0;
  line-height: 1.8;
}
/* ロゴ */
.company-logo {
  position: absolute;
  right: 0;
  bottom: 0;
}
.company-logo img {
  width: 160px;
  opacity: 0.6;
}
/* Newsセクション */
.news {
  background-color: #F6F6F5;
  padding: 100px 20px;
  color: #494848;
}
.news-inner {
  max-width: 1000px;
  margin: 0 auto;
}
/* タイトル */
.news-head {
  margin-bottom: 50px;
}
.news-en {
  font-family: "Gruppo", sans-serif;
  display: block;
  font-size: 36px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.news-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
}
/* =========================
   NEWS 共通
========================= */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.news-item {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  scroll-margin-top: 120px;
  border-bottom: 1px solid #E6E6E6;
}
.news-item:last-child {
  border-bottom: none;
}
.news-date {
  width: 120px;
  font-size: 13px;
  color: #999;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.news-body {
  display: flex;
  flex-direction: column;
}
/* タイトル */
.news-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 10;
  line-height: 1.6;
  color: #222;
}
/* 本文 */
.news-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
}
/* =========================
   NEWS 一覧（トップなど）
========================= */
/* news一覧：初期状態は下線なし */
.news a {
  text-decoration: none !important;
}
.news a:hover {
  text-decoration-line: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
/* もっとみる */
.news-more {
  text-align: right;
  margin-top: 20px;
}
.news-more a {
  font-size: 14px;
  color: #494848;
  text-decoration: none;
}
.news-more a:hover {
  text-decoration: underline;
}
/* =========================
   NEWS 詳細（news2）
========================= */
.news2 {
  background-color: #FFF;
  padding: 100px 20px;
  color: #494848;
}
.news2 .news-inner {
  max-width: 900px;
  margin: 0 auto;
}
/* 詳細ではホバー・下線を完全無効 */
.news2 .news-title, .news2 .news-title:hover {
  text-decoration: none;
  cursor: default;
}
/* FAQセクション */
h3 {
  padding-top: 15px;
}
.faq {
  padding: 100px 20px;
  color: #494848;
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}
/* タイトル */
.faq-head {
  margin-bottom: 50px;
}
.faq-en {
  font-family: "Gruppo", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 36px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.faq-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
}
/* FAQ本体 */
.faq-item {
  border-bottom: 1px solid #E0E0E0;
  padding: 20px 0;
}
/* Q */
.faq-q {
  cursor: pointer;
  color: #F249AE;
  font-weight: 500;
  line-height: 1.6;
  list-style: none;
}
/* デフォルトの▶を消す */
.faq-q::-webkit-details-marker {
  display: none;
}
/* A */
.faq-a {
  margin-top: 16px;
  line-height: 1.9;
}
.faq-a a {
  color: #F249AE;
}
/* 開いてるとき少し余白 */
.faq-item[open] .faq-q {
  margin-bottom: 8px;
}
/* もっとみる */
.faq-more {
  text-align: right;
  margin-top: 30px;
}
.faq-more a {
  color: #494848;
  text-decoration: none;
  font-size: 14px;
}
.faq-more a:hover {
  text-decoration: underline;
}
/*アコーディオン　+- */
.faq-q {
  position: relative;
  cursor: pointer;
  color: #F249AE;
  font-weight: 500;
  line-height: 1.6;
  padding-right: 32px;
  list-style: none;
}
/* デフォルトの▶を消す */
.faq-q::-webkit-details-marker {
  display: none;
}
/* ＋アイコン */
.faq-q::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
}
/* 開いたとき − に */
.faq-item[open] .faq-q::after {
  content: "−";
}
/*アニメーション*/
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  line-height: 1.9;
}
/* 開いた状態 */
.faq-item[open] .faq-a {
  max-height: 500px; /* 十分大きければOK */
  opacity: 1;
  margin-top: 16px;
}
/* Footer全体 */
.footer {
  background-color: #F6F6F5;
  padding: 100px 0 0 0;
  color: #494848;
}
/* 横並びのベース */
.footer-inner {
  display: flex; /* ← これが必須 */
  justify-content: center;
  gap: 270px;
  align-items: center; /* 縦位置を揃える */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 60px;
  box-sizing: border-box;
}
/* 左：会社情報 */
.footer-label {
  font-family: "Gruppo", sans-serif;
  font-size: 17px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  color: #888;
}
.footer-left {
  max-width: 420px;
}
.footer-company {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
}
/* 右：縦並び */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
/* ロゴ */
.footer-logo {
  width: 120px;
  height: auto;
  display: block;
}
/* 丸いお問い合わせボタン */
.footer-contact-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #FBE36E;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #494848;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* メールアイコン */
.footer-contact-icon {
  margin-bottom: 0px;
}
.footer-contact-icon img {
  width: 80px;
}
.footer-contact-text {
  color: #494848;
}
/* ホバー */
.footer-contact-circle:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.footer-contact:hover {
  text-decoration: underline;
}
/* コピーライト */
.footer-copy {
  background-color: #FBE36E;
  text-align: center;
  font-size: 12px;
  color: #494848;
  margin-top: 60px;
  padding: 12px 0px;
  letter-spacing: 0.05em;
  width: 100%;
  box-sizing: border-box;
}
/*コンタクトページ*/
.contact {
  padding: 100px 20px;
  background: #fff;
  color: #494848;
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact-title {
  font-size: 28px;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  color: #F249AE;
}
.contact-lead {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 48px;
}
/* フォーム */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.required {
  font-size: 12px;
  color: #F249AE;
  margin-left: 6px;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}
textarea {
  resize: vertical;
}
/* ラジオ */
.form-radio {
  display: flex;
  gap: 20px;
  font-size: 14px;
}
.form-note {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}
/* チェック */
.form-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* 送信ボタン */
.form-submit {
  text-align: center;
}
.form-submit button {
  background: #FBE36E;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.form-submit button:hover {
  opacity: 0.8;
}
/* チェックボックス */
.check-label {
  font-size: 13px;
  line-height: 1.6;
}
.check-label a {
  color: #F249AE;
  text-decoration: underline;
}
/* ===== モーダル ===== */
/* 背景（オーバーレイ） */
.privacy-modal {
  display: none; /* ← 初期は非表示 */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
/* モーダル本体 */
.privacy-modal-box {
  background: #fff;
  width: 90%;
  max-width: 700px;
  max-height: 80vh; /* ★ 画面からはみ出さない */
  border-radius: 12px;
  padding: 32px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column; /* ★ 縦構成にする */
}
/* 閉じるボタン */
.privacy-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
/* ラベル */
.privacy-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 8px;
}
/* タイトル */
.privacy-title {
  font-size: 20px;
  margin-bottom: 16px;
}
/* ★ 本文エリア（ここだけスクロール） */
.privacy-text {
  overflow-y: auto; /* ← 超重要 */
  line-height: 1.8;
  font-size: 14px;
  color: #333;
  padding-right: 4px; /* スクロールバー対策 */
}
/* ローディング全体 */
.loading-modal {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
/* 中央ボックス */
.loading-box {
  text-align: center;
  color: #333;
  font-size: 14px;
}
/* ぐるぐる */
.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #ddd;
  border-top: 4px solid #555;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* 送信完了画面 */
.contact-thanks {
  padding: 120px 20px;
  background-color: #fff;
  color: #494848;
}
.contact-thanks-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact-thanks-title {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.contact-thanks-text {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 24px;
}
.contact-thanks-note {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 48px;
}
.contact-thanks-btn {
  margin-top: 40px;
  text-align: center;
}
.btn-home {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px; /* やさしい丸 */
  border: 1px solid #333;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}
/* hover */
.btn-home:hover {
  background: #FBE36E;
  border: none;
  color: #fff;
}
/*スマホ対応*/
@media (max-width: 768px) {
  .message-content {
    flex-direction: column;
    gap: 24px;
  }
  .message-profile {
    width: 100%;
  }
  .logo {
    height: 30px; /* ここを基準に調整 */
    width: auto;
    margin-left: 60px;
  }
}
@media (max-width: 768px) {
  .products-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .strengths-row {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    padding: 0;
  }
  .hero-inner {
    width: 100%;
    height: 100%;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ★ 画面いっぱいに */
  }
}
@media (max-width: 768px) {
  .brand-message {
    width: 100%;
    padding: 80px 0; /* 左右は余白なし */
    margin: 80px 0;
  }
  .brand-message-inner {
    max-width: none; /* PC制限を解除 */
    width: 90%; /* ★文字は90% */
    margin: 0 auto; /* 中央寄せ */
    padding-left: 0; /* PC用のずらしを解除 */
  }
  .brand-message-title {
    font-size: 22px;
    line-height: 1.9;
    margin-bottom: 32px;
  }
  .brand-message-text {
    font-size: 14px;
    line-height: 2;
  }
}
@media (max-width: 768px) {
  .photo-sales {
    padding: 80px 0; /* 左右は背景だけ */
  }
  .photo-sales-inner {
    max-width: none;
    width: 90%; /* ★文字は90% */
    margin: 0 auto;
  }
  .photo-sales-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .photo-sales-text {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 40px;
  }
  /* 下段を縦並びに */
  .photo-sales-content {
    display: flex; /* ← これが必要 */
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  /* 画像を中央に */
  .photo-sales-image {
    display: flex;
    justify-content: center;
  }
  .img-bg {
    position: relative;
    display: inline-block;
  }
  .img-bg::before {
    content: "";
    position: absolute;
    inset: -16px; /* ← 一回り大きくする */
    background-color: #FBE36E; /* 黄色 */
    z-index: -1;
    border-radius: 8px; /* 角丸いらなければ消す */
  }
  .img-bg img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
  }
}
@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .company-logo {
    position: static;
    margin-top: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 80px 0 0;
  }
  .footer-inner {
    width: 90%;
    padding: 32px 24px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  }
  .footer-left {
    text-align: center;
  }
  .footer-company {
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.08em;
  }
  /* 重ねる全体の箱（センタリング用） */
  .hero-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 450px;
  }
  /* 下：F6F6F5 */
  .box-back {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 100%;
    height: 100%;
    background-color: #F6F6F5;
    z-index: 1;
  }
  /* 上：FEFDFB */
  .box-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FEFDFB;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  /* 縦書き文字 */
  .hero-text {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.3rem;
    letter-spacing: 0.3em;
    margin: 0;
    z-index: 3;
  }
}
@media (min-width: 769px) {
  .footer-inner {
    background-color: #fff;
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  }
}
@media screen and (max-width: 768px) {
  .photo-sales-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/*ニュース　レスポンシブ*/
@media screen and (max-width: 768px) {
  /* 全体余白 */
  .news {
    padding: 60px 20px;
  }
  .news-inner {
    max-width: 100%;
  }
  /* タイトル */
  .news-head {
    margin-bottom: 32px;
  }
  .news-en {
    display: block;
    font-size: 28px;
    letter-spacing: 0.08em;
  }
  .news-ja {
    display: block;
    font-size: 13px;
    margin-top: 4px;
  }
  /* ニュース一覧 */
  .news-list {
    padding: 0;
    margin: 0;
  }
  .news-item {
    display: block; /* ← 横並び解除 */
    padding: 16px 0;
    border-bottom: 1px solid #eee;
  }
  .news-date {
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
    color: #888;
  }
  .news-title {
    display: block;
    font-size: 16px;
    line-height: 1.7;
  }
  /* もっとみる */
  .news-more {
    margin-top: 32px;
  }
  .news-more a {
    font-size: 14px;
  }
}
/* =========================
   Privacy Modal Responsive
========================= */
@media screen and (max-width: 768px) {
  .privacy-modal-box {
    width: 90%;
    max-height: 80vh;
    padding: 20px 18px;
    border-radius: 16px;
  }
  .privacy-title {
    font-size: 18px;
  }
  .privacy-text {
    font-size: 13px;
    line-height: 1.7;
  }
  .privacy-close {
    top: 10px;
    right: 12px;
    font-size: 20px;
  }
}