@charset "UTF-8";
/*
Theme Name: Coppa Fagiano U-13
Description: Coppa Fagiano U-13のテーマ
Version: 1.0.0
*/
:root {
  --cl-pri: #333;
  --cl-ac: #ce0041;
}

/* --- reset.css --- */
/* === 使わないセレクタは消去する --- */
/* --- reset.css --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main {
  display: block;
}

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

body figure {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

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

/* --- reset.cssここまで --- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus-visible {
  outline: 1px solid transparent;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  color: var(--cl-pri);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  word-break: break-all;
  line-break: strict;
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  body {
    font-size: 14px;
  }
}
ul {
  list-style: none;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.container {
  margin: 0 auto;
  max-width: 100%;
}

a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1199px) {
  a:hover {
    opacity: 1;
  }
}
a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 758px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
button,
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  cursor: pointer;
}

::-webkit-file-upload-button {
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
}

.btn,
::file-selector-button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* ===================================

  下層メインっビジュアル

====================================== */
.l-mv {
  margin-top: 100px;
}
.l-mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 380px;
  background-image: url(img/l-mv-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.l-mv__title {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .l-mv {
    margin-top: 60px;
  }
  .l-mv__inner {
    height: 250px;
  }
  .l-mv__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 758px) {
  .l-mv__inner {
    height: 180px;
  }
  .l-mv__title {
    font-size: 20px;
  }
}
/* ===================================

  パンくずリスト

====================================== */
.breadcrumb-wrap {
  background-color: #ccc;
  padding: 6px 0;
  word-break: break-all;
}
.breadcrumb-wrap .breadcrumb {
  width: 1260px;
  padding: 0 30px;
  max-width: 100%;
  margin: 0 auto;
}
.breadcrumb-wrap .breadcrumb span {
  position: relative;
  top: -0.05em;
  font-size: 12px;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .breadcrumb-wrap {
    padding: 5px 0;
  }
  .breadcrumb-wrap .breadcrumb {
    width: 100%;
    padding: 0 30px;
  }
  .breadcrumb-wrap .breadcrumb span {
    font-size: 11px;
  }
}
@media screen and (max-width: 758px) {
  .breadcrumb-wrap {
    padding: 3px 0;
  }
  .breadcrumb-wrap .breadcrumb {
    padding: 0 20px;
  }
}
/* ===================================

  ページネーション

====================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.pagination-wrap {
  margin-top: 80px;
}
.pagination-wrap .pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pagination-wrap .pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 5px;
  width: 50px;
  height: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #ccc;
}
.pagination-wrap .pagination .page-numbers.current, .pagination-wrap .pagination .page-numbers:hover {
  opacity: 1;
  background-color: var(--cl-ac);
  color: #fff;
  border: 1px solid var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .pagination-wrap {
    margin-top: 60px;
  }
  .pagination-wrap .pagination .page-numbers {
    margin: 0 3px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .pagination-wrap .pagination .page-numbers:hover {
    background-color: transparent;
    color: var(--cl-pri);
    border: #ccc;
  }
}
@media screen and (max-width: 758px) {
  .pagination-wrap {
    margin-top: 50px;
  }
  .pagination-wrap .pagination .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
/* ===================================

  ヘッダー

====================================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header.active {
  -webkit-box-shadow: 0 10px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 5px rgba(0, 0, 0, 0.15);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100px;
  padding: 0 60px;
}
.header-logo {
  width: 120px;
}
.header-logo__link, .header-logo__img {
  display: block;
  width: 100%;
}
.header .g-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header .g-nav .menu-item {
  padding: 25px 0;
}
.header .g-nav .menu-item + .menu-item {
  margin-left: 50px;
}
.header .g-nav .menu-item a {
  font-size: 16px;
  font-weight: 500;
}
.header .g-nav .menu-item-has-children {
  position: relative;
}
.header .g-nav .menu-item-has-children > a {
  pointer-events: none;
}
.header .g-nav .menu-item-has-children .sub-menu {
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 65px;
  left: 50%;
  padding: 20px;
  min-width: 230px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--cl-ac);
  z-index: 50;
}
.header .g-nav .menu-item-has-children .sub-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 10px 12px 10px;
  border-color: transparent transparent var(--cl-ac) transparent;
}
.header .g-nav .menu-item-has-children .sub-menu .menu-item {
  width: 100%;
  margin: 0;
  padding: 0;
}
.header .g-nav .menu-item-has-children .sub-menu .menu-item + .menu-item {
  margin-top: 1em;
}
.header .g-nav .menu-item-has-children .sub-menu a {
  display: block;
  width: 100%;
  padding: 0;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}
.header .g-nav .menu-item-has-children:hover .sub-menu {
  display: block;
}

.single .header {
  -webkit-box-shadow: 0 10px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 5px rgba(0, 0, 0, 0.15);
}

.menu-btn {
  display: none;
}

@media screen and (max-width: 1199px) {
  .header__inner {
    padding: 0 0 0 30px;
    height: 60px;
  }
  .header-logo {
    width: 100px;
  }
  .header__contents {
    display: none;
  }
  .menu-btn {
    display: block;
    position: relative;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    z-index: 10;
    width: 60px;
    height: 60px;
    border: none;
    overflow: hidden;
    outline: none;
  }
  .menu-btn span {
    position: absolute;
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 18px;
    height: 2px;
    background-color: #333;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .menu-btn span:first-child {
    top: 23px;
  }
  .menu-btn span:last-of-type {
    top: 37px;
  }
  .menu-btn.active span:first-of-type {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 30px;
    left: 21px;
  }
  .menu-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-btn.active span:last-of-type {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    left: 21px;
    top: auto;
    bottom: 28px;
  }
}
@media screen and (max-width: 758px) {
  .header {
    -webkit-box-shadow: 0 5px 3px rgba(0, 0, 0, 0.15);
            box-shadow: 0 5px 3px rgba(0, 0, 0, 0.15);
  }
  .header__inner {
    padding: 0 0 0 15px;
  }
  .header-logo {
    width: 60px;
  }
  body.home .header,
  .single .header {
    -webkit-box-shadow: 0 5px 3px rgba(0, 0, 0, 0.15);
            box-shadow: 0 5px 3px rgba(0, 0, 0, 0.15);
  }
  body.home .header.active,
  .single .header.active {
    -webkit-box-shadow: 0 5px 3px rgba(0, 0, 0, 0.15);
            box-shadow: 0 5px 3px rgba(0, 0, 0, 0.15);
  }
}
/* ===================================

  ドロワーメニュー

====================================== */
.d-nav {
  display: none;
}

@media screen and (max-width: 1199px) {
  .d-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: -10;
    opacity: 0;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
  .d-nav.show {
    right: 0;
    z-index: 99;
    opacity: 1;
  }
  .d-nav__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    height: 60px;
    padding-left: 30px;
  }
  .d-nav-logo {
    width: 100px;
  }
  .d-nav-logo__link, .d-nav-logo__img {
    display: block;
    width: 100%;
  }
  .d-nav__body {
    padding: 60px 0;
  }
  .d-nav__inner {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
  .d-nav .dnav .menu-item a {
    display: block;
    padding: 16px 25px 16px 30px;
    background-image: url(img/ico/ico-arrow-right.svg);
    background-repeat: no-repeat;
    background-size: 9px 15px;
    background-position: center right 25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
  }
  .d-nav .dnav .menu-item-has-children > a {
    background-image: url(img/ico/ico-plus.svg);
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center right 25px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .d-nav .dnav .menu-item-has-children.active > a {
    background-image: url(img/ico/ico-minus.svg);
  }
  .d-nav .dnav .menu-item-has-children .menu-item {
    border-top: 1px solid #ccc;
    border-bottom: none;
    background-color: #f2f2f2;
  }
  .d-nav .dnav .menu-item-has-children .menu-item a {
    padding-left: 40px;
    font-size: 16px;
    font-weight: 400;
  }
  .d-nav .dnav .nav-list > .menu-item {
    border-top: 1px solid #ccc;
  }
  .d-nav .dnav .nav-list > .menu-item:last-child {
    border-bottom: 1px solid #ccc;
  }
}
@media screen and (max-width: 758px) {
  .d-nav__head {
    padding-left: 15px;
  }
  .d-nav-logo {
    width: 60px;
  }
  .d-nav__inner {
    max-width: 100%;
  }
}
/* ===================================

  フッター

====================================== */
.footer {
  background-color: #fff;
  border-top: 1px solid #ccc;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1080px;
  margin: 0 auto;
  padding: 85px 0 88px;
}
.footer__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 480px;
          flex: 0 0 480px;
  width: 480px;
}
.footer-logo {
  width: 360px;
}
.footer-logo__link, .footer-logo__img {
  display: block;
  width: 100%;
}
.footer__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 22px;
}
.footer-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-nav .nav-list .menu-item {
  width: 33.3333333333%;
  margin-bottom: 16px;
}
.footer-nav .nav-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
}
.footer-nav .nav-list a::before {
  content: "";
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background-image: url(img/ico/ico-link-arrow.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center center;
}
.footer-copy {
  padding: 13px 0;
  background-color: #333;
  font-size: 14px;
  color: #fff;
}
.footer-copy__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .footer__inner {
    display: block;
    width: 100%;
    max-width: 768px;
    padding: 60px 30px;
  }
  .footer__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .footer-logo {
    width: 235px;
    margin: 0 auto;
  }
  .footer__contents {
    margin-top: 50px;
    padding-top: 0;
  }
  .footer-nav .nav-list .menu-item {
    width: 25%;
    margin-bottom: 15px;
  }
  .footer-nav .nav-list a::before {
    margin-right: 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18px;
            flex: 0 0 18px;
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
  }
  .footer-copy {
    padding: 12px 0;
    font-size: 11px;
  }
  .footer-copy__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 758px) {
  .footer {
    position: relative;
    border-top: none;
  }
  .footer::before {
    content: "";
    display: block;
    top: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 40px);
    height: 1px;
    background-color: #ccc;
  }
  .footer__inner {
    max-width: 100%;
    padding: 60px 20px 45px;
  }
  .footer-logo {
    width: 165px;
  }
  .footer__contents {
    margin-top: 46px;
  }
  .footer-nav {
    padding: 0 20px;
  }
  .footer-nav .nav-list .menu-item {
    width: 50%;
    margin-bottom: 13px;
  }
  .footer-nav .nav-list .menu-item:nth-child(2n) {
    padding-left: 25px;
  }
  .footer-nav .nav-list a {
    font-size: 12px;
  }
  .footer-nav .nav-list a::before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15px;
            flex: 0 0 15px;
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
  }
  .footer-copy {
    padding: 10px 0 15px;
    font-size: 10px;
  }
  .footer-copy__inner {
    display: block;
    padding: 0 10px;
    text-align: center;
  }
  .footer-copy .notice {
    line-height: 1.5;
  }
  .footer-copy .copyright {
    margin-top: 8px;
  }
}
body:not(.home) .footer {
  border-top: none;
}
body:not(.home) .footer::before {
  display: none;
}

