@charset "UTF-8";
:root {
  --color-blue: #0059ff;
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #f3f1f1;
  --inner-1920: 1920px;
  --inner-1440: 1440px;
  --inner-1200: 1200px;
  --inner-1000: 1000px;
  --font-en: "DIN Condensed", sans-serif;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-bg: "gin", serif;
}

/* ======================================
  function
====================================== */
/* =========================
  DIN Condensed
========================= */
@font-face {
  font-family: "DIN Condensed";
  src: url("../font/din-condensed-bold.woff2") format("woff2"), url("../font/din-condensed-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* =========================
  Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-black);
  background: var(--color-blue);
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.6;
}

html,
body {
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

main {
  width: 100%;
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  padding: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

/* =========================
  汎用レイアウト
========================= */
.col_1920 {
  max-width: var(--inner-1920);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.col_1440 {
  max-width: var(--inner-1440);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.col_1200 {
  max-width: var(--inner-1200);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.col_1000 {
  max-width: var(--inner-1000);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.flex_between {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* =========================
PC
========================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  pointer-events: none;
}
.l-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 85.8259722222vw;
  height: 13.7691944444vw;
  background: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.l-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.5vw 3.6111111111vw 0;
}
.l-header__logo {
  position: relative;
  z-index: 2;
  width: 27.5116215278vw;
  pointer-events: auto;
}

/* ======================================
 SP
====================================== */
@media screen and (max-width: 750px) {
  .l-header {
    z-index: 200;
  }
  .l-header__bg {
    width: 85.3333333333vw;
    height: 26.6666666667vw;
  }
  .l-header__inner {
    padding: 2.6666666667vw 4.2666666667vw 0;
  }
  .l-header__logo {
    width: 43.7333333333vw;
  }
}
/* ======================================
  footer
====================================== */
.l-footer {
  position: relative;
  z-index: 7;
  background: var(--color-black);
  color: var(--color-white);
  padding: 2.7777777778vw 0 2.7777777778vw;
}
.l-footer__inner {
  position: relative;
  display: flex;
  gap: 2.0833333333vw;
  align-items: start;
  justify-content: space-between;
  max-width: 69.4444444444vw;
  margin: 0 auto;
}
.l-footer__info {
  padding-top: 1.1111111111vw;
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.05em;
}
.l-footer__management {
  margin-top: 1.1111111111vw;
}
.l-footer__logo {
  width: 24.3055555556vw;
}
.l-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.9444444444vw;
}
.l-footer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 18.3333333333vw;
  height: 3.4722222222vw;
  padding: 0.6944444444vw 4.1666666667vw 0 2.7777777778vw;
  font-family: var(--font-en);
  font-size: 3.0945520833vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
  transition: transform 0.3s, opacity 0.3s;
}
.l-footer__nav a:hover {
  opacity: 0.85;
  transform: scale(1.04);
}
.l-footer__nav a span {
  width: 1.3888888889vw;
  height: 0.4166666667vw;
  margin-top: -0.1111111111vw;
  background: currentColor;
}
.l-footer__nav a:nth-child(1) {
  background: var(--color-white);
  color: var(--color-blue);
}
.l-footer__nav a:nth-child(2) {
  background: var(--color-blue);
  color: var(--color-white);
}
.l-footer__copy {
  position: absolute;
  right: 0;
  bottom: -1.6666666667vw;
  margin: 0;
  letter-spacing: -0.05em;
  font-size: 0.625vw;
  font-weight: 400;
  line-height: 1;
}

/* ======================================
  SP
====================================== */
@media screen and (max-width: 750px) {
  .l-footer {
    padding: 14.9333333333vw 0 9.6vw;
  }
  .l-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    padding: 0 5.3333333333vw;
    margin: 0;
    gap: 0;
  }
  .l-footer__nav {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.7333333333vw;
    margin: 0;
  }
  .l-footer__nav a {
    width: 48vw;
    height: 10.6666666667vw;
    padding: 2.6666666667vw 9.0666666667vw 0 7.4666666667vw;
    font-size: 8.5333333333vw;
    line-height: 1;
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  }
  .l-footer__nav a:hover {
    opacity: 1;
    transform: none;
  }
  .l-footer__nav a span {
    width: 4.2666666667vw;
    height: 1.0666666667vw;
    margin-top: -2.1333333333vw;
  }
  .l-footer__info {
    order: 2;
    margin-top: 9.6vw;
    padding-top: 0;
    text-align: center;
  }
  .l-footer__info > p {
    font-size: 3.4666666667vw;
    line-height: 1.9;
    letter-spacing: -0.03em;
  }
  .l-footer__management {
    margin-top: 5.8666666667vw;
  }
  .l-footer__management p {
    font-size: 3.2vw;
    line-height: 1.9;
    letter-spacing: -0.03em;
  }
  .l-footer__logo {
    order: 3;
    width: 64vw;
    margin: 11.2vw auto 0;
  }
  .l-footer__copy {
    position: static;
    order: 4;
    margin-top: 13.3333333333vw;
    font-size: 2.6666666667vw;
    line-height: 1.6;
    letter-spacing: 0;
    text-align: right;
  }
}
html.is-fixed,
body.is-fixed {
  overflow: hidden;
}

.l-header__menu {
  position: fixed;
  top: 3.0555555556vw;
  right: 3.6111111111vw;
  z-index: 2000;
  width: 4.6382118056vw;
  height: 2.8908576389vw;
  pointer-events: auto;
}
.l-header__menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.2083333333vw;
  background: var(--color-white);
  transition: top 0.3s, bottom 0.3s, opacity 0.3s, transform 0.3s;
}
.l-header__menu span:nth-child(1) {
  top: 0;
}
.l-header__menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header__menu span:nth-child(3) {
  bottom: 0;
}
.l-header__menu.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header__menu.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__menu.is-open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 45.1388888889vw;
  height: 100dvh;
  background: var(--color-black);
  color: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.45s ease;
  pointer-events: none;
}
.l-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.l-drawer__inner {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 2.7777777778vw 6.1111111111vw 5vw;
}
.l-drawer__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.3888888889vw;
  margin-top: 1.0416666667vw;
}
.l-drawer__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-en);
  font-size: 2.7777777778vw;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.035em;
  transition: opacity 0.3s, transform 0.3s, letter-spacing 0.3s;
}
.l-drawer__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4166666667vw;
  width: 0%;
  height: 0.1388888889vw;
  background: var(--color-white);
  transition: width 0.3s;
}
.l-drawer__list a:hover {
  transform: translateX(0.6944444444vw);
  letter-spacing: -0.02em;
}
.l-drawer__list a:hover::after {
  width: 100%;
}
.l-drawer__logo {
  position: absolute;
  left: 50%;
  bottom: 1.5555555556vw;
  width: 25vw;
  transform: translateX(-50%);
}

/* ======================================
 SP
====================================== */
@media screen and (max-width: 750px) {
  .l-header__menu {
    top: 3.2vw;
    right: 5.3333333333vw;
    width: 9.0666666667vw;
    height: 6vw;
  }
  .l-header__menu span {
    height: 0.5333333333vw;
  }
  .l-drawer {
    width: 100%;
    height: 100dvh;
  }
  .l-drawer__inner {
    padding: 11.3333333333vw 9.6vw 0;
  }
  .l-drawer__list {
    gap: 5.3333333333vw;
    margin-top: 0;
    margin-bottom: 10.6666666667vw;
  }
  .l-drawer__list a {
    font-size: 8vw;
    line-height: 0.95;
  }
  .l-drawer__list a::after {
    bottom: -1.6vw;
    height: 0.5333333333vw;
  }
  .l-drawer__list a:hover {
    transform: none;
    letter-spacing: -0.035em;
  }
  .l-drawer__logo {
    bottom: 3.7333333333vw;
    width: 53.3333333333vw;
  }
}
/* =========================
  見出し共通
========================= */
.c-section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.c-section-title span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: 0.08em;
}

/* ======================================
  lower heading
====================================== */
.c-lower-heading {
  margin-bottom: 3.8194444444vw;
}
.c-lower-heading__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: 6.2195486111vw;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.02em;
}
.c-lower-heading__sub {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 10.4166666667vw;
  height: 1.9444444444vw;
  padding: 0 1.25vw 0 1.9444444444vw;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 1.4583333333vw;
  font-weight: 700;
  line-height: 1;
}
.c-lower-heading__sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1111111111vw;
  height: 0.5208333333vw;
  background: var(--color-blue);
  transform: translateY(-50%);
}

