@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=y=Zen+Old+Mincho:wght@400;700&display=swap");
:root {
  --sans-serif: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  --serif: "Noto Serif JP", serif;
  --en-sans: "", sans-serif;
  --en-serif: "", serif;
  --base-width: 920;
  --base: #fff;
  --main: #000;
  --accent: #d81b60;
  --sp-base-fs: 4vw;
  --sp-pad: 6vw;
}

:root {
  --serif-zen: "Zen Old Mincho", serif;
  --en-sans: "Oswald", sans-serif;
  --red01: #D90F1B;
  --red02: #FF000F;
  --yellow01: #FFEB00;
  --blue01: #033C96;
  --base-width-sp: 660;
}

/*========================================
  ブラウザごとのデフォルトスタイルの初期化
========================================*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
figure {
  all: unset;
  display: revert;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: middle;
}

/*========================================
	要素の基本的なスタイル
========================================*/
html {
  font-size: 10px;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  text-size-adjust: 100%;
  font-family: var(--sans-serif);
  font-size: 1.6rem;
  line-height: 1.8;
  min-width: 320px;
  color: var(--main);
  background: var(--base);
}
@media screen and (max-width: 1200px) and (min-width: 767px) {
  body {
    font-size: 1.3265306122vw;
  }
  body img {
    font-size: 0.9795918367vw;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: var(--sp-base-fs);
  }
}

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

:focus-visible {
  outline: 2px solid blue;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

img,
svg,
iframe,
video,
picture {
  max-width: 100%;
}

img,
svg {
  vertical-align: top;
}

img {
  letter-spacing: 0;
  font-size: 12px;
  height: auto;
}
@media screen and (max-width: 1200px) and (min-width: 767px) {
  img {
    font-size: 1.2244897959vw;
  }
}

a {
  word-break: break-all;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}

small {
  font-size: 80%;
}

button,
input[type=button],
input[type=submit] {
  cursor: pointer;
  font: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

label {
  cursor: pointer;
  display: inline-block;
}

/*========================================
	要素の基本的なスタイル
========================================*/
button {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
}

/*========================================
  サイト共通のフッター
========================================*/
.l-footer {
  background: #010f1d;
  padding: 2.5em 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 13.3333333333vw 6vw 6vw 6vw;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 81.25%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    font-size: 2.5333333333vw;
  }
}
.l-footer__copyright {
  font-size: 100%;
}

/*========================================
  サイト共通のヘッダー
========================================*/
.l-header {
  background: #010f1d;
  padding: 0.9375em 2.5em;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 2.4vw;
  }
}
.l-header__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  width: 17.1875em;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    display: flex;
    align-items: center;
    width: 43.2vw;
  }
}
/*========================================
  サイト共通のフッター
========================================*/
.l-footer {
  background: #213B45;
  padding: 1.25em 10px;
  color: var(--base);
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 2.6666666667vw 40px;
  }
}

.l-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.5625em;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    flex-wrap: wrap;
    gap: 0 2.6666666667vw;
  }
}
.l-footer__nav a {
  font-size: 1.2rem;
  color: var(--base);
  text-decoration: none;
}
@media (hover: hover) {
  .l-footer__nav a:hover {
    text-decoration: underline;
  }
}

.l-footer__pagetop {
  position: absolute;
  top: 10px;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .l-footer__pagetop {
    width: 8.8vw;
  }
}

.l-footer__copyright {
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
}

/*========================================
  カスタムヘッダー
========================================*/
.l-header {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .l-head__qt-pro {
    width: 26.6666666667vw;
  }
}

/*========================================
  ボタン
========================================*/
.c-btn {
  cursor: pointer;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  text-decoration: none;
  user-select: none;
  border: 0;
}
.c-btn:hover {
  text-decoration: none;
}

/*========================================
  アイコン
========================================*/
.c-icon {
  position: relative;
  display: inline-block;
  background: 50% 50% no-repeat;
  background-size: contain;
  vertical-align: top;
  line-height: 1;
  font-style: normal;
}