/* ===================================

  トップページ

====================================== */
/* ---------------------------------
  共通
----------------------------------- */
.home .main {
  padding-bottom: 160px;
}

@media screen and (max-width: 1199px) {
  .home .main {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 758px) {
  .home .main {
    padding-bottom: 60px;
  }
}
/* ---------------------------------
  メインビジュアル
----------------------------------- */
.home .mv {
  margin-top: 100px;
  width: 100%;
}
.home .mv__inner {
  width: 100%;
}
.home .mv picture,
.home .mv source,
.home .mv img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .home .mv {
    margin-top: 60px;
  }
}
/* ---------------------------------
  新着情報
----------------------------------- */
.home .news {
  padding: 180px 0;
}
.home .news .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 1080px;
}
.home .news__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 360px;
          flex: 0 0 360px;
  width: 360px;
}
.home .news .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.home .news .section-title .title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
}
.home .news .section-title .subtitle {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 500;
}
.home .news__btn {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 40px;
  width: 280px;
  height: 55px;
  background-color: var(--cl-ac);
  background-image: url(img/ico/ico-arrow-right-wh.svg);
  background-repeat: no-repeat;
  background-size: 8px 14px;
  background-position: center right 20px;
  font-size: 20px;
  color: #fff;
  border-radius: 9999px;
  z-index: 1;
}
.home .news__btn.sp {
  display: none;
}
.home .news__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.home .news__contents .entry {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.home .news__contents .entry:first-child {
  border-top: 1px solid #ccc;
}
.home .news__contents .entry__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0 14px;
  font-size: 18px;
}
.home .news__contents .entry__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 115px;
          flex: 0 0 115px;
  width: 115px;
}
.home .news__contents .entry__date {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.home .news__contents .entry__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  word-break: break-all;
}
.home .news__contents .entry__badge {
  margin-right: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--cl-ac);
}
.home .news__contents .entry__badge.sp {
  display: none;
}
.home .news__contents .entry__title {
  margin-top: -0.25em;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .home .news {
    padding: 100px 0;
  }
  .home .news .container {
    display: block;
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .news__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .home .news .section-title .title {
    font-size: 38px;
  }
  .home .news .section-title .subtitle {
    margin-top: 6px;
    font-size: 16px;
  }
  .home .news__btn {
    margin: 40px auto 0;
    width: 300px;
    height: 50px;
    font-size: 16px;
  }
  .home .news__btn.pc {
    display: none;
  }
  .home .news__btn.sp {
    display: grid;
  }
  .home .news__contents {
    width: 100%;
    margin-top: 38px;
  }
  .home .news__contents .entry {
    width: 100%;
  }
  .home .news__contents .entry__link {
    padding: 15px 0;
    font-size: 16px;
  }
  .home .news__contents .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
            flex: 0 0 110px;
    width: 110px;
  }
  .home .news__contents .entry__badge {
    margin-right: 18px;
  }
}
@media screen and (max-width: 758px) {
  .home .news {
    padding: 90px 0;
  }
  .home .news .container {
    max-width: 100%;
  }
  .home .news .section-title .title {
    font-size: 30px;
  }
  .home .news .section-title .subtitle {
    font-size: 15px;
  }
  .home .news__btn {
    width: 100%;
    max-width: 300px;
    font-size: 15px;
  }
  .home .news__contents .entry__link {
    display: block;
    padding: 15px 0 12px;
    font-size: 14px;
  }
  .home .news__contents .entry__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
            flex: 0 0 110px;
    width: 110px;
  }
  .home .news__contents .entry__date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 85px;
            flex: 0 0 85px;
    width: 85px;
  }
  .home .news__contents .entry__badge {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    white-space: nowrap;
    margin-right: 18px;
    margin-top: -0.11em;
  }
  .home .news__contents .entry__badge.pc {
    display: none;
  }
  .home .news__contents .entry__badge.sp {
    display: block;
  }
  .home .news__contents .entry__body {
    margin-top: 12px;
  }
  .home .news__contents .entry__title {
    line-height: 1.5;
  }
}
/* ===================================

  パネルリンク

====================================== */
.home .panels .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 120px;
}
.home .panels .panel {
  width: calc((100% - 60px) / 3);
}
.home .panels .panel__link {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 68.5%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home .panels .panel__link span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 1720px) {
  .home .panels .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1199px) {
  .home .panels .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .panels .panel {
    width: calc((100% - 20px) / 3);
  }
  .home .panels .panel__link span {
    white-space: nowrap;
    font-size: 18px;
  }
}
@media screen and (max-width: 758px) {
  .home .panels .container {
    display: block;
    max-width: 100%;
    padding: 0 20px;
  }
  .home .panels .panel {
    width: 100%;
  }
  .home .panels .panel + .panel {
    margin-top: 15px;
  }
}
/* ===================================

  メッセージ

====================================== */
.home .msg {
  padding: 180px 0 170px;
}
.home .msg .container {
  width: 1260px;
  padding: 0 30px;
  max-width: 100%;
}
.home .msg__logo {
  width: 540px;
  margin: 0 auto;
}
.home .msg__img {
  display: block;
  width: 100%;
}
.home .msg__contents {
  margin-top: 107px;
  text-align: center;
}
.home .msg__contents .sp {
  display: none;
}
.home .msg__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
}
.home .msg__body {
  margin-top: 60px;
}
.home .msg__body p {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
.home .msg__body p + p {
  margin-top: 2em;
}

@media screen and (max-width: 1199px) {
  .home .msg {
    padding: 100px 0;
  }
  .home .msg .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .msg__logo {
    width: 330px;
  }
  .home .msg__contents {
    margin-top: 60px;
  }
  .home .msg__title {
    font-size: 32px;
  }
  .home .msg__body {
    margin-top: 40px;
  }
  .home .msg__body p {
    font-size: 18px;
  }
}
@media screen and (max-width: 758px) {
  .home .msg {
    padding: 90px 0 55px;
  }
  .home .msg .container {
    max-width: 100%;
    padding: 0 30px;
  }
  .home .msg__logo {
    width: 235px;
  }
  .home .msg__contents {
    margin-top: 60px;
  }
  .home .msg__contents .sp {
    display: block;
  }
  .home .msg__title {
    font-size: 25px;
  }
  .home .msg__body {
    margin-top: 30px;
  }
  .home .msg__body p {
    font-size: 15px;
  }
}
/* ===================================

  会場「ファジアーノ岡山スポーツパーク寄島」について

====================================== */
.home .aboutvenue .container {
  width: 1080px;
  padding: 180px 0;
  border-top: 1px solid #ccc;
}
.home .aboutvenue__title {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  color: var(--cl-ac);
}
.home .aboutvenue__title br {
  display: none;
}
.home .aboutvenue__contents {
  margin-top: 78px;
}
.home .aboutvenue__figure, .home .aboutvenue__img {
  display: block;
  width: 100%;
}
.home .aboutvenue__body {
  padding-top: 71px;
}
.home .aboutvenue__body p {
  font-size: 18px;
  line-height: 2;
}
.home .aboutvenue__body p + p {
  margin-top: 2em;
}
.home .aboutvenue__body p a {
  color: #1a0dab;
}

@media screen and (max-width: 1199px) {
  .home .aboutvenue .container {
    width: 100%;
    max-width: 768px;
    padding: 100px 30px;
  }
  .home .aboutvenue__title {
    font-size: 26px;
  }
  .home .aboutvenue__contents {
    margin-top: 60px;
  }
  .home .aboutvenue__body {
    padding-top: 40px;
  }
  .home .aboutvenue__body p {
    font-size: 16px;
  }
  .home .aboutvenue__body p + p {
    margin-top: 1.5em;
  }
}
@media screen and (max-width: 758px) {
  .home .aboutvenue .container {
    max-width: 100%;
    padding: 60px 20px;
  }
  .home .aboutvenue__title {
    font-size: 20px;
    line-height: 1.5;
  }
  .home .aboutvenue__title br {
    display: block;
  }
  .home .aboutvenue__contents {
    margin-top: 40px;
  }
  .home .aboutvenue__body {
    padding-top: 30px;
  }
  .home .aboutvenue__body p {
    font-size: 14px;
  }
}
/* ===================================

  背景画像

====================================== */
.home .bg {
  width: 100%;
  height: 580px;
}
.home .bg__inner {
  width: 100%;
  height: 100%;
  background-image: url(img/top-bg-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 1199px) {
  .home .bg {
    height: 300px;
  }
}
@media screen and (max-width: 758px) {
  .home .bg {
    height: 240px;
  }
  .home .bg__inner {
    background-image: url(img/sp-top-bg-80.jpg);
  }
}
/* ===================================

  協賛

====================================== */
.home .sps {
  padding-top: 120px;
}
.home .sps .container {
  width: 1080px;
}
.home .sps__top .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .sps__top .item {
  width: calc((100% - 40px) / 2);
}
.home .sps__top .item + .item {
  margin-left: 40px;
}
.home .sps__top .item:nth-child(2n+1) {
  margin-left: 0;
}
.home .sps__top .item:nth-child(n+3) {
  margin-top: 40px;
}
.home .sps__top .item__link,
.home .sps__top .item img {
  width: 100%;
  height: auto;
  display: block;
}
.home .sps__btm {
  margin-top: 40px;
}
.home .sps__btm .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .sps__btm .item {
  width: calc((100% - 80px) / 3);
}
.home .sps__btm .item + .item {
  margin-left: 40px;
}
.home .sps__btm .item:nth-child(3n+1) {
  margin-left: 0;
}
.home .sps__btm .item:nth-child(n+4) {
  margin-top: 40px;
}
.home .sps__btm .item__link,
.home .sps__btm .item img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 1199px) {
  .home .sps {
    padding-top: 100px;
  }
  .home .sps .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .sps__top .item {
    width: calc((100% - 20px) / 2);
  }
  .home .sps__top .item + .item {
    margin-left: 20px;
  }
  .home .sps__top .item:nth-child(2n+1) {
    margin-left: 0;
  }
  .home .sps__top .item:nth-child(n+3) {
    margin-top: 20px;
  }
  .home .sps__btm {
    margin-top: 20px;
  }
  .home .sps__btm .item {
    width: calc((100% - 40px) / 3);
  }
  .home .sps__btm .item + .item {
    margin-left: 20px;
  }
  .home .sps__btm .item:nth-child(3n+1) {
    margin-left: 0;
  }
  .home .sps__btm .item:nth-child(n+4) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 758px) {
  .home .sps {
    padding-top: 60px;
  }
  .home .sps .container {
    max-width: 100%;
    padding: 0 30px;
  }
  .home .sps__top .items {
    display: block;
  }
  .home .sps__top .item {
    width: 100%;
  }
  .home .sps__top .item + .item {
    margin-left: 0;
  }
  .home .sps__top .item:nth-child(n+2) {
    margin-top: 12px;
  }
  .home .sps__btm {
    margin-top: 12px;
  }
  .home .sps__btm .item {
    width: calc((100% - 10px) / 2);
  }
  .home .sps__btm .item + .item {
    margin-left: 10px;
  }
  .home .sps__btm .item:nth-child(2n+1) {
    margin-left: 0;
  }
  .home .sps__btm .item:nth-child(n+3) {
    margin-top: 12px;
  }
}
/* ===================================

  会場案内

====================================== */
.page-venue {
  background-color: #f1f1f1;
}
.page-venue .main {
  padding: 100px 0 120px;
}
.page-venue .main .container {
  width: 1260px;
  padding: 0 30px;
  max-width: 100%;
}
.page-venue .main .contents {
  position: relative;
  padding: 60px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 1;
}
.page-venue .main .item + .item {
  margin-top: 90px;
}
.page-venue .main .item__title {
  padding-left: 15px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  border-left: 5px solid var(--cl-ac);
}
.page-venue .main .item__map {
  position: relative;
  margin-top: 40px;
  padding-top: 50%;
  width: 100%;
}
.page-venue .main .item__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-venue .main .item__info {
  margin-top: 40px;
}
.page-venue .main .item__info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  line-height: 2;
  border-top: 1px solid #ccc;
}
.page-venue .main .item__info dl:last-child {
  border-bottom: 1px solid #ccc;
}
.page-venue .main .item__info dt,
.page-venue .main .item__info dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-venue .main .item__info dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 185px;
          flex: 0 0 185px;
  width: 185px;
  padding: 22px 20px;
  font-weight: 500;
  background-color: #f2f2f2;
}
.page-venue .main .item__info dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 22px 35px;
}