/* ======================================
  section band
====================================== */
.p-section-band {
  position: relative;
  z-index: 4;
  margin: 0;
  height: 17.3611111111vw;
  margin-top: -5.5555555556vw;
  pointer-events: none;
}
.p-section-band__text {
  position: absolute;
  left: -0.6944444444vw;
  top: 0;
  margin: 0;
  font-family: var(--font-bg);
  font-size: 19.4097222222vw;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ======================================
  SP
====================================== */
@media screen and (max-width: 750px) {
  .p-section-band {
    height: 22.4vw;
    margin-top: -10.6666666667vw;
    overflow: hidden;
  }
  .p-section-band__text {
    font-size: 19.2vw;
    line-height: 1;
    white-space: nowrap;
  }
  .p-section-band.text_bottom {
    height: 22.4vw;
  }
}
/* =========================
  ボタン共通
========================= */
.c-btn {
  display: inline-block;
  min-width: 250px;
  padding: 10px 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  transition: all 0.3s;
}

.c-page-top {
  position: fixed;
  right: 0;
  bottom: 2.7777777778vw;
  z-index: 100;
  width: 6.25vw;
  height: 6.25vw;
  background: var(--color-black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.3888888889vw);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.3s;
  cursor: pointer;
}
.c-page-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.c-page-top.is-stop {
  position: absolute;
  bottom: 100%;
  margin-bottom: 2.7777777778vw;
}
.c-page-top::before, .c-page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.6666666667vw;
  height: 0.3472222222vw;
  background: var(--color-white);
  transition: transform 0.3s;
}
.c-page-top::before {
  left: 50%;
  transform: translate(-80%, -50%) rotate(-45deg);
}
.c-page-top::after {
  right: 50%;
  transform: translate(76%, -50%) rotate(45deg);
}
.c-page-top:hover::before {
  transform: translate(-80%, -50%) rotate(-45deg) scale(1.2);
}
.c-page-top:hover::after {
  transform: translate(88%, -50%) rotate(45deg) scale(1.2);
}

@media screen and (max-width: 750px) {
  .c-page-top {
    right: 0;
    bottom: 5.3333333333vw;
    width: 12vw;
    height: 12vw;
    transform: translateY(4.2666666667vw);
  }
  .c-page-top.is-show {
    transform: translateY(0);
  }
  .c-page-top.is-stop {
    margin-bottom: 5.3333333333vw;
  }
  .c-page-top::before, .c-page-top::after {
    width: 4.2666666667vw;
    height: 1.0666666667vw;
  }
  .c-page-top::before {
    transform: translate(-80%, -50%) rotate(-45deg);
  }
  .c-page-top::after {
    transform: translate(76%, -50%) rotate(45deg);
  }
  .c-page-top:hover::before {
    transform: translate(-80%, -50%) rotate(-45deg);
  }
  .c-page-top:hover::after {
    transform: translate(76%, -50%) rotate(45deg);
  }
}
/* ======================================
  mv
====================================== */
.p-mv {
  position: relative;
  background: var(--color-blue);
  color: var(--color-white);
}
.p-mv__inner {
  position: relative;
  height: 47.6041666667vw;
}
.p-mv {
  /* =========================
    copy image
  ========================= */
}
.p-mv__copy-catch {
  position: absolute;
  top: 9.0277777778vw;
  left: 3.4722222222vw;
  z-index: 50;
  width: 52.0833333333vw;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-mv__copy-catch img {
  display: block;
  width: 100%;
  height: auto;
}
.p-mv__copy-info {
  position: absolute;
  top: 25.6944444444vw;
  left: 11.4583333333vw;
  z-index: 50;
  width: 35.7638888889vw;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-mv__copy-info img {
  display: block;
  width: 100%;
  height: auto;
}
.p-mv {
  /* =========================
    background text
  ========================= */
}
.p-mv__bg-text {
  position: absolute;
  left: -0.6944444444vw;
  top: 41.7013888889vw;
  z-index: 1;
  margin: 0;
  font-family: var(--font-bg);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
  font-size: 19.4097222222vw;
  font-weight: 400;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-mv {
  /* =========================
    entry
  ========================= */
}
.p-mv__entry {
  position: absolute;
  top: 31.3888888889vw;
  right: 7.6388888889vw;
  z-index: 110;
  width: 14.3454583333vw;
  pointer-events: auto;
  transform-origin: center;
  transition: transform 0.3s, opacity 0.3s;
}
.p-mv__entry:hover {
  transform: scale(1.2);
}
.p-mv__entry img {
  display: block;
  width: 100%;
  height: auto;
}
.p-mv {
  /* =========================
    runner
  ========================= */
}
.p-mv__runner {
  position: absolute;
  top: 2.3263888889vw;
  right: 11.8055555556vw;
  z-index: 100;
  width: 48.0322048611vw;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-mv__runner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ======================================
  SP
====================================== */
@media screen and (max-width: 750px) {
  .p-mv__inner {
    height: 162.6666666667vw;
  }
  .p-mv__copy-catch {
    top: 17.3333333333vw;
    left: 1.6vw;
    z-index: 120;
    width: 85.3333333333vw;
    transform: rotate(-8deg);
  }
  .p-mv__copy-info {
    top: 64.8vw;
    left: 4.2666666667vw;
    z-index: 120;
    width: 80vw;
  }
  .p-mv__bg-text {
    left: -3.7333333333vw;
    top: 145.3333333333vw;
    font-size: 19.8666666667vw;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
  }
  .p-mv__entry {
    top: 120vw;
    right: 4.8vw;
    z-index: 110;
    width: 28.2666666667vw;
  }
  .p-mv__entry:hover {
    transform: none;
  }
  .p-mv__runner {
    top: 24.8933333333vw;
    right: -12.8666666667vw;
    z-index: 50;
    width: 114.6666666667vw;
  }
}
/* ======================================
  concept
====================================== */
.p-concept {
  position: relative;
  z-index: 5;
  height: 96.5630486111vw;
  overflow: visible;
  background: transparent;
  color: var(--color-white);
}
.p-concept::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--color-black);
  clip-path: polygon(0 17%, 100% 0, 100% 82%, 0 100%);
}
.p-concept__inner {
  position: relative;
  z-index: 5;
  max-width: 69.4444444444vw;
  margin: 0 auto;
  padding-top: 8.3333333333vw;
}
.p-concept__head {
  margin-top: 10.6388888889vw;
}
.p-concept__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: 6.2195486111vw;
  font-weight: 700;
  line-height: 0.8;
}
.p-concept__title-ja {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 12.1527777778vw;
  margin-top: -0.2777777778vw;
  height: 1.9444444444vw;
  padding: 0 4.0972222222vw 0 1.9444444444vw;
  color: var(--color-blue);
  background: var(--color-white);
  font-family: var(--font-ja);
  font-size: 1.4583333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.15em;
}
.p-concept__title-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1111111111vw;
  height: 0.5208333333vw;
  background: var(--color-blue);
  transform: translateY(-50%);
}
.p-concept__body {
  position: relative;
  z-index: 10;
  padding-top: 3.6805555556vw;
}
.p-concept__body p {
  margin: 0 0 1.0416666667vw;
  font-size: 1.8055555556vw;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: -0.06em;
}
.p-concept__body p:last-child {
  margin-bottom: 0;
}
.p-concept__body strong {
  color: var(--color-blue);
  font-weight: 700;
}
.p-concept__image {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  height: 43.4974270833vw;
  overflow: hidden;
  clip-path: polygon(0 37%, 100% 0, 100% 63%, 0 100%);
}
.p-concept__image img {
  width: 100%;
  height: 125%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  filter: brightness(0.58) contrast(1.05);
  transform: translateY(-3.125vw);
}
.p-concept__bg-text {
  position: absolute;
  left: -2.0833333333vw;
  bottom: -0.6944444444vw;
  z-index: 2;
  margin: 0;
  font-family: var(--font-en);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
  font-size: 14.5833333333vw;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ======================================
  SP
====================================== */
@media screen and (max-width: 750px) {
  .p-concept {
    height: auto;
    padding: 45.8666666667vw 0 86.4vw;
    overflow: hidden;
  }
  .p-concept::before {
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  }
  .p-concept__inner {
    width: 100%;
    max-width: none;
    padding: 0 5.3333333333vw;
    margin: 0;
  }
  .p-concept__head {
    margin-top: 0;
  }
  .p-concept__title {
    font-size: 14.9333333333vw;
    line-height: 0.8;
    letter-spacing: -0.02em;
  }
  .p-concept__title-ja {
    min-width: 29.8666666667vw;
    height: 6.4vw;
    padding: 0 3.7333333333vw 0 6.4vw;
    font-size: 4vw;
  }
  .p-concept__title-ja::before {
    width: 3.4666666667vw;
    height: 1.6vw;
  }
  .p-concept__body {
    padding-top: 12.8vw;
  }
  .p-concept__body p {
    margin-bottom: 6.4vw;
    font-size: 4.2666666667vw;
    line-height: 1.9;
    letter-spacing: -0.03em;
  }
  .p-concept__image {
    height: 82.6666666667vw;
    clip-path: polygon(0 38%, 100% 0, 100% 62%, 0 100%);
  }
  .p-concept__image img {
    height: 120%;
    transform: translateY(-6.4vw);
  }
  .p-concept__bg-text {
    left: -3.2vw;
    bottom: 5.3333333333vw;
    font-size: 19.2vw;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
  }
}
/* ======================================
  information
====================================== */
.p-information {
  position: relative;
  z-index: 5;
  margin-top: -11.1111111111vw;
  padding: 17.5vw 0 17.5vw;
  background: var(--color-white);
  color: var(--color-black);
  clip-path: polygon(0 15.2%, 100% 0, 100% 84.8%, 0 100%);
}
.p-information__inner {
  max-width: 69.4444444444vw;
  margin: 0 auto;
}
.p-information {
  /* =========================
    heading
  ========================= */
}
.p-information__head {
  margin-bottom: 1.1111111111vw;
  margin-top: 1.6388888889vw;
}
.p-information__title {
  margin: 0;
  font-family: var(--font-en);
  color: var(--color-blue);
  font-size: 6.2195486111vw;
  font-weight: 700;
  line-height: 0.8;
}
.p-information__title-ja {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 12.1527777778vw;
  margin-top: -0.2777777778vw;
  height: 1.9444444444vw;
  padding: 0 4.0972222222vw 0 1.9444444444vw;
  color: var(--color-white);
  background: var(--color-black);
  font-size: 1.4583333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.15em;
}
.p-information__title-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1111111111vw;
  height: 0.5208333333vw;
  background: var(--color-blue);
  transform: translateY(-50%);
}
.p-information {
  /* =========================
    contents
  ========================= */
}
.p-information__contents {
  width: 43.3333333333vw;
  margin-left: auto;
}
.p-information__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-information__item {
  border-bottom: 1px solid rgba(0, 92, 255, 0.45);
}
.p-information__item a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2.2222222222vw 0;
  transition: opacity 0.3s;
}
.p-information__item a:hover .p-information__arrow {
  transform: translateX(0.5555555556vw);
}
.p-information__item time {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-top: 0.35em;
  margin-right: 2.0833333333vw;
  color: var(--color-blue);
  font-family: var(--font-en);
  font-size: 1.7361111111vw;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.p-information__text {
  flex: 0 1 auto;
  margin-right: 1.3888888889vw;
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
.p-information__arrow {
  position: relative;
  flex: 0 0 3.2986111111vw;
  width: 3.2986111111vw;
  height: 0.8333333333vw;
  margin-left: auto;
  transition: transform 0.3s;
}
.p-information__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--color-black);
  transform: translateY(-50%);
}
.p-information__arrow::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  border-top: 1px solid var(--color-black);
  transform: translateY(-52%) rotate(45deg);
  transform-origin: center;
}
.p-information {
  /* =========================
    more
  ========================= */
}
.p-information__more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.3888888889vw;
  margin-top: 2.9861111111vw;
  color: var(--color-blue);
  font-family: var(--font-en);
  font-size: 2.26121875vw;
  font-weight: 600;
  line-height: 1;
  transition: opacity 0.3s;
}
.p-information__more span {
  position: relative;
  width: 3.2986111111vw;
  height: 2px;
  background: var(--color-blue);
  transition: transform 0.3s;
}
.p-information__more span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  border-top: 2px solid var(--color-blue);
  transform: rotate(45deg);
  transform-origin: right top;
}
.p-information__more:hover span {
  transform: translateX(0.5555555556vw);
}
.p-information {
  /* =========================
    sns
  ========================= */
}
.p-information__sns {
  display: flex;
  justify-content: space-between;
  margin-top: 2.9861111111vw;
}
.p-information__sns-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.4398159722vw;
  height: 34.8611111111vw;
  color: #888;
  font-family: var(--font-en);
  font-size: 2.7777777778vw;
  font-weight: 700;
  line-height: 1;
}
.p-information__sns-box .fb-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  transform-origin: top left;
}
.p-information__sns-box .fb-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
}
.p-information__sns-box .fb-page,
.p-information__sns-box .fb-page span,
.p-information__sns-box .fb-page iframe {
  width: 100% !important;
  transform-origin: top left;
  transform: scale(0.2cqi);
}

