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

Custom Properties

* ============================================================= */
/* color
============================== */
:root {
  /* text color */
  --base-color: #44403f;
  /* border color */
  --border-color:#fff;
  /* bg color */
  --bg-color:#f5f5f5;
  /* key color */
  --key-color:  #FFE100;
  /* color */
  --white:#fff;
  --black: #333;
  --grey:#7e7775;
  --red: #f53942;
  --light-grey:#cbc8c8;
  --badge-offset: 15%;
}

/* size / font
============================== */
:root {
  --header-height: 80px;
  --max-width: 1920;
  --max-width-px: calc(var(--max-width) * 1px);
  --inner-width: 1080;
  --inner-width-px: calc(var(--inner-width) * 1px);
  --inner-padding: calc(10px + var(--slope-1px) * 10);
  --base-border-radius:10px;
  --frame-border-radius: calc(22px + var(--slope-1px) * 28);
  --ovall-radius:calc(1px / 0);
  /* font */
  --line-height: 1.556;
  --leading-trim:  calc((1em - 1lh) / 2);
  --is-support-lh: initial;
  --is-support-not-lh: "";
  /* family */
  --base-font-family: "Noto Sans JP", sans-serif;
  --en-font-family: "Roboto", sans-serif;
  /* animation */
  --button-animation:cubic-bezier(.455, .03, .515, .955);
  --pop-animation:cubic-bezier(.175, .885, .32, 1.275);
}

@media screen and (max-width: 767px) {
  :root {
    --header-height: 55px;
  }
}

:root:has(.l-sticky) {
  --sticky-height:60px;
}

@media screen and (max-width: 767px) {
  :root:has(.l-sticky) {
    --sticky-height:54px;
  }
}

:root :where(:lang(en)) {
  --leading-trim: var(--is-support-lh, calc((1cap - 1lh) / 2)) var(--is-support-not-lh, 0px);
}

@supports not (top: 1lh) {
  :root :where(:root) {
    --is-support-lh: "";
    --is-support-not-lh: initial;
  }
}

/* utility
============================== */
:root {
  --vw: 1vw;
  --vh: 1vh;
  --slope-1px: clamp(0px, -.95663px + .2551vw, 1px);
}

:root {
  /* svg icon */
  --icon-arrow: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="14" viewBox="0 0 8 14" fill="none"><path d="M1.40526 13.1895L0 11.7842L5.18948 6.59474L0 1.40526L1.40526 0L8 6.59474L1.40526 13.1895Z" fill="white"/></svg>');
  --icon-plus: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M10.8 18H13.2V13.2H18V10.8H13.2V6H10.8V10.8H6V13.2H10.8V18ZM12 24C10.34 24 8.78 23.685 7.32 23.055C5.86 22.425 4.59 21.57 3.51 20.49C2.43 19.41 1.575 18.14 0.945 16.68C0.315 15.22 0 13.66 0 12C0 10.34 0.315 8.78 0.945 7.32C1.575 5.86 2.43 4.59 3.51 3.51C4.59 2.43 5.86 1.575 7.32 0.945C8.78 0.315 10.34 0 12 0C13.66 0 15.22 0.315 16.68 0.945C18.14 1.575 19.41 2.43 20.49 3.51C21.57 4.59 22.425 5.86 23.055 7.32C23.685 8.78 24 10.34 24 12C24 13.66 23.685 15.22 23.055 16.68C22.425 18.14 21.57 19.41 20.49 20.49C19.41 21.57 18.14 22.425 16.68 23.055C15.22 23.685 13.66 24 12 24ZM12 21.6C14.68 21.6 16.95 20.67 18.81 18.81C20.67 16.95 21.6 14.68 21.6 12C21.6 9.32 20.67 7.05 18.81 5.19C16.95 3.33 14.68 2.4 12 2.4C9.32 2.4 7.05 3.33 5.19 5.19C3.33 7.05 2.4 9.32 2.4 12C2.4 14.68 3.33 16.95 5.19 18.81C7.05 20.67 9.32 21.6 12 21.6Z" fill="white"/></svg>');
  --icon-cross: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='currentColor' fill-rule='evenodd' d='M2.9,7.2h4.4V2.9c0,0,0-.2,0-.3,0,0,0-.2.2-.2.2-.2.4-.2.6-.2s.4,0,.6.2c0,0,.1.1.2.2,0,0,0,.2,0,.3v4.4s4.4,0,4.4,0c.2,0,.4,0,.5.2.1.2.2.4.2.6s0,.4-.2.6c0,0-.2.1-.2.2,0,0-.2,0-.3,0h-4.3s0,4.3,0,4.3c0,0,0,.2,0,.3,0,0,0,.2-.2.2-.2.2-.4.2-.6.2s-.4,0-.6-.2c0,0-.1-.1-.2-.2,0,0,0-.2,0-.3v-4.4s-4.4,0-4.4,0c-.2,0-.4,0-.5-.2-.2-.2-.2-.4-.2-.6s0-.4.2-.6c.1-.1.3-.2.5-.2Z'/></svg>");
}

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