@media screen and (max-width: 1199px) {
  .page-venue .main {
    padding: 60px 0;
  }
  .page-venue .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .page-venue .main .contents {
    padding: 50px 30px;
    border-radius: 6px;
  }
  .page-venue .main .item + .item {
    margin-top: 60px;
  }
  .page-venue .main .item__title {
    padding-left: 12px;
    font-size: 20px;
  }
  .page-venue .main .item__map {
    margin-top: 30px;
  }
  .page-venue .main .item__info {
    margin-top: 30px;
  }
  .page-venue .main .item__info dl {
    font-size: 16px;
  }
  .page-venue .main .item__info dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 170px;
            flex: 0 0 170px;
    width: 170px;
    padding: 18px 15px;
  }
  .page-venue .main .item__info dd {
    padding: 18px 20px;
  }
}
@media screen and (max-width: 758px) {
  .page-venue .main {
    padding: 30px 0 50px;
  }
  .page-venue .main .container {
    padding: 0 20px;
    max-width: 100%;
  }
  .page-venue .main .contents {
    padding: 30px 20px;
  }
  .page-venue .main .item + .item {
    margin-top: 60px;
  }
  .page-venue .main .item__title {
    padding-left: 10px;
    font-size: 18px;
  }
  .page-venue .main .item__map {
    margin-top: 25px;
  }
  .page-venue .main .item__info {
    margin-top: 25px;
  }
  .page-venue .main .item__info dl {
    display: block;
    font-size: 14px;
  }
  .page-venue .main .item__info dt,
  .page-venue .main .item__info dd {
    display: block;
  }
  .page-venue .main .item__info dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding: 15px;
  }
  .page-venue .main .item__info dd {
    padding: 10px 15px 15px;
  }
}
/* ===================================

  大会概要

====================================== */
.page-outline {
  background-color: #f1f1f1;
}
.page-outline .main {
  padding: 100px 0 120px;
}
.page-outline .main .container {
  width: 1260px;
  padding: 0 30px;
  max-width: 100%;
}
.page-outline .main .contents {
  position: relative;
  padding: 60px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 1;
}
.page-outline .main .item + .item {
  margin-top: 80px;
}
.page-outline .main .item__title {
  padding-left: 15px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  border-left: 5px solid var(--cl-ac);
}
.page-outline .main .item__txt {
  margin-top: 31px;
  font-size: 18px;
  line-height: 2;
}
.page-outline .main .item__txt span {
  display: block;
  padding-left: 1em;
}
.page-outline .main .item__list {
  margin-top: 31px;
}
.page-outline .main .item__list li {
  font-size: 18px;
  line-height: 2;
}
.page-outline .main .item__content {
  margin-top: 31px;
  font-size: 18px;
  line-height: 2;
}
.page-outline .main .item__content h3 {
  font-weight: 500;
}
.page-outline .main .item__content span {
  padding-left: 1em;
}
.page-outline .main .item__content ul li, .page-outline .main .item__txt ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.page-outline .main .item__info {
  margin-top: 50px;
}
.page-outline .main .item__info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  line-height: 2;
  border-top: 1px solid #ccc;
}
.page-outline .main .item__info dl:last-child {
  border-bottom: 1px solid #ccc;
}
.page-outline .main .item__info dt,
.page-outline .main .item__info dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-outline .main .item__info dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  width: 180px;
  padding: 22px 20px;
  font-weight: 500;
  background-color: #f2f2f2;
}
.page-outline .main .item__info dd {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 22px 35px;
}
.page-outline .main .item__info dd span {
  font-size: 16px;
  font-weight: 400;
}
.page-outline .main .item__info dd a {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
.page-outline .main .item__info dd a::before {
  content: "・";
}

@media screen and (max-width: 1199px) {
  .page-outline .main {
    padding: 60px 0;
  }
  .page-outline .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .page-outline .main .contents {
    padding: 50px 30px;
    border-radius: 6px;
  }
  .page-outline .main .item + .item {
    margin-top: 60px;
  }
  .page-outline .main .item__title {
    padding-left: 12px;
    font-size: 20px;
  }
  .page-outline .main .item__txt {
    margin-top: 30px;
    font-size: 16px;
  }
  .page-outline .main .item__list {
    margin-top: 30px;
  }
  .page-outline .main .item__list li {
    font-size: 16px;
  }
  .page-outline .main .item__content {
    margin-top: 30px;
    font-size: 16px;
  }
  .page-outline .main .item__info {
    margin-top: 30px;
  }
  .page-outline .main .item__info dl {
    font-size: 16px;
  }
  .page-outline .main .item__info dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 170px;
            flex: 0 0 170px;
    width: 170px;
    padding: 18px 15px;
  }
  .page-outline .main .item__info dd {
    padding: 18px 20px;
  }
  .page-outline .main .item__info dd span {
    font-size: 14px;
  }
}
@media screen and (max-width: 758px) {
  .page-outline .main {
    padding: 30px 0 50px;
  }
  .page-outline .main .container {
    padding: 0 20px;
    max-width: 100%;
  }
  .page-outline .main .contents {
    padding: 30px 20px;
  }
  .page-outline .main .item__title {
    padding-left: 10px;
    font-size: 18px;
  }
  .page-outline .main .item__txt {
    margin-top: 20px;
    font-size: 14px;
  }
  .page-outline .main .item__txt span {
    padding: 0;
  }
  .page-outline .main .item__list {
    margin-top: 20px;
  }
  .page-outline .main .item__list li {
    font-size: 14px;
  }
  .page-outline .main .item__content {
    margin-top: 20px;
    font-size: 14px;
  }
  .page-outline .main .item__content span {
    padding: 0;
  }
  .page-outline .main .item__info {
    margin-top: 20px;
  }
  .page-outline .main .item__info dl {
    display: block;
    font-size: 14px;
  }
  .page-outline .main .item__info dt,
  .page-outline .main .item__info dd {
    display: block;
  }
  .page-outline .main .item__info dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding: 15px;
  }
  .page-outline .main .item__info dd {
    padding: 10px 15px 15px;
  }
  .page-outline .main .item__info dd span {
    font-size: 12px;
  }
}
/* ===================================

  参加チーム

====================================== */
.post-type-archive-teams {
  background-color: #f1f1f1;
}
.post-type-archive-teams .main {
  padding: 100px 0 120px;
}
.post-type-archive-teams .main .container {
  width: 1260px;
  padding: 0 30px;
  max-width: 100%;
}
.post-type-archive-teams .main .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-type-archive-teams .main .entry {
  position: relative;
  width: calc((100% - 90px) / 4);
  background-color: #fff;
  border-radius: 8px;
  z-index: 1;
}
.post-type-archive-teams .main .entry + .entry {
  margin-left: 30px;
}
.post-type-archive-teams .main .entry:nth-child(4n+1) {
  margin-left: 0;
}
.post-type-archive-teams .main .entry:nth-child(n+5) {
  margin-top: 30px;
}
.post-type-archive-teams .main .entry__thumb {
  display: grid;
  place-items: center;
  width: 100%;
  height: 235px;
}
.post-type-archive-teams .main .entry__img {
  width: auto;
  height: 172px;
}
.post-type-archive-teams .main .entry__body {
  padding: 0 40px 40px;
  text-align: center;
  word-break: break-all;
}
.post-type-archive-teams .main .entry__head {
  min-height: 52px;
}
.post-type-archive-teams .main .entry__title, .post-type-archive-teams .main .entry__cate {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}
.post-type-archive-teams .main .entry__pref {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}
.post-type-archive-teams .main .entry__btns {
  margin-top: 26px;
}
.post-type-archive-teams .main .entry__btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 35px;
  background-color: var(--cl-pri);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: 4px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-type-archive-teams .main .entry__btn:hover {
  opacity: 0.6;
}
.post-type-archive-teams .main .entry__btn.pic {
  margin-top: 15px;
  background-color: #fff;
  color: var(--cl-pri);
  border: 1px solid var(--cl-pri);
}

