@charset "UTF-8";
/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd {
  font-size: 16px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Osaka", Verdana, Arial, sans-serif;
  font-optical-sizing: auto;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul, li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address, caption {
  font-style: italic;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: underline;
  word-break: break-all;
}

a:focus {
  outline: none;
}

ul a, li a {
  zoom: 1;
}

/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/* iOS3.1のhtml5対応 */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* body
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #fff;
  background: url(/assets/img/bg.png) #004015;
  background-size: 7.2%;
  background-attachment: fixed;
  font-size: 16px;
  text-align: left;
  line-height: 30px;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
}
@media only screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
    background-size: 20%;
  }
}

a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

a:hover {
  color: #39F;
}

img {
  width: 100%;
  height: 100%;
}

.cb {
  clear: both;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* スムーススクロール
----------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
/* --------------------------------------------------------------
                        コンテンツスタート
----------------------------------------------------------------*/
.spOnly {
  display: none;
}
@media only screen and (max-width: 767px) {
  .spOnly {
    display: block;
  }
}

.pcOnly {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

.flex__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .flex__wrap {
    display: block;
  }
}

.noLink {
  pointer-events: none;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

/* ヘッダー
-----------------------------------------------*/
/*  ハンバーガーメニュー
---------------------------------------------- */
.sb-open-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
}

.menu-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  cursor: pointer;
  background: rgba(11, 60, 27, 0.2);
}
@media only screen and (max-width: 767px) {
  .menu-btn {
    height: 50px;
    width: 50px;
    top: 12px;
  }
}

.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .menu-btn span, .menu-btn span:before, .menu-btn span:after {
    width: 28px;
  }
}

.menu-btn span:before {
  bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .menu-btn span:before {
    bottom: 10px;
  }
}

.menu-btn span:after {
  top: 12px;
}
@media only screen and (max-width: 767px) {
  .menu-btn span:after {
    top: 10px;
  }
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn {
  right: 15px;
}

#menu-btn-check {
  display: none;
}

.menu-content ul {
  padding: 0;
  text-align: center;
}
.menu-content ul.parent {
  position: absolute;
  width: 800px;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .menu-content ul.parent {
    width: calc(100% - 30px);
  }
}

.menu-content ul li {
  padding: 35px 0;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .menu-content ul li {
    padding: 25px 0;
  }
}
.menu-content ul li ul {
  display: block;
  padding: 0;
  margin-left: 0;
}
.menu-content ul li ul li {
  padding: 30px 0 0;
  border-bottom: none;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .menu-content ul li ul li {
    padding: 24px 0 0;
  }
}
.menu-content ul li ul li a {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .menu-content ul li ul li a {
    font-size: 16px;
  }
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 40px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  position: relative;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
  transition: 0.4s;
}
.menu-content ul li a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .menu-content ul li a {
    font-size: 32px;
  }
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  opacity: 0;
  z-index: 80;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.4s;
  display: none;
}

#menu-btn-check:checked ~ .menu-content {
  opacity: 1;
  display: block;
}

header .header__inner {
  width: auto;
  padding: 0 10px;
  position: relative;
}
header .header__inner .header_logo {
  width: 357px;
}
@media only screen and (max-width: 767px) {
  header .header__inner .header_logo {
    width: 120px;
  }
}

/*----------------------------------------------------------------
                              スクロール
----------------------------------------------------------------*/
.scroll__top.show {
  opacity: 1; /* 表示状態では完全に不透明 */
  transform: translateY(0); /* 元の位置に戻る */
  z-index: 20;
}

.scroll__top {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 60px;
  height: 10px;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: 2;
  border-radius: 15px;
}
.scroll__top:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .scroll__top {
    width: 50px;
  }
}
.scroll__top a {
  text-decoration: none;
  background: #fff;
  display: block;
  padding: 25px 0 15px;
  border-radius: 15px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 767px) {
  .scroll__top a {
    padding: 20px 0 10px;
  }
}
.scroll__top a .scroll__top--img {
  width: 12px;
  height: 20px;
  margin: 0 auto;
}
.scroll__top a .scroll__top--img img {
  width: 100%;
  height: auto;
}
.scroll__top a p {
  font-size: 1em;
  color: #333;
  text-align: center;
  font-weight: bold;
  line-height: 13px;
  margin-top: 10px;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* --------------------------------------------------------------
                        浮かび上がる
----------------------------------------------------------------*/
.floating-element {
  opacity: 0;
  transform: translateY(100px); /* 要素を下に隠す */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  position: relative;
  width: 100%;
}

.visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に移動 */
}