.p-information__sns-link {
  display: block;
  width: 100%;
  height: 100%;
}

.p-information__sns-box {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ======================================
  SP
====================================== */
@media screen and (max-width: 750px) {
  .p-information {
    margin-top: -12.6666666667vw;
    padding: 44.6666666667vw 0 42.6666666667vw;
    clip-path: polygon(0 8.6%, 100% 0, 100% 91.4%, 0 100%);
  }
  .p-information__inner {
    width: 100%;
    max-width: none;
    padding: 0 5.3333333333vw;
  }
  .p-information__head {
    margin-bottom: 10.6666666667vw;
  }
  .p-information__title {
    font-size: 14.9333333333vw;
    line-height: 0.8;
    letter-spacing: -0.02em;
  }
  .p-information__title-ja {
    min-width: 29.8666666667vw;
    height: 6.4vw;
    padding: 0 3.7333333333vw 0 6.4vw;
    font-size: 4vw;
  }
  .p-information__title-ja::before {
    width: 3.4666666667vw;
    height: 1.6vw;
  }
  .p-information__contents {
    width: 100%;
    margin-left: 0;
  }
  .p-information__item a {
    display: grid;
    grid-template-columns: 1fr 10.1333333333vw;
    align-items: end;
    -moz-column-gap: 4.2666666667vw;
         column-gap: 4.2666666667vw;
    padding: 5.8666666667vw 0;
  }
  .p-information__item a:hover .p-information__arrow {
    transform: none;
  }
  .p-information__item time {
    grid-column: 1/2;
    display: block;
    margin-right: 0;
    margin-bottom: 2.1333333333vw;
    padding-top: 0;
    font-size: 5.3333333333vw;
  }
  .p-information__text {
    grid-column: 1/2;
    display: block;
    margin-right: 0;
    font-size: 3.7333333333vw;
    line-height: 1.6;
    white-space: normal;
  }
  .p-information__arrow {
    grid-column: 2/3;
    grid-row: 1/3;
    width: 10.1333333333vw;
    height: 2.6666666667vw;
    flex: 0 0 auto;
    margin-left: 0;
  }
  .p-information__arrow::before {
    height: 1px;
    top: 25%;
  }
  .p-information__arrow::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    top: 25%;
    border-top: 1px solid var(--color-black);
    transform: translateY(-53%) rotate(45deg);
  }
  .p-information__more {
    justify-content: flex-end;
    gap: 3.7333333333vw;
    margin-top: 9.0666666667vw;
    font-size: 6.4vw;
  }
  .p-information__more span {
    width: 10.1333333333vw;
    height: 1px;
  }
  .p-information__more span::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-top: 1px solid var(--color-blue);
  }
  .p-information__more:hover span {
    transform: none;
  }
  .p-information__sns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6.4vw;
    margin-top: 12.8vw;
  }
  .p-information__sns-box {
    width: 100%;
    height: 128vw;
    font-size: 8vw;
  }
  .p-information__sns-box iframe {
    max-width: 100%;
  }
}
/* ======================================
  race-info　概要
====================================== */
.p-race-info {
  position: relative;
  z-index: 5;
  padding: 2.5347222222vw 0 0 0;
  background: var(--color-blue);
  color: var(--color-white);
}
.p-race-info__inner {
  max-width: 69.4444444444vw;
  margin: 0 auto;
}
.p-race-info__head {
  margin-bottom: 3.8194444444vw;
}
.p-race-info__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: 6.2195486111vw;
  font-weight: 700;
  line-height: 0.8;
}
.p-race-info__title-ja {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 12.1527777778vw;
  margin-top: -0.2777777778vw;
  height: 1.9444444444vw;
  padding: 0 4.0972222222vw 0 1.9444444444vw;
  color: var(--color-white);
  background: var(--color-black);
  font-family: var(--font-ja);
  font-size: 1.4583333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.15em;
}
.p-race-info__title-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1111111111vw;
  height: 0.5208333333vw;
  background: var(--color-blue);
  transform: translateY(-50%);
}
.p-race-info__overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8055555556vw 3.3333333333vw;
}
.p-race-info__list {
  margin: 0;
}
.p-race-info__row {
  display: grid;
  grid-template-columns: 9.0277777778vw 1fr;
  padding: 2.0833333333vw 0;
  border-top: 1px solid rgb(255, 255, 255);
}
.p-race-info__row:last-child {
  border-bottom: 1px solid rgb(255, 255, 255);
}
.p-race-info__row dt {
  display: flex;
  align-items: flex-start;
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: -0.02em;
}
.p-race-info__row dd {
  margin: 0;
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: -0.02em;
}
.p-race-info__row dd span {
  display: block;
}
.p-race-info {
  /* =========================
    2行になる列
  ========================= */
}
.p-race-info .p-race-info__row--2line {
  padding: 2.0833333333vw 0 2.0833333333vw 0;
}
.p-race-info {
  /* =========================
  参加費
  ========================= */
}
.p-race-info .p-race-info__row--secondline {
  padding: 2.0833333333vw 0 2.5833333333vw 0;
}
.p-race-info .p-race-info__row--5line dd {
  line-height: 2.5;
}
.p-race-info .p-race-info__divider {
  display: block;
  width: 100%;
  margin: 1.3888888889vw 0;
  border-top: 1px dashed var(--color-white);
}
.p-race-info {
  /* =========================
   種目･定員
  ========================= */
}
.p-race-info .p-race-info__row--firstline {
  padding: 2.0833333333vw 0 9.125vw 0;
}
.p-race-info {
  /* =========================
    表彰
  ========================= */
}
.p-race-info .p-race-info__row--thirdline {
  padding: 2.0833333333vw 0 2.0833333333vw 0;
}
.p-race-info {
  /* =========================
    コースディレクター
  ========================= */
}
.p-race-info .p-race-info__list--full {
  grid-column: 1/-1;
  width: 100%;
}
.p-race-info .p-race-info__row--guest {
  display: grid;
  grid-template-columns: 9.0277777778vw 1fr;
  padding: 0 0 2.0833333333vw 0;
  border: none;
  border-bottom: 1px solid #ffffff;
}
.p-race-info .p-race-info__row--guest dd {
  width: 100%;
}
.p-race-info .p-race-info__row--director {
  display: grid;
  grid-template-columns: 11.9444444444vw 1fr;
  padding: 2.0833333333vw 0;
  border: none;
  border-bottom: 1px solid #ffffff;
}
.p-race-info .p-race-info__row--director dt {
  align-items: center;
}
.p-race-info .p-race-info__row--director dd {
  width: 100%;
}
.p-race-info .p-race-info__director {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-race-info .p-race-info__director-text {
  flex: 1;
}
.p-race-info .p-race-info__director-image {
  width: 17.3611111111vw;
  flex-shrink: 0;
}
.p-race-info .p-race-info__director-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-race-info {
  /* =========================
    race-info　スケジュール
  ========================= */
}
.p-race-info__schedule {
  margin-top: 5.9027777778vw;
}
.p-race-info__schedule-body {
  display: grid;
  grid-template-columns: 10.4166666667vw 1fr;
  margin-top: 1.9444444444vw;
}
.p-race-info__schedule-date {
  font-size: 1.4930555556vw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
.p-race-info__timeline {
  position: relative;
  margin: 0;
  padding: 0;
}
.p-race-info__timeline::before {
  content: "";
  position: absolute;
  left: 1.25vw;
  top: 1.25vw;
  bottom: 3.2638888889vw;
  width: 0.2777777778vw;
  background: var(--color-white);
}
.p-race-info__timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 12.5vw 1fr;
  min-height: 4.1666666667vw;
  padding-left: 2.6388888889vw;
  font-size: 1.4930555556vw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
.p-race-info__timeline li::before {
  content: "";
  position: absolute;
  left: 0.6944444444vw;
  top: 0.2083333333vw;
  width: 1.3194444444vw;
  height: 1.3194444444vw;
  border-radius: 50%;
  background: var(--color-white);
}
.p-race-info__timeline time {
  font-family: var(--font-ja);
  font-size: 1.4930555556vw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.p-race-info__timeline span {
  display: block;
  white-space: nowrap;
}
.p-race-info__schedule-note {
  margin-top: 0.4166666667vw;
  font-size: 1.1805555556vw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
.p-race-info {
  /* =========================
    race-info　大会規約
  ========================= */
}
.p-race-info__rules {
  margin-top: 5.8333333333vw;
}
.p-race-info__rules-lead {
  margin-top: 2.0833333333vw;
  font-size: 0.9375vw;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: -0.04em;
}
.p-race-info__rule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 2.4305555556vw;
       column-gap: 2.4305555556vw;
  row-gap: 3.3333333333vw;
  margin-top: 2.9166666667vw;
}
.p-race-info__rule {
  border-top: 1px solid rgba(255, 255, 255, 0.65);
}
.p-race-info__rule-head {
  display: flex;
  align-items: center;
  gap: 2.9166666667vw;
  height: 7.2222222222vw;
  padding-inline: 0.4166666667vw;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.p-race-info__rule-head span {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: 6.2195486111vw;
  margin-top: 1.3888888889vw;
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.045em;
  transform: translateY(0.2777777778vw);
}
.p-race-info__rule-head h3 {
  margin: 0;
  font-size: 1.4583333333vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  transform: translateY(0.1388888889vw);
}
.p-race-info__rule-text {
  padding-top: 1.6666666667vw;
}
.p-race-info__rule-text p {
  margin: 0;
  font-size: 0.9375vw;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: -0.03em;
}

.p-race-info__rule-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5vw;
  margin-top: 2.7083333333vw !important;
  margin-bottom: 1.25vw !important;
  background: var(--color-white);
  color: var(--color-blue);
  font-size: 1.2152777778vw !important;
  line-height: 1;
}

/* =========================
  race-info　グッズ
========================= */
.p-race-info__goods {
  margin-top: 5.8333333333vw;
}
.p-race-info__goods-body {
  display: grid;
  grid-template-columns: 33.4398159722vw 1fr;
  -moz-column-gap: 4.0277777778vw;
       column-gap: 4.0277777778vw;
  margin-top: 3.9583333333vw;
}
.p-race-info__goods-image {
  width: 33.4398159722vw;
  height: 39.0232743056vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9e9e9;
  color: #888;
  font-family: var(--font-en);
  font-size: 2.7777777778vw;
  font-weight: 700;
  line-height: 1;
}
.p-race-info__goods-content {
  padding-top: 0.1388888889vw;
}
.p-race-info__goods-text {
  margin: 0 0 1.8055555556vw;
  font-size: 0.9375vw;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: -0.02em;
}
.p-race-info__goods-list {
  margin: 0;
}
.p-race-info__goods-row {
  display: grid;
  grid-template-columns: 6.3888888889vw 1fr;
  -moz-column-gap: 2.9166666667vw;
       column-gap: 2.9166666667vw;
  padding: 1.5277777778vw 0;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}
.p-race-info__goods-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
.p-race-info__goods-row dt {
  font-size: 0.9375vw;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.02em;
}
.p-race-info__goods-row dd {
  margin: 0;
  font-size: 0.9375vw;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

/* ======================================
  SP
====================================== */
@media screen and (max-width: 750px) {
  .p-race-info {
    padding: 19.2vw 0 13.3333333333vw 0;
  }
  .p-race-info .p-race-info__inner {
    width: 100%;
    max-width: none;
    padding: 0 5.3333333333vw;
  }
  .p-race-info .p-race-info__head {
    margin-bottom: 11.2vw;
  }
  .p-race-info.p-race-info__title {
    font-size: 14.9333333333vw;
    line-height: 0.8;
    letter-spacing: -0.02em;
  }
  .p-race-info .p-race-info__title-ja {
    min-width: 29.8666666667vw;
    height: 6.4vw;
    padding: 0 3.7333333333vw 0 6.4vw;
    font-size: 4vw;
  }
  .p-race-info .p-race-info__title-ja::before {
    width: 3.4666666667vw;
    height: 1.6vw;
  }
  .p-race-info .p-race-info__overview {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p-race-info .p-race-info__row {
    grid-template-columns: 22.6666666667vw 1fr;
    padding: 4.8vw 0;
  }
  .p-race-info .p-race-info__row dt,
  .p-race-info .p-race-info__row dd {
    font-size: 3.2vw;
    line-height: 1.9;
    letter-spacing: -0.04em;
  }
  .p-race-info .p-race-info__row--2line,
  .p-race-info .p-race-info__row--firstline,
  .p-race-info .p-race-info__row--secondline,
  .p-race-info .p-race-info__row--thirdline {
    padding: 4.8vw 0;
  }
  .p-race-info .p-race-info__row--secondline {
    border-top: none;
  }
  .p-race-info .p-race-info__divider {
    margin: 3.7333333333vw 0;
    border-top: 1px dashed #ffffff;
  }
  .p-race-info .p-race-info__list--full {
    grid-column: auto;
    width: 100%;
  }
  .p-race-info .p-race-info__row--guest {
    grid-template-columns: 22.6666666667vw 1fr;
    padding: 4.8vw 0;
  }
  .p-race-info .p-race-info__row--guest dt,
  .p-race-info .p-race-info__row--guest dd {
    font-size: 3.2vw;
    line-height: 1.9;
    letter-spacing: -0.04em;
  }
  .p-race-info .p-race-info__row--director {
    display: block;
    padding: 6.4vw 0;
  }
  .p-race-info .p-race-info__row--director dt {
    margin-bottom: 5.3333333333vw;
    font-size: 3.2vw;
    line-height: 1.9;
  }
  .p-race-info .p-race-info__row--director dd {
    width: 100%;
  }
  .p-race-info .p-race-info__director {
    display: flex;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
  .p-race-info .p-race-info__director-image {
    width: 42.6666666667vw;
    margin: 0 auto;
    order: 1;
  }
  .p-race-info .p-race-info__director-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .p-race-info .p-race-info__director-text {
    width: 100%;
    order: 2;
  }
  .p-race-info .p-race-info__director-text span {
    display: block;
    font-size: 3.2vw;
    line-height: 1.9;
    letter-spacing: -0.04em;
  }
  .p-race-info .p-race-info__director-text span:first-child {
    font-size: 3.7333333333vw;
    margin-bottom: 3.2vw;
    font-weight: 700;
  }
  .p-race-info__schedule {
    margin-top: 17.0666666667vw;
  }
  .p-race-info__schedule-body {
    display: block;
    margin-top: 7.4666666667vw;
  }
  .p-race-info__schedule-date {
    margin-bottom: 6.4vw;
    font-size: 4.8vw;
    line-height: 1;
  }
  .p-race-info__timeline::before {
    left: 2.4vw;
    top: 2.6666666667vw;
    bottom: 10.6666666667vw;
    width: 0.5333333333vw;
  }
  .p-race-info__timeline li {
    grid-template-columns: 19.2vw 1fr;
    min-height: 13.8666666667vw;
    padding-left: 6.9333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1.5;
    letter-spacing: -0.04em;
  }
  .p-race-info__timeline li::before {
    left: 0.8vw;
    top: 1.0666666667vw;
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
  .p-race-info__timeline time {
    font-size: 3.7333333333vw;
    line-height: 1.5;
    white-space: nowrap;
  }
  .p-race-info__timeline span {
    white-space: normal;
  }
  .p-race-info__schedule-note {
    margin-top: 3.7333333333vw;
    font-size: 3.2vw;
    line-height: 1.7;
    letter-spacing: -0.04em;
  }
  .p-race-info__rules {
    margin-top: 17.0666666667vw;
  }
  .p-race-info__rules-lead {
    margin-top: 6.4vw;
    font-size: 3.2vw;
    line-height: 1.9;
    letter-spacing: -0.04em;
  }
  .p-race-info__rule-grid {
    grid-template-columns: 1fr;
    row-gap: 4.8vw;
    margin-top: 9.6vw;
  }
  .p-race-info__rule-head {
    gap: 6.4vw;
    height: 19.7333333333vw;
    padding-inline: 1.0666666667vw;
  }
  .p-race-info__rule-head span {
    font-size: 14.9333333333vw;
    margin-top: 3.2vw;
    transform: translateY(0.8vw);
  }
  .p-race-info__rule-head h3 {
    font-size: 4.8vw;
    line-height: 1.35;
    transform: none;
  }
  .p-race-info__rule-text {
    padding-top: 4.8vw;
  }
  .p-race-info__rule-text p {
    font-size: 3.2vw;
    line-height: 1.9;
    letter-spacing: -0.05em;
  }
  .p-race-info__rule-alert {
    height: 8.5333333333vw;
    margin-top: 7.4666666667vw !important;
    margin-bottom: 4.2666666667vw !important;
    font-size: 3.7333333333vw !important;
  }
  .p-race-info__goods {
    margin-top: 17.0666666667vw;
  }
  .p-race-info__goods-body {
    grid-template-columns: 1fr;
    row-gap: 7.4666666667vw;
    margin-top: 9.6vw;
  }
  .p-race-info__goods-image {
    width: 100%;
    height: 101.3333333333vw;
    font-size: 8vw;
  }
  .p-race-info__goods-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .p-race-info__goods-content {
    padding-top: 0;
  }
  .p-race-info__goods-text {
    margin-bottom: 5.8666666667vw;
    font-size: 3.4666666667vw;
    line-height: 1.8;
  }
  .p-race-info__goods-row {
    grid-template-columns: 23.4666666667vw 1fr;
    -moz-column-gap: 5.3333333333vw;
         column-gap: 5.3333333333vw;
    padding: 4.8vw 0;
  }
  .p-race-info__goods-row dt,
  .p-race-info__goods-row dd {
    font-size: 3.4666666667vw;
    line-height: 1.7;
  }
}
/* ======================================
  course
====================================== */
.p-course {
  position: relative;
  z-index: 6;
  margin-top: -2.7777777778vw;
  padding: 14.5833333333vw 0 14.0625vw;
  background: var(--color-black);
  color: var(--color-white);
  clip-path: polygon(0 16.5%, 100% 0, 100% 83.5%, 0 100%);
}
.p-course__inner {
  max-width: 69.4444444444vw;
  margin: 0 auto;
}
.p-course__head {
  margin-top: 3.75vw;
  margin-bottom: 3.75vw;
}
.p-course__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: 6.2195486111vw;
  font-size: 6.2195486111vw;
  font-weight: 700;
  line-height: 0.8;
}
.p-course__title-ja {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 12.1527777778vw;
  margin-top: -0.2777777778vw;
  height: 1.9444444444vw;
  padding: 0 4.0972222222vw 0 1.9444444444vw;
  color: var(--color-blue);
  background: var(--color-white);
  font-family: var(--font-ja);
  font-size: 1.4583333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.15em;
}
.p-course__title-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1111111111vw;
  height: 0.5208333333vw;
  background: var(--color-blue);
  transform: translateY(-50%);
}
.p-course__body {
  display: grid;
  grid-template-columns: 33.4398159722vw 1fr;
  -moz-column-gap: 2.9166666667vw;
       column-gap: 2.9166666667vw;
  align-items: start;
}
.p-course__map {
  width: 32.9852986111vw;
  height: 46.6506388889vw;
  overflow: hidden;
  background: #d9d9d9;
}
.p-course__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-course__list li {
  font-size: 1.0069444444vw;
  font-weight: 400;
  letter-spacing: -0.05em;
}
.p-course__list li span {
  line-height: 2;
}
.p-course__button-wrap {
  display: flex;
  justify-content: center;
  width: 33.4398159722vw;
  margin-top: 4.1319444444vw;
  margin-inline: auto;
}
.p-course__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.8333333333vw;
  width: 19.3055555556vw;
  height: 3.0555555556vw;
  background: var(--color-white);
  color: var(--color-blue);
  font-family: var(--font-en);
  font-size: 2.5884513889vw;
  font-weight: 700;
  line-height: 1.7500006707;
  text-decoration: none;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s, color 0.3s;
}
.p-course__button:hover {
  opacity: 0.85;
  transform: scale(1.04);
}

/* ======================================
  SP
====================================== */
@media screen and (max-width: 750px) {
  .p-course {
    margin-top: -8vw;
    padding: 44vw 0 34.6666666667vw;
    clip-path: polygon(0 8.2%, 100% 0, 100% 91.8%, 0 100%);
  }
  .p-course__inner {
    width: 100%;
    max-width: none;
    padding: 0 5.3333333333vw;
    margin: 0;
  }
  .p-course__head {
    margin-top: 0;
    margin-bottom: 11.7333333333vw;
  }
  .p-course__title {
    font-size: 14.9333333333vw;
    line-height: 0.8;
    letter-spacing: -0.02em;
  }
  .p-course__title-ja {
    min-width: 29.8666666667vw;
    height: 6.4vw;
    padding: 0 3.7333333333vw 0 6.4vw;
    font-size: 4vw;
  }
  .p-course__title-ja::before {
    width: 3.4666666667vw;
    height: 1.6vw;
  }
  .p-course__body {
    display: block;
  }
  .p-course__map {
    width: 100%;
    height: auto;
    margin-bottom: 9.0666666667vw;
    overflow: visible;
    background: transparent;
  }
  .p-course__map img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .p-course__content {
    width: 100%;
    padding-top: 0;
  }
  .p-course__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .p-course__list li {
    padding: 3.7333333333vw 0;
    border-bottom: 1px solid rgb(255, 255, 255);
    font-size: 3.7333333333vw;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: -0.03em;
  }
  .p-course__list li:first-child {
    padding-top: 0;
  }
  .p-course__button-wrap {
    width: 100%;
    margin-top: 9.6vw;
  }
  .p-course__button {
    width: 42.6666666667vw;
    height: 8.5333333333vw;
    padding-top: 1.3333333333vw;
    font-size: 4.8vw;
  }
  .p-course__button:hover {
    opacity: 1;
    transform: none;
  }
}
/* ======================================
  gallery
====================================== */
.p-gallery {
  position: relative;
  z-index: 3;
  margin-top: -17.6388888889vw;
  padding: 19.4444444444vw 0 21.6666666667vw;
  background: var(--color-white);
  clip-path: polygon(0 19%, 100% 0, 100% 81%, 0 100%);
  overflow: hidden;
}
.p-gallery__inner {
  position: relative;
  z-index: 3;
  max-width: 69.4444444444vw;
  margin: 0 auto;
}
.p-gallery__block:not(:first-child) {
  margin-top: 18.75vw;
}
.p-gallery__head {
  margin-bottom: 5.6944444444vw;
}
.p-gallery__title {
  margin: 0;
  font-family: var(--font-en);
  color: var(--color-blue);
  font-size: 6.2195486111vw;
  font-weight: 700;
  line-height: 0.8;
}
.p-gallery__title-ja {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 12.1527777778vw;
  margin-top: -0.2777777778vw;
  height: 1.9444444444vw;
  padding: 0 4.0972222222vw 0 1.9444444444vw;
  color: var(--color-white);
  background: var(--color-black);
  font-size: 1.4583333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.15em;
}
.p-gallery__title-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1111111111vw;
  height: 0.5208333333vw;
  background: var(--color-blue);
  transform: translateY(-50%);
}
.p-gallery__soon {
  margin: 0;
  text-align: center;
  color: #7f7f7f;
  font-family: var(--font-en);
  font-size: 3.3027777778vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.p-section-band.text_bottom {
  margin-top: -6.9444444444vw;
}

/* ======================================
  SP
====================================== */
@media screen and (max-width: 750px) {
  .p-gallery {
    margin-top: -32.6666666667vw;
    padding: 39.4666666667vw 0 39.4666666667vw;
    clip-path: polygon(0 16.9%, 100% 0, 100% 83.1%, 0 100%);
  }
  .p-gallery__inner {
    width: 100%;
    max-width: none;
    padding: 0 5.3333333333vw;
    margin: 0;
  }
  .p-gallery__block:not(:first-child) {
    margin-top: 29.3333333333vw;
  }
  .p-gallery__head {
    margin-bottom: 13.8666666667vw;
  }
  .p-gallery__title {
    font-size: 14.9333333333vw;
    line-height: 0.8;
    letter-spacing: -0.02em;
  }
  .p-gallery__title-ja {
    min-width: 29.8666666667vw;
    height: 6.4vw;
    padding: 0 3.7333333333vw 0 6.4vw;
    font-size: 4vw;
  }
  .p-gallery__title-ja::before {
    width: 3.4666666667vw;
    height: 1.6vw;
  }
  .p-gallery__soon {
    font-size: 8.5333333333vw;
    line-height: 1;
    text-align: center;
  }
  .p-section-band.text_bottom {
    margin-top: -8.5333333333vw;
  }
}
/* ======================================
  access
====================================== */
.p-access {
  position: relative;
  z-index: 5;
  margin-top: -12.9166666667vw;
  padding: 19.3055555556vw 0 10.4166666667vw;
  background: var(--color-black);
  color: var(--color-white);
  clip-path: polygon(0 18.2%, 100% 0, 100% 81.8%, 0 100%);
}
.p-access__inner {
  max-width: 69.4444444444vw;
  margin: 0 auto;
}
.p-access__head {
  margin-bottom: 1.0763888889vw;
}
.p-access__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: 6.2195486111vw;
  font-size: 6.2195486111vw;
  font-weight: 700;
  line-height: 0.8;
}
.p-access__title-ja {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 12.1527777778vw;
  margin-top: -0.2777777778vw;
  height: 1.9444444444vw;
  padding: 0 4.0972222222vw 0 1.9444444444vw;
  color: var(--color-blue);
  background: var(--color-white);
  font-family: var(--font-ja);
  font-size: 1.4583333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.15em;
}
.p-access__title-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1111111111vw;
  height: 0.5208333333vw;
  background: var(--color-blue);
  transform: translateY(-50%);
}
.p-access__map {
  overflow: hidden;
  width: 100%;
  height: 31.875vw;
}
.p-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-access__info {
  margin-top: 0.9027777778vw;
  font-size: 1.0069444444vw;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.p-access__place {
  margin: 0 0 1.1111111111vw;
}
.p-access__text-block {
  margin-top: 1.1111111111vw;
}
.p-access__text-block p {
  margin: 0;
}
.p-access__label {
  color: var(--color-blue);
}

/* ======================================
  SP
====================================== */
@media screen and (max-width: 750px) {
  .p-access {
    margin-top: -10.6666666667vw;
    padding: 40vw 0 37.3333333333vw;
    clip-path: polygon(0 9.7%, 100% 0, 100% 90.3%, 0 100%);
  }
  .p-access__inner {
    width: 100%;
    max-width: none;
    padding: 0 5.3333333333vw;
    margin: 0;
  }
  .p-access {
    /* =========================
      heading
    ========================= */
  }
  .p-access__head {
    margin-bottom: 11.7333333333vw;
  }
  .p-access__title {
    font-size: 14.9333333333vw;
    line-height: 0.8;
    letter-spacing: -0.02em;
  }
  .p-access__title-ja {
    min-width: 29.8666666667vw;
    height: 6.4vw;
    padding: 0 3.7333333333vw 0 6.4vw;
    font-size: 4vw;
  }
  .p-access__title-ja::before {
    width: 3.4666666667vw;
    height: 1.6vw;
  }
  .p-access {
    /* =========================
      map
    ========================= */
  }
  .p-access__map {
    width: 100%;
    height: 69.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
  .p-access__map iframe {
    width: 100%;
    height: 100%;
  }
  .p-access {
    /* =========================
      info
    ========================= */
  }
  .p-access__place {
    margin-bottom: 9.0666666667vw;
    font-size: 4.8vw;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: -0.03em;
  }
  .p-access__text-block {
    margin-bottom: 8vw;
  }
  .p-access__text-block:last-child {
    margin-bottom: 0;
  }
  .p-access__label {
    margin-bottom: 2.6666666667vw;
    font-size: 4.2666666667vw;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: var(--color-blue);
  }
  .p-access__text-block p {
    font-size: 3.7333333333vw;
    line-height: 2;
    letter-spacing: 0;
  }
}
/* ======================================
  contact
====================================== */
.p-contact {
  position: relative;
  z-index: 6;
  margin-top: -6.25vw;
  padding: 9.7222222222vw 0 6.25vw;
  background: var(--color-blue);
  color: var(--color-white);
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}
.p-contact__inner {
  max-width: 69.4444444444vw;
  margin: 0 auto;
}
.p-contact__head {
  margin-bottom: -1.1666666667vw;
}
.p-contact__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: 6.2195486111vw;
  font-size: 6.2195486111vw;
  font-weight: 700;
  line-height: 0.8;
}
.p-contact__title-ja {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 12.1527777778vw;
  margin-top: -0.2777777778vw;
  height: 1.9444444444vw;
  padding: 0 4.0972222222vw 0 1.9444444444vw;
  background: var(--color-black);
  font-size: 1.4583333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.15em;
}
.p-contact__title-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1111111111vw;
  height: 0.5208333333vw;
  background: var(--color-blue);
  transform: translateY(-50%);
}
.p-contact__form {
  width: 54.1666666667vw;
  margin-top: 3.125vw;
  margin-left: auto;
}
.p-contact .wpcf7,
.p-contact .wpcf7-form {
  width: 100%;
}
.p-contact .wpcf7-form {
  margin: 0;
}
.p-contact .wpcf7-form-control-wrap {
  display: block;
  width: 36.4583333333vw;
}
.p-contact .wpcf7-spinner {
  display: none;
}
.p-contact__row {
  display: grid;
  grid-template-columns: 17.7083333333vw 36.4583333333vw;
  align-items: center;
  margin-top: 1.8402777778vw;
}
.p-contact__row:first-child {
  margin-top: 0;
}
.p-contact__row--textarea {
  align-items: start;
}
.p-contact__row--textarea .p-contact__label {
  padding-top: 0.6944444444vw;
}
.p-contact__label {
  display: grid;
  grid-template-columns: 6.0069444444vw 1fr;
  align-items: center;
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.p-contact__label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.6180555556vw;
  height: 2.0833333333vw;
  background: var(--color-black);
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1;
}
.p-contact__label span.is-empty {
  background: transparent;
}
.p-contact input[type=text],
.p-contact input[type=email],
.p-contact input[type=tel],
.p-contact textarea {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  background: var(--color-white);
  font-family: var(--font-ja);
  font-size: 1.1111111111vw;
  font-weight: 400;
  outline: none;
}
.p-contact input[type=text],
.p-contact input[type=email],
.p-contact input[type=tel] {
  height: 3.4722222222vw;
  padding: 0 0.5555555556vw;
}
.p-contact textarea {
  height: 12.1006944444vw;
  padding: 0.5555555556vw;
  resize: vertical;
}
.p-contact__radio {
  display: grid;
  grid-template-columns: 17.7083333333vw auto;
  align-items: center;
  margin-top: 3.1944444444vw;
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1;
}
.p-contact__radio > p {
  margin: 0;
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.p-contact__radio .wpcf7-form-control-wrap {
  width: auto;
}
.p-contact__radio .wpcf7-form-control {
  display: flex;
  align-items: center;
  gap: 2.6388888889vw;
}
.p-contact__radio .wpcf7-list-item {
  margin: 0;
}
.p-contact__radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.6944444444vw;
  cursor: pointer;
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1;
}
.p-contact__radio .wpcf7-list-item-label {
  display: inline-block;
  line-height: 1;
}
.p-contact__radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  flex: 0 0 auto;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  margin: 0;
  background: var(--color-white);
  border: none;
  cursor: pointer;
}
.p-contact__radio input[type=radio]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 0.8333333333vw;
  height: 0.4861111111vw;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
}
.p-contact__radio input[type=radio]:checked::after {
  opacity: 1;
}
.p-contact__button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4.0277777778vw;
}
.p-contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18.3333333333vw;
  height: 2.9166666667vw;
  border: none;
  background: var(--color-white);
  color: var(--color-blue);
  font-size: 1.2847222222vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}
