@charset "utf-8";

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

/* !Reseting
---------------------------------------------------------- */

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td {
  margin: 0;
  padding: 0;
}
input,
textarea {
  margin: 0;
  font-size: 100%;
}
label {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}
fieldset,
img {
  border: 0;
}
img {
  vertical-align: top;
  max-width: 100%;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:after,
q:before {
  content: "";
}
a,
input,
select,
textarea,
button {
  outline: none;
}
abbr,
acronym {
  border: 0;
}

bo *,
*:before,
*:after {
  box-sizing: border-box;
}
p {
  line-height: 175%;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op img {
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op:hover img {
  opacity: 0.7;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
}

@font-face {
  font-family: "utah";
  src: url("../font/utah.ttf") format("truetype");
}

@font-face {
  font-family: "utc-light";
  src: url("../font/UtC_WG_l.ttf") format("truetype");
}

@font-face {
  font-family: "utc-bold";
  src: url("../font/UtC_WG_b.ttf") format("truetype");
}

/* スライドタイトル */
h2 {
  font-family: "utah", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 .wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}

h2 .wrapper .loop_text {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 20rem;
  overflow: hidden;
  color: black;
  line-height: 1;
  padding-left: 4rem;
}

h2 .wrapper .loop_text:nth-child(odd) {
  animation: loop 40s -20s linear infinite;
}

h2 .wrapper .loop_text:nth-child(even) {
  animation: loop2 40s linear infinite;
}

h2 span {
  font-size: 2.4rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  h2 .wrapper .loop_text {
    font-size: 12.8rem;
  }
  h2 span {
    font-size: 2rem;
    text-align: center;
    line-height: 240%;
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/* ボタン */
.btn {
  width: 50rem;
}

.btn a {
  border: 1px solid black;
  border-radius: 1rem;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.6rem 0;
}

.btn a img {
  width: 3.2rem;
  transition: opacity 0.3s ease;
}

.arrow_wrapper {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
}

.btn a .arrow_bk {
  opacity: 1;
}

.btn a .arrow_wh {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

/* ホバー時 */
.btn a:hover {
  background: black;
  color: white;
}

.btn a:hover .arrow_bk {
  opacity: 0;
}

.btn a:hover .arrow_wh {
  opacity: 1;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .btn a:hover {
    background: black;
    color: white;
  }

  .btn a:hover .arrow_bk {
    opacity: 0;
  }

  .btn a:hover .arrow_wh {
    opacity: 1;
    z-index: 2;
  }
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: scroll;
  font-size: 62.5%;
  scroll-padding-top: 122px;
  scroll-behavior: smooth;
}
body {
  color: black;
  background: #efefef;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  -webkit-text-size-adjust: none;
  line-height: 175%;
}
h1,
h2,
h3,
h4 {
  line-height: 150%;
  font-weight: 700;
}
iframe {
  aspect-ratio: 16/9;
}
video {
  aspect-ratio: 16/9;
}
.inner {
  width: 120rem;
  max-width: calc(100% - 3.2rem);
  margin: 0 auto;
}
.inner.md {
  width: 96rem;
}
.inner.lg {
  width: 130rem;
  max-width: calc(100% - 6.2rem);
}

/*** pc 835px ~ 1100px ***/
@media screen and (min-width: 767px) and (max-width: 1200px) {
  html {
    font-size: calc(100vw / 120);
  }
}

/*** sp ***/
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 37.5);
  }
}

/*** pc ***/
@media screen and (min-width: 767px) {
  .sp {
    display: none;
  }
}

/*** sp ***/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

/* !header
---------------------------------------------------------- */
header {
  position: relative;
  z-index: 99;
}

.menu_btn {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1002;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu_btn:hover {
  opacity: 0.8;
}

.menu_btn.close {
  opacity: 0;
  pointer-events: none;
}

/* メニューが開いている時の状態 */
.menu-open .menu_btn:not(.close) {
  opacity: 0;
  pointer-events: none;
}

.menu-open .menu_btn.close {
  opacity: 1;
  pointer-events: auto;
}

.menu-open {
  overflow: hidden;
  /* height: 100vh; */
}

/* ナビゲーション */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6rem 0;
}

.menu-open nav {
  opacity: 1;
  visibility: visible;
}

/* navの中身をラップするコンテナ */
nav .nav_content {
  display: flex;
  /* justify-content: center; */
  padding-left: 15%;
  align-items: center;
  min-height: calc(100vh - 12rem);
  /* padding-top: 4rem; */
}

nav .kakitani_emblem {
  width: 43.3rem;
  flex-shrink: 0;
}

nav ul {
  display: flex;
  gap: 2.4rem;
  flex-direction: column;
  margin-left: 26rem;
}

nav ul li {
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.menu-open nav ul li {
  transform: translateY(0);
  opacity: 1;
}

nav ul li a:hover {
  opacity: 0.6;
}

nav ul li a p {
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "utah", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: -1.8px;
  line-height: 1;
}

nav ul li a p img {
  width: 3.6rem;
}

nav ul li a span {
  font-size: 1.4rem;
  color: #ffaac1;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .menu_btn {
    top: 1.6rem;
    right: 1.6rem;
    width: 4rem;
  }

  /* ナビゲーション */
  nav {
    padding: 7.5rem 0;
  }

  nav .nav_content {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-top: 2rem;
  }

  nav .kakitani_emblem {
    display: none;
  }

  nav ul {
    margin-left: 0;
  }
}

/* !fixed-logo
---------------------------------------------------------- */
.fixed_logo {
  position: fixed;
  top: 2.5rem;
  left: 2.5rem;
  z-index: 1003;
  width: 25rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.fixed_logo.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .fixed_logo {
    width: 16rem;
    top: 1.6rem;
    left: 1.6rem;
  }
}

/* !fixed_cv
---------------------------------------------------------- */
.fixed_cv {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fixed_cv a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .fixed_cv {
    bottom: 1.4rem;
    right: 1.6rem;
    width: 100%;
    text-align: center;
    right: unset;
    left: 50%;
    transform: translateX(-50%) translateY(0);
  }

  .fixed_cv.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
  }
}

/* !fixed-bg
---------------------------------------------------------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* !KV
---------------------------------------------------------- */
.main_visual {
  width: 100%;
}

.main_visual img {
  width: 100%;
}

/* !movie
---------------------------------------------------------- */
.movie {
  padding: 6.6rem 0 14.4rem;
}

.youtube_wrapper {
  text-align: center;
  margin-top: 4.8rem;
}

.movie iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .movie {
    padding: 11.2rem 0;
  }
}

/* !message
---------------------------------------------------------- */
.message {
  padding-bottom: 14.4rem;
}

.message .inner {
  max-width: calc(100% - 6.4rem);
}

.message_wrapper {
  display: flex;
  gap: 4rem;
  margin-top: 6.4rem;
}

.message_wrapper .message_image {
  width: 45rem;
  border-radius: 2.4rem;
}

.message_wrapper .comment {
  font-size: 2rem;
  font-weight: bold;
  line-height: 200%;
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  align-items: end;
}

.message_wrapper .comment img {
  width: 15.7rem;
}

@media screen and (max-width: 767px) {
  .message {
    padding-bottom: 11.2rem;
  }

  .message_wrapper {
    flex-direction: column;
    gap: 4.8rem;
    margin-top: 4.8rem;
  }

  .message_wrapper .message_image {
    width: 100%;
  }

  .message_wrapper .comment {
    font-size: 1.6rem;
  }

  .message_wrapper .comment img {
    width: 11.5rem;
  }
}

/* !match
---------------------------------------------------------- */
.match {
  padding-bottom: 14.4rem;
}

.match_wrapper {
  margin-top: 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  overflow: hidden;
}

.match_wrapper .match_image {
  border-radius: 2.4rem;
}

.match_wrapper h3 {
  margin: 0 auto 7.7rem;
}

.match_wrapper h3 img {
  width: 75rem;
  max-width: 100%;
}

.match_wrapper .match_day {
  font-size: 6.4rem;
  font-family: "utc-bold", sans-serif;
  font-weight: bold;
  line-height: 1;
}

.match_wrapper .match_info {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 3.2rem;
}

.match_wrapper .match_info .team {
  font-size: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  width: 90rem;
  max-width: 100%;
  margin: 0 auto;
  line-height: 140%;
}

.match_wrapper .match_info .team span {
  font-size: 4rem;
}

.match_wrapper .match_info .kickoff {
  font-size: 4rem;
  font-family: "utah", sans-serif;
}

.match_wrapper .match_info .access {
  font-size: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.match_wrapper .match_info .access img {
  width: 3.2rem;
}

.match_wrapper .match_info .access a {
  text-decoration: underline;
}

.match_wrapper .presents {
  font-size: 2rem;
  line-height: 140%;
  text-align: start;
}

.partner_wrapper {
  margin-top: 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.partner_wrapper h3 {
  font-family: "utah", sans-serif;
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 3.2rem;
}

.partner_wrapper .partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}

.partner_wrapper .partners a {
  transition: opacity 0.3s ease;
  width: 20%;
}

.partner_wrapper .partners a:hover {
  opacity: 0.8;
}

.partner_wrapper .partners.yammer a {
  width: 65.9rem;
}


@media screen and (max-width: 767px) {
  .match {
    padding-bottom: 11.2rem;
  }

  .match_wrapper {
    margin-top: 4.8rem;
    gap: 4.8rem;
  }

  .match_wrapper .match_image {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
  }

  .match_wrapper h3 {
    margin: 0 auto 2.4rem;
  }  

  .match_wrapper h3 img {
    width: 34.3rem;
  }

  .match_wrapper .match_day {
    font-size: 4rem;
  }

  .match_wrapper .match_info {
    margin-top: 2.4rem;
  }

  .match_wrapper .match_info .team {
    font-size: 3.6rem;
    flex-direction: column;
    gap: 1.2rem;
    margin: 0 auto;
  }

  .match_wrapper .match_info .team span {
    font-size: 2.4rem;
    line-height: 100%;
  }

  .match_wrapper .match_info .kickoff {
    font-size: 3.6rem;
  }

  .match_wrapper .match_info .access {
    font-size: 2rem;
  }

  .match_wrapper .match_info .access img {
    width: 2.4rem;
  }

  .match_wrapper .presents {
    font-size: 1.4rem;
    padding: 0 1.6rem;
    width: 31rem;
  }

  .partner_wrapper {
    margin-top: 4.8rem;
  }

  .partner_wrapper h3 {
    font-size: 3.6rem;
  }

  .partner_wrapper .partners {
    gap: 1.2rem;
  }

  .partner_wrapper .partners a:hover {
    opacity: 1;
  }

  .partner_wrapper .partners.yammer a {
    width: 20rem;
  }

  .partner_wrapper .partners a {
    width: 48%;
  }

  .partner_wrapper .partners a img {
    width: 100%;
  }
}

/* !uniform
---------------------------------------------------------- */
.uniform {
  padding-bottom: 14.4rem;
}

.uniform_wrapper {
  margin-top: 6.4rem;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.uniform_wrapper img {
  width: calc(50% - 1rem);
}

@media screen and (max-width: 767px) {
  .uniform {
    padding-bottom: 11.2rem;
  }

  .uniform_wrapper {
    flex-direction: column;
    gap: 4.8rem;
    margin-top: 4.8rem;
  }

  .uniform_wrapper img {
    width: 100%;
  }
}

/* !goods
---------------------------------------------------------- */
.goods {
  padding-bottom: 14.4rem;
}

.goods_wrapper {
  margin-top: 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .goods {
    padding-bottom: 11.2rem;
  }

  .goods_wrapper {
    flex-direction: column;
    gap: 4.8rem;
    margin-top: 4.8rem;
  }

  .goods_wrapper img {
    width: 100%;
  }
}

/* !ticket
---------------------------------------------------------- */
.ticket {
  padding-bottom: 14.4rem;
}

.ticket_wrapper {
  margin-top: 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  justify-content: center;
  align-items: center;
}

.ticket_wrapper .ticket_images {
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  align-items: center;
}

.ticket_wrapper .ticket_images .price_image {
  padding: 0 2rem;
}

.ticket_wrapper .note li {
  font-size: 1.4rem;
  display: flex;
  gap: 0.8rem;
  line-height: 140%;
}

@media screen and (max-width: 767px) {
  .ticket {
    padding-bottom: 11.2rem;
  }

  .ticket_wrapper {
    margin-top: 4.8rem;
    gap: 0;
  }

  .ticket_wrapper .ticket_images {
    gap: 2.4rem;
    margin-bottom: 2.4rem;
  }

  .ticket_wrapper .ticket_images .price_image {
    padding: 0;
  }

  .ticket_wrapper .note {
    margin-bottom: 3.2rem;
  }

  .ticket_wrapper .note li {
    font-size: 1.2rem;
  }
}

/* !page_top
---------------------------------------------------------- */
.page_top {
  background: rgba(255, 255, 255, 0.6);
  font-size: 2.2rem;
  font-family: "utah", sans-serif;
}

.page_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1.6rem 0;
  transition: 0.3s;
}

.page_top a img {
  width: 1.2rem;
  margin-top: 0.8rem;
}

.page_top a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .page_top a {
    gap: 1.1rem;
  }

  .page_top a img {
    margin-top: 0;
  }
}

/* !profile
---------------------------------------------------------- */
.profile {
  position: relative;
}

.profile-background-wrapper {
  position: relative;
}

.profile-background-wrapper .background-image {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

.profile-background-wrapper .profile,
.profile-background-wrapper .page_top,
.profile-background-wrapper footer {
  position: relative;
  z-index: 2;
}

.profile .inner {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 9.7rem;
}

.profile .profile_wrapper {
  grid-column-start: 2;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  margin-top: 100vh;
  pointer-events: auto;
}

.profile .profile_wrapper.show {
  opacity: 1;
  transform: translateY(0);
}

.profile h2 {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-bottom: 4.5rem;
}

.profile h2 p {
  font-size: 12.8rem;
  line-height: 0.8;
  font-family: "utah", sans-serif;
}

.profile h2 span {
  font-size: 2.4rem;
  line-height: 1;
}

.profile ul {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.profile ul li p {
  font-weight: bold;
  line-height: 140%;
}

.profile ul li > p:first-child {
  font-size: 3.6rem;
  margin-bottom: 2.4rem;
}

.profile ul li > p:not(:first-child) {
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .profile-background-wrapper .background-image {
    object-position: 12% center;
  }

  .profile .inner {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 11.2rem;
  }

  .profile .profile_wrapper {
    grid-column-start: 1;
  }

  .profile h2 {
    margin-bottom: 4rem;
  }

  .profile h2 p {
    font-size: 6.4rem;
  }

  .profile h2 span {
    font-size: 2rem;
  }

  .profile ul {
    gap: 4rem;
  }
  .profile ul li > p:first-child {
    font-size: 2rem;
  }

  .profile ul li > p:not(:first-child) {
    font-size: 1.6rem;
  }
}

/* !footer
---------------------------------------------------------- */
footer {
  background: rgba(218, 0, 92, 0.6);
  padding: 6.4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

footer .emblem {
  width: 14.4rem;
}

footer ul {
  display: flex;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 4rem;
}

footer ul li {
  border-right: solid 1px white;
  height: fit-content;
  line-height: 1.1;
}

footer ul li:last-child {
  border: none;
}

footer ul li a {
  padding: 0 1.1rem;
}

footer ul li a:hover {
  opacity: 0.8;
}

footer .copyright {
  color: white;
  font-size: 1.2rem;
  margin-top: 4.8rem;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 6.4rem 0 5.6rem;
  }

  footer ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem 0;
  }

  footer ul li:nth-child(3n) {
    border-right: none;
  }

  footer .copyright {
    margin-top: 2.4rem;
  }
}