/*----------------------------------------------------------------
                              ヘッダー
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 10px 0;
}
header .header__inner {
  height: 100%;
  margin: 0 auto;
  display: flex;
}
header .header__inner .header_logo {
  width: 100px;
  height: auto;
  z-index: 70;
  transition: 0.4s;
}
header .header__inner .header_logo:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  header .header__inner .header_logo {
    width: 60px;
  }
}
header .header__inner .header_logo img {
  width: 100%;
  height: auto;
}
header .header__inner .header_nav {
  width: 900px;
  margin-left: 50px;
}
header .header__inner .header_nav ul {
  display: flex;
  justify-content: space-between;
}
header .header__inner .header_nav ul li a {
  color: #fff;
  font-size: 1.2em;
  text-decoration: none;
  line-height: 59px;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}
header .header__inner .header_nav ul li a:hover {
  color: #ffff66;
}

#top header .header__inner .header_logo {
  display: none;
}

.show .header__inner .header_logo {
  display: none;
}
.show .header__inner .pc {
  display: none;
}
.show .sp {
  display: block;
}
.show .sp .header_logo__wrap {
  width: 125px;
  margin-left: 20px;
}
.show .sp .header_logo__wrap .header_logo {
  display: block;
  margin-top: 25px;
}
.show .sp .header_logo__wrap .header_logo img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
                        メインビジュアル
----------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: 740px;
  position: relative;
  overflow: hidden;
  background: url(/assets/img/kv_shadow.png) repeat-x;
}
@media only screen and (max-width: 767px) {
  .mainvisual {
    height: auto;
  }
}
.mainvisual h1 {
  width: 492px;
  position: absolute;
  top: 160px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 690px 0 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .mainvisual h1 {
    width: 82%;
    height: auto;
    padding: 60px 0 0;
    position: static;
  }
}
.mainvisual h1 .logo {
  width: 120px;
}
@media only screen and (max-width: 767px) {
  .mainvisual h1 .logo {
    width: 25%;
  }
}
.mainvisual h1 .name {
  width: 492px;
}
@media only screen and (max-width: 767px) {
  .mainvisual h1 .name {
    width: 100%;
  }
}
.mainvisual .mainvisual__bg img {
  width: 2000px;
  height: 740px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .mainvisual .mainvisual__bg img {
    width: 100%;
    height: auto;
    margin-top: -20px;
    position: static;
    transform: none;
  }
}

/* --------------------------------------------------------------
                        コンテンツ
----------------------------------------------------------------*/
.section__wrap {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .section__wrap {
    width: auto;
    margin: 0 20px;
  }
}

.section__title {
  margin: 0 auto;
}
.section__title h2 {
  font-size: 72px;
  line-height: 1em;
  color: #fff;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .section__title h2 {
    font-size: 40px;
  }
}

.more {
  text-align: center;
}
.more a {
  width: 120px;
  border: #fff 1px solid;
  border-radius: 100px;
  color: #fff;
  margin: 20px auto;
  display: inline-block;
  padding: 6px 40px 6px 20px;
  font-size: 14px;
  background: url(/assets/img/icon_ballet_w.svg) right 18px top 50% no-repeat;
}
@media only screen and (max-width: 767px) {
  .more a {
    margin: 10px auto;
  }
}
.more a:hover {
  opacity: 0.8;
}

.kaso__wrap {
  width: 100%;
  padding: 120px 0;
  background: url(/assets/img/kv_shadow.png) repeat-x;
  background-size: 10%;
}
@media only screen and (max-width: 767px) {
  .kaso__wrap {
    padding: 100px 0 60px;
    background-size: 50%;
  }
}
.kaso__wrap h1 {
  font-size: 58px;
  line-height: 1em;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .kaso__wrap h1 {
    font-size: 42px;
  }
}

/* --------------------------------------------------------------
                        TOP
----------------------------------------------------------------*/
.results__wrap {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 60px 0 80px;
}
@media only screen and (max-width: 767px) {
  .results__wrap {
    padding: 40px 0 60px;
  }
}

