@charset "UTF-8";
/*
 * フロントページ専用スタイル
 * 
 * hero-logo.phpを含むフロントページの全セクションのスタイル
 * 
 * @package CustomTankyuTheme
 * @version 1.0.0
 */
/**
 * レスポンシブデザイン用変数定義
 * 
 * ブレークポイント、カラー、サイズなどの共通変数
 * 
 * @package CustomTankyuTheme
 * @version 1.0.0
 */
/* ==========================================================================
   ブレークポイント定義
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用サイズ定義
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用フォントサイズ
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用スペーシング
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用ボーダーラディウス
   ========================================================================== */
/**
 * レスポンシブデザイン用ミックスイン
 * 
 * メディアクエリ、レスポンシブ用の共通ミックスイン
 * 
 * @package CustomTankyuTheme
 * @version 1.0.0
 */
/**
 * レスポンシブデザイン用変数定義
 * 
 * ブレークポイント、カラー、サイズなどの共通変数
 * 
 * @package CustomTankyuTheme
 * @version 1.0.0
 */
/* ==========================================================================
   ブレークポイント定義
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用サイズ定義
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用フォントサイズ
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用スペーシング
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用ボーダーラディウス
   ========================================================================== */
/* ==========================================================================
   メディアクエリミックスイン
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用ユーティリティミックスイン
   ========================================================================== */
/* ==========================================================================
   レイアウト用ミックスイン
   ========================================================================== */
/* ==========================================================================
   アニメーション用ミックスイン
   ========================================================================== */
/* ==========================================================================
   ヒーローロゴセクション
   ========================================================================== */
.hero-section .container {
  padding: 0 0 0 0;
  max-width: 100%;
}

.hero-logo-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
  background-image: url("../images/bg_hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.background-cityscape {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.background-cityscape .building {
  position: absolute;
  bottom: 0;
}
.background-cityscape .building.building-left {
  left: 0;
  width: 40vw;
  height: auto;
  transform: skewY(-2deg);
}
.background-cityscape .building.building-right {
  right: 0;
  width: 40vw;
  height: auto;
  transform: skewY(1deg);
}

.hero-characters {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-characters .character {
  position: absolute;
  width: 120px;
  height: 150px;
  background: var(--primary-color);
  border-radius: 50% 50% 20% 20%;
  opacity: 0.3;
}
.hero-characters .character.character-left {
  left: 5%;
  bottom: 20%;
  transform: rotate(-10deg);
}
.hero-characters .character.character-right {
  right: 8%;
  bottom: 15%;
  transform: rotate(8deg);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   特集スライダーセクション（フロントページ専用）
   ========================================================================== */
/* セクション全体 */
.special-feature-section {
  position: relative;
  background-color: #ff999a;
  padding: 40px 0 70px;
  overflow: hidden;
  margin: 0;
}
.special-feature-section .feature-chara {
  display: block;
  position: absolute;
  bottom: 0;
  right: 30px;
  width: 180px;
  height: auto;
  z-index: 100;
}
.special-feature-section .container {
  max-width: 100%;
  padding: 0 0 0 0;
}

/* コンテンツラッパー */
.special-feature-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 0 0;
}

.wrapper-special-feature-content {
  background-color: #ff999a;
  max-width: 100%;
  margin-bottom: 20px;
}
.wrapper-special-feature-content .inner-special-feature-header {
  max-width: 900px;
  width: 96%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .wrapper-special-feature-content .inner-special-feature-header {
    flex-direction: column;
    justify-content: center;
  }
}

/* ヘッダー */
.feature-header {
  text-align: center;
  margin-bottom: 0 30px 40px;
  width: 40%;
}
@media (max-width: 768px) {
  .feature-header {
    width: 80%;
    margin-bottom: 0 auto 20px;
  }
}
.feature-header .feature-title {
  width: 100%;
  font-family: "Lexend Giga", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px #111 solid;
}
@media (max-width: 768px) {
  .feature-header .feature-title {
    font-size: 2.4rem;
  }
}
.feature-header .feature-subtitle {
  font-size: 1.8rem;
  color: #111;
  font-weight: 700;
}

/* タブナビゲーション */
.feature-tabs {
  width: 50%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .feature-tabs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
  }
}
.feature-tabs .tab-btn {
  background: #fff;
  border: 3px solid #111;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  box-shadow: 0 3px 0 #111;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.feature-tabs .tab-btn:hover {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #111;
  color: #111;
  text-decoration: none;
}
@media (max-width: 768px) {
  .feature-tabs .tab-btn {
    padding: 14px 24px;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
  }
}