@media screen and (max-width: 1199px) {
  .post-type-archive-teams .main {
    padding: 60px 0;
  }
  .post-type-archive-teams .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .post-type-archive-teams .main .entry {
    width: calc((100% - 50px) / 3);
    border-radius: 6px;
  }
  .post-type-archive-teams .main .entry + .entry {
    margin-left: 25px;
  }
  .post-type-archive-teams .main .entry:nth-child(3n+1) {
    margin-left: 0;
  }
  .post-type-archive-teams .main .entry:nth-child(n+4) {
    margin-top: 25px;
  }
  .post-type-archive-teams .main .entry__thumb {
    height: 220px;
  }
  .post-type-archive-teams .main .entry__img {
    height: 125px;
  }
  .post-type-archive-teams .main .entry__body {
    padding: 0 25px 25px;
  }
  .post-type-archive-teams .main .entry__head {
    min-height: 47px;
  }
  .post-type-archive-teams .main .entry__title, .post-type-archive-teams .main .entry__cate {
    font-size: 18px;
  }
  .post-type-archive-teams .main .entry__pref {
    margin-top: 8px;
    font-size: 13px;
  }
  .post-type-archive-teams .main .entry__btns {
    margin-top: 25px;
  }
  .post-type-archive-teams .main .entry__btn {
    height: 35px;
    font-size: 14px;
  }
  .post-type-archive-teams .main .entry__btn:hover {
    opacity: 1;
  }
  .post-type-archive-teams .main .entry__btn.pic {
    margin-top: 12px;
  }
}
@media screen and (max-width: 758px) {
  .post-type-archive-teams .main {
    padding: 30px 0 50px;
  }
  .post-type-archive-teams .main .container {
    padding: 0 20px;
    max-width: 100%;
  }
  .post-type-archive-teams .main .entry {
    width: calc((100% - 15px) / 2);
  }
  .post-type-archive-teams .main .entry + .entry {
    margin-left: 15px;
  }
  .post-type-archive-teams .main .entry:nth-child(2n+1) {
    margin-left: 0;
  }
  .post-type-archive-teams .main .entry:nth-child(n+3) {
    margin-top: 20px;
  }
  .post-type-archive-teams .main .entry__thumb {
    height: 130px;
  }
  .post-type-archive-teams .main .entry__img {
    height: 80px;
  }
  .post-type-archive-teams .main .entry__body {
    padding: 0 15px 15px;
  }
  .post-type-archive-teams .main .entry__head {
    min-height: 40px;
  }
  .post-type-archive-teams .main .entry__title, .post-type-archive-teams .main .entry__cate {
    font-size: 15px;
  }
  .post-type-archive-teams .main .entry__pref {
    font-size: 12px;
  }
  .post-type-archive-teams .main .entry__btns {
    margin-top: 20px;
  }
  .post-type-archive-teams .main .entry__btn {
    height: 30px;
    font-size: 12px;
  }
  .post-type-archive-teams .main .entry__btn.pic {
    margin-top: 10px;
  }
}
/* ===================================

  モーダル

====================================== */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.3);
}
.modal__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-close__ico {
  display: block;
  width: 40px;
  height: 40px;
}
.modal-close:hover {
  opacity: 0.6;
}

.modal.pic {
  display: none;
  opacity: 0;
  z-index: -99;
}
.modal.pic.show {
  display: block;
  opacity: 1;
  z-index: 999;
}
.modal.pic .modal__contents {
  position: relative;
  width: 890px;
  max-width: 80%;
  height: 520px;
  background-color: #fff;
}
.modal.pic .contents {
  width: 740px;
  max-width: 83.1%;
  height: 100%;
  margin: 0 auto;
}
.modal.pic .contents__inner {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overscroll-behavior-y: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.modal.pic .contents__inner::-webkit-scrollbar {
  display: none;
}
.modal.pic .contents figure,
.modal.pic .contents img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .modal-close {
    top: 15px;
    right: 15px;
  }
  .modal-close__ico {
    width: 35px;
    height: 35px;
  }
  .modal-close:hover {
    opacity: 1;
  }
  .modal.member .modal__contents {
    max-width: 700px;
    width: 90vw;
    height: 90vh;
    max-height: 700px;
  }
  .modal.member .contents {
    width: 90%;
  }
  .modal.pic .modal__contents {
    max-width: 700px;
    width: 90vw;
    height: 60vh;
    max-height: 650px;
  }
  .modal.pic .contents {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 758px) {
  .modal-close {
    top: 10px;
    right: 10px;
  }
  .modal.member .modal__contents {
    max-width: calc(100% - 30px);
    width: 88vw;
    height: 60vh;
    max-height: 100%;
  }
  .modal.member .contents {
    width: 98%;
  }
  .modal.pic .modal__contents {
    max-width: calc(100% - 30px);
    width: 88vw;
    height: 45vh;
  }
  .modal.pic .contents {
    width: 100%;
    max-width: 100%;
  }
}
/* ===================================

  試合日程・結果

====================================== */
.page-matches,
.page-template-page-matches {
  background-color: #f1f1f1;
}
.page-matches .select-year,
.page-template-page-matches .select-year {
  background-color: #ccc;
}
.page-matches .select-year__inner,
.page-template-page-matches .select-year__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 0 14px;
}
.page-matches .select-year__wrap,
.page-template-page-matches .select-year__wrap {
  width: 220px;
  border-bottom: 1px solid #b3b3b3;
  background-image: url(img/ico/ico-arrow-btm.svg);
  background-repeat: no-repeat;
  background-size: 8px 6px;
  background-position: center right 9px;
}
.page-matches .select-year select,
.page-template-page-matches .select-year select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  padding: 6px 10px;
  color: inherit;
  cursor: pointer;
}
.page-matches .main,
.page-template-page-matches .main {
  padding: 60px 0 120px;
}
.page-matches .main .container,
.page-template-page-matches .main .container {
  width: 1260px;
  padding: 0 30px;
  max-width: 100%;
}
.page-matches .main .tabs,
.page-template-page-matches .main .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-matches .main .tab,
.page-template-page-matches .main .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  height: 58px;
  font-size: 18px;
  color: #666666;
  border-bottom: 2px solid #ccc;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.page-matches .main .tab.active,
