@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,700;1,700&display=swap');
/*
=========================================================
File: /press_room/css/style.css
Version: v1.19.0
Update Date: 2026-03-31
Author: Senior Frontend Engineer
Characters: 7393 | Lines: 357
Description: ヤッホーブルーイング プレスルーム用 スタイルシート (フリーワード検索 完成版)
Difference: v1.18.0から更新
 - 理由: JSの機能追加に伴うバージョン更新のみ。スタイル（先祖返り防止状態）に変更なし。
=========================================================
*/

/* Variables */
:root {
  --color-navy: #112240;
  --color-yellow: #F8E133;
  --color-dark: #0a101d;
  --color-white: #ffffff;
  --color-gray: #888888;
}

/*===== 共通CSS干渉の強制リセット =====*/
#press_room_index main ul,
#press_room_index main li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  background-image: none !important;
}
#press_room_index main li::before,
#press_room_index main li::after {
  display: none !important;
  content: none !important;
}
#press_room_index button {
  font-family: inherit;
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
}

/*===== Layout =====*/
#press_room_index .l-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4vw;
}
@media (max-width: 768px) {
  #press_room_index .l-inner { padding: 0 5vw; }
}

#press_room_index main {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding-top: 80px;
}

/*===== Press Header (Title & Filters) =====*/
#press_room_index .p-press_header {
  padding: 8px 0 56px;
}

#press_room_index .c-heading_press {
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-yellow);
}

#press_room_index .p-press_filter__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-yellow);
  margin: 16px 0px 16px 32px;
}

#press_room_index .p-press_filter__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* PC: カテゴリ列の区切り線（1px / #fff 20% / 高さ45px / 前後20px） */
@media (min-width: 769px) {
  #press_room_index .p-press_filter__controls:first-child {
    gap: 20px;
  }

  #press_room_index .p-press_filter__controls:first-child > .p-press_filter__categories:first-of-type::after {
    content: "";
    width: 1px;
    height: 45px;
    align-self: center;
    margin-left: 20px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
  }

  #press_room_index .p-press_filter__controls:first-child > .p-press_filter__categories:nth-of-type(2) {
    gap: 20px;
  }

  #press_room_index .p-press_filter__categories li:has(button[data-category="ストーリー"]) {
    display: flex !important;
    align-items: center;
  }

  #press_room_index .p-press_filter__categories li:has(button[data-category="ストーリー"])::after {
    content: "" !important;
    display: block !important;
    width: 1px;
    height: 45px;
    margin-left: 20px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
  }
}

/* カテゴリボタン */
#press_room_index .p-press_filter__categories button {
  border: 2px solid var(--color-yellow) !important;
  color: var(--color-yellow) !important;
  padding: 10px 34px !important;
  border-radius: 99px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#press_room_index .p-press_filter__categories li.current button {
  position: relative;
  background: var(--color-yellow) !important;
  color: var(--color-navy) !important;
  border-color: var(--color-yellow) !important;
  overflow: visible !important;
}
#press_room_index .p-press_filter__categories li.current button::after {
  content: "" !important;
  position: absolute !important;
  bottom: -6px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 0 !important;
  height: 0 !important;
  border-top: 6px solid var(--color-yellow) !important;
  border-right: 5px solid transparent !important;
  border-left: 5px solid transparent !important;
  border-bottom: 0 !important;
  display: block !important;
}

#press_room_index .p-press_filter__controls {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

#press_room_index .p-press_filter__controls:first-child {
  margin-bottom: 20px;
}

/* Form Resets */
#press_room_index .p-press_filter__selects {
  display: flex;
  gap: 32px;
  flex: 1;
  max-width: 558px;
}

#press_room_index .p-press_filter__selects select {
  flex: 1;
  background-color: transparent !important;
  border: 2px solid var(--color-yellow) !important;
  color: var(--color-yellow) !important;
  padding: 0 32px 0 24px !important;
  height: 45px !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  appearance: none !important;
  cursor: pointer;
  background: url(/assets/img/common/bullet_arrow_06_y.svg) no-repeat right 20px center;
  background-size: 18px auto;
}

