/*
Theme Name: AiCusta
Author: UP CREATE Inc.
Version: 1.0
Description: チャットボット導入サービス用のWordPressオリジナルテーマ
*/

:root {
  --sub-font: "M PLUS Rounded 1c", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.sec-title {
  font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
  font-weight: bold;
  color: #212121;
  line-height: 1.6;
  margin-bottom: 40px;
}

.sec-subtitle {
  color: #d07731;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 12px;
  border-bottom: 2px solid #d07731;
  display: inline-block;
  padding-bottom: 4px;
}

.marker {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.orange-text {
  color: #d07731;
  font-weight: bold;
}

.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

@media screen and (max-width:768px) {
  .sec-title {
    margin-bottom: 32px;
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}

/* ヘッダー */
.site-header {
  width: 100%;
  padding: 16px 40px;
  background-color: #fff;
}

.site-header .container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo img {
  height: 32px;
}

/* ナビゲーション全体 */
.site-nav {
  margin-left: auto;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

/* 各リンク */
.site-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
}

.site-nav ul li a:hover {
  opacity: 0.7;
}

.hamburger-morph {
  z-index: 1000;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-morph__icon {
  width: 100%;
  height: 100%;
}

.hamburger-morph__line {
  fill: none;
  stroke: #000;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.active .hamburger-morph__line {
  stroke: #fff;
}

.hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 60 207;
}

.hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 60 60;
}

.hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 60 207;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(29, 29, 31, 0.98);
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}

.nav-morph.active {
  clip-path: circle(150% at calc(100% - 44px) 44px);
}

.nav-morph__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.nav-morph__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.nav-morph__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-morph.active .nav-morph__item:nth-child(1) {
  transition-delay: 0.3s;
}
.nav-morph.active .nav-morph__item:nth-child(2) {
  transition-delay: 0.4s;
}
.nav-morph.active .nav-morph__item:nth-child(3) {
  transition-delay: 0.5s;
}
.nav-morph.active .nav-morph__item:nth-child(4) {
  transition-delay: 0.6s;
}

.nav-morph__link {
  position: relative;
  display: inline-block;
  padding: 20px;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.nav-morph__text,
.nav-morph__hover {
  display: block;
  transition: transform 0.3s ease;
}

.nav-morph__hover {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: translateY(0%);
}

.nav-morph__link:hover .nav-morph__text {
  transform: translateY(-100%);
}

.nav-morph__link:hover .nav-morph__hover {
  transform: translateY(-100%);
}

/* お問い合わせボタンだけ特別なスタイル */
.nav-contact-button {
  background: linear-gradient(to right, #f47216, #fca311);
  color: #fff !important;
  padding: 8px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
}

.hamburger-morph {
  display: none;
}

@media screen and (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .hamburger-morph {
    display: block;
  }
}

/* フッター */
.site-footer {
  background-color: #f8f8f8;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* モバイル専用ボタン */
.chat-toggle-button {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: #f47216;
  border: none;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  line-height: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* モバイルチャットUI */
.chat-mobile-box {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 90vh;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.25);
  z-index: 9998;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}

.chat-mobile-box iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/* ヘッダー */
.chat-mobile-header {
  background: #f47216;
  color: white;
  padding: 12px 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-close-button {
  background: transparent;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

/* 表示切り替え */
.chat-mobile-box.open {
  display: flex;
}

/* SPのみ表示 */
@media screen and (max-width: 768px) {
  .main-right {
    display: none;
  }

  .chat-toggle-button {
    display: inline-block;
  }
}

/* 全体レイアウト：左カラムと右固定チャット */
.main-layout {
  display: flex;
  position: relative;
  overflow: visible;
  flex-direction: row;
}

/* 左カラム：メインコンテンツ */
.main-left {
  width: 100%;
  max-width: calc(100% - 380px);
  padding: 0;
}

/* 右カラム：固定チャット */
.main-right {
  width: 380px;
  position: sticky;
  top: 0;
  right: 0;
  height: 100vh;
  background: #fff;
  color: #212121;
  padding: 24px 0 0;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 100;
}

.chatbot-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chatbot-box h3 {
  margin-bottom: 16px;
  font-size: 18px;
  text-align: center;
}

/* ヒーローセクション */
.hero-section {
  width: 100%;
  padding: 60px 40px;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("./assets/img/hero-bg.jpg") no-repeat center center / cover;
  color: #fff;
}

/* ヒーロー内部レイアウト */
.hero-inner.new-hero-layout {
  width: 100%;
  height: 100%;
}

/* 上部ラベル */
.hero-message-top .label {
  background: #212121;
  color: #fff;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 20px;
}

/* キャッチコピー */
.hero-message-center {
  max-width: 720px;
  margin-bottom: 40px;
}

.hero-message-center .main-title {
  background: #f47216;
  padding: 20px;
  border-radius: 6px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  display: inline-block;
}

/* ロゴ */
.hero-logo {
  margin-top: 20px;
}

.hero-logo img {
  width: 380px;
}

.hero-logo h2 {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* チャット画像 */
.hero-chat-image {
  max-width: 400px;
  margin-top: 40px;
}

.hero-chat-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* 今後追加されるセクション共通 */

section h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
  }

  .main-layout {
    flex-direction: column;
  }

  .main-left {
    max-width: 100%;
    width: 100%;
  }

  .main-right {
    position: static;
    width: 100%;
    height: auto;
    padding: 32px 16px;
    order: 2;
  }

  .chatbot-box iframe {
    min-height: 480px;
  }

  .hero-message-center .main-title {
    font-size: 20px;
    padding: 16px;
  }

  .hero-logo img {
    width: 70%;
    height: auto;
  }

  .hero-chat-image {
    max-width: 100%;
    margin-top: 24px;
  }

  .hero-chat-image img {
    width: 100%;
    height: auto;
  }

  .site-header {
    padding: 8px 20px;
  }

  .site-header .container {
    justify-content: space-between;
    gap: 16px;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav-contact-button {
    width: 100%;
    text-align: center;
  }

  section h2 {
    font-size: 22px;
  }
}

/* backgroundセクション */
.background-section {
  padding: 80px 40px;
  background-color: #fff;
}

.background-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.background-section .sec-title {
  text-align: left;
}

.background-image {
  width: 40%;
  max-width: 100%;
}

.background-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.background-text {
  width: 50%;
  font-size: 14px;
  color: #212121;
  line-height: 2;
}

.background-text p {
  margin-bottom: 16px;
}

.background-text strong {
  font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .background-section {
    padding: 40px 20px;
  }

  .background-content {
    flex-direction: column;
    gap: 24px;
  }

  .background-image {
    width: 100%;
  }

  .background-text {
    width: 100%;
    font-size: 18px;
  }
}

/* issueセクション */
.issue-section {
  background-color: #f9f9f9;
  padding: 80px 40px;
  text-align: center;
}

.issue-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.issue-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  width: 22%;
  min-width: 230px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.issue-card img {
  width: 100%;
  border-radius: 4px;
  margin: 16px 0;
}

.issue-card h3.issue-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  color: #212121;
}

.issue-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .issue-section {
    padding: 40px 20px;
  }

  .issue-cards {
    align-items: center;
  }

  .issue-card {
    width: 45%;
    min-width: 100%;
  }
}

/* おすすめセクンション */
.recommend-section {
  background: #f9f9f9;
  padding: 80px 40px;
}

.recommend-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.recommend-section .sec-title {
  text-align: left;
}

/* 左側のテキスト */
.recommend-text {
  flex: 1;
  min-width: 280px;
}

/* 右側のアイコン＋説明リスト */
.recommend-list {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
}

.recommend-item {
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.recommend-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.recommend-item p {
  margin: 0;
  font-size: 15px;
  color: #d07731;
  font-weight: bold;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .recommend-section {
    padding: 40px 20px;
  }

  .recommend-container {
    flex-direction: column;
    gap: 0;
  }

  .recommend-text h2 {
    font-size: 24px;
  }

  .recommend-list {
    width: 100%;
  }

  .recommend-item {
    flex-direction: row;
    align-items: center;
    padding: 16px;
  }

  .recommend-item p {
    font-size: 14px;
  }

  .recommend-list {
    min-width: 0;
    gap: 8px;
  }
}

/* meritセクション */
.merit-section {
  background-color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.merit-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.merit-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.merit-item:nth-child(even) {
  flex-direction: row-reverse;
}

.merit-image {
  width: 40%;
}

.merit-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.merit-content {
  width: 40%;
}

.merit-label {
  font-size: 14px;
  font-weight: bold;
  color: #d07731;
  margin-bottom: 6px;
  display: block;
}

.merit-heading {
  font-size: 18px;
  font-weight: bold;
  color: #212121;
  margin-bottom: 12px;
  line-height: 1.5;
}

.merit-description {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .merit-section {
    padding: 40px 20px;
  }

  .merit-item {
    gap: 16px;
  }

  .merit-item,
  .merit-item:nth-child(even) {
    flex-direction: column;
    text-align: left;
  }

  .merit-image {
    width: 100%;
  }

  .merit-image img {
    width: 100%;
    max-width: 100%;
  }

  .merit-content {
    width: 100%;
  }

  .merit-heading {
    text-align: center;
  }

  .merit-label {
    text-align: center;
  }
}

/* sceneセクション */
.scene-section {
  padding: 80px 40px;
  background: #fff;
  text-align: center;
}

.scene-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.scene-tab {
  background: #fff;
  color: #212121;
  border: 1px solid #ccc;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.scene-tab.active {
  background: #d07731;
  color: #fff;
  border-color: #d07731;
}

.scene-contents {
  max-width: 960px;
  margin: 0 auto;
}

.scene-content {
  display: none;
}

.scene-content.active {
  display: block;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.scene-box {
  background: #f5f5f5;
  padding: 24px;
  text-align: left;
  border-radius: 4px;
}

.scene-box h3 {
  font-size: 16px;
  color: #d07731;
  margin-bottom: 8px;
  font-weight: bold;
}

.scene-box p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .scene-section {
    padding: 40px 20px;
  }

  .scene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  .scene-tabs {
    margin-bottom: 24px;
  }

  .scene-box h3 {
    text-align: center;
  }
}

/* sessageセクション */
.message-section {
  background-color: #f8eebc; /* 背景色 */
  padding: 40px 20px;
  text-align: center;
}

.message-inner p {
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: bold;
  color: #212121;
  line-height: 2;
}

.message-inner .highlight {
  background-color: #212121;
  color: #fff;
  padding: 10px 16px;
  display: inline-block;
  line-height: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .message-inner .highlight {
    padding: 8px 12px;
  }

  .message-section {
    padding: 20px;
  }
}

/* flowセクション */
.flow-section {
  padding: 80px 40px;
  background: #fff;
}

.flow-container {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-step {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 64px;
  align-items: flex-start;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-step-head {
  width: 200px;
  font-size: 16px;
  font-weight: bold;
  color: #d07731;
  flex-shrink: 0;
}

.flow-step-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flow-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.flow-thumb {
  width: 60px;
  height: 60px;
  background: #fffaf6;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-thumb img {
  width: 100%;
  height: auto;
}

.flow-text h4 {
  font-size: 16px;
  font-weight: bold;
  color: #d07731;
  margin-bottom: 4px;
}

.flow-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  text-align: left;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .flow-section {
    padding: 40px 20px;
  }

  .flow-container {
    text-align: center;
  }

  .flow-step {
    flex-direction: column;
    gap: 24px;
  }

  .flow-step-head {
    width: 100%;
    font-size: 20px;
    margin-bottom: 8px;
  }

  .flow-item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .flow-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .flow-step-body {
    gap: 32px;
  }
}

/* tryセクション */
.try-section {
  background-color: #f5f5f5;
  padding: 80px 40px;
  text-align: center;
}

.try-subtext {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

.try-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.try-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 8px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  border: 1px solid #ccc;
  transition: background 0.2s ease;
}

.try-item:hover {
  background: #eeeeee;
}

.try-item.copied::after {
  content: "コピーしました！";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .try-section {
    padding: 40px 20px;
  }

  .try-item {
    width: 100%;
  }
}

/* footer */
.site-footer {
  background-color: #1e1e1e;
  color: #fff;
  font-size: 12px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 40px 24px;
}

.footer-logo img {
  height: 32px;
}

.footer-right-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-action {
  margin-top: 16px;
  width: 50%;
}

.line-button {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
  font-weight: bold;
  padding: 16px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  gap: 16px;
  transition: background 0.3s ease;
}

.line-button:hover {
  background-color: #fff;
  color: #000;
}

/* .line-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: #f2a623;
  border-radius: 50%;
} */

.line-button .arrow {
  margin-left: auto;
  font-size: 18px;
}

.footer-bottom {
  background: #fff;
  color: #000;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.sns-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sns-icons a img {
  height: 20px;
  transition: opacity 0.2s;
}

.sns-icons a:hover img {
  opacity: 0.6;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .footer-right-wrapper {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 20px;
  }

  .footer-links {
    flex-direction: column;
    justify-content: flex-start;
  }

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

  .footer-action {
    width: 100%;
  }

  .line-button {
    width: 100%;
  }
}

/* プライバシーポリシー ページ用CSS */
.privacy-policy {
  padding: 80px 40px;
  max-width: 880px;
  margin: 0 auto;
  background-color: #fff;
  color: #333;
  line-height: 1.8;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

.privacy-policy h1 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #d07731;
  text-align: center;
  font-weight: bold;
}

.privacy-policy h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: bold;
  color: #333;
  border-left: 4px solid #d07731;
  padding-left: 12px;
}

.privacy-policy ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 20px;
}

.privacy-policy li {
  margin-bottom: 8px;
}

.privacy-policy a {
  color: #d07731;
  text-decoration: underline;
}

.privacy-policy a:hover {
  opacity: 0.8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .privacy-policy {
    padding: 40px 20px;
    font-size: 15px;
  }

  .privacy-policy h1 {
    font-size: 24px;
  }

  .privacy-policy h2 {
    font-size: 18px;
  }
}

/* お問い合わせページ */
.wpcf7 {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
}

.wpcf7 label {
  /* display: block; */
  margin-bottom: 12px;
  font-weight: bold;
  color: #333;
}

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.policy-check-wrapper input {
  width: auto;
}

.wpcf7-submit {
  background-color: #d07731;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}

.wpcf7-submit:hover {
  background-color: #b9611c;
  cursor: pointer;
}

.policy-check-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.policy-check-wrapper p {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}

.privacy-policy a {
  margin-left: 6px;
}