.page-template-page-matches .main .tab.active {
  color: var(--cl-pri);
  border-bottom: 2px solid var(--cl-ac);
}
.page-matches .main .contents__body,
.page-template-page-matches .main .contents__body {
  padding-top: 60px;
}
.page-matches .main .contents__item,
.page-template-page-matches .main .contents__item {
  display: none;
}
.page-matches .main .contents__item.show,
.page-template-page-matches .main .contents__item.show {
  display: block;
}
.page-matches .main .group + .group,
.page-template-page-matches .main .group + .group {
  margin-top: 60px;
}
.page-matches .main .group .title,
.page-template-page-matches .main .group .title {
  padding-left: 15px;
  font-size: 24px;
  font-weight: 500;
  border-left: 5px solid var(--cl-ac);
}
.page-matches .main .group__body,
.page-template-page-matches .main .group__body {
  margin-top: 35px;
}
.page-matches .main .group .item,
.page-template-page-matches .main .group .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 23px 20px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 1;
}
.page-matches .main .group .item + .item,
.page-template-page-matches .main .group .item + .item {
  margin-top: 20px;
}
.page-matches .main .group .item__head,
.page-template-page-matches .main .group .item__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  width: 350px;
}
.page-matches .main .group .item__date,
.page-template-page-matches .main .group .item__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
.page-matches .main .group .item__date .time,
.page-template-page-matches .main .group .item__date .time {
  margin-left: 12px;
}
.page-matches .main .group .item__cates,
.page-template-page-matches .main .group .item__cates {
  margin-top: 6px;
}
.page-matches .main .group .item__cate,
.page-template-page-matches .main .group .item__cate {
  position: relative;
  display: inline-block;
  padding: 4px 6px;
  font-size: 12px;
  color: #fff;
  background-color: #f00;
  border-radius: 4px;
}
.page-matches .main .group .item__cate.group-a,
.page-template-page-matches .main .group .item__cate.group-a {
  background-color: #f00;
}
.page-matches .main .group .item__cate.group-b,
.page-template-page-matches .main .group .item__cate.group-b {
  background-color: #00a9da;
}
.page-matches .main .group .item__cate.group-c,
.page-template-page-matches .main .group .item__cate.group-c {
  background-color: #00992e;
}
.page-matches .main .group .item__cate.group-d,
.page-template-page-matches .main .group .item__cate.group-d {
  background-color: #fc8c00;
}
.page-matches .main .group .item__cate.rank,
.page-template-page-matches .main .group .item__cate.rank {
  margin-bottom: 4px;
  padding: 0;
  font-size: 14px;
  color: #f00;
  background-color: transparent;
}
.page-matches .main .group .item__cate.rank.no1,
.page-template-page-matches .main .group .item__cate.rank.no1 {
  color: #f00;
}
.page-matches .main .group .item__cate.rank.no2,
.page-template-page-matches .main .group .item__cate.rank.no2 {
  color: #00a9da;
}
.page-matches .main .group .item__cate.rank.no3,
.page-template-page-matches .main .group .item__cate.rank.no3 {
  color: #00992e;
}
.page-matches .main .group .item__cate.rank.no4,
.page-template-page-matches .main .group .item__cate.rank.no4 {
  color: #fc8c00;
}
.page-matches .main .group .item__places,
.page-template-page-matches .main .group .item__places {
  margin-top: 3px;
}
.page-matches .main .group .item__place,
.page-template-page-matches .main .group .item__place {
  font-size: 14px;
  line-height: 1.3;
}
.page-matches .main .group .item__body,
.page-template-page-matches .main .group .item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  word-break: break-all;
}
.page-matches .main .group .item .team,
.page-template-page-matches .main .group .item .team {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.3%;
          flex: 0 0 41.3%;
  width: 41.3%;
  padding: 0 5px;
  font-size: 16px;
  line-height: 1.3;
}
.page-matches .main .group .item .team.hometeam,
.page-template-page-matches .main .group .item .team.hometeam {
  text-align: right;
  padding-left: 1em;
}
.page-matches .main .group .item .team.awayteam,
.page-template-page-matches .main .group .item .team.awayteam {
  padding-right: 1em;
}
.page-matches .main .group .item .score,
.page-template-page-matches .main .group .item .score {
  position: relative;
  top: 2px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.page-matches .main .group .item .score .before,
.page-template-page-matches .main .group .item .score .before {
  position: relative;
  top: -0.125em;
  font-size: 0.75em;
}
.page-matches .main .group .item .score__pk,
.page-template-page-matches .main .group .item .score__pk {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 500;
}
.page-matches .main .group.final .item__cate,
.page-template-page-matches .main .group.final .item__cate {
  padding: 0;
  font-size: 14px;
  color: #f00;
  background-color: transparent;
}
.page-matches .main .group.final .item__cate.no1,
.page-template-page-matches .main .group.final .item__cate.no1 {
  color: #f00;
}
.page-matches .main .group.final .item__cate.no2,
.page-template-page-matches .main .group.final .item__cate.no2 {
  color: #00a9da;
}
.page-matches .main .group.final .item__cate.no3,
.page-template-page-matches .main .group.final .item__cate.no3 {
  color: #00992e;
}
.page-matches .main .group.final .item__cate.no4,
.page-template-page-matches .main .group.final .item__cate.no4 {
  color: #fc8c00;
}
.page-matches .main .group.final .item__places,
.page-template-page-matches .main .group.final .item__places {
  margin-top: 7px;
}
.page-matches .main .results .group__table,
.page-template-page-matches .main .results .group__table {
  position: relative;
  padding: 50px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 1;
}
.page-matches .main .results .group__btm,
.page-template-page-matches .main .results .group__btm {
  margin-top: 30px;
}
.page-matches .main .results .group .show-btn,
.page-template-page-matches .main .results .group .show-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 280px;
  height: 55px;
  background-image: url(img/ico/ico-show-open.svg);
  background-repeat: no-repeat;
  background-size: 15px 8px;
  background-position: center left 25px;
  font-size: 20px;
  color: var(--cl-ac);
  border: 1px solid var(--cl-ac);
  border-radius: 9999px;
  z-index: 1;
}
.page-matches .main .results .group .show-btn.active,
.page-template-page-matches .main .results .group .show-btn.active {
  background-image: url(img/ico/ico-show-close.svg);
}
.page-matches .main .results .group .table .th,
.page-template-page-matches .main .results .group .table .th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}
.page-matches .main .results .group .table .th__team,
.page-template-page-matches .main .results .group .table .th__team {
  width: 35%;
}
.page-matches .main .results .group .table .th__content,
.page-template-page-matches .main .results .group .table .th__content {
  width: 8%;
  color: #666666;
  text-align: center;
}
.page-matches .main .results .group .table .th__point,
.page-template-page-matches .main .results .group .table .th__point {
  width: 9%;
  text-align: right;
}
.page-matches .main .results .group .table .tb,
.page-template-page-matches .main .results .group .table .tb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  min-height: 80px;
  border-top: 1px solid #ccc;
}
.page-matches .main .results .group .table .tb__team,
.page-template-page-matches .main .results .group .table .tb__team {
  width: 35%;
  padding-right: 2em;
  line-height: 1.3;
}
.page-matches .main .results .group .table .tb__content,
.page-template-page-matches .main .results .group .table .tb__content {
  width: 8%;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  text-align: center;
}
.page-matches .main .results .group .table .tb__point,
.page-template-page-matches .main .results .group .table .tb__point {
  width: 9%;
  font-size: 26px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: right;
}
.page-matches .main .results .group .items,
.page-template-page-matches .main .results .group .items {
  margin-top: 30px;
}