.results__list h2 {
  font-size: 58px;
  line-height: 1em;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .results__list h2 {
    font-size: 48px;
  }
}
.results__list h3 {
  font-size: 36px;
  line-height: 1em;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .results__list h3 {
    font-size: 28px;
  }
}
.results__list ul {
  margin: 25px auto 0;
  color: #0B3C1B;
}
@media only screen and (max-width: 767px) {
  .results__list ul {
    margin: 18px auto 0;
  }
}
.results__list ul li a {
  border-radius: 6px;
  padding: 16px 28px 12px;
  display: block;
  margin-bottom: 10px;
  color: #0B3C1B;
  background: #fff url(/assets/img/icon_ballet.svg) right 30px top 50% no-repeat;
}
@media only screen and (max-width: 767px) {
  .results__list ul li a {
    padding: 4px 44px 3px 14px;
    background: #fff url(/assets/img/icon_ballet.svg) right 15px top 50% no-repeat;
    background-size: 20px;
  }
}
.results__list ul li a .results__cd {
  display: block;
  font-weight: bold;
}
.results__list ul li a .results__cd .category {
  border: #0B3C1B 1px solid;
  font-size: 12px;
  padding: 4px 6px;
  margin-right: 14px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .results__list ul li a .results__cd .category {
    font-size: 10px;
    padding: 3px 4px;
  }
}
.results__list ul li a .results__cd .date {
  font-size: 14px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .results__list ul li a .results__cd .date {
    font-size: 12px;
  }
}
.results__list ul li a .results__ttl {
  display: block;
  font-size: 22px;
  margin: 8px 0 2px;
  font-weight: bold;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .results__list ul li a .results__ttl {
    font-size: 18px;
    margin: 2px 0 0;
    line-height: 1.6;
    padding-left: 1.6em;
    text-indent: -1.6em;
  }
}
.results__list ul li a .results__ttl span {
  font-size: 14px;
  margin-right: 14px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .results__list ul li a .results__ttl span {
    font-size: 12px;
    margin-right: 8px;
  }
}
.results__list ul li a .results__place {
  display: block;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .results__list ul li a .results__place {
    font-size: 11px;
  }
}
.results__list ul li a:hover {
  opacity: 0.8;
}
.results__list.schedule {
  margin-top: 30px;
}
.results__list.schedule ul {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .results__list.schedule ul {
    margin: 18px auto;
  }
}
.results__list.schedule ul li a {
  color: #fff;
  border: #A7C0AF 1px solid;
  background: none;
  pointer-events: none;
}
.results__list.schedule ul li a .results__cd .category {
  border: #72937D 1px solid;
}
.results__list.schedule ul li a:hover {
  opacity: 1;
}
.results__list.news {
  margin-top: 40px;
  padding-top: 40px;
  background-image: linear-gradient(to right, #fff 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
}
@media only screen and (max-width: 767px) {
  .results__list.news ul li a {
    padding: 10px 44px 2px 14px;
  }
}
.results__list.news ul li a .results__cd {
  display: inline-block;
  margin: 0 20px 0 0;
}
@media only screen and (max-width: 767px) {
  .results__list.news ul li a .results__cd {
    display: block;
    margin: 0;
    line-height: 1.4;
  }
}
.results__list.news ul li a .results__ttl {
  font-size: 18px;
  margin: 0 0 6px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .results__list.news ul li a .results__ttl {
    font-size: 16px;
    margin: 0 0 14px;
  }
}

.about__wrap {
  padding: 120px 0;
  background: url(/assets/img/about_map.png) no-repeat 85% 50%;
  background-size: 323px 427px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about__wrap {
    padding: 80px 0;
    background: url(/assets/img/about_map.png) no-repeat 100% 20%;
    background-size: 180px 238px;
  }
}
.about__wrap::before {
  content: "";
  position: absolute;
  top: 45%;
  right: 30%;
  background: url("/assets/img/about_men.png");
  background-size: 100% auto;
  display: block;
  width: 250px;
  height: 410px;
}
@media only screen and (max-width: 767px) {
  .about__wrap::before {
    top: 80%;
    right: 7%;
    width: 120px;
    height: 197px;
  }
}
.about__wrap h2 {
  font-size: 58px;
  line-height: 1em;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .about__wrap h2 {
    font-size: 48px;
  }
}
.about__wrap .team {
  margin: 40px 0 24px;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  font-size: 40px;
  line-height: 1.3;
  color: #0B3C1B;
  display: block;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .about__wrap .team {
    margin: 40px 0 20px;
    font-size: 32px;
  }
}
.about__wrap .lead {
  font-size: 18px;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .about__wrap .lead {
    font-size: 14px;
  }
}

.player__wrap {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 120px 0 80px;
}
@media only screen and (max-width: 767px) {
  .player__wrap {
    padding: 80px 0;
  }
}
.player__wrap h2 {
  font-size: 58px;
  line-height: 1em;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .player__wrap h2 {
    font-size: 48px;
  }
}
.player__wrap .player_list {
  margin: 30px auto 0;
}
.player__wrap .player_list li {
  position: relative;
  width: 180px;
  margin: 0 20px 40px 0;
  font-size: 18px;
  font-weight: bold;
  vertical-align: top;
  display: inline-block;
  text-align: center;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .player__wrap .player_list li {
    width: 47%;
    margin: 0 12px 30px 0;
    font-size: 16px;
    line-height: 1.8;
  }
}
.player__wrap .player_list li:nth-child(6n) {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .player__wrap .player_list li:nth-child(6n) {
    margin: 0 8px 16px 0;
  }
}
@media only screen and (max-width: 767px) {
  .player__wrap .player_list li:nth-child(2n) {
    margin: 0;
  }
}
.player__wrap .player_list li span {
  display: block;
  font-size: 12px;
  line-height: 1em;
  color: #fff;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .player__wrap .player_list li span {
    font-size: 11px;
  }
}
.player__wrap .player_list li .number {
  position: absolute;
  left: 6px;
  top: 6px;
  font-size: 24px;
  line-height: 1em;
  color: #0B3C1B;
  display: block;
  margin: 0 auto;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}
