@charset "utf-8";

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
}

ul {
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: none;
  opacity: .7;
  color: #000;
}

a.text-underline{
  text-decoration: underline;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.icon-font {
  padding-right: 4px;
  vertical-align: bottom;
}

.text-red{
  color: #f03461;
}

.text-indent{
  padding-left: 1em;
  text-indent: -1em;
}

.text-center{
  text-align: center;
}

/*--------------------------
|         レイアウト         |
---------------------------*/
.mdp-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 65px 0 0 0;
}

.mdp-container {
  overflow: hidden;
}

.mdp-inner {
  margin: 40px 0;
}

.mdp-inner:first-of-type {
  margin-top: 20px;
}

.home .mdp-inner:first-of-type {
  margin-top: 40px;
}

.banner-box {
  max-width: 720px;
  margin: 0 auto;
}

@media print,
(min-width: 768px) {
  .mdp-inner {
    margin: 60px 0;
  }

  .mdp-inner:first-of-type {
    margin-top: 30px;
  }

  .home .mdp-inner:first-of-type {
    margin-top: 60px;
  }
}

/*--------------------------
|          ヘッダー          |
---------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background: #fff;
  box-shadow: 0px 3px 6px #00000029;
}

.headere-container {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 10px;
  background: #fff;
}

.button-g-nav {
  width: 34px;
  margin-right: 10px;
  flex-shrink: 0;
}

.headere-container h1 a {
  display: flex;
  align-items: center;
}

.headere-container h1 img {
  display: block;
  width: 100%;
}

.headere-container>span {
  display: inline-block;
  padding: 0 10px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 1.1rem;
  background: #fff;
  border-radius: 100vh;
}

.mdp-num {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  margin-left: 4px;
  width: 40px;
  height: 40px;
}

.mdp-num span {
  position: relative;
  z-index: 2;
  display: block;
  font-weight: bold;
  line-height: 1;
}

.mdp-num span:first-of-type {
  font-size: 1.2rem;
}

.mdp-num span:nth-of-type(2) {
  font-size: 1.8rem;
}

.mdp-num::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fcc800;
  border-radius: 50%;
}

@media print,
(min-width: 768px) {
  .headere-container {
    padding: 10px 15px;
  }

  .headere-container>span {
    font-size: 1.4rem;
  }
}

/*--ハンバーガーメニュー--*/
.button-g-nav {
  position: relative;
  width: 34px;
  height: 34px;
}

.button-g-nav span {
  display: block;
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #ccc;
  transition: all .2s ease-out;
}

.button-g-nav span::before,
.button-g-nav span::after {
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  left: 0;
  background: #ccc;
  transition: all .2s ease-out;
}

.button-g-nav span::before {
  top: -8px;
}

.button-g-nav span::after {
  top: 8px;
}

.button-g-nav.open span {
  background: #fff;
}

.button-g-nav.open span::before {
  transform: rotate(45deg) translateY(-50%);
  top: 0;
}

.button-g-nav.open span::after {
  transform: rotate(-45deg) translateY(-50%);
  top: 0;
}

/*--グローバルナビ--*/
.nav-box {
  display: block;
  width: 100%;
  position: absolute;
  top: 80px;
  left: 50%;
  z-index: -1;
  transform: translateY(-100%);
  visibility: hidden;
  transition: all .3s ease-in-out;
}

.nav-box.open {
  transform: translateY(0);
  visibility: visible;
}

.nav-box .g-nav {
  display: block;
  padding: 30px 15px;
  width: 90%;
  max-width: 720px;
  height: calc(100vh - 100px);
  left: 50%;
  transform: translateX(-50%);
  background: #00abeb;
  overflow-y: auto;
}

.g-nav,
.g-nav a {
  color: #fff;
}

.g-nav>li>span {
  display: block;
  padding: 0 0 4px 0;
  margin: 0 0 16px 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #FCC800;
  border-bottom: 1px solid #fcc800;
}

.g-nav>li:nth-child(n+2) {
  margin: 30px 0 0 0;
}

.sub-menu {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
}

.sub-menu li {
  width: 50%;
}

.sub-menu li.wide {
  width: 100%;
}

.sub-menu li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 8px;
  text-align: center;
  line-height: 1.4;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.sub-menu li a span {
  display: block;
  font-size: 1.4rem;
}

.to-home .sub-menu li a{
  background: #fcc800;
  font-weight: bold;
}

