@charset "utf-8";

/* ----------共通---------- */

.inner {
  max-width: 72.91666666666666vw;
  margin: 0 auto;
}
body {
  overflow-y: scroll;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

html {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
section {
  background: #1a1a1a;
  padding: 10.4167vw 2%;
  color: #fff;
}
h2 {
  font-size: 7.8125vw;
  line-height: 1;
  position: relative;
  z-index: 1;
  padding: 0 0 0.5208vw 2.6042vw;
}
h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6.25vw;
  height: 6.25vw;
  background: #c0272d;
  z-index: -1;
}
h2 span {
  font-size: 1.25vw;
  display: block;
  line-height: 1;
  color: #a1a1a1;
}
h3 {
  font-size: 1.6667vw;
}
h3 span {
  font-size: 0.9375vw;
  display: block;
  color: #a1a1a1;
}
.mainp {
  line-height: 2;
  font-size: 0.8333vw;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.btn {
  text-align: center;
  margin-top: 5.7292vw;
}
.btn a {
  font-weight: 700;
  background: none;
  border: 0.1042vw solid #c0272d;
  color: #c0272d;
  padding: 0.8em 5em 0.8em 2em;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 0.8333vw;
}
.btn a::after {
  content: "";
  position: absolute;
  width: 1.5625vw;
  height: 1.5625vw;
  right: 1.6em;
  top: 0.6em;
  background: url(../images/btn.svg) no-repeat center center / 1.5625vw;
  transition: all ease 0.2s;
}
.btn a:hover::after {
  right: 1em;
  transition: all ease 0.2s;
}

.pcnone {
  display: none;
}
.spnone {
  display: block;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(2.6042vw);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time08 {
  animation-delay: 0.8s;
}

.fadeUpTrigger {
  opacity: 0;
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  background: #000;
  width: 4vw;
  height: 4vw;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
#page-top a::before {
  content: "";
  width: 0.625vw;
  height: 0.625vw;
  border: 0.1562vw solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
  margin-top: 0.2604vw;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 1.5625vw;
  bottom: 1.5625vw;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(6vw);
}

/*　左の動き　*/

#page-top.LeftMove {
  animation: LeftAnime 1s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(5.2083vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove {
  animation: RightAnime 1s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(6vw);
  }
}

.red-underline {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.red-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.0417vw; /* 線の太さ */
  background-color: #c0272d; /* 線の色 */
  bottom: -0.4167vw; /* ←これで線の位置を調整（下に0.1042vw） */
  z-index: -1;
}

.shippori {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
.red-font {
  color: #c0272d;
}

/* ----------共通終わり---------- */

/* ----------TOP---------- */

header {
  display: flex;
  z-index: 999;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.2083vw;
  background: linear-gradient(#1a1a1a, #00000000);
}
h1 img {
  width: 5.208333333333334vw;
}
.pcnav ul {
  display: flex;
  gap: 2.0833vw;
  width: 100%;
}
.pcnav ul a {
  color: #fff;
  font-size: 1.25vw;
  font-weight: 700;
}
.sns-box {
  display: flex;
  gap: 1.0417vw;
}
.sns-box li {
  width: 1.8229166666666667vw;
}
.sns-box li:nth-last-child(1) {
  width: 2.083333333333333vw;
}

main .fv {
  position: relative;
  z-index: 0;
  filter: drop-shadow(0.2604vw 0.2604vw 0.2604vw #00000070);
}
/* FVスライダー */
.slider {
  margin-inline: auto;
  overflow: hidden;
}
.slick-img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
/* FVスライダー終わり */
.catch {
  position: absolute;
  top: 30%;
  left: 10%;
  font-size: 2.9166666666666665vw;
  color: #fff;
  line-height: 1;
}

.mozi-slider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.loop-text {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}
.track {
  display: inline-block;
  white-space: nowrap;
  font-size: 10.4167vw;
  font-weight: 700;
  color: transparent;
  animation: scroll 40s linear infinite;
}
.mozi-01 {
  color: transparent;
  -webkit-text-stroke: 0.2083vw #c0272d;
  margin-right: 2vw;
}
.mozi-02 {
  color: transparent;
  -webkit-text-stroke: 0.2083vw #ffffff;
  margin-right: 2vw;
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.main-greet {
  font-size: 7.8125vw;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.1;
  font-weight: 700;
}
.sub-greet {
  font-size: 1.875vw;
  text-align: center;
  margin-top: 3.125vw;
}
.greet-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5.2083vw;
}
.greet-img {
  max-width: 41.6667vw;
  display: inline-block;
  position: relative;
  width: fit-content;
}
.greet-img img {
  display: block;
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 1) 20%
  );
  mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 1) 30%
  );
}
.greet-flex .mainp {
  position: relative;
  z-index: 1;
  margin-left: -5.2083vw;
  max-width: 33.8542vw;
}
.cutin01 {
  width: 100%;
  height: 26.0417vw;
}

.profile {
  padding: 10.4167vw 2% 5.2083vw;
}
.profile-img {
  max-width: 67.7083vw;
  margin: 5.2083vw auto 0;
}
.pro-name {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1.5625vw;
}
.pro-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5208vw;
  width: 1.3021vw;
  margin-top: 0.3125vw;
}
.pro-sns div {
  width: 1.3021vw;
}

.profile-box {
  display: flex;
  justify-content: center;
  max-width: 67.7083vw;
  margin: 5.2083vw auto 0;
  padding: 0 2.6042vw;
}
.profile-list {
  width: calc(100% / 3);
}
.pro-dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8333333333333334vw;
}
.pro-dl dt {
  width: 50%;
  margin-top: 0.5208vw;
}
.pro-dl dd {
  width: 50%;
  margin-top: 0.5208vw;
}
.profile-left dl {
  margin-top: 1.5625vw;
}
.profile-left {
  border-right: 0.0521vw solid #a1a1a1;
  padding-right: 4.1667vw;
}
.profile-list:nth-of-type(2) {
  padding: 0 4.1667vw;
}
.profile-list:nth-of-type(3) {
  padding-left: 4.1667vw;
}
.profile-list:nth-of-type(3) dt {
  width: 40%;
}
.profile-list:nth-of-type(3) dd {
  width: 60%;
}