.player__wrap .player_list li img {
  width: 100%;
  height: auto;
  margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  .player__wrap .player_list li img {
    margin-bottom: 8px;
  }
}

.sponsor__wrap {
  padding: 120px 0 90px;
}
@media only screen and (max-width: 767px) {
  .sponsor__wrap {
    padding: 80px 0 30px;
  }
}
.sponsor__wrap h2 {
  font-size: 58px;
  line-height: 1em;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .sponsor__wrap h2 {
    font-size: 48px;
  }
}
.sponsor__wrap .sponsor_list {
  margin: 40px 0;
  text-align: center;
}
.sponsor__wrap .sponsor_list li {
  width: 280px;
  margin: 0 40px;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .sponsor__wrap .sponsor_list li {
    width: 140px;
    margin: 0 3% 30px;
  }
}
.sponsor__wrap .sponsor_list li.w240 {
  width: 240px;
}
@media only screen and (max-width: 767px) {
  .sponsor__wrap .sponsor_list li.w240 {
    width: 140px;
  }
}

/* --------------------------------------------------------------
                        下層ページ
----------------------------------------------------------------*/
/* archives一覧 */
.archives {
  margin: 40px auto 30px;
}
@media only screen and (max-width: 767px) {
  .archives {
    margin: 30px auto 0;
  }
}
.archives ul {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
.archives ul li {
  width: calc((100% - 10px) / 2);
  height: auto;
  margin-right: 10px;
}
.archives ul li:nth-child(2n) {
  margin-right: 0;
}
.archives ul li.cr {
  pointer-events: none;
}
.archives ul li.cr a {
  background: #248444;
  border: #248444 1px solid;
}
.archives ul li a {
  color: #fff;
  border: #fff 1px solid;
  padding: 10px;
  font-size: 16px;
  display: block;
  border-radius: 4px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .archives ul li a {
    padding: 6px;
    font-size: 14px;
  }
}

/* news一覧 */
.kaso__wrap .news {
  padding: 0;
  background: none;
  background: none;
}
@media only screen and (max-width: 767px) {
  .kaso__wrap .news {
    padding: 0;
  }
}

/* archives詳細 */
.results__ttl {
  margin: 0 auto 30px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .results__ttl {
    margin: 0 auto 15px;
  }
}
.results__ttl .results__cd {
  display: block;
  font-weight: bold;
  margin-top: -30px;
}
.results__ttl .results__cd .category {
  border: #A7C0AF 1px solid;
  font-size: 18px;
  padding: 6px 12px;
  margin: 0 16px 0 0;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .results__ttl .results__cd .category {
    font-size: 14px;
    padding: 5px 8px;
    margin: 0;
  }
}
.results__ttl .results__cd .date {
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .results__ttl .results__cd .date {
    font-size: 16px;
    display: block;
    margin: 8px 0 0;
  }
}
.results__ttl .results__ttl {
  display: block;
  font-size: 50px;
  margin: 40px 0 26px;
  font-weight: bold;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .results__ttl .results__ttl {
    font-size: 30px;
    margin: 10px 0 8px;
    line-height: 1.6;
  }
}
.results__ttl .results__ttl span {
  font-size: 30px;
  margin-right: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .results__ttl .results__ttl span {
    font-size: 18px;
    margin-right: 14px;
  }
}
.results__ttl .results__place {
  display: block;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .results__ttl .results__place {
    font-size: 13px;
  }
}
.results__ttl .results__news {
  margin: -30px auto 20px;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .results__ttl .results__news {
    margin: -30px auto 10px;
    font-size: 14px;
  }
}
.results__ttl .results__news span {
  font-size: 40px;
  line-height: 1em;
  color: #fff;
  display: block;
  margin: 0 auto 16px;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .results__ttl .results__news span {
    font-size: 28px;
    margin: 0 auto 8px;
  }
}
.results__ttl .results__newsTtl {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .results__ttl .results__newsTtl {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.results__detail {
  background: #fff;
  border-radius: 8px;
  color: #0B3C1B;
}
.results__detail .mainImg img {
  border-radius: 8px 8px 0 0;
}
.results__detail article {
  padding: 50px 100px;
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .results__detail article {
    padding: 30px 20px;
  }
}
.results__detail article .score__board {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .results__detail article .score__board {
    margin-bottom: 20px;
  }
}
.results__detail article .score__board li {
  width: 160px;
  display: inline-block;
  font-size: 18px;
  line-height: 1em;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .results__detail article .score__board li {
    width: 35%;
    font-size: 16px;
  }
}
.results__detail article .score__board li:nth-child(2n) {
  width: 30px;
}
@media only screen and (max-width: 767px) {
  .results__detail article .score__board li:nth-child(2n) {
    width: 20px;
  }
}
.results__detail article .score__board li span {
  font-size: 50px;
  line-height: 1em;
  display: block;
  margin: 4px auto 0;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .results__detail article .score__board li span {
    font-size: 48px;
  }
}
.results__detail article .score__detail {
  background: #F2F2F2;
  padding: 12px;
  margin-top: 6px;
}
.results__detail article .score__detail.none {
  display: none;
}
@media only screen and (max-width: 767px) {
  .results__detail article .score__detail {
    padding: 10px;
  }
}
.results__detail article .score__detail li {
  width: 100%;
  display: block;
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .results__detail article .score__detail li {
    font-size: 14px;
  }
}
.results__detail article .score__detail li span {
  font-size: 16px;
  display: inline-block;
  width: 80px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .results__detail article .score__detail li span {
    width: 80px;
    font-size: 14px;
  }
}
.results__detail article .scorer {
  margin: 30px auto 0;
  padding-bottom: 20px;
  line-height: 1.6;
  background-image: linear-gradient(to right, #0B3C1B 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.results__detail article .scorer.none {
  display: none;
}
@media only screen and (max-width: 767px) {
  .results__detail article .scorer {
    margin: 15px auto;
    padding-bottom: 15px;
  }
}
.results__detail article .scorer dt {
  font-size: 16px;
  border: #0B3C1B 1px solid;
  line-height: 1;
  padding: 10px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .results__detail article .scorer dt {
    font-size: 12px;
    padding: 6px;
  }
}
.results__detail article .scorer dd {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .results__detail article .scorer dd {
    margin-top: 10px;
  }
}
.results__detail article .scorer dd span {
  font-size: 16px;
  display: inline-block;
  line-height: 1.2;
  margin-right: 10px;
  font-weight: bold;
}
.results__detail article .scorer dd span::after {
  content: "/";
  padding-left: 10px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .results__detail article .scorer dd span {
    font-size: 14px;
  }
}
.results__detail article .comment {
  margin: 30px auto;
}
.results__detail article .comment.none {
  display: none;
}
.results__detail article .comment.news {
  margin: 0 auto 20px;
}
@media only screen and (max-width: 767px) {
  .results__detail article .comment {
    margin: 20px auto;
  }
}
.results__detail article .comment p {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: left;
  font-weight: bold;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .results__detail article .comment p {
    font-size: 16px;
    margin-bottom: 14px;
  }
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
}/*# sourceMappingURL=common.css.map */