#press_room_index .p-press_filter__selects select option {
  color: var(--color-dark) !important;
  background-color: var(--color-white) !important;
}

#press_room_index .p-press_filter__search {
  display: flex !important;
  flex: 1;
  max-width: 417px;
  min-width: 0;
  height: 45px;
  align-items: stretch !important;
}

#press_room_index .p-press_filter__search input {
  flex: 1;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: transparent !important;
  border: 2px solid var(--color-yellow) !important;
  border-right: none !important;
  color: var(--color-white) !important;
  padding: 0 16px !important;
  border-radius: 10px 0 0 10px !important;
  font-size: 14px !important;
  box-shadow: none !important;
  outline: none !important;
}

#press_room_index .p-press_filter__input::placeholder {
  color: transparent;
}

#press_room_index .p-press_filter__search button {
  display: block !important;
  background-color: var(--color-yellow) !important;
  width: 45px !important;
  height: 100% !important;
  border-radius: 0 10px 10px 0 !important;
  cursor: pointer;
  position: relative;
  border: none !important;
}
#press_room_index .p-press_filter__search button::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%230a101d"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"/></svg>') no-repeat center;
  background-size: contain;
}

/*===== Press List Section =====*/
#press_room_index .p-press_list_sec {
  background: #EABF4B;
  padding: 64px 0 0;
  position: relative;
  color: var(--color-navy);
}
@media (max-width: 768px) {
  #press_room_index .p-press_list_sec {
    padding: 32px 0 0;
  }
}

/*
#press_room_index .p-press_list {
  
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
  position: relative;
  z-index: 10;  
}
*/

/* Card Component */
#press_room_index .c-press_card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  height: auto;
}
#press_room_index .c-press_card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
#press_room_index .c-press_card__thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  position: relative;
  z-index: 1;
  overflow: visible;
}
#press_room_index .c-press_card__thumb img {
  position: absolute;
  top: 16px;
  left: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 16px);
  object-fit: cover;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
#press_room_index .c-press_card__category {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: 16px;
  transform: translateY(50%);
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 10px;
  z-index: 2;
  border-radius: 8px;
}
#press_room_index .c-press_card__body {
  position: relative;
  z-index: 0;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#press_room_index .c-press_card__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
#press_room_index .c-press_card__meta {
  position: relative;
  margin-top: auto;
}
#press_room_index .c-press_card__date {
  font-size: 14px;
  font-weight: 800;
  font-family: "Noto Sans", sans-serif;
  text-align: center;
  display: block;
  width: 100%;
}
#press_room_index .c-press_card__icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#press_room_index .c-press_card__icon::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%2313203b"><path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"/></svg>') no-repeat center;
  background-size: contain;
}

/* Pagination */
#press_room_index .c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 10;
}
#press_room_index .c-pagination button {
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-navy) !important;
  border-radius: 8px !important;
  color: var(--color-navy) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s all;
  cursor: pointer;
}
#press_room_index .c-pagination li.current button,
#press_room_index .c-pagination button:hover {
  background: var(--color-navy) !important;
  color: var(--color-yellow) !important;
}
#press_room_index .c-pagination li.prev button::before {
  content: "";
  width: 20px;
  height: 20px;
	background: url(/assets/img/common/bullet_arrow_05_n.svg) no-repeat 50% 50%;
	background-size: 8px auto;
}
#press_room_index .c-pagination li.next button::before {
  content: ""; width: 20px; height: 20px;
	background: url(/assets/img/common/bullet_arrow_01_n.svg) no-repeat 50% 50%;
	background-size: 8px auto;
}
#press_room_index .c-pagination li.dots {
  flex-shrink: 0;
  min-width: 1.25em;
  display: flex;
  align-items: center;
  justify-content: center;
}
#press_room_index .c-pagination li.dots span {
  font-weight: 700;
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
  padding: 0 2px;
  color: var(--color-navy);
}

