@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
:root {
  --point-color01: #000000;
}
.m_t3em {
  display: block;
  margin-top: 3em;
}
/*--------------------------------------------------------------------------------*/
.gc-base {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gc-base p {
  font-size: 1em;
  line-height: 1.4em;
}
.gc-base h2 {
  font-weight: bold;
  font-size: 1.4em;
   font-family: 'Orbitron', sans-serif;
}
.gc-base h3 {
  font-weight: bold;
  font-size: 1.4em;
}
/*--------------------------------------------------------------------------------*/
.pageHeader {
  margin: 0;
  padding: 0;
}
.leadTitle {
  margin: 1em 0 .5em 0;
  padding: 1em 0 1em 1em;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.2em;
  letter-spacing: 0.02em;
  background: #F5F5F5;
  border-left: solid 20px var(--point-color01);
  border-bottom: solid 3px #d7d7d7;
}
.pageHeader div.date {
  font-size: 0.9em;
  text-align: right;
}
/*--------------------------------------------------------------------------------リード*/
.lead {
  margin: 0 auto 4em;
  padding: 0;
}
.lead p {
  padding: 0 1em;
  font-weight: bold;
  font-size: 1.1em;
}
/* --------------------------まとめ------------------------- */ :root {
  --matome-h2-bg-color: #0F7E6E;
}
.matome {
  margin: 6em auto 0;
  padding-bottom: 1em;
  text-align: left;
}
.matome p {
  font-size: 1.05em;
  font-weight: normal;
  margin: 2em 0 1em;
}
.matome h2 {
  position: relative;
  font-size: 1.8em;
  padding: 0.3em 0.5em;
  margin-bottom: 1.1em;
  background: var(--matome-h2-bg-color);
  color: #FFFFFF;
}
.matome h2:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid var(--matome-h2-bg-color);
  width: 0;
  height: 0;
}
/*--------------------------------------------------------------------------------*/
/*ラストbanner*/
.last_btn-wrapper {
  text-align: center;
  margin-top: 2em;
}
.last_btn-wrapper img {
  transition: filter 0.5s ease-in-out, transform 0.3s ease-in-out;
}
.last_btn-wrapper img:hover {
  filter: brightness(1.5) contrast(1.05);
  transform: scale(1.03); /* 少し拡大してふわっと */
}
.btn-list {
  margin: 2em;
}
.outline_2_px_white {
  border: 5px solid #FFFFFF;
  box-sizing: border-box;
}
/*--------------------------------------------------------------------------------*/
#sec01 {
	padding: 0 0 3em;
	background-image: url(../img/BG01.jpg); /* 繰り返しなし */
	background-size: cover; /* コンテナ幅いっぱいに拡大縮小 */
	background-position: center center; /* 中央寄せ */
}
#sec02 {
  padding: 2em 0;
}
/* h2 タイトルのスタイル */
#sec02 h2.maintit {
  position: relative;
  padding-bottom: 8px;
  font-size: 2em;
}
#sec02 h2.maintit::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: repeating-linear-gradient(-45deg, #6677FF 0px, #7100FF 2px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background-size: 8px 8px;
}
#sec02 .main {
  margin: 2em 1em;
}
section{
  margin: 2em 0 0;
}
/* 見出し */
h2.list {
  background: #f5f5f5;
  padding: 1em;
  margin: 0;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between; /* テキストとアイコンを左右に */
  border: 1px solid #ccc;
  border-radius: 6px;
  user-select: none;
}

/* 下矢印（三角形） */
h2.list .toggle-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #333; /* ▼ */
  transition: transform 0.3s ease;
}

/* 開いたときは上向きに回転 */
h2.list.active .toggle-icon {
  transform: rotate(180deg); /* ▲ */
}
.award-table {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9) translateY(-20px);
  transition: max-height .6s ease, opacity .6s ease;
}

/* show状態 */
.award-table.show {
  max-height: 10000px;
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: bounceIn .6s ease; /* 追加アニメーション */
}