@media screen and (max-width: 1199px) {
  .page-matches .select-year__inner,
  .page-template-page-matches .select-year__inner {
    padding: 6px 0 10px;
  }
  .page-matches .select-year__wrap,
  .page-template-page-matches .select-year__wrap {
    width: 150px;
    background-position: center right 8px;
  }
  .page-matches .select-year select,
  .page-template-page-matches .select-year select {
    padding: 5px 8px;
  }
  .page-matches .main,
  .page-template-page-matches .main {
    padding: 40px 0;
  }
  .page-matches .main .container,
  .page-template-page-matches .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .page-matches .main .tab,
  .page-template-page-matches .main .tab {
    height: 45px;
    font-size: 16px;
  }
  .page-matches .main .contents__body,
  .page-template-page-matches .main .contents__body {
    padding-top: 40px;
  }
  .page-matches .main .group + .group,
  .page-template-page-matches .main .group + .group {
    margin-top: 55px;
  }
  .page-matches .main .group .title,
  .page-template-page-matches .main .group .title {
    padding-left: 12px;
    font-size: 22px;
  }
  .page-matches .main .group__body,
  .page-template-page-matches .main .group__body {
    margin-top: 25px;
  }
  .page-matches .main .group .item,
  .page-template-page-matches .main .group .item {
    padding: 20px 18px;
    border-radius: 6px;
  }
  .page-matches .main .group .item + .item,
  .page-template-page-matches .main .group .item + .item {
    margin-top: 15px;
  }
  .page-matches .main .group .item__head,
  .page-template-page-matches .main .group .item__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 210px;
            flex: 0 0 210px;
    width: 210px;
  }
  .page-matches .main .group .item__date,
  .page-template-page-matches .main .group .item__date {
    font-size: 12px;
  }
  .page-matches .main .group .item__date .time,
  .page-template-page-matches .main .group .item__date .time {
    margin-left: 8px;
  }
  .page-matches .main .group .item__cates,
  .page-template-page-matches .main .group .item__cates {
    margin-top: 5px;
  }
  .page-matches .main .group .item__cate,
  .page-template-page-matches .main .group .item__cate {
    padding: 3px 6px;
    font-size: 11px;
  }
  .page-matches .main .group .item__cate.rank,
  .page-template-page-matches .main .group .item__cate.rank {
    font-size: 12px;
  }
  .page-matches .main .group .item__places,
  .page-template-page-matches .main .group .item__places {
    margin-top: 2px;
  }
  .page-matches .main .group .item__place,
  .page-template-page-matches .main .group .item__place {
    font-size: 12px;
  }
  .page-matches .main .group .item .team,
  .page-template-page-matches .main .group .item .team {
    font-size: 15px;
  }
  .page-matches .main .group .item .score,
  .page-template-page-matches .main .group .item .score {
    top: 2px;
    font-size: 22px;
  }
  .page-matches .main .group .item .score .before,
  .page-template-page-matches .main .group .item .score .before {
    position: relative;
    top: -0.1em;
  }
  .page-matches .main .group .item .score__pk,
  .page-template-page-matches .main .group .item .score__pk {
    margin-top: 2px;
    font-size: 12px;
  }
  .page-matches .main .group.final .item__cate,
  .page-template-page-matches .main .group.final .item__cate {
    font-size: 12px;
  }
  .page-matches .main .group.final .item__places,
  .page-template-page-matches .main .group.final .item__places {
    margin-top: 6px;
  }
  .page-matches .main .results .group__table,
  .page-template-page-matches .main .results .group__table {
    padding: 20px 30px;
    border-radius: 6px;
  }
  .page-matches .main .results .group__btm,
  .page-template-page-matches .main .results .group__btm {
    margin-top: 25px;
  }
  .page-matches .main .results .group .show-btn,
  .page-template-page-matches .main .results .group .show-btn {
    width: 210px;
    height: 40px;
    background-size: 12px 6px;
    background-position: center left 20px;
    font-size: 16px;
  }
  .page-matches .main .results .group .table .th,
  .page-template-page-matches .main .results .group .table .th {
    height: 40px;
  }
  .page-matches .main .results .group .table .tb,
  .page-template-page-matches .main .results .group .table .tb {
    padding: 12px 0;
    min-height: 70px;
  }
  .page-matches .main .results .group .table .tb__content,
  .page-template-page-matches .main .results .group .table .tb__content {
    font-size: 18px;
  }
  .page-matches .main .results .group .table .tb__point,
  .page-template-page-matches .main .results .group .table .tb__point {
    font-size: 22px;
  }
  .page-matches .main .results .group .items,
  .page-template-page-matches .main .results .group .items {
    margin-top: 25px;
  }
}
@media screen and (max-width: 758px) {
  .page-matches .select-year__inner,
  .page-template-page-matches .select-year__inner {
    padding: 5px 0 8px;
  }
  .page-matches .select-year__wrap,
  .page-template-page-matches .select-year__wrap {
    width: 100px;
    background-position: center right 6px;
  }
  .page-matches .select-year select,
  .page-template-page-matches .select-year select {
    padding: 4px 6px;
  }
  .page-matches .main,
  .page-template-page-matches .main {
    padding: 30px 0 50px;
  }
  .page-matches .main .container,
  .page-template-page-matches .main .container {
    padding: 0 20px;
    max-width: 100%;
  }
  .page-matches .main .tab,
  .page-template-page-matches .main .tab {
    height: 40px;
    font-size: 15px;
  }
  .page-matches .main .contents__body,
  .page-template-page-matches .main .contents__body {
    padding-top: 35px;
  }
  .page-matches .main .group .title,
  .page-template-page-matches .main .group .title {
    padding-left: 10px;
    font-size: 18px;
  }
  .page-matches .main .group__body,
  .page-template-page-matches .main .group__body {
    margin-top: 20px;
  }
  .page-matches .main .group .item,
  .page-template-page-matches .main .group .item {
    display: block;
    padding: 16px 15px;
    border-radius: 4px;
  }
  .page-matches .main .group .item__head,
  .page-template-page-matches .main .group .item__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .page-matches .main .group .item__date .time,
  .page-template-page-matches .main .group .item__date .time {
    margin-left: 8px;
  }
  .page-matches .main .group .item__cates,
  .page-template-page-matches .main .group .item__cates {
    margin-top: 0;
    margin-left: 1em;
  }
  .page-matches .main .group .item__cate,
  .page-template-page-matches .main .group .item__cate {
    padding: 3px 5px;
  }
  .page-matches .main .group .item__places,
  .page-template-page-matches .main .group .item__places {
    width: 100%;
    margin-top: 3px;
  }
  .page-matches .main .group .item__body,
  .page-template-page-matches .main .group .item__body {
    width: 100%;
    margin-top: 15px;
  }
  .page-matches .main .group .item .team,
  .page-template-page-matches .main .group .item .team {
    font-size: 14px;
  }
  .page-matches .main .group .item .team.hometeam,
  .page-template-page-matches .main .group .item .team.hometeam {
    padding-left: 0;
    text-align: center;
  }
  .page-matches .main .group .item .team.awayteam,
  .page-template-page-matches .main .group .item .team.awayteam {
    padding-right: 0;
    text-align: center;
  }
  .page-matches .main .group .item .score .before,
  .page-template-page-matches .main .group .item .score .before {
    top: -0.125em;
  }
  .page-matches .main .group.final .item__cates,
  .page-template-page-matches .main .group.final .item__cates {
    margin-top: -2px;
  }
  .page-matches .main .results .group__table,
  .page-template-page-matches .main .results .group__table {
    padding: 15px 10px;
    border-radius: 4px;
  }
  .page-matches .main .results .group__btm,
  .page-template-page-matches .main .results .group__btm {
    margin-top: 20px;
  }
  .page-matches .main .results .group .show-btn,
  .page-template-page-matches .main .results .group .show-btn {
    width: 180px;
    height: 38px;
    background-size: 10px 5px;
    background-position: center left 15px;
    font-size: 15px;
  }
  .page-matches .main .results .group .table .th,
  .page-template-page-matches .main .results .group .table .th {
    font-size: 13px;
  }
  .page-matches .main .results .group .table .th__team,
  .page-template-page-matches .main .results .group .table .th__team {
    width: 28%;
  }
  .page-matches .main .results .group .table .th__content,
  .page-template-page-matches .main .results .group .table .th__content {
    width: 9%;
  }
  .page-matches .main .results .group .table .th__point,
  .page-template-page-matches .main .results .group .table .th__point {
    text-align: center;
  }
  .page-matches .main .results .group .table .tb,
  .page-template-page-matches .main .results .group .table .tb {
    padding: 10px 0;
    min-height: 65px;
    font-size: 13px;
  }
  .page-matches .main .results .group .table .tb__team,
  .page-template-page-matches .main .results .group .table .tb__team {
    width: 28%;
    padding-right: 1em;
  }
  .page-matches .main .results .group .table .tb__content,
  .page-template-page-matches .main .results .group .table .tb__content {
    width: 9%;
    font-size: 15px;
  }
  .page-matches .main .results .group .table .tb__point,
  .page-template-page-matches .main .results .group .table .tb__point {
    font-size: 20px;
    text-align: center;
  }
  .page-matches .main .results .group .items,
  .page-template-page-matches .main .results .group .items {
    margin-top: 15px;
  }
}
/* ===================================

  新着情報一覧

====================================== */
.blog {
  background-color: #f1f1f1;
}
.blog .main {
  padding: 100px 0 120px;
}
.blog .main .container {
  width: 1260px;
  padding: 0 30px;
  max-width: 100%;
}
.blog .main .contents {
  position: relative;
  padding: 100px 140px 80px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 1;
}
.blog .main .entry {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.blog .main .entry:first-child {
  border-top: 1px solid #ccc;
}
.blog .main .entry__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0 14px;
  font-size: 18px;
}
.blog .main .entry__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 115px;
          flex: 0 0 115px;
  width: 115px;
}
.blog .main .entry__date {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.blog .main .entry__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  word-break: break-all;
}
.blog .main .entry__badge {
  margin-right: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--cl-ac);
}
.blog .main .entry__badge.sp {
  display: none;
}
.blog .main .entry__title {
  margin-top: -0.25em;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .blog .main {
    padding: 60px 0;
  }
  .blog .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .blog .main .contents {
    padding: 50px 30px;
    border-radius: 6px;
  }
  .blog .main .entry {
    width: 100%;
  }
  .blog .main .entry__link {
    padding: 15px 0;
    font-size: 16px;
  }
  .blog .main .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
            flex: 0 0 110px;
    width: 110px;
  }
  .blog .main .entry__badge {
    margin-right: 18px;
  }
}
@media screen and (max-width: 758px) {
  .blog .main {
    padding: 30px 0 50px;
  }
  .blog .main .container {
    padding: 0 20px;
    max-width: 100%;
  }
  .blog .main .contents {
    padding: 30px 20px;
  }
  .blog .main .entry__link {
    display: block;
    padding: 15px 0 12px;
    font-size: 14px;
  }
  .blog .main .entry__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
            flex: 0 0 110px;
    width: 110px;
  }
  .blog .main .entry__date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 85px;
            flex: 0 0 85px;
    width: 85px;
  }
  .blog .main .entry__badge {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    white-space: nowrap;
    margin-right: 18px;
    margin-top: -0.11em;
  }
  .blog .main .entry__badge.pc {
    display: none;
  }
  .blog .main .entry__badge.sp {
    display: block;
  }
  .blog .main .entry__body {
    margin-top: 12px;
  }
  .blog .main .entry__title {
    line-height: 1.5;
  }
}
/* ===================================

  詳細

====================================== */
.single {
  background-color: #f1f1f1;
}
.single .main {
  margin-top: 100px;
  padding: 85px 0 120px;
}
.single .main .container {
  padding: 0 30px;
  margin: 0 auto;
  width: 980px;
}
.single .main .entry {
  width: 100%;
  word-break: break-all;
}
.single .main .entry__date {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.single .main .entry__title {
  margin-top: 25px;
  padding-bottom: 15px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 3px solid var(--cl-ac);
}
.single .main .entry__thumb {
  margin-top: 70px;
}
.single .main .entry__img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 640px;
}
.single .main .entry__body {
  padding-top: 80px;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
}
.single .main .entry__body > *:first-child {
  margin-top: 0 !important;
}
.single .main .entry__body .wp-block-columns {
  margin-top: 2em;
}
.single .main .entry__body .wp-block-column > *:first-child {
  margin-top: 0;
}
.single .main .entry__body h2,
.single .main .entry__body h3,
.single .main .entry__body h4,
.single .main .entry__body h5,
.single .main .entry__body h6 {
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
.single .main .entry__body > h2, .single .main .entry__body > h3, .single .main .entry__body > h4 {
  margin-top: 60px;
}
.single .main .entry__body > h5, .single .main .entry__body > h6 {
  margin-top: 40px;
}
.single .main .entry__body > p {
  margin-top: 40px;
}
.single .main .entry__body > .wp-block-image, .single .main .entry__body > .wp-block-buttons, .single .main .entry__body > .wp-block-liquid-speech-balloon, .single .main .entry__body > .toc-mokuji-content, .single .main .entry__body > figure.wp-block-embed-youtube, .single .main .entry__body > table, .single .main .entry__body > ol, .single .main .entry__body > ul, .single .main .entry__body > blockquote, .single .main .entry__body > iframe {
  margin-top: 40px;
}
.single .main .entry__body > details {
  margin-top: 2em;
}
.single .main .entry__body h2 {
  padding: 0 15px;
  font-size: 28px;
  border-left: 5px solid var(--cl-ac);
}
.single .main .entry__body h3 {
  font-size: 24px;
}
.single .main .entry__body h4 {
  font-size: 20px;
}
.single .main .entry__body h5 {
  font-size: 19px;
}
.single .main .entry__body h6 {
  font-size: 18px;
}
.single .main .entry__body p {
  line-height: 2;
}
.single .main .entry__body p + p {
  margin-top: 1.5em;
}
.single .main .entry__body .wp-block-image img {
  margin: 0;
}
.single .main .entry__body .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.single .main .entry__body .aligncenter {
  margin: 40px auto 0;
}
.single .main .entry__body .alignright {
  margin-left: auto;
}
.single .main .entry__body .wp-caption {
  max-width: 100%;
}
.single .main .entry__body .wp-caption-text {
  margin-top: 3px;
}
.single .main .entry__body pre {
  overflow-x: auto;
}
.single .main .entry__body table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.single .main .entry__body table th {
  display: table-cell;
  vertical-align: middle;
  background-color: #ddd;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  height: 65px;
  border: 1px solid #e6e6e6;
  color: #000;
  font-weight: 400;
}
.single .main .entry__body table th a {
  color: inherit;
}
.single .main .entry__body table td {
  display: table-cell;
  vertical-align: middle;
  height: 65px;
  border: 1px solid #e6e6e6;
  text-align: center;
}
.single .main .entry__body table td a {
  color: inherit;
}
.single .main .entry__body ol li,
.single .main .entry__body ul li {
  display: block;
  line-height: 1.5;
}
.single .main .entry__body ol li + li,
.single .main .entry__body ul li + li {
  margin-top: 0.75em;
}
.single .main .entry__body ul li {
  padding-left: 1.75em;
  text-indent: -1.55em;
}
.single .main .entry__body ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 0.125em;
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  width: 15px;
  height: 15px;
  background-color: var(--cl-ac);
  border-radius: 50%;
}
.single .main .entry__body ol {
  counter-reset: num;
  list-style-type: none;
  padding-left: 2.25em;
}
.single .main .entry__body ol li {
  text-indent: -2.2em;
  line-height: 1.5;
}
.single .main .entry__body ol li::before {
  display: inline-block;
  content: counter(num);
  counter-increment: num;
  position: relative;
  top: 0px;
  margin-right: 10px;
  padding-bottom: 0;
  width: 25px;
  height: 25px;
  background-color: var(--cl-ac);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 25px;
  text-indent: 0;
  text-align: center;
  border-radius: 50%;
}
.single .main .entry__body a {
  position: relative;
  color: #1a0dab;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single .main .entry__body .wp-block-buttons .wp-block-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 320px;
  height: 55px;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--cl-ac) !important;
  background-image: url(img/ico/ico-link-btn.png);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: center right 25px;
}
.single .main .entry__body details {
  margin-top: 2em;
}
.single .main .entry__body .wp-calendar-table caption {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.single .main .entry__body blockquote {
  word-break: break-all;
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 35px 40px 35px 60px;
  border: 1px solid #ccc;
}
.single .main .entry__body blockquote::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 5px;
  height: calc(100% - 60px);
  background-color: var(--cl-ac);
}
.single .main .entry__body blockquote p {
  margin-top: 0;
}
.single .main .entry__body blockquote p + p {
  margin-top: 1em;
}
.single .main .entry__body blockquote cite {
  display: block;
  margin-top: 40px;
  padding-bottom: 0.5em;
  font-size: 14px;
  font-style: normal;
  color: var(--cl-ac);
}
.single .main .entry__body blockquote a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--cl-ac);
}
.single .main .entry__body blockquote a:hover {
  opacity: 0.6;
}
.single .main .entry__body hr.wp-block-separator {
  margin: 40px auto;
  width: 30%;
  height: 2px;
  border-bottom: 2px solid var(--cl-ac);
  border-top: none;
}
.single .main .entry__body hr.wp-block-separator.is-style-wide {
  width: 100%;
  border-bottom: 2px dashed var(--cl-ac);
}
.single .main .entry__body .liquid-speech-balloon-text p {
  margin-top: 0;
}
.single .main .entry__body iframe {
  max-width: 100%;
  width: 100%;
}
.single .main .entry__body figure.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  margin-bottom: 0;
  padding-top: 56.25%;
  width: 100%;
}
.single .main .entry__body figure.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.single .main .entry__body .wp-block-columns.is-layout-flex {
  gap: 2em;
}