/*========================================
  container
========================================*/
.c-container--l {
  width: calc((var(--base-width) + 280) * 1px);
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.c-container--m {
  width: calc((var(--base-width) + 30) * 1px);
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1200px) and (min-width: 767px) {
  .c-container--m {
    width: calc((var(--base-width) + 50) / 1200 * 100%);
  }
}
@media screen and (max-width: 767px) {
  .c-container--m {
    width: calc(0.1333333333 * var(--base-width-sp) * 1vw);
  }
}

.c-container--s {
  width: calc((var(--base-width) - 70) * 1px);
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1200px) and (min-width: 767px) {
  .c-container--s {
    width: calc((var(--base-width) + 50) / 1200 * 100%);
  }
}
@media screen and (max-width: 767px) {
  .c-container--s {
    width: calc(0.1333333333 * var(--base-width-sp) * 1vw);
  }
}

/*========================================
  hero
========================================*/
.p-hero {
  background: var(--main);
  position: relative;
}

.p-hero__rider {
  height: 62.25%;
  max-height: 747px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-hero__rider {
    height: 141.3333333333vw;
    max-height: none;
  }
}
.p-hero__rider::before {
  background: url(../img/hero_pict01_pc.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 120vw;
  max-width: 1440px;
  height: 74.6666666667vw;
  max-height: 896px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (max-width: 767px) {
  .p-hero__rider::before {
    background: url(../img/hero_pict01_sp.webp) no-repeat 50% 50%;
    background-size: contain;
    width: 139.2vw;
    max-width: none;
    height: 196.6666666667vw;
    max-height: none;
  }
}
.p-hero__rider.p-anime-hero01::before {
  opacity: 0;
  visibility: hidden;
  animation: a-hero-rider 0.6s ease 0.3s forwards;
}
@keyframes a-hero-rider {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.8);
  }
  30% {
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}

.p-hero__inner {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-hero__inner {
    max-width: none;
  }
}

.p-hero__copy {
  margin: 4.1666666667vw auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width >= 1200px) {
  .p-hero__copy {
    margin-top: 50px;
  }
}
@media (width <= 900px) {
  .p-hero__copy {
    width: 76.4444444444%;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__copy {
    width: 84vw;
    margin-top: 10.6666666667vw;
  }
}

.p-hero__col {
  margin-top: 21.8333333333vw;
  display: flex;
  align-items: center;
  position: relative;
  gap: 0 6.25em;
  z-index: 1;
}
@media (width >= 1200px) {
  .p-hero__col {
    margin-top: 262px;
    gap: 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__col {
    margin-top: 57.3333333333vw;
    flex-wrap: wrap;
  }
}

.p-hero__ttl {
  margin-left: -12.4166666667%;
  display: flex;
  flex-direction: column;
}
@media (width >= 1200px) {
  .p-hero__ttl {
    margin-left: -149px;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__ttl {
    margin-left: -26.6666666667vw;
  }
}
.p-hero__ttl .ttl-01 {
  width: 56.6666666667vw;
  max-width: 680px;
}
@media screen and (max-width: 767px) {
  .p-hero__ttl .ttl-01 {
    width: 86.1333333333vw;
    max-width: none;
  }
}
.p-hero__ttl .ttl-02 {
  width: 65.1666666667vw;
  max-width: 782px;
  margin-top: -2.8125em;
}
@media screen and (max-width: 767px) {
  .p-hero__ttl .ttl-02 {
    width: 99.4666666667vw;
    max-width: none;
    margin-top: -5.3333333333vw;
  }
}

.p-hero__box {
  width: 30vw;
  max-width: 360px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-hero__box {
    width: 44vw;
    max-width: none;
    margin: -4vw 1.3333333333vw 0 auto;
  }
}

.p-hero__link {
  line-height: 1;
  position: absolute;
  bottom: -8.530183727%;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
@media (width >= 1201px) {
  .p-hero__link {
    bottom: -65px;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__link {
    width: 61.3333333333vw;
    bottom: -5.8666666667%;
  }
}

/*========================================
  btn
========================================*/
@media screen and (max-width: 767px) {
  .p-btn__green01 {
    width: 61.3333333333vw;
  }
}
@media (hover: hover) {
  .p-btn__green01:hover img {
    filter: hue-rotate(226deg);
  }
}
.p-btn__green01 img {
  transition: 0.4s filter;
}

.p-btn__red01 {
  background-image: linear-gradient(180deg, #ff0b1a 0%, #80060d 100%);
  border-radius: 100vw;
  width: 335px;
  padding: 15px 10px;
  font-size: 2.7rem;
  font-weight: 500;
  color: var(--base);
  transition: 0.4s filter;
}
@media screen and (max-width: 767px) {
  .p-btn__red01 {
    width: 220px;
    padding: 10px;
    font-size: 1.8rem;
  }
}
@media (hover: hover) {
  .p-btn__red01:hover {
    filter: hue-rotate(-270deg);
  }
}

/*========================================
  floating bnr
========================================*/
.p-floating__wrap {
  position: relative;
}

.p-floating__contents {
  background: var(--main);
  padding: 30px 10px;
  position: sticky;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-floating__contents {
    padding: 10px;
  }
}
.p-floating__contents.is-active {
  opacity: 1;
  visibility: visible;
}

.p-floating__btn {
  text-align: center;
}

/*========================================
  text decration
========================================*/
.p-text-serif {
  font-family: var(--serif-zen);
}

.p-text-white {
  color: var(--base);
}

.p-text-red {
  color: var(--red01);
}

.p-text-blue {
  color: #0DE3FF;
}

.p-text-notes {
  font-size: 75%;
}
@media screen and (max-width: 767px) {
  .p-text-notes {
    margin-top: 5px;
    font-size: 2.6666666667vw;
  }
}

/*========================================
  copy
========================================*/
.p-copy {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  font-size: 62.5%;
  text-align: right;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-copy {
    font-size: 1.8666666667vw;
  }
}
.p-copy span {
  margin-right: 1.875em;
}
@media screen and (max-width: 767px) {
  .p-copy span {
    margin-right: 4vw;
  }
}

.p-hero .p-copy {
  margin-top: 3.125em;
  margin-bottom: 0.9375em;
}
@media screen and (max-width: 767px) {
  .p-hero .p-copy {
    margin-top: 1.3333333333vw;
    margin-bottom: 0;
  }
}

.p-sec02 .p-copy span {
  position: absolute;
  bottom: -8.75em;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-sec02 .p-copy span {
    bottom: -8vw;
  }
}

.p-sec03 .p-copy {
  margin-top: 1.5625em;
}
@media screen and (max-width: 767px) {
  .p-sec03 .p-copy {
    margin-top: 5.3333333333vw;
  }
}

.p-sec04-05 .p-copy {
  position: absolute;
  bottom: 1em;
}
@media screen and (max-width: 767px) {
  .p-sec04-05 .p-copy {
    bottom: 1.3333333333vw;
  }
}

.p-sec04 .p-copy {
  margin-top: 1.0625em;
}
@media screen and (max-width: 767px) {
  .p-sec04 .p-copy {
    margin-top: 4vw;
  }
}

.p-sec05 .p-copy {
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  .p-sec05 .p-copy {
    margin-top: 4vw;
  }
}

.p-sec06 .p-copy {
  margin-top: 1.875em;
}
@media screen and (max-width: 767px) {
  .p-sec06 .p-copy {
    margin-top: 2.6666666667vw;
  }
}

@media screen and (max-width: 767px) {
  .p-sec07 .p-copy {
    margin-top: 29.3333333333vw;
  }
}

.p-sec08 .p-copy {
  margin-top: 3.4375em;
}
@media screen and (max-width: 767px) {
  .p-sec08 .p-copy {
    margin-top: 4vw;
  }
}

/*========================================
  sec01
========================================*/
.p-sec01 {
  background: url(../img/bg/bg_sec01.webp) no-repeat 50% 0;
  background-size: cover;
  padding-top: 7.75em;
  padding-bottom: 5em;
}
@media screen and (max-width: 767px) {
  .p-sec01 {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
}

.p-sec01__inner {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(23, 30, 103, 0.83) 16%, rgba(23, 30, 103, 0.83) 87%, rgba(255, 255, 255, 0) 100%);
  padding: 2.25em 0 1.625em;
  text-align: center;
}

.p-sec01__ttl {
  color: var(--base);
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.p-sec01__ttl .ttl-small {
  font-size: 237.5%;
}
@media screen and (max-width: 767px) {
  .p-sec01__ttl .ttl-small {
    font-size: 4.2666666667vw;
  }
}
.p-sec01__ttl .ttl-large {
  font-size: 343.75%;
}
@media screen and (max-width: 767px) {
  .p-sec01__ttl .ttl-large {
    font-size: 6.1333333333vw;
  }
}

.p-sec01__txt01 {
  margin-top: 0.875em;
  font-size: 112.5%;
  color: var(--base);
}
@media screen and (max-width: 767px) {
  .p-sec01__txt01 {
    width: calc(100% + 5.3333333333vw);
    margin-left: -2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

.p-sec01__graph {
  margin-top: 2.1875em;
}
@media screen and (max-width: 767px) {
  .p-sec01__graph {
    margin-top: 6.6666666667vw;
  }
}

/*========================================
  sec02
========================================*/
.p-sec02 {
  background: url(../img/bg/bg_sec02.webp) no-repeat 50% 100%;
  background-size: cover;
  padding-top: 2.1875em;
  padding-bottom: 10em;
  position: relative;
  overflow: hidden;
}
@media (width >= 2180px) {
  .p-sec02 {
    padding-bottom: 12.5em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec02 {
    padding-top: 8vw;
    padding-bottom: 21.3333333333vw;
  }
}

.p-sec02__ttl {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec02__ttl {
    width: 88vw;
  }
}

.p-sec02__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec02__list {
    margin-top: -8vw;
  }
}
.p-sec02__list::before {
  background: url(../img/pict_kaijin01.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 19.8125em;
  height: 24.25em;
  display: block;
  position: absolute;
  top: 7.5em;
  right: calc(50% - 29.6875em);
  translate: 50% 0;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .p-sec02__list::before {
    width: 26.6666666667vw;
    height: 32.6666666667vw;
    top: 5.3333333333vw;
    right: calc(50% - 36vw);
  }
}
.p-sec02__list.js-show::before {
  animation: a-sec02-01 0.4s ease 0.5s forwards;
}
@keyframes a-sec02-01 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(2.5em);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.p-sec02__list li {
  padding-top: 0.625em;
  font-size: 131.25%;
  font-weight: 500;
  color: var(--base);
  line-height: 1.7;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-sec02__list li {
    padding-top: 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-sec02__list .item-list01 {
    margin: 0 auto 0 -8vw;
  }
}
.p-sec02__list .item-list02 {
  margin-left: -3.8125em;
}
@media screen and (max-width: 767px) {
  .p-sec02__list .item-list02 {
    margin: -40vw -8vw 0 auto;
  }
}
.p-sec02__list .item-list03 {
  margin-left: -3.5em;
}
@media screen and (max-width: 767px) {
  .p-sec02__list .item-list03 {
    margin: -29.3333333333vw auto 0 -5.3333333333vw;
  }
}
.p-sec02__list .item-list04 {
  margin-top: -4.5em;
  padding-right: 0.625em;
}
@media screen and (max-width: 767px) {
  .p-sec02__list .item-list04 {
    margin: -32vw -8vw 0 auto;
    padding-right: 1.8666666667vw;
  }
}
.p-sec02__list .item-list05 {
  margin: -4.5em 0 0 -3.5625em;
}
@media screen and (max-width: 767px) {
  .p-sec02__list .item-list05 {
    margin: -37.3333333333vw auto 0 -5.3333333333vw;
  }
}
.p-sec02__list .item-bg01 {
  background: url(../img/sec02_text_bg01.webp) no-repeat 0 0;
  background-size: cover;
  width: 15.6875em;
  height: 15em;
}
@media screen and (max-width: 767px) {
  .p-sec02__list .item-bg01 {
    width: 58.6666666667vw;
    height: 56.1333333333vw;
  }
}
.p-sec02__list .item-bg02 {
  background: url(../img/sec02_text_bg02.webp) no-repeat 0 0;
  background-size: cover;
  width: 15.1875em;
  height: 15em;
}
@media screen and (max-width: 767px) {
  .p-sec02__list .item-bg02 {
    width: 60vw;
    height: 59.4666666667vw;
  }
}
.p-sec02__list .item-bg03 {
  background: url(../img/sec02_text_bg03.webp) no-repeat 0 0;
  background-size: cover;
  width: 15.6875em;
  height: 15em;
}
@media screen and (max-width: 767px) {
  .p-sec02__list .item-bg03 {
    width: 58.6666666667vw;
    height: 56.1333333333vw;
  }
}
.p-sec02__list .item-bg04 {
  background: url(../img/sec02_text_bg04.webp) no-repeat 0 0;
  background-size: cover;
  width: 15.6875em;
  height: 15em;
}
@media screen and (max-width: 767px) {
  .p-sec02__list .item-bg04 {
    width: 58.6666666667vw;
    height: 56.1333333333vw;
  }
}

.p-sec02__contents {
  position: relative;
}
.p-sec02__contents::before {
  background: url(../img/pict_kaijin02.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 19.1875em;
  height: 29.0625em;
  display: block;
  position: absolute;
  top: -18.4375em;
  left: calc(50% - 31.25em);
  translate: -50% 0;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .p-sec02__contents::before {
    width: 26.1333333333vw;
    height: 39.6vw;
    top: -21.3333333333vw;
    left: calc(50% - 37.3333333333vw);
  }
}
.p-sec02__contents.js-show::before {
  animation: a-sec02-02 0.4s ease 0.5s forwards;
}
@keyframes a-sec02-02 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-2.5em);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.p-sec02__box {
  background: url(../img/sec02_text_bg05.webp) no-repeat 50% 50%;
  background-size: contain;
  width: 46.5625em;
  height: 16.6875em;
  margin-inline: auto;
  padding: 1.25em 10px 1.625em;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-sec02__box {
    width: 100%;
    height: 31.7333333333vw;
  }
}

.p-sec02__text01,
.p-sec02__text03 {
  font-size: 137.5%;
  color: var(--base);
}
@media screen and (max-width: 767px) {
  .p-sec02__text01,
  .p-sec02__text03 {
    font-size: 4vw;
  }
}

.p-sec02__text02 {
  padding-right: 1.25em;
  display: flex;
  gap: 0 4.25em;
}
@media screen and (max-width: 767px) {
  .p-sec02__text02 {
    padding: 2.1333333333vw 6.6666666667vw 2.1333333333vw 2.6666666667vw;
    line-height: 1;
    gap: 0 2.6666666667vw;
  }
}
.p-sec02__text02 li:first-child {
  width: 18.0625em;
}
@media screen and (max-width: 767px) {
  .p-sec02__text02 li:first-child {
    width: 38.6666666667vw;
  }
}
.p-sec02__text02 li:nth-child(2) {
  width: 12.25em;
}
@media screen and (max-width: 767px) {
  .p-sec02__text02 li:nth-child(2) {
    width: 26.1333333333vw;
  }
}

.p-sec02__next {
  background: url(../img/sec_02_03_arrow.webp) no-repeat 0 0;
  background-size: contain;
  box-sizing: border-box;
  width: 8.0625em;
  height: 4.875em;
  padding-bottom: 0.625em;
  font-size: 237.5%;
  font-weight: 600;
  color: var(--base);
  text-align: center;
  display: grid;
  place-items: center;
  position: absolute;
  bottom: -4.25em;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
}
@media (width >= 1201px) {
  .p-sec02__next {
    bottom: -161px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec02__next {
    width: 37.3333333333vw;
    height: 22.4vw;
    padding-bottom: 3.4666666667vw;
    font-size: 4.8vw;
    bottom: -19.4666666667vw;
  }
}

/*========================================
  sec03
========================================*/
.p-sec03 {
  background: url(../img/bg/bg_sec03.webp) no-repeat 50% 0;
  background-size: cover;
  margin-top: -6.875em;
  padding-top: 8.4375em;
  padding-bottom: 1.0625em;
  position: relative;
  z-index: 1;
}
@media (width >= 2180px) {
  .p-sec03 {
    margin-top: -10em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec03 {
    margin-top: -16vw;
    padding-top: 17.3333333333vw;
    padding-bottom: 4vw;
  }
}

.p-sec03__inner01 {
  text-align: center;
}

.p-sec03__ttl01 {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec03__ttl01 {
    width: 76vw;
    margin-inline: auto;
  }
}

.p-sec03__ttl01-pict {
  width: 54.625em;
  margin: -3.9375em auto 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-sec03__ttl01-pict {
    width: 84.8vw;
    margin-top: -6.1333333333vw;
  }
}

.p-sec03__inner02 {
  margin-top: -1.875em;
}
@media screen and (max-width: 767px) {
  .p-sec03__inner02 {
    margin-top: -3.4666666667vw;
  }
}

.p-sec03__ttl02 {
  background: url(../img/sec03_subttl_bg.webp) no-repeat 50% 0;
  background-size: 100% auto;
  box-sizing: border-box;
  width: 56.5em;
  height: 8.5em;
  margin-inline: auto;
  padding-top: 0.375em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec03__ttl02 {
    background-size: 100% 100%;
    width: 88vw;
    height: 15.4666666667vw;
    padding-top: 2.4vw;
  }
}
.p-sec03__ttl02 .ttl-inner {
  font-weight: 600;
  color: var(--base);
  text-shadow: 4px 3px 0 rgb(10, 36, 77);
}
.p-sec03__ttl02 .ttl-small {
  font-size: 337.5%;
}
@media screen and (max-width: 767px) {
  .p-sec03__ttl02 .ttl-small {
    font-size: 6.1333333333vw;
  }
}
.p-sec03__ttl02 .ttl-large {
  font-size: 562.5%;
}
@media screen and (max-width: 767px) {
  .p-sec03__ttl02 .ttl-large {
    font-size: 8.2666666667vw;
  }
}

.p-sec03__slide {
  margin-top: 4.375em;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec03__slide {
    margin-top: 5.3333333333vw;
  }
}
.p-sec03__slide .splide__arrow {
  width: 2.625em;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-sec03__slide .splide__arrow {
    width: 9.3333333333vw;
  }
}
.p-sec03__slide .splide__arrow--prev {
  right: -3em;
}
@media screen and (max-width: 767px) {
  .p-sec03__slide .splide__arrow--prev {
    right: 13.3333333333vw;
  }
}
.p-sec03__slide .splide__arrow--next {
  right: -6.25em;
}
@media screen and (max-width: 767px) {
  .p-sec03__slide .splide__arrow--next {
    right: 0;
  }
}

.p-sec03__slide-contents {
  position: relative;
}

.p-sec03__slide-wrap .splide__track {
  padding-bottom: 3.125em;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-sec03__slide-wrap .splide__track {
    padding-bottom: 10.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .p-sec03__item {
    width: 23.125em !important;
  }
}
.p-sec03__item .item-inner {
  position: relative;
}
.p-sec03__item .item-inner dt img {
  width: 100%;
  max-width: none;
}
.p-sec03__item .item-text {
  width: 15.625em;
  font-size: 112.5%;
  font-weight: 500;
  line-height: 1.5;
  position: absolute;
  top: 15em;
  left: 3.375em;
}
@media screen and (max-width: 767px) {
  .p-sec03__item .item-text {
    width: 66.6666666667vw;
    font-size: 4vw;
    top: 64vw;
    left: 14.4vw;
  }
}

/*========================================
  sec04-05
========================================*/
.p-sec04-05 {
  background: linear-gradient(90deg, #580000 0%, #a00009 52%, #4b0062 100%);
  padding-top: 1.875em;
  padding-bottom: 10.625em;
}
@media screen and (max-width: 767px) {
  .p-sec04-05 {
    padding-top: 3.2vw;
    padding-bottom: 18.6666666667vw;
  }
}

.p-sec04-05__inner {
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-sec04-05__text01 {
    width: 100%;
    height: 23.4666666667vw;
    position: relative;
    z-index: 1;
  }
}

.p-sec04-05__text02 {
  width: 54.625em;
  position: absolute;
  bottom: -12.5em;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__text02 {
    width: 85.3333333333vw;
    bottom: -20vw;
  }
}

.p-sec04-05__box {
  width: 30.75em;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__box {
    width: 88vw;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-sec04-05__box.box01 {
    margin-right: auto;
  }
}
.p-sec04-05__box.box01 .box-text02 {
  width: 15.875em;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__box.box01 .box-text02 {
    width: 84vw;
  }
}
@media screen and (min-width: 768px) {
  .p-sec04-05__box.box02 {
    margin-left: auto;
  }
}
.p-sec04-05__box.box02 .box-text02 {
  width: 14.375em;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__box.box02 .box-text02 {
    width: 85.3333333333vw;
  }
}
.p-sec04-05__box .box-text01,
.p-sec04-05__box .box-text02 {
  margin-left: 0.875em;
  font-size: 175%;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__box .box-text01,
  .p-sec04-05__box .box-text02 {
    margin-left: 1.3333333333vw;
    font-size: 4vw;
  }
}
.p-sec04-05__box .box-text01 {
  margin-bottom: 0.5625em;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__box .box-text01 {
    margin-bottom: 4vw;
  }
}
.p-sec04-05__box .box-text02 {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__box .box-text02 {
    margin-top: 4vw;
  }
}
.p-sec04-05__box .box-ttl {
  background: url(../img/sec04_05_ttl_bg.webp) no-repeat 0 0;
  background-size: cover;
  box-sizing: border-box;
  width: 30.75em;
  height: 6.1875em;
  padding-left: 2.25em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__box .box-ttl {
    width: 84.5333333333vw;
    height: 17.0666666667vw;
    padding-left: 6.6666666667vw;
  }
}
.p-sec04-05__box .box-ttl.ttl-pict img {
  width: 33em;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__box .box-ttl.ttl-pict img {
    width: 57.3333333333vw;
  }
}
.p-sec04-05__box .box-ttl.ttl-text span {
  font-size: 312.5%;
  font-weight: 600;
  color: var(--base);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__box .box-ttl.ttl-text span {
    font-size: 7.4666666667vw;
  }
}

.p-sec04-05__contents02 {
  margin-top: 3.125em;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__contents02 {
    margin-top: 4vw;
  }
}

@media screen and (min-width: 768px) {
  .p-sec04-05__list {
    display: grid;
    grid-template-columns: 21.6875em 21.6875em 18.25em;
  }
}
.p-sec04-05__list .list-item {
  height: 26.25em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sec04-05__list .list-item {
    width: 18.25em !important;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .p-sec04-05__list .list-item {
    width: 75.4666666667vw;
    height: 108.2666666667vw;
    margin: 0 auto;
  }
}
.p-sec04-05__list .list-item.sec04-item01::after, .p-sec04-05__list .list-item.sec04-item02::after, .p-sec04-05__list .list-item.sec05-item01::after, .p-sec04-05__list .list-item.sec05-item02::after {
  content: "";
  width: 3.9375em;
  height: 3.9375em;
  display: block;
  position: absolute;
  top: calc(50% + 0.625em);
  right: -3.625em;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__list .list-item.sec04-item01::after, .p-sec04-05__list .list-item.sec04-item02::after, .p-sec04-05__list .list-item.sec05-item01::after, .p-sec04-05__list .list-item.sec05-item02::after {
    display: none;
  }
}
.p-sec04-05__list .list-item.sec04-item01::after, .p-sec04-05__list .list-item.sec04-item02::after {
  background: url(../img/sec04_arrow.webp) no-repeat 0 0;
  background-size: contain;
}
.p-sec04-05__list .list-item.sec05-item01::after, .p-sec04-05__list .list-item.sec05-item02::after {
  background: url(../img/sec05_arrow.webp) no-repeat 0 0;
  background-size: contain;
}
.p-sec04-05__list .list-item.sec04-item01, .p-sec04-05__list .list-item.sec05-item01 {
  background: url(../img/sec04_05_list_bg01_pc.webp) no-repeat 0 0;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__list .list-item.sec04-item01, .p-sec04-05__list .list-item.sec05-item01 {
    background: url(../img/sec04_05_list_bg01_sp.webp) no-repeat 0 0;
    background-size: contain;
  }
}
.p-sec04-05__list .list-item.sec04-item02, .p-sec04-05__list .list-item.sec05-item02 {
  background: url(../img/sec04_05_list_bg02_pc.webp) no-repeat 0 0;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__list .list-item.sec04-item02, .p-sec04-05__list .list-item.sec05-item02 {
    background: url(../img/sec04_05_list_bg02_sp.webp) no-repeat 0 0;
    background-size: contain;
  }
}
.p-sec04-05__list .list-item.sec04-item03, .p-sec04-05__list .list-item.sec05-item03 {
  background: url(../img/sec04_05_list_bg03_pc.webp) no-repeat 0 0;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__list .list-item.sec04-item03, .p-sec04-05__list .list-item.sec05-item03 {
    background: url(../img/sec04_05_list_bg03_sp.webp) no-repeat 0 0;
    background-size: contain;
  }
}
.p-sec04-05__list .list-item dd {
  width: 11.5em;
  margin: 0.625em 0 0 2.5625em;
  font-size: 112.5%;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__list .list-item dd {
    width: 53.3333333333vw;
    margin: 2.6666666667vw auto 0;
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-sec04-05__list .list-head {
    padding: 4.3125em 1.5em 0;
  }
}
@media screen and (max-width: 767px) {
  .p-sec04-05__list .list-head {
    padding: 20.8vw 7.4666666667vw 0 7.2vw;
  }
}
.p-sec04-05__list .list-ttl {
  width: 15.0625em;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__list .list-ttl {
    width: 60.5333333333vw;
  }
}
.p-sec04-05__list .list-ttl img {
  width: 100%;
  max-width: none;
}

@media screen and (max-width: 767px) {
  .p-sec04-05__slide {
    overflow: hidden;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-sec04-05__slide .splide__arrow {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-sec04-05__slide .splide__arrow {
    width: 9.3333333333vw;
    position: absolute;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-sec04-05__slide .splide__arrow--prev {
    right: 13.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-sec04-05__slide .splide__arrow--next {
    right: 0;
  }
}

.p-sec04-05__slide-container {
  width: 61.625em;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-sec04-05__slide-container {
    width: calc(0.1333333333 * var(--base-width-sp) * 1vw);
  }
}

.p-sec04-05__slide-contents {
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-sec04-05__slide-wrap .splide__track {
    padding-bottom: 10.6666666667vw;
    overflow: visible;
  }
}
@media screen and (min-width: 768px) {
  .p-sec04-05__slide-wrap .splide__slide {
    margin-right: 0 !important;
  }
}

/*========================================
  sec04
========================================*/
.p-sec04 {
  background: linear-gradient(90deg, #580000 0%, #a00009 52%, #4b0062 100%);
  margin-top: -6.5625em;
  position: relative;
  overflow: hidden;
}
@media (width >= 1500px) {
  .p-sec04 {
    margin-top: -7.5em;
  }
}
@media (width >= 1900px) {
  .p-sec04 {
    margin-top: -8.75em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec04 {
    margin-top: -17.3333333333vw;
  }
}

.p-sec04__bg {
  background: url(../img/bg/bg_sec04.webp) no-repeat 50% 0;
  background-size: cover;
  padding-top: 10.625em;
  padding-bottom: 10.625em;
  position: relative;
  overflow: hidden;
}
@media (width >= 1600px) {
  .p-sec04__bg {
    padding-top: 11.25em;
    padding-bottom: 12.5em;
  }
}
@media (width >= 1900px) {
  .p-sec04__bg {
    padding-top: 13.125em;
  }
}
@media (width >= 2140px) {
  .p-sec04__bg {
    padding-bottom: 13.75em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec04__bg {
    padding-top: 44vw;
    padding-bottom: 13.3333333333vw;
  }
}
.p-sec04__bg::after {
  background: url(../img/pict_rider01.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 52.5em;
  height: 25.75em;
  display: block;
  position: absolute;
  top: 9.5em;
  right: calc(50% - 11.25em);
  translate: 50% 0;
}
@media (width >= 1900px) {
  .p-sec04__bg::after {
    top: 12.8125em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec04__bg::after {
    width: 77.3333333333vw;
    height: 37.8666666667vw;
    top: 26.6666666667vw;
    right: calc(50% - 24vw);
  }
}
.p-sec04__bg.js-show::after {
  opacity: 0;
  visibility: hidden;
  animation: a-sec04-01 0.4s ease 0.5s forwards;
}
@keyframes a-sec04-01 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(2.5em);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.p-sec04__contents01 {
  padding-left: 6.25em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec04__contents01 {
    padding-left: 0;
  }
}

/*========================================
  sec05
========================================*/
.p-sec05 {
  background: url(../img/bg/bg_sec05.webp) no-repeat 50% 0;
  background-size: cover;
  margin-top: -10em;
  padding-top: 9.375em;
  padding-bottom: 9.375em;
  position: relative;
  overflow: hidden;
}
@media (width >= 1400px) {
  .p-sec05 {
    padding-bottom: 11.875em;
  }
}
@media (width >= 1600px) {
  .p-sec05 {
    margin-top: -12.5em;
  }
}
@media (width >= 1830px) {
  .p-sec05 {
    padding-top: 11.5625em;
  }
}
@media (width >= 1900px) {
  .p-sec05 {
    padding-bottom: 13.125em;
  }
}
@media (width >= 2140px) {
  .p-sec05 {
    margin-top: -15em;
    padding-top: 12.8125em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec05 {
    margin-top: -16vw;
    padding-top: 34.6666666667vw;
    padding-bottom: 16vw;
  }
}
.p-sec05::before {
  background: url(../img/bg/bg_line.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 100%;
  height: 10.75vw;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-sec05::before {
    height: 34.4vw;
    top: 6.4vw;
  }
}
.p-sec05::after {
  background: url(../img/pict_rider02.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 56.875em;
  height: 23.75em;
  display: block;
  position: absolute;
  top: 12.8125em;
  left: calc(50% - 9.0625em);
  translate: -50% 0;
}
@media (width >= 1830px) {
  .p-sec05::after {
    top: 14.6875em;
  }
}
@media (width >= 2140px) {
  .p-sec05::after {
    top: 15.9375em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec05::after {
    width: 68.8vw;
    height: 28.6666666667vw;
    top: 17.3333333333vw;
    left: inherit;
    right: calc(50% - 36vw);
    translate: 50% 0;
  }
}
.p-sec05.js-show::after {
  opacity: 0;
  visibility: hidden;
  animation: a-sec05-01 0.4s ease 0.5s forwards;
}
@keyframes a-sec05-01 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-2.5em);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.p-sec05__contents01 {
  position: relative;
  z-index: 1;
}

.p-sec05__list {
  margin-top: 1em;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-sec05__list {
    margin-top: 4vw;
    justify-content: center;
  }
}
.p-sec05__list li {
  width: 7.5em;
}
@media screen and (max-width: 767px) {
  .p-sec05__list li {
    width: 20vw;
  }
}

/*========================================
  sec06
========================================*/
.p-sec06 {
  background: url(../img/bg/bg_sec06.webp) no-repeat 50% 0;
  background-size: cover;
  margin-top: -8.125em;
  padding-top: 11.25em;
  padding-bottom: 6.25em;
  position: relative;
}
@media (width >= 1400px) {
  .p-sec06 {
    margin-top: -11.25em;
    padding-top: 13.75em;
  }
}
@media (width >= 1900px) {
  .p-sec06 {
    margin-top: -14.6875em;
    padding-top: 16.25em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec06 {
    margin-top: -18.6666666667vw;
    padding-top: 26.6666666667vw;
    padding-bottom: 13.3333333333vw;
  }
}
.p-sec06::before {
  background: url(../img/bg/bg_line.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 100%;
  height: 10.75vw;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-sec06::before {
    height: 34.4vw;
    top: 3.4666666667vw;
  }
}

.p-sec06__ttl {
  margin-bottom: 5em;
  padding-top: 0.5em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec06__ttl {
    margin-bottom: 8vw;
    padding-top: 1.0666666667vw;
  }
}
.p-sec06__ttl::before {
  background: url(../img/sec06_ttl_bg.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 37.5em;
  height: 6.6875em;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-sec06__ttl::before {
    width: 74.1333333333vw;
    height: 13.0666666667vw;
  }
}
.p-sec06__ttl .ttl-inner {
  font-size: 325%;
  font-weight: 600;
  color: var(--base);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec06__ttl .ttl-inner {
    font-size: 6.1333333333vw;
  }
}

.p-sec06__faqttl {
  background: linear-gradient(90deg, #d9d9d9 0%, #bfbfbf 20%, #a2a2a2 100%) no-repeat 0 0;
  display: grid;
  grid-template-columns: 4.75em calc(100% - 5.8125em);
  gap: 0 1.0625em;
}
@media screen and (max-width: 767px) {
  .p-sec06__faqttl {
    grid-template-columns: 13.3333333333vw calc(100% - 30.6666666667vw);
    gap: 0 2.6666666667vw;
  }
}
.p-sec06__faqttl .ttl-icon {
  background: url(../img/bg/bg_acc_ttl.webp) no-repeat 0 0;
  background-size: 4.75em 100%;
  min-height: 3.875em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-sec06__faqttl .ttl-icon {
    background-size: 13.3333333333vw 100%;
    min-height: 14.4vw;
    padding-right: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-sec06__faqttl .ttl-icon img {
    width: 5.3333333333vw;
  }
}
.p-sec06__faqttl .ttl-text {
  font-size: 150%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-sec06__faqttl .ttl-text {
    font-size: 3.7333333333vw;
  }
}

.p-sec06__col {
  background: #EBEBEB;
  padding: 1.25em 2.5em 1.25em 1.25em !important;
  display: grid;
  grid-template-columns: 3.4375em calc(100% - 4.5em);
  gap: 0 1.0625em;
}
@media screen and (max-width: 767px) {
  .p-sec06__col {
    padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw 3.4666666667vw !important;
    grid-template-columns: 7.3333333333vw calc(100% - 10vw);
    gap: 0 2.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-sec06__col .col-icon img {
    width: 5.3333333333vw;
  }
}
.p-sec06__col .col-text {
  font-size: 150%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-sec06__col .col-text {
    font-size: 3.7333333333vw;
  }
}
.p-sec06__col .text-notes {
  margin-top: 0.625em;
  font-size: 75%;
}
@media screen and (max-width: 767px) {
  .p-sec06__col .text-notes {
    margin-top: 1.3333333333vw;
    font-size: 3.2vw;
  }
}

/*========================================
  sec07
========================================*/
.p-sec07 {
  background: url(../img/bg/bg_sec07.webp) no-repeat 50% 50%;
  background-size: cover;
  padding-top: 8.125em;
  padding-bottom: 1em;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-sec07 {
    background-size: 110% auto;
    padding-top: 8vw;
    padding-bottom: 1.3333333333vw;
  }
}

.p-sec07__inner {
  position: relative;
}

.p-sec07__text01 {
  width: 46.5625em;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-sec07__text01 {
    width: 66.6666666667vw;
  }
}

.p-sec07__text02 {
  width: 10.375em;
  position: absolute;
  top: 5em;
  right: calc(50% - 26.875em);
  translate: 50% 0;
}
@media screen and (max-width: 767px) {
  .p-sec07__text02 {
    width: 24vw;
    top: 0;
    right: 0;
  }
}

.p-sec07__text03 {
  width: 11.875em;
  margin: 9.375em 0 0 2.1875em;
}
@media screen and (max-width: 767px) {
  .p-sec07__text03 {
    width: 24vw;
    margin: 0;
    position: absolute;
    top: 30.6666666667vw;
    left: -8vw;
  }
}

/*========================================
  sec08
========================================*/
.p-sec08 {
  background: url(../img/bg/bg_sec08.webp) no-repeat 50% 0;
  background-size: cover;
  padding-top: 7.3125em;
  padding-bottom: 1.0625em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec08 {
    padding-top: 10.6666666667vw;
    padding-bottom: 4vw;
  }
}

.p-sec08__ttl01 {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 38%, rgb(255, 255, 255) 64%, rgba(255, 255, 255, 0) 100%) no-repeat 0 0;
  margin-bottom: 1.5625em;
  padding: 0.875em 10px;
}
@media screen and (max-width: 767px) {
  .p-sec08__ttl01 {
    margin-bottom: 6.6666666667vw;
    padding: 3.2vw 10px 2.6666666667vw;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-sec08__ttl01 img {
    width: 34.6666666667vw;
  }
}

.p-sec08__text01 {
  width: 44.5em;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-sec08__text01 {
    width: 100%;
    margin-bottom: 1.3333333333vw;
  }
}

.p-sec08__subttl {
  width: 25.1875em;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-sec08__subttl {
    width: 61.3333333333vw;
  }
}

.p-sec08__movie {
  width: 45.625em;
  margin: 1.5em auto 5.3125em;
}
@media screen and (max-width: 767px) {
  .p-sec08__movie {
    width: 100%;
    margin: 4vw auto 9.3333333333vw;
  }
}

.p-sec08__ttl02 {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 38%, rgb(255, 255, 255) 64%, rgba(255, 255, 255, 0) 100%) no-repeat 0 0;
  box-sizing: border-box;
  width: 51.375em;
  margin-inline: auto;
  padding: 0.75em 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-sec08__ttl02 {
    width: 90%;
    padding: 2.6666666667vw 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec08__ttl02 .ttl-en {
    width: 46.6666666667vw;
  }
}
.p-sec08__ttl02 .ttl-jp {
  font-size: 156.25%;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-sec08__ttl02 .ttl-jp {
    font-size: 5.3333333333vw;
  }
}

.p-sec08__wbtn {
  margin-top: 3.75em;
}
@media screen and (max-width: 767px) {
  .p-sec08__wbtn {
    margin-top: 5.3333333333vw;
  }
}
.p-sec08__wbtn a {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-sec08__wbtn a {
    margin: 0 0.9em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec08__wbtn a + a {
    margin-top: 1.3333333333vw;
  }
}

.p-sec08__btn {
  overflow: hidden;
  box-shadow: 2.5px 4.33px 10px 0px rgba(91, 91, 91, 0.54);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-sec08__btn {
    border-radius: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-sec08__btn img {
    width: 53.3333333333vw;
  }
}
.p-sec08__btn::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
}
@media (hover: hover) {
  .p-sec08__btn:hover::after {
    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
  }
}

@keyframes shiny {
  0% {
    left: -45%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.p-sec08__notes {
  width: 70em;
  margin: 3.75em auto 0;
  font-size: 75%;
  color: var(--base);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-sec08__notes {
    width: 100%;
    margin-top: 10.6666666667vw;
    font-size: 3.2vw;
  }
}

/*========================================
  sec link
========================================*/
.p-sec__link {
  background: linear-gradient(180deg, #DB0B18 0%, #67050B 100%);
  padding: 3px 10px 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec__link {
    padding: 0.4vw 10px 1.3333333333vw;
  }
}

/*========================================
  sec form
========================================*/
.p-sec__form {
  background-color: var(--base);
  background-image: linear-gradient(226deg, #aea9d1 0%, #fff 29%, #fff 78%, #bebfcc 100%);
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-top: 5.875em;
  padding-bottom: 8.75em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec__form {
    padding-top: 13.3333333333vw;
    padding-bottom: 10.6666666667vw;
  }
}

.p-sec__form-col {
  display: grid;
  grid-template-columns: 22em 31.9375em;
  gap: 0 5.375em;
}
@media screen and (max-width: 767px) {
  .p-sec__form-col {
    grid-template-columns: 1fr;
    gap: 9.3333333333vw 0;
  }
}

@media screen and (min-width: 768px) {
  .p-sec__form-contents01 {
    margin-bottom: 1.875em;
  }
}

.p-sec__form-text {
  font-size: 162.5%;
  font-weight: 500;
  color: var(--blue01);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-sec__form-text {
    margin-bottom: 6.6666666667vw;
    font-size: 5.0666666667vw;
    text-align: center;
  }
}

.p-sec__form-pict {
  margin-top: 1.4375em;
}
@media screen and (max-width: 767px) {
  .p-sec__form-pict {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-sec__form-pict img {
    width: 80%;
    max-width: none;
  }
}

.p-sec__form-box {
  margin-top: 3.375em;
}
@media screen and (max-width: 767px) {
  .p-sec__form-box {
    margin-top: 8vw;
  }
}
.p-sec__form-box dt {
  border: 2px solid var(--blue01);
  margin-bottom: 1.25em;
  font-size: 1.25em;
  font-weight: 500;
  color: var(--blue01);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec__form-box dt {
    margin-bottom: 6.6666666667vw;
    font-size: 4.8vw;
  }
}

.p-sec__form-check li {
  padding-left: 1.875em;
  font-size: 81.25%;
  color: var(--blue01);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec__form-check li {
    padding-left: 5.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.p-sec__form-check li:nth-child(n+2) {
  margin-top: 1.25em;
}
@media screen and (max-width: 767px) {
  .p-sec__form-check li:nth-child(n+2) {
    margin-top: 4vw;
  }
}
.p-sec__form-check li::before {
  border-bottom: 0.1875em solid var(--red02);
  border-left: 0.1875em solid var(--red02);
  height: 0.125em;
  content: "";
  width: 0.875em;
  height: 0.5em;
  display: block;
  position: absolute;
  left: 0;
  top: 0.5625em;
  rotate: -35deg;
}
@media screen and (max-width: 767px) {
  .p-sec__form-check li::before {
    width: 2.9333333333vw;
    height: 1.8666666667vw;
    top: 1.6vw;
  }
}

.p-sec__form-contents02 {
  background: var(--base);
  border: 2px solid var(--blue01);
  height: 62.5em;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-sec__form-contents02 {
    height: 293.3333333333vw;
  }
}

.p-sec__form-inc-ttl {
  background: linear-gradient(83deg, #001c77 0%, #002bb9 100%) no-repeat 0 0;
  font-size: 1.6875em;
  color: var(--base);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec__form-inc-ttl {
    padding: 5px;
    font-size: 4.8vw;
  }
}

.p-sec__form-inc {
  height: 60em;
  padding: 0.625em 2.5em 1.25em;
}
@media screen and (max-width: 767px) {
  .p-sec__form-inc {
    height: 280vw;
    padding: 1.3333333333vw 1.3333333333vw 4vw 4vw;
  }
}
.p-sec__form-inc iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/*========================================
  movie
========================================*/
.p-movie__bg {
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
.p-movie__bg iframe {
  width: 177.77777778vh;
  min-width: 100%;
  max-width: none;
  height: 56.25vw;
  min-height: 100%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -2;
}

.p-movie__embed {
  width: 45.625em;
  aspect-ratio: 16/9;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-movie__embed {
    width: 100%;
  }
}
.p-movie__embed iframe {
  width: 100%;
  max-width: none;
  height: 100%;
}

summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

.p-acc__wrap[open] .p-acc__btn::before {
  rotate: 0deg;
}
.p-acc__wrap:nth-child(n+2) {
  margin-top: 1.6875em;
}
@media screen and (max-width: 767px) {
  .p-acc__wrap:nth-child(n+2) {
    margin-top: 4vw;
  }
}

.p-acc__btn {
  position: relative;
}
.p-acc__btn::before, .p-acc__btn::after {
  background: var(--main);
  content: "";
  width: 0.75em;
  height: 0.125em;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.375em;
  translate: 0 -50%;
  transition: 0.3s;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-acc__btn::before, .p-acc__btn::after {
    width: 2.6666666667vw;
    height: 0.5333333333vw;
    right: 3.7333333333vw;
  }
}
.p-acc__btn::before {
  rotate: 90deg;
}
.p-acc__btn .btn-inner::after {
  background: var(--base);
  border-radius: 50%;
  content: "";
  width: 1.4375em;
  height: 1.4375em;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.0625em;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .p-acc__btn .btn-inner::after {
    width: 4.8vw;
    height: 4.8vw;
    right: 2.6666666667vw;
  }
}

/*========================================
  アニメーション
========================================*/
.p-anime-hero02 {
  opacity: 0;
  visibility: hidden;
  animation: a-hero02 0.4s ease 1s forwards;
}
@keyframes a-hero02 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3.125em);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.p-anime-hero03,
.p-anime-hero04 {
  opacity: 0;
  visibility: hidden;
  animation: a-hero03 0.4s ease forwards;
}
@keyframes a-hero03 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6.25em);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.p-anime-hero03 {
  animation-delay: 1.3s;
}

.p-anime-hero04 {
  animation-delay: 1.6s;
}

.p-anime-hero05 {
  opacity: 0;
  visibility: hidden;
  animation: a-hero05 0.4s ease 1.9s forwards;
}
@keyframes a-hero05 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(3.125em);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.p-anime__fadein-right {
  opacity: 0;
  visibility: hidden;
}
.p-anime__fadein-right.js-show {
  animation: a-fadein-right 0.4s ease 0.5s forwards;
}
@keyframes a-fadein-right {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-2.5em);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.p-anime__scale-up {
  opacity: 0;
  visibility: hidden;
}
.p-anime__scale-up.js-show {
  animation: a-scale-up 0.4s ease 0.5s forwards;
}
@keyframes a-scale-up {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}

.p-anime__slide-left.js-show {
  animation: a-slide-left 1.4s ease 0.5s forwards;
}
@keyframes a-slide-left {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-9.375em);
  }
  100% {
    transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .p-anime__slide-left-sp.js-show {
    animation: a-slide-left-sp 1.4s ease 0.5s forwards;
  }
  @keyframes a-slide-left-sp {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-26.6666666667vw);
    }
    100% {
      transform: translateX(0);
    }
  }
}

/*========================================
 * hidden
 *
 * クラス : u-hidden-{MQ}
========================================*/
@media screen and (max-width: 767px) {
  .u-hidden-ltSP {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .u-hidden-ltTAB {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-gtTAB {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .u-hidden-gtPC {
    display: none;
  }
}

/*========================================
 * padding
========================================*/
@media screen and (max-width: 1200px) and (min-width: 767px) {
  .u-PC-pad {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media screen and (max-width: 767px) {
  .u-SP-pad {
    padding-right: var(--sp-pad);
    padding-left: var(--sp-pad);
  }
}
/*========================================
 * スクリーンリーダーテキスト
========================================*/
.screen-reader-text,
.u-screen-reader {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/*========================================
 * text-align
========================================*/
.u-ta-left {
  text-align: left;
}
.u-ta-center {
  text-align: center;
}
.u-ta-right {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .u-SP-ta-left {
    text-align: left;
  }
  .u-SP-ta-center {
    text-align: center;
  }
  .u-SP-ta-right {
    text-align: right;
  }
}
.u-br {
  display: block;
}

@media screen and (min-width: 768px) {
  .u-br-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .u-br-sp {
    display: block;
  }
}

.u-text-upper {
  text-transform: uppercase;
}