h1 {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 30px;
  color: #FFF;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 900px) {
  h1 {
    font-size: 8vw;
  }
}
h1 span {
  display: block;
  font-size: 35px;
}
@media screen and (max-width: 900px) {
  h1 span {
    font-size: 6vw;
  }
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

article {
  min-height: calc(100vh - 410px);
  padding: 150px 0 50px 0;
}
@media screen and (max-width: 900px) {
  article {
    min-height: calc(100vh - 220vw);
    padding: 30vw 0 10vw 0;
  }
}
article::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../../images/bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
article .ov-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 900px) {
  article .ov-tab {
    display: block;
  }
}
article .ov-tab li {
  width: 49.75%;
  height: 70px;
  background-color: #777;
  border-radius: 5px;
}
@media screen and (max-width: 900px) {
  article .ov-tab li {
    width: 100%;
    height: 14vw;
    margin-bottom: 2vw;
  }
}
article .ov-tab li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  pointer-events: all;
}
@media screen and (max-width: 900px) {
  article .ov-tab li a {
    font-size: 4.5vw;
  }
}
@media screen and (min-width: 1366px) {
  article .ov-tab li a:hover::before {
    right: 20px;
  }
}
article .ov-tab li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 20px;
  height: 20px;
  transition: right 0.5s;
  -webkit-transform: rotate(45deg) translate(0, -50%);
  transform: rotate(45deg) translate(0, -50%);
  vertical-align: middle;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}
@media screen and (max-width: 900px) {
  article .ov-tab li a::before {
    right: 6vw;
    width: 4vw;
    height: 4vw;
  }
}
article .ov-tab li.active {
  background-color: #000;
}
article .ov-tab li.active a {
  pointer-events: none;
}
article .ov-ct-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  article .ov-ct-tab {
    margin-top: 2vw;
  }
}
article .ov-ct-tab li {
  justify-content: space-between;
  width: calc(100% / 3 - 5px);
}
@media screen and (max-width: 900px) {
  article .ov-ct-tab li {
    width: 100%;
    margin-bottom: 1vw;
  }
}
article .ov-ct-tab li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px;
  color: #FFF;
  background-color: #777;
  font-size: 16px;
  border-radius: 5px;
}
@media screen and (max-width: 900px) {
  article .ov-ct-tab li a {
    height: 14vw;
    font-size: 3vw;
  }
}
@media screen and (min-width: 1366px) {
  article .ov-ct-tab li a:hover::before {
    right: 15px;
  }
}
article .ov-ct-tab li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 15px;
  transition: right 0.5s;
  -webkit-transform: rotate(45deg) translate(0, -50%);
  transform: rotate(45deg) translate(0, -50%);
  vertical-align: middle;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}