@media screen and (max-width: 1199px) {
  .single .main {
    margin-top: 60px;
    padding: 60px 0;
  }
  .single .main .container {
    width: 100%;
    max-width: 768px;
  }
  .single .main .entry__date {
    font-size: 15px;
  }
  .single .main .entry__title {
    margin-top: 20px;
    padding-bottom: 12px;
    font-size: 28px;
    border-bottom: 2px solid var(--cl-ac);
  }
  .single .main .entry__thumb {
    margin-top: 40px;
  }
  .single .main .entry__img {
    max-width: 500px;
  }
  .single .main .entry__body {
    padding-top: 50px;
  }
  .single .main .entry__body > h2, .single .main .entry__body > h3, .single .main .entry__body > h4 {
    margin-top: 45px;
  }
  .single .main .entry__body > h5, .single .main .entry__body > h6 {
    margin-top: 35px;
  }
  .single .main .entry__body > p {
    margin-top: 30px;
  }
  .single .main .entry__body > .wp-block-image, .single .main .entry__body > .wp-block-buttons, .single .main .entry__body > .wp-block-liquid-speech-balloon, .single .main .entry__body > .toc-mokuji-content, .single .main .entry__body > figure.wp-block-embed-youtube, .single .main .entry__body > table, .single .main .entry__body > ol, .single .main .entry__body > ul, .single .main .entry__body > blockquote, .single .main .entry__body > iframe, .single .main .entry__body > details {
    margin-top: 35px;
  }
  .single .main .entry__body h2 {
    padding: 0 12px;
    font-size: 22px;
    border-left: 4px solid var(--cl-ac);
  }
  .single .main .entry__body h3 {
    font-size: 20px;
  }
  .single .main .entry__body h4 {
    font-size: 18px;
  }
  .single .main .entry__body h5 {
    font-size: 16px;
  }
  .single .main .entry__body h6 {
    font-size: 15px;
  }
  .single .main .entry__body p + p {
    margin-top: 1em;
  }
  .single .main .entry__body .aligncenter {
    margin: 35px auto 0;
  }
  .single .main .entry__body .wp-caption-text {
    margin-top: 2px;
  }
  .single .main .entry__body table th {
    font-size: 16px;
    height: 58px;
  }
  .single .main .entry__body table td {
    height: 58px;
  }
  .single .main .entry__body ul li {
    text-indent: -1.5em;
  }
  .single .main .entry__body ul li::before {
    margin-right: 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
    width: 14px;
    height: 14px;
  }
  .single .main .entry__body ol {
    padding-left: 2em;
  }
  .single .main .entry__body ol li {
    text-indent: -1.9em;
  }
  .single .main .entry__body ol li::before {
    top: -1px;
    margin-right: 8px;
    padding-left: 1px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
  }
  .single .main .entry__body .wp-block-buttons .wp-block-button a {
    max-width: 100%;
    background-size: 30px 30px;
    background-position: center right 15px;
    font-size: 15px;
  }
  .single .main .entry__body blockquote {
    padding: 30px 50px;
  }
  .single .main .entry__body blockquote::before {
    left: 25px;
    width: 4px;
    height: calc(100% - 30px);
  }
  .single .main .entry__body blockquote cite {
    margin-top: 35px;
    font-size: 12px;
  }
  .single .main .entry__body hr.wp-block-separator {
    margin: 35px auto;
    width: 30%;
    height: 2px;
  }
  .single .main .entry__body iframe {
    margin-top: 35px;
  }
  .single .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1.5em;
  }
}
@media screen and (max-width: 758px) {
  .single .main {
    padding: 30px 0 50px;
  }
  .single .main .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .single .main .entry__date {
    font-size: 12px;
  }
  .single .main .entry__title {
    margin-top: 16px;
    padding-bottom: 10px;
    font-size: 22px;
  }
  .single .main .entry__thumb {
    margin-top: 25px;
  }
  .single .main .entry__img {
    max-width: 100%;
  }
  .single .main .entry__body {
    padding-top: 40px;
  }
  .single .main .entry__body > h2, .single .main .entry__body > h3, .single .main .entry__body > h4 {
    margin-top: 40px;
  }
  .single .main .entry__body > h5, .single .main .entry__body > h6 {
    margin-top: 30px;
  }
  .single .main .entry__body > p {
    margin-top: 25px;
  }
  .single .main .entry__body > .wp-block-image, .single .main .entry__body > .wp-block-buttons, .single .main .entry__body > .wp-block-liquid-speech-balloon, .single .main .entry__body > .toc-mokuji-content, .single .main .entry__body > figure.wp-block-embed-youtube, .single .main .entry__body > table, .single .main .entry__body > ol, .single .main .entry__body > ul, .single .main .entry__body > blockquote, .single .main .entry__body > iframe, .single .main .entry__body > details {
    margin-top: 30px;
  }
  .single .main .entry__body h2 {
    padding: 0 10px;
    font-size: 18px;
  }
  .single .main .entry__body h3 {
    font-size: 16px;
  }
  .single .main .entry__body h4 {
    font-size: 15px;
  }
  .single .main .entry__body h5 {
    font-size: 14px;
  }
  .single .main .entry__body h6 {
    font-size: 13px;
  }
  .single .main .entry__body .aligncenter {
    margin: 25px auto 0;
  }
  .single .main .entry__body table th {
    font-size: 13px;
    height: 45px;
  }
  .single .main .entry__body table td {
    height: 45px;
  }
  .single .main .entry__body ul li {
    padding-left: 1.2em;
    text-indent: -0.95em;
  }
  .single .main .entry__body ul li::before {
    top: -1px;
    width: 8px;
    height: 8px;
    margin-right: 5px;
  }
  .single .main .entry__body ol {
    padding-left: 1.8em;
  }
  .single .main .entry__body ol li {
    text-indent: -1.8em;
  }
  .single .main .entry__body ol li::before {
    top: -2px;
    margin-right: 5px;
    padding-bottom: 1px;
    font-size: 10px;
  }
  .single .main .entry__body blockquote {
    padding: 20px 20px 20px 30px;
  }
  .single .main .entry__body blockquote::before {
    left: 15px;
    height: calc(100% - 30px);
  }
  .single .main .entry__body blockquote cite {
    margin-top: 25px;
    font-size: 11px;
  }
  .single .main .entry__body .wp-block-buttons .wp-block-button {
    margin: 0 auto;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .single .main .entry__body .wp-block-buttons .wp-block-button a {
    min-width: 100%;
    width: 100%;
    font-size: 14px;
  }
  .single .main .entry__body hr.wp-block-separator {
    margin: 25px auto;
    height: 2px;
  }
  .single .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1em;
  }
}
/* ===================================

  404エラー

====================================== */
.error404 {
  background-color: #f1f1f1;
}
.error404 .main {
  padding: 100px 0 120px;
}
.error404 .main .container {
  width: 1260px;
  padding: 0 30px;
  max-width: 100%;
}
.error404 .main .contents {
  position: relative;
  padding: 60px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 1;
}
.error404 .main .contents__title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}
.error404 .main .contents__txt {
  margin-top: 50px;
  font-size: 18px;
  line-height: 2;
}
.error404 .main .contents__link {
  margin-top: 50px;
}
.error404 .main .contents__link a {
  text-decoration: underline;
}

