@charset "UTF-8";

:root {
  --accent: #c98233;
  --beige: #f5efe6;
  --line: #d9d4cc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "LINE Seed JP", "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header__inner {
  width: calc(100% - 60px);
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
  border-radius: 12px;
}

.header__logo img {
  width: 104px;
}

.header__nav {
  display: flex;
  gap: 38px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
}


.header__hamburger{
  display:none;
}

@media screen and (max-width: 767px){
  .header__inner{
    position:relative;
  }

.header__hamburger{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    width:44px;
    height:44px;
    margin-left:auto;
    padding:0;
    border:0;
    background:transparent;
    cursor:pointer;
    z-index:1001;
  }

  .header__hamburger span{
    display:block;
    width:28px;
    height:2px;
    background:#111;
    transition:.3s;
  }

  .header__nav{
    display:flex !important;
    position:fixed;
    inset:0;
    width:100%;
    height:100vh;
    background:#f8f6f2;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:26px;
    z-index:1000;

    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.3s;
  }

  .header__nav.is-open{
    right:0;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .header__nav a{
    display:block;
    color:#111;
    font-size:18px;
    font-weight:700;
    letter-spacing:.08em;
  }

  .header__hamburger{
    position:relative;
    z-index:1001;
  }

  /* ×ボタン */

  .header__hamburger.is-open span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
  }

  .header__hamburger.is-open span:nth-child(2){
    opacity:0;
  }

  .header__hamburger.is-open span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
  }
}

.footer {
  background: #202020;
  color: #fff;
}

.footer__inner {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
  padding: 72px 0 42px;
}

.footer__banners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 30px;
  margin-bottom: 110px;
}

.footer__banners a {
  height: 70px;
  /*background: #f5eee8;*/
  /*color: #111;*/
  display: flex;
  align-items: center;
  /*justify-content: flex-end;*/
  /*padding-right: 28px;*/
  /*font-size: 12px;*/
  /*font-weight: 700;*/
}

.footer__main {
  position: relative;
}

.footer__main > img {
  width: 150px;
  margin-bottom: 58px;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 30px;
  border-top: 1px solid #666;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.footer__copy {
  margin: 52px 0 0;
  color: #aaa;
  font-size: 11px;
  text-align: center;
}

.footer__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
}

.footer__logo {
  width: 150px;
  margin-bottom: 0;
}

.footer__sns {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer__sns img {
  width: 34px;
  height: 34px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .header {
    top: 18px;
  }

  .header__inner {
    width: calc(100% - 32px);
  }

  .header__logo img {
    width: 86px;
  }

  .header__nav {
    display: none;
  }

  .footer__inner {
    width: calc(100% - 32px);
    padding: 48px 0 32px;
  }

  .footer__banners{
    display:grid;
    grid-template-columns: 1fr;
    gap:25px;
	max-width: 300px;
    margin:0 auto 60px;
  }

  .footer__banner{
    width:100%;
  }
  
  .footer__banners a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 16px;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 18px 24px;
    font-size: 10px;
  }
}

/* 共通 */
.section {
  padding: 120px 0;
}

.section__inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.section__inner--2col {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 165px;
}

.sectionHead__en {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.sectionHead h2 {
  margin: 0 0 28px;
  font-size: 60px;
  line-height: 1;
  letter-spacing: .05em;
}

.sectionHead__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em
}

.outlineBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 36px;
  margin-top: 38px;
  border: 1px solid #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
/* NEWS */
.news {
  background: #fff;
}

.news__tabs{
    display:flex;
    align-items:center;
    gap:28px;
}

.news__tabs button{
    position:relative;
    padding:0;
    border:none;
    background:none;
    font-family:inherit;
    font-size:14px;
    font-weight:700;
    letter-spacing:.1em;
    cursor:pointer;
}

@media screen and (max-width:767px){

  .news__tabs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    width:100%;
  }

  .news__tabs button{
    font-size:11px;
    text-align:center;
  }

  .news__tabs .divider{
    display:none !important;
  }

}


.divider{
    width:1px;
    height:16px;
    background:#d8d8d8;
}

.news__tabs .is-active{
    color:#C98233;
}

.news__tabs a {
  position: relative;
  display: inline-block;
}

.news__tabs .is-active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-12px;

    width:100%;
    height:2px;

    background:#C98233;
}

.newsCat{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:110px;
    height:30px;
    font-size:12px;
    font-weight:700;
    color:#fff;
}

.newsCat--info{
    background:#C98233;
}