@media screen and (max-width: 900px) {
  article .ov-ct-tab li a::before {
    right: 3vw;
    width: 3vw;
    height: 3vw;
  }
}
article .ov-ct-tab li.current a {
  pointer-events: none;
}
article .ov-ct-tab li.current.yellow a {
  background-color: #997A00;
}
article .ov-ct-tab li.current.red a {
  background-color: #730606;
}
article .ov-ct-tab li.current.green a {
  background-color: #078C5E;
}
article .ov-ct-tab li.current.blue a {
  background-color: #0871A6;
}
article .page {
  width: 1200px;
  margin: auto;
  padding: 50px;
  background-color: #FFF;
}
@media screen and (min-width: 901px) and (max-width: 1365px) {
  article .page {
    width: 90%;
  }
}
@media screen and (max-width: 900px) {
  article .page {
    width: 90%;
    padding: 5vw;
  }
}
article .page section {
  margin: 30px 0;
}
article .page section:first-of-type {
  margin-top: 0;
}
article .page section:last-of-type {
  margin-bottom: 0;
}
article .page section p.body {
  font-size: 16px;
  line-height: 25px;
}
@media screen and (max-width: 900px) {
  article .page section p.body {
    font-size: 3.2vw;
  }
}
article .page section p.body b {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  article .page section p.body b {
    font-size: 3.5vw;
  }
}
article .page section p.body a {
  text-decoration: underline;
}
article .page section p.mail {
  width: 130px;
}
@media screen and (max-width: 900px) {
  article .page section p.mail {
    width: 50%;
    margin: 3vw 0;
  }
}
article .page section ol.nums li, article .page section ol.dot li {
  margin-bottom: 10px;
  margin-left: 1em;
  font-size: 16px;
  line-height: 25px;
}
@media screen and (max-width: 900px) {
  article .page section ol.nums li, article .page section ol.dot li {
    font-size: 3.2vw;
  }
}
article .page section ol.nums li b, article .page section ol.dot li b {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  article .page section ol.nums li b, article .page section ol.dot li b {
    font-size: 3.5vw;
  }
}
article .page section ol.nums li {
  list-style: decimal outside;
}
article .page section ol.dot li {
  list-style: disc outside;
}
article .page section h2 {
  margin: 50px 0 30px;
  padding: 0 0 15px;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border-bottom: 1px dotted #333;
}
@media screen and (max-width: 900px) {
  article .page section h2 {
    margin: 10vw 0 6vw;
    padding: 0 0 3vw;
    font-size: 4.5vw;
  }
}
article .page section .graph {
  width: 100%;
  margin: 20px 0;
  border: 1px solid #333;
}
@media screen and (max-width: 900px) {
  article .page section .graph {
    margin: 4vw 0;
  }
}
article .page section .graph dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
article .page section .graph dl dt {
  width: 25%;
  padding: 10px;
  background-color: #CCC;
  font-size: 16px;
  border-bottom: 1px dotted #333;
}
@media screen and (max-width: 900px) {
  article .page section .graph dl dt {
    width: 40%;
    padding: 2vw;
    font-size: 3vw;
  }
}
article .page section .graph dl dd {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border-bottom: 1px dotted #333;
}
@media screen and (max-width: 900px) {
  article .page section .graph dl dd {
    padding: 2vw;
    font-size: 3vw;
  }
}
article .page section a.bts {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 170px;
  height: 50px;
  margin-top: 20px;
  font-size: 14px;
  border: 1px solid #000;
  border-radius: 5px;
}
@media screen and (max-width: 900px) {
  article .page section a.bts {
    width: 39vw;
    height: 10vw;
  }
}
article .page section a.bts::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 7px;
  transition: right 0.5s;
  -webkit-transform: rotate(45deg) translate(0, -50%);
  transform: rotate(45deg) translate(0, -50%);
  vertical-align: middle;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
}
article .page section .news {
  position: relative;
  margin-bottom: 0;
}
article .page section .news ul {
  width: 100%;
  margin: auto;
  background-color: #FFF;
}
@media screen and (max-width: 900px) {
  article .page section .news ul {
    width: 90%;
    padding: 3vw;
  }
}
article .page section .news ul li {
  border-bottom: 1px dotted #000;
}
article .page section .news ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0;
}
@media screen and (max-width: 900px) {
  article .page section .news ul li a {
    display: block;
    padding: 2vw 0;
  }
}
article .page section .news ul li a p {
  font-size: 17px;
}
@media screen and (max-width: 900px) {
  article .page section .news ul li a p {
    font-size: 3.5vw;
  }
}
article .page section .news ul li a p.date {
  width: 10%;
  color: #333;
}
@media screen and (max-width: 900px) {
  article .page section .news ul li a p.date {
    font-size: 3vw;
  }
}
article .page section .news ul li a p.body {
  position: relative;
  width: 90%;
  color: #333;
  transition: width 0.3s;
}
article .page section .news ul li a p.body::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2%;
  width: 10px;
  height: 10px;
  transition: right 0.5s;
  -webkit-transform: rotate(45deg) translate(0, -50%);
  transform: rotate(45deg) translate(0, -50%);
  vertical-align: middle;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
}
@media screen and (max-width: 900px) {
  article .page section .news ul li a p.body::before {
    display: none;
  }
}
article .page section .news ul li a:hover p.body {
  width: 89%;
}
article .page section .news ul li a:hover p.body::before {
  right: 3%;
}
article .page section .news ul li:last-of-type {
  border-bottom: none;
}
article .page section .pastList {
  width: 100%;
}
article .page section .pastList dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px dotted #000;
}
@media screen and (max-width: 900px) {
  article .page section .pastList dl {
    display: block;
    padding: 5vw 0;
  }
}
article .page section .pastList dl dt {
  width: 30%;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
}
@media screen and (max-width: 900px) {
  article .page section .pastList dl dt {
    width: 100%;
    padding: 0;
  }
}
article .page section .pastList dl dd {
  flex: 1;
  padding: 20px 0;
}
@media screen and (max-width: 900px) {
  article .page section .pastList dl dd {
    width: 100%;
    padding: 0;
  }
}
article .page section .pastList dl dd a {
  display: block;
  position: relative;
  margin-bottom: 12px;
  padding-left: 0;
  transition: padding-left 0.5s;
  font-size: 17px;
}
@media screen and (max-width: 900px) {
  article .page section .pastList dl dd a {
    margin-bottom: 2.5vw;
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 1366px) {
  article .page section .pastList dl dd a:hover {
    padding-left: 2%;
  }
  article .page section .pastList dl dd a:hover::before {
    right: 2%;
  }
}
article .page section .pastList dl dd a br {
  display: none;
}
@media screen and (max-width: 900px) {
  article .page section .pastList dl dd a br {
    display: inline;
  }
}
article .page section .pastList dl dd a:last-of-type {
  margin-bottom: 0;
}
article .page section .pastList dl dd a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 10px;
  height: 10px;
  transition: right 0.5s;
  -webkit-transform: rotate(45deg) translate(0, -50%);
  transform: rotate(45deg) translate(0, -50%);
  vertical-align: middle;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
}
@media screen and (max-width: 900px) {
  article .page section .pastList dl dd a::before {
    display: none;
  }
}
article .page section .separate {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 900px) {
  article .page section .separate {
    display: block;
  }
}
article .page section .separate .leftWrap {
  width: 30%;
}
@media screen and (max-width: 900px) {
  article .page section .separate .leftWrap {
    width: 100%;
    margin-bottom: 4vw;
  }
}
article .page section .separate .rightWrap {
  width: 65%;
}
@media screen and (max-width: 900px) {
  article .page section .separate .rightWrap {
    width: 100%;
  }
}
article .page section .separate .rightWrap ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  article .page section .separate .rightWrap ul {
    justify-content: space-between;
  }
}
article .page section .separate .rightWrap ul li {
  margin-right: 10px;
}
@media screen and (max-width: 900px) {
  article .page section .separate .rightWrap ul li {
    margin-right: 0;
  }
}
article .page section .separate .rightWrap ul li a {
  margin: 0;
}
article .page section .separate-liq {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 30px 0;
}
@media screen and (max-width: 900px) {
  article .page section .separate-liq {
    display: block;
  }
}
article .page section .separate-liq .leftWrap {
  margin-right: 50px;
}
@media screen and (max-width: 900px) {
  article .page section .separate-liq .leftWrap {
    margin-right: 0;
    margin-bottom: 3vw;
    text-align: center;
  }
  article .page section .separate-liq .leftWrap img.sp70 {
    width: 70%;
  }
}
article .page section .separate-liq .rightWrap a.bts {
  margin: 0;
}
@media screen and (max-width: 900px) {
  article .page section .separate-liq .rightWrap a.bts {
    margin: auto;
  }
}
article .page section h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 900px) {
  article .page section h3 {
    margin-bottom: 2vw;
    font-size: 4vw;
  }
}
article .page section .medals {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  article .page section .medals {
    justify-content: space-between;
    margin-top: 4vw;
    margin-bottom: 10vw;
  }
}
article .page section .medals:last-of-type {
  margin-bottom: 0;
}
article .page section .medals li {
  width: 15%;
  margin-right: 2%;
}
@media screen and (max-width: 900px) {
  article .page section .medals li {
    width: 48%;
    margin-right: 0;
    margin-bottom: 8vw;
  }
}
article .page section .medals li:last-of-type {
  margin-right: 0;
}
article .page section .medals li .image {
  width: 100%;
}
article .page section .medals li .bts {
  width: 100%;
}
article .page section .ceremony {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  article .page section .ceremony {
    display: block;
    width: 100%;
  }
}
article .page section .ceremony .ceremony__image {
  width: 40%;
}
@media screen and (max-width: 900px) {
  article .page section .ceremony .ceremony__image {
    display: block;
    width: 100%;
    margin: 0 auto 20px;
  }
}
article .page section .ceremony .ceremony__image img {
  width: 100%;
}
article .page section .ceremony .ceremony__detail {
  width: 58%;
}
@media screen and (max-width: 900px) {
  article .page section .ceremony .ceremony__detail {
    display: block;
    width: 100%;
  }
}
article .page section .ceremony .ceremony__detail p {
  margin: 10px;
  line-height: 1.7;
}
@media screen and (max-width: 900px) {
  article .page section .ceremony .ceremony__detail p {
    margin: 0;
    line-height: 1.5;
  }
}
article .page section .ceremony .ceremony__detail table {
  width: 100%;
  margin: 1.5em 0;
}
article .page section .ceremony .ceremony__detail table th,
article .page section .ceremony .ceremony__detail table td {
  padding: 0.5em;
  line-height: 1.5;
  text-align: left;
  border: 1px solid #AAA;
}
@media screen and (max-width: 900px) {
  article .page section .ceremony .ceremony__detail table th,
article .page section .ceremony .ceremony__detail table td {
    padding: 0.5em 0.25em;
    font-size: 14px;
  }
}
article .page section .ceremony .ceremony__detail table th {
  width: 25%;
  background: #CCC;
}
@media screen and (max-width: 900px) {
  article .page section .ceremony .ceremony__detail table th {
    width: 35%;
  }
}
article .page section .ceremony .btn a {
  display: inline-block;
  position: relative;
  margin: 0 0.5em 0.5em 0;
  padding: 0.5em 2.5em 0.5em 1.5em;
  border: 1px solid #555;
  border-radius: 3px;
}
@media screen and (max-width: 900px) {
  article .page section .ceremony .btn a {
    width: 100%;
    margin: 0 0 10px;
  }
}
article .page section .ceremony .btn a:hover {
  border-color: rgba(0, 0, 0, 0.5);
}
article .page section .ceremony .btn a:hover::before {
  right: 7%;
  border-color: rgba(0, 0, 0, 0.5);
}
article .page section .ceremony .btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 42%;
  right: 10%;
  width: 8px;
  height: 8px;
  transition-duration: 0.3s;
  transform: rotate(45deg);
  vertical-align: middle;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
}
article .page p.boldLead {
  margin: 80px 0 0 0;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 900px) {
  article .page p.boldLead {
    margin: 16vw 0 0 0;
    font-size: 4.5vw;
  }
}
article .page p.boldLead.red {
  color: #730606;
}

