@charset "utf-8";

/* common */
* {
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 66px;
}

body {
  color: #4d4d4d;
}
a {
  text-decoration: none;
}

p {
  text-align: justify;
  text-justify: inter-ideograph;
}

img {
  max-width: 100%;
  height: auto;
}

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&family=Noto+Sans+JP:wght@400;500;700&display=swap");

body {
  font-family: "Outfit", "Noto Sans JP", system-ui, sans-serif;
}

/* 英語部分だけ強制的にOutfit */
:lang(en) {
  font-family: "Outfit", sans-serif;
}

/* 日本語部分だけ */
:lang(ja) {
  font-family: "Noto Sans JP", sans-serif;
}

.main-text {
  font-family: "Noto Sans JP";
  font-optical-sizing: auto;
  font-size: 1.2rem;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: calc(31 / 19);
}

.sub-text {
  font-family: "Noto Sans JP";
  font-optical-sizing: auto;
  font-size: 1rem;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.005em;
  line-height: calc(21 / 16);
}

.hyrox-text {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: calc(24 / 16);
  margin-bottom: 24px;
}

.person-text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: calc(26 / 16);
  padding: 40px 20px 20px 20px;
}

body {
  margin: 0;
  padding: 0;
  background-color: #3bd88c;
}

.sponly {
  display: none;
}

h1 {
  max-width: 120px;
  position: relative;
  border-radius: 0 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* place-items: center; */
  z-index: 1000;
  height: 100%;
}

h3 {
  color: #fff;
  font-family: "Outfit";
  font-size: 4.5rem;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  line-height: calc(64 / 73);
  margin-bottom: 11px;
  text-align: center;
}

.h3-sub {
  font-size: 1.9rem;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: calc(56 / 31);
  margin-bottom: 11px;
  color: #0470bc;
}

h4 {
  font-size: 2.4rem;
  font-family: "Outfit", sans-serif;
  color: #0066cc;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: calc(56 / 38);
  margin-bottom: 11px;
}

.h4-sub {
  display: flex; /* flexに変更して線を左右に配置 */
  align-items: center; /* 垂直方向の中央揃え */
  justify-content: center; /* 水平方向の中央揃え */
  font-size: 1.69rem;
  margin-top: -5px;
  letter-spacing: 0.1em;
  line-height: calc(56 / 27);
}

.h4-sub::before,
.h4-sub::after {
  content: "";
  height: 1px;
  background-color: #0066cc;
  flex-grow: 1; /* 利用可能なスペースいっぱいに線を伸ばす */
  margin: 0 10px; /* 文字と線の間の余白 */
}

h5 {
  color: #0470bc;
  font-size: 2.1rem;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: calc(54 / 35);

  text-align: center;
}

.h5sub {
  color: #fff;
  background-color: #3bd88c;
  font-size: 1.2rem;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.11em;
  line-height: calc(53 / 23);
  text-align: center;
  border-radius: 50px;

  display: block;
  margin-bottom: 13px;
}
.btn {
  width: 27%;
  max-width: 366px;
  margin: 0 auto;
  margin-top: auto;
  margin-bottom: 20px;
}

.btn a img:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.btn02 {
  width: 56%;
  max-width: 366px;
  margin: 0 auto;
  margin-top: auto;
  margin-bottom: 20px;
}

.btn02 a img:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.name {
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  line-height: calc(41 / 30);
  color: #fff;
}

.nickname {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: calc(41 / 18);
  font-weight: 700;
  text-align: center;
  color: #fff;
}

h1 img {
  position: static;
  max-width: 100%;
  height: auto;
}

.Splogo {
  display: none;
}

/* header */
.header-inner {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}
.nav-menu {
  background-color: #3bd88c;
  display: flex;
  justify-content: flex-end;
  transition: 0.3s;
  /* align-items: center; */
  margin: 0;

  top: 0;
  right: 0;

  height: 66px;
  position: absolute; /* fixed ではなく absolute にして header-inner 内に配置 */
  top: 0;
  right: 0;
  width: 100%; /* 左端（ロゴの下）まで伸ばす */
  height: 66px;
  z-index: 1;
}

.nav-li {
  display: flex;
  list-style: none;
}

