/*********** kyoutu ***********/

body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #1a1a1a;
    font-family: sans-serif;
}

#wrapper {
    width: 100%;
}

/*********** header ***********/

#headerlogo {
    height: 6.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#headerlogo h1 {
    margin-left: 1.875rem;
}

#headerlogo h1 img {
    height: 6.25rem;
    width: auto;
}


/* ショップボタン */

.shop {
    margin-right: 1.25rem;
}

.shop_btn {
    display: inline-flex;
    flex-direction: column;  /* 縦に並べる */
    align-items: center;
    justify-content: center;
    gap:.1rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    background: #40a9ff;   /* #3399ff #00aaff S#40a9ff */
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background .3s, transform .1s;
    text-align: center;
    min-width: 150px;      /* 横幅を確保（任意調整） */
}

.shop_btn:hover {
    background: #007acc; 
    transform: translateY(1px);
}

.shop_btn:active{
    transform: translateY(1px);
}

.shop_btn .row1{
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    line-height: 1.2;
    white-space: nowrap;       /* 1行目は折り返さない */
}

.shop_btn .row2{
    line-height: 1.2;
    white-space: nowrap;
}

.shop_btn .cart{
    width: 1.05rem;
    height: 1.05rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    display: block; 
}

.snsicon ul {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 1.875rem;
    padding: 0;
    list-style: none;
}

.snsicon ul li img {
    width: 1.875rem;
    height: auto;
    display: block;
}

.header_nav ul {
    display: flex;
    flex-wrap:nowrap;
    justify-content: stretch;
    padding: 0;
    margin: 0;
    background-color: #111;
    align-items: stretch;
    background-color: #cc0000;
    overflow-x: hidden;
}



.header_nav li {
    display: flex;
    justify-content: center;
    text-align: center;
    height: 4.375rem; /* 80px */
    list-style: none;
    border-right: solid 2px #333;
    flex:1 1 0;              /* 等分。余白は各項目の中で調整 */
}

.header_nav li:last-child {
  border-right: none;
}

.header_nav li > a {
    flex:1;                  /* liいっぱいをクリック面に */
    padding: 0 0.625rem;        /* 横余白は控えめに */
    text-decoration:none;
    color:#fff;
    font-weight: bold;
}

.header_nav h3 {
    font-size: 1.125rem; /* 18px */
    margin: 0;
    height: 2.5rem;
    line-height: 2.5rem; /* 行の高さを枠と同じにして上下中央揃え */
    white-space: nowrap; /* 強制的に1行に収める */
    overflow: hidden; /* はみ出した部分は非表示 */
    text-overflow: ellipsis; /* はみ出したら…で省略（必要なら） */
    text-align: center;
}

.header_nav p {
    font-size: 0.75rem; /* 12px */
    color: #eee;
    white-space: nowrap;
}

.header_nav .p1 {
    margin-top: 0.1875rem;
}

header nav ul li:hover {
  background: #990000;  
  color: #fff;
}

/******* hamburgerMenu *******/

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  color: #cfcfcf;
  transition: right 0.3s ease; /* スライドインのアニメーション */
  padding: 20px 30px 20px 20px;
  box-sizing: border-box;
  z-index: 30;
  background-color: rgba(204, 0, 0, 0.9);
  transition: none;
}

.menu.open {
  right: 0;
}

.hamburger {
  position: fixed;
  right: 30px;
  width: 30px;
  cursor: pointer;
  z-index: 20;
  opacity: 0; 
  display: none; 
  transition: opacity 0.5s ease;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #cfcfcf;
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 3px;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}

.menu li {
  padding: 10px 0;
  border-bottom: 1px solid #cfcfcf;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 0 10px;
  z-index: 1;
}

.menu li a h3 {
  font-weight: bold;
  font-size: 18px;
}

.menu li a p {
  font-size: 14px;
}






/*********** slider ***********/

#top-swiper {
  width: 100%;
  margin: 0 auto;
  height: 80vh;              /* 100vhは重いので少し控えめ */
  min-height: 360px;
  overflow: hidden;
}


