@charset "UTF-8";
/*
カラー・フォント定義
*/
/* =========================== 共通 =========================== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

:root{
    --color_main:#1e120f;}

select::-ms-expand {
  display: none; }

a {
  color: #e56608;
  text-decoration: none; }
  a:hover {
    color: #e56608;
    text-decoration: underline; }

ul {
  list-style-type: none; }

body {
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  position: relative;
  font-size: 14px;
  line-height: 1;
  padding: 0px;
  overflow: hidden;
  padding: 156px 0px 0px 0px; }
  @media only screen and (max-width: 959px) {
    body {
      padding: 80px 0px 0px 0px; } }
  body.hina {
    padding: 124px 0px 0px 0px; }
    @media only screen and (max-width: 959px) {
      body.hina {
        padding: 64px 0px 0px 0px; } }
  body.no_scroll {
    overflow: hidden !important; }

/* =========================== 汎用スタイル =========================== */
@media only screen and (min-width: 960px) {
  .pc {
    display: block; } }
@media only screen and (max-width: 959px) {
  .pc {
    display: none; } }

@media only screen and (min-width: 960px) {
  .sp {
    display: none; } }
@media only screen and (max-width: 959px) {
  .sp {
    display: block; } }

.mb8 {
  margin-bottom: 8px !important; }

.mb12 {
  margin-bottom: 12px !important; }

.mb16 {
  margin-bottom: 16px !important; }

.mb24 {
  margin-bottom: 24px !important; }

.mb32 {
  margin-bottom: 32px !important; }

.mb48 {
  margin-bottom: 48px !important; }

.mb64 {
  margin-bottom: 64px !important; }

.mb96 {
  margin-bottom: 96px !important; }

.mb128 {
  margin-bottom: 128px !important; }

.mb10 {
  margin-bottom: 10px !important; }

.mb20 {
  margin-bottom: 20px !important; }

.mb30 {
  margin-bottom: 30px !important; }

.mb40 {
  margin-bottom: 40px !important; }

.mb50 {
  margin-bottom: 50px !important; }

.mb60 {
  margin-bottom: 60px !important; }

.fadein {
  opacity: 0;
  transform: translate(0, 40px);
  transition: all 1000ms; }

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  transition-timing-function: ease-in-out; }

.base-center-container {
  width: 100%;
  max-width: 1180px;
  margin: 0px auto 96px auto; }
  @media only screen and (max-width: 959px) {
    .base-center-container {
      padding: 0px 20px 0px 20px;
      margin-bottom: 64px; } }

img {
  vertical-align: bottom; }