base

* ============================================================= */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;

  touch-action: manipulation;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--white);
  letter-spacing: .03em;
  font-weight: 500;
  font-size: calc(1.4rem + var(--slope-1px)*2);
  font-family: var(--base-font-family);
  font-feature-settings: "palt";
  line-height: var(--line-height);
  -webkit-text-size-adjust: 100%;
}

:where(img, svg) {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: var(--white);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a.js-tel {
  text-decoration: none;
}

a.js-tel._active {
  text-decoration: underline;
}

a.js-tel._inactive {
  color: var(--white);
  text-decoration: none;
}

:where(button) {
  overflow: hidden;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

sup {
  vertical-align: super;
  font-size: 70%;
}

sub {
  vertical-align: sub;
  font-size: 70%;
}

*[data-anchor-id] {
  scroll-margin-top: calc(var(--header-height) + 10px);
}

*[data-toggle-id] {
  display: none;
}

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

wrapper

* ============================================================= */
/* l-wrapper
============================== */
.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
  opacity: 0;
  transition: opacity .4s ease-out;
}

@media print {
  .l-wrapper {
    min-width: 1080px;
  }
}

body.is-loaded .l-wrapper {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .l-wrapper {
    min-width: 0;
  }
}

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

header

* ============================================================= */
/* l-header
============================== */
.l-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding-inline: 45px;
  background: #fff;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, .15);
}

@media screen and (max-width: 768px) {
  .l-header {
    padding-inline: var(--inner-padding);
  }
}

/* l-header-logo
============================== */
.l-header-logo {
  display: block;
  width: calc(220px + var(--slope-1px) * 62);
}

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

main

* ============================================================= */
/* main
=============================== */
.l-main {
  position: relative;
  flex-grow: 1;
  width: 100%;
  padding: 0;

  container-type: inline-size;
}

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

footer

* ============================================================= */
/* l-footer
============================== */
.l-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(70px + var(--slope-1px) * 20);
  background: var(--base-color);
  color: var(--light-grey);
  text-align: center;
  font-weight: 400;
  font-size: calc(11px + var(--slope-1px) * 1);
}

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

Loader

* ============================================================= */
.l-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: url(/assets/img/logo-kitakanto.png) 50% 50%/300px auto no-repeat var(--bg-color);
  perspective: 10rem;
  transition: all .4s ease-in;
}

body.is-loaded .l-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

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

navigation

* ============================================================= */
/* c-button
============================== */
.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25.875em;
  height: calc(44px + var(--slope-1px) * 16);
  max-width: 100%;
  margin-inline: auto;
  border: 0;
  background: var(--icon-arrow) top 50% right 14px/8px 14px no-repeat var(--black);
  box-shadow: 0 5px 3px 0 rgba(0, 0, 0, .25);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: calc(15px + var(--slope-1px) * 1);
  transition: all .2s ease-out;
}

@media (any-hover: hover) {
  .c-button:hover {
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .25);
    filter: brightness(1.2);
    transform: translateY(2px);
  }
}

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

section

* ============================================================= */
/* c-section
============================== */
.c-section {
  display: grid;
  grid-template-columns: 100%;
  gap: calc(32px + var(--slope-1px) * 16);
  padding-block: calc(70px + var(--slope-1px) * 50);
}

/* .c-section:not(._bg) + .c-section:not(._bg) {
  padding-top: calc(20px + var(--slope-1px) * 30);
} */

/* .c-section._bg {
  background: url(../img/bg.png) center top repeat, linear-gradient(270deg, #c4c4c4 0%, #f6f6f6 30%, #fff 49.52%, #f6f6f6 70%, #c4c4c4 100%);
}
 */
.c-section._speed {
  position: relative;
}

.c-section._speed:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/bg-speed.png) top right/100% auto no-repeat transparent;

  background-blend-mode: luminosity;
}

.c-section._speed-2 {
  position: relative;
}

.c-section._speed-2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/bg-speed-2.png) top right/100% auto repeat-y transparent;

  background-blend-mode: luminosity;
}

.c-section > * {
  position: relative;
  z-index: 1;
  width: calc(var(--inner-width-px) + var(--inner-padding) * 2);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: var(--inner-padding);
}