.news {
  padding: 5.2083vw 2%;
}
.news-box {
  max-width: 67.7083vw;
  margin: 3.6458vw auto 0;
}
.news-box a {
  font-size: 0.9375vw;
  letter-spacing: 0.05em;
  border-bottom: 0.0521vw solid #a1a1a1;
  padding: 1.5625vw 2.6042vw 1.0417vw;
  position: relative;
  display: block;
  color: #fff;
}
.news-box a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.6042vw;
  width: 1.5625vw;
  height: 1.5625vw;
  background: url(../images/btn.svg) no-repeat center center / 1.5625vw;
  transition: all ease 0.2s;
}
.news-box a:hover::after {
  right: 1.5625vw;
  transition: all ease 0.2s;
}
.news-box .time {
  color: #c0272d;
  margin-right: 3.125vw;
}

.gallery {
  padding: 5.2083vw 2%;
}
.gallery-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3021vw;
  margin-top: 5.2083vw;
}
.gallery-list {
  width: calc((100% - 5.2083vw) / 5);
}

.sponsour {
  padding: 5.2083vw 2% 10.4167vw;
}
.sponsour h3 {
  font-size: 3.125vw;
}
.sponsour h3:nth-of-type(2) {
  margin-top: 4.1667vw;
}
.sponsour-list {
  max-width: 62.5vw;
  margin: 3.125vw auto 0;
}

.contact {
  background: url(../images/contact-back.jpg) no-repeat center center / cover;
  padding: 7.8125vw 2%;
}
.contact-box {
  margin-top: 5.2083vw;
  max-width: 67.7083vw;
  padding: 0 2.6042vw;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.contact-box p {
  font-size: 1.25vw;
}

.page-top a {
  display: block;
  background: #c0272d;
  width: 100%;
  height: 3.125vw;
  position: relative;
}
.page-top a::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5625vw;
  height: 1.0417vw;
  background: url(../images/page-top.svg) no-repeat center center / 1.5625vw
    1.0417vw;
}

footer {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 5.2083vw 0;
}
.foot-sns {
  display: flex;
  gap: 0.7812vw;
  width: fit-content;
  margin: 0 auto;
}
.foot-sns div {
  width: 1.3021vw;
}
footer nav ul {
  display: flex;
  gap: 1.0417vw;
  width: fit-content;
  margin: 0 auto;
  margin-top: 2.0833vw;
}
footer nav a {
  color: #fff;
  font-size: 1.25vw;
  font-weight: 700;
}
small {
  margin-top: 2.0833vw;
  display: block;
  font-size: 0.625vw;
}