/* スライダーコンテナ */
.feature-slider-container {
  position: relative;
  z-index: 2;
  overflow: visible;
  background: radial-gradient(currentColor 1.5px, transparent 1.5px) 0 0/12px 12px;
  color: rgba(0, 0, 0, 0.8);
  padding: 15px 0;
}
.feature-slider-container .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.feature-slider-container .slick-dots li button:before {
  font-family: none;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.feature-cards-slider {
  /* Slick.jsが適用されるまでの基本スタイル */
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 24px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  /* Slick.js適用後はこれらのスタイルが上書きされる */
  /* Slickトラック内のスライド調整 */
  /* センタースライド（アクティブ）のスタイル */
}
.feature-cards-slider.slick-initialized {
  display: block;
  overflow: visible;
  gap: 0; /* Slick使用時はgapをリセット */
}
.feature-cards-slider.slick-initialized .slick-track {
  display: flex !important;
  align-items: stretch;
}
.feature-cards-slider.slick-initialized .slick-slide {
  height: auto;
  padding: 0 0 0 0; /* スライド間のスペース */
  transition: all 0.3s ease;
  opacity: 1; /* 全てのスライドを不透明に */
  transform: scale(1); /* 全てのスライドを同じサイズに */
}
.feature-cards-slider.slick-initialized .slick-slide.slick-center {
  z-index: 2;
}
@media (max-width: 768px) {
  .feature-cards-slider {
    gap: 20px;
  }
  .feature-cards-slider:not(.slick-initialized) {
    /* Slick未初期化時のモバイル対応 */
  }
  .feature-cards-slider:not(.slick-initialized) .feature-card {
    min-width: 280px;
    scroll-snap-align: start;
  }
  .feature-cards-slider.slick-initialized .slick-slide {
    padding: 0 0; /* モバイルでのスライド間スペース */
  }
}

/* カード */
.feature-card {
  background: #fff;
  border: 6px solid #111;
  border-radius: 20px;
  overflow: visible;
  position: relative;
  transition: all 0.3s ease;
  scroll-snap-align: start;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  height: 100%;
}
.feature-card a.card-flex {
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
  overflow: visible;
}
@media (max-width: 768px) {
  .feature-card a.card-flex {
    flex-direction: column;
    height: auto;
  }
}
.feature-card .card-image {
  position: relative;
  width: 50%;
  height: 100%;
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .feature-card .card-image {
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: 40%;
  }
}
.feature-card .card-image .card-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.feature-card .card-image .card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: grid;
  place-items: center;
  min-height: 300px;
  background: #f7f7f7;
}
.feature-card .card-image .card-placeholder .placeholder-icon {
  font-size: 2rem;
  opacity: 0.5;
}
.feature-card .card-image:hover .card-thumbnail {
  opacity: 0.8;
}
.feature-card .card-content {
  width: 50%;
  padding: 40px 20px 20px;
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  .feature-card .card-content {
    width: 100%;
    padding: 20px;
  }
}
.feature-card .card-content .card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
}
.feature-card .card-content .card-excerpt {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* カードラベル */
.card-label {
  position: absolute;
  top: 0px;
  left: 18px;
  transform: rotate(-8deg);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
}
.card-label.interview-label {
  background: #ee1e28;
}
.card-label.project-label {
  background: #34389c;
}
@media (max-width: 768px) {
  .card-label {
    top: -20px;
  }
}

.card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  font-weight: 700;
}

/* ページネーション */
.slider-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .slider-pagination {
    margin-top: 32px;
    gap: 0.4rem;
  }
}
@media (max-width: 480px) {
  .slider-pagination {
    margin-top: 24px;
    gap: 0.3rem;
  }
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #111;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .slider-dot {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 480px) {
  .slider-dot {
    width: 6px;
    height: 6px;
  }
}
.slider-dot.active {
  opacity: 1;
}

/* Slick.js カスタムスタイル */
.feature-cards-slider.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/* Slick矢印のカスタマイズ */
.feature-cards-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 3px solid #111;
  border-radius: 50%;
  color: #111;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.feature-cards-slider .slick-arrow:hover {
  background: #111;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.feature-cards-slider .slick-arrow:focus {
  outline: 2px solid #4FC3F7;
  outline-offset: 2px;
}
.feature-cards-slider .slick-arrow.slick-prev {
  left: -60px;
}
.feature-cards-slider .slick-arrow.slick-prev:before {
  content: "‹";
}
.feature-cards-slider .slick-arrow.slick-next {
  right: -60px;
}
.feature-cards-slider .slick-arrow.slick-next:before {
  content: "›";
}