/* バウンドしながらフェードインするアニメーション */
@keyframes bounceIn {
  0%   {transform: scale(0.5) translateY(-100px); opacity: 0;}
  60%  {transform: scale(1.1) translateY(20px);  opacity: 1;}
  80%  {transform: scale(0.95) translateY(-10px);}
  100% {transform: scale(1) translateY(0);}
}
section table {
  border: 1px solid #ccc;
  width: 100%;
  border-collapse: collapse;
}
section table td {
padding: 0.5em;
}
section table tbody tr:nth-child(even) {
  background-color: #E8E8E8; /* 任意の色 */
}
/* 奇数行に色を付ける例（必要なら） */
#sec02 table tbody tr:nth-child(odd) {
  background-color: #ffffff; /* 任意の色 */
}
/* awardセルだけ常に白にする */
section table td {
  border: 1px solid #ccc;
  color: #344758;
  font-weight: bold;
    vertical-align:middle; /* 上下方向 */
}
section table tr th {
  border: 1px solid #ccc;
  background: #344758;
  color: #FFFFFF;
  font-weight: bold;
}
section table .award1 {
  font-size: 1.2em;
  border: 1px solid #ccc;
  background: #FFF685;
  color: #344758;
  font-weight: bold;
  text-align: center;
   vertical-align:middle; /* 上下方向 */
}
section table .award2 {
  font-size: 1.2em;
  border: 1px solid #ccc;
  background: #FFF9B5;
  color: #344758;
  font-weight: bold;
  text-align: center;
   vertical-align:middle; /* 上下方向 */
}
section table .award3 {
  font-size: 1.1em;
  border: 1px solid #ccc;
  background: #FFFBD8;
  color: #344758;
  font-weight: bold;
  text-align: center;
   vertical-align:middle; /* 上下方向 */
}
section table .award4 {
  font-size: 1.1em;
  border: 1px solid #ccc;
  background: #FFFDEB;
  color: #344758;
  font-weight: bold;
  text-align: center;
   vertical-align:middle; /* 上下方向 */
}
section table .award5 {
  font-size: 1.1em;
  border: 1px solid #ccc;
  background: #FFFFFF;
  color: #344758;
  font-weight: bold;
  text-align: center;
   vertical-align:middle; /* 上下方向 */
}
.panel{
}
section ul {
  margin: 0;
  padding-left: 1.2em;
}
section ul li {
  margin: .3em 0;
}
.container-lr_con {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 2em 0;
}
.container-lr_con-item {
  width: 90%;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}