/* スライド領域 */
#top-swiper .swiper-wrapper,
#top-swiper .swiper-slide{
  height: 100%;
}

/* 画像調整 */
#top-swiper .swiper-slide img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000;
}

#top-swiper .cover-slide img {
  object-fit: cover;
  object-position: center;
}

/* ページネーション＆矢印が画像に埋もれないように */
#top-swiper .swiper-button-prev,
#top-swiper .swiper-button-next{
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,.6);
  z-index: 5;
}
#top-swiper .swiper-pagination-bullet{
  background: rgba(255,255,255,.8);
}
#top-swiper .swiper-pagination-bullet-active{
  background: #cc0000;
}




/*********** main contents ***********/

.container {
  max-width: 1300px;
  margin: 0 auto; /* 中央寄せ */
  padding: 1.25rem 0.625rem;
  display: grid;
  grid-template-columns: minmax(0,1fr) 250px;
  gap: 2rem;
}

#WhatsNew  h1 {
    color: #cc0000;
    font-size: 4.6875rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px #330000;
    text-align: center;
    margin-top: 1.25rem;
}

#WhatsNew  h2 {
    font-size: 1.875rem;
    color: #f0f0f0;
    text-align: center;
    margin: 0.625rem 0 1.25rem;
}

#WhatsNew {
    margin: 0 auto;
}


.pagetop {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #666;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s;
  z-index: 999;
  text-decoration: none;
}

.pagetop.show {
  opacity: 1;
  visibility: visible;
}

.pagetop i {
  color: #fff;
  font-size: 1.2em;
  transition: color 0.2s;
}

.pagetop:hover {
  background: #c00;
  border-color: #c00;
}

.pagetop.show {
  opacity: 1;
  visibility: visible;
}




/****** news ******/

#WhatsNew section {
    background-color: rgba(0,0,0,0.3);
    padding: 0.9375rem;
    display: flex;
}

.news_image {
	margin: 0.625rem 0 ;
}

.news_image img {
    width: 150px;
    height: auto;
    display: block;
}

.news_exp {
	margin: 0.3125rem 0 0.3125rem 1.25rem;
	color: #f0f0f0;
}

#WhatsNew h3 a {
    text-decoration: none;
    color: #f0f0f0;
    font-size: 1.125rem;
    line-height: 1.5;
    transition: color 0.3s;
}

#WhatsNew h3 a:hover {
    color: #c0c0c0;
    text-decoration: underline;
}

#WhatsNew h3 span {
    font-size: 0.875rem;
}

.exp1 {
    font-size: 0.875rem;
    display: block;
    margin-top: 0.625rem;
}

.shosai {
  margin-top: 1.875rem; 
}

.shosai a {
  display: inline-block;
  padding: .4rem .8rem;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  background: #606d75; 
  border-radius: 4px;
  transition: background-color .2s, filter .2s, transform .02s;
}

.shosai a:hover {
  background: #333f47; 
}

.shosai a:active {
  background: #26343d; 
  transform: translateY(1px);
}

.whatsNew_line {
  border-bottom: 1px solid #666; 
  width: 95%;                    
  margin: 0.75rem auto; 
  display: block; 
}

.NewsMore {
    text-align: right;
    margin-right: 0.625rem;
}

.NewsMore a{
    text-decoration: none;
    color: #f0f0f0;
    font-size: 13px;
}
.NewsMore a:hover {
    color: #c0c0c0;
    text-decoration: underline;
}


/****** side menu ******/
aside {
    text-align: right;
    margin-top: 6.25rem;
}

aside ul li a img {
    width: 100%;
    height: auto;
    margin-bottom: 0.625rem;
}


/*********** footer ***********/

footer {
  background: #111;
  color: #ccc;
  text-align: center;
  margin-top: 5rem;
  padding: 1.25rem;
  font-size: 12px;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer_brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
}

.footer_logo {
    width: 50px;
    height: auto;
}

.footer_nav ul {
  list-style: none;
  padding: 0;
  margin: 0.625rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer_nav li {
    border-right: solid 1px #ccc;
    padding: 0 0.9375rem;
}

.footer_nav li:last-child {
    border-right: none;
}

.footer_info p {
  margin: 0.5rem 0;
}

#copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 0.75rem;
  color: #777;
}