/* Slickドットのカスタマイズ */
.feature-cards-slider .slick-dots {
  position: absolute;
  bottom: -50px;
  display: flex !important;
  justify-content: center;
  margin: 30px 0 0 0;
  padding: 0;
  list-style: none;
  gap: 8px;
}
.feature-cards-slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.feature-cards-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 2px solid #111;
  outline: none;
  background: #fff;
  border-radius: 50%;
}
.feature-cards-slider .slick-dots li button:hover, .feature-cards-slider .slick-dots li button:focus {
  background: #111;
}
.feature-cards-slider .slick-dots li.slick-active button {
  background: #111;
}

/* スライドトラックのスタイル */
.feature-cards-slider .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.feature-cards-slider .slick-slide {
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: center; /* センタリング調整 */
  padding: 0 0;
  margin: 0 20px 0;
}
.feature-cards-slider .slick-slide.slick-loading {
  visibility: hidden;
}
.feature-cards-slider .slick-slide.slick-current {
  z-index: 2;
}
.feature-cards-slider .slick-slide img {
  display: block;
}
.feature-cards-slider .slick-slide.slick-loading img {
  display: none;
}

/* レスポンシブ調整 */
@media (max-width: 1200px) {
  .feature-cards-slider .slick-arrow.slick-prev {
    left: -40px;
  }
  .feature-cards-slider .slick-arrow.slick-next {
    right: -40px;
  }
}
@media (max-width: 768px) {
  .special-feature-section {
    padding: 60px 0;
  }
  .special-feature-section::before {
    top: 140px;
  }
  .special-feature-section::after {
    bottom: 100px;
  }
  .wrapper-special-feature-content {
    display: flex;
    flex-direction: column;
    display: flex;
    justify-content: center;
  }
  .feature-cards-slider {
    grid-auto-columns: 85%;
  }
  .feature-cards-slider .slick-arrow {
    display: none !important;
  }
  .feature-cards-slider .slick-slide {
    padding: 0 8px;
  }
}
/* ==========================================================================
   メインロゴ
   ========================================================================== */
.main-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  max-width: 650px;
}