.container-lr_con-item img {
  width: 35%;
  height: auto;
}
.container-lr_con-item-text {
  width: 65%;
}
.container-lr_con-item-text p {
  margin: 1em 0 0 0;
  padding: 0;
  color: #FFFFFF;
    text-shadow:
    3px 0 0 #000,
   -3px 0 0 #000,
    0 3px 0 #000,
    0 -3px 0 #000,
    2px 2px 0 #000,
   -2px 2px 0 #000,
    2px -2px 0 #000,
   -2px -2px 0 #000;
}
/* 偶数番目だけ左右を入れ替える */
.container-lr_con-item:nth-child(even) {
  flex-direction: row-reverse;
}
/*--------------------------------------------------------------------------------------award01*/
.item-wrapper {
  position: relative; /* 相対位置基準 */
  margin-top: 2em; /* 上のタブ分の余白を確保 */
}
.item {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border-radius: 0 0 30px 30px;
}
.p1bg02{
	background-image: url(../img/BG03.jpg);
	background-size: cover;
	background-position: center center;
}
.p1bg03{
	background-image: url(../img/BG02.jpg);
	background-size: cover;
	background-position: center center;
}
.p1bg04{
background: #FEFCF7
;
}
.item:first-child {
  margin: 0 auto;
}
.item:not(:first-child) {
  margin-top: 3em;
}
.item:last-child {
  margin-bottom: 0;
}
.contents-set-img_l-name {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  text-align: left;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  box-sizing: border-box;
}
.contents-set-img_l-name h2 {
  text-align: center;
  font-size: 2em;
  line-height: 1.2em;
  margin: 0;
  padding: .6em 0 .6em 2em;
  color: #FFFD00;
  background: hsla(225, 12%, 19%, 1.00);
  font-weight: 900;
}
.contents-set-img_l-name-p1 {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  text-align: left;
  box-sizing: border-box;
}
.contents-set-img_l-name-p1 h2 {
	text-align: center;
	font-size: 2em;
	line-height: 1.2em;
	margin: 0;
	padding: 1em 1em 1.4em 1em;
	color: #000000;
	font-weight: 900;
	background-image: url(../img/bg_gild001.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
   text-shadow:
    -2px -2px 0 #FFFFFF,
     2px -2px 0 #FFFFFF,
    -2px  2px 0 #FFFFFF,
     2px  2px 0 #FFFFFF; /* 黒で縁取り */
}
.contents-set-img_l-name-p1 h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px; /* 下線の太さ */
  /* ゴールド系グラデーション */
  background: linear-gradient(
    90deg,
    #f9e6b3 0%,  /* 薄いゴールド */
    #d4af37 50%, /* 濃いゴールド */
    #f9e6b3 100%
  );
}
.contents-set-img_l-name-p2 h2 {
	text-align: center;
	font-size: 2em;
	line-height: 1.2em;
	margin: 0;
	padding: 1em 1em 1.4em 1em;
	color: #000000;
	font-weight: 900;
	background-image: url(../img/bg_gild002.jpg);
  background-repeat: no-repeat;
  background-position: center center;
   text-shadow:
    -2px -2px 0 #FFFFFF,
     2px -2px 0 #FFFFFF,
    -2px  2px 0 #FFFFFF,
     2px  2px 0 #FFFFFF; /* 黒で縁取り */
}
.contents-set-2w {
  margin: 2em;
  display: flex;
}
.contents-set-2w div.cs_image {
  box-sizing: border-box;
  width: 35%;
  text-align: center;
}
.contents-set-2w div.cs_image img {
  width: 100%;
  height: auto
}
.contents-set-2w div.cs_text {
  box-sizing: border-box;
  width: calc(100% - 35%);
}
.contents-set-2w div.cs_text p {
  margin: 0 0 0 2em;
  font-weight: bold;
}

div.hard {
  display: flex;
  gap: .2em;
  flex-wrap: wrap;
  position: absolute;
  top: -1.4em;
  right: 0;
  z-index: 10;
}
div.hard span {
  display: inline-block;
  font-size: .9em;
  font-weight: bold;
  color: #fff;
  padding: .4em 1em;
  border: 2px solid #FFFFFF;
  white-space: nowrap;
}
span.ps5 {
  background-color: #8E8E8E;
}
span.ps4 {
  background-color: #00BBFF;
}
span.ns {
  background-color: #FF0004;
}
span.ds3 {
  background-color: #7BA3B5;
}
.label01 {
  position: absolute;
  top: -3em;
  left: 3%;
  color: #FF0004;
  font-size: .75em;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  padding: .3em;
  box-sizing: border-box;
}
.label01 img {
  width: 200px;
  height: 200px;
}
.label02 {
  position: absolute;
  top: -3em;
  left: 3%;
  color: #FF0004;
  font-size: .75em;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  padding: .3em;
  box-sizing: border-box;
}
.label02 img {
  width: 160px;
  height: 160px;
}
.p1-outline_3_px {
  border: solid 3px #C69747;
}
.btn-wrapper {
  display: block;
  margin: 0 auto;
  padding: 1em 0;
  text-align: center;
}
.btn-wrapper:last-of-type {
  padding: 1em 0 3em;
}
a.link-box {
  position: relative;
  font-size: 1.3em;
  font-weight: bold;
  background-color: #C40B0B;
  color: #FFFFFF;
  padding: .7em 1.8em; /* 上下そのまま、左右1.8em */
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all .8s;
  transition: all .8s;
  text-decoration: none;
  letter-spacing: .08em;
  border-radius: .5em;
  box-shadow: 3px 3px 0px 0px rgba(100, 0, 0, 1.00);
  display: inline-block;
  text-align: left; /* テキストを左揃え */
  padding-right: 3em; /* 矢印スペース */
}
a.link-box:hover {
  text-decoration: none;
  background: red;
}
a.link-box span.ya {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  margin-left: 15px;
}
a.link-box span.ya::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .4em 0 .4em .8em;
  border-color: transparent transparent transparent #FFF;
  display: inline-block;
  vertical-align: middle;
}