/* ----------レスポンシブ---------- */
/* ----------共通レスポンシブ---------- */

@media screen and (max-width: 767px) {
  .pcnav {
    display: none;
  }
  .spnav {
    display: block;
  }
  .pcnone {
    display: block;
  }
  .spnone {
    display: none;
  }
  section {
    padding: 80px 5%;
  }
  .inner {
    max-width: 100%;
  }
  .btn {
    margin-top: 40px;
  }
  .btn a {
    border: 1px solid #c0272d;
    padding: 0.7em 5em 0.7em 2em;
    font-size: 12px;
  }
  .btn a::after {
    width: 20px;
    height: 20px;
    right: 1.4em;
    top: 0.6em;
    background: url(../images/btn.svg) no-repeat center center / 20px;
  }

  h2 {
    font-size: 64px;
    padding: 0 0 5px 20px;
  }
  h2 span {
    font-size: 14px;
  }
  h2::before {
    width: 60px;
    height: 60px;
  }
  h3 {
    font-size: 24px;
  }
  h3 span {
    font-size: 14px;
  }
  .mainp {
    font-size: 14px;
  }

  .hamburger {
    display: block;
    height: 60px;
    margin-left: auto;
    position: relative;
    z-index: 10;
    width: 60px;
    border: none;
    background-color: transparent;
  }
  .hamburger.-active .hamburger__line {
    background-color: transparent;
  }
  .hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
    background: #fff;
  }
  .hamburger.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
    background: #fff;
  }
  .hamburger.-active .hamburger__text::before {
    content: "CLOSE";
    color: #fff;
  }
  .hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    background-color: #000;
    transition: 0.4s;
  }
  .hamburger__line:before,
  .hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #000;
    transition: inherit;
  }
  .hamburger__line:before {
    top: -11px;
  }
  .hamburger__line:after {
    top: 11px;
  }
  .hamburger__text {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .hamburger__text::before {
    content: "MENU";
    text-align: center;
    color: #000;
    font-size: 10px;
    font-weight: 900;
  }

  .header__nav-area {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9;
    height: 100vh;
    width: 100%;
    visibility: hidden;
    background-color: #101010;
    transition: 0.4s;
    padding: 0 7%;
  }
  .header__nav-area.-active {
    right: 0;
    visibility: visible;
  }
  .header__nav-area nav ul {
    margin-left: auto;
    margin-right: auto;
  }
  .global-navigation__list li {
    margin-left: 24px;
    margin-top: 15px;
  }
  .global-navigation {
    padding: 7vw 0 0;
    margin: 0 20%;
    text-align: center;
    border-top: 1px solid #fff;
  }
  .global-navigation__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-weight: 500;
    transition: color 0.4s;
    font-size: 20px;
  }
  .global-navigation__link.-accordion {
    position: relative;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0;
  }
  .global-navigation__link.-accordion::after {
    content: "";
    display: block;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 2px;
    background-color: #ed3242;
    transform: translateY(-50%);
    transition: transform 0.4s;
  }
  .global-navigation__link.-accordion::before {
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    background-color: #ed3242;
    transform: translateY(-50%);
  }
  .global-navigation__link.-active::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .global-navigation__list img {
    width: 30px;
  }
  .global-navigation__list .foot-sns {
    margin: 0;
  }
  .global-navigation__list .foot-sns div {
    width: 20px;
  }
  .accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.4s;
  }
  .accordion.-active {
    height: auto;
    padding-top: 30px;
    visibility: visible;
  }
  .accordion__list li {
    font-size: 0.75rem;
  }
  .accordion__list li + li {
    margin-top: 21px;
  }
  .accordion__link {
    color: #172e59;
  }
  .hummain {
    width: 130px;
    margin: 0 auto;
    padding: 25vw 0 7vw;
  }
  .hummain img {
    width: 100%;
  }

  /* ----------共通レスポンシブ終わり---------- */

  header {
    height: 70px;
  }
  .track {
    font-size: 100px;
  }
  h1 img {
    width: 70px;
  }
  .catch {
    top: auto;
    bottom: 10%;
    left: 3%;
    font-size: 30px;
  }
  .red-underline::after {
    height: 8px;
    bottom: -3px;
  }
  .slick-img img {
    height: 650px;
  }

  .greet {
    position: relative;
    padding: 240px 5% 80px;
  }
  .mozi-slider {
    position: absolute;
    bottom: auto;
    top: 50px;
  }
  .mozi-01 {
    color: transparent;
    -webkit-text-stroke: 2px #c0272d;
  }
  .mozi-02 {
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
  }
  @keyframes scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .main-greet {
    font-size: 60px;
  }
  .sub-greet {
    font-size: 16px;
  }
  .greet-flex {
    display: block;
    margin-top: 40px;
  }
  .greet-img {
    max-width: 100%;
  }
  .greet-flex .mainp {
    max-width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .cutin01 {
    width: 100%;
    height: 400px;
  }

  .profile {
    padding: 80px 5% 40px;
  }
  .profile-img {
    max-width: 90%;
    margin-top: 40px;
  }
  .profile-box {
    display: block;
    max-width: 90%;
    margin: 20px auto;
    padding: 0;
  }
  .pro-name {
    display: block;
    text-align: center;
  }
  .profile-list {
    width: 100%;
  }
  .profile-left {
    border: none;
    padding-right: 0;
  }
  .pro-sns {
    gap: 5px;
    width: fit-content;
    margin: 5px auto 0;
  }
  .profile-left dl {
    margin-top: 10px;
  }
  .pro-dl {
    font-size: 14px;
  }
  .pro-sns div {
    width: 20px;
  }
  .pro-dl dt {
    width: 50%;
    margin-top: 20px;
  }
  .pro-dl dd {
    width: 50%;
    margin-top: 20px;
  }
  .profile-list:nth-of-type(3) dt {
    width: 50%;
  }
  .profile-list:nth-of-type(3) dd {
    width: 50%;
  }
  .profile-list:nth-of-type(2) {
    padding: 0;
  }
  .profile-list:nth-of-type(3) {
    padding-left: 0;
  }
  .mgn {
    margin: 0 !important;
  }

  .news {
    padding: 40px 5%;
  }
  .news-box {
    max-width: 90%;
    margin: 20px auto 0;
  }
  .news-box a {
    font-size: 14px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #a1a1a1;
    padding: 20px 10px 15px;
  }
  .news-box .time {
    margin-right: 10px;
  }
  .news-box a::after {
    top: 55%;
    right: 10px;
    width: 20px;
    height: 20px;
    background: url(../images/btn.svg) no-repeat center center / 20px;
  }

  .gallery {
    padding: 40px 5%;
  }
  .gallery-list {
    width: calc((100% - 20px) / 3);
  }
  .gallery-box {
    gap: 10px;
    margin-top: 40px;
  }

  .sponsour {
    padding: 40px 5% 80px;
  }
  .sponsour-list {
    max-width: 90%;
    margin: 20px auto 0;
  }
  .sponsour h3 {
    font-size: 24px;
  }
  .sponsour h3:nth-of-type(2) {
    margin-top: 40px;
  }

  .contact {
    padding: 80px 5%;
  }
  .contact-box {
    margin-top: 40px;
    max-width: 90%;
    padding: 0;
    display: block;
  }
  .contact-box p {
    font-size: 14px;
  }
  .contact .btn {
    text-align: left;
  }

  small {
    font-size: 8px;
    margin-top: 20px;
  }

  footer {
    padding: 40px 0;
  }
  footer nav ul {
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
  }
  footer nav li a {
    font-size: 16px;
  }
  .foot-sns {
    display: flex;
    gap: 10px;
  }
  .foot-sns div {
    width: 20px;
  }
  .page-top a {
    height: 40px;
  }
  .page-top a::before {
    width: 15px;
    height: 10px;
    background: url(../images/page-top.svg) no-repeat center center / 15px 10px;
  }

  /*リンクの形状*/
  #page-top a {
    width: 50px;
    height: 50px;
  }
  #page-top a::before {
    width: 10px;
    height: 10px;
    border: 2px solid;
    border-color: #fff #fff transparent transparent;
  }
  #page-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
  }
  @keyframes RightAnime {
    from {
      opacity: 1;
      transform: translateX(0);
    }
    to {
      opacity: 1;
      transform: translateX(70px);
    }
  }
}

/* ----------TOPレスポンシブ終わり---------- */
/* ----------ABOUTレスポンシブ---------- */