#press_room_index .c-pagination li.is-hidden { display: none !important; }
#press_room_index .c-pagination li.is-disabled button {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
#press_room_index .c-pagination li.is-disabled button:hover {
  background: transparent !important;
  color: var(--color-navy) !important;
}
#press_room_index .c-pagination li.prev button:hover::before {
	background: url(/assets/img/common/bullet_arrow_05_y.svg) no-repeat 50% 50%;
	background-size: 8px auto;
}
#press_room_index .c-pagination li.next button:hover::before {
	background: url(/assets/img/common/bullet_arrow_01_y.svg) no-repeat 50% 50%;
	background-size: 8px auto;
}

/* Wave */
#press_room_index .c-wave_bottom {
  position: relative;
  bottom: -2px;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
#press_room_index .c-wave_bottom svg {
  width: 100%;
  height: 80px;
  fill: var(--color-dark);
}

/*===== Bottom CTA (取材申し込み) =====*/
#press_room_index .p-press_bottom {
  background: #EABF4B;
  padding: 50px 0;
  text-align: center;
}

#press_room_index .p-press_apply_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  padding: 20px 32px;
  border: 1px solid var(--color-yellow);
  border-radius: 99px;
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
}
#press_room_index .p-press_apply_btn::after {
  content: "";
  margin-left: 20px;
  width: 8px; height: 8px;
  border-top: 2px solid var(--color-yellow);
  border-right: 2px solid var(--color-yellow);
  transform: rotate(45deg);
  transition: border-color 0.3s;
}
#press_room_index .p-press_apply_btn:hover {
  background: var(--color-yellow);
  color: var(--color-dark);
}
#press_room_index .p-press_apply_btn:hover::after {
  border-color: var(--color-dark);
}

/* SP用下部パンくずリスト */
#press_room_index .c-bread_crumbs_sp {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
#press_room_index .c-bread_crumbs_sp div {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 99px;
  padding: 12px 32px;
  font-size: 14px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 12px;
}
#press_room_index .c-bread_crumbs_sp a { color: var(--color-white); text-decoration: none; transition: opacity 0.3s; }
#press_room_index .c-bread_crumbs_sp a:hover { opacity: 0.7; }
#press_room_index .c-bread_crumbs_sp em { font-style: normal; font-weight: 700; }

/* フッター干渉の非表示化 */
#press_room_index footer .c-contact_area, 
#press_room_index footer .c-banner_area {
    display: none !important;
}

/*===== Responsive =====*/
@media (max-width: 1024px) {
  /*#press_room_index .p-press_list { grid-template-columns: repeat(2, 1fr); }*/
  #press_room_index .p-press_filter__controls { flex-direction: column; gap: 16px; align-items: stretch; }
  /* 縦並び時 flex:1 は「高さ方向」に効くため、セレクト／検索が無駄に伸びないよう固定 */
  #press_room_index .p-press_filter__selects {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  #press_room_index .p-press_filter__search {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: stretch;
  }
}