/*********** news list ***********/

.news-accordion .year-block  {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.year-toggle {
  width: 100%;
  text-align: left;
  padding: .75rem 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  background: #111;
  color: #f0f0f0;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.year-toggle[aria-expanded="true"] {
  background: #333; 
  color: #f0f0f0; 
}

.year-toggle .chevron {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.year-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.year-content {

  padding: 1rem;
}

.archive a {
    text-decoration: none;
    color: #f0f0f0;
}

/*********** news kobetu ***********/

#news_syousai {
  color: #f0f0f0;
}

#news_syousai h1 {
  font-size: 30px;
  background-color: #cc0000;
  width: fit-content;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 1.25rem;
}

#news_syousai h2 {
  font-size: 30px;
  margin: 1.875rem 0 0.625rem;
}

.column_date p{
  margin-bottom: 1.25rem;
}


.news_image .img01 {  
  width: 60%;       
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 1.25rem 0;
}

.news_image .img02 {  
  width: 80%;       
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 1.25rem 0;
}

.news_text h3 {
  font-size: 25px;
  border-left: 6px solid #cc0000; /* ← 赤い縦棒 */
  padding:0.3125rem 0 1.25rem 0.5rem;   
  margin: 0.625rem 0 2.5rem;  
}

.news_text p {
  font-size: 18px;
  line-height: 2;
}

.news_notice {
  background: #111;              /* 黒背景 */
  border: 1px solid #e60012;     /* 赤い枠線 */
  border-radius: 3px;
  padding: 0 1.25rem 1.25rem;
  margin: 1.875rem 0 0;
}

.news_notice h4 {
  font-size: 20px;
  font-weight: bold;
  margin: 1.25rem 0;
}

.news_notice .point  {
  font-size: 22px;
}

.news_notice .list {
  margin: 0.625rem 0 1.875rem;
}
.news_notice .list01 {
  margin-top: 1.25rem;
}

.news_notice ul li {
  font-size: 18px;
  margin-bottom: 0.625rem;
}

.news_notice .child {
  display: flex;
  align-items: flex-start; 
}


.news_notice a {
  text-decoration: underline;
  color: #cfcfcf;
  font-size: 20px;
  line-height: 1.2;
  word-break: break-all;
}

.news_card h4 {
  font-size: 25px;
  font-weight: bold;
  margin: 3.125rem 0 1.25rem;
}


.news_card section {
  margin-top: 1.875rem;
}

.news_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* 上揃え */
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid #444;
  gap: 1.5rem; /* 横の間も少し余裕を持たせる */
}

/* 左側：シェアボタンエリア */
.share_buttons p {
  font-weight: bold;
  margin-bottom: 0.8em;
  font-size: 1rem;
}

.share_buttons ul {
  display: flex;
  gap: 1.5em; 
  list-style: none;
  padding: 0;
  margin: 0;
}

.share_buttons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; /* アイコンを囲む円の大きさ */
  height: 46px;
  color: #fff;
  font-size: 1.5em; 
  transition: all 0.2s ease;
  text-decoration: none;
}

.share_buttons li a:hover {
  color: #fff;
  background: #333; /* hover時に少し浮かせる */
}

/* ブランドカラーをhoverで表示 */
.share_buttons li a:hover .fa-x-twitter { color: #1DA1F2; }
.share_buttons li a:hover .fa-line { color: #00B900; }
.share_buttons li a:hover .fa-facebook { color: #1877F2; }

/* 右側：一覧リンク */
.back_to_list a {
  color: #cfcfcf;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 1px solid transparent;
}

.back_to_list a:hover {
  color: #cc0000;
  border-bottom: 1px solid #cc0000;
}





/*********** card ticket ***********/
#card_ticket {
    width: 95%;
    margin: 0 auto;
}

#card_ticket .card_item {
    width: 100%;
    background-color: rgba(0,0,0,0.3);
    padding: 0.9375rem;
    display: flex;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

#card_ticket  h1 {
    color: #cc0000;
    font-size: 4.6875rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px #330000;
    text-align: center;
    margin-top: 1.25rem;
}

#card_ticket  h2 {
    font-size: 1.875rem;
    color: #f0f0f0;
    text-align: center;
    margin: 0.625rem 0 1.875rem;
}