.newsCat--media{
    background:#D8D8D8;
}

.newsCat--player{
    background:#8FB0E8;
}


.newsList{
    margin-top: 70px;
}

.newsItem {
  display: grid;
  grid-template-columns: 110px 120px 1fr;
  gap: 26px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.newsItem time {
  color: #999;
  padding-left: 15px;
}

.newsItem span {
  display: inline-flex;
  justify-content: center;
  padding: 3px 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.newsItem a {
  font-weight: 500;
  text-decoration: underline;
  font-size: 14px;
}

.textMore {
  display: block;
  margin-top: 36px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.outlineBtn{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:190px;
    height:48px;
    padding:0 16px;
    border:1px solid #222;
    font-size:12px;
    font-weight:700;
}

.outlineBtn__arrow{
    font-size:14px;
    transition:.3s;
}
.outlineBtn:hover .outlineBtn__arrow{
    transform:translateX(4px);
}

.sectionHead__line{
    width:28px;
    height:2px;
    background:#C98233;
    margin:24px 0 32px;
}

.viewAll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 52px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
}

.viewAll__line {
  position: relative;
  width: 72px;
  height: 3px;
  background: #111;
}

.viewAll__line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -1px;
  width: 18px;
  height: 3px;
  background: #111;
  transform: rotate(35deg);
  transform-origin: right center;
}

@media screen and (max-width: 767px) {

  .sectionHead {
    margin-bottom: 36px;
  }

  .sectionHead h2 {
    font-size: 38px;
  }
 .newsItem time {
   color: #999;
   padding-left: 0px;
 }
  .news__tabs {
    gap: 20px;
    /*overflow-x: auto;*/
    white-space: nowrap;
  }

  .newsItem {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .newsItem span {
    width: fit-content;
  }

}
/* player banner */

.athleteCta {
  position: relative;
  z-index:0;
  padding: 110px 0px 110px;
  background: #fff;
}

.athleteCta__inner {
  max-width: 990px;
  margin: 0 auto;
  padding: 20px 42px;
  display: flex;
  align-items: center;
  gap: 30px;
  background: #f7f1ed;
  min-height: 124px;
}


.athleteCta__inner{
  position:relative;
  overflow: visible;
}

.athleteCta__dot{
  position:absolute;
  right:-10px;
  bottom:-30px;
  width:260px;
  z-index:0;
}

.athleteCta__dot img{
  display:block;
  width:100%;
  height:auto;
}

.athleteCta__logo,
.athleteCta__text,
.athleteCta__btn{
  position:relative;
  z-index:1;
}

.athleteCta__logo {
  width: 115px;
  flex-shrink: 0;
}

.athleteCta__text {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 485px;
}

.athleteCta__text h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.6;
  margin-bottom: 8px;
}

.athleteCta__text p {
  margin: 0;
  font-size: 12px;
  letter-spacing: .04em;
}

.athleteCta__btn {
  position: relative;
  z-index: 1;
  min-width: 180px;
  padding-bottom: 8px;
  border-bottom: 1px solid #c46b18;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  letter-spacing: .04em;
}

.athleteCta__btn span {
  margin-left: 12px;
}

.athleteCta__inner::after {
  right: -8px;
  bottom: -28px;
  width: 170px;
  height: 150px;
  background-size: 9px 9px;
  opacity: .45;
}

.playerDetailPage .athleteCta{
  width: calc(100% - 505px);
  margin: 0px 0 0 auto;
  padding: 110px 0px 80px;
}
.company {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.company::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 52%;
  height: 220px;
  /*background: linear-gradient(25deg, rgba(201,130,51,.20), rgba(255,255,255,0));*/
  pointer-events: none;
}
.company__wave{
  position:absolute;
  left:0;
  bottom:-285px;
  z-index:1;
  pointer-events:none;
}

.company__wave img{
  display:block;
  width:100%;
  max-width:none;
}

@media screen and (max-width: 767px) {
  .athleteCta {
    padding: 0 20px 80px;
  }

  .athleteCta__inner {
    padding: 32px 24px;
    display: block;
  }

  .athleteCta__logo {
    width: 56px;
    margin-bottom: 18px;
  }

  .athleteCta__text h2 {
    font-size: 18px;
    line-height: 1.7;
  }

  .athleteCta__text p {
    font-size: 12px;
    line-height: 1.8;
  }

  .athleteCta__btn {
    display: inline-block;
    margin-top: 24px;
    min-width: 0;
  }
}