@media (max-width: 768px) {
  #press_room_index .p-press_header { padding: 0 0 40px; }
  #press_room_index .c-heading_press { font-size: 28px; margin-top: 16px; margin-bottom: 24px; }
  /* flex+gap だと内容幅のまま折り返し、行末に余白が出る → グリッドで行を100%使う */
  #press_room_index .p-press_filter__categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
  }
  #press_room_index .p-press_filter__categories li {
    min-width: 0;
  }
  #press_room_index .p-press_filter__categories button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 20px !important;
    font-size: 16px !important;
  }
  /* 新着・製品・取り組みは1行・文字量に近い比率（2:2:4）で列幅。::after 区切り線は grid-column 全幅のまま */
  #press_room_index .p-press_filter__controls:first-child > .p-press_filter__categories:first-of-type {
    grid-template-columns: minmax(0, 2fr) minmax(0, 2fr) minmax(0, 3fr);
    column-gap: 7px;
    row-gap: 12px;
  }

  /* SPのフォームレイアウト */
    #press_room_index .p-press_filter__controls {
      gap: 24px;
    }
  
    #press_room_index .p-press_filter__selects {
      flex-direction: row;
      gap: 12px;
    }
  
    #press_room_index .p-press_filter__selects select {
      height: 44px !important;
      padding: 0 28px 0 12px !important;
      font-size: 14px !important;
      border-radius: 10px !important;
      background: url(/assets/img/common/bullet_arrow_06_y.svg) no-repeat right 8px center;
      background-size: 14px auto;
    }
  
  /* 検索: PCと同型（左インプット＋右は高さと同じ幅の正方形ボタン）。flex縮小で潰れないよう min-width */
  #press_room_index .p-press_filter__search {
    height: 44px !important;
    box-sizing: border-box;
  }
  #press_room_index .p-press_filter__search input.p-press_filter__input {
    flex: 1 1 0%;
    min-width: 0;
    width: auto;
    height: 100% !important;
    margin: 0;
    padding: 0 12px !important;
    font-size: 14px !important;
    line-height: 1.3;
    border-radius: 10px 0 0 10px !important;
    -webkit-appearance: none;
    appearance: none;
  }
  /* 見出し非表示のためプレースホルダーを表示（PCは透明のまま） */
  #press_room_index .p-press_filter__search input.p-press_filter__input::placeholder {
    color: rgba(248, 225, 51, 0.5);
    opacity: 1;
  }
  #press_room_index .p-press_filter__search button {
    display: block !important;
    flex: 0 0 44px;
    width: 44px !important;
    min-width: 44px !important;
    height: 100% !important;
    box-sizing: border-box;
    padding: 0 !important;
    border-radius: 0 10px 10px 0 !important;
    background-color: var(--color-yellow) !important;
  }
  #press_room_index .p-press_filter__search button::before {
    width: 22px;
    height: 22px;
  }
  
  #press_room_index .u-sp_hidden { display: none !important; }

  #press_room_index .c-press_card__thumb img{
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 6px);
  }
  #press_room_index .c-press_card__category{
    margin-left: 8px;
    padding: 4px 10px;
  }
  #press_room_index .c-press_card__body{
    padding: 16px 8px;
  }
  #press_room_index .c-press_card__title{
    margin-bottom: 12px;
  }
  #press_room_index .c-press_card__date{
    text-align: left;
    padding-left: 8px;
  }
  #press_room_index .c-press_card__icon{
    width: 24px;
    height: 24px;
  }
  #press_room_index .p-press_list_sec{
    padding: 32px 0 0;
  }
  #press_room_index .c-pagination button{
    width: 40px;
    height: 40px;
    font-size: 16px !important;
  }
  #press_room_index .c-pagination{
    gap: 10px;
    margin: 24px auto 0;
    max-width: fit-content;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    justify-content: flex-start;
    padding: 0 4px;
    box-sizing: border-box;
  }
  #press_room_index .c-pagination > li {
    flex-shrink: 0;
  }
  #press_room_index .p-press_bottom{
    padding: 30px 0;
  }
  #press_room_index main{
    padding-top: 32px;
  }
  #press_room_index .p-press_filter__title{
    margin: 16px 0px 16px 0px;
  }
  #press_room_index .p-press_filter__categories button {
    padding: 11px 32px !important;
    width: 100%;
    box-sizing: border-box;
  }

  /* SP: ニュースリリース見出し右の余白に横線（1px / #fff 20%） */
  #press_room_index .p-press_filter__controls:first-child > .p-press_filter__title {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  #press_room_index .p-press_filter__controls:first-child > .p-press_filter__title::after {
    content: "";
    flex: 1 1 auto;
    min-width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }

  /* SP: カテゴリ間の横線は ul::after + margin で上下24px（border だと flex 内で線が要素に密着しやすい） */
  #press_room_index .p-press_filter__controls:first-child {
    gap: 0;
    margin-bottom: 0;
  }
  #press_room_index .p-press_filter__controls:first-child > .p-press_filter__categories:first-of-type,
  #press_room_index .p-press_filter__controls:first-child > .p-press_filter__categories:nth-of-type(2) {
    margin-bottom: 0;
  }
  #press_room_index .p-press_filter__controls:first-child > .p-press_filter__categories:first-of-type::after,
  #press_room_index .p-press_filter__controls:first-child > .p-press_filter__categories:nth-of-type(2)::after {
    content: "";
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    height: 1px;
    margin: 12px 0 24px;
    background: rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
  }
  #press_room_index .c-bread_crumbs_sp div{
    width: 90%;
  }
}
@media (min-width: 769px) {
  #press_room_index .u-pc_hidden { display: none !important; }
}