.card_image img {
    width: 180px;
    height: auto;
    display: block;
}

.card_exp {
	margin: 0.3125rem 0 1.25rem;
	color: #f0f0f0;
}

.card_exp h3 a {
    font-size: 24px;
    text-decoration: none;
    color: #f0f0f0;
}

.card_exp h3 a:hover:hover {
    color: #c0c0c0;
}

.card_title .line1,
.card_title .line2 {
  display: block;   /* 今は強制的に改行 */
}

.card_title .line2 {
    margin-top: 0.625rem;
}

.card_exp ul {
    margin-top: 1.875rem;
}

.card_exp ul li {
    margin-bottom: 0.625rem;
    font-size: 18px;
}

.card_exp ul li:last-child {
    margin-top: 1.875rem;
}

.ticket_link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}

.ticket_link::after {
  content: "▶"; /* Unicode矢印 */
  font-size: 0.9em;
  transition: transform 0.2s;
}

.ticket_link:hover::after {
  transform: translateX(4px); /* ホバー時に右へ動く */
}




/*********** card ticket　syousai ***********/

#card_syousai h1 {
    color: #f0f0f0;
    font-size: 30px;
    background-color: #cc0000;
    width: fit-content;
    line-height: 1.5;
    font-weight: bold;
    margin-top: 1.25rem;
    margin-left: 0.9375rem;
}


#card_syousai .ivent_item {
    width: 100%;
    padding: 0.9375rem;
    margin-top: 1.25rem;
}

.box1 {
    display: flex;
    gap: 1.25rem;
}

.ivent_image img {
    width: 300px;
}

.ivent_exp {
    font-size: 22px;
    font-weight: bold;
    color: #f0f0f0;
}

.ivent_exp .label  {
    color: #cc0000;
}

.ivent_exp dt {
    margin-top: 1.875rem;
}

.ivent_exp dd {
    margin-top: 0.625rem;
}

.ivent_exp dd ul {
    list-style-type: disc;
    list-style-position: inside;
}

.ivent_exp dd li {
    margin-top: 0.625rem;
}
 
.ivent_exp dd li a {
    text-decoration: none;
    color: #f0f0f0;
    word-break: break-all;
}

.ivent_exp dd li a:hover {
    color: #c0c0c0;
    text-decoration: underline;
}



/***** card　syousai *****/

/* ベース色 */
:root{
  --bg-deep: #000;
  --bg-panel: #131313;
  --line: #383838;
  --olive: #CCCC99;    /* 上帯の文字色 */
  --gold:  #EFD674;    /* サブタイトル */
  --ink:   #f0f0f0;
}

.match_card {
    margin-top: 1.25rem;
}