@media screen and (max-width: 1199px) {
  .error404 .main {
    padding: 60px 0;
  }
  .error404 .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .error404 .main .contents {
    padding: 50px 30px;
    border-radius: 6px;
  }
  .error404 .main .contents__title {
    font-size: 20px;
  }
  .error404 .main .contents__txt {
    margin-top: 40px;
    font-size: 16px;
  }
  .error404 .main .contents__link {
    margin-top: 40px;
  }
}
@media screen and (max-width: 758px) {
  .error404 .main {
    padding: 30px 0 50px;
  }
  .error404 .main .container {
    padding: 0 20px;
    max-width: 100%;
  }
  .error404 .main .contents {
    padding: 30px 20px;
  }
  .error404 .main .contents__title {
    font-size: 18px;
  }
  .error404 .main .contents__txt {
    font-size: 14px;
  }
}
/* ===================================

  カスタムブロック用

====================================== */
.page-template-page-matches .tb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  min-height: 80px;
  border-top: 1px solid #ccc;
}
.page-template-page-matches .tb__team {
  width: 35%;
  padding-right: 2em;
  line-height: 1.3;
}
.page-template-page-matches .tb__content {
  width: 8%;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  text-align: center;
}
.page-template-page-matches .tb__point {
  width: 9%;
  font-size: 26px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: right;
}

@media screen and (max-width: 1199px) {
  .page-template-page-matches .tb {
    padding: 12px 0;
    min-height: 70px;
  }
  .page-template-page-matches .tb__content {
    font-size: 18px;
  }
  .page-template-page-matches .tb__point {
    font-size: 22px;
  }
}
@media screen and (max-width: 758px) {
  .page-template-page-matches .tb {
    padding: 10px 0;
    min-height: 65px;
    font-size: 13px;
  }
  .page-template-page-matches .tb__team {
    width: 28%;
    padding-right: 1em;
  }
  .page-template-page-matches .tb__content {
    width: 9%;
    font-size: 15px;
  }
  .page-template-page-matches .tb__point {
    font-size: 20px;
    text-align: center;
  }
}
.wp-block-lazyblock-game-points .tb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  min-height: 80px;
  border-top: 1px solid #ccc;
}
.wp-block-lazyblock-game-points .tb__team {
  width: 35%;
  padding-right: 2em;
  line-height: 1.3;
}
.wp-block-lazyblock-game-points .tb__content {
  width: 8%;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  text-align: center;
}
.wp-block-lazyblock-game-points .tb__point {
  width: 9%;
  font-size: 26px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: right;
}

@media screen and (max-width: 1199px) {
  .wp-block-lazyblock-game-points .tb {
    padding: 12px 0;
    min-height: 70px;
  }
  .wp-block-lazyblock-game-points .tb__content {
    font-size: 18px;
  }
  .wp-block-lazyblock-game-points .tb__point {
    font-size: 22px;
  }
}
@media screen and (max-width: 758px) {
  .wp-block-lazyblock-game-points .tb {
    padding: 10px 0;
    min-height: 65px;
    font-size: 13px;
  }
  .wp-block-lazyblock-game-points .tb__team {
    width: 28%;
    padding-right: 1em;
  }
  .wp-block-lazyblock-game-points .tb__content {
    width: 9%;
    font-size: 15px;
  }
  .wp-block-lazyblock-game-points .tb__point {
    font-size: 20px;
    text-align: center;
  }
}