@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--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: url(../img/bg/bg_hero.webp) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}

.p-hero__inner {
  max-width: 1200px;
  width: 100%;
  height: 762px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-hero__inner {
    aspect-ratio: 1/1;
    height: auto;
  }
}

.p-hero__copy {
  width: 7.874015748%;
  position: absolute;
  top: 2.3125em;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-hero__copy {
    width: 8vw;
    top: 4vw;
    left: calc(50% - 1.3333333333vw);
  }
}

.p-hero__pict {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  text-align: center;
}

.p-hero__ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  position: absolute;
  top: 54.3307086614%;
  right: 0;
}
@media (width >= 1201px) {
  .p-hero__ttl {
    top: 414px;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__ttl {
    top: 60.8vw;
  }
}
.p-hero__ttl .ttl-01 {
  width: 34.6666666667vw;
  max-width: 416px;
}
@media screen and (max-width: 767px) {
  .p-hero__ttl .ttl-01 {
    width: 44.2666666667vw;
  }
}
.p-hero__ttl .ttl-02 {
  width: 52.5vw;
  max-width: 630px;
}
@media screen and (max-width: 767px) {
  .p-hero__ttl .ttl-02 {
    width: 66.4vw;
  }
}

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

/*========================================
  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-marker.marker-bottom-red {
  background: linear-gradient(#d90f1b, #d90f1b) no-repeat 0 100%;
  background-size: 0 0.625em;
  padding-bottom: 0.9375em;
  transition: background-size 0.5s ease-out;
}
@media screen and (max-width: 767px) {
  .p-text-marker.marker-bottom-red {
    background-size: 0 1.0666666667vw;
    padding-bottom: 1.3333333333vw;
  }
}
.p-text-marker.marker-bottom-red.js-show {
  background-size: 100% 0.625em;
}
@media screen and (max-width: 767px) {
  .p-text-marker.marker-bottom-red.js-show {
    background-size: 100% 1.0666666667vw;
  }
}
.p-text-marker.marker-yellow01 {
  background: linear-gradient(#ffeb00, #ffeb00) no-repeat 0 100%;
  background-size: 0 0.625em;
  padding-bottom: 0.0625em;
  transition: background-size 0.8s ease-out;
}
@media screen and (max-width: 767px) {
  .p-text-marker.marker-yellow01 {
    background-size: 0 2.6666666667vw;
    padding-bottom: 0.2666666667vw;
  }
}
.p-text-marker.marker-yellow01.js-show {
  background-size: 100% 0.625em;
}
@media screen and (max-width: 767px) {
  .p-text-marker.marker-yellow01.js-show {
    background-size: 100% 2.6666666667vw;
  }
}
.p-text-marker.marker-yellow02 {
  background: linear-gradient(90deg, rgb(255, 235, 0) 0%, rgb(255, 235, 0) 60%, rgba(255, 235, 0, 0) 100%) no-repeat 0 bottom;
  background-size: 0 0.125em;
  padding-bottom: 0.125em;
  transition: background-size 0.5s ease-out;
}
@media screen and (max-width: 767px) {
  .p-text-marker.marker-yellow02 {
    background-size: 0 0.8vw;
    padding-bottom: 0.5333333333vw;
  }
}
.p-text-marker.marker-yellow02.js-show {
  background-size: 100% 0.125em;
}
@media screen and (max-width: 767px) {
  .p-text-marker.marker-yellow02.js-show {
    background-size: 100% 0.8vw;
  }
}

/*========================================
  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 span {
  position: absolute;
  top: 730px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-hero .p-copy span {
    top: 92.8vw;
  }
}

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

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

.p-sec04 .p-copy {
  margin-top: 1.0625em;
}
@media screen and (max-width: 767px) {
  .p-sec04 .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;
  }
}

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

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

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

.p-sec01__ttl {
  color: var(--base);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-sec01__ttl {
    width: calc(100% + 8.6666666667vw);
    margin-left: -4.2666666667vw;
    line-height: 1.5;
  }
}
.p-sec01__ttl .ttl-small {
  font-size: 262.5%;
}
@media screen and (max-width: 767px) {
  .p-sec01__ttl .ttl-small {
    font-size: 4.2666666667vw;
  }
}
.p-sec01__ttl .ttl-large {
  font-size: 350%;
}
@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 {
    font-size: 3.7333333333vw;
  }
}

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

.p-sec01__txt02 {
  margin-top: 1.25em;
  color: var(--base);
  line-height: 1.4;
}
.p-sec01__txt02 .ttl-small {
  font-size: 200%;
}
@media screen and (max-width: 767px) {
  .p-sec01__txt02 .ttl-small {
    font-size: 4.2666666667vw;
  }
}
.p-sec01__txt02 .ttl-large {
  font-size: 287.5%;
}
@media screen and (max-width: 767px) {
  .p-sec01__txt02 .ttl-large {
    font-size: 6.1333333333vw;
  }
}

/*========================================
  sec02
========================================*/
.p-sec02 {
  background: url(../img/bg/bg_sec02.webp) no-repeat 50% 100%;
  background-size: cover;
  padding-top: 5.5em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec02 {
    padding-top: 13.3333333333vw;
  }
}

.p-sec02__inner {
  padding-bottom: 11.0625em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec02__inner {
    padding-bottom: 14.6666666667vw;
  }
}

.p-sec02__ttl {
  background: url(../img/sec02_ttl_bg.webp) no-repeat 0 0;
  background-size: 100% auto;
  box-sizing: border-box;
  padding: 0.375em 10px 1.1875em;
  font-size: 212.5%;
  font-weight: 600;
  color: var(--base);
  text-align: center;
}
@media (width >= 1201px) {
  .p-sec02__ttl {
    height: 105px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec02__ttl {
    background-size: 100% 100%;
    width: 88vw;
    height: 16vw;
    font-size: 5.0666666667vw;
  }
}

.p-sec02__contents01 {
  width: 57.125em;
  margin-top: -1.5em;
  margin-inline: auto;
  padding-bottom: calc(3.3125em - 4px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec02__contents01 {
    width: 83.4666666667vw;
    margin-top: -3.7333333333vw;
  }
}
.p-sec02__contents01::after {
  background: url(../img/sec02_contents_bottom.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 100%;
  height: 3.375em;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-sec02__contents01::after {
    height: 12.5333333333vw;
  }
}

.p-sec02__list {
  background: var(--base);
  padding: 0.8125em 1.0625em 0;
  font-size: 150%;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec02__list {
    padding: 1.3333333333vw 2.6666666667vw 0;
    font-size: 3.7333333333vw;
  }
}
.p-sec02__list::after {
  background: url(../img/pict_shocker01.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 9.0625em;
  height: 13.875em;
  display: block;
  position: absolute;
  bottom: 0.625em;
  right: 1.0625em;
  transform: rotate(20deg);
}
@media screen and (max-width: 767px) {
  .p-sec02__list::after {
    width: 22.6666666667vw;
    height: 34.6666666667vw;
    bottom: -6.1333333333vw;
    right: -10.6666666667vw;
    z-index: 2;
  }
}
.p-sec02__list.js-show::after {
  animation: a-fade-after 0.6s ease 0.5s forwards;
}
@keyframes a-fade-after {
  0% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0);
  }
}
.p-sec02__list li {
  padding: 0.3125em 9.125em 0.3125em 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0 0.9375em;
}
@media screen and (max-width: 767px) {
  .p-sec02__list li {
    padding: 2.4vw 8vw 2.4vw 0;
    gap: 0 2.6666666667vw;
  }
}
.p-sec02__list li:not(:last-child) {
  border-bottom: 2px dotted #707070;
}
.p-sec02__list li::before {
  background: url(../img/icon/icon_check01.svg) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 2em;
  height: 2.125em;
  margin-bottom: 0.3125em;
}
@media screen and (max-width: 767px) {
  .p-sec02__list li::before {
    width: 4vw;
    height: 4.2666666667vw;
    margin-bottom: 0.6666666667vw;
  }
}
.p-sec02__list li span {
  width: calc(100% - 2.9375em);
}
@media screen and (max-width: 767px) {
  .p-sec02__list li span {
    width: calc(100% - 6.6666666667vw);
  }
}

.p-sec02__contents02 {
  position: relative;
}

.p-sec02__next {
  background: url(../img/sec_02_03_arrow.webp) no-repeat 0 0;
  background-size: contain;
  box-sizing: border-box;
  width: 12.125em;
  height: 4.4375em;
  padding-bottom: 0.625em;
  font-size: 243.75%;
  color: var(--base);
  text-align: center;
  display: grid;
  place-items: center;
  position: absolute;
  bottom: -4.4375em;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
@media (width >= 1201px) {
  .p-sec02__next {
    bottom: -174px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec02__next {
    background-size: 100% 100%;
    width: 57.3333333333vw;
    height: 21.3333333333vw;
    padding-bottom: 3.4666666667vw;
    font-size: 4.8vw;
    bottom: -13.7333333333vw;
  }
}

/*========================================
  sec03
========================================*/
.p-sec03 {
  background: url(../img/bg/bg_sec03.webp) no-repeat 50% 0;
  background-size: cover;
  margin-top: -20em;
  padding-top: 21.875em;
  padding-bottom: 1.0625em;
}
@media screen and (max-width: 767px) {
  .p-sec03 {
    background-size: auto 100%;
    margin-top: -13.3333333333vw;
    padding-top: 17.3333333333vw;
    padding-bottom: 4vw;
  }
}

.p-sec03__ttl {
  margin-bottom: 0.9375em;
  padding-bottom: 1.375em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec03__ttl {
    margin-bottom: 2.6666666667vw;
    padding-bottom: 2.6666666667vw;
  }
}
.p-sec03__ttl::before {
  background: url(../img/sec03_ttl_bg.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 51.375em;
  height: 4.125em;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-sec03__ttl::before {
    width: 80vw;
    height: 8vw;
  }
}
.p-sec03__ttl .ttl-inner {
  font-size: 356.25%;
  font-weight: 900;
  color: var(--red02);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec03__ttl .ttl-inner {
    font-size: 6.6666666667vw;
  }
}

.p-sec03__text {
  font-size: 175%;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-sec03__text {
    font-size: 4vw;
  }
}

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

/*========================================
  sec04
========================================*/
.p-sec04 {
  padding-top: 2.75em;
  padding-bottom: 1.0625em;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-sec04 {
    padding-top: 13.3333333333vw;
    padding-bottom: 4vw;
  }
}
.p-sec04::before {
  background: url(../img/bg/bg_dotted_white.png) repeat 0 0;
  background-size: 18px 18px;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
@media screen and (max-width: 767px) {
  .p-sec04::before {
    background-size: 14px 14px;
  }
}

.p-sec04__ttl {
  margin-bottom: 2.1875em;
  font-weight: 700;
  color: var(--red02);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec04__ttl {
    margin-bottom: 6.6666666667vw;
  }
}
.p-sec04__ttl .ttl-inner {
  text-shadow: 0 0 13px rgb(255, 255, 255), 0 0 13px rgb(255, 255, 255), 0 0 13px rgb(255, 255, 255), 0 0 13px rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .p-sec04__ttl .ttl-inner {
    text-shadow: 1px 1px 6px rgb(255, 255, 255), -1px -1px 6px rgb(255, 255, 255), 1px 1px 6px rgb(255, 255, 255), -1px -1px 6px rgb(255, 255, 255);
  }
}
.p-sec04__ttl .ttl-small {
  font-size: 375%;
}
@media screen and (max-width: 767px) {
  .p-sec04__ttl .ttl-small {
    font-size: 6.6666666667vw;
  }
}
.p-sec04__ttl .ttl-large {
  font-size: 562.5%;
}
@media screen and (max-width: 767px) {
  .p-sec04__ttl .ttl-large {
    font-size: 9.0666666667vw;
  }
}

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

.p-sec04__contents01 {
  background: url(../img/sec04_cont01_bg_pc.webp) no-repeat 50% 0;
  background-size: 53.1875em 100%;
  width: 56.125em;
  margin-left: 1.5625em;
  padding: 2.6875em 0 1.125em;
}
@media screen and (max-width: 767px) {
  .p-sec04__contents01 {
    background: url(../img/sec04_cont01_bg_sp.webp) no-repeat 50% 0;
    background-size: calc(100% - 5.3333333333vw) 100%;
    width: 100%;
    margin-left: 0;
    padding: 5.3333333333vw 0 3.7333333333vw;
    width: 85.3333333333vw;
    margin-inline: auto;
  }
}
.p-sec04__contents01 dt {
  width: 40.125em;
}
@media screen and (max-width: 767px) {
  .p-sec04__contents01 dt {
    width: 80%;
  }
}
.p-sec04__contents01 dd {
  padding: 0.3125em 8.75em 1.625em 6.875em;
  font-size: 112.5%;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-sec04__contents01 dd {
    padding: 1.3333333333vw 8vw 3.4666666667vw;
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-sec04__contents01 dd:nth-of-type(n + 2) {
    padding-right: 13.3333333333vw;
  }
}

.p-sec04__contents02 {
  margin-left: 0.75em;
}
@media screen and (max-width: 767px) {
  .p-sec04__contents02 {
    margin-left: 0;
  }
}
.p-sec04__contents02 .contents02-inner {
  width: 54.6875em;
}
@media screen and (max-width: 767px) {
  .p-sec04__contents02 .contents02-inner {
    width: 85.3333333333vw;
  }
}
.p-sec04__contents02 .contents02-inner picture {
  width: 100%;
}

.p-sec04__inner02-wrap {
  margin-top: 3.5em;
  padding-bottom: 5.8125em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec04__inner02-wrap {
    margin-top: 10.6666666667vw;
    padding-bottom: 5.3333333333vw;
  }
}

.p-sec04__slide {
  overflow: hidden;
  position: relative;
}
.p-sec04__slide .splide__arrow {
  width: 4.875em;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .p-sec04__slide .splide__arrow {
    width: 9.3333333333vw;
  }
}
.p-sec04__slide .splide__arrow[disabled] {
  display: none;
}
.p-sec04__slide .splide__arrow--prev {
  left: calc(50% - 32.5em);
}
@media screen and (max-width: 767px) {
  .p-sec04__slide .splide__arrow--prev {
    left: -5.3333333333vw;
  }
}
.p-sec04__slide .splide__arrow--next {
  right: calc(50% - 31.875em);
}
@media screen and (max-width: 767px) {
  .p-sec04__slide .splide__arrow--next {
    right: -5.3333333333vw;
  }
}

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

.p-sec04__slide-wrap .splide__track {
  overflow: visible;
}

.p-sec04__pict01 {
  width: 13.6875em;
  position: absolute;
  bottom: -3.8125em;
  right: calc(50% - 27.375em);
  translate: 50% 0;
}
@media screen and (max-width: 767px) {
  .p-sec04__pict01 {
    width: 20.8vw;
    bottom: -6.1333333333vw;
    right: calc(50% - 38.6666666667vw);
  }
}

.p-sec04__pict02 {
  width: 14.875em;
  position: absolute;
  bottom: -1.75em;
  left: calc(50% - 27.375em);
  translate: -50% 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec04__pict02 {
    width: 22.6666666667vw;
    bottom: -2.1333333333vw;
    left: calc(50% - 38.9333333333vw);
  }
}

/*========================================
  sec05
========================================*/
.p-sec05 {
  background: url(../img/bg/bg_sec05.webp) no-repeat 50% 50%;
  background-size: cover;
  padding-top: 88px;
  padding-bottom: 7.625em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec05 {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
}
.p-sec05::before {
  background: url(../img/sec_04_05_arrow.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 15.3125em;
  height: 10.6875em;
  display: block;
  position: absolute;
  top: -7.1875em;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-sec05::before {
    width: 34.6666666667vw;
    height: 23.4666666667vw;
    top: -13.3333333333vw;
  }
}

.p-sec05__inner {
  padding-bottom: 4.375em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec05__inner {
    padding-bottom: 6.6666666667vw;
  }
}
.p-sec05__inner::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 36%, rgb(255, 255, 255) 72%, rgba(255, 255, 255, 0) 100%) no-repeat 0 0;
  content: "";
  width: 100%;
  height: calc(100% - 6.25em);
  display: block;
  position: absolute;
  top: 6.25em;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-sec05__inner::after {
    height: 9.3333333333vw;
    height: calc(100% - 16vw);
    top: 16vw;
  }
}

.p-sec05__text01 {
  background: var(--yellow01);
  width: 32.75em;
  margin-inline: auto;
  padding: 0.625em 10px 0.9375em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec05__text01 {
    width: 56vw;
    padding: 2.1333333333vw 5px 2.6666666667vw;
  }
}
.p-sec05__text01::after {
  border-top: 1.375em solid var(--yellow01);
  border-left: 1.125em solid transparent;
  border-right: 1.125em solid transparent;
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  bottom: -1.1875em;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-sec05__text01::after {
    border-top-width: 4vw;
    border-left-width: 3.2vw;
    border-right-width: 3.2vw;
    bottom: -3.7333333333vw;
  }
}
.p-sec05__text01 .text01-box {
  font-size: 212.5%;
  font-weight: 600;
  line-height: 1.4;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-sec05__text01 .text01-box {
    font-size: 4vw;
  }
}

.p-sec05__text02 {
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec05__text02 {
    margin-top: 1.3333333333vw;
    line-height: 1.5;
  }
}
.p-sec05__text02 .text-small {
  font-size: 281.25%;
}
@media screen and (max-width: 767px) {
  .p-sec05__text02 .text-small {
    font-size: 4.5333333333vw;
  }
}
.p-sec05__text02 .text-large {
  font-size: 450%;
}
@media screen and (max-width: 767px) {
  .p-sec05__text02 .text-large {
    font-size: 7.7333333333vw;
  }
}

.p-sec05__text03 {
  margin-top: 1.875em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec05__text03 {
    margin-top: 4vw;
  }
}
.p-sec05__text03 .text-small {
  font-size: 187.5%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-sec05__text03 .text-small {
    font-size: 4vw;
  }
}
.p-sec05__text03 .text-large {
  font-size: 281.25%;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-sec05__text03 .text-large {
    font-size: 4.5333333333vw;
  }
}

.p-sec05__graph {
  margin-top: 1.5625em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec05__graph {
    margin-top: 5.3333333333vw;
  }
}

/*========================================
  sec06
========================================*/
.p-sec06 {
  background: url(../img/bg/bg_sec06.webp) no-repeat 50% 50%;
  background-size: cover;
  padding-top: 5.75em;
  padding-bottom: 13.75em;
  position: relative;
}
@media (width >= 1810px) {
  .p-sec06 {
    padding-bottom: 16.25em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec06 {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
}

.p-sec06__ttl-wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto 3.75em;
}
@media screen and (max-width: 767px) {
  .p-sec06__ttl-wrap {
    width: 100%;
    margin-bottom: 9.3333333333vw;
  }
}

.p-sec06__ttl {
  background: url(../img/sec06_ttl_bg_pc.webp) no-repeat 0 0;
  background-size: contain;
  box-shadow: 5px 5px 6px 0 rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
  width: 69.5em;
  height: 17.6875em;
  margin: 0 0 0 auto;
  padding-right: 28.5625em;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-sec06__ttl {
    background: url(../img/sec06_ttl_bg_sp.webp) no-repeat 0 0;
    background-size: contain;
    width: 95.7333333333vw;
    height: 32.2666666667vw;
    margin: 0 0 0 auto;
    padding: 0 30.4vw 1.0666666667vw 0;
  }
}
.p-sec06__ttl .ttl-inner {
  font-size: 293.75%;
  font-weight: 500;
  color: var(--base);
}
@media screen and (max-width: 767px) {
  .p-sec06__ttl .ttl-inner {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-sec06__ttl .ttl-large {
    font-size: 6.6666666667vw;
  }
}

.p-sec06__slide {
  overflow: hidden;
  position: relative;
}

.p-sec06__slide-container {
  width: 54.375em;
  margin-inline: auto;
  padding-left: 1.0625em;
}
@media screen and (max-width: 767px) {
  .p-sec06__slide-container {
    width: 88vw;
    padding-left: 0;
  }
}

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

.p-sec06__slide-wrap .splide__track {
  overflow: visible;
}
.p-sec06__slide-wrap .splide__pagination {
  margin-top: 3.125em;
  display: flex;
  justify-content: center;
  gap: 0 1.1875em;
}
@media screen and (max-width: 767px) {
  .p-sec06__slide-wrap .splide__pagination {
    margin-top: 2.6666666667vw;
    gap: 0 2.6666666667vw;
  }
}
.p-sec06__slide-wrap .splide__pagination__page {
  background: var(--base);
  border: 1px solid #707070;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 767px) {
  .p-sec06__slide-wrap .splide__pagination__page {
    width: 12px;
    height: 12px;
  }
}
.p-sec06__slide-wrap .splide__pagination__page.is-active {
  background: var(--red01);
}

.p-sec06__item .item-inner {
  width: 50.125em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sec06__item .item-inner {
    width: 100%;
  }
}
.p-sec06__item .item-inner::after {
  background: url(../img/sec06-slide-bg-shadow_pc.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 100%;
  height: 18.9375em;
  display: block;
  position: absolute;
  top: 1em;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-sec06__item .item-inner::after {
    background: url(../img/sec06-slide-bg-shadow_sp.webp) no-repeat 0 0;
    background-size: contain;
    width: 100%;
    height: 49.8666666667vw;
    top: 1.8666666667vw;
  }
}
.p-sec06__item .item-inner h3 {
  width: 46.75em;
  padding-left: 2.625em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec06__item .item-inner h3 {
    width: 86.6666666667vw;
    padding-left: 0;
  }
}
.p-sec06__item .p-sec06__box {
  height: 10.5em;
  padding: 1.875em 2.625em 1.875em 6.875em;
  font-size: 131.25%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec06__item .p-sec06__box {
    height: 41.3333333333vw;
    padding: 6.6666666667vw 5.3333333333vw 6.6666666667vw 17.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.p-sec06__item .p-sec06__box::before {
  content: "";
  width: 6.25em;
  height: 6.25em;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-sec06__item .p-sec06__box::before {
    translate: 0 -50%;
  }
}
@media screen and (max-width: 767px) {
  .p-sec06__item .p-sec06__box::before {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    top: 4.8vw;
    left: 1.8666666667vw;
  }
}
.p-sec06__item .p-sec06__box.box01::before {
  background: url(../img/sec06_slide01_icon.webp) no-repeat 0 0;
  background-size: contain;
}
.p-sec06__item .p-sec06__box.box02::before {
  background: url(../img/sec06_slide02_icon.webp) no-repeat 0 0;
  background-size: contain;
}
.p-sec06__item .p-sec06__box.box03::before {
  background: url(../img/sec06_slide03_icon.webp) no-repeat 0 0;
  background-size: contain;
}
.p-sec06__item .p-sec06__box.box04::before {
  background: url(../img/sec06_slide04_icon.webp) no-repeat 0 0;
  background-size: contain;
}

/*========================================
  sec07
========================================*/
.p-sec07 {
  margin-top: -11.875em;
  position: relative;
}
@media (width >= 1810px) {
  .p-sec07 {
    margin-top: -17.5em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec07 {
    margin-top: -14.6666666667vw;
  }
}
.p-sec07::before {
  background: url(../img/pict_shocker02.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 18.8125em;
  height: 36.625em;
  display: block;
  position: absolute;
  top: 10.625em;
  left: calc(50% - 21.125em);
  translate: -50% 0;
}
@media (width >= 1810px) {
  .p-sec07::before {
    top: 8.75em;
  }
}
@media screen and (max-width: 767px) {
  .p-sec07::before {
    width: 34.6666666667vw;
    height: 67.4666666667vw;
    left: calc(50% - 33.8666666667vw);
    top: 18.6666666667vw;
  }
}
.p-sec07.js-show::before {
  animation: a-slide-before 0.6s ease 0.5s forwards;
}
@keyframes a-slide-before {
  0% {
    top: 10.625em;
  }
  100% {
    top: -11.25em;
  }
}
@media (width >= 1810px) {
  @keyframes a-slide-before {
    0% {
      top: 18.6666666667vw;
    }
    100% {
      top: -8.125em;
    }
  }
}
@media screen and (max-width: 767px) {
  @keyframes a-slide-before {
    0% {
      top: 10.625em;
    }
    100% {
      top: -14.6666666667vw;
    }
  }
}

.p-sec07__bg {
  background: url(../img/bg/bg_sec07.webp) no-repeat 50% 0;
  background-size: cover;
  padding-top: 10.25em;
  padding-bottom: 3.75em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-sec07__bg {
    padding-top: 17.3333333333vw;
    padding-bottom: 10.6666666667vw;
  }
}

.p-sec07__ttl-en {
  margin-bottom: 1.0625em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sec07__ttl-en {
    width: 14.6666666667vw;
    margin: 0 auto 0.5333333333vw;
  }
}

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

.p-sec07__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-sec07__faqttl {
    grid-template-columns: 13.3333333333vw calc(100% - 30.6666666667vw);
    gap: 0 2.6666666667vw;
  }
}
.p-sec07__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-sec07__faqttl .ttl-icon {
    background-size: 13.3333333333vw 100%;
    min-height: 14.4vw;
    padding-right: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-sec07__faqttl .ttl-icon img {
    width: 5.3333333333vw;
  }
}
.p-sec07__faqttl .ttl-text {
  font-size: 150%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-sec07__faqttl .ttl-text {
    font-size: 3.7333333333vw;
  }
}

.p-sec07__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-sec07__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-sec07__col .col-icon img {
    width: 5.3333333333vw;
  }
}
.p-sec07__col .col-text {
  font-size: 150%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-sec07__col .col-text {
    font-size: 3.7333333333vw;
  }
}
.p-sec07__col .text-notes {
  margin-top: 0.625em;
  font-size: 75%;
}
@media screen and (max-width: 767px) {
  .p-sec07__col .text-notes {
    margin-top: 1.3333333333vw;
    font-size: 3.2vw;
  }
}

/*========================================
  sec08
========================================*/
.p-sec08 {
  background: var(--main);
  padding-top: 1.25em;
  padding-bottom: 1.5625em;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-sec08 {
    padding-top: 8vw;
    padding-bottom: 4vw;
  }
}

.p-sec08__inner {
  position: relative;
}

.p-sec08__text01 {
  width: 32.625em;
  position: absolute;
  top: 1.25em;
  right: -7.375em;
}
@media screen and (max-width: 767px) {
  .p-sec08__text01 {
    width: 42.6666666667vw;
    top: 4.2666666667vw;
    right: -4vw;
  }
}

.p-sec08__text02 {
  width: 50.375em;
  margin: -5.25em auto 0;
}
@media screen and (max-width: 767px) {
  .p-sec08__text02 {
    width: 80vw;
    margin-top: -8vw;
  }
}

/*========================================
  sec09
========================================*/
.p-sec09 {
  background: url(../img/bg/bg_sec09.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-sec09 {
    padding-top: 10.6666666667vw;
    padding-bottom: 4vw;
  }
}

.p-sec09__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-sec09__ttl01 {
    margin-bottom: 6.6666666667vw;
    padding: 3.2vw 10px 2.6666666667vw;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-sec09__ttl01 img {
    width: 34.6666666667vw;
  }
}

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

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

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

.p-sec09__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-sec09__ttl02 {
    width: 90%;
    padding: 2.6666666667vw 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-sec09__ttl02 .ttl-en {
    width: 46.6666666667vw;
  }
}
.p-sec09__ttl02 .ttl-jp {
  font-size: 156.25%;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-sec09__ttl02 .ttl-jp {
    font-size: 5.3333333333vw;
  }
}

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

.p-sec09__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-sec09__btn {
    border-radius: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-sec09__btn img {
    width: 53.3333333333vw;
  }
}
.p-sec09__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-sec09__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%;
  }
}
/*========================================
  sec link
========================================*/
.p-sec__link {
  background: var(--base);
  padding: 0.1875em 10px 0.625em;
  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::after {
  background: url(../img/sec_form_pict02.webp) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 16.8125em;
  height: 21.75em;
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 17.125em);
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-sec__form::after {
    width: 30.4vw;
    height: 39.4666666667vw;
    left: calc(50% - 30.4vw);
  }
}

.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-hero01 {
  opacity: 0;
  visibility: hidden;
  animation: a-hero01 0.4s ease 0.3s forwards;
}
@keyframes a-hero01 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3.125em);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.p-anime-hero02 {
  opacity: 0;
  visibility: hidden;
  animation: a-hero02 0.4s ease 0.8s forwards;
}
@keyframes a-hero02 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}

.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__fadein-up {
  opacity: 0;
  visibility: hidden;
}
.p-anime__fadein-up.js-show {
  animation: a-fadein 0.4s ease 0.5s forwards;
}
@keyframes a-fadein {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(2.5em);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.p-anime__fadein-left {
  opacity: 0;
  visibility: hidden;
}
.p-anime__fadein-left.js-show {
  animation: a-fadein-left 0.4s ease 0.5s forwards;
}
@keyframes a-fadein-left {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(2.5em);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(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__slide-down {
  transform: translateY(-1.25em);
}
.p-anime__slide-down.js-show {
  animation: a-slide-down 0.4s ease 0.5s forwards;
}
@keyframes a-slide-down {
  0% {
    transform: translateY(-1.25em);
  }
  70% {
    transform: translateY(1.5625em);
  }
  100% {
    transform: translateY(0);
  }
}

.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);
  }
}

/*========================================
 * 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;
}