.match{
  background: linear-gradient(180deg, #1b1b1b, var(--bg-panel));
  border: 1px solid #2a2a2a;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

/* 上帯（セミファイナル／タッグマッチ／15分1本勝負）＋下帯（サブタイトル） */
.match_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 1.25rem;
  padding: 6px 8px 0;
  background: #000;
}
.match_head .tier, .match_head .rule, .match_head .limit{
  color: var(--olive);
  font-weight: 700;
  font-size: 14px;
}
.match_head .subtitle{
  flex: 0 0 100%;
  margin-top: 4px;
  padding: 6px 8px;
  background: #111;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-shadow:
    3px 3px 10px rgba(0,0,0,1),
   -3px 3px 10px rgba(0,0,0,1),
    3px -3px 10px rgba(0,0,0,1),
   -3px -3px 10px rgba(0,0,0,1);
  border-top: 1px solid var(--line);
}

/* 本体： 左画像列 | 中央帯 | 右画像列 */
.match_body{
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px; /* ★ 中央を minmax(0,1fr) に */
  align-items: center;
  gap: 12px 16px;
  padding: 12px;
  background: var(--bg-deep);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

/* 画像列（左右） */
.img_col{
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: center;
}
.img_col img{
  display:block;
  width:100%;
  height:auto;
  max-width:60px;          /* 好みで 60〜96px に調整 */
  object-fit: cover;
  box-shadow: 0 0 8px rgba(255,255,255,.18);
}

/* 中央帯 */
.centerbelt{
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* 左名簿 | 結果 | 右名簿 */
  align-items: center;
  gap: 24px;
  justify-items: center;
  text-align: center;
  min-width: 0;
}

/* 名前の列 */
.names{
  display: grid;
  gap: 10px;
}
.names-left  { justify-items: end;  text-align: right; }
.names-right { justify-items: start; text-align: left;  }

/* 名前の見た目（白＋淡いグロー）／勝敗アイコン */
.name{
  font-weight: 800;
  font-size: clamp(10px, 1.8vw, 22px);
  color: #f0f0f0;
  text-shadow: 0 0 12px rgba(255,255,255,.25);

}
/* デフォルトはマーク無し */
.names .name::before,
.names .name::after { content: ""; }

/* ── 左列：名前の“前”に表示 ── */
.names-left .name.win::before  { content: "○ "; color:#f0f0f0; font-weight:700; }
.names-left .name.lose::before { content: "× "; color:#f0f0f0; font-weight:700; }
.names-left .name.draw::before { content: "△ "; color:#fff; font-weight:700; }

/* ── 右列：名前の“後”に表示 ── */
.names-right .name.win::after  { content: " ○"; color:#f0f0f0; font-weight:700; }
.names-right .name.lose::after { content: " ×"; color:#f0f0f0; font-weight:700; }
.names-right .name.draw::after { content: " △"; color:#f0f0f0; font-weight:700; }

/* ちょい調整（任意） */
.names .name{
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(255,255,255,.25);
  font-weight: 800;
}

/* 結果（時間・技名） */
.result{
  display: grid;
  gap: 6px;
  justify-items: center;
}
.result .time{
  font-size: clamp(18px, 2.2vw, 18px);
}
.result .method{
  color: #cfcfcf;
  font-size: clamp(14px, 1.6vw, 18px);
}

/* 試合間のライン */
.match + .match{ position: relative; }
.match + .match::before{
  content:"";
  display:block;
  height:1px;
  background: linear-gradient(90deg, transparent, #444, transparent);
  margin: .25rem 0;
}



/*********** result ***********/

.box2,.resultimg {
    margin-top: 1.875rem;
}


/* Grid（すでにあるならスキップ） */
.resultimg{display:grid;gap:24px;grid-template-columns:repeat(4,minmax(140px,1fr))}
@media (max-width:1080px){.resultimg{grid-template-columns:repeat(3,1fr)}}
@media (max-width:680px){.resultimg{grid-template-columns:repeat(2,1fr);gap:16px}}
.resulet_card{aspect-ratio:1/1;display:block;overflow:hidden;background:#111;border:1px solid #222;box-shadow:0 2px 10px rgba(0,0,0,.35)}
.resulet_card img{width:100%;height:100%;object-fit:cover;transform:scale(1);transition:transform .25s ease}
.resulet_card:hover img{transform:scale(1.06)}

/* Lightbox */
.lb{padding:0;border:none;background:transparent}
.lb::backdrop{background:rgba(0,0,0,.88)}
.lb img{max-width:min(92vw,1400px);max-height:86vh;display:block;margin:auto;background:#000;box-shadow:0 10px 40px rgba(0,0,0,.6)}
.lb-cap{color:#ddd;text-align:center;margin:10px 0 0}
.lb-close,.lb-prev,.lb-next{position:fixed;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.5);color:#fff;border:0;width:44px;height:44px;cursor:pointer;font-size:20px}
.lb-close{top:24px;right:24px;transform:none;border-radius:50%}
.lb-prev{left:24px;border-radius:50%}
.lb-next{right:24px;border-radius:50%}
.lb-close:hover,.lb-prev:hover,.lb-next:hover{background:rgba(0,0,0,.7)}






/*********** special contents ***********/

#column_syousai {
    color: #f0f0f0;
}

#column_syousai h1 {
    font-size: 30px;
    background-color: #cc0000;
    width: fit-content;
    line-height: 1.5;
    font-weight: bold;
    margin-top: 1.25rem;
}

#column_syousai h2 {
    font-size: 30px;
    margin: 1.875rem 0 3.125rem;
}

.column_date p{
   margin-bottom: 1.25rem;
}

.column_image {
    width: 100%;
    background: #fff;         /* 帯の色 */
    text-align: center;       /* ロゴを中央寄せ */
    padding: 1.25rem 0;          /* 上下に余白 */
    margin-bottom: 1.875rem;
}

.column_image img {
    max-width: 400px;   /* ロゴ画像の最大幅 */
    width: 100%;        /* 画面幅に応じて縮小 */
    height: auto;
    display: block;
    margin: 0 auto;
}


.column_text h3 {
    font-size: 20px;
    border-left: 6px solid #cc0000; /* ← 赤い縦棒 */
    padding:0.3125rem 0 1.25rem 0.5rem;   
    margin: 0.625rem 0 1.25rem;  
}

/** special contents kobetsu **/

.column_text p {
  font-size: 18px;
  line-height: 1.8;
}

.column_text figure {
  margin-top: 3.125rem;
}

.column_text figure img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.column_text figure figcaption {
  margin-top: 0.625rem;
}

.column_saku {
  margin-top: 2.5rem;
}

.column_saku .chui {
  margin-top: 1.25rem;
  font-size: 16px;
}





/*********** wrestler ***********/

#wrestlers h1 {
  color: #cc0000;
  font-size: 4.6875rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px #330000;
  text-align: center;
  margin-top: 1.25rem;
}

#wrestlers  h2 {
  font-size: 1.875rem;
  color: #f0f0f0;
  text-align: center;
  margin: 0.625rem 0 3.125rem;
}

.wrestler_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.25rem;
}

.wrestler_list a {
  text-decoration: none;
  color: #f0f0f0;
}

.wrestler_image img {
  width: 240px;
  border: solid 1px #fff;
}

.wrestler_item figcaption h3 {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0.25rem 0;
  text-align: center;
  letter-spacing: 0.5rem;
}

.wrestler_item figcaption p {
  letter-spacing: 0.06em;
  opacity: 0.9;
  text-align: center;
  font-weight: bold;
}


.prof_item {
  width: 100%;
  padding: 0.9375rem;
  margin-top: 1.25rem;
}

.prof_item .box1 {
  gap: 2.5rem;
} 

.prof_image img {
  width: 300px;
  margin-left: 1.25rem;
  border: solid 1px #fff;
}

.thumbs{
  display: flex;
  gap: 0.625rem;
  margin-top: 0.625rem;
  padding: 0;
  list-style: none;
}

.thumb{
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.thumb img{
  width: 110px;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.prof_exp {
  font-size: 22px;
  font-weight: bold;
  color: #f0f0f0;
}

.prof_exp .label  {
  color: #cc0000;
}

/*********** wrestler kobetsu ***********/
.prof_header .catch {
  font-size: 40px;
} 

.prof_header .name_ja {
  font-size: 70px;
  letter-spacing: 2;
}

.prof_header .name_en {
  font-size: 28px;
  margin-bottom: 1.875rem;
}

.prof_data {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.prof_data .row {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr; /* dt・ddのペアを2組 */
  align-items: baseline;
}

.prof_data .sp {
  margin-left: -4.375rem;
}

.prof_data .sp1 {
  margin-left: 1.25rem;
}

.prof_data .row1 {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
}

.prof_exp .snsicon {
  display: flex;
  justify-content: space-between;
  margin-top: 0.625rem;
}

.prof_exp .snsicon a {
  text-align: center;
  text-decoration: none;
}

.prof_exp .snsicon img {
  width: 3.125rem;
}

.prof_exp .snsicon figcaption {
  color: #cfcfcf;
  font-size: 12px;
  margin-top: 0.3125rem;
}

.prof_text {
  margin-top: 1.25rem;
}