.ttl-h2 {
  font-size: 30px;
  line-height: 1;
  color: #333333;
  font-weight: bold;
  border-bottom: 1px solid #999999;
  padding: 0px 0px 22px 0px;
  margin: 0px 0px 32px 0px; }
  @media only screen and (max-width: 959px) {
    .ttl-h2 {
      font-size: 24px; } }
  .hina .ttl-h2 {
    margin: 0px 0px 64px 0px; }
    @media only screen and (max-width: 959px) {
      .hina .ttl-h2 {
        margin: 0px 0px 32px 0px; } }
  .ttl-h2.w {
    color: #fff;
    border-bottom: 1px solid #fff; }
    .ttl-h2.w span {
      color: #fff; }
  .ttl-h2 span {
    margin: 0px 0px 0px 16px;
    font-size: 18px;
    color: #999999;
    font-weight: normal; }
    @media only screen and (max-width: 959px) {
      .ttl-h2 span {
        font-size: 16px; } }

.ttl-center {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #333333;
  margin: 0px 0px 64px 0px; }
  @media only screen and (max-width: 959px) {
    .ttl-center {
      font-size: 28px;
      margin: 0px 0px 32px 0px; } }
  .ttl-center span {
    display: block;
    width: 100%;
    margin: 24px 0px 0px 0px;
    font-size: 16px;
    font-weight: normal; }
    @media only screen and (max-width: 959px) {
      .ttl-center span {
        font-size: 14px;
        margin: 12px 0px 0px 0px; } }

.more-btn a {
  display: block;
  max-width: 368px;
  height: 57px;
  line-height: 57px;
  font-size: 16px;
  color: #333;
  border: 1px solid #6c6c6c;
  margin: 0px auto;
  text-align: center;
  /*		background-image: url("../img/base/more-btn-bg-g.svg");
  		background-repeat: no-repeat;
  		background-position: right 8px bottom;
  		background-size: 41px 14px;*/
  position: relative;
  overflow: hidden; }
  .more-btn a::before {
    content: "";
    position: absolute;
    width: 41px;
    height: 14px;
    bottom: 0px;
    right: 8px;
    background-image: url("../img/base/more-btn-bg-g.svg");
    background-repeat: no-repeat;
    background-size: 41px 14px; }
  .more-btn a:hover {
    text-decoration: none; }
    .more-btn a:hover::before {
      animation: more-btn-arrow 0.5s;
      animation-fill-mode: forwards !important; }
.more-btn.w a {
  color: #fff;
  border: 1px solid #fff; }
  .more-btn.w a::before {
    background-image: url("../img/base/more-btn-bg-w.svg"); }

@keyframes more-btn-arrow {
  50% {
    right: -30px;
    opacity: 0; }
  50.1% {
    right: 50px; }
  100% {
    opacity: 1;
    right: 8px; } }
@keyframes type6-top {
  0% {
    transform: translateX(0px) rotate(0deg); }
  50% {
    transform: translateY(0px) rotate(0deg); }
  100% {
    transform: translateY(0px) rotate(0deg); } }
@keyframes type6-bottom {
  0% {
    transform: translateY(0px) rotate(0deg); }
  50% {
    transform: translateY(0px) rotate(0deg); }
  100% {
    transform: translateY(0px) rotate(0deg); } }
@keyframes type6-top-close {
  0% {
    transform: translateY(0px) rotate(0deg); }
  50% {
    transform: translateY(0px) rotate(0deg); }
  100% {
    transform: translateY(9px) rotate(-45deg); } }
@keyframes type6-bottom-close {
  0% {
    transform: translateY(0px) rotate(0deg); }
  50% {
    transform: translateY(0px) rotate(0deg); }
  100% {
    transform: translateY(-9px) rotate(45deg); } }
@keyframes type7-top {
  0% {
    transform: translateX(0px) rotate(0deg); }
  50% {
    transform: translateY(0px) rotate(0deg); }
  100% {
    transform: translateY(0px) rotate(0deg); } }
@keyframes type7-bottom {
  0% {
    transform: translateY(0px) rotate(0deg); }
  50% {
    transform: translateY(0px) rotate(0deg); }
  100% {
    transform: translateY(0px) rotate(0deg); } }
@keyframes type7-top-close {
  0% {
    transform: translateY(0px) rotate(0deg); }
  50% {
    transform: translateY(0px) rotate(0deg); }
  100% {
    transform: translateY(6px) rotate(-45deg); } }
@keyframes type7-bottom-close {
  0% {
    transform: translateY(0px) rotate(0deg); }
  50% {
    transform: translateY(0px) rotate(0deg); }
  100% {
    transform: translateY(-6px) rotate(45deg); } }
/* --------------------------------------------------------------------------------- */
header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0; }
  header .inner {
    position: relative;
    background-color: #fff;
    height: 124px;
    width: 100%; }
    @media only screen and (max-width: 959px) {
      header .inner {
        height: 64px; } }
      header .inner h1 img {
        padding: 0 20px;
        width: auto;
        height: 65px; }
        @media only screen and (max-width: 959px) {
          header .inner h1 img {
            width: auto;
            height: 40px; } }
    header .inner .menu-btn {
      position: absolute;
      cursor: pointer;
      display: none; }
      @media only screen and (max-width: 959px) {
        header .inner .menu-btn {
          display: block;
          right: 20px;
          top: 25px;
          width: 25px;
          height: 12px; } }
      header .inner .menu-btn span {
        position: absolute;
        width: 42px;
        height: 1px;
        display: block;
        background-color: var(--color_main);
        left: 0px; }
        @media only screen and (max-width: 959px) {
          header .inner .menu-btn span {
            width: 25px; } }
        header .inner .menu-btn span:nth-child(1) {
          top: 0px;
          animation: type6-top .5s;
          animation-fill-mode: forwards; }
          @media only screen and (max-width: 959px) {
            header .inner .menu-btn span:nth-child(1) {
              animation: type7-top .5s; } }
        header .inner .menu-btn span:nth-child(2) {
          top: 9px;
          transition: .5s opacity;
          opacity: 1; }
          @media only screen and (max-width: 959px) {
            header .inner .menu-btn span:nth-child(2) {
              top: 6px; } }
        header .inner .menu-btn span:nth-child(3) {
          top: 18px;
          animation: type6-bottom .5s;
          animation-fill-mode: forwards; }
          @media only screen and (max-width: 959px) {
            header .inner .menu-btn span:nth-child(3) {
              animation: type7-bottom .5s;
              top: 12px; } }
      header .inner .menu-btn.on span:nth-child(1) {
        animation: type6-top-close .5s;
        animation-fill-mode: forwards !important; }
        @media only screen and (max-width: 959px) {
          header .inner .menu-btn.on span:nth-child(1) {
            animation: type7-top-close .5s; } }
      header .inner .menu-btn.on span:nth-child(2) {
        opacity: 0;
        transition: .5s opacity; }
      header .inner .menu-btn.on span:nth-child(3) {
        animation: type6-bottom-close .5s;
        animation-fill-mode: forwards !important; }
        @media only screen and (max-width: 959px) {
          header .inner .menu-btn.on span:nth-child(3) {
            animation: type7-bottom-close .5s; } }
    header .inner .main-nav {
      position: absolute;
      right: 32px;
      top: 52px; }
      @media only screen and (max-width: 959px) {
        header .inner .main-nav {
          visibility: hidden;
          opacity: 0;
          left: 0;
          top: 64px;
          width: 100%;
          height: auto;
          background-color: #000;
          border-top: 1px solid #333;
          transition: 0.3s; }
          header .inner .main-nav.on {
            transition: 0.3s;
            visibility: visible;
            opacity: 1;
            height: 100vh; } }
      header .inner .main-nav li {
        display: inline-block;
        margin: 0px 0px 0px 64px; }
        @media only screen and (max-width: 959px) {
          header .inner .main-nav li {
            display: block;
            width: 100%;
            border-bottom: 1px solid #333;
            margin: 0px 0px 0px 0px;
            padding: 24px 16px; } }
        header .inner .main-nav li a {
          color: #666;
          font-size: 14px;
          font-weight: bold;
          line-height: 1;
          position: relative;
          display: block;
          overflow: hidden;
          height: 45px; }
          @media only screen and (max-width: 959px) {
            header .inner .main-nav li a {
              height: auto; } }
          header .inner .main-nav li a::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: 18px;
            left: -100%;
            background-color: #666;
            transition: 0.3s; }
            @media only screen and (max-width: 959px) {
              header .inner .main-nav li a::after {
                height: 100%;
                width: 1px;
                left: 0;
                bottom: 0;
                visibility: hidden; } }
          header .inner .main-nav li a::before {
            content: "";
            position: absolute;
            width: 8px;
            height: 6x;
            border-top: 6px solid #e56608;
            border-right: 4px solid transparent;
            border-left: 4px solid transparent;
            bottom: 8px;
            left: calc(50% - 4px);
            opacity: 0;
            transition: 0.3s;
            transition-delay: 0.2s; }
            @media only screen and (max-width: 959px) {
              header .inner .main-nav li a::before {
                border-top: 4px solid transparent;
                border-bottom: 4px solid transparent;
                border-left: 6px solid #e56608;
                bottom: calc(50% - 4px);
                left: 8px;
                visibility: hidden; } }
          header .inner .main-nav li a:hover {
            text-decoration: none;
            color: #e56608; }
            header .inner .main-nav li a:hover::after {
              left: 0px; }
            header .inner .main-nav li a:hover::before {
              bottom: 0px;
              opacity: 1; }
          @media only screen and (max-width: 959px) {
            header .inner .main-nav li a.active {
              padding-left: 24px; } }
          header .inner .main-nav li a.active::after {
            bottom: 18px;
            left: 0px; }
            @media only screen and (max-width: 959px) {
              header .inner .main-nav li a.active::after {
                left: 0;
                bottom: 0;
                visibility: visible; } }
          header .inner .main-nav li a.active::before {
            bottom: 0px;
            left: calc(50% - 4px);
            opacity: 1; }
            @media only screen and (max-width: 959px) {
              header .inner .main-nav li a.active::before {
                bottom: calc(50% - 4px);
                left: 8px;
                visibility: visible; } }

footer {
  padding: 64px 0px 64px 0px; }
  footer .base-center-container {
    margin-bottom: 0px; }
  footer .footer-top {
    position: relative;
    padding: 0px 0px 64px 0px;
    border-bottom: 1px solid #cccccc; }
    footer .footer-top h3 {
      font-size: 30px;
      line-height: 1;
      color: #333333; }
    footer .footer-top ul {
      position: absolute;
      top: 0;
      right: 0; }
      footer .footer-top ul li {
        display: inline-block;
        margin: 0px 0px 0px 20px; }
  footer .footer-middle {
    border-bottom: 1px solid #cccccc;
    padding: 64px 0px 0px 0px; }
    @media only screen and (max-width: 959px) {
      footer .footer-middle {
        padding: 32px 0px 0px 0px; } }
    footer .footer-middle ul.bottom-ul {
      text-align: center; }
    @media only screen and (max-width: 959px) {
      footer .footer-middle ul {
        display: -webkit-flex;
        /* Safari */
        display: flex;
        -webkit-flex-direction: row;
        /* Safari */
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        /* Safari */
        flex-wrap: wrap; } }
    footer .footer-middle ul li {
      display: inline-block;
      margin: 0px 18px 64px 18px; }
      @media only screen and (max-width: 959px) {
        footer .footer-middle ul li {
          display: block;
          width: 50%;
          margin: 0px 0px 32px 0px;
          text-align: center; } }
      footer .footer-middle ul li a {
        display: block;
        text-align: left; }
        @media only screen and (max-width: 959px) {
          footer .footer-middle ul li a {
            height: 100%;
            text-align: center;
            display: flex;
            align-items: flex-end;
            justify-content: center; } }
      footer .footer-middle ul li.line {
        display: block;
        width: 100%;
        height: 1px;
        margin: 0px 0px 0px 0px; }
        @media only screen and (max-width: 959px) {
          footer .footer-middle ul li.line {
            display: none; } }
      footer .footer-middle ul li img {
        max-width: 100px;
        width: 100%; }
        @media only screen and (max-width: 959px) {
          footer .footer-middle ul li img {
            width: 60%;
            vertical-align: bottom; } }
        footer .footer-middle ul li img.min250 {
          max-width: 250px; }
        footer .footer-middle ul li img.min200 {
          max-width: 200px; }
        footer .footer-middle ul li img.min160 {
          max-width: 160px; }
        footer .footer-middle ul li img.min150 {
          max-width: 150px; }
        footer .footer-middle ul li img.min140 {
          max-width: 140px; }
        footer .footer-middle ul li img.min130 {
          max-width: 130px; }
        footer .footer-middle ul li img.min120 {
          max-width: 120px; }
        footer .footer-middle ul li img.min110 {
          max-width: 110px; }
        footer .footer-middle ul li img.min100 {
          max-width: 100px; }
        footer .footer-middle ul li img.min90 {
          max-width: 90px; }
        footer .footer-middle ul li img.min80 {
          max-width: 80px; }
        footer .footer-middle ul li img.min70 {
          max-width: 70px; }
        footer .footer-middle ul li img.min60 {
          max-width: 60px; }
        @media only screen and (max-width: 959px) {
          footer .footer-middle ul li img.spAt {
            width: 50%; }
          footer .footer-middle ul li img.spTm {
            width: 50%; }
          footer .footer-middle ul li img.spF {
            width: 35%; }
          footer .footer-middle ul li img.spEd {
            width: 80%; }
          footer .footer-middle ul li img.spPi {
            width: 50%; }
          footer .footer-middle ul li img.spBr {
            width: 90%; } }
  footer .footer-bottom {
    padding: 64px 0px 0px 0px;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    -webkit-flex-direction: row;
    /* Safari */
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    /* Safari */
    flex-wrap: wrap; }
    @media only screen and (max-width: 959px) {
      footer .footer-bottom {
        padding: 32px 0px 0px 0px; } }
    footer .footer-bottom small {
      display: block;
      font-size: 14px;
      width: 50%;
      color: #333333; }
      @media only screen and (max-width: 959px) {
        footer .footer-bottom small {
          width: 100%;
          order: 2;
          text-align: center; } }
    footer .footer-bottom ul {
      width: 50%;
      text-align: right; }
      @media only screen and (max-width: 959px) {
        footer .footer-bottom ul {
          width: 100%;
          order: 1;
          text-align: center;
          margin: 0px 0px 32px 0px; } }
      footer .footer-bottom ul li {
        display: inline-block;
        margin: 0px 0px 0px 24px; }
        footer .footer-bottom ul li a {
          color: #333333; }

.side-nav {
  position: fixed;
  right: 0px;
  top: 45%;
  background-color: #191919;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 4px;
  z-index: 900; }
  @media only screen and (max-width: 959px) {
    .side-nav {
      top: inherit;
      bottom: 32px; } }
  .side-nav ul {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top: 2px solid #999999;
    border-bottom: 2px solid #999999;
    border-left: 2px solid #999999;
    width: 58px;
    padding: 24px 0px 24px 0px; }
    .side-nav ul li:first-child {
      margin: 0px 0px 24px 0px; }
    .side-nav ul li a {
      display: block;
      text-align: center; }

.index .mv {
  margin: 0px 0px 96px 0px; }
  @media only screen and (max-width: 959px) {
    .index .mv {
      margin: 0px 0px 64px 0px; } }
  .index .mv ul {
    margin: 0px 0px 0px 0px; }
    @media only screen and (max-width: 959px) {
      .index .mv ul {
        margin: 0px 0px 0px 0px; } }
    .index .mv ul li {
      padding: 0px 16px 0px 16px; }
      @media only screen and (max-width: 959px) {
        .index .mv ul li {
          padding: 0px 8px 0px 8px; } }
      .index .mv ul li img {
        width: 100%; }
.index .top-bnr ul {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px 0px -32px; }
  @media only screen and (max-width: 959px) {
    .index .top-bnr ul {
      margin: 0px 0px 0px 0px; } }
  .index .top-bnr ul li {
    width: calc(50% - 32px);
    margin: 0px 0px 0px 32px; }
    @media only screen and (max-width: 959px) {
      .index .top-bnr ul li {
        width: 100%;
        margin: 0px 0px 24px 0px; }
        .index .top-bnr ul li:last-child {
          margin: 0px 0px 0px 0px; } }
    .index .top-bnr ul li a {
      display: block;
      border: 5px solid #cacaca;
      margin: 0px 0px 12px 0px;
      overflow: hidden; }
      .index .top-bnr ul li a:hover {
        border: 5px solid #e56608; }
        .index .top-bnr ul li a:hover img {
          transform: scale(1.03); }
      .index .top-bnr ul li a img {
        transition: 0.3s;
        width: 100%; }
    .index .top-bnr ul li p {
      font-size: 16px;
      line-height: 24px; }
      @media only screen and (max-width: 959px) {
        .index .top-bnr ul li p {
          font-size: 14px;
          line-height: 20px; } }
.index .middle-bnr ul {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px 0px -32px; }
  @media only screen and (max-width: 959px) {
    .index .middle-bnr ul {
      margin: 0px 0px 0px 0px; } }
  .index .middle-bnr ul li {
    width: calc(50% - 32px);
    margin: 0px 0px 0px 32px; }
    @media only screen and (max-width: 959px) {
      .index .middle-bnr ul li {
        width: 100%;
        margin: 0px 0px 24px 0px; }
        .index .middle-bnr ul li:last-child {
          margin: 0px 0px 0px 0px; } }
    .index .middle-bnr ul li a {
      display: block;
      overflow: hidden;
      border: 5px solid #cacaca; }
      .index .middle-bnr ul li a img {
        width: 100%;
        transition: 0.3s; }
      .index .middle-bnr ul li a:hover {
        border: 5px solid #e56608; }
        .index .middle-bnr ul li a:hover img {
          transform: scale(1.03); }
    .index .middle-bnr ul li:last-child a {
      border: 5px solid #a82e2e; }
      .index .middle-bnr ul li:last-child a:hover {
        border: 5px solid #611f1f; }
.index .middle-bnr-3 ul {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px 0px -32px; }
  @media only screen and (max-width: 959px) {
    .index .middle-bnr-3 ul {
      margin: 0px 0px 0px 0px; } }
  .index .middle-bnr-3 ul li {
    width: calc(33.3% - 32px);
    margin: 0px 0px 0px 32px; }
    @media only screen and (max-width: 959px) {
      .index .middle-bnr-3 ul li {
        width: 100%;
        margin: 0px 0px 24px 0px; }
        .index .middle-bnr-3 ul li:last-child {
          margin: 0px 0px 0px 0px; } }
    .index .middle-bnr-3 ul li a {
      display: block;
      overflow: hidden;
      border: 5px solid #cacaca; }
      .index .middle-bnr-3 ul li a img {
        width: 100%;
        transition: 0.3s; }
      .index .middle-bnr-3 ul li a:hover {
        border: 5px solid #e56608; }
        .index .middle-bnr-3 ul li a:hover img {
          transform: scale(1.03); }
    .index .middle-bnr-3 ul li:last-child a {
      border: 5px solid #a82e2e; }
      .index .middle-bnr-3 ul li:last-child a:hover {
        border: 5px solid #611f1f; }
.index .company {
  margin: 0px 0px 0px 0px;
  background-image: url("../img/index/company-bg.jpg");
  background-size: cover;
  background-position: center bottom;
  display: flex;
  justify-content: flex-end; }
  @media only screen and (max-width: 959px) {
    .index .company {
      background-position: left bottom; } }
  .index .company .inner {
    width: 50%;
    padding: 64px 64px 64px 64px;
    color: #fff; }
    @media only screen and (max-width: 959px) {
      .index .company .inner {
        width: 100%;
        padding: 64px 24px; } }
    .index .company .inner h2 {
      margin: 0px 0px 64px 0px; }
      @media only screen and (max-width: 959px) {
        .index .company .inner h2 {
          margin: 0px 0px 32px 0px; } }
    .index .company .inner figure {
      margin: 0px 0px 64px 0px; }
      @media only screen and (max-width: 959px) {
        .index .company .inner figure {
          margin: 0px 0px 32px 0px; } }
      .index .company .inner figure img {
        width: 246px;
        height: 36px; }
    .index .company .inner h3 {
      font-size: 24px;
      line-height: 1;
      margin: 0px 0px 32px 0px; }
    .index .company .inner p {
      font-size: 14px;
      line-height: 30px;
      margin: 0px 0px 64px 0px; }

.news-list .member-regist-text {
  line-height: 1.8;
  border: 1px solid #e56608;
  padding: 12px 16px;
  margin: 0px 0px 32px 0px; }
.news-list .news-container {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px 32px -32px; }
  @media only screen and (max-width: 959px) {
    .news-list .news-container {
      margin: 0px 0px 32px 0px; } }
  .news-list .news-container li {
    width: calc(33.3% - 32px);
    margin: 0px 0px 32px 32px;
    border-radius: 6px;
    overflow: hidden; }
    @media only screen and (max-width: 959px) {
      .news-list .news-container li {
        width: 100%;
        margin: 0px 0px 16px 0px; }
        .news-list .news-container li:last-child {
          margin: 0px 0px 0px 0px; } }
    .news-list .news-container li a {
      display: block;
      background-color: #f2f2f2;
      border-radius: 6px;
      padding: 0px 0px 16px 0px;
      transition: 0.3s; }
      @media only screen and (max-width: 959px) {
        .news-list .news-container li a {
          padding: 0px 0px 12px 0px; } }
      .news-list .news-container li a:hover {
        text-decoration: none;
        background-color: #D9D9D9; }
        .news-list .news-container li a:hover img {
          transform: scale(1.1); }
      .news-list .news-container li a figure {
        position: relative;
        overflow: hidden;
        margin: 0px 0px 0px 0px !important; }
        .news-list .news-container li a figure p {
          position: absolute;
          right: 0;
          top: 0;
          color: #fff;
          padding: 6px 12px;
          font-size: 12px;
          font-weight: bold;
          line-height: 1;
          border-top-right-radius: 6px;
          z-index: 10; }
          .news-list .news-container li a figure p.race {
            background-color: #cc0000; }
          .news-list .news-container li a figure p.release {
            background-color: #0099ff; }
          .news-list .news-container li a figure p.event {
            background-color: #00cc00; }
          .news-list .news-container li a figure p.other {
            background-color: #cc33cc; }
          .news-list .news-container li a figure p.member {
            background-color: #e56608; }
        .news-list .news-container li a figure img {
          transition: 0.3s;
          border-top-left-radius: 6px;
          border-top-right-radius: 6px;
          width: 100% !important;
          height: auto !important;
          position: relative;
          z-index: 9; }
      .news-list .news-container li a h3 {
        padding: 16px 16px;
        font-size: 14px;
        line-height: 24px;
        color: #333333; }
        @media only screen and (max-width: 959px) {
          .news-list .news-container li a h3 {
            padding: 8px 12px; } }
      .news-list .news-container li a em {
        display: block;
        font-style: normal;
        text-align: right;
        font-size: 12px;
        color: #666666;
        padding: 0px 16px 0px 16px; }
        @media only screen and (max-width: 959px) {
          .news-list .news-container li a em {
            padding: 0px 12px 0px 12px; } }

.hina .pankuzu {
  width: 100%;
  background-color: #e7e7e7;
  margin: 0px 0px 64px 0px; }
  @media only screen and (max-width: 959px) {
    .hina .pankuzu {
      margin: 0px 0px 32px 0px; } }
  .hina .pankuzu ul {
    padding: 0px 0px 0px 18px; }
    @media only screen and (max-width: 959px) {
      .hina .pankuzu ul {
        padding: 0px 0px 0px 12px; } }
    .hina .pankuzu ul li {
      display: inline-block;
      margin: 0px 16px 0px 0px;
      color: #333333;
      min-height: 32px;
      line-height: 32px; }
      @media only screen and (max-width: 959px) {
        .hina .pankuzu ul li {
          font-size: 12px;
          margin: 0px 12px 0px 0px; } }
      .hina .pankuzu ul li:last-child {
        margin: 0px 0px 0px 0px; }
      .hina .pankuzu ul li a {
        color: #333333;
        font-weight: normal;
        display: block;
        padding: 0px 25px 0px 0px;
        background-image: url("../img/base/pankuzu-arrow.svg");
        background-repeat: no-repeat;
        background-position: right center;
        background-size: 6px 10px; }
        @media only screen and (max-width: 959px) {
          .hina .pankuzu ul li a {
            padding: 0px 18px 0px 0px; } }

.news .date-container {
  margin: -50px 0px 32px 0px; }
  @media only screen and (max-width: 959px) {
    .news .date-container {
      margin: -20px 0px 32px 0px; } }
.news .post-password-form p {
  margin: 0px 0px 16px 0px; }
.news .post-password-form input[type="password"] {
  border: 1px solid #e56608;
  background-color: #fff;
  padding: 8px 6px;
  border-radius: 4px;
  width: 300px;
  margin: 0px 0px 16px 0px; }
.news .post-password-form input[type="submit"],
.news .post-password-form input[type="button"] {
  width: 120px;
  height: 38px;
  border: none;
  color: #fff;
  background-color: #e56608;
  padding: 4px 16px;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 4px;
  line-height: 1;
  margin: 0px 0px !important;
  display: block;
  font-size: 16px; }
.news .news-menu {
  background-color: #f0f0f0;
  border-radius: 50px;
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  padding: 12px 24px 12px 24px;
  margin: 0px 0px 32px 0px;
  font-size: 12px; }
  @media only screen and (max-width: 959px) {
    .news .news-menu {
      padding: 12px 12px 4px 12px;
      border-radius: 16px;
      display: block; } }
  .news .news-menu > span {
    width: 120px;
    color: #e56608;
    font-weight: bold;
    height: 24px;
    line-height: 24px; }
    @media only screen and (max-width: 959px) {
      .news .news-menu > span {
        width: 100%;
        margin: 0px 0px 12px 0px;
        display: block; } }
  .news .news-menu > ul {
    width: calc(100% - 120px); }
    @media only screen and (max-width: 959px) {
      .news .news-menu > ul {
        width: 100%; } }
    .news .news-menu > ul li {
      display: inline-block;
      margin: 0px 12px 0px 0px; }
      @media only screen and (max-width: 959px) {
        .news .news-menu > ul li {
          margin: 0px 12px 8px 0px; } }
      .news .news-menu > ul li a {
        display: block;
        border-radius: 16px;
        background-color: #fff;
        color: #333;
        padding: 0px 24px;
        line-height: 24px;
        height: 26px; }
        .news .news-menu > ul li a.active {
          background-color: #333333;
          color: #fff; }
        .news .news-menu > ul li a:hover {
          text-decoration: none; }
.news .main-container .main-image {
  text-align: center;
  margin: 0px 0px 64px 0px; }
  @media only screen and (max-width: 959px) {
    .news .main-container .main-image {
      margin: 0px 0px 32px 0px; } }
  .news .main-container .main-image img {
    width: 80%;
    height: auto; }
    @media only screen and (max-width: 959px) {
      .news .main-container .main-image img {
        width: 100%; } }
.news .main-container .main-text {
  width: 80%;
  margin: 0px auto 64px auto;
  line-height: 1.8; }
  @media only screen and (max-width: 959px) {
    .news .main-container .main-text {
      width: 100%; } }
  .news .main-container .main-text .wp-block-image {
    text-align: center; }
  .news .main-container .main-text p {
    margin-bottom: 24px; }
  .news .main-container .main-text h1.wp-block-heading, .news .main-container .main-text h2.wp-block-heading, .news .main-container .main-text h3.wp-block-heading, .news .main-container .main-text h4.wp-block-heading, .news .main-container .main-text h5.wp-block-heading, .news .main-container .main-text h6.wp-block-heading {
    color: #e56608;
    margin: 0px 0px 32px 0px;
    line-height: 1.2; }
  .news .main-container .main-text strong {
    color: #e56608;
    font-weight: bold; }
  .news .main-container .main-text .mail-regist-container {
    display: -webkit-flex;
    /* Safari */
    display: flex;
    -webkit-flex-direction: row;
    /* Safari */
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    /* Safari */
    flex-wrap: wrap;
    margin: 64px 0px 0px -32px; }
    @media only screen and (max-width: 959px) {
      .news .main-container .main-text .mail-regist-container {
        margin: 32px 0px 0px 0px; } }
    .news .main-container .main-text .mail-regist-container .regist, .news .main-container .main-text .mail-regist-container .member {
      width: calc(50% - 32px);
      margin: 0px 0px 0px 32px; }
      @media only screen and (max-width: 959px) {
        .news .main-container .main-text .mail-regist-container .regist, .news .main-container .main-text .mail-regist-container .member {
          width: 100%;
          margin: 0px 0px 32px 0px; } }
      .news .main-container .main-text .mail-regist-container .regist span, .news .main-container .main-text .mail-regist-container .member span {
        display: block;
        margin: 0px 0px 0px 0px; }
      .news .main-container .main-text .mail-regist-container .regist figure a, .news .main-container .main-text .mail-regist-container .member figure a {
        display: block; }
        .news .main-container .main-text .mail-regist-container .regist figure a:hover, .news .main-container .main-text .mail-regist-container .member figure a:hover {
          opacity: 0.8; }
        .news .main-container .main-text .mail-regist-container .regist figure a img, .news .main-container .main-text .mail-regist-container .member figure a img {
          border: 5px solid #cacaca;
          width: 100%;
          max-width: 448px;
          height: auto; }
  @media only screen and (max-width: 959px) {
    .news .main-container .main-text .wp-block-media-text .wp-block-media-text__media {
      margin: 0px 0px 16px 0px; } }
.news .post-navigation .screen-reader-text {
  display: none; }
.news .post-navigation .nav-links {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  padding: 32px 0px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc; }
  .news .post-navigation .nav-links a {
    color: #333;
    font-size: 12px; }
    .news .post-navigation .nav-links a .meta-nav {
      display: none; }
    .news .post-navigation .nav-links a br {
      display: none; }
  .news .post-navigation .nav-links .nav-previous {
    width: 50%;
    text-align: left;
    background-image: url("../img/base/prev-btn.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 10px 9px;
    padding: 0px 0px 3px 16px; }
    @media only screen and (max-width: 959px) {
      .news .post-navigation .nav-links .nav-previous {
        width: 100%;
        margin: 0px 0px 16px 0px; } }
  .news .post-navigation .nav-links .nav-next {
    width: 50%;
    text-align: right;
    background-image: url("../img/base/next-btn.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 10px 9px;
    padding: 0px 16px 3px 0px; }
    @media only screen and (max-width: 959px) {
      .news .post-navigation .nav-links .nav-next {
        width: 100%; } }
.news .pagination {
  width: 100%;
  text-align: center; }
  .news .pagination .page-numbers {
    border-radius: 4px;
    background-color: #f2f2f2;
    padding: 6px 8px;
    margin: 0px 1px;
    color: #333 !important; }
    .news .pagination .page-numbers .svg-icon {
      display: none; }
    .news .pagination .page-numbers span {
      display: none; }
    .news .pagination .page-numbers.prev {
      padding: 6px 12px 6px 12px;
      background-image: url("../img/base/prev-btn.svg");
      background-position: center center;
      background-size: 10px 9px;
      background-repeat: no-repeat;
      margin: 0px 4px; }
    .news .pagination .page-numbers.next {
      padding: 6px 12px 6px 12px;
      background-image: url("../img/base/next-btn.svg");
      background-position: center center;
      background-size: 10px 9px;
      background-repeat: no-repeat;
      margin: 0px 4px; }

.gallery .gallery-list .select-menu {
  text-align: right; }
  .gallery .gallery-list .select-menu select {
    max-width: 260px;
    width: 100%;
    height: 60px;
    font-size: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../img/base/select-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding: 0px 0px 0px 9px !important;
    margin: 0px 0px 64px 0px;
    border: 1px solid #000;
    background-color: #000;
    color: #fff; }
    @media only screen and (max-width: 959px) {
      .gallery .gallery-list .select-menu select {
        width: 100%;
        margin: 0px 0px 32px 0px;
        font-size: 16px; } }
  .gallery .gallery-list .select-menu select.form01 {
    max-width: 100% !important; }
  .gallery .gallery-list .select-menu select::-ms-expand {
    display: none; }
.gallery .gallery-list .list-container {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px 64px 0px; }
  .gallery .gallery-list .list-container h3 {
    font-size: 30px;
    font-weight: bold;
    width: 105px;
    border-left: 1px solid #333333;
    color: #333;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    padding: 0px 0px 0px 8px; }
    @media only screen and (max-width: 959px) {
      .gallery .gallery-list .list-container h3 {
        width: 42px;
        font-size: 20px; } }
  .gallery .gallery-list .list-container .list-inner {
    width: calc(100% - 105px); }
    @media only screen and (max-width: 959px) {
      .gallery .gallery-list .list-container .list-inner {
        width: calc(100% - 42px); } }
    .gallery .gallery-list .list-container .list-inner > ul {
      display: -webkit-flex;
      /* Safari */
      display: flex;
      -webkit-flex-direction: row;
      /* Safari */
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      /* Safari */
      flex-wrap: wrap;
      margin: 0px 0px 0px -20px; }
      @media only screen and (max-width: 959px) {
        .gallery .gallery-list .list-container .list-inner > ul {
          margin: 0px 0px 0px -10px; } }
      .gallery .gallery-list .list-container .list-inner > ul li {
        width: calc(25% - 20px);
        margin: 0px 0px 32px 20px; }
        @media only screen and (max-width: 959px) {
          .gallery .gallery-list .list-container .list-inner > ul li {
            margin: 0px 0px 24px 10px;
            width: calc(50% - 10px); } }
        .gallery .gallery-list .list-container .list-inner > ul li a {
          color: #333333;
          font-weight: bold; }
          .gallery .gallery-list .list-container .list-inner > ul li a:hover {
            text-decoration: none; }
            .gallery .gallery-list .list-container .list-inner > ul li a:hover figure {
              border: 6px solid #e56608; }
              @media only screen and (max-width: 959px) {
                .gallery .gallery-list .list-container .list-inner > ul li a:hover figure {
                  border: 4px solid #e56608; } }
            .gallery .gallery-list .list-container .list-inner > ul li a:hover img {
              transform: scale(1.1); }
        .gallery .gallery-list .list-container .list-inner > ul li h4 {
          font-size: 14px;
          margin: 0px 0px 11px 0px; }
          @media only screen and (max-width: 959px) {
            .gallery .gallery-list .list-container .list-inner > ul li h4 {
              margin: 0px 0px 6px 0px;
              font-size: 10px; } }
        .gallery .gallery-list .list-container .list-inner > ul li figure {
          overflow: hidden;
          border: 6px solid #333;
          transition: 0.3s;
          margin: 0px 0px 0px 0px !important; }
          @media only screen and (max-width: 959px) {
            .gallery .gallery-list .list-container .list-inner > ul li figure {
              border: 4px solid #333; } }
          .gallery .gallery-list .list-container .list-inner > ul li figure img {
            width: 100%;
            transition: 0.3s; }
.gallery .gallery-detail .detail-inner {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px 0px -20px; }
  @media only screen and (max-width: 959px) {
    .gallery .gallery-detail .detail-inner {
      margin: 0px 0px 0px -10px; } }
  .gallery .gallery-detail .detail-inner li {
    width: calc(25% - 20px);
    margin: 0px 0px 32px 20px; }
    @media only screen and (max-width: 959px) {
      .gallery .gallery-detail .detail-inner li {
        margin: 0px 0px 10px 10px;
        width: calc(50% - 10px); } }
    .gallery .gallery-detail .detail-inner li a {
      color: #333333;
      font-weight: bold; }
      .gallery .gallery-detail .detail-inner li a:hover {
        text-decoration: none; }
        .gallery .gallery-detail .detail-inner li a:hover figure {
          border: 6px solid #e56608; }
          @media only screen and (max-width: 959px) {
            .gallery .gallery-detail .detail-inner li a:hover figure {
              border: 4px solid #e56608; } }
        .gallery .gallery-detail .detail-inner li a:hover img {
          transform: scale(1.1); }
    .gallery .gallery-detail .detail-inner li h4 {
      font-size: 14px;
      margin: 0px 0px 11px 0px; }
      @media only screen and (max-width: 959px) {
        .gallery .gallery-detail .detail-inner li h4 {
          font-size: 12px; } }
    .gallery .gallery-detail .detail-inner li figure {
      overflow: hidden;
      border: 6px solid #333;
      transition: 0.3s;
      margin: 0px 0px 0px 0px !important; }
      @media only screen and (max-width: 959px) {
        .gallery .gallery-detail .detail-inner li figure {
          border: 4px solid #333; } }
      .gallery .gallery-detail .detail-inner li figure img {
        width: 100%;
        transition: 0.3s; }

.teaminfo .pankuzu {
  margin-bottom: 0px; }
.teaminfo .mv-container {
  position: relative;
  margin: 0px 0px 96px 0px; }
  @media only screen and (max-width: 959px) {
    .teaminfo .mv-container {
      margin: 0px 0px 32px 0px; } }
  .teaminfo .mv-container figure {
    position: relative;
    z-index: 100; }
    .teaminfo .mv-container figure img {
      width: 100%; }
  .teaminfo .mv-container h2 {
    position: absolute;
    width: 1180px;
    margin: 0px auto;
    z-index: 101;
    top: 64px;
    left: calc(50% - 590px); }
    @media only screen and (max-width: 959px) {
      .teaminfo .mv-container h2 {
        display: none; } }
.teaminfo .member dl {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px 32px 0px; }
  .teaminfo .member dl dt {
    width: 293px; }
    @media only screen and (max-width: 959px) {
      .teaminfo .member dl dt {
        width: 100%; } }
    .teaminfo .member dl dt img {
      width: 100%; }
  .teaminfo .member dl dd {
    width: calc(100% - 293px);
    background-color: #000;
    position: relative;
    padding: 32px 46px; }
    @media only screen and (max-width: 959px) {
      .teaminfo .member dl dd {
        width: 100%;
        padding: 24px 16px; } }
    .teaminfo .member dl dd::after {
      content: "";
      position: absolute;
      width: 6px;
      height: 100%;
      top: 0px;
      left: 0;
      background-image: url("../img/team-info/line-bg.gif");
      background-repeat: repeat; }
    .teaminfo .member dl dd strong {
      font-weight: normal;
      color: #e56608;
      font-size: 16px;
      display: block;
      margin: 0px 0px 16px 0px; }
    .teaminfo .member dl dd h4 {
      font-size: 24px;
      color: #fff;
      font-weight: normal;
      margin: 0px 0px 32px 0px; }
    .teaminfo .member dl dd p {
      font-size: 14px;
      line-height: 1.8;
      color: #fff; }

.result .schedule-contaioner ul {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px -24px -32px; }
  @media only screen and (max-width: 959px) {
    .result .schedule-contaioner ul {
      margin: 0px 0px -16px 0px; } }
  .result .schedule-contaioner ul li {
    width: calc(33.3% - 32px);
    margin: 0px 0px 24px 32px; }
    @media only screen and (max-width: 959px) {
      .result .schedule-contaioner ul li {
        width: 100%;
        margin: 0px 0px 16px 0px; } }
    .result .schedule-contaioner ul li a {
      display: block; }
      .result .schedule-contaioner ul li a:hover {
        text-decoration: none; }
        .result .schedule-contaioner ul li a:hover dt {
          background-color: #e56608; }
      .result .schedule-contaioner ul li a.clickoff {
        cursor: default; }
    .result .schedule-contaioner ul li dl {
      width: 100%;
      height: 100%;
      display: -webkit-flex;
      /* Safari */
      display: flex;
      -webkit-flex-direction: row;
      /* Safari */
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      /* Safari */
      flex-wrap: wrap; }
      .result .schedule-contaioner ul li dl dt {
        width: 80px;
        background-color: #000;
        padding: 12px 6px;
        transition: 0.3s; }
        .result .schedule-contaioner ul li dl dt strong {
          display: block;
          text-align: center;
          font-size: 12px;
          color: #fff;
          font-weight: normal;
          margin: 0px 0px 12px 0px; }
        .result .schedule-contaioner ul li dl dt figure {
          text-align: center;
          margin: 0px 0px 0px 0px !important; }
          .result .schedule-contaioner ul li dl dt figure img {
            width: auto;
            height: 40px; }
      .result .schedule-contaioner ul li dl dd {
        width: calc(100% - 80px);
        border-right: 1px solid #cacaca;
        border-top: 1px solid #cacaca;
        border-bottom: 1px solid #cacaca;
        background-color: #fff;
        display: -webkit-flex;
        /* Safari */
        display: flex;
        -webkit-flex-direction: row;
        /* Safari */
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        /* Safari */
        flex-wrap: wrap;
        align-items: center; }
        .result .schedule-contaioner ul li dl dd.hidden {
          background-color: #cccccc; }
        .result .schedule-contaioner ul li dl dd > div {
          padding: 0px 12px 0px 12px;
          color: #333; }
          .result .schedule-contaioner ul li dl dd > div em {
            font-size: 12px;
            font-style: normal;
            display: inline-block;
            margin: 0px 12px 0px 0px; }
          .result .schedule-contaioner ul li dl dd > div p {
            font-size: 14px;
            display: inline-block; }
          .result .schedule-contaioner ul li dl dd > div h4 {
            margin: 12px 0px 0px 0px;
            color: #333;
            font-weight: bold; }
.result .result-contaioner > ul {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px -24px -24px; }
  @media only screen and (max-width: 959px) {
    .result .result-contaioner > ul {
      margin: 0px 0px -12px -12px; } }
  .result .result-contaioner > ul li {
    width: calc(25% - 24px);
    margin: 0px 0px 24px 24px;
    position: relative; }
    @media only screen and (max-width: 959px) {
      .result .result-contaioner > ul li {
        width: calc(50% - 12px);
        margin: 0px 0px 12px 12px; } }
    .result .result-contaioner > ul li::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: #000000;
      opacity: 0.7;
      z-index: 2; }
    .result .result-contaioner > ul li figure {
      z-index: 1;
      margin: 0px 0px 0px 0px; }
      .result .result-contaioner > ul li figure img {
        width: 100%; }
    .result .result-contaioner > ul li em {
      position: absolute;
      z-index: 3;
      display: inline-block;
      background-color: #000;
      color: #fff;
      font-size: 12px;
      font-style: normal;
      left: 0;
      top: 0;
      padding: 6px 8px; }
      @media only screen and (max-width: 959px) {
        .result .result-contaioner > ul li em {
          padding: 4px 6px; } }
    .result .result-contaioner > ul li p {
      position: absolute;
      z-index: 4;
      color: #fff;
      font-size: 14px;
      line-height: 20px;
      left: 0;
      bottom: 0;
      padding: 0px 0px 12px 12px; }
      @media only screen and (max-width: 959px) {
        .result .result-contaioner > ul li p {
          font-size: 12px;
          line-height: 18px; } }
@media only screen and (max-width: 959px) {
  .result .ranking-contaioner .table-container {
    overflow-x: scroll; } }
.result .ranking-contaioner table.results {
  border-collapse: collapse;
  width: 100%; }
  @media only screen and (max-width: 959px) {
    .result .ranking-contaioner table.results {
      width: 600px; } }
  .result .ranking-contaioner table.results tr th, .result .ranking-contaioner table.results tr td {
    border: 1px solid #cecece;
    padding: 4px 8px;
    font-size: 14px;
    line-height: 1.2; }
    @media only screen and (max-width: 959px) {
      .result .ranking-contaioner table.results tr th, .result .ranking-contaioner table.results tr td {
        font-size: 12px;
        padding: 4px 4px; } }
    .result .ranking-contaioner table.results tr th h6, .result .ranking-contaioner table.results tr td h6 {
      font-size: 14px;
      font-weight: normal; }
      @media only screen and (max-width: 959px) {
        .result .ranking-contaioner table.results tr th h6, .result .ranking-contaioner table.results tr td h6 {
          font-size: 12px; } }
  .result .ranking-contaioner table.results tr th {
    background-color: #000;
    color: #fff; }
  .result .ranking-contaioner table.results tr.teamkunimitsu td {
    background-color: #e56608;
    color: #fff; }

body.company .top {
  padding: 0px 0px 64px 0px;
  margin: 0px 0px 64px 0px;
  border-bottom: 1px solid #cccccc; }
  body.company .top .main-img {
    width: 100%; }
  @media only screen and (max-width: 959px) {
    body.company .top {
      margin: 0px 0px 32px 0px;
      padding: 0px 0px 32px 0px; } }
  body.company .top .container {
    background-image: url("../img/company/main.jpg");
    background-size: cover;
    background-position: left center;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    -webkit-flex-direction: row;
    /* Safari */
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    /* Safari */
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 24px; }
    @media only screen and (max-width: 959px) {
      body.company .top .container {
        padding: 0px 0px 0px 0px;
        background-image: none; } }
    body.company .top .container .inner {
      width: 50%;
      background-color: rgba(0, 0, 0, 0.78);
      padding: 32px 32px; }
      @media only screen and (max-width: 959px) {
        body.company .top .container .inner {
          width: 100%;
          background-color: #000; } }
      body.company .top .container .inner p {
        color: #fff;
        line-height: 24px;
        margin: 0px 0px 32px 0px; }
      body.company .top .container .inner figure img {
        width: 246px;
        height: 36px; }
body.company .middle {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px 64px 0px;
  padding: 0px 0px 64px 0px;
  border-bottom: 1px solid #cccccc; }
  @media only screen and (max-width: 959px) {
    body.company .middle {
      margin: 0px 0px 32px 0px;
      padding: 0px 0px 32px 0px; } }
  body.company .middle .left {
    width: calc(50% - 16px);
    margin: 0px 16px 0px 0px;
    background-color: #f7f7f7;
    padding: 32px 32px; }
    @media only screen and (max-width: 959px) {
      body.company .middle .left {
        width: 100%;
        margin: 0px 0px 24px 0px; } }
    body.company .middle .left dl {
      border-bottom: 1px solid #cccccc;
      display: -webkit-flex;
      /* Safari */
      display: flex;
      -webkit-flex-direction: row;
      /* Safari */
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      /* Safari */
      flex-wrap: wrap;
      padding: 0px 0px 20px 0px;
      margin: 0px 0px 20px 0px;
      line-height: 20px; }
      body.company .middle .left dl dt {
        width: 140px;
        font-weight: bold; }
      body.company .middle .left dl dd {
        width: calc(100% - 140px); }
      body.company .middle .left dl:nth-last-child(1) {
        border-bottom: none;
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 0px 0px; }
  body.company .middle .right {
    width: calc(50% - 16px);
    margin: 0px 0px 0px 16px; }
    @media only screen and (max-width: 959px) {
      body.company .middle .right {
        width: 100%;
        height: 300px;
        margin: 0px 0px 0px 0px; } }
    body.company .middle .right .inner {
      height: 100%; }
body.company .bottom ul {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px 0px -32px; }
  @media only screen and (max-width: 959px) {
    body.company .bottom ul {
      margin: 0px 0px 0px 0px; } }
  body.company .bottom ul li {
    width: calc(33.3% - 32px);
    margin: 0px 0px 0px 32px; }
    @media only screen and (max-width: 959px) {
      body.company .bottom ul li {
        width: 100%;
        margin: 0px 0px 24px 0px; }
        body.company .bottom ul li:last-child {
          margin: 0px 0px 0px 0px; } }
    body.company .bottom ul li a {
      display: block;
      overflow: hidden;
      border: 5px solid #cacaca; }
      body.company .bottom ul li a img {
        width: 100%;
        transition: 0.3s; }
      body.company .bottom ul li a:hover {
        border: 5px solid #e56608; }
        body.company .bottom ul li a:hover img {
          transform: scale(1.03); }
    body.company .bottom ul li:last-child a {
      border: 5px solid #a82e2e; }
      body.company .bottom ul li:last-child a:hover {
        border: 5px solid #611f1f; }
body.company .x-container {
  margin: 0px 0 64px 0;
  padding: 0px 0px 64px 0px;
  border-bottom: 1px solid #cccccc; }
  body.company .x-container .inner {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    height: 600px;
    overflow-y: scroll; }
  @media only screen and (max-width: 959px) {
    body.company .x-container {
      margin: 0px 0px 32px 0px;
      padding: 0px 0px 32px 0px; } }

body.privacy-policy .base-center-container .wp-block-heading {
  margin: 0px 0px 12px 0px; }
body.privacy-policy .base-center-container > p {
  margin: 0px 0px 24px 0px;
  line-height: 1.8; }

body.contact .base-center-container dl {
  margin: 0px 0px 32px 0px; }
  body.contact .base-center-container dl dt {
    display: block;
    margin: 0px 0px 12px 0px; }
    body.contact .base-center-container dl dt span {
      display: inline-block;
      background-color: #BC1A1C;
      color: #fff;
      margin: 0px 0px 0px 12px;
      font-size: 0.8rem;
      padding: 4px 4px; }
  body.contact .base-center-container dl dd input[type="text"],
  body.contact .base-center-container dl dd input[type="tel"],
  body.contact .base-center-container dl dd input[type="email"],
  body.contact .base-center-container dl dd textarea {
    border: 1px solid #e56608;
    background-color: #fff;
    padding: 8px 6px;
    border-radius: 4px;
    width: 100%; }
  body.contact .base-center-container dl dd select {
    max-width: 190px;
    width: 100%;
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../img/contact/select.svg");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding: 0px 0px 0px 9px !important;
    border-radius: 4px;
    border: 1px solid #e56608;
    background-color: #fff; }
  body.contact .base-center-container dl dd select.form01 {
    max-width: 100% !important; }
  body.contact .base-center-container dl dd select::-ms-expand {
    display: none; }
  body.contact .base-center-container dl dd input[type="checkbox"] {
    margin: 0px 4px 0px 0px; }
  body.contact .base-center-container dl dd .wpcf7-list-item {
    margin: 0px 0px 12px 0px !important;
    display: inline-block; }
  body.contact .base-center-container dl dd .wpcf7-list-item-label {
    margin: 0px 24px 0px 0px; }
  body.contact .base-center-container dl dd input[type="radio"] {
    margin: 0px 4px 0px 0px; }
  body.contact .base-center-container dl dd .wpcf7-not-valid-tip {
    padding: 12px 0px 0px 0px; }
body.contact .base-center-container input[type="submit"] {
  width: 180px;
  height: 48px;
  border: none;
  color: #fff;
  background-color: #e56608;
  padding: 8px 16px;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 4px;
  line-height: 1;
  margin: 0px auto !important;
  display: block; }

body.partners footer .footer-top h3 {
  display: none; }
body.partners footer .footer-middle {
  display: none; }
body.partners .partners-list {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  margin: 0px 0px 32px -32px; }
  @media only screen and (max-width: 959px) {
    body.partners .partners-list {
      margin: 0px 0px 0px 0px; } }
  body.partners .partners-list li {
    width: calc(50% - 32px);
    margin: 0px 0px 64px 32px;
    padding: 0px 0px 64px 0px;
    text-align: center;
    border-bottom: 1px solid #e4e4e4;
    display: flex;
    align-items: flex-end; }
    @media only screen and (max-width: 959px) {
      body.partners .partners-list li {
        width: 100%;
        margin: 0px 0px 32px 0px;
        padding: 0px 0px 32px 0px; } }
    @media only screen and (max-width: 959px) {
      body.partners .partners-list li.spHidden {
        display: none; } }
    body.partners .partners-list li div {
      width: 100%; }
    body.partners .partners-list li img {
      max-width: 200px;
      width: 100%; }
      body.partners .partners-list li img.min280 {
        max-width: 280px; }
      body.partners .partners-list li img.min180 {
        max-width: 180px; }
      body.partners .partners-list li img.min170 {
        max-width: 170px; }
      body.partners .partners-list li img.min160 {
        max-width: 160px; }
      body.partners .partners-list li img.min150 {
        max-width: 150px; }
      body.partners .partners-list li img.min140 {
        max-width: 140px; }
      body.partners .partners-list li img.min130 {
        max-width: 130px; }
      body.partners .partners-list li img.min120 {
        max-width: 120px; }
    body.partners .partners-list li a {
      display: block;
      margin: 32px 0px 0px 0px;
      color: #333;
      font-size: 18px; }
body.partners .partners-contact {
  text-align: center; }
  body.partners .partners-contact h3 {
    font-size: 24px;
    margin: 0px 0px 24px 0px; }
    @media only screen and (max-width: 959px) {
      body.partners .partners-contact h3 {
        font-size: 18px;
        line-height: 1.4; } }
  body.partners .partners-contact p {
    line-height: 1.8;
    margin: 0px 0px 32px 0px; }
  body.partners .partners-contact a {
    display: block;
    width: 100%;
    max-width: 400px;
    font-size: 24px;
    padding: 24px 0px;
    margin: 0px auto;
    line-height: 1.4;
    border-radius: 12px;
    color: #fff;
    background-color: #e56608; }
    @media only screen and (max-width: 959px) {
      body.partners .partners-contact a {
        font-size: 16px;
        padding: 16px 0px; } }
    body.partners .partners-contact a:hover {
      text-decoration: none;
      opacity: 0.7; }

body.report .main-text .inner {
  display: flex;
  flex-direction: column;
  width: 100%; }
  body.report .main-text .inner .tab-menu {
    width: 100%;
    border-bottom: 1px solid #999999;
    position: relative;
    margin: 0px 0px 34px 0px;
    order: 0; }
    @media only screen and (max-width: 959px) {
      body.report .main-text .inner .tab-menu {
        margin: 0px 0px 16px 0px; } }
    body.report .main-text .inner .tab-menu::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -4px;
      left: 0;
      background-color: #999999; }
    body.report .main-text .inner .tab-menu li {
      display: inline-block;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px;
      border-left: 1px solid #999999;
      border-right: 1px solid #999999;
      border-top: 1px solid #999999;
      margin: 0px 32px 0px 0px;
      font-size: 24px;
      line-height: 1; }
      @media only screen and (max-width: 959px) {
        body.report .main-text .inner .tab-menu li {
          font-size: 14px;
          margin: 0px 4px 0px 0px; } }
      body.report .main-text .inner .tab-menu li.page-none {
        color: #fff;
        background-color: #aeaeae;
        padding: 20px 20px; }
        @media only screen and (max-width: 959px) {
          body.report .main-text .inner .tab-menu li.page-none {
            padding: 6px 8px; } }
      body.report .main-text .inner .tab-menu li a {
        display: block;
        padding: 20px 20px;
        color: #e56608;
        background-color: #fff;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px; }
        @media only screen and (max-width: 959px) {
          body.report .main-text .inner .tab-menu li a {
            padding: 6px 6px; } }
        body.report .main-text .inner .tab-menu li a.active {
          color: #fff;
          background-color: #e56608; }
        body.report .main-text .inner .tab-menu li a:hover {
          opacity: 0.7;
          text-decoration: none; }
  body.report .main-text .inner .tournament-header {
    width: 100%;
    order: 1;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    -webkit-flex-direction: row;
    /* Safari */
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    /* Safari */
    flex-wrap: wrap;
    background-color: #000;
    margin: 0px 0px 32px 0px;
    position: relative; }
    body.report .main-text .inner .tournament-header em {
      display: inline-block;
      color: #fff;
      background-color: #e56608;
      position: absolute;
      right: 0;
      top: 0;
      font-style: normal;
      padding: 6px 12px; }
    body.report .main-text .inner .tournament-header .map {
      width: 150px;
      padding: 30px 30px; }
      @media only screen and (max-width: 959px) {
        body.report .main-text .inner .tournament-header .map {
          width: 100%;
          text-align: center; } }
      body.report .main-text .inner .tournament-header .map img {
        width: 100%; }
        @media only screen and (max-width: 959px) {
          body.report .main-text .inner .tournament-header .map img {
            width: 40%; } }
    body.report .main-text .inner .tournament-header .right-inner {
      padding: 30px 30px 30px 0px;
      width: calc(100% - 150px);
      color: #fff; }
      @media only screen and (max-width: 959px) {
        body.report .main-text .inner .tournament-header .right-inner {
          width: 100%;
          padding: 0px 10px 20px 10px; } }
      body.report .main-text .inner .tournament-header .right-inner h3 {
        color: #e56608;
        font-size: 24px;
        margin: 0px 0px 16px 0px; }
        @media only screen and (max-width: 959px) {
          body.report .main-text .inner .tournament-header .right-inner h3 {
            font-size: 18px; } }
      body.report .main-text .inner .tournament-header .right-inner P span {
        display: inline-block;
        line-height: 1.6;
        margin: 0px 32px 0px 0px; }
        @media only screen and (max-width: 959px) {
          body.report .main-text .inner .tournament-header .right-inner P span {
            display: block;
            margin: 0px 0px 0px 0px; } }
  body.report .main-text .inner .body-text {
    order: 2;
    width: 100%;
    margin: 0px 0px 64px 0px; }
    @media only screen and (max-width: 959px) {
      body.report .main-text .inner .body-text {
        margin: 0px 0px 32px 0px; } }
    body.report .main-text .inner .body-text h1.wp-block-heading, body.report .main-text .inner .body-text h2.wp-block-heading, body.report .main-text .inner .body-text h3.wp-block-heading, body.report .main-text .inner .body-text h4.wp-block-heading, body.report .main-text .inner .body-text h5.wp-block-heading, body.report .main-text .inner .body-text h6.wp-block-heading {
      color: #e56608;
      margin: 0px 0px 32px 0px;
      line-height: 1.2; }
    body.report .main-text .inner .body-text > p {
      margin: 0px 0px 24px 0px;
      line-height: 1.8; }
  body.report .main-text .inner .member-comment {
    order: 3;
    width: 100%;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    -webkit-flex-direction: row;
    /* Safari */
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    /* Safari */
    flex-wrap: wrap; }
    body.report .main-text .inner .member-comment dl {
      display: -webkit-flex;
      /* Safari */
      display: flex;
      -webkit-flex-direction: row;
      /* Safari */
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      /* Safari */
      flex-wrap: wrap;
      margin: 0px 0px 32px 0px; }
      body.report .main-text .inner .member-comment dl dt {
        width: 300px; }
        @media only screen and (max-width: 959px) {
          body.report .main-text .inner .member-comment dl dt {
            width: 100%;
            margin: 0px 0px 16px 0px; } }
        body.report .main-text .inner .member-comment dl dt img {
          width: 100%; }
      body.report .main-text .inner .member-comment dl dd {
        width: calc(100% - 300px);
        padding: 0px 0px 0px 32px; }
        @media only screen and (max-width: 959px) {
          body.report .main-text .inner .member-comment dl dd {
            width: 100%;
            padding: 0px 0px 0px 0px; } }
        body.report .main-text .inner .member-comment dl dd strong {
          display: block;
          font-size: 18px;
          font-weight: bold;
          color: #e56608;
          margin: 0px 0px 16px 0px; }
        body.report .main-text .inner .member-comment dl dd p {
          line-height: 1.6; }

body.member-input .base-center-container p {
  line-height: 1.8; }
body.member-input .base-center-container input[type="text"] {
  border: 1px solid #e56608;
  background-color: #fff;
  padding: 8px 6px;
  border-radius: 4px;
  width: 100%; }
body.member-input .base-center-container input[type="submit"],
body.member-input .base-center-container input[type="button"] {
  width: 120px;
  height: 38px;
  border: none;
  color: #fff;
  background-color: #e56608;
  padding: 4px 16px;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 4px;
  line-height: 1;
  margin: 0px 0px !important;
  display: block;
  font-size: 16px; }
body.member-input .base-center-container .btn-set li {
  display: inline-block;
  margin: 0px 0px 0px 0px; }
  body.member-input .base-center-container .btn-set li:first-child {
    margin: 0px 16px 16px 0px; }