@media print,
(min-width: 768px) {
  .nav-box .g-nav {
    padding: 30px 60px;
  }
}

.nav-bg {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, .5);
  transition: all .5s ease-in-out;
}

.nav-bg.open {
  display: block;
}



/*--------------------------
|        トップページ        |
---------------------------*/

/*--見出し--*/
.home h2 {
  padding: 0 8%;
  margin: 0 0 16px 0;
  font-weight: bold;
  text-align: center;
}

.home h2 span {
  display: block;
  padding: 6px 10px;
  margin: 0 auto;
  width: 100%;
  max-width: 720px;
  background: #007934;
  color: #fff;
  outline: 1px solid #fff;
  outline-offset: -4px;
}

@media print,
(min-width: 768px) {
  .home h2 {
    margin: 0 0 24px 0;
  }

  .home h2 span {
    padding: 6px 10px;
    font-size: 2.4rem;
  }
}

/*--------------------------
| ピックアップコンテンツ
---------------------------*/
.pick-up-item a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}

.pick-up-text-box {
  position: relative;
  padding: 4px 0;
}

.pick-up-text-box>div:first-of-type {
  position: absolute;
  left: -6px;
  bottom: 0;
  width: 36%;
}

.pick-up-text-box>div:nth-of-type(2) {
  width: 60%;
  margin: 0 0 0 auto;
}

.interview-name {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  line-height: 1.2;
}

.pick-up-interview .interview-name{
  justify-content: flex-start;
}

.interview-name>div:first-of-type {
  font-size: 2rem;
}

.interview-name>div:last-of-type {
  margin-left: 10px;
}

.interview-name span {
  display: block;
  font-size: 1.4rem;
  color: #00abeb;
}

.interview-name img {
  width: 40px;
}

@media print,
(min-width: 768px) {
  .pick-up-text-box>div:first-of-type {
    width: 30%;
  }

  .pick-up-text-box>div:nth-of-type(2) {
    width: 54%;
  }

  
.pick-up-interview .pick-up-text-box>div:nth-of-type(2) {
  width: 68%;
}

  .interview-name>div:first-of-type {
    font-size: 2.4rem;
  }

  .interview-name span {
    font-size: 1.6rem;
  }
}

/*--slick調整--*/
.slick-prev,
.slick-prev::before {
  left: -8px;
  z-index: 2;
}

.slick-next,
.slick-next::before {
  right: -8px;
}

.slick-arrow{
  width: 30px;
  height: 30px;
}

.slick-prev::before,
.slick-next::before {
  color: #000;
  font-size: 26px;
}

/*--------------------------
| 下層ページリンクボタン
---------------------------*/
.mdp-button-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.mdp-button-list::before,
.mdp-button-list::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
}

.mdp-button-list::before {
  order: 1;
}

.mdp-button-list li {
  margin: 0 0 10px 0;
  width: 100%;
}

.mdp-button-list li a {
  position: relative;
  padding: 24px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #B0DFF8;
  color: #005E82;
  border-radius: 10px;
}

.mdp-button-list li.herf {
  width: 49%;
}

.mdp-button-list li.herf a {
  padding: 10px;
}

.mdp-button-list.button-guide li a {
  background: #00abeb;
  color: #fff;
}

.mdp-button-list li a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 10px;
  background: url(../images/common/arrow-b.svg) no-repeat center center/contain;
  transform: translateY(-50%);
}

.mdp-button-list.button-guide li a::before {
  background-image: url(../images/common/arrow-y.svg);
}

.mdp-button-list li div {
  position: relative;
}

.mdp-button-list li span {
  display: block;
  min-width: 204px;
  padding: 0 48px;
  text-align: center;
}

.mdp-button-list li.herf span {
  min-width: auto;
}

.mdp-button-list li.match span {
  padding: 0 28px;
}

.mdp-button-list li.download span {
  padding: 0 30px 0 40px;
}

.mdp-button-list img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
}

.mdp-button-list li.match img {
  width: 23px;
}

.mdp-button-list img:first-of-type {
  left: 0;
}

.mdp-button-list img:nth-of-type(2) {
  right: 0;
}

.download-player {
  margin-top: -10px;
  padding: 0 0 4px 0;
  border-bottom: 2px solid #00abeb;
  color: #00abeb;
  text-align: center;
  font-weight: bold;
}

@media print,
(min-width: 768px) {
  .mdp-button-list li {
    width: 49%;
  }

  .mdp-button-list li.herf {
    width: 23.5%;
  }
}