.c-section__title{
  /* max-width: 33.8%;
  width: 100%; */
  margin: 0 auto;
}

.c-section__title img{
  /* margin-inline: auto; */
  width: auto !important;
  height: clamp(60px, 10vw, 110px);
  max-width: 100%; 
  object-fit: contain;
  margin-inline: auto;
}

@media screen and (max-width: 560px) {
  .c-section{
    padding-block: calc(50px + var(--slope-1px) * 30);
  }
  .c-section__title img{
    height: clamp(70px, 10vw, 110px);
  }
}

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

mainvisual

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

.p-mainvisual__sp{
  display: none;
}

.p-mainvisual img{
  width: 100%;
}

@media screen and (max-width: 560px) {
.p-mainvisual__pc{
  display: none;
}
.p-mainvisual__sp{
  display: block;
}
.p-mainvisual__sp img{
  width: 100%;
}
}










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

teamprofile

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

.p-teamprofile{
  background-image: url(../img/bg_teamprofile.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.p-teamprofile-about{
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  line-height: 2;
}

.p-teamprofile-about p:last-of-type{
  margin-top: 0.75em;
}

.p-teamprofile-chara{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3.75em;
}

.p-teamprofile-chara p{
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  margin-top: 1.2em;
}

@media screen and (max-width: 560px) {
  .p-teamprofile-about{
    font-size: 1.4rem;
    text-align: left;
  }
  .p-teamprofile-about p br{
    display: none;
  }
  .p-teamprofile-chara{
    margin-top: 2em;
  }
  .p-teamprofile-chara__image{
    width: 30%;
  }
  .p-teamprofile-chara p{
    font-size: 1.4rem;
  }
}



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

schedule

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

.p-schedule{
  background-color: #000;
}

.p-schedule-container{
  width: 100%;
  /* max-width: 1000px; */
  margin: 0 auto;
  overflow-x: auto;
}

.p-schedule-table{
  width: 1080px;
  /* width: 100%; */
  border-collapse: collapse;
  white-space: nowrap;
  font-size: 1.6rem;
}

.p-schedule-table th{
  text-align: left;
  padding: 0.813em 0 0.813em 1.25em;
  color: var(--key-color);
  border-bottom: 1px solid var(--border-color);
  font-weight: bold;
  line-height: 0;
  padding-top: 0;
}

.p-schedule-table__heading{
  display: flex;
  align-items: center;
  gap: 9px;
}

.p-schedule-icon{
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.p-schedule-table td {
    padding: 1.563em 1.25em;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    font-weight: 400;
}

.p-schedule-table__date span{
  font-family: var(--en-font-family);
}

.p-schedule-table th:nth-child(1){
  width: 160px;
}
.p-schedule-table th:nth-child(2){
  width: 400px;
}
.p-schedule-table th:nth-child(3){
  width: 304px;
}

.p-schedule-table th:nth-child(5){
  text-align: right;
}
.p-schedule-table td:nth-child(5){
    text-align: center;
    padding-right: 0;
}

.p-schedule-table th:nth-child(5) .p-schedule-table__heading{
  justify-content: flex-end;
}

.p-schedule-table__map{
  display: flex;
  gap: 15px;
}

.p-schedule-badge{
  padding: 3px 15px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--en-font-family);
  text-transform: uppercase;
  clip-path: polygon(
      var(--badge-offset) 0,
      100% 0,
      calc(100% - var(--badge-offset)) 100%,
      0 100%
  );
}

.p-schedule-badge._home{
  background-color: #E60012;
}
.p-schedule-badge._away{
  background-color: #4E4E4E;
}

.result-win {
    display: block;
    width: 16px;
    height: 16px;
    border: 1.5px solid white;
    border-radius: 50%;
    vertical-align: middle;
    margin-inline: auto;
}

.result-lose {
    display: block;
    width: 16px;
    height: 16px;
    border: 1.5px solid white;
    border-radius: 50%;
    vertical-align: middle;
    margin-inline: auto;
    background-color: #fff;
}

.p-schedule-table__score{
  font-family: var(--en-font-family);
}


@media screen and (max-width: 560px) {
  .p-schedule-table{
    font-size: 1.4rem;
  }
}



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

standings

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

.p-standings{
  background-color: #000;
}

.p-standings-wrapper{
  width: 100%;
  /* max-width: 1000px; */
  margin: 0 auto;
  overflow-x: auto;
}

.p-standings-table {
    /* width: 100%; */
    width: 1080px;
    border-collapse: collapse;
    white-space: nowrap;
    font-weight: 400;
}

.p-standings-table th {
    color: var(--key-color);
    font-weight: bold;
    padding: 0.938em 0.313em;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    white-space: nowrap;
    padding-top: 0;
}

.p-standings-table td {
    padding: 1.563em 1.25em;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.p-standings-table__head span{
  font-family: var(--en-font-family);
}

.p-standings-table__tbody tr td{
  font-family: var(--en-font-family);
}

.p-team-table__name{
  text-align: left !important;
  font-family: var(--base-font-family) !important;
}


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

venue

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

/* .p-venue{
  position: relative;
  overflow: hidden;
  line-height: 0;
} */

.p-venue {
  position: relative;
  width: 100%;
  height: clamp(200px, 45vw, 600px); 
  overflow: hidden;
  clip-path: inset(0);
}

.p-venue__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/venue.jpg"); 
  background-size: cover;
  background-position: center 40%; 
  z-index: -1;
}

@media screen and (max-width: 560px) {
  .p-venue{

  }
}

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

event

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

.p-event{
  background-color: #000;
  background-image: url(../img/bg_pastevent.jpg);
  background-size: contain;
  background-repeat: repeat;
}



.p-event__block{
  display: flex;
  gap: 56px;
}

.p-event__block + .p-event__block{
  margin-top: 88px;
}

.p-event__head{
  width: 50%;
}

.p-event__foot{
  display: flex;
  gap: 24px;
}

/* .p-event__image{
  position: relative;
  overflow: hidden;
  height: 170px;
}

.p-event__image img{
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 0.5s ease 0.4s, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.p-event__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: var(--key-color);
  transform: translateY(-101%);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.p-event__image.is-active img {
  opacity: 1;
  transform: scale(1);
}

.p-event__image.is-active::before {
  animation: revealColor 0.8s cubic-bezier(0.76, 0, 0.24, 1) forwards;
} */

@keyframes revealColor {
  0% {
    transform: translateY(-101%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(101%);
  }
}

.p-event__date{
  font-weight: 400;
  font-family: var(--en-font-family);
}

.p-event__title{
  font-size: 2.4rem;
  font-weight: 900;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

.p-event__title span{
  font-size: 1.6rem;
  font-weight: 500;
}

.p-event__text{
  padding-top: 10px;
  line-height: 1.8;
}


@media screen and (max-width: 560px) {
  .p-event__block{
    flex-direction: column-reverse;
    gap: 25px
  }
  .p-event__head{
    width: 100%;
  }
  .p-event__foot{
    gap: 15px;
  }
  .p-event__title{
    font-size: 1.8rem;
  }
  .p-event__block + .p-event__block {
    margin-top: 50px;
  }
  .p-event__date{
    margin-bottom: 3px;
  }
}


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

sns

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



.p-sns{
  background-color: #000;
}

.p-sns__list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-sns__list li a{
  transition: all .5s;
}

.p-sns__list li a:hover{
  opacity: .6;
}


@media screen and (max-width: 560px) {
  .p-sns__list{
    grid-template-columns: repeat(2, 1fr);
  }
}


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

Utility

* ============================================================= */
/* Media Query Setting
====================================== */
.u-tablet-block {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-tablet-block {
    display: block !important;
  }
}

.u-tablet-inline-block {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-tablet-inline-block {
    display: inline-block !important;
  }
}

.u-tablet-flex {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-tablet-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 768px) {
  .u-tablet-none {
    display: none !important;
  }
}

.u-mobile-block {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-block {
    display: block !important;
  }
}

.u-mobile-inline-block {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-inline-block {
    display: inline-block !important;
  }
}

.u-mobile-flex {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 560px) {
  .u-mobile-none {
    display: none !important;
  }
}

/* text align
====================================== */
.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-ta-center {
  text-align: center !important;
}

/* display
====================================== */
.u-d-block {
  display: block !important;
}

.u-d-none {
  display: none !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

/* position
====================================== */
.u-pos-static {
  position: static !important;
}

.u-pos-relative {
  position: relative !important;
}

.u-pos-absolute {
  position: absolute !important;
}

.u-pos-fixed {
  position: fixed !important;
}

/* clear
====================================== */
.u-clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}

/* other
====================================== */
.u-strong {
  font-weight: bold !important;
}

.u-pointer {
  cursor: pointer;
}

.u-nowrap {
  white-space: nowrap;
}

.u-color-honda {
  color: #cc0000 !important;
}

.u-color-ciao {
  color: #0068b6 !important;
}

.u-color-mamoru {
  color: #8fc31f !important;
}

.u-rotate-90 {
  transform: rotate(90deg);
}

/* animationn
====================================== */
.u-no-transition {
  transition: none !important;
}