.container a {
  transition: 0.5s;
}
.container h3 {
  margin: 30px 0 20px;
  font-size: 24px !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .container h3 {
    font-size: 20px !important;
  }
}
.container p {
  margin: 0 0 1.5em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 900px) {
  .container p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.container table {
  width: 100%;
  margin: 1.5em 0;
}
.container table:first-child {
  margin: 0;
}
.container table th, .container table td {
  padding: 0.5em;
  line-height: 1.5;
  text-align: left;
  border: 1px solid #AAA;
}
@media screen and (max-width: 900px) {
  .container table th, .container table td {
    padding: 0.5em 0.25em;
    font-size: 14px;
  }
}
.container table th {
  width: 25%;
  width: auto;
  background: #CCC;
  white-space: nowrap;
}
.container table thead th {
  background: #222;
  white-space: nowrap;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.container table td {
  vertical-align: middle;
}
.container table td a {
  display: inline-block;
  position: relative;
  margin: 0 0 0 16px;
}
.container table td a::before {
  content: "";
  display: block;
  position: absolute;
  top: 42%;
  left: -18px;
  width: 6px;
  height: 6px;
  transition-duration: 0s;
  transform: rotate(45deg);
  vertical-align: middle;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
}
.container .tab-section__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 900px) {
  .container .tab-section__items {
    display: block;
  }
}
.container .tab-section__items .tab-section__item {
  flex-grow: 1;
  position: relative;
  margin: 0 0.3% 0 0;
  background: #333;
  border-radius: 5px;
}
.container .tab-section__items .tab-section__item:first-child {
  margin-left: 0;
}
.container .tab-section__items .tab-section__item a {
  display: block;
  padding: 15px 5px;
  color: #FFF;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .container .tab-section__items .tab-section__item a {
    margin: 0 0 1vw;
    padding: 5px;
    font-size: 3.5vw;
  }
}
.container .tab-section__items .tab-section__item a::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 5%;
  width: 6px;
  height: 6px;
  transition: 0.5s;
  transform: rotate(45deg);
  vertical-align: middle;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}