.movie-box {
  max-width: 720px;
  margin: 0 auto;
}

.movie-box>div {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.movie-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-caption {
  line-height: 1.2;
}

@media print,
(min-width: 768px) {
  .movie-caption {
    text-align: center;
  }
}


.sns-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 280px;
  margin: 0 auto;
}

.sns-list li {
  width: 12%;
}


.common-page-title {
  position: relative;
  padding: 4px 8px;
  margin: 0 0 16px 0;
  font-size: 2.4rem;
  font-style: italic;
  color: #00abeb;
  border-bottom: 2px solid #00abeb;
}

.common-page-title span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: normal;
  font-style: normal;
  color: #000;
}

.highlights-title img {
  max-width: 400px;
}

@media print,
(min-width: 768px) {
  .common-page-title {
    font-size: 3.2rem;
  }

  .common-page-title span {
    position: absolute;
    right: 0;
    bottom: 4px;
  }
}

.data-nav {
  margin: 0 0 40px 0;
  display: flex;
  flex-wrap: wrap;
}

.data-nav li {
  width: 50%;
}

.data-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid #fff;
  background: #B0DFF8;
  text-align: center;
  line-height: 1.2;
}

.data-nav li.current a {
  background: #00abeb;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .data-nav li a {
    font-size: 1.4rem;
  }
}

@media print,
(min-width: 768px) {
  .data-nav li {
    width: 25%;
  }
}

.players-inner {
  margin-bottom: 0;
}

.team-data-box {
  margin: 0 0 20px 0;
  text-align: center
}

.team-data-box div {
  margin: 0 0 10px 0;
}

.team-data-box p {
  margin: 0;
  font-weight: bold;
}

.team-data-box p:first-of-type {
  margin: 0 0 4px 0;
  font-size: 2rem;
}

.team-data-box p:nth-of-type(2) {
  font-size: 1.8rem;
}

.home-player-box>span,
.away-player-box>span {
  display: block;
  padding: 4px 15px;
  font-size: 1.4rem;
}

.home-player-box>div {
  margin: 0 calc(50% - 50vw);
  padding: 20px calc(50vw - 50%);
  background: #00abeb;
}

.home-player-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 15px;
}

.home-player-list li a{
  display: block;
}

.home-player-list li.nishu a{
  pointer-events: none;
}

.home-player-name {
  position: relative;
  padding: 2px 8px;
  background: #fff;
  color: #00abeb;
}

.nishu .home-player-name span{
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  padding: 0 4px;
  font-size: 1.3rem;
  color: #000;
  background: #FCC800;
  border-radius: 4px;
}

.home-player-profile {
  display: flex;
  justify-content: space-between;
  margin: 0 0 8px 0;
}

.home-player-profile .img-box {
  width: 45%;
}

.home-player-profile .text-box {
  width: 50%;
  color: #fff;
}

.home-player-detail {
  line-height: 1.4;
}

.home-player-detail span {
  font-size: 1.3rem;
  line-height: 1.2;
}

.home-player-position {
  font-size: 2.2rem;
  line-height: 1.2;
}

.home-goal span {
  display: inline-block;
  margin-right: 4px;
  padding: 0 4px;
  min-width: 80px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, .4);
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .home-player-list li {
    width: 100%;
  }

  .home-player-list li:nth-child(n+2) {
    margin: 24px 0 0 0;
  }
}

@media print,
(min-width: 768px) {
  .home-player-list li {
    width: 48%;
  }

  .home-player-list li:nth-child(n+3) {
    margin: 24px 0 0 0;
  }
}

.away-player-box>div {
  margin: 0 calc(50% - 50vw);
  padding: 60px calc(50vw - 50%);
  background: #123573;
}

.away-player-box a {
  display: block;
  color: #fff;
  text-align: center;
}

.highlights-content h3 {
  font-size: 1.8rem;
  font-weight: bold;
}

.highlights-content {
  padding: 20px 10px;
}

.highlights-content p:nth-child(n+2),
.highlights-content div:nth-child(n+2) {
  margin-top: 20px;
}