/*
===== Customization ===========================*/
#press_room_index {
    background-color: #112240;
}

#press_room_index main {
  padding-top: 0 !important;
}

#press_room_index .p-press_filter__controls:first-child {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  #press_room_index .p-press_filter__controls:first-child {
    margin-bottom: 8px;
  }

	#press_room_index .p-press_filter__select__categories:after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
    bottom: -24px;
		width: 100%;
		height: 1px;
		background-color: rgba(255,255,255,0.2);
	}
}

/* .tab
--------------------*/
#press_room_index .p-press_filter .tab {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin: 0px 0 0px;
	z-index: 4;
}

#press_room_index .p-press_filter .tab dt {
	width: fit-content;
	color: #F8E133;
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
}

#press_room_index .p-press_filter .tab dd {
	flex: 1;
}

#press_room_index .p-press_filter .tab ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

#press_room_index .p-press_filter .tab li button {
	position: relative;
	display: flex;
	align-items: center;
	height: 44px;
	padding: 0 32px 2px !important;
	background: #112240;
	border: 2px solid #F8E133;
	border-radius: 44px;
	color: #F8E133;
	font-size: 16px;
	font-weight: 700;
	transition: .3s all;
	cursor: pointer;
}

#press_room_index .p-press_filter .tab li.current button {
	background: #F8E133;
	color: #112240;
}

#press_room_index .p-press_filter .tab li.current button:after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	bottom: -9px;
	transform: translateX(-50%);
	width: 16px;
	height: 16px;
	background: url(/assets/top/img/arrow_current.svg) no-repeat 50% 50%;
	background-size: 16px auto;
}

#press_room_index .p-press_filter .tab li:nth-of-type(4) button,
#press_room_index .p-press_filter .tab li:nth-of-type(5) button {
	margin-left: 20px;
}

#press_room_index .p-press_filter .tab li:nth-of-type(4) button:before ,
#press_room_index .p-press_filter .tab li:nth-of-type(5) button:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -20px;
	width: 1px;
	height: 100%;
	background-color: rgba(255,255,255,0.2);
}

@media (min-width: 769px) {
	#press_room_index .p-press_filter .tab li button:hover {
		background: #F8E133;
		color: #112240;
	}
}

@media (max-width: 1000px) {
	#press_room_index .p-press_filter .tab {
		display: block;
		width: 100%;
	}

	#press_room_index .p-press_filter .tab dt {
		position: relative;
		width: 100%;
		margin: 0 0 16px;
	}

	#press_room_index .p-press_filter .tab dt:after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 8.2em;
		width: calc(100% - 8.2em);
		height: 1px;
		background-color: rgba(255,255,255,0.2);
	}

	#press_room_index .p-press_filter .tab li button {
		padding: 0 24px 2px;
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	#press_room_index .p-press_filter .tab {
		margin: 32px auto 40px;
	}

	#press_room_index .p-press_filter .tab dt {
		font-size: 14px;
	}

	#press_room_index .p-press_filter .tab dt:after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 8.2em;
		width: calc(100% - 8.2em);
		height: 1px;
		background-color: rgba(255,255,255,0.2);
	}

	#press_room_index .p-press_filter .tab dt:before {
		content: "";
		display: block;
		position: absolute;
		top: 106px;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: rgba(255,255,255,0.2);
	}

	#press_room_index .p-press_filter .tab dd {
		position: relative;
		width: 328px;
		margin: 0 auto;
	}

	#press_room_index .p-press_filter .tab ul {
		flex-wrap: wrap;
		gap: 48px 8px;
	}

	#press_room_index .p-press_filter .tab li button {
		width: fit-content;
		padding: 0 28px 2px !important;
		font-size: 16px;
		transition: none;
	}

	#press_room_index .p-press_filter .tab li:nth-of-type(4) button,
	#press_room_index .p-press_filter .tab li:nth-of-type(5) button {
		flex: 1;
		justify-content: center;
		width: auto;
		margin-left: 0;
		padding: 0 0 2px;
	}

	#press_room_index .p-press_filter .tab li:nth-of-type(4) button {
		margin-right: 4px;
	}

	#press_room_index .p-press_filter .tab li:nth-of-type(5) button {
		margin-left: 4px;
	}


	#press_room_index .p-press_filter .tab li:nth-of-type(4) button:before,
	#press_room_index .p-press_filter .tab li:nth-of-type(5) button:before {
		display: none;
	}
}

