/* --------------------------------------
           全体設定
           -------------------------------------- */

html {
  scroll-padding-top: 70px;
  /* ヘッダーの高さ分設定*/
}

body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Sans', 'Meiryo', sans-serif;
  line-height: 1.8;
  margin: 0;
  background-color: #f8f8f8;
  color: #333;
  transition: padding-top 0.3s ease;
  padding-top: 5.5VW;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 30px 0;
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 1%, #ffaaaa 100%);
  color: #333;
  padding: 7px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 1%, #ffaaaa 100%);
    color: #fff;
    padding: 0px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
  }
}


#main-nav .container {
  display: flex;
  /* ★★★ ここから変更 ★★★ */
  justify-content: space-between;
  /* ブランド名とメニューを両端に配置 */
  align-items: center;
  padding: 0 20px;
  /* モバイルでのナビゲーションの左右余白 */
  /* ★★★ ここまで変更 ★★★ */
}

.nav-brand {
  font-size: 1.8em;
  padding: 8px 0;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: normal;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  /* ★★★ ここから追加 ★★★ */
  margin-right: auto;
  /* ブランド名の右側に余白を最大限確保 */
  /* ★★★ ここまで追加 ★★★ */
}

.site-logo {
  max-width: 120px;
  /* 親要素の幅を超えて表示されないようにする */
  height: auto;
  /* 縦横比を維持する */
  display: block;
  /* 画像をブロック要素として扱い、余計な余白をなくす */
}

/* 必要に応じて、ロゴの最大幅を設定することもできます */
/* 例: デスクトップでは最大130px、それ以下は自動調整 */
@media (min-width: 768px) {
  .site-logo {
    max-width: 130px;
    /* PCなど広い画面での最大幅 */
  }
}

@media (max-width: 426px) {
  .site-logo {
    max-width: 80px;
    /* PCなど広い画面での最大幅 */
  }
}

h1.logo-img img {
  max-width: 290px;
  width: 33VW;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  /* ★★★ ここから追加 ★★★ */
  margin-left: auto;
  /* ナビゲーションリストを右に寄せる */
  /* ★★★ ここまで追加 ★★★ */
}

.nav-list li {
  margin-left: 30px;
}

.nav-list a {
  color: #333;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

@media (max-width: 1080px) {
  .nav-list a {
    font-size: 0.9em;
  }
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #ff6600;
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

#main-nav.scrolled {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84) 1%, #ffaaaa 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.274);
}

.hamburger {
  display: none;
  /* デスクトップでは非表示 */
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
  /* ★★★ ここから追加 ★★★ */
  margin-left: auto;
  /* ハンバーガーボタンを右に寄せる */
  /* ★★★ ここまで追加 ★★★ */
}

.hamburger .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger .bar:nth-child(1) {
  top: 0;
}

.hamburger .bar:nth-child(2) {
  top: 9px;
}

.hamburger .bar:nth-child(3) {
  top: 18px;
}

.hamburger.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.98);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

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

.mobile-nav-list li {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-list li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-list li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-list li:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-list li:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-list li:nth-child(4) {
  transition-delay: 0.4s;
}


.mobile-nav-list a {
  color: #fff;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: bold;
  display: block;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.mobile-nav-list a:hover {
  color: #ff6600;
}

header {
  text-align: center;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

/* ▼▼▼ ドロップダウンメニューの基本スタイル ▼▼▼ */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  min-width: 160px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 2000;
}

/* PC：hoverで表示 */
@media (min-width: 872px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 10px;
  font-size: 0.95em;
  color: #333;
  background: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  text-align: left;
  line-height: 1.5;
}

.dropdown-menu li a:hover {
  background: #ffe8e8;

}

/* ▼▼ ドロップダウンのラインアニメーション完全版 ▼▼ */
.dropdown-menu li a {
  position: relative;
  display: block;
  /* block のままでOK */
  padding: 10px 15px;
}

/* 初期状態：下線を非表示 */
.dropdown-menu li a::after {
  content: '';
  position: absolute;
  left: 15px;
  /* 左の padding と合わせることで見える位置に */
  bottom: 7px;
  /* 下の padding を考慮した位置 */
  width: 0;
  height: 2px;
  background-color: #ff6600;
  transition: width 0.3s ease;
}

/* hover 時に下線が伸びる */
.dropdown-menu li a:hover::after {
  width: calc(100% - 30px);
  /* padding 左右15px分を引く */
}

.dropdown-menu {
  list-style: none;
  padding-left: 0;
}

.dropdown-menu li {
  list-style: none;
  margin-left: 0;
}

/* ▼▼▼ モバイル：JS で open クラスが付いた場合 ▼▼▼ */
@media (max-width: 872px) {
  #main-nav .dropdown.open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: none;
    background: #fff;
    padding-left: 15px;
  }

  .dropdown-menu li a {
    padding: 8px 0;
  }
}

main h1 {
  margin: 0;
  font-size: 3.2em;
  letter-spacing: 2px;
}

header p {
  font-size: 1.4em;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h2 {
  font-size: 3.8em;
  margin-bottom: 25px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  background: linear-gradient(336deg, rgba(255, 255, 255, 0.95) 0%, #fff 99%, rgba(255, 255, 255, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p {
  font-size: 1.8em;
  margin-bottom: 40px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}


.btn {
  display: inline-block;
  background-image: linear-gradient(to bottom, #ffffff 0%, #ffcba0 100%);
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #ff1e00;
  border-bottom: 2px solid #ff7700;
  border-radius: 100vh;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.btn:hover {
  background-image: linear-gradient(to top, #ffffff 0%, #ffcba0 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: #ff4d00;
}

a.btn:before {
  content: "\f0e0";
  position: relative;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 15px;
}

main {
  text-align: center;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.section {
  padding: 80px 0;
  background: linear-gradient(to right, #ffffff 0%, #fefefe 100%);
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.section h3 {
  text-align: center;
  font-size: 2.8em;
  color: #503a2c;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #ff6aba 10%, #ffde08 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ff6c00;
  border-radius: 2px;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  gap: 40px;
}

.feature-item {
  flex-basis: 28%;
  padding: 30px;
  box-sizing: border-box;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background-color: #fcf8ee;
}

.feature-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.feature-item h4 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 15px;
}

.feature-item p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

.ttl_background8 {
  padding: 0.3em 0.5em;
  color: #fff;
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  background-image: linear-gradient(to right, #ff5d5d 0%, #ffc768 100%);
  font-size: 2.2em;
  text-shadow: 1px 1px 5px rgb(157, 80, 93);
}


.contact {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f97602 0%, #fffb3a 100%);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.contact img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.contact h3 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 2.5em;
  position: relative;
  padding-bottom: 15px;
}

.contact h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
}

.contact p {
  font-size: 1.3em;
  color: #333;
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 1.7;
  opacity: 0.9;
}

footer {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #222 0%, #333 100%);
  color: #aaa;
  font-size: 0.9em;
}

@media (max-width: 890px) {
  body {
    padding-top: 63px;
  }

  #main-nav {
    padding: 2px 0 0 0;
  }

  #main-nav .container {
    padding: 0 20px;
  }

  .nav-brand {
    padding: 11px 0 10px;
    height: 100%;
    margin-right: 0;
    /* モバイルではデフォルトに戻す */
  }

  .nav-list {
    display: none;
    /* モバイルでは非表示 */
  }

  .hamburger {
    display: block;
    /* モバイルで表示 */
    margin-left: auto;
    /* ハンバーガーボタンを右に寄せる */
  }

  .container {
    width: 90%;
    padding: 20px 0;
  }

  .container {
    padding: 5.1vw 3vw;
    /*上下、左右へのボックス内の余白。左右はcss冒頭で指定しているglobal-spaceを読み込みます*/
  }

  header p {
    font-size: 1em;
  }
}



.container {
  max-width: 1280px;
  margin: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

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


@media (max-width: 485px) {
  body {
    padding-top: 40px;
  }

  #main-nav {
    padding: 1px 0 0 0;
  }

  #main-nav .container {
    padding: 0 10px;
  }

  .nav-brand {
    padding: 6px 0 5px;
    height: 100%;
    margin-right: 0;
    /* モバイルではデフォルトに戻す */
  }

  .nav-list {
    display: none;
    /* モバイルでは非表示 */
  }

  .hamburger {
    display: block;
    /* モバイルで表示 */
    margin-left: auto;
    /* ハンバーガーボタンを右に寄せる */
  }

  .container {
    width: 90%;
  }

  .container2 {
    padding: 5.1vw 3vw;
    /*上下、左右へのボックス内の余白。左右はcss冒頭で指定しているglobal-spaceを読み込みます*/
  }

  main h1 {
    font-size: 1.8em;
  }

  header p {
    font-size: 0.8em;
  }
}

/* ======================================= */
/* ====== 料金ページ (cost.html) 専用スタイル ====== */
/* ======================================= */

/* ヘッダーセクションの調整 (cost.htmlのh1, p) */
header .container {
  text-align: left;
  padding: 60px 20px 40px;
  background-color: #ffffff00;
}

@media (max-width: 485px) {
  header .container {
    padding: 10px 0px 10px;
    background-color: #ffffff00;
  }
}


main h1 {
  font-size: 2em;
  color: #ff6600;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

p.catch-copy {
  font-size: 1.2em;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.catch-copy strong {
  color: #ff0000;
  font-size: 1.1em;
}

/* プランセクション全体 */
.plan-section {
  background-color: #ffffff;
  padding: 50px 0;
  margin-bottom: 40px;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.plan-section h2 {
  text-align: center;
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

.plan-section h2 i {
  color: #ff6600;
  margin-right: 15px;
}

.plan-section>p {
  text-align: center;
  font-size: 1.4em;
  color: #3c3c3c;
  margin-bottom: 40px;
}

/* 価格リスト (ul.price-list) */
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item:nth-child(even) {
  background-color: #f9f9f9;
}

.price-item:hover {
  background-color: #fff5e6;
}

.item-info {
  flex-grow: 1;
  text-align: left;
}

.item-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.item-title2 {
  font-size: 1.9em;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.item-detail {
  font-size: 1em;
  color: #777;
}

.item-detail strong {
  color: #ff6600;
}

.item-price {
  font-size: 1.5em;
  font-weight: 700;
  color: #ff6600;
  width: 150px;
  text-align: right;
  flex-shrink: 0;
}

.item-price.included {
  font-size: 1em;
  font-weight: bold;
  color: #28a745;
  background-color: #e6ffe6;
  padding: 5px 10px;
  border-radius: 20px;
  text-align: center;
  width: 100px;
}

/* スタート価格行 */
.price-item.is-starting-price {
  background: linear-gradient(90deg, #ffc768 0%, #ff5d5d 100%);
  color: #fff;
  padding: 25px;
  border-bottom: 1px solid #ff7700;
}

.price-item.is-starting-price .item-title,
.price-item.is-starting-price .item-detail {
  color: #000000;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 1.2em;
}

.price-item.is-starting-price .item-price {
  font-size: 1.8em;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* オプションリスト */
.option-list {
  max-width: 900px;
  margin: 40px auto 20px;
  padding: 20px 25px;
  background-color: #f0f8ff;
  border-left: 5px solid #ff6600;
  border-radius: 0 8px 8px 0;
}

.option-list h3 {
  font-size: 1.6em;
  color: #ff6600;
  margin-bottom: 20px;
  text-align: left;
}

.option-list ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
}

.option-list li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #555;
}

.option-list strong {
  color: #d9534f;
  font-weight: bold;
}

/* CTAボックス */
.cta-box {
  text-align: center;
  padding: 60px 20px;
  margin: 50px auto;
  background: linear-gradient(90deg, #ffc768 0%, #ff5d5d 100%);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 900px;
}

.cta-box h2 {
  font-size: 2em;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-box p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #111;
}

.cta-button {
  display: inline-block;
  background-image: linear-gradient(to bottom, #ffffff 0%, #ffcba0 100%);
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #ff1e00;
  border-bottom: 2px solid #ff7700;
  border-radius: 100vh;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

a.cta-button:before {
  content: "\f0e0";
  position: relative;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 15px;
}

@media (max-width: 890px) {
  .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

.cta-button:hover {
  transform: translateY(-3px);
  background-color: #f0f0f0;
}

/* 区切り線 */
hr {
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgb(255 211 211), rgb(255 102 0 / 75%), rgb(240 255 88 / 76%));
  margin-bottom: 20px;
}


/* 料金ページ モバイル対応 */
@media (max-width: 768px) {
  main h1 {
    font-size: 1.3em;
    line-height: 1.6;
  }

  .catch-copy {
    font-size: 1em;
    margin: 0 auto 25px;
  }

  .plan-section h2 {
    font-size: 1.3em;
    line-height: 1.6;
  }

  .price-item {
    flex-direction: column;
    align-items: anchor-center;
    padding: 15px 20px;
  }

  .item-title {
    font-size: 1.1em;
    text-align: center;
  }

  .item-title2 {
    font-size: 1.3em;
    text-align: center;
  }

  .item-detail {
    margin-bottom: 7px;
    text-align: center;
  }

  .item-price {
    font-size: 1.4em;
    width: auto;
    text-align: left;
  }

  .price-item.is-starting-price .item-price {
    font-size: 1.8em;
  }

  .item-price.included {
    width: 85px;
    font-size: 0.8em;
  }

  .cta-box h2 {
    font-size: 2em;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .option-list h3 {
    font-size: 1.2em;
    color: #ff6600;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.6;
  }

  .plan-section>p {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .plan-section {
    background-color: #ffffff;
    padding: 20px 0;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  .price-item.is-starting-price {
    padding: 15px;
  }

}


/* --- フッターのソーシャルアイコンと構造の改善 --- */

/* 既存のfooterスタイルを上書き/強化 */
footer {
  background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
  padding: 40px 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

footer .container p {
  /* コピーライトのスタイル */
  margin: 0;
  font-size: 1em;
  color: #bbb;
  flex-basis: 100%;
  text-align: center;
  margin-top: 20px;
  order: 3;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  order: 2;
}

.social-links a {
  color: #aaa;
  font-size: 1.5em;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff6600;
  /* ブランドカラーで強調 */
}

.footer-logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  order: 1;
}

/* フッターのモバイル対応 */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo,
  .social-links,
  footer .container p {
    flex-basis: 100%;
    text-align: center;
    margin: 0;
  }

  .social-links {
    justify-content: center;
  }

  footer .container p {
    margin-top: 20px;
  }
}