.highlights-content div {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
(min-width: 768px) {
  .highlights-content h3 {
    font-size: 2.4rem;
  }
}


.interview-container {
  position: relative;
  padding-top: 30px;
  padding-bottom: 40px;
  background: #00abeb;
  color: #fff;
}

.interview-container>div:nth-of-type(n+2) {
  margin-top: 20px;
}

.interview-container::after {
  content: url(../images/interview/triangle.svg);
  display: block;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
}

.interview-intro {
  position: relative;
  z-index: 3;
  margin: 0 0 30px 0;
}

.interview-intro .text-box {
  width: 50%;
  display: flex;
  justify-content: space-between;
}

.interview-intro .img-box {
  width: 48%;
}

/*
.interview-intro .img-box div{
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.interview-intro .img-box img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}*/

.interview-title-box {
  display: flex;
  justify-content: space-between;
  padding: 0 0 8px 0;
  margin: 0 0 8px 0;
  border-bottom: 1px solid #fff;
}

.interview-title {
  width: calc(100% - 28px);
}

.interview-title-box .text-box img {
  width: 24px;
}

.interview-title h2 {
  margin: 0 0 8px 0;
  font-size: 2.9rem;
  line-height: 1.0;
}

.interview-player-name {
  margin: 0;
  text-align: right;
  font-size: 1.4rem;
  line-height: 1.4;
}

.interview-player-name span {
  display: block;
  font-size: 1.8rem;
}

.interview-photo-box {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.interview-photo-box {
  display: flex;
  justify-content: space-between;
}

.interview-photo-box div {
  width: 49%;
}

@media screen and (max-width: 767px) {
  .interview-title p {
    margin: 0 0 4px 0;
    font-size: 1.4rem;
    letter-spacing: -0.05em;
    text-align: right;
  }
}

@media print,
(min-width: 768px) {
  .interview-intro {
    margin: 0 0 40px 0;
  }

  .interview-container>div:nth-of-type(n+2) {
    margin-top: 30px;
  }

  .interview-title-box .text-box img {
    display: block;
    width: 60px;
    margin-right: 16px;
  }

  .interview-title h2 {
    margin: 0 0 20px 0;
    font-size: 5.6rem;
  }

  .interview-title p {
    font-size: 2rem;
  }

  .interview-player-name span {
    font-size: 2.4rem;
  }

  .interview-intro .text-box,
  .interview-intro .img-box {
    width: 49%;
  }

  .interview-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.schedule-content {
  max-width: 720px;
  margin: 0 auto;
}

.schedule-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.schedule-list dt {
  padding: 8px 0 8px 4px;
  width: 29%;
  color: #f5c000;
  border-bottom: 1px solid #00abeb;
}

.schedule-list dt span{
  font-size: 1.4rem;
}

.schedule-list dd {
  margin: 0;
  padding: 8px 0;
  width: 71%;
  color: #00abeb;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 1px solid #00abeb;
}

.schedule-list dd span {
  display: block;
  padding: 3px 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

.schedule-head dt,
.schedule-head dd {
  padding: 4px 0 4px 4px;
}

.schedule-list dt.kickoff,
.schedule-list dd.kickoff{
  background: #27b8f0;
  color: #fff;
}

.schedule-list dd ul{
  margin: 0;
}

.schedule-list dd li{
  position: relative;
  padding: 2px 0 2px 1em;
}

.schedule-list dd li::before{
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media print,
(min-width: 768px) {

  .schedule-list dt{
    padding: 16px 0 16px 4px;
    font-size: 1.8rem;
  }

  .schedule-list dd {
    padding: 16px 0;
    font-size: 1.8rem;
  }

  .schedule-head dt{
    padding: 8px 0 8px 4px;
  }

  .schedule-head dd {
    padding: 8px 0;
  }
}

.rank-content h3 {
  margin: 0 0 20px 0;
  font-size: 2rem;
  font-weight: bold;
}

.rank-date {
  margin: 0 0 2px 0;
  padding: 4px 10px;
  background: #000;
  color: #fff;
}

.we-rank-table {
  width: 100%;
  margin: 0 auto 30px auto;
}

.we-rank-table tr th,
.we-rank-table tr td {
  padding: 4px 0;
  width: 9%;
  text-align: center;
}

.we-rank-table tr th {
  background: #ECE7DD;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.we-rank-table tr th:first-child {
  border-left: none;
}

.we-rank-table tr th:first-child,
.we-rank-table tr td:first-child {
  width: 10%;
}

.we-rank-table tr th:nth-child(2),
.we-rank-table tr td:nth-child(2) {
  width: 24%;
}

.we-rank-table tr td:nth-child(2) {
  text-align: left;
}

.we-rank-table tr th:last-child,
.we-rank-table tr td:last-child {
  width: 12%;
}

.we-rank-table tr:nth-child(odd) {
  background: #eeeeef;
}

.we-rank-table tr.home {
  background: #B0DFF8;
}

@media screen and (max-width: 767px) {

  .we-rank-table tr th,
  .we-rank-table tr td {
    font-size: 1.4rem;
  }
}

@media print,
(min-width: 768px) {

  .we-rank-table tr th,
  .we-rank-table tr td {
    padding: 10px 0;
  }
}

.we-outline h4 {
  position: relative;
  margin: 0 0 10px 0;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: bold;
}

.we-outline h4 span {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  font-size: 1.6rem;
  transform: translateY(-50%) rotate(90deg);
}

.we-outline-list {
  margin: 0 0 20px 0;
}

.we-outline-list li {
  position: relative;
  padding: 2px 0 2px 1.2em;
  line-height: 1.4;
}

.we-outline-list li::before {
  content: "■";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  color: #A69466;
}

.we-official {
  padding: 10px;
  border: 1px solid #A69466;
  border-radius: 6px;
}

.we-official span,
.we-official a {
  display: block;
  color: #A69466;
  text-align: center;
}

.we-official span {
  padding-bottom: 4px;
  border-bottom: 1px solid #A69466;
}

.rank-inner .rank-content:nth-of-type(n+2){
  margin-top: 40px;
}

.we-match-table {
  width: 100%;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #ccc;
}

.we-match-table tr th,
.we-match-table tr td {
  width: 15%;
  padding: 4px;
}

.we-match-table tr th:first-child,
.we-match-table tr td:first-child {
  width: 8%;
}

.we-match-table tr th:nth-child(2),
.we-match-table tr td:nth-child(2) {
  width: 25%;
}

.we-match-table tr th:nth-child(3),
.we-match-table tr td:nth-child(3) {
  width: 12%;
}

.we-match-table tr th:nth-child(4),
.we-match-table tr td:nth-child(4) {
  width: 18%;
}

.we-match-table tr th:nth-child(5),
.we-match-table tr td:nth-child(5) {
  width: 20%;
}

.we-match-table tr th {
  background: #000;
  color: #fff;
  border-bottom: none;
}

.we-match-table tr.home {
  background: #B0DFF8;
}

.we-match-table tr.action {
  background: #ECE7DD;
}

.table-guide li {
  display: inline-block;
  margin: 4px 10px 4px 0;
  padding: 0 0 0 18px;
  position: relative;
  font-size: 1.4rem;
}

.table-guide li::before {
  content: "";
  display: block;
  width: 16px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid #ccc;
}

.table-guide li:last-child {
  margin-right: 0;
}

.table-guide li:first-child::before {
  background: #b0dff8;
  border: none;
}

.table-guide li:last-child::before {
  background: #ECE7DD;
  border: none;
}


@media screen and (max-width: 767px) {

  .we-match-table tr th,
  .we-match-table tr td {
    font-size: 1.4rem;
  }
}

@media print,
(min-width: 768px) {

  .we-match-table tr th,
  .we-match-table tr td {
    padding: 10px;
  }
}

.map-box {
  padding: 15px;
  margin: 0 auto 40px auto;
  max-width: 480px;
}

.map-info{
  margin: 20px 0 0 0;
  font-weight: bold;
  line-height: 1.4;
}

@media print,
(min-width: 768px) {
  .map-info{
    margin: 40px 0 0 0;
    text-align: center;
  }

  .map-box {
    margin: 0 auto 60px auto;
  }
}

.booth-list .booth-item {
  padding: 16px 0;
  border-top: 1px solid #00abeb;
}

.booth-list .booth-item:last-of-type {
  border-bottom: 1px solid #00abeb;
}

.booth-item h3 {
  position: relative;
  padding-left: 30px;
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.booth-item h3::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

.booth-item h3.gourmet {
  color: #FCC800;
}

.booth-item h3.gourmet::before {
  background: #FCC800;
}

.booth-item h3.event {
  color: #E96081;
}

.booth-item h3.event::before {
  background: #E96081;
}

.booth-item h3.event.no-num{
  padding-left: 0;
}

.booth-item h3.event.no-num::before{
  content: none;
}

.booth-item h3 span {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 24px;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
}

.booth-inner .text-box p {
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .booth-inner .img-box {
    max-width: 240px;
    margin: 16px auto 0 auto;
  }
}

@media print,
(min-width: 768px) {
  .booth-inner {
    display: flex;
    justify-content: space-between;
  }

  .booth-inner .text-box {
    width: 58%;
  }

  .booth-inner .img-box {
    width: 38%;
  }
}

.button-top{
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 6;
}

.button-top a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #00abeb;
  color: #fff;
  border-radius: 50%;
  opacity: .7;
}

@media print,(min-width: 768px) {
  .button-top{
    bottom: 40px;
    right: 2%;
  }
}

.download-intro h3 {
  margin: 0 0 10px 0;
  text-align: center;
}

.download-intro p {
  margin: 0 0 20px 0;
}

.download-sample{
  margin: 0 0 40px 0;
}

.download-sample span {
  display: inline-block;
  padding: 2px 8px;
  margin: 0 0 4px 0;
  background: #00abeb;
  color: #fff;
  font-size: 1.4rem;
}

.download-sample>div {
  max-width: 380px;
  margin: 0 auto;
}

.download-sample p{
  margin: 4px 0 30px 0;
  text-align: center;
}

.download-box{
  padding: 20px 0;
  border-top: 1px solid #00abeb;
}

.download-box div div{
  max-width: 240px;
  margin: 0 auto;
}

.download-box p{
  margin: 4px 0 0 0;
  text-align: center;
}

@media print,
(min-width: 768px) {
  .download-intro {
    text-align: center;
  }
}

.koborebanashi .mdp-wrapper{
  height: 100vh;
}

.koborebanashi-container{
  background: #f1e5be;
  height: 100%;
}

.koborebanashi-list{
  margin: 40px auto;
  max-width: 720px;
}

.koborebanashi-item{
  padding: 20px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.koborebanashi-item a{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.koborebanashi-item a .text-box{
  width: 47%;
}

.koborebanashi-item a .img-box{
  width: 51%;
}

.koborebanashi-item h2{
  margin: 0 0 16px 0;
}

.koborebanashi-intro{
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.new-icon{
  padding-right: 6px;
  font-weight: bold;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .kobore-date{
    font-size: 1.4rem;
  }
  
  .koborebanashi-item h2{
    font-size: 1.8rem;
    margin: 0 0 8px 0;
  }

  .koborebanashi-intro{
    -webkit-line-clamp: 2;
  }

}

@media print,(min-width: 768px) {
  .koborebanashi-item{
    padding: 30px 15px;
  }

  .koborebanashi-item a .text-box{
    width: 56%;
  }
  
  .koborebanashi-item a .img-box{
    width: 40%;
  }

  .koborebanashi-intro{
    -webkit-line-clamp: 3;
  }
}

.koborebanashi-inner .common-page-title{
  font-style: normal;
  color: #000;
}

.koborebanashi-inner h2{
  margin: 0px 0 10px 0;
  font-size: 2.4rem;
}

.koborebanashi-main{
  margin: 20px 0;
}

.koborebanashi-content{
  max-width: 720px;
  margin: 0 auto;
}

.koborebanashi-content>p:nth-child(n+2),
.koborebanashi-content>div:nth-child(n+2){
  margin-top: 30px;
}

.koborebanashi-content p.caption{
  margin-top: 10px;
}

.credit{
  text-align: right;
}

@media print,(min-width: 768px) {
  .koborebanashi-inner h2{
    font-size: 2.4rem;
  }
}

/*--pc横並びギャラリー--*/
.kobore-gallery{
  position: relative;
  margin-top: 30px;
}

.senkyo-gallery li div{
  border: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  .senkyo-gallery{
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .kobore-gallery li:nth-child(n+2){
    margin-top: 30px;
  }
}

@media print,(min-width: 768px) {
  .kobore-gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .senkyo-gallery li{
    width: 32%;
  }

  .wad-gallery li{
    width: 48%;
  }
  
  .kobore-gallery::before,
  .kobore-gallery::after{
    content: "";
    display: block;
    height: 0;
  }

  .kobore-gallery::before{
    order: 1;
  }

  .senkyo-gallery::before,
  .senkyo-gallery::after{
    width: 32%;
  }

  .wad-gallery::before,
  .wad-gallery::after{
    width: 48%;
  }

  .senkyo-gallery li:nth-child(n+4){
    margin-top: 30px;
  }

  .wad-gallery li:nth-child(n+3){
    margin-top: 30px;
  }
}