.hero-logo-image {
  height: 60%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ==========================================================================
   ヒーロータグライン
   ========================================================================== */
.hero-tagline {
  font-size: clamp(1.25rem, 4vw, 2.5rem);
  color: var(--text-primary);
  margin: var(--spacing-2xl) 0;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  .hero-tagline {
    margin: 0 0 130px 0;
  }
}

/* ==========================================================================
   マスコットキャラクター
   ========================================================================== */
.mascot-character {
  margin-top: var(--spacing-xl);
  position: absolute;
  right: 20px;
  top: 20%;
  width: 160px;
  height: auto;
}
@media (max-width: 480px) {
  .mascot-character {
    top: 12%;
    width: 140px;
  }
}
.mascot-character .mascot-main {
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}
.mascot-character .mascot-face {
  font-size: 4rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* ==========================================================================
   検索・ニュースセクション
   ========================================================================== */
.search-news-section {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 0 0;
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}
.search-news-section .search-news-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .search-news-section .search-news-wrapper {
    flex-direction: column-reverse;
  }
}
.search-news-section .search-news-wrapper .search-main {
  width: 68%;
}
@media (max-width: 768px) {
  .search-news-section .search-news-wrapper .search-main {
    width: 100%;
  }
}
.search-news-section .search-news-wrapper .search-main h2 {
  font-size: var(--font-size-4xl);
  text-align: left;
}
.search-news-section .search-news-wrapper .news-sidebar {
  width: 30%;
}
@media (max-width: 768px) {
  .search-news-section .search-news-wrapper .news-sidebar {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .search-news-section .search-news-wrapper .news-sidebar {
    width: 100%;
  }
}
.search-news-section .search-news-wrapper .news-sidebar .news-sidebar-content {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  height: auto;
}
@media (max-width: 768px) {
  .search-news-section .search-news-wrapper .news-sidebar .news-sidebar-content {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .search-news-section .search-news-wrapper .news-sidebar .news-sidebar-content {
    padding: 16px;
  }
}
.search-news-section .search-news-wrapper .news-sidebar .news-header {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  .search-news-section .search-news-wrapper .news-sidebar .news-header {
    margin-bottom: 16px;
    padding-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .search-news-section .search-news-wrapper .news-sidebar .news-header {
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
}
.search-news-section .search-news-wrapper .news-sidebar .news-header .news-icon {
  position: absolute;
  top: -54px;
  left: 10px;
  width: 60px;
  height: 60px;
}
@media (max-width: 768px) {
  .search-news-section .search-news-wrapper .news-sidebar .news-header .news-icon {
    top: -48px;
    left: 8px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .search-news-section .search-news-wrapper .news-sidebar .news-header .news-icon {
    top: -42px;
    left: 6px;
    width: 45px;
    height: 45px;
  }
}
.search-news-section .search-news-wrapper .news-sidebar .news-header .news-title {
  font-size: var(--font-size-4xl);
  text-align: left;
}
@media (max-width: 768px) {
  .search-news-section .search-news-wrapper .news-sidebar .news-header .news-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .search-news-section .search-news-wrapper .news-sidebar .news-header .news-title {
    font-size: 2rem;
  }
}
.search-news-section .search-news-wrapper .news-sidebar .news-header .news-subtitle {
  font-size: 1.4rem;
  color: #666;
  margin: 0;
}
@media (max-width: 768px) {
  .search-news-section .search-news-wrapper .news-sidebar .news-header .news-subtitle {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .search-news-section .search-news-wrapper .news-sidebar .news-header .news-subtitle {
    font-size: 1.2rem;
  }
}
.search-news-section .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list {
  height: auto;
  max-height: 245px;
  overflow: auto;
}
@media (max-width: 768px) {
  .search-news-section .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list {
    max-height: 100%;
  }
}
@media (max-width: 480px) {
  .search-news-section .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list {
    max-height: 100%;
  }
}
.search-news-section .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.search-news-section .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list ul li {
  margin-bottom: 12px;
}
.search-news-section .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list ul li:last-child {
  margin-bottom: 0;
}
.search-news-section .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list .tankyu-aside-news-list-item {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  color: #333;
}
.search-news-section .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list .tankyu-aside-news-list-item:hover {
  background: #f8f9fa;
}
.search-news-section .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list .tankyu-aside-news-list-item .tankyu-aside-news-list-date {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 4px;
  font-weight: 500;
}
.search-news-section .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list .tankyu-aside-news-list-item .tankyu-aside-news-list-title {
  display: block;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0;
}
.search-news-section .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list .tankyu-aside-news-list-item .tankyu-aside-news-new-label {
  display: inline-block;
  font-size: 1rem;
  padding: 1px 4px;
  background: #ff4757;
  color: #fff;
  font-weight: 700;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.search-news-section .tankyu-search-form {
  background-color: var(--white);
  padding: 0 0 0 0;
  margin-top: 0;
  margin-bottom: 0;
}

/* ==========================================================================
   レスポンシブ対応
   ========================================================================== */
@media (max-width: 768px) {
  .hero-logo-section {
    min-height: 60vh;
    padding: var(--spacing-2xl) 0;
    background-size: contain;
    background-position: top;
  }
  .hero-logo-image {
    height: 200px;
  }
  .hero-characters .character {
    width: 80px;
    height: 100px;
  }
  .background-cityscape .building.building-left {
    width: 50%;
  }
  .background-cityscape .building.building-right {
    width: 50%;
  }
  .search-news-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .search-news-wrapper .search-main,
  .search-news-wrapper .news-sidebar {
    width: 100%;
  }
  .search-news-wrapper .news-sidebar .news-sidebar-content {
    padding: 16px;
  }
  .search-news-wrapper .news-sidebar .news-header .news-title {
    font-size: 2.2rem;
  }
  .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list .tankyu-aside-news-list-item {
    padding: 10px 12px;
  }
  .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list .tankyu-aside-news-list-item .tankyu-aside-news-list-date {
    font-size: 1.1rem;
  }
  .search-news-wrapper .news-sidebar .tankyu-aside-news .tankyu-aside-news-list .tankyu-aside-news-list-item .tankyu-aside-news-list-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .hero-logo-image {
    height: 100px;
  }
  .mascot-face {
    font-size: 3rem;
  }
}

/*# sourceMappingURL=front-page.css.map */