.p-contact__button:hover {
  opacity: 0.85;
  transform: scale(1.05);
}
.p-contact .wpcf7-not-valid-tip {
  margin-top: 0.5555555556vw;
  color: #ff2b2b;
  font-size: 0.8333333333vw;
  font-weight: 700;
  line-height: 1.4;
}
.p-contact .wpcf7-response-output {
  width: 36.4583333333vw;
  margin: 2.0833333333vw 0 0 auto;
  padding: 0.8333333333vw;
  border: 2px solid #ffcc00;
  color: #ff2b2b;
  font-size: 0.9722222222vw;
  font-weight: 700;
}

/* ======================================
  contact confirm / thanks
====================================== */
.p-contact--confirm,
.p-contact--thanks {
  min-height: 100vh;
  padding-top: 20.8333333333vw;
  padding-bottom: 15.2777777778vw;
}

.p-contact__confirm {
  width: 54.1666666667vw;
  margin-left: auto;
}

.p-contact__confirm-row {
  display: grid;
  grid-template-columns: 17.7083333333vw 36.4583333333vw;
  align-items: start;
  margin-top: 2.6388888889vw;
}
.p-contact__confirm-row:first-child {
  margin-top: 0;
}

.p-contact__confirm-label {
  display: flex;
  align-items: center;
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.p-contact__confirm-value {
  min-height: 3.4722222222vw;
  padding: 0.9722222222vw 1.1111111111vw;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.p-contact__confirm-row--textarea .p-contact__confirm-value {
  min-height: 15.2777777778vw;
}

.p-contact__thanks {
  width: 54.1666666667vw;
  margin: 0 auto;
  padding-top: 2.7777777778vw;
  text-align: center;
}

.entry__inner {
  margin-top: 5.5555555556vw;
  padding: 3.4722222222vw 2.4305555556vw;
  background-color: #e6e6e6;
  color: #333;
}
.entry__inner h2 {
  font-size: 1.6666666667vw;
  margin-bottom: 1.3888888889vw;
  padding-left: 15px;
  border-left: solid 5px var(--color-blue);
}
.entry__inner h2 br {
  display: none;
}
.entry__inner p {
  position: relative;
  padding-left: 20px;
  font-size: 1.3888888889vw;
  margin-bottom: 2.0833333333vw;
}
.entry__inner p:last-of-type {
  margin-bottom: 0;
}
.entry__inner p::before {
  position: absolute;
  top: 0.9027777778vw;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--color-blue);
  content: "";
  display: block;
}
.entry__inner p a {
  color: var(--color-blue);
  text-decoration: underline;
}

.p-contact__thanks-text {
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: -0.02em;
}

/* ======================================
  sp
====================================== */
@media screen and (max-width: 750px) {
  .p-contact {
    margin-top: -16vw;
    padding: 26.6666666667vw 0 26.6666666667vw;
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  }
  .p-contact__inner {
    width: 100%;
    max-width: none;
    padding: 0 5.3333333333vw;
    margin: 0;
  }
  .p-contact__head {
    margin-bottom: 11.7333333333vw;
  }
  .p-contact__title {
    font-size: 14.9333333333vw;
    line-height: 0.8;
    letter-spacing: -0.02em;
  }
  .p-contact__title-ja {
    min-width: 29.8666666667vw;
    height: 6.4vw;
    padding: 0 3.7333333333vw 0 6.4vw;
    font-size: 4vw;
  }
  .p-contact__title-ja::before {
    width: 3.4666666667vw;
    height: 1.6vw;
  }
  .p-contact__form {
    width: 100%;
    margin-top: 11.2vw;
    margin-left: 0;
  }
  .p-contact .wpcf7-form-control-wrap {
    width: 100%;
  }
  .p-contact__row {
    display: block;
    margin-top: 7.4666666667vw;
  }
  .p-contact__label {
    display: grid;
    grid-template-columns: 15.4666666667vw 1fr;
    -moz-column-gap: 3.2vw;
         column-gap: 3.2vw;
    margin-bottom: 2.6666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.4;
  }
  .p-contact__label span {
    width: 13.8666666667vw;
    height: 6.4vw;
    font-size: 3.2vw;
  }
  .p-contact input[type=text],
  .p-contact input[type=email],
  .p-contact input[type=tel],
  .p-contact textarea {
    width: 100%;
    font-size: 4.2666666667vw;
  }
  .p-contact input[type=text],
  .p-contact input[type=email],
  .p-contact input[type=tel] {
    height: 12.2666666667vw;
    padding: 0 2.6666666667vw;
  }
  .p-contact textarea {
    height: 42.6666666667vw;
    padding: 2.6666666667vw;
  }
  .p-contact__radio {
    display: block;
    margin-top: 8.5333333333vw;
    font-size: 3.7333333333vw;
  }
  .p-contact__radio > p {
    margin-bottom: 3.7333333333vw;
    font-size: 3.7333333333vw;
    text-align: center;
  }
  .p-contact__radio .wpcf7-form-control {
    gap: 5.8666666667vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-contact__radio .wpcf7-list-item label {
    gap: 2.1333333333vw;
    font-size: 3.7333333333vw;
  }
  .p-contact__radio input[type=radio] {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
  .p-contact__radio input[type=radio]::after {
    width: 2.9333333333vw;
    height: 1.6vw;
  }
  .p-contact__button-wrap {
    margin-top: 12.2666666667vw;
  }
  .p-contact__button {
    width: 64vw;
    height: 11.2vw;
    font-size: 4vw;
  }
  .p-contact__button:hover {
    opacity: 1;
    transform: none;
  }
  .p-contact .wpcf7-not-valid-tip {
    margin-top: 1.6vw;
    font-size: 2.9333333333vw;
  }
  .p-contact .wpcf7-response-output {
    width: 100%;
    margin: 6.4vw 0 0;
    padding: 2.6666666667vw;
    font-size: 3.2vw;
    line-height: 1.6;
  }
  .p-contact--confirm,
  .p-contact--thanks {
    min-height: auto;
    padding-top: 50.6666666667vw;
    padding-bottom: 32vw;
  }
  .p-contact__confirm {
    width: 100%;
    margin-left: 0;
  }
  .p-contact__confirm-row {
    grid-template-columns: 1fr;
    row-gap: 3.2vw;
    margin-top: 7.4666666667vw;
  }
  .p-contact__confirm-label {
    font-size: 3.7333333333vw;
    line-height: 1.5;
  }
  .p-contact__confirm-value {
    min-height: 12.8vw;
    padding: 3.2vw;
    font-size: 3.7333333333vw;
    line-height: 1.9;
  }
  .p-contact__confirm-row--textarea .p-contact__confirm-value {
    min-height: 48vw;
  }
  .p-contact__thanks {
    width: 100%;
    padding-top: 5.3333333333vw;
  }
  .entry__inner {
    margin-top: 13.3333333333vw;
    padding: 8vw 5.3333333333vw;
  }
  .entry__inner h2 {
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
  }
  .entry__inner h2 br {
    display: block;
  }
  .entry__inner p {
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
  .entry__inner p::before {
    top: 2.6666666667vw;
  }
  .p-contact__thanks-text {
    font-size: 4vw;
    line-height: 2;
  }
}
/* ======================================
  lower heading
====================================== */
.c-lower-heading {
  margin-bottom: 4.0277777778vw;
}
.c-lower-heading__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: 6.2195486111vw;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.02em;
}
.c-lower-heading__sub {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 10.4166666667vw;
  height: 1.9444444444vw;
  padding: 0 1.25vw 0 1.9444444444vw;
  background: var(--color-black);
  font-size: 1.4583333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.c-lower-heading__sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1111111111vw;
  height: 0.5208333333vw;
  background: var(--color-blue);
  transform: translateY(-50%);
}

/* ======================================
  news archive
====================================== */
.p-news-archive {
  position: relative;
  min-height: 100vh;
  padding: 13.8888888889vw 0 13.8888888889vw;
  background: var(--color-blue);
  color: var(--color-white);
  overflow: hidden;
}
.p-news-archive__inner {
  max-width: 69.4444444444vw;
  margin: 0 auto;
}
.p-news-archive__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-news-archive__item {
  border-bottom: 1px solid rgb(255, 255, 255);
}
.p-news-archive__item:last-child {
  border-bottom: none;
}
.p-news-archive__item a {
  display: grid;
  grid-template-columns: 8.3333333333vw 1fr 3.2986111111vw;
  align-items: center;
  -moz-column-gap: 1.9444444444vw;
       column-gap: 1.9444444444vw;
  min-height: 5.8333333333vw;
  padding: 0.9722222222vw 0;
  transition: opacity 0.3s;
}
.p-news-archive__item a:hover i {
  transform: translateX(0.5555555556vw);
}
.p-news-archive__item time {
  display: block;
  padding-top: 0.3em;
  font-family: var(--font-en);
  font-size: 1.7361111111vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.p-news-archive__item span {
  display: block;
  margin-left: 0;
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.p-news-archive__item .p-news-archive__item--arrow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.p-news-archive__item i {
  position: relative;
  display: block;
  width: 3.2986111111vw;
  height: 0.8333333333vw;
  transition: transform 0.3s;
}
.p-news-archive__item i::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3.2986111111vw;
  height: 2px;
  background: var(--color-white);
  transform: translateY(-50%);
}
.p-news-archive__item i::after {
  content: "";
  position: absolute;
  right: 2%;
  top: 50%;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  border-top: 2px solid var(--color-white);
  transform: translateY(-53%) rotate(45deg);
}

@media screen and (max-width: 750px) {
  .c-lower-heading {
    margin-bottom: 11.2vw;
  }
  .c-lower-heading__title {
    font-size: 14.9333333333vw;
    line-height: 0.8;
    letter-spacing: -0.02em;
  }
  .c-lower-heading__sub {
    min-width: 29.8666666667vw;
    height: 6.4vw;
    padding: 0 3.7333333333vw 0 6.4vw;
    font-size: 4vw;
  }
  .c-lower-heading__sub::before {
    width: 3.4666666667vw;
    height: 1.6vw;
  }
  .p-news-archive {
    min-height: auto;
    padding: 34.6666666667vw 0 29.3333333333vw;
  }
  .p-news-archive__inner {
    width: 100%;
    max-width: none;
    padding-inline: 5.3333333333vw;
  }
  .p-news-archive__item a {
    display: grid;
    grid-template-columns: 1fr 10.1333333333vw;
    grid-template-rows: auto auto;
    align-items: end;
    -moz-column-gap: 4.2666666667vw;
         column-gap: 4.2666666667vw;
    min-height: auto;
    padding: 5.8666666667vw 0 5.3333333333vw;
  }
  .p-news-archive__item time {
    grid-column: 1/2;
    grid-row: 1/2;
    display: block;
    padding-top: 0;
    margin-bottom: 2.6666666667vw;
    font-size: 5.3333333333vw;
    line-height: 1;
  }
  .p-news-archive__item span {
    grid-column: 1/2;
    grid-row: 2/3;
    display: block;
    margin-left: 0;
    padding-right: 0;
    font-size: 3.7333333333vw;
    font-weight: 500;
    line-height: 1.6;
  }
  .p-news-archive__item .p-news-archive__item--arrow {
    grid-column: 2/3;
    grid-row: 1/3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .p-news-archive__item i {
    display: block;
    width: 10.1333333333vw;
    height: 2.6666666667vw;
    margin: 0;
  }
  .p-news-archive__item i::before {
    height: 1px;
    top: 25%;
    width: 9.0666666667vw;
  }
  .p-news-archive__item i::after {
    right: 1.6vw;
    top: 0.5333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-top: 1px solid var(--color-white);
    transform: translateY(-50%) rotate(45deg);
  }
}
/* ======================================
  news single
====================================== */
.p-news-single {
  position: relative;
  min-height: 100vh;
  padding: 13.8888888889vw 0 8.3333333333vw;
  background: var(--color-blue);
  color: var(--color-white);
  overflow: hidden;
}
.p-news-single__inner {
  width: 69.4444444444vw;
  margin: 0 auto;
}
.p-news-single__head {
  display: flex;
  align-items: end;
  gap: 2.3611111111vw;
  padding-bottom: 1.9444444444vw;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.p-news-single__head time {
  flex: 0 0 auto;
  padding-top: 0.25em;
  font-family: var(--font-en);
  font-size: 1.7361111111vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.p-news-single__head h1 {
  margin: 0;
  font-size: 2.1527777778vw;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
.p-news-single__body {
  padding-top: 2.9166666667vw;
}
.p-news-single__body p {
  margin: 0 0 4.1666666667vw;
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: -0.02em;
}
.p-news-single__body p:last-child {
  margin-bottom: 0;
}
.p-news-single__body img {
  max-width: 100%;
  height: auto;
}
.p-news-single__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69.4444444444vw;
  height: 38.4375vw;
  margin-top: 5vw;
  overflow: hidden;
  background: #e9e9e9;
  color: #888;
  font-family: var(--font-en);
  font-size: 2.9166666667vw;
  font-weight: 700;
  line-height: 1;
}
.p-news-single__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news-single__back {
  margin-top: 4.8611111111vw;
  text-align: center;
}
.p-news-single__back a {
  position: relative;
  display: inline-block;
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.p-news-single__back a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4166666667vw;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
}
.p-news-single__back a:hover::after {
  transform: scaleX(1);
}

/* ======================================
  tablet
====================================== */
@media screen and (max-width: 1100px) and (min-width: 751px) {
  .p-news-single {
    padding: 200px 0 80px;
  }
  .p-news-single__inner {
    width: calc(100% - 100px);
  }
  .p-news-single__head {
    gap: 24px;
    padding-bottom: 24px;
  }
  .p-news-single__head time {
    font-size: 22px;
  }
  .p-news-single__head h1 {
    font-size: 24px;
    line-height: 1.55;
  }
  .p-news-single__body {
    padding-top: 34px;
  }
  .p-news-single__body p {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 2;
  }
  .p-news-single__photo {
    width: 100%;
    height: 360px;
    margin-top: 56px;
    font-size: 36px;
  }
  .p-news-single__back {
    margin-top: 56px;
    text-align: center;
  }
  .p-news-single__back a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .p-news-single__back a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s;
  }
  .p-news-single__back a:hover::after {
    transform: scaleX(1);
  }
}
/* ======================================
  sp
====================================== */
@media screen and (max-width: 750px) {
  .p-news-single {
    min-height: auto;
    padding: 34.6666666667vw 0 29.3333333333vw;
  }
  .p-news-single__inner {
    width: auto;
    padding-inline: 5.3333333333vw;
  }
  .p-news-single__head {
    display: block;
    padding-bottom: 5.8666666667vw;
  }
  .p-news-single__head time {
    display: block;
    margin-bottom: 3.2vw;
    padding-top: 0;
    font-size: 6.4vw;
  }
  .p-news-single__head h1 {
    font-size: 6.4vw;
    line-height: 1.55;
  }
  .p-news-single__body {
    padding-top: 8.5333333333vw;
  }
  .p-news-single__body p {
    margin-bottom: 10.6666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.9;
  }
  .p-news-single__photo {
    width: 100%;
    height: 73.8vw;
    margin-top: 13.3333333333vw;
    font-size: 8.5333333333vw;
  }
  .p-news-single__back {
    margin-top: 13.3333333333vw;
  }
  .p-news-single__back a {
    font-size: 3.4666666667vw;
  }
  .p-news-single__back a::after {
    bottom: -1.3333333333vw;
  }
}
/* =========================
  汎用クラス
========================= */
.w50 {
  width: 50%;
}

.w48 {
  width: 48%;
}

.bg_white {
  background: #fff;
}

.bg_gray {
  background: #f6f6f6;
}

.bg_blue {
  background: var(--color-blue);
}

.color_white,
.color_white a {
  color: #fff;
}

.color_blue {
  color: var(--color-blue);
}

.taC {
  text-align: center;
}

.taR {
  text-align: right;
}

.posi_relative {
  position: relative;
}

/* ======================================
  fade in
====================================== */
.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
  PC / SP表示切り替え
========================= */
.u-sp-br {
  display: none;
}

.u-pc-br {
  display: block;
}

.u-pc-indent {
  display: block;
  margin-top: 0.2em;
}

@media screen and (max-width: 750px) {
  body {
    font-size: 14px;
  }
  .u-sp-br {
    display: block;
  }
  .u-pc-br {
    display: none;
  }
  .u-pc-indent {
    margin-top: 0;
  }
  .col_1920,
  .col_1440,
  .col_1200,
  .col_1000 {
    padding-left: 5.333vw;
    padding-right: 5.333vw;
  }
  .w50,
  .w48 {
    width: 100%;
  }
  .c-section-title {
    margin-bottom: 8vw;
    font-size: 8vw;
  }
  .c-section-title span {
    font-size: 4vw;
  }
}
@media screen and (max-width: 750px) {
  .u-sp-br {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */