body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    overflow-x: hidden;
  }
  
  header {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    height: 70px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .logo {
    flex-shrink: 0; /* ロゴの縮小を防ぐ */
  }
  
  .logo img {
    height: 110px;         /* ロゴのサイズ調整 */
    position: relative;    /* 位置を相対指定に */
    top: 0;                /* 上にぴったり合わせる */
    z-index: 10;           /* 背景よりも前面にする */
    display: block;        /* 画像をブロック要素化（はみ出し防止） */
    margin: 0 auto;        /* 中央揃え（必要に応じて） */
    margin-top: 35px;
  }
  
  
  .gnav {
    display: flex;
    justify-content: center;  /* 中央に揃える */
    margin-right: 20px;                /* 項目間の隙間を10pxに */
  }

  .gnav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    width: 100%;
  }
  
  .gnav li {
    margin-left: 50px;
    
  }
  
  .gnav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
  }
  
  .gnav a:hover {
    text-decoration: underline;
  }
   
  .top-links {
    position: absolute;
    top: 120px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10; /* 背景より上に表示 */
    width: 450px;
    box-sizing: border-box;
  }
  
  .top-links .link {
    display: flex;
    align-items: center;
    padding: 24px 32px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.8em;
    backdrop-filter: blur(4px); /* ぼかしでちょっとかっこよく */
  }
  
  .top-links .link i {
    margin-right: 8px;
  }
  
  .top-links .link.red {
    background: rgba(255, 0, 0, 0.6); /* 透過赤 */
  }
  
  .top-links .link.blue {
    background: rgba(0, 0, 255, 0.6); /* 透過青 */
  }
  
  .top-links .link:hover {
    opacity: 1;
  }

  .top-links .link.red:hover {
    background: rgba(255, 0, 0, 1); /* 不透明な赤 */
  }
  
  .top-links .link.blue:hover {
    background: rgba(0, 0, 255, 1); /* 不透明な青 */
  }
  
  .main-visual {
    background: url('images/backtop.jpg') no-repeat left center / cover;
    background-size: cover;
    height: 90vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-size: 20px;
    overflow: hidden;
  }
  
  /* notice-area は main 内の右下に絶対配置 */
.notice-area {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 400px;
  box-sizing: border-box;
  z-index: 10;
  animation: none !important;
  will-change: transform;
}

/* タイトルと本文がずれないよう position を relative に */
.notice-title {
  background: rgba(0, 0, 255, 0.6);
  color: #fff;
  font-size: 1.2em;
  padding: 10px 20px;
  border-radius: 5px 5px 0px 0px;
  position: relative;
  white-space: nowrap;
  width: auto;
}

.notice-content {
  background: #fff;
  padding: 20px;
  border-radius: 0px 0px 10px 10px;
  font-size: 1.2em;
  color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border: 5px solid rgba(0, 0, 255, 0.6);
  width: 100%;
  box-sizing: border-box;
}

.notice-content a {
  color: #000;
}

.notice-content a:hover {
  color: #e60012;
}

  #sunfes {
    padding-top: 20px;
  }

  .sunfes-text {
    font-size: 1.2em;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
  }  



  section {
    padding: 50px 20px; /* 上下80px、左右20pxのスペース */
  }  

  #booth img {
    width: 100%; /* 親要素に合わせて横幅を100%に設定 */
    height: auto; /* 高さは自動で調整 */
  }

  .swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .swiper-slide {
    width: 100%;
    text-align: center;
  }
  .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 400px; /* 例えば 400pxに制限 */
    object-fit: contain; /* 縦横比維持しながら枠内に収める */
    cursor: pointer;
  }

/* スライダー内の画像サイズ調整 */
.swiper-container .swiper-slide img {
  width: 100%;       /* 親要素にフィットさせる */
  max-width: 600px;  /* 最大幅を設定 */
  height: auto;      /* 高さは自動調整 */
  display: block;    /* 画像の余白を消す */
  margin: 0 auto;    /* 中央寄せ */
}


  /* モーダルのスタイル */
.modal {
  display: none; /* 初期状態で非表示 */
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.modal img {
  max-width: 80%;
  max-height: 80vh;
  object-fit: contain;
  margin-top: -80px;
}

.close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 3em;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  display: block; /* 閉じるボタンの表示を有効にする */
}

.url {
  margin-top: 20px;
  color: #fff;
  font-size: 1.2em;
  text-align: center;
  font-weight: bold;
  word-wrap: break-word;
  max-width: 90%;
}

#modal-url, #overlay-url {
  margin-top: 10px;
  font-size: 1.1em;
  color: #fff;
  text-align: center;
}

#overlay-url a, #modal-url a {
  color: #fff;
  text-decoration: underline;
  font-weight: normal;
  cursor: pointer;
}

#overlay-url a:hover, #modal-url a:hover {
  color: #ffcc00; /* ホバー時に色変更 */
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* 透過黒背景 */
  display: none; /* 初期状態で非表示 */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 画像の下に表示するURLやドット */
.overlay .url {
  color: #fff;
  margin-top: 10px;
  text-align: center;
}

.modal-dots {
  display: flex;  /* flexなどにして横並びに表示 */
  justify-content: center;
  margin-top: 10px;
  gap: 5px; /* ドットの間隔 */
}

.modal-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #000;  /* 例: 黒に */
  border-radius: 50%;
  opacity: 0.3;  /* 通常は少し薄く */
  transition: opacity 0.3s;
}

.modal-dots span.active {
  opacity: 1;  /* アクティブ時は濃く */
}

.overlay-container {
  position: relative;
  display: inline-block;
}

.overlay-link {
  position: absolute;
  top: 20px;        /* 好きな位置に調整 */
  left: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8); /* 背景を少し白く */
  padding: 6px 10px;
  border-radius: 8px;
}


.activitytop img,
.foodstop img {
  width: 50%;
  max-width: 600px; /* 必要に応じて最大幅も設定 */
  height: auto;
  display: block;
  margin: 0 auto; /* 中央寄せしたい場合 */
}

#activitys {
  background-image: url('images/activityback.svg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: #000;
}

.active {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.activity-item {
  width: 22%;
  background: rgba(255, 255, 255, 0.85);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  box-sizing: border-box;
}



.activity-info {
  
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.activitys-logo {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto 12px;
}

.activity-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.insta-icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .active {
    flex-direction: column;
    align-items: center;
  }

  .activity-item {
    width: 100%;
    max-width: 300px;
  }
}

#food-drink {
  background-image: url('images/foodback.svg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: #000;
  margin-top: 80px;
}

.foods {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop {
  width: 20%;
  background: rgba(255, 255, 255, 0.8);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.shop-logo {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto 12px;
}

.shop-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #9b48af;
  font-weight: bold;
}

.insta-link:hover {
  color: #7c3b8c; /* 任意：ホバー時の色（少し濃く） */
}

.insta-icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  filter: invert(29%) sepia(56%) saturate(314%) hue-rotate(262deg) brightness(89%) contrast(93%);
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .foods {
    flex-direction: column;
    align-items: center;
  }

  .shop {
    width: 100%;
    max-width: 300px;
  }
}

.access {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
}

#access p {
  font-size: 1.2em;        /* 文字サイズを大きく */
  line-height: 1.8;        /* 行間を広げて読みやすく */
  color: #333;             /* 適度な濃さの文字色 */
  max-width: 800px;        /* 行の長さを制限（任意） */
  margin: 0 auto 20px;     /* 中央寄せ + 下に余白 */
  padding: 0 15px;         /* 左右に余白を追加 */
}



.map-container {
  max-width: 960px;
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.center-image {
  text-align: center;
  margin: 40px 0; /* 上下に余白を追加したい場合 */
}

.center-image img {
  max-width: 100%;
  height: auto;
}


.apply-section {
  text-align: center;
  margin-top: 60px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.apply-badge {
  font-size: 1.2em;
  color: #e60012;
}

.apply-btn {
  display: inline-block;
  padding: 20px 40px; /* サイズUP */
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 22px; /* テキスト拡大 */
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25); /* シャドウも少し強く */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.apply-btn:hover {
  background-color: #727171;
  color: #fff;
  transform: translateY(-3px); /* ホバーも少し強調 */
}

.swiper-container {
  display: block;
  max-width: 100%;  /* 親要素が画面に収まるように最大幅を設定 */
}

.thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.thumbnail {
  width: 100px !important;
  height: auto !important;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.seminar-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.seminar-thnmb {
  width: 100px !important;
  height: auto !important;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay .modal-content {
  position: relative;
  background: white;
  padding: 20px;
  text-align: center;
}

.overlay .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #000;
  cursor: pointer;
}

#overlay-img {
  max-width: 80%;
  max-height: 80%;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal.active {
  display: flex;
}
.modal img {
  max-width: 90%;
  height: auto;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}


/* 基本のフッターのスタイリング */
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

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

.footer-logo img {
  width: 150px;
}

.footer-nav ul,
.footer-social ul {
  list-style-type: none;
  padding: 0;
}

.footer-nav ul li,
.footer-social ul li {
  display: inline;
  margin: 0 15px;
}

.footer-nav a,
.footer-social a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: #f39c12;
}

.footer-social ul {
  text-align: right;
}

.social-icon {
  width: 24px;
  height: auto;
  filter: brightness(0) invert(1); /* 白く見せる */
}

.footer-bottom {
  margin-top: 20px;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-nav,
  .footer-social {
    margin-top: 10px;
  }
}

/* ===== レスポンシブ対応：タブレット以下 ===== */
@media screen and (max-width: 1024px) {
  .gnav {
    margin: 10px 0;
    justify-content: center;
  }

  .gnav a {
    font-size: 0.8em;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gnav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

}

/* 📱 中サイズ：タブレットや横向きスマホ向け（600〜1024px） */
@media screen and (max-width: 1024px) and (min-width: 600px) {
  .top-links {
    width: 350px;
    top: 80px;
    right: 16px;
  }

  .top-links .link {
    font-size: 1.4em;
    padding: 16px 20px;
  }

  .notice-area {
    right: -30px;
    width: 350px;
  }

  .notice-title {
    right: 80px;
    font-size: 1em;
    padding: 6px 16px;
  }

  .notice-content {
    width: 280px;
    font-size: 1em;
    padding: 1rem;
    border-width: 4px;
  }
}


/* デフォルト状態（PC・タブレット） */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.hamburger-menu .bar {
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
}

/* スマホ時のレスポンシブ対応 */
@media (max-width: 768px) {
  /* ✅ header全体を非表示 */
  header {
    display: none !important;
    visibility: hidden;
    height: 0;
    overflow: hidden;
  }

  /* ✅ ハンバーガーメニューを右上に表示 */
  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 30px;
    position: fixed; /* 常に画面の右上に固定 */
    top: 20px;
    right: 20px;
    background-color: #fff; /* 黒背景 */
    border-radius: 5px;
    padding: 10px;
    z-index: 1001;
    cursor: pointer;
  }

  .hamburger-menu .bar {
    width: 24px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
  }

  /* ✅ モバイルメニュー本体 */
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 60px 20px 20px; /* 上に余白確保（ハンバーガー分） */
    box-sizing: border-box;
    z-index: 1000;
  }

  .mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-menu nav ul li a {
    color: #fff;
    font-size: 1.4em;
    text-decoration: none;
    font-weight: bold;
  }

  .mobile-menu .top-links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-menu .top-links .link {
    font-size: 1.2em;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
  }  
}


/* 中サイズ（1024px以下）用 */
@media screen and (max-width: 1024px) and (min-width: 601px) {
  .notice-area {
    position: absolute;
    bottom: 30px;   /* 少し上に */
    right: 10px;    /* はみ出さないように調整 */
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
  }

  .notice-title {
    position: static;
    top: -40px;
    right: 20px;
    font-size: 1em;
    padding: 8px 12px;
    white-space: nowrap;
  }

  .notice-content {
    font-size: 1em;
    padding: 1rem;
  }
}

/* スマホ（600px以下）では画像の下に表示 */
@media screen and (max-width: 600px) {
  .main-visual {
   width: 100%;
   height: 70vh;
  }
  
  .notice-area {
    position: static;
    width: 90%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .notice-title {
    position: static;
    font-size: 1em;
    text-align: center;
    margin-bottom: -5px;
  }

  .notice-content {
    width: 100%;
    font-size: 1.2em;
    padding: 1rem;
    box-sizing: border-box;
  }

  .apply-btn {
    font-size: 0.9em;        /* フォントを小さめに */
    padding: 10px 16px;      /* パディングを小さめに */
    width: 90%;              /* 幅を少し広げてボタン感を保つ */
    margin: 1rem auto;       /* 中央寄せ */
  }

  .apply-badge {
    font-size: 0.9em;
    padding: 4px 8px;
    border-radius: 8px;
  }

  .apply-label {
    font-size: 0.9em;
    margin-bottom: 0px;
  }

  .footer-nav a {
    white-space: nowrap; /* 文字列が途中で折り返さないように */
    word-break: break-word; /* 長い単語の場合に折り返しを防ぐ */
  }
  
} 

@media screen and (max-width: 768px) {
  .notice-area {
    position: static;
    width: 90%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: auto; /* fixedから戻す */
  }

  .notice-title {
    position: static;
    font-size: 1.1em;
    margin-bottom: -5px;
    text-align: center;
    background: rgba(0, 0, 255, 0.6);
    color: #fff;
    padding: 10px;
    border-radius: 5px 5px 0 0;
  }

  .notice-content {
    width: 100%;
    font-size: 1em;
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
    border: 4px solid rgba(0, 0, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
}

/* ハンバーガーメニューの見た目 */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 30px;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  z-index: 1001;
  cursor: pointer;
}

.hamburger-menu .bar {
  width: 24px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

/* モバイルメニューのスタイル */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  padding: 60px 20px 20px;
  box-sizing: border-box;
  z-index: 1000;
}

.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu nav ul li a {
  color: #000;
  font-size: 1.4em;
  text-decoration: none;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 30px;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    z-index: 1001;
    cursor: pointer;
  }

  .hamburger-menu .bar {
    width: 24px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: white;
  position: absolute;
  top: 60px; /* ヘッダーの下に出す */
  right: 0;
  width: 100%;
  height: 500px;
  z-index: 1000;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  align-items: center;
}

.mobile-menu.active {
  display: flex;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1100;
}

.hamburger-menu .bar {
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  /* 通常の nav を非表示に */
  header nav.gnav {
    display: none;
  }

  .gnav li {
    margin-left: 0px;
    
  }
}

/* ハンバーガーメニュー内のtop-links */
.top-links.mobile-only {
  display: flex;
  flex-direction: column; /* 縦並びにする */
  align-items: center; /* 水平センタリング */
  gap: 1rem; /* リンクの間隔を調整 */
  width: 100%; /* 幅を100%にする */
  padding: 0px; /* 左右のパディング */
  margin-top: 2rem;
  box-sizing: border-box; /* パディング込みで幅を計算 */
}

/* モバイルメニュー内 top-links の整え */
.mobile-menu .top-links.mobile-only {
  display: flex;
  flex-direction: column;
  align-items: center;        /* センタリング */
  gap: 1rem;                  /* 間隔 */
  margin-top: 15rem;           /* gnavとの間隔 */
  max-width: 90%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

/* モバイルメニュー内 top-links のリンク整え */
.mobile-menu .top-links.mobile-only a {
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  padding-left: 60px;
  border: 1px solid #fff;
  border-radius: 8px;
  width: 80%;
  max-width: 300px;
}