/* card
--------------------*/
#press_room_index .p-press_list {
	display: flex;
  flex-wrap: wrap;
	gap: 32px 32px;
}

#press_room_index .p-press_list li {
		width: calc((100% - 96px) / 4);
}

#press_room_index .p-press_list li a {
	display: block;
	position: relative;
	padding: 16px;
	background: #ffffff;
	border-radius: 10px;
}

#press_room_index .p-press_list li figure img {
	border-radius: 4px;
}

#press_room_index .p-press_list li .cat {
	position: relative;
	display: flex;
	align-items: center;
	width: fit-content;
	height: 33px;
	margin: -16.5px 0 0;
	padding: 0 10px;
	background: #112240;
	border-radius: 10px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	z-index: 2;
}

#press_room_index .p-press_list li p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  min-height: 44.8px;
	margin: 6px 0 0;
	font-size: 14px;
}

#press_room_index .p-press_list li .date {
	padding: 20px 0 6px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

#press_room_index .p-press_list li a:after {
	content: "";
	display: block;
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 34px;
	height: 34px;
	background: url(/assets/img/common/bullet_arrow_02_y.svg) no-repeat 50% 50%;
	background-size: 34px auto;
	transition: .3s all;
}

#press_room_index .p-press_list li a:before {
	content: "";
	display: block;
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 34px;
	height: 34px;
	background: url(/assets/img/common/bullet_arrow_02_n.svg) no-repeat 50% 50%;
	background-size: 34px auto;
	transition: .3s all;
	opacity: 0;
}

#press_room_index .p-press_list .p-press_list__empty {
  width: 100%;
}

@media (min-width: 769px) {
	#press_room_index .p-press_list li a:hover {
		background: #F8E133;
	}

	#press_room_index .p-press_list li a:hover:after {
		opacity: 0;
	}

	#press_room_index .p-press_list li a:hover:before {
		opacity: 1;
	}
}

@media (max-width: 1000px) {
	#press_room_index .p-press_list {
		gap: 24px 20px;
	}

	#press_room_index .p-press_list li {
		width: calc((100% - 20px) / 2);
	}
}

@media (max-width: 768px) {
	#press_room_index .p-press_list li a {
		padding: 8px;
	}

	#press_room_index .p-press_list li .cat {
		height: 24px;
		margin: -12px 0 0;
		padding: 0 10px 1px;
		font-size: 12px;
	}

	#press_room_index .p-press_list li p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
    min-height: 89.6px;
		margin: 3px 0 0;
	}

	#press_room_index .p-press_list li .date {
		padding: 6px 0 6px 8px;
		font-size: 14px;
		text-align: left;
	}

	#press_room_index .p-press_list li a:after {
		right: 8px;
		bottom: 12px;
		width: 24px;
		height: 24px;
		background: url(/assets/img/common/bullet_arrow_02_y.svg) no-repeat 50% 50%;
		background-size: 24px auto;
		transition: none;
	}
}

/* footer
--------------------*/
footer .p-contact dl,
footer .nav_torikumi {
    display: none;
}

footer .footer_inner .p-contact {
  /* padding: 8px 0 0; */
}

@media (max-width: 768px) {
}