.nav-li li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  padding: 0 0.8em;
  line-height: calc(21 / 19);
  font-size: 1.1rem;
  font-family: "Outfit";
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #fff;
  position: relative;
  white-space: nowrap;
}

.hd_inst {
  max-width: 60px;
}

.mv {
  background-image: url(../img/pcmv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: -1;
  margin-bottom: 43px;
}

.mv::before {
  position: absolute;
  background-image: url(../img/ttl.png);
  width: 100%;
  z-index: 2;
}

.catch {
  text-align: center;
  font-weight: 700;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 100px;
}
.catch-ttl {
  color: #fff;
  font-size: 44px;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: calc(64 / 44);
  margin-bottom: 43px;
}

.catch-text {
  color: #fff;
  font-size: 22px;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: calc(36 / 22);
  margin-bottom: 96px;
  text-align: center;
}

.how-hyrox {
  width: 93%;
  padding: 1% 4%;
  margin: 0 auto 60px auto;
  background-color: #fdf9eb;
  border-radius: 20px;
  text-align: center;
}

.access {
  text-align: center;
}
.access-inner {
  width: 93%;
  padding: 2% 6%;
  margin: 0 auto;
  background-color: #fdf9eb80;
  border-radius: 20px;
  margin-bottom: 35px;
}

h6 {
  font-weight: 500;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.165em;
  line-height: calc(56 / 31);
}

.map-inner {
  width: 93%;
  padding: 2% 17%;
  margin: 0 auto;
  background-color: #fdf9eb80;
  border-radius: 20px;
  margin-bottom: 60px;
}

.hyrox-inner {
  display: flex;
  column-gap: 9%;
  margin-bottom: 30px;
  align-items: center;
}

.hyrox-img {
  flex: 0 0 37.3%;
  max-width: 447px;
}

.hyrox-class {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3%;
  margin-bottom: 30px;
  /* background-color: pink; */
}

.h5-sub {
  color: #0470bc;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: calc(27 / 19);
  text-align: center;
  margin-bottom: 6px;
  font-weight: 500;
}

.tag {
  color: #0470bc;
  border: solid #3bd88c 2px;
  display: block;
  margin-bottom: 12px;
  border-radius: 20px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: calc(35 / 17);
  text-align: center;
  font-weight: 500;
}

.class-tag {
  margin-top: auto;
}
.hyrox-classitem {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto;
  flex: 1;
  width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.class-time {
  text-align: left;
  color: #0470bc;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.005em;
  line-height: calc(24 / 16);
  margin-bottom: 13px;
}
.person-inner {
  display: flex;
  justify-content: space-between;
}

.person {
  background-color: #fff;
  width: 48%;
  padding: 3%;
  position: relative;
  padding-top: 23%;
}

.person-img {
  width: 60%;
  margin: 0 auto;
}

.person-container {
  background-color: #3bd88c;
  padding: 20px;
  margin: -20px;
  border-radius: 20px 20px 0 0;
}

.name-copy {
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.time {
  text-align: center;
  font-size: 1.9rem;
  letter-spacing: 0.025em;
  line-height: calc(53 / 30);
  /* padding: 0 12%; */
  font-weight: 500;
}

.money {
  display: flex;
  /* justify-content: space-between; */
  background-color: #fff;
  border-radius: 20px;
  justify-content: space-between;
  padding: 2% 6%;
  margin-bottom: 30px;
}
.money-item {
  font-family: "Outfit";
  font-size: 1.9rem;
  letter-spacing: 0.025em;
  line-height: calc(53 / 30);
  /* padding: 0 12%; */
  font-weight: 500;
}

.hosoku {
  text-align: center;
  margin-bottom: 30px;
}
.PICRUN-container {
  width: 93%;
  display: flex;
  column-gap: 3%;
  margin: 0 auto;
  align-items: stretch;
  height: 100%;
}

.PICKLEBALL {
  flex: 1;
}

.pconly {
  text-align: center;
}

.pconly02 {
  text-align: center;
  margin-bottom: 30px;
}
.PICKLEBALL-inner {
  padding: 0 4%;
  margin: 0 auto;
  background-color: #fdf9eb;
  border-radius: 20px;
  text-align: center;
  /* 念のため */
  flex: 1;
  display: flex;
  flex-direction: column;

  /* はみ出し防止 */
  min-width: 0;
  display: flex;
  flex-direction: column; /* 中身を縦に並べる */
  height: 90%; /* 親の高さに合わせる */

  margin-bottom: 60px;
  padding-bottom: 20px;
}

.picklerun-img {
  width: 69%;
  max-width: 447px;
  margin: 0 auto;
}

.logo {
  margin: 0 auto;
  width: 40%;
  max-width: 300px;
  margin-bottom: 20px;
}

.entry-img {
  width: 81%;
  margin: 0 auto 20px auto;
}
.hosoku02 {
  margin: 0 auto 40px auto;
  font-size: 1.4rem;
  font-weight: 500;
}

.kikan {
  background-color: #fffff3;
  width: 100%;
  padding: 4% 1% 7% 1%;
  text-align: center;
  span {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    line-height: calc(33 / 19);
  }

  p {
    text-align: center; /* pの中のテキストを中央寄せにする */
    width: 100%;
  }
}

footer {
  background-color: #f4f4f4;
  padding: 35px 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wl-footer__link {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #3bd88c;
  border-radius: 30px;
  width: 100%;
  height: 58px;
  max-width: 342px;
  margin-bottom: 52px;
}

.insta {
  width: 60px;
  margin-bottom: 25px;
}
.midonly {
  display: none;
}

@media screen and (min-width: 1001px) and (max-width: 1380px) {
  .midonly {
    display: block;
  }
  .h5sub {
    line-height: calc(49 / 23);
  }
}

@media screen and (max-width: 1000px) {
  .midonly {
    display: block;
  }
  header {
    width: 100%;
    height: 65px;
    position: fixed;
    z-index: 999;
  }

  /* ナビ消す */
  .pc-nav {
    display: none;
  }

  .Pclogo {
    display: none;
  }

  .Splogo {
    display: block;
    max-width: 80px;
    left: 0;
  }

  .h1 {
    width: 0px;
  }

  .container {
    position: relative;
    /* height: 100vh; */
    padding: 20px;
  }

  .hamburger-menu {
    position: relative;
    width: 31px;
    height: 21px;
    cursor: pointer;
    z-index: 30;
    margin: 4px;
  }

  .hbm-inner {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    justify-content: center; /* 垂直方向の中央 */
    align-items: center;
    position: absolute; /* 塊ごと右上に配置 */
    top: 0px;
    right: 0px;
    cursor: pointer;
    z-index: 30;
    width: 80px;
    height: 80px;
    background-color: #3bd88c;
  }

  .hbm-inner img {
    width: 40px; /* 画像のサイズはお好みで調整してください */
    height: auto;
  }

  .nav-menu {
    background-color: aquamarine;
    display: flex;
    justify-content: center;
    transition: 0.3s;
    /* align-items: center; */
    margin: 0 0 0 auto;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: -1;
  }

  .nav-li {
    display: block;
    padding-left: 0;
    margin-left: 0;
    list-style: none; /* 点を消す */
    text-align: center; /* テキストを中央へ */
  }

  .nav-li li {
    border-bottom: solid 1px #fff;
  }

  .hamburger-menu .line {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: white;
    transition: all 0.3s;
  }

  .hamburger-menu .line:nth-of-type(1) {
    top: 0;
  }
  .hamburger-menu .line:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger-menu .line:nth-of-type(3) {
    bottom: 0;
  }

  .hamburger-menu.active > .line:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .hamburger-menu.active > .line:nth-of-type(2) {
    display: none;
  }

  .hamburger-menu.active > .line:nth-of-type(3) {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: block; /* columnよりblockの方が扱いやすいです */
    background-color: #3bd88c;
    padding: 60px 0 0; /* 上にバツ印と重ならないよう余白 */
    width: 80%; /* 理想の画像に合わせるなら少し細めでもOK */
    max-width: 300px; /* お好みで */
    border: none;
    border-radius: 0; /* 直角の方が画像に近いかも */
    height: 100vh;
  }

  .nav-li {
    display: block;
    background-color: #3bd88c; /* 茶色を透明に */
    padding: 0;
    margin: 0;
  }

  .nav-li li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.6); /* 白い細線 */
    position: relative; /* 疑似要素の基準にする */
  }

  /* リンクテキストのスタイル */
  .nav-li li a {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 左寄せ */
    height: 60px; /* タップしやすい高さ */
    padding: 0 20px;
    margin: 0;
    color: #fff; /* テキストは白 */
    font-size: 1.1rem;
    font-family: "Outfit", sans-serif;
    font-weight: bold;
    text-align: left;
    opacity: 1; /* アニメーション用にあえて1に */
    transform: none;
  }

  /* 矢印（＞）を疑似要素で作る */
  .nav-li li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 8px; /* 矢印のサイズ */
    height: 8px; /* 矢印のサイズ */
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg); /* 傾けて「＞」にする */
    pointer-events: none; /* クリックの邪魔をしない */
  }

  .nav-menu a {
    display: block;
    color: black;
    text-decoration: none;
    padding: 5px;
    margin: 5px;
    opacity: 0;
    transform: translateX(14px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .h4-sub {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: calc(20 / 17);
    margin-top: 20px;
  }

  .hd_inst {
    /* PC版で設定されている幅制限を解除する */
    max-width: none !important;
    width: 100% !important;
  }

  .nav-li li.hd_inst a {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* アイコンを左側に */
    width: 100%;
    height: 60px;
    padding: 0 20px; /* 他の項目と余白を揃える */
    background-color: transparent; /* aタグ自体の背景は透明に */
  }

  /* アイコン自体のサイズ設定 */
  .hd_inst img {
    width: 30px;
    height: auto;
    display: block;
  }
  .nav-menu a.show {
    opacity: 1;
    transform: translateX(0);
  }

  @keyframes slideFromRight {
    0% {
      right: -100%;
      opacity: 0;
    }
    100% {
      right: 0;
      opacity: 1;
    }
  }

  .mv {
    margin-top: 120px;
    background-image: url(../img/spmv.jpg);
  }

  .catch-ttl {
    font-size: 34px;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.05em;
    line-height: calc(46 / 34);
    margin-bottom: 29px;
  }

  h3 {
    font-size: 3.7rem;
    letter-spacing: 0em;
    line-height: calc(64 / 65);
  }

  .h3-sub {
    font-size: 1.4rem;
    font-optical-sizing: auto;
    letter-spacing: 0.1em;
    line-height: calc(56 / 26);
    margin-bottom: 20px;
  }

  .catch {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .catch-text {
    font-size: 20px;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.05em;
    line-height: calc(31 / 20);
    margin-bottom: 82px;
    width: 90%;
    text-align: justify;
    margin: 0 auto;
  }

  h4 {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: calc(37 / 35);
  }
  .sponly {
    display: block;
  }

  .sponly02 {
    margin-bottom: 30px;
  }
  .PICKLEBALL-inner {
    padding-top: 2%;
  }

  .hyrox-inner {
    flex-direction: column;
    margin-left: 0px;
  }

  .hyrox-img {
    margin: 0 auto 34px auto;
  }

  .hyrox-class {
    flex-direction: column;
  }

  .main-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: calc(27 / 18);
  }
  .hyrox-classitem {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }

  .PICRUN-container {
    flex-direction: column;
  }
  .name-info {
    align-items: last baseline;
  }
  .person {
    width: 100%;
  }
  .person-img {
    max-width: 42%;
  }

  .name {
    text-align: left;
    align-items: left;
  }
  .nickname {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: calc(34 / 14);
    text-align: left;
  }

  .name-copy {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(18 / 15);
    text-align: left;
  }

  .person-container {
    display: flex;
    align-items: center;
  }

  .insta {
    width: 48px;
  }

  .pconly {
    display: none;
  }
  .pconly02 {
    display: none;
  }

  .money {
    flex-direction: column;
  }

  .money-item {
    font-family: "Outfit";
    font-size: 1.2rem;
    letter-spacing: 0.025em;
    line-height: calc(36 / 26);
    /* padding: 0 12%; */
    font-weight: 500;
  }

  .btn {
    width: 56%;

    margin: 60px auto;
  }

  .btn02 {
    margin: 60px auto;
  }

  .logo {
    width: 40%;
    margin-bottom: 60px;
  }

  .hosoku02 {
    margin: 0 auto 10px auto;
  }
}

/* 1001px以上 1380px以下 の範囲 */