.container .tab-section__items .tab-section__item a:hover::before {
  transform: translateY(-25%) rotate(135deg);
  border-color: rgba(255, 255, 255, 0.5);
}
.container .tab-section__items .tab-section__item.tab-section__item--active:nth-child(1) {
  background: #997a00;
}
.container .tab-section__items .tab-section__item.tab-section__item--active:nth-child(2) {
  background: #730606;
}
.container .tab-section__items .tab-section__item.tab-section__item--active:nth-child(3) {
  background: #078c5e;
}
.container .tab-section__items .tab-section__item.tab-section__item--active a:before {
  transform: translateY(-25%) rotate(135deg);
}
.container .prize {
  display: flex;
  justify-content: space-between;
  margin: 0 0 2em;
}
@media screen and (max-width: 900px) {
  .container .prize {
    display: block;
  }
}
.container .prize__img {
  width: 28%;
}
@media screen and (max-width: 900px) {
  .container .prize__img {
    width: 100%;
  }
}
.container .prize__img img {
  width: 100%;
}
.container .prize__img .is-sp-img > source,
.container .prize__img .is-sp-img > img {
  display: block;
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width: 900px) {
  .container .prize__img .is-sp-img > source,
.container .prize__img .is-sp-img > img {
    width: auto;
  }
}
.container .prize__main {
  width: 70%;
}
@media screen and (max-width: 900px) {
  .container .prize__main {
    width: 100%;
  }
}
.container .prize__main h3 {
  margin: 0 0 1em;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .container .prize__main h3 {
    text-align: center;
    font-size: 18px;
  }
}
.container .prize__main h3 a {
  font-weight: 700;
}
.container .prize__main th {
  width: auto;
  white-space: nowrap;
}
.container .prize__main p {
  margin: 0.5em 0;
  font-size: 14px;
}
.container .prize__notes {
  padding: 5px 30px 25px;
  background-color: #ddd;
}
.container .prize__notes p {
  margin: 0 0.5em;
  font-size: 14px;
}
.container .prize__notes h3 {
  font-size: 20px !important;
}
@media screen and (max-width: 900px) {
  .container .prize__tit {
    width: 100%;
    text-align: center;
  }
}
.container .prize__tit-ico {
  display: inline;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 900px) {
  .container .prize__tit-ico {
    display: block;
    width: 100%;
    margin: 0 0 10px;
  }
}
.container .prize__tit-ico img {
  width: 12%;
  margin: 0 10px 0 0;
  vertical-align: top;
}
@media screen and (max-width: 900px) {
  .container .prize__tit-ico img {
    display: inline;
    width: 30%;
  }
}
.container .prize__tit-main {
  display: inline-block;
  vertical-align: bottom;
}
.container .prize__tit-main h2 {
  border: 0;
  font-size: 18px;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .container .prize__tit-main h2 {
    text-align: center;
    margin-top: 0;
  }
}
.container .prize__tit-main h2 span {
  display: block;
  font-size: 28px;
  font-weight: 700;
}
.container .prize__items {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .container .prize__items {
    display: block;
  }
}
.container .prize__item-txt {
  width: 68%;
}
@media screen and (max-width: 900px) {
  .container .prize__item-txt {
    width: 100%;
  }
}
.container .prize__item-image {
  width: 30%;
  margin: 0 0 0 2%;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .container .prize__item-image {
    width: 100%;
  }
}
.container .prize__item-image:has(.is-sp-img) {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .container .prize__item-image:has(.is-sp-img) {
    margin: 0;
  }
}
.container .prize__meti {
  text-align: center;
}
.container .prize__meti img {
  width: 35%;
}
@media screen and (max-width: 900px) {
  .container .prize__meti img {
    width: 100%;
  }
}
.container .btn a {
  display: inline-block;
  position: relative;
  margin: 0 0.5em 0 0;
  padding: 0.5em 2.5em 0.5em 1.5em;
  border: 1px solid #555;
  border-radius: 3px;
}
.container .btn a:hover {
  border-color: rgba(0, 0, 0, 0.5);
}
.container .btn a:hover::before {
  right: 7%;
  border-color: rgba(0, 0, 0, 0.5);
}
.container .btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 42%;
  right: 10%;
  width: 6px;
  height: 6px;
  transition-duration: 0.3s;
  transform: rotate(45deg);
  vertical-align: middle;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
}
@media screen and (max-width: 900px) {
  .container .scroll {
    width: 100%;
    margin: 0 0 1.5em;
    overflow-x: auto;
  }
  .container table {
    margin: 0;
  }
}
.container .age__tit {
  color: #730606;
}
.container .age__lead {
  text-align: center;
}
.container .age__q {
  margin: 0 0 20px;
  text-align: center;
  font-size: 18px;
}
.container .age__a {
  text-align: center;
}
.container .age__a a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 25px;
  background-color: #730606;
  border-radius: 5px;
  color: #fff;
  width: 18%;
}
@media screen and (max-width: 900px) {
  .container .age__a a {
    width: 40%;
  }
}

.release__item {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px dotted #AAA;
}
.release__item-date {
  flex-basis: 15%;
}
.release__item-list {
  position: relative;
  flex-basis: 85%;
  line-height: 1.5;
}

#download h3 {
  width: fit-content;
  margin: 20px 0 30px !important;
  padding: 5px;
  color: #FFF;
  background-color: #000;
}
@media screen and (max-width: 900px) {
  #download img {
    object-fit: contain;
  }
}
