@charset "UTF-8";
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  display: block;
  z-index: 1;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.swiper {
  display: block;
  /* Fix of Webkit flickering */
  z-index: 1;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      flex-shrink: 0;
      order: 9999;
      content: "";
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: var(--swiper-centered-offset-after);
      height: 100%;
      min-height: 1px;
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  box-sizing: border-box;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  transform-origin: 50%;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  display: flex;
  z-index: 10;
  position: absolute;
  align-items: center;
  justify-content: center;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  right: auto;
  left: var(--swiper-navigation-sides-offset, 4px);
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    right: auto;
    left: var(--swiper-navigation-sides-offset, 4px);
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    right: auto;
    left: var(--swiper-navigation-top-offset, 50%);
    margin-top: 0;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    top: auto;
    bottom: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  z-index: 10;
  position: absolute;
  transform: translate3d(0, 0, 0);
  text-align: center;
  transition: 300ms opacity;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: var(--swiper-pagination-top, auto);
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  display: inline-block;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    -webkit-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  top: 50%;
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    width: 8px;
    transform: translateY(-50%);
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  position: absolute;
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  .swiper-pagination-progressbar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    top: 0;
    left: 0;
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    top: 0;
    left: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
  }
}

.swiper-pagination-lock {
  display: none;
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  min-width: 0;
  border-width: 0;
  border-style: solid;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  margin: 0;
  clear: both;
  overflow: visible; /* 2 */
  border-top-width: 1px;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-size: inherit; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-size: inherit; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit; /* 2 */
  vertical-align: middle;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

html, body {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  color: #000000;
  font-style: normal;
  font-weight: 400;
  font-size: 3.7333333333vw;
  line-height: 1.8;
  font-family: "Arial", "Meiryo", "メイリオ", "Hiragino Kaku Gothic ProN", sans-serif;
  word-break: break-word;
  overflow-wrap: break-word;
}

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

small, button, label, picture, video {
  display: block;
}

a, button {
  width: 100%;
  max-width: 100%;
  text-decoration: none;
  cursor: pointer;
}

a {
  text-decoration: underline;
}

a:hover, a:active, button:hover, button:active {
  outline: none;
}

a:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px #000000;
}

b, strong {
  font-weight: 700;
}

input, textarea, select, optgroup {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #000000;
  border-radius: 0;
  outline: none;
  background-color: #fff;
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
}

button {
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: none;
          appearance: none;
}

button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px #000000;
}

select {
  cursor: pointer;
}

input[type=radio], input[type=checkbox] {
  width: auto;
  margin: 0 5px 0 0;
}

input[type=submit] {
  text-align: center;
}

::placeholder {
  color: #000000;
}

dt {
  font-weight: 400;
}

li {
  display: block;
}

sub {
  bottom: 0;
}

.wrapper {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 100%;
}

.innerbox {
  width: 100%;
  padding: 0 5.3333333333vw;
}

.font_italic {
  font-style: italic;
}

.bold {
  font-weight: 700;
}

.visible_s {
  display: none !important;
}

.visible_m {
  display: none !important;
}

.visible_l {
  display: none !important;
}

.visible_xl {
  display: none !important;
}

.visible_xxl {
  display: none !important;
}

.visible_xxxl {
  display: none !important;
}

.inline_block {
  display: inline-block;
  max-width: 100%;
}

.pt1em {
  padding-top: 1em;
}

.pr1em {
  padding-right: 1em;
}

.pb1em {
  padding-bottom: 1em;
}

.pl1em {
  padding-left: 1em;
}

.mt1em {
  margin-top: 1em;
}

.mr1em {
  margin-right: 1em;
}

.mb1em {
  margin-bottom: 1em;
}

.ml1em {
  margin-left: 1em;
}

.txt_indent {
  padding-left: 1em;
  text-indent: -1em;
}

.txt_indent2_5 {
  padding-left: 2.5em;
  text-indent: -2.5em;
}

.indent_disc {
  padding-left: 1em;
  text-indent: -1em;
}
.indent_disc::before {
  content: "・";
}

.relative_box {
  position: relative;
}

.c-white {
  color: #ffffff;
}

.c-red {
  color: #E6002D;
}

.strikethrough {
  text-decoration: line-through;
}

.space1 {
  height: 2.6666666667vw;
}

.space2 {
  height: 5.3333333333vw;
}

.space3 {
  height: 8vw;
}

.space4 {
  height: 10.6666666667vw;
}

.space5 {
  height: 13.3333333333vw;
}

.space6 {
  height: 16vw;
}

.space7 {
  height: 18.6666666667vw;
}

.space8 {
  height: 21.3333333333vw;
}

.space9 {
  height: 24vw;
}

.space10 {
  height: 26.6666666667vw;
}

/* 表示領域の下20%を超えたら表示（fadeUp.js とセット） */
.js-fade_up {
  transform: translate3d(0, 13.3333333333vw, 0);
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-fade_up.is-fade_up {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.o-bk__ttl_h2 {
  max-width: 89.3333333333vw;
  margin: 0 auto;
  font-weight: 700;
  font-size: 6.4vw;
  line-height: 1.5;
}
.o-bk__ttl_h2_s {
  max-width: 89.3333333333vw;
  margin: 0 auto;
  font-weight: 700;
  font-size: 5.8666666667vw;
  line-height: 1.5;
}
.o-bk__ttl_h3 {
  max-width: 89.3333333333vw;
  margin: 0 auto;
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.5;
}
.o-bk__ttl_h3_s {
  max-width: 89.3333333333vw;
  margin: 0 auto;
  font-weight: 700;
  font-size: 4.8vw;
  line-height: 1.5;
}
.o-bk__ttl_h4 {
  max-width: 89.3333333333vw;
  margin: 0 auto;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.o-bk__clm {
  display: grid !important;
  grid-template-columns: 1fr;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  width: 100%;
  max-width: 89.3333333333vw;
  margin: 0 auto;
  gap: 3.7333333333vw;
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.o-bk__img {
  max-width: 89.3333333333vw;
  margin: 0 auto;
}
.o-bk__img p {
  margin-top: 1.6vw;
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.o-bk__link_external a {
  display: inline-block;
  width: auto;
  padding-right: 8vw;
  background-image: url(../img/block/icon_external.png);
  background-position: right center;
  background-size: 4.8vw auto;
  background-repeat: no-repeat;
  color: #000000;
  font-weight: 700;
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.o-bk__youtube {
  max-width: 89.3333333333vw;
  margin: 0 auto;
}
.o-bk__youtube .wp-block-embed__wrapper {
  position: relative;
  padding-top: 56.25%;
}
.o-bk__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.o-bk__origin_circle_img {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 89.3333333333vw;
  margin: 0 auto;
  padding: 7.4666666667vw 5.3333333333vw 5.6vw;
  background-color: #EBEEF0;
}
.o-bk__origin_circle_img figure {
  width: 26.6666666667vw;
  margin: 0 auto 5.8666666667vw !important;
}
.o-bk__origin_circle_txt {
  margin-top: 1.6vw;
}
.o-bk__origin_circle_txt p {
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.o-bk__origin_circle_txt p:nth-child(1) {
  margin-top: 0;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.o-bk__txt_base {
  max-width: 89.3333333333vw;
  margin: 0 auto;
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.o-bk__modal {
  position: relative;
  max-width: 89.3333333333vw;
  margin: 0 auto;
  cursor: pointer;
}
.o-bk__modal:hover {
  outline: none;
}
.o-bk__modal_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-user-select: none;
  width: 16vw;
  pointer-events: none;
          user-select: none;
}
.o-bk__table {
  margin-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
}
.o-bk__table table {
  width: 100%;
}
.o-bk__table table tr td {
  width: 64vw;
  padding: 2.6666666667vw 3.2vw;
  font-weight: 700;
  font-size: 3.4666666667vw;
  line-height: 1.8;
}

.l-footer {
  z-index: 1000;
  background-color: #EBEEF0;
}
.l-footer__wrap {
  padding: 16vw 0 13.3333333333vw;
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3.7333333333vw;
}
.l-footer__logo {
  width: 26.6666666667vw;
}
.l-footer__inner_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.l-footer__left_link {
  display: inline-block;
  width: auto;
  color: #8096A3;
  font-size: 3.7333333333vw;
  line-height: 3;
}
.l-footer__copyright {
  color: #8096A3;
  font-size: 3.7333333333vw;
  line-height: 2;
}

.l-header {
  z-index: 1200;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.4s;
}
.l-header.is-active {
  background-color: transparent;
}
.l-header.is-active .l-header__logo svg path {
  fill: #ffffff;
}
.l-header.is-top {
  opacity: 0;
  -webkit-user-select: none;
  visibility: hidden;
  pointer-events: none;
          user-select: none;
}
.l-header__wrap {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 14.9333333333vw;
  padding: 0 5.3333333333vw;
}
.l-header__logo_link {
  display: inline-block;
  width: auto;
}
.l-header__logo {
  width: 24.8vw;
}
.l-header__logo svg path {
  transition: 0.4s;
}

.l-main {
  z-index: 1000;
  flex-grow: 1;
  padding: 14.9333333333vw 0 0;
}
.l-main--top {
  padding: 0;
}
.l-main--angle_bg {
  display: flex;
  flex-direction: column;
}
.l-main__cnt {
  padding: 16vw 0 0;
}
.l-main__cnt--pt_none {
  padding: 0;
}
.l-main__single {
  padding-top: 16vw;
}
.l-main__single > p {
  max-width: 89.3333333333vw;
  margin: 0 auto;
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.l-main__single--report {
  padding-top: 0;
}

.l-nav {
  position: fixed;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  display: grid;
  visibility: hidden;
  z-index: 1150;
  grid-template-columns: 1fr;
  align-items: center;
  background-image: url("../img/common/bg-nav-sp.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.4s;
          user-select: none;
}
.l-nav.is-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-user-select: auto;
  visibility: visible;
          user-select: auto;
}
.l-nav__wrap {
  width: 100%;
  padding: 18.1333333333vw 9.6vw;
}
.l-nav__item_list > li > a {
  display: inline-block;
  width: fit-content;
  color: #ffffff;
  font-weight: 700;
  font-size: 5.8666666667vw;
  line-height: 2.8;
  text-decoration: none;
}

.o-angle {
  position: relative;
  padding: 13.3333333333vw 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(232, 234, 237, 0) 0%, rgba(132, 150, 163, 0.08) 100%), #FFF;
}
.o-angle--main_bg {
  flex-grow: 1;
}
.o-angle__bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 162.1333333333vw;
  background-image: url("../img/top/bg-angle-sp.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.o-angle__inner {
  z-index: 5;
  position: relative;
}
.o-angle__inner--pb {
  padding-bottom: 21.3333333333vw;
}
.o-angle__ttl {
  color: #ffffff;
  font-weight: 700;
  font-size: 9.0666666667vw;
  line-height: 1.5;
  text-align: center;
}
.o-angle__ttl--txt_left_to_m {
  text-align: left;
}
.o-angle__ttl--fs_s {
  font-size: 8vw;
}
.o-angle__ttl--one_line {
  line-height: 1;
}
.o-angle__ttl_inner {
  display: block;
  font-size: 8vw;
  line-height: 1.5;
}
.o-angle__ttl_inner--one_line {
  line-height: 1;
}
.o-angle__ttl_inner_care {
  display: block;
  font-size: 3.7333333333vw;
  line-height: 2;
}

@keyframes band-bg-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.o-band_green {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.o-band_green--top .o-band_green__bg_inner {
  background-position: center top;
}
.o-band_green--bottom .o-band_green__bg_inner {
  background-position: center bottom;
}
.o-band_green__bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* 一番上に来る要素（フェードイン表示） */
}
.o-band_green__bg.is-band_on_top {
  z-index: 10;
}
.o-band_green__bg {
  /* その直下＝フェードイン時に背景として見える要素 */
}
.o-band_green__bg.is-band_below_top {
  z-index: 9;
}
.o-band_green__bg {
  /* 内側で opacity 0→1 をアニメーション（背景は内側に分離） */
}
.o-band_green__bg.is-band_animate .o-band_green__bg_inner {
  animation: band-bg-fade-in 2.2s ease-out forwards;
  will-change: opacity;
}
.o-band_green__bg_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/bg-change001.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}
.o-band_green__bg--002 .o-band_green__bg_inner {
  background-image: url("../img/common/bg-change002.png");
}
.o-band_green__bg--003 .o-band_green__bg_inner {
  background-image: url("../img/common/bg-change003.png");
}
.o-band_green__bg--004 .o-band_green__bg_inner {
  background-image: url("../img/common/bg-change004.png");
}

.o-band_main {
  position: relative;
}
.o-band_main--report {
  padding-bottom: 13.8666666667vw;
}
.o-band_main__bg_multiply {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}
.o-band_main__bg_green {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/bg-band-green-sp.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}
.o-band_main__bg_img {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 240vw;
  background-image: url("../img/top/bg-band-sp.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}
.o-band_main__ttl {
  z-index: 15;
  position: relative;
  padding: 7.2vw 5.3333333333vw;
  color: #ffffff;
  font-weight: 700;
  font-size: 8vw;
  line-height: 1.5;
}
.o-band_main__ttl--center {
  font-size: 9.0666666667vw;
  text-align: center;
}
.o-band_main__ttl--campaign_x {
  font-size: 8.5333333333vw;
  text-align: center;
}
.o-band_main__ttl--left {
  text-align: left;
}
.o-band_main__ttl--report {
  padding-bottom: 5.3333333333vw;
}

.o-breadcrumbs {
  display: flex;
  z-index: 15;
  position: relative;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 20vw;
  padding: 0 5.3333333333vw 4vw;
  color: #000000;
  font-size: 3.2vw;
  line-height: 1.8;
}
.o-breadcrumbs--pc {
  display: none;
}
.o-breadcrumbs > span {
  margin-right: 0.5em;
  margin-left: 0.5em;
  line-height: 1;
}
.o-breadcrumbs > span > a, .o-breadcrumbs > span > span {
  color: #000000;
  font-size: 3.2vw;
  line-height: 1.8;
  text-decoration: none;
}
.o-breadcrumbs > span:nth-child(1) {
  margin-left: 0;
}
.o-breadcrumbs > span:nth-last-child(1) {
  margin-right: 0;
}
.o-breadcrumbs > li {
  line-height: 1;
}
.o-breadcrumbs > li > a, .o-breadcrumbs > li > span {
  color: #000000;
  font-size: 3.2vw;
  line-height: 1.8;
  text-decoration: none;
}
.o-breadcrumbs > li + li::before {
  display: inline-block;
  margin: 0 0.5em;
  content: "＞";
  color: #000000;
  font-size: 3.2vw;
  line-height: 1.8;
}

[class*=o-btn] {
  text-decoration: none;
}

.o-btn__base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 3.4666666667vw 12.8vw 2.9333333333vw;
  border-radius: 9999px;
  background-color: #094;
  color: #ffffff;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
.o-btn__base--more {
  font-size: 3.4666666667vw;
}
.o-btn__base--gray {
  background-color: #999;
}
.o-btn__base--reverse {
  background-color: #ffffff;
  color: #094;
}
.o-btn__base--mw {
  min-width: 68.2666666667vw;
}
.o-btn__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.o-btn__wrap--center {
  justify-content: center;
}
.o-btn__wrap--breadcrumbs_prev {
  margin-top: 16vw;
}
.o-btn__wrap--top_pickup {
  margin-top: 5.3333333333vw;
}
.o-btn__movie {
  display: block;
  position: relative;
  width: 100%;
  max-width: 89.3333333333vw;
  margin: 0 auto;
}
.o-btn__movie_img {
  container-type: inline-size;
  display: block;
  overflow: hidden;
  border-radius: 2.1333333333vw;
}
.o-btn__icon_movie_play {
  display: block;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10.6837606838%;
  transform: translate3d(-50%, -50%, 0);
}
.o-dl__gray_band {
  margin-top: 14.4vw;
}
.o-dl__gray_band > dt {
  padding: 1.8666666667vw 3.2vw;
  background-color: #8096A3;
  color: #ffffff;
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.5;
  text-align: center;
}
.o-dl__gray_band > dd {
  margin-top: 6.1333333333vw;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.o-dl__gray_band > dd p + p {
  margin-top: 1em;
}

.o-hamburger {
  z-index: 1250;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  transition: 0.4s;
}
.o-hamburger.is-top {
  opacity: 0;
  -webkit-user-select: none;
  visibility: hidden;
  pointer-events: none;
          user-select: none;
}
.o-hamburger__box {
  display: flex;
  position: absolute;
  top: 2.6666666667vw;
  right: 3.7333333333vw;
  align-items: center;
  justify-content: center;
  width: 9.6vw;
  height: 9.6vw;
}
.o-hamburger__box.is-active .o-hamburger__box_line {
  top: 50%;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  background-color: #ffffff;
}
.o-hamburger__box.is-active .o-hamburger__box_line:nth-child(2) {
  transform: translate3d(0, -50%, 0) rotate(45deg);
}
.o-hamburger__box.is-active .o-hamburger__box_line:nth-child(3) {
  top: 50%;
  transform: translate3d(0, -50%, 0) rotate(-45deg);
}
.o-hamburger__box_inner {
  position: relative;
  width: 6.4vw;
  height: 6.4vw;
}
.o-hamburger__box_line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.7093333333vw;
  transform: translate3d(0, -50%, 0);
  background-color: #000000;
  transition: 0.4s;
}
.o-hamburger__box_line:nth-child(1) {
  top: 0;
  transform: translate3d(0, 0, 0);
}
.o-hamburger__box_line:nth-last-child(1) {
  top: auto;
  bottom: 0;
  transform: translate3d(0, 0, 0);
}

.o-img__full {
  margin-top: 14.4vw;
}
.o-img__full--mt_none {
  margin-top: 0;
}

.o-list__report_card {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 84vw;
  margin: 2.4vw auto 0;
  gap: 5.3333333333vw;
}
.o-list__report_card > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}
.o-list__report_card--swiper {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: none;
  gap: 0;
}
.o-list__report_card--swiper > li {
  display: flex;
  max-width: 88.2666666667vw;
  height: auto;
  padding: 0 2.1333333333vw;
}
.o-list__report_card_wrap {
  position: relative;
}
.o-list__report_card_link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4.2666666667vw;
  background-color: #094;
  color: #ffffff;
  text-decoration: none;
}
.o-list__report_card_img img {
  aspect-ratio: 315/177;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o-list__report_card_icon_cleague {
  position: absolute;
  top: 4.2666666667vw;
  left: 4.2666666667vw;
  width: 10.6666666667vw;
}
.o-list__report_card_cnt {
  padding: 3.7333333333vw 5.3333333333vw 5.3333333333vw;
}
.o-list__report_card_ttl {
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.o-list__report_card_txt {
  margin-top: 0.5333333333vw;
  font-size: 3.2vw;
  line-height: 1.8;
}
.o-list__report_card_cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.4vw;
  padding: 1.6vw 2.1333333333vw;
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
  font-size: 3.4666666667vw;
  line-height: 1;
}
.o-modal__cnt {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  display: flex;
  visibility: hidden;
  z-index: 1500;
  align-items: center;
  justify-content: center;
  padding: 5.3333333333vw 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.2s;
          user-select: none;
}
.o-modal__cnt.is-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-user-select: auto;
  visibility: visible;
          user-select: auto;
}
.o-modal__cnt_inner {
  z-index: 5;
  position: relative;
  aspect-ratio: 100/56.5;
  width: 89.3333333333vw;
  margin: auto;
}
.o-modal__cnt_movie iframe {
  aspect-ratio: 100/56.5;
  width: 100%;
  height: 100%;
}
.o-modal__close {
  display: block;
  position: fixed;
  top: 5.3333333333vw;
  right: 5.3333333333vw;
  aspect-ratio: 1/1;
  width: 10.6666666667vw;
}

.o-pagetop {
  z-index: 1100;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  transition: opacity 0.4s;
}
.o-pagetop.is-hide {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  visibility: hidden;
          user-select: none;
}
.o-pagetop.is-top {
  opacity: 0;
  -webkit-user-select: none;
  visibility: hidden;
  pointer-events: none;
          user-select: none;
}
.o-pagetop__btn {
  position: absolute;
  right: 3.2vw;
  bottom: 3.2vw;
  width: 10.6666666667vw;
}

.o-swiper__item_list {
  align-items: stretch;
}
.o-swiper__item_box {
  height: auto;
}
.o-swiper__item_box.swiper-slide-active .p-index__card {
  box-shadow: 0 1.0666666667vw 4.8vw 0 rgba(0, 0, 0, 0.24);
}
.o-swiper__arrow {
  left: 1.0666666667vw !important;
  width: 8.5333333333vw;
  height: 8.5333333333vw;
  margin: 0 !important;
  transform: translate3d(0, -50%, 0);
}
.o-swiper__arrow .swiper-navigation-icon {
  display: none;
}
.o-swiper__arrow--next {
  right: 1.0666666667vw !important;
  left: auto !important;
}
.o-swiper__arrow_cat {
  top: 23.4666666667vw !important;
  left: 2.6666666667vw !important;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  margin: 0 !important;
  transform: translate3d(0, -50%, 0);
}
.o-swiper__arrow_cat .swiper-navigation-icon {
  display: none;
}
.o-swiper__arrow_cat--next {
  right: 2.6666666667vw !important;
  left: auto !important;
}
.o-swiper__pagination {
  position: static;
  margin-top: 7.4666666667vw;
}
.o-swiper__pagination .swiper-pagination-bullet {
  width: 3.2vw;
  height: 3.2vw;
  margin: 0 2.1333333333vw !important;
  background-color: #d9d9d9;
  opacity: 1;
}
.o-swiper__pagination .swiper-pagination-bullet-active {
  background-color: #094;
}
.o-swiper__pagination_cat {
  display: flex;
  position: static;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 86.1333333333vw;
  margin: 0 auto;
  margin-top: 5.3333333333vw;
  font-size: 0;
}
.o-swiper__pagination_cat .swiper-pagination-bullet {
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  margin: 0 1.0666666667vw !important;
  background-color: #eaeff2;
  opacity: 1;
}
.o-swiper__pagination_cat .swiper-pagination-bullet-active {
  background-color: #8096A3;
}

[class*=o-ttl] {
  font-weight: 700;
}

.o-ttl__card_ttl {
  max-width: 89.3333333333vw;
  margin: 0 auto;
  font-weight: 700;
  font-size: 6.4vw;
  line-height: 1.5;
}
.o-ttl__card_ttl--to_m {
  max-width: 84vw;
}
.o-ttl__card_ttl--pickup {
  margin-top: 8.5333333333vw;
  text-align: center;
}
.o-ttl__card_ttl--pickup_l {
  margin-top: 13.8666666667vw;
  text-align: center;
}

.o-txt__gray_band {
  margin-top: 6.1333333333vw;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}

.o-x__wrap--mt_arrow_green {
  margin-top: 8.5333333333vw;
}
.o-x__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 89.3333333333vw;
  margin: 0 auto;
  padding: 7.4666666667vw 0;
  gap: 4.2666666667vw;
  border: 0.5333333333vw solid #094;
  background-color: #ffffff;
}
.o-x__inner_left {
  flex: 0 0 12.5333333333vw;
}
.o-x__inner_right {
  flex: 0 0 62.9333333333vw;
}

.p-404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 26.6666666667vw;
}
.p-404__jp_txt {
  font-size: 4.2666666667vw;
}
.p-404__en_txt {
  font-size: 10.6666666667vw;
}
.p-campaign__band_term {
  background-image: url("../img/campaign-x/bg-band-term-sp.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-campaign__band_term_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 89.3333333333vw;
  margin: 0 auto;
  padding: 4.2666666667vw 0;
  gap: 2.6666666667vw;
}
.p-campaign__term_left {
  flex: 0 0 39.4666666667vw;
}
.p-campaign__term_ttl {
  padding: 4vw 0;
  border: 0.4vw solid #094;
  color: #094;
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.2;
  text-align: center;
}
.p-campaign__term_right {
  flex: 0 0 47.2vw;
  color: #094;
  font-weight: 700;
  font-size: 4vw;
  line-height: 1.4;
}
.p-campaign__term_right p + p {
  margin-top: 2.6666666667vw;
}
.p-campaign__intro {
  margin-top: 14.4vw;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.8;
  text-align: center;
}
.p-campaign__intro p + p {
  margin-top: 1.8em;
}
.p-campaign__page_link_wrap {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 89.3333333333vw;
  margin: 14.4vw auto 0;
  padding-bottom: 16vw;
  gap: 3.2vw;
}
.p-campaign__page_link_box {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 16vw;
  padding: 2.6666666667vw 10.6666666667vw;
  border-radius: 4.2666666667vw;
  background-color: #094;
  color: #ffffff;
  text-decoration: none;
}
.p-campaign__page_link_txt {
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.5;
  text-align: center;
}
.p-campaign__page_link_arrow {
  position: absolute;
  top: 50%;
  right: 6.4vw;
  width: 4vw;
  transform: translate3d(0, -50%, 0);
}
.p-campaign__angle_intro {
  margin-top: 7.2vw;
  color: #ffffff;
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.5;
  text-align: center;
}
.p-campaign__method_step {
  max-width: 89.3333333333vw;
  margin: 9.3333333333vw auto 8.5333333333vw;
}
.p-campaign__method_box {
  box-shadow: 0 1.0666666667vw 4.8vw 0 rgba(0, 0, 0, 0.24);
}
.p-campaign__method_cnt {
  padding: 5.8666666667vw 5.3333333333vw;
  background-color: #ffffff;
  font-weight: 700;
  font-size: 5.0666666667vw;
  line-height: 1.6;
}
.p-campaign__method_cnt p.is-care {
  margin-top: 2.6666666667vw;
  font-size: 3.4666666667vw;
}
.p-campaign__method_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.8vw 0;
}
.p-campaign__method_arrow svg {
  width: 7.2vw;
}
.p-campaign__method_btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 10.6666666667vw;
  padding-bottom: 16vw;
}
.p-campaign__prize_list {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 89.3333333333vw;
  margin: 8.5333333333vw auto 0;
  padding-bottom: 16vw;
  gap: 5.3333333333vw;
}
.p-campaign__prize_box {
  padding: 9.6vw 5.3333333333vw;
  overflow: hidden;
  border-radius: 4.2666666667vw;
  background-image: url("../img/campaign-x/bg-prize-box-sp.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-campaign__prize_ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.0666666667vw;
}
.p-campaign__prize_ttl_box {
  display: inline-block;
  padding: 0 2.1333333333vw;
  background-color: #ffffff;
  color: #094;
  font-weight: 700;
  font-size: 6.4vw;
  line-height: 1.4166666667;
}
.p-campaign__prize_ttl_box--fs_s {
  font-size: 5.0666666667vw;
  line-height: 1.5789473684;
}
.p-campaign__prize_desc {
  margin-top: 2.4vw;
  color: #ffffff;
  font-weight: 700;
  font-size: 5.8666666667vw;
  line-height: 1.6;
}
.p-campaign__prize_desc p.is-fs_s {
  margin-top: 0.8vw;
  font-size: 4.2666666667vw;
  line-height: 1.8;
}
.p-campaign__prize_desc p.is-care {
  margin-top: 0.8vw;
  font-size: 3.4666666667vw;
}
.p-campaign__prize_img {
  margin-top: 4.8vw;
}
.p-campaign__rule_area {
  margin-top: 10.6666666667vw;
  padding-bottom: 16vw;
}
.p-campaign__rule_area_inner {
  max-height: 160vw;
  padding: 9.3333333333vw 5.3333333333vw;
  overflow-y: scroll;
  background-color: #ffffff;
}
.p-campaign__rule_area_inner p + p {
  margin-top: 1.8em;
}
.p-campaign__rule_area_ttl {
  margin-bottom: 1.8em;
}
.p-campaign__arrow_green {
  width: 8vw;
  margin: 0 auto;
}

.p-content__cleague_btn_wrap {
  z-index: 15;
  position: relative;
}
.p-content__cleague_btn_all {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 37.3333333333vw;
  height: 12.8vw;
  margin: 0 auto;
  border-radius: 9999px;
  background-color: #ffffff;
  font-weight: 700;
  font-size: 4vw;
  line-height: 1.6;
  text-align: center;
}
.p-content__cleague_btn_all.is-current::before {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40vw;
  height: 14.9333333333vw;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 9999px;
  background-color: #ffffff;
  content: "";
  pointer-events: none;
  -webkit-user-select: none;
  border: 0.4vw solid #094;
  filter: blur(2vw);
          user-select: none;
}
.p-content__cleague_btn_all.is-current::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  content: "";
  pointer-events: none;
  -webkit-user-select: none;
  border: 0.5333333333vw solid #8096A3;
          user-select: none;
}
.p-content__cleague_btn_list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 89.3333333333vw;
  margin: 5.3333333333vw auto 0;
  gap: 1.8666666667vw;
}
.p-content__cleague_btn_item {
  position: relative;
}
.p-content__cleague_btn_item.is-current::before {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14.9333333333vw;
  height: 14.9333333333vw;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 9999px;
  background-color: #ffffff;
  content: "";
  pointer-events: none;
  -webkit-user-select: none;
  border: 0.4vw solid #094;
  filter: blur(2vw);
          user-select: none;
}
.p-content__cleague_btn_item.is-current::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  content: "";
  pointer-events: none;
  -webkit-user-select: none;
  border: 0.5333333333vw solid #8096A3;
          user-select: none;
}
.p-content__pickup_wrap {
  margin-bottom: 19.4666666667vw;
}
.p-content__cat_wrap {
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 11.2vw;
}
.p-content__cat_box {
  overflow: hidden;
}
.p-content__relation {
  margin-top: 14.1333333333vw;
}
.p-content__classification {
  display: flex;
  z-index: 15;
  position: relative;
  align-items: center;
  max-width: 89.3333333333vw;
  margin: 0 auto;
  padding-bottom: 22.1333333333vw;
  gap: 3.2vw;
}
.p-content__classification_team {
  flex: 0 0 10.6666666667vw;
}
.p-content__classification_cat {
  color: #ffffff;
  font-weight: 700;
  font-size: 3.4666666667vw;
  line-height: 2;
}
.p-content__eyecatch {
  z-index: 15;
  position: relative;
  top: -14.6666666667vw;
  max-width: 89.3333333333vw;
  margin: 0 auto;
}
.p-content__eyecatch_youtube_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-user-select: none;
  width: 16vw;
  pointer-events: none;
          user-select: none;
}

.p-cookie__item_list {
  margin-top: 7.4666666667vw;
}
.p-cookie__item_list > li {
  font-size: 3.4666666667vw;
}
.p-cookie__item_list > li + li {
  margin-top: 1.8em;
}
.p-cookie__item_box > dt {
  font-weight: 700;
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.p-cookie__item_txt {
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.p-cookie__item_txt--mt_type1 {
  margin-top: 7.4666666667vw;
}
.p-cookie__item_table {
  margin-top: 7.4666666667vw;
}
.p-cookie__item_table table {
  width: 100%;
  border-top: 1px solid #8096A3;
}
.p-cookie__item_table table tr {
  border-bottom: 1px solid #8096A3;
}
.p-cookie__item_table table tr th {
  padding: 8vw 8vw 8vw 0;
}
.p-cookie__item_table table tr th:nth-last-child(1) {
  padding-right: 0;
}
.p-cookie__item_table table tr td {
  padding: 8vw 8vw 8vw 0;
}
.p-cookie__item_table table tr td:nth-last-child(1) {
  padding-right: 0;
}
.p-cookie__end_txt {
  margin-top: 1.8em;
  font-size: 3.4666666667vw;
  line-height: 1.8;
  text-align: right;
}
.p-index__kv {
  z-index: -1;
  position: relative;
  width: 100%;
}
.p-index__kv::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  -webkit-user-select: none;
          user-select: none;
}
.p-index__kv.is-active::before {
  opacity: 1;
}
.p-index__kv_img {
  z-index: -1;
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}
.p-index__kv_img.is-active {
  opacity: 1;
}
.p-index__kv_bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  max-width: 90.6666666667vw;
  margin-top: 21.3333333333vw;
  margin-left: auto;
  padding: 0 5.3333333333vw 2.4vw;
  text-align: right;
  text-shadow: 0 0 1.0666666667vw #000000;
}
.p-index__kv_bottom a {
  color: #ffffff;
}
.p-index__kv_bottom p {
  color: #ffffff;
  font-size: 2.6666666667vw;
  line-height: 1.6;
}
.p-index__kv_bottom p::before {
  content: "・";
}
.p-index__kv_bottom p + p {
  margin-top: 0 !important;
}
.p-index__kv_logo {
  position: absolute;
  top: 50lvh;
  left: 50%;
  width: 74.6666666667vw;
  transform: translate3d(-50%, -50%, 0);
}
.p-index__kv_inner {
  z-index: 5;
  position: relative;
  height: 506.6666666667vw;
}
.p-index__kv_inner_top {
  max-width: 89.3333333333vw;
  margin: 0 auto;
  padding-top: 100lvh;
  color: #ffffff;
  font-size: 4vw;
  line-height: 2.2;
  -webkit-user-select: none;
  pointer-events: none;
          user-select: none;
}
.p-index__kv_inner_top p + p {
  margin-top: 9.0666666667vw;
}
.p-index__kv_inner_top p.is-fs_l {
  font-size: 4.8vw;
}
.p-index__cleague {
  position: relative;
  padding: 16vw 5.3333333333vw;
}
.p-index__cleague_inner {
  z-index: 15;
  position: relative;
}
.p-index__cleague_ttl_intro {
  margin-top: 6.4vw;
  color: #ffffff;
  font-weight: 700;
  font-size: 6.9333333333vw;
  line-height: 1.6;
  text-align: center;
}
.p-index__cleague_project_clm {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 5.3333333333vw;
  gap: 8vw;
}
.p-index__cleague_project_ttl {
  color: #ffffff;
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.9166666667;
  text-align: center;
}
.p-index__cleague_project_modal {
  margin-top: 2.1333333333vw;
}
.p-index__cleague_project_intro {
  max-width: 89.3333333333vw;
  margin: 6.1333333333vw auto 0;
  color: #ffffff;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.p-index__cleague_project_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 6.1333333333vw;
}
.p-index__cleague_news {
  margin-top: 10.6666666667vw;
  padding: 8.5333333333vw 5.3333333333vw;
  background-color: #ffffff;
}
.p-index__cleague_news_ttl {
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.6;
}
.p-index__cleague_news_list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.1333333333vw;
  margin-bottom: 4.2666666667vw;
  gap: 4.2666666667vw;
}
.p-index__cleague_news_list > li {
  padding: 1.3333333333vw 0;
  border-bottom: 1px solid #EBEEF0;
}
.p-index__cleague_news_item_txt {
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.p-index__cleague_news_item_time {
  display: block;
  margin-top: 1.0666666667vw;
  color: #8197A3;
  font-size: 3.4666666667vw;
  line-height: 1.8;
  text-align: right;
}
.p-index__cleague_news_btn {
  margin-top: 4.2666666667vw;
}
.p-index__band {
  position: relative;
  padding: 7.4666666667vw 5.3333333333vw 6.4vw;
}
.p-index__band--line {
  border-top: 2.1333333333vw solid #e0e0e0;
}
.p-index__band_bg_multiply {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}
.p-index__band_bg_green {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/bg-band-green-sp.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}
.p-index__band_bg_img {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 240vw;
  background-image: url("../img/top/bg-band-sp.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}
.p-index__band_ttl {
  z-index: 15;
  position: relative;
  color: #ffffff;
  font-weight: 700;
  font-size: 9.0666666667vw;
  line-height: 1.5;
  text-align: center;
}
.p-index__angle {
  position: relative;
  padding: 13.3333333333vw 5.3333333333vw 16vw;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(232, 234, 237, 0) 0%, rgba(132, 150, 163, 0.08) 100%), #FFF;
}
.p-index__angle--full {
  padding-right: 0;
  padding-left: 0;
}
.p-index__angle_bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 162.1333333333vw;
  background-image: url("../img/top/bg-angle-sp.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.p-index__angle_bg--project {
  height: 165.3333333333vw;
  background-image: url("../img/top/bg-angle002-sp.png");
}
.p-index__angle_bg--project_movie {
  height: 192.8vw;
  background-image: url("../img/top/bg-angle003-sp.png");
}
.p-index__angle_inner {
  z-index: 5;
  position: relative;
}
.p-index__angle_inner--sp_inner {
  padding: 0 5.3333333333vw;
}
.p-index__angle_ttl {
  max-width: 89.3333333333vw;
  margin: 0 auto;
  font-weight: 700;
  font-size: 9.0666666667vw;
  line-height: 1.5;
  text-align: center;
}
.p-index__angle_ttl--project {
  font-size: 8.2666666667vw;
}
.p-index__angle_ttl--campaign {
  font-size: 8.5333333333vw;
}
.p-index__angle_ttl--card {
  margin-top: 13.3333333333vw;
}
.p-index__angle_detail {
  max-width: 89.3333333333vw;
  margin: 5.8666666667vw auto 0;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
  text-align: center;
}
.p-index__angle_detail--mt_none {
  margin-top: 0;
}
.p-index__angle_detail--project {
  text-align: left;
}
.p-index__sec_kv {
  max-width: 89.3333333333vw;
  margin: 8.5333333333vw auto 0;
}
.p-index__sec_kv--mt_none {
  margin-top: 0;
}
.p-index__sec_kv_band {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 89.3333333333vw;
  margin: 0 auto 3.2vw;
}
.p-index__sec_kv_band_inner {
  padding: 1.8666666667vw 3.2vw;
  background-color: #ffffff;
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.5;
  text-align: center;
}
.p-index__sec_kv_img {
  margin: 0 auto;
}
.p-index__sec_kv_detail_txt {
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.p-index__sec_kv_detail_btn {
  display: flex;
  justify-content: center;
  margin-top: 4vw;
}
.p-index__sec_kv_txt {
  max-width: 89.3333333333vw;
  margin: 5.3333333333vw auto 0;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.p-index__card_wrap {
  margin-top: 5.3333333333vw;
}
.p-index__card_wrap--mt_none {
  margin-top: 0;
}
.p-index__card {
  display: grid;
  grid-template-columns: 1fr;
  width: 89.3333333333vw;
  height: 100%;
  margin: 0 auto;
  padding: 8.5333333333vw 5.3333333333vw 10.6666666667vw;
  background: #FFF;
  box-shadow: 0 1.0666666667vw 4.8vw 0 rgba(0, 0, 0, 0.24);
}
.p-index__card + .p-index__card {
  margin-top: 10.6666666667vw;
}
.p-index__card--tomose_nighter {
  margin-top: 10.6666666667vw;
  padding: 5.3333333333vw 5.3333333333vw 6.4vw;
}
.p-index__card--news_prev {
  margin-top: 0;
  box-shadow: none;
}
.p-index__card--know {
  margin-top: 5.3333333333vw;
}
.p-index__card--swiper {
  position: relative;
  box-shadow: 0 1.0666666667vw 4.8vw 0 rgba(0, 0, 0, 0.12);
}
.p-index__card_prev_ttl {
  margin-top: 8.5333333333vw;
  font-weight: 700;
  font-size: 8vw;
  line-height: 1.5;
  text-align: center;
}
.p-index__card_item_team {
  width: 21.3333333333vw;
  margin-bottom: 2.6666666667vw;
}
.p-index__card_item_header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3.2vw;
}
.p-index__card_item_logo {
  flex: 0 0 16vw;
}
.p-index__card_item_ttl {
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.6;
}
.p-index__card_item_intro {
  margin-top: 5.3333333333vw;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.p-index__card_item_intro p + p {
  margin-top: 5.8666666667vw;
}
.p-index__card_item_intro span.is-strike_through {
  text-decoration: line-through;
}
.p-index__card_item_intro_link {
  color: #094;
}
.p-index__card_item_kv {
  margin-top: 5.3333333333vw;
}
.p-index__card_item_center_link {
  display: flex;
  justify-content: center;
  margin-top: 8.5333333333vw;
}
.p-index__card_item_clm {
  margin-top: 8.2666666667vw;
}
.p-index__card_item_clm_text {
  font-weight: 700;
  font-size: 4vw;
  line-height: 1.6;
}
.p-index__card_item_clm_text p + p {
  margin-top: 2.6666666667vw;
}
.p-index__card_item_clm_text_link {
  color: #094;
  text-decoration: underline;
}
.p-index__card_item_clm_img {
  margin-top: 4vw;
}
.p-index__card_item_care {
  margin-top: 1.8666666667vw;
  font-weight: 700;
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.p-index__ambassador_ttl {
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.6;
  text-align: center;
}
.p-index__ambassador_list {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 89.3333333333vw;
  margin: 5.3333333333vw auto 0;
  gap: 5.3333333333vw;
}
.p-index__ambassador_list > li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-index__ambassador_item_img {
  flex: 0 0 21.3333333333vw;
}
.p-index__ambassador_item_txt {
  padding-left: 5.3333333333vw;
}
.p-index__ambassador_item_txt > dt {
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.p-index__ambassador_item_txt > dd {
  margin-top: 2.6666666667vw;
  font-weight: 700;
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.p-index__navigator {
  width: 100%;
  max-width: 89.3333333333vw;
  margin: 0 auto;
  background-color: #ffffff;
}
.p-index__navigator_inner {
  position: relative;
}
.p-index__navigator_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 26.6666666667vw;
}
.p-index__navigator_person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 26.6666666667vw;
  padding-left: 30.9333333333vw;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.p-index__navigator_person > dt {
  font-weight: 700;
}
.p-index__navigator_profile {
  margin-top: 4vw;
  font-weight: 700;
  font-size: 3.2vw;
  line-height: 1.8;
}
.p-index__navigator_profile > dt {
  color: #a6a6a6;
  font-weight: 700;
}
.p-index__coming_soon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 52vw;
  min-height: 12.2666666667vw;
  margin: 6.4vw auto 0;
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.6;
}
.p-index__archive_list {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 89.3333333333vw;
  margin: 0 auto;
  gap: 7.4666666667vw;
}
.p-index__archive_item_btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 4.2666666667vw;
}
.p-index__tomosou {
  position: relative;
  padding: 14.4vw 0 16vw;
}
.p-index__tomosou_inner {
  z-index: 15;
  position: relative;
}
.p-index__tomosou_ttl {
  color: #ffffff;
  font-weight: 700;
  font-size: 4.8vw;
  line-height: 1.6;
  text-align: center;
}
.p-index__tomosou_img {
  max-width: 89.3333333333vw;
  margin: 9.0666666667vw auto 0;
}
.p-index__tomosou_btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 5.3333333333vw;
}
.p-index__campaign {
  margin-top: 16vw;
}
.p-index__campaign_btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 10.6666666667vw;
}
.p-index__news_btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.p-news__item_list {
  max-width: 89.3333333333vw;
  margin: 16vw auto 0;
}
.p-news__item_list > li {
  padding: 1.6vw 0;
  border-bottom: 1px solid #DCDDDD;
}
.p-news__item_list > li + li {
  margin-top: 5.3333333333vw;
}
.p-news__item_box {
  display: block;
  text-decoration: none;
}
.p-news__item_txt {
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
.p-news__item_time {
  margin-top: 1.6vw;
  color: #8197A3;
  font-size: 3.4666666667vw;
  line-height: 1.8;
  text-align: right;
}

.p-report__sns {
  margin: 16vw 0 0;
}
.p-report__sns_ttl {
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
  text-align: center;
}
.p-report__sns_link_wrap {
  display: flex;
  flex-direction: column;
  max-width: 89.3333333333vw;
  margin: 4.2666666667vw auto;
  gap: 3.2vw;
}
.p-report__sns_link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 13.8666666667vw;
  gap: 3.2vw;
  border-radius: 2.1333333333vw;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  transition: 0.4s;
}
.p-report__sns_link--facebook {
  background-color: #0866FF;
}
.p-report__sns_link--line {
  background-color: #4CC764;
}
.p-report__sns_icon {
  width: 7.4666666667vw;
}
.p-report__sns_icon--facebook {
  width: 8vw;
}
.p-report__sns_icon--line {
  width: 8.5333333333vw;
}
.p-report__sns_text {
  font-weight: 700;
  font-size: 4vw;
  line-height: 1.7333333333;
}

.p-tomose_nighter__schedule {
  margin-top: 23.7333333333vw;
}
.p-tomose_nighter__schedule table {
  width: 100%;
}
.p-tomose_nighter__schedule table caption {
  margin-bottom: 5.3333333333vw;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.p-tomose_nighter__schedule table tr {
  display: block;
}
.p-tomose_nighter__schedule table tr th {
  display: block;
  padding: 1.8666666667vw 4.2666666667vw;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  border-left: 1px solid #000000;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.6;
}
.p-tomose_nighter__schedule table tr td {
  display: block;
  padding: 2.4vw 4.2666666667vw;
  border: 1px solid #000000;
  font-weight: 700;
  font-size: 3.7333333333vw;
  line-height: 1.6;
}
.p-tomose_nighter__schedule table tr + tr {
  margin-top: 4.2666666667vw;
}
@media (min-width: 391px){
  .visible_to_xs {
    display: none !important;
  }
}
@media (min-width: 751px){
  .visible_to_s {
    display: none !important;
  }
  .visible_s {
    display: block !important;
  }
}
@media (min-width: 768px){
  body {
    font-size: min(16px, 1.1111111111vw);
  }
  a:hover, a:active, button:hover, button:active {
    opacity: 0.6;
    transition: 0.4s;
  }
  .innerbox {
    max-width: min(1128px, 78.3333333333vw);
    margin: 0 auto;
    padding: 0;
  }
  .innerbox--size_m {
    max-width: min(936px, 65vw);
  }
  .visible_to_m {
    display: none !important;
  }
  .visible_m {
    display: block !important;
  }
  .space1 {
    height: min(10px, 0.6944444444vw);
  }
  .space2 {
    height: min(20px, 1.3888888889vw);
  }
  .space3 {
    height: min(30px, 2.0833333333vw);
  }
  .space4 {
    height: min(40px, 2.7777777778vw);
  }
  .space5 {
    height: min(50px, 3.4722222222vw);
  }
  .space6 {
    height: min(60px, 4.1666666667vw);
  }
  .space7 {
    height: min(70px, 4.8611111111vw);
  }
  .space8 {
    height: min(80px, 5.5555555556vw);
  }
  .space9 {
    height: min(90px, 6.25vw);
  }
  .space10 {
    height: min(100px, 6.9444444444vw);
  }
  .js-fade_up {
    transform: translate3d(0, min(50px, 3.4722222222vw), 0);
  }
  .o-bk__ttl_h2 {
    max-width: min(936px, 65vw);
    font-size: min(36px, 2.5vw);
    line-height: 1.8333333333;
  }
  .o-bk__ttl_h2_s {
    max-width: min(936px, 65vw);
    font-size: min(32px, 2.2222222222vw);
    line-height: 1.8333333333;
  }
  .o-bk__ttl_h3 {
    max-width: min(936px, 65vw);
    font-size: min(28px, 1.9444444444vw);
    line-height: 1.6428571429;
  }
  .o-bk__ttl_h3_s {
    max-width: min(936px, 65vw);
    font-size: min(25px, 1.7361111111vw);
    line-height: 1.6428571429;
  }
  .o-bk__ttl_h4 {
    max-width: min(936px, 65vw);
    font-size: min(22px, 1.5277777778vw);
    line-height: 1.8181818182;
  }
  .o-bk__clm {
    grid-template-columns: 1fr 1fr;
    max-width: min(1128px, 78.3333333333vw);
    gap: min(48px, 3.3333333333vw);
    font-size: min(18px, 1.25vw);
    line-height: 2;
  }
  .o-bk__clm--img_s {
    grid-template-columns: 0.75fr 1.25fr;
  }
  .o-bk__clm--img_l {
    grid-template-columns: 1.25fr 0.75fr;
  }
  .o-bk__img {
    max-width: min(936px, 65vw);
  }
  .o-bk__img p {
    margin-top: min(7px, 0.4861111111vw);
    font-size: min(18px, 1.25vw);
    line-height: 2;
  }
  .o-bk__link_external a {
    padding-right: min(30px, 2.0833333333vw);
    background-size: min(18px, 1.25vw) auto;
    font-size: min(18px, 1.25vw);
    line-height: 2;
  }
  .o-bk__youtube {
    max-width: min(936px, 65vw);
  }
  .o-bk__origin_circle_img {
    flex-direction: row;
    justify-content: space-between;
    max-width: min(1128px, 78.3333333333vw);
    padding: min(40px, 2.7777777778vw) min(120px, 8.3333333333vw) min(40px, 2.7777777778vw) min(72px, 5vw);
  }
  .o-bk__origin_circle_img figure {
    flex: 0 0 min(120px, 8.3333333333vw);
    width: min(120px, 8.3333333333vw);
    margin: 0 !important;
  }
  .o-bk__origin_circle_txt {
    flex: 0 0 min(776px, 53.8888888889vw);
    margin-top: min(6px, 0.4166666667vw);
  }
  .o-bk__origin_circle_txt p {
    font-size: min(18px, 1.25vw);
    line-height: 2;
  }
  .o-bk__origin_circle_txt p:nth-child(1) {
    margin-top: 0;
    font-size: min(22px, 1.5277777778vw);
    line-height: 1.8181818182;
  }
  .o-bk__txt_base {
    max-width: min(936px, 65vw);
    font-size: min(18px, 1.25vw);
    line-height: 2;
  }
  .o-bk__modal {
    max-width: min(936px, 65vw);
  }
  .o-bk__modal:hover {
    opacity: 0.6;
    transition: 0.4s;
  }
  .o-bk__modal_play {
    width: min(100px, 6.9444444444vw);
  }
  .o-bk__table {
    max-width: min(1128px, 78.3333333333vw);
    margin: 0 auto;
    padding: 0;
    overflow-x: auto;
  }
  .o-bk__table table tr td {
    width: auto;
    padding: min(10px, 0.6944444444vw) min(20px, 1.3888888889vw);
    font-size: min(18px, 1.25vw);
  }
  .l-footer__wrap {
    padding: min(84px, 5.8333333333vw) 0;
  }
  .l-footer__inner {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    max-width: min(1128px, 78.3333333333vw);
    margin: 0 auto;
    gap: 0;
  }
  .l-footer__logo {
    width: min(100px, 6.9444444444vw);
  }
  .l-footer__inner_left {
    align-items: flex-start;
  }
  .l-footer__left_link {
    font-size: min(18px, 1.25vw);
  }
  .l-footer__copyright {
    font-size: min(14px, 0.9722222222vw);
  }
  .l-header__wrap {
    min-height: min(72px, 5vw);
    padding: 0 min(36px, 2.5vw);
  }
  .l-header__logo_link:hover {
    opacity: 1;
  }
  .l-header__logo {
    width: min(124px, 8.6111111111vw);
  }
  .l-main {
    padding: min(72px, 5vw) 0 0;
  }
  .l-main--top {
    padding: 0;
  }
  .l-main__cnt {
    padding: min(80px, 5.5555555556vw) 0 0;
  }
  .l-main__cnt--pt_none {
    padding: 0;
  }
  .l-main__single {
    padding-top: min(80px, 5.5555555556vw);
  }
  .l-main__single > p {
    max-width: min(936px, 65vw);
    font-size: min(16px, 1.1111111111vw);
    line-height: 2;
  }
  .l-main__single--report {
    padding-top: 0;
  }
  .l-nav {
    background-image: url("../img/common/bg-nav-pc.png");
  }
  .l-nav__wrap {
    max-width: min(1128px, 78.3333333333vw);
    margin: 0 auto;
    padding: min(100px, 6.9444444444vw) 0;
  }
  .l-nav__item_list > li > a {
    font-size: min(36px, 2.5vw);
  }
  .o-angle {
    padding: min(64px, 4.4444444444vw) 0 0;
  }
  .o-angle--pb_m {
    padding-bottom: min(80px, 5.5555555556vw);
  }
  .o-angle__bg {
    height: 58.6111111111vw;
    background-image: url("../img/top/bg-angle-pc.png");
  }
  .o-angle__inner--pb {
    padding-bottom: min(100px, 6.9444444444vw);
  }
  .o-angle__ttl {
    font-size: min(44px, 3.0555555556vw);
  }
  .o-angle__ttl--txt_left_to_m {
    text-align: center;
  }
  .o-angle__ttl--fs_s {
    font-size: min(44px, 3.0555555556vw);
  }
  .o-angle__ttl_inner {
    font-size: min(44px, 3.0555555556vw);
    line-height: 1.4;
  }
  .o-angle__ttl_inner_care {
    font-size: min(20px, 1.3888888889vw);
  }
  .o-band_main--report {
    padding-bottom: min(60px, 4.1666666667vw);
  }
  .o-band_main__bg_green {
    background-image: url("../img/top/bg-band-green-pc.png");
  }
  .o-band_main__bg_img {
    height: 62.5vw;
    background-image: url("../img/top/bg-band-pc.png");
  }
  .o-band_main__ttl {
    max-width: min(1128px, 78.3333333333vw);
    margin: 0 auto;
    padding: min(30px, 2.0833333333vw) 0 min(64px, 4.4444444444vw);
    font-size: min(44px, 3.0555555556vw);
    line-height: 1.5;
    text-align: center;
  }
  .o-band_main__ttl--center {
    font-size: min(54px, 3.75vw);
    line-height: 1.2222222222;
  }
  .o-band_main__ttl--campaign_x {
    font-size: min(54px, 3.75vw);
    line-height: 1.2222222222;
  }
  .o-band_main__ttl--left {
    text-align: left;
  }
  .o-band_main__ttl--report {
    padding-bottom: min(30px, 2.0833333333vw);
  }
  .o-breadcrumbs {
    display: none;
    color: #ffffff;
    font-size: min(14px, 0.9722222222vw);
  }
  .o-breadcrumbs--pc {
    display: flex;
    max-width: min(1440px, 100vw);
    margin: 0 auto;
    padding: min(13px, 0.9027777778vw) min(36px, 2.5vw) 0;
  }
  .o-breadcrumbs > span > a, .o-breadcrumbs > span > span {
    color: #ffffff;
    font-size: min(14px, 0.9722222222vw);
    line-height: 2;
  }
  .o-breadcrumbs > li > a, .o-breadcrumbs > li > span {
    color: #ffffff;
    font-size: min(14px, 0.9722222222vw);
    line-height: 2;
  }
  .o-breadcrumbs > li + li::before {
    color: #ffffff;
    font-size: min(14px, 0.9722222222vw);
  }
  .o-btn__base {
    padding: min(13px, 0.9027777778vw) min(48px, 3.3333333333vw) min(11px, 0.7638888889vw);
    font-size: min(22px, 1.5277777778vw);
  }
  .o-btn__base--more {
    font-size: min(16px, 1.1111111111vw);
  }
  .o-btn__base--mw {
    min-width: min(360px, 25vw);
  }
  .o-btn__wrap--breadcrumbs_prev {
    margin-top: min(80px, 5.5555555556vw);
    padding-bottom: min(120px, 8.3333333333vw);
  }
  .o-btn__wrap--top_pickup {
    margin-top: min(40px, 2.7777777778vw);
  }
  .o-btn__movie {
    max-width: min(744px, 51.6666666667vw);
  }
  .o-btn__movie_img {
    border-radius: min(12px, 0.8333333333vw);
  }
  .o-dl__gray_band {
    max-width: min(1028px, 71.3888888889vw);
    margin: min(70px, 4.8611111111vw) auto 0;
  }
  .o-dl__gray_band > dt {
    padding: min(12px, 0.8333333333vw) min(10px, 0.6944444444vw);
    font-size: min(32px, 2.2222222222vw);
    line-height: 1;
  }
  .o-dl__gray_band > dd {
    margin-top: min(18px, 1.25vw);
    padding: 0 min(44px, 3.0555555556vw);
    font-size: min(20px, 1.3888888889vw);
    line-height: 2;
  }
  .o-hamburger__box {
    top: min(12px, 0.8333333333vw);
    right: min(26px, 1.8055555556vw);
    width: min(48px, 3.3333333333vw);
    height: min(48px, 3.3333333333vw);
  }
  .o-hamburger__box_inner {
    width: min(28px, 1.9444444444vw);
    height: min(28px, 1.9444444444vw);
  }
  .o-hamburger__box_line {
    height: min(3.11px, 0.2159722222vw);
  }
  .o-img__full {
    margin-top: min(70px, 4.8611111111vw);
  }
  .o-img__full--mt_none {
    margin-top: 0;
  }
  .o-list__report_card {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: min(1128px, 78.3333333333vw);
    margin-top: min(10px, 0.6944444444vw);
    gap: min(20px, 1.3888888889vw);
  }
  .o-list__report_card--swiper {
    display: grid;
  }
  .o-list__report_card--swiper > li {
    max-width: min(1128px, 78.3333333333vw);
    padding: 0;
  }
  .o-list__report_card--ambassador {
    grid-template-columns: 1fr 1fr;
    gap: min(24px, 1.6666666667vw);
  }
  .o-list__report_card_link {
    border-radius: min(24px, 1.6666666667vw);
  }
  .o-list__report_card_img--ambassador img {
    aspect-ratio: 548/200;
  }
  .o-list__report_card_icon_cleague {
    top: min(20px, 1.3888888889vw);
    left: min(20px, 1.3888888889vw);
    width: min(60px, 4.1666666667vw);
  }
  .o-list__report_card_cnt {
    padding: min(10px, 0.6944444444vw) min(24px, 1.6666666667vw) min(24px, 1.6666666667vw);
  }
  .o-list__report_card_ttl {
    font-size: min(22px, 1.5277777778vw);
    line-height: 1.8181818182;
  }
  .o-list__report_card_txt {
    margin-top: min(2px, 0.1388888889vw);
    font-size: min(14px, 0.9722222222vw);
    line-height: 1.7142857143;
  }
  .o-list__report_card_cat {
    margin-top: min(13px, 0.9027777778vw);
    padding: min(6px, 0.4166666667vw) min(8px, 0.5555555556vw);
    font-size: min(13px, 0.9027777778vw);
  }
  .o-modal__cnt {
    padding: min(60px, 4.1666666667vw) 0;
  }
  .o-modal__cnt_inner {
    width: auto;
    height: min(537px, 37.2916666667vw);
    max-height: 66.6253101737vh;
  }
  .o-modal__close {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: min(60px, 4.1666666667vw);
    max-height: 7.4441687345vh;
    transform: translate3d(300%, -173.3333333333%, 0);
  }
  .o-pagetop__btn {
    right: min(76px, 5.2777777778vw);
    bottom: min(20px, 1.3888888889vw);
    width: min(60px, 4.1666666667vw);
  }
  .o-swiper__item_box {
    width: min(996px, 69.1666666667vw);
  }
  .o-swiper__item_box.swiper-slide-active .p-index__card::before {
    opacity: 0;
  }
  .o-swiper__arrow {
    left: 50% !important;
    width: min(60px, 4.1666666667vw);
    height: min(60px, 4.1666666667vw);
    transform: translate3d(max(-498px, -34.5833333333vw), -50%, 0);
  }
  .o-swiper__arrow--next {
    right: 50% !important;
    left: auto !important;
    transform: translate3d(min(498px, 34.5833333333vw), -50%, 0);
  }
  .o-swiper__arrow_cat {
    display: none;
  }
  .o-swiper__pagination {
    margin-top: min(40px, 2.7777777778vw);
  }
  .o-swiper__pagination .swiper-pagination-bullet {
    width: min(16px, 1.1111111111vw);
    height: min(16px, 1.1111111111vw);
    margin: 0 min(10px, 0.6944444444vw) !important;
  }
  .o-swiper__pagination_cat {
    display: none;
  }
  .o-ttl__card_ttl {
    max-width: min(1128px, 78.3333333333vw);
    font-size: min(36px, 2.5vw);
    line-height: 1.8333333333;
  }
  .o-ttl__card_ttl--to_m {
    max-width: min(1128px, 78.3333333333vw);
  }
  .o-ttl__card_ttl--pickup {
    margin-top: min(48px, 3.3333333333vw);
  }
  .o-ttl__card_ttl--pickup_l {
    margin-top: min(68px, 4.7222222222vw);
  }
  .o-txt__gray_band {
    max-width: min(1028px, 71.3888888889vw);
    margin: min(34px, 2.3611111111vw) auto 0;
    padding: 0 min(44px, 3.0555555556vw);
    font-size: min(20px, 1.3888888889vw);
    line-height: 2;
  }
  .o-x__wrap--mt_arrow_green {
    margin-top: min(60px, 4.1666666667vw);
  }
  .o-x__inner {
    max-width: min(1100px, 76.3888888889vw);
    padding: min(70px, 4.8611111111vw) 0;
    gap: min(60px, 4.1666666667vw);
    border: min(2px, 0.1388888889vw) solid #094;
  }
  .o-x__inner_left {
    flex: 0 0 min(71px, 4.9305555556vw);
  }
  .o-x__inner_right {
    flex: 0 0 min(487px, 33.8194444444vw);
  }
  .p-404__inner {
    padding-top: min(100px, 6.9444444444vw);
  }
  .p-404__jp_txt {
    font-size: min(32px, 2.2222222222vw);
  }
  .p-404__en_txt {
    font-size: min(80px, 5.5555555556vw);
  }
  .p-campaign__band_term {
    background-image: url("../img/campaign-x/bg-band-term-pc.png");
  }
  .p-campaign__band_term_inner {
    max-width: min(1072px, 74.4444444444vw);
    padding: min(50px, 3.4722222222vw) 0;
    gap: min(32px, 2.2222222222vw);
  }
  .p-campaign__term_left {
    flex: 0 0 min(340px, 23.6111111111vw);
  }
  .p-campaign__term_ttl {
    padding: min(1px, 0.0694444444vw) 0;
    border: min(2px, 0.1388888889vw) solid #094;
    font-size: min(36px, 2.5vw);
    line-height: 1.8333333333;
  }
  .p-campaign__term_right {
    flex: 0 0 min(700px, 48.6111111111vw);
    font-size: min(28px, 1.9444444444vw);
  }
  .p-campaign__term_right p + p {
    margin-top: min(18px, 1.25vw);
  }
  .p-campaign__intro {
    margin-top: min(60px, 4.1666666667vw);
    font-size: min(24px, 1.6666666667vw);
  }
  .p-campaign__page_link_wrap {
    grid-template-columns: repeat(3, 1fr);
    max-width: min(1128px, 78.3333333333vw);
    margin-top: min(56px, 3.8888888889vw);
    padding-bottom: min(80px, 5.5555555556vw);
    gap: min(24px, 1.6666666667vw);
  }
  .p-campaign__page_link_box {
    min-height: min(100px, 6.9444444444vw);
    padding: min(10px, 0.6944444444vw);
    gap: min(10px, 0.6944444444vw);
    border-radius: min(24px, 1.6666666667vw);
  }
  .p-campaign__page_link_txt {
    font-size: min(28px, 1.9444444444vw);
    line-height: 1.4285714286;
  }
  .p-campaign__page_link_arrow {
    position: static;
    width: min(15px, 1.0416666667vw);
  }
  .p-campaign__angle_intro {
    margin-top: min(40px, 2.7777777778vw);
    font-size: min(32px, 2.2222222222vw);
  }
  .p-campaign__method_step {
    max-width: min(1100px, 76.3888888889vw);
    margin: min(52px, 3.6111111111vw) auto min(60px, 4.1666666667vw);
  }
  .p-campaign__method_box {
    display: flex;
    align-items: stretch;
    justify-content: center;
    box-shadow: 0 min(4px, 0.2777777778vw) min(36px, 2.5vw) 0 rgba(0, 0, 0, 0.12);
  }
  .p-campaign__method_img {
    flex: 0 0 min(580px, 40.2777777778vw);
  }
  .p-campaign__method_cnt {
    display: flex;
    flex: 0 0 min(520px, 36.1111111111vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 0 0 min(18px, 1.25vw);
    font-size: min(28px, 1.9444444444vw);
  }
  .p-campaign__method_cnt p.is-care {
    margin-top: min(14px, 0.9722222222vw);
    font-size: min(20px, 1.3888888889vw);
  }
  .p-campaign__method_arrow {
    padding: min(38px, 2.6388888889vw) 0;
  }
  .p-campaign__method_arrow svg {
    width: min(27px, 1.875vw);
  }
  .p-campaign__method_btn {
    margin-top: min(80px, 5.5555555556vw);
    padding-bottom: min(116px, 8.0555555556vw);
  }
  .p-campaign__prize_list {
    max-width: min(1100px, 76.3888888889vw);
    margin-top: min(51px, 3.5416666667vw);
    padding-bottom: min(100px, 6.9444444444vw);
    gap: min(40px, 2.7777777778vw);
  }
  .p-campaign__prize_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    min-height: min(400px, 27.7777777778vw);
    padding: min(60px, 4.1666666667vw) min(60px, 4.1666666667vw) min(40px, 2.7777777778vw);
    border-radius: min(24px, 1.6666666667vw);
    background-image: url("../img/campaign-x/bg-prize-box-pc.png");
  }
  .p-campaign__prize_ttl {
    gap: min(8px, 0.5555555556vw);
  }
  .p-campaign__prize_ttl_box {
    padding: 0 min(12px, 0.8333333333vw);
    font-size: min(36px, 2.5vw);
    line-height: 1.3888888889;
  }
  .p-campaign__prize_ttl_box--fs_s {
    font-size: min(32px, 2.2222222222vw);
    line-height: 1.5;
  }
  .p-campaign__prize_desc {
    font-size: min(36px, 2.5vw);
    line-height: 1.4;
  }
  .p-campaign__prize_desc p.is-fs_s {
    margin-top: min(30px, 2.0833333333vw);
    font-size: min(28px, 1.9444444444vw);
    line-height: 1.4285714286;
  }
  .p-campaign__prize_desc p.is-care {
    margin-top: min(24px, 1.6666666667vw);
    font-size: min(20px, 1.3888888889vw);
    line-height: 1.6;
  }
  .p-campaign__prize_img {
    flex: 0 0 min(380px, 26.3888888889vw);
    margin-top: 0;
  }
  .p-campaign__prize_img--s {
    flex: 0 0 min(391.6px, 27.1944444444vw);
  }
  .p-campaign__prize_img--ab {
    flex: 0 0 min(411.8px, 28.5972222222vw);
  }
  .p-campaign__rule_area {
    margin-top: min(48px, 3.3333333333vw);
    padding-bottom: min(120px, 8.3333333333vw);
  }
  .p-campaign__rule_area_inner {
    max-height: min(580px, 40.2777777778vw);
    padding: min(52px, 3.6111111111vw) min(60px, 4.1666666667vw);
  }
  .p-campaign__rule_area_inner p + p {
    margin-top: 2em;
  }
  .p-campaign__rule_area_ttl {
    margin-bottom: 2em;
  }
  .p-campaign__arrow_green {
    width: min(30px, 2.0833333333vw);
  }
  .p-content__cleague_btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: min(25.2px, 1.75vw);
  }
  .p-content__cleague_btn_all {
    width: min(162px, 11.25vw);
    height: min(72px, 5vw);
    margin: 0;
    font-size: min(18px, 1.25vw);
  }
  .p-content__cleague_btn_all.is-current::before {
    width: min(172.8px, 12vw);
    height: min(82.8px, 5.75vw);
    border: min(1.8px, 0.125vw) solid #094;
    filter: blur(min(9px, 0.625vw));
  }
  .p-content__cleague_btn_all.is-current::after {
    border: min(2px, 0.1388888889vw) solid #8096A3;
  }
  .p-content__cleague_btn_list {
    max-width: min(558px, 38.75vw);
    margin: 0;
    gap: min(25.2px, 1.75vw);
  }
  .p-content__cleague_btn_item.is-current::before {
    width: min(84px, 5.8333333333vw);
    height: min(84px, 5.8333333333vw);
    border: min(1.8px, 0.125vw) solid #094;
    filter: blur(min(9px, 0.625vw));
  }
  .p-content__cleague_btn_item.is-current::after {
    border: min(2px, 0.1388888889vw) solid #8096A3;
  }
  .p-content__pickup_wrap {
    margin-bottom: min(102px, 7.0833333333vw);
  }
  .p-content__cat_wrap {
    gap: min(42px, 2.9166666667vw);
  }
  .p-content__relation {
    margin-top: min(62px, 4.3055555556vw);
  }
  .p-content__classification {
    max-width: min(1128px, 78.3333333333vw);
    padding-bottom: min(182px, 12.6388888889vw);
    gap: min(20px, 1.3888888889vw);
  }
  .p-content__classification_team {
    flex: 0 0 min(60px, 4.1666666667vw);
  }
  .p-content__classification_cat {
    font-size: min(16px, 1.1111111111vw);
  }
  .p-content__eyecatch {
    top: max(-142px, -9.8611111111vw);
    max-width: min(936px, 65vw);
    margin-bottom: max(-77px, -5.3472222222vw);
  }
  .p-content__eyecatch--modal:hover {
    opacity: 1;
  }
  .p-content__eyecatch--modal:hover .p-content__eyecatch_youtube_icon {
    opacity: 0.6;
  }
  .p-content__eyecatch_youtube_icon {
    width: min(100px, 6.9444444444vw);
    transition: 0.4s;
  }
  .p-cookie__item_list {
    margin-top: min(40px, 2.7777777778vw);
  }
  .p-cookie__item_list > li {
    font-size: min(16px, 1.1111111111vw);
  }
  .p-cookie__item_box > dt {
    font-size: min(16px, 1.1111111111vw);
  }
  .p-cookie__item_txt {
    font-size: min(16px, 1.1111111111vw);
  }
  .p-cookie__item_txt--mt_type1 {
    margin-top: min(40px, 2.7777777778vw);
  }
  .p-cookie__item_table {
    margin-top: min(40px, 2.7777777778vw);
  }
  .p-cookie__item_table table tr th {
    padding: min(30px, 2.0833333333vw) min(30px, 2.0833333333vw) min(30px, 2.0833333333vw) 0;
  }
  .p-cookie__item_table table tr th:nth-last-child(1) {
    padding-right: 0;
  }
  .p-cookie__item_table table tr td {
    padding: min(30px, 2.0833333333vw) min(30px, 2.0833333333vw) min(30px, 2.0833333333vw) 0;
  }
  .p-cookie__item_table table tr td:nth-last-child(1) {
    padding-right: 0;
  }
  .p-cookie__end_txt {
    padding-bottom: min(100px, 6.9444444444vw);
    font-size: min(16px, 1.1111111111vw);
  }
  .p-index__kv_img {
    bottom: 0;
  }
  .p-index__kv_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: none;
    margin: 0;
    padding: 0 min(36px, 2.5vw) min(12px, 0.8333333333vw);
    text-shadow: 0 0 min(4px, 0.2777777778vw) #000000;
  }
  .p-index__kv_bottom p {
    font-size: min(14px, 0.9722222222vw);
    line-height: 2;
  }
  .p-index__kv_logo {
    top: 49lvh;
    width: min(521px, 36.1805555556vw);
  }
  .p-index__kv_inner {
    height: min(3800px, 263.8888888889vw);
  }
  .p-index__kv_inner_top {
    max-width: min(820px, 56.9444444444vw);
    font-size: min(20px, 1.3888888889vw);
  }
  .p-index__kv_inner_top p + p {
    margin-top: min(36px, 2.5vw);
  }
  .p-index__kv_inner_top p.is-fs_l {
    font-size: min(26px, 1.8055555556vw);
    line-height: 1.6923076923;
  }
  .p-index__cleague {
    padding: min(96px, 6.6666666667vw) 0 min(88px, 6.1111111111vw);
  }
  .p-index__cleague_inner {
    width: min(936px, 65vw);
    margin: 0 auto;
  }
  .p-index__cleague_ttl_intro {
    margin-top: min(44px, 3.0555555556vw);
    font-size: min(36px, 2.5vw);
    line-height: 1.2777777778;
  }
  .p-index__cleague_project_clm {
    grid-template-columns: 1fr 1fr;
    margin-top: min(32px, 2.2222222222vw);
    gap: min(36px, 2.5vw);
  }
  .p-index__cleague_project_ttl {
    font-size: min(24px, 1.6666666667vw);
    line-height: 1.9166666667;
  }
  .p-index__cleague_project_modal {
    margin-top: min(10px, 0.6944444444vw);
  }
  .p-index__cleague_project_intro {
    max-width: min(744px, 51.6666666667vw);
    margin-top: min(37.5px, 2.6041666667vw);
    font-size: min(19px, 1.3194444444vw);
    line-height: 1.2631578947;
  }
  .p-index__cleague_project_btn {
    margin-top: min(37.5px, 2.6041666667vw);
  }
  .p-index__cleague_news {
    margin-top: min(60px, 4.1666666667vw);
    padding: min(40px, 2.7777777778vw) min(60px, 4.1666666667vw) min(48px, 3.3333333333vw);
  }
  .p-index__cleague_news_ttl {
    font-size: min(26px, 1.8055555556vw);
    line-height: 1.6923076923;
  }
  .p-index__cleague_news_list {
    margin-top: min(10px, 0.6944444444vw);
    margin-bottom: min(24px, 1.6666666667vw);
    gap: min(16px, 1.1111111111vw);
  }
  .p-index__cleague_news_list > li {
    padding: min(2px, 0.1388888889vw) 0;
  }
  .p-index__cleague_news_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: min(20px, 1.3888888889vw);
  }
  .p-index__cleague_news_item_txt {
    font-size: min(16px, 1.1111111111vw);
    line-height: 1.875;
  }
  .p-index__cleague_news_item_time {
    flex: 0 0 min(156px, 10.8333333333vw);
    margin-top: 0;
    font-size: min(16px, 1.1111111111vw);
    line-height: 1.875;
  }
  .p-index__cleague_news_btn {
    margin-top: min(24px, 1.6666666667vw);
  }
  .p-index__band {
    padding: min(43px, 2.9861111111vw) 0;
  }
  .p-index__band--line {
    border-top: min(8px, 0.5555555556vw) solid #e0e0e0;
  }
  .p-index__band_bg_green {
    background-image: url("../img/top/bg-band-green-pc.png");
  }
  .p-index__band_bg_img {
    height: 62.5vw;
    background-image: url("../img/top/bg-band-pc.png");
  }
  .p-index__band_ttl {
    font-size: min(44px, 3.0555555556vw);
  }
  .p-index__angle {
    padding: min(64px, 4.4444444444vw) 0 min(80px, 5.5555555556vw);
  }
  .p-index__angle_bg {
    height: 58.6111111111vw;
    background-image: url("../img/top/bg-angle-pc.png");
  }
  .p-index__angle_bg--project {
    height: 58.6111111111vw;
    background-image: url("../img/top/bg-angle-pc.png");
  }
  .p-index__angle_bg--project_movie {
    height: 58.6111111111vw;
    background-image: url("../img/top/bg-angle-pc.png");
  }
  .p-index__angle_inner--sp_inner {
    padding: 0;
  }
  .p-index__angle_ttl {
    max-width: min(1128px, 78.3333333333vw);
    font-size: min(44px, 3.0555555556vw);
  }
  .p-index__angle_ttl--project {
    font-size: min(44px, 3.0555555556vw);
  }
  .p-index__angle_ttl--campaign {
    font-size: min(44px, 3.0555555556vw);
  }
  .p-index__angle_ttl--card {
    margin-top: min(50px, 3.4722222222vw);
  }
  .p-index__angle_detail {
    max-width: none;
    margin-top: min(34px, 2.3611111111vw);
    font-size: min(20px, 1.3888888889vw);
  }
  .p-index__angle_detail--mt_none {
    margin-top: 0;
  }
  .p-index__angle_detail--project {
    text-align: center;
  }
  .p-index__sec_kv {
    max-width: min(1128px, 78.3333333333vw);
    margin-top: min(50px, 3.4722222222vw);
  }
  .p-index__sec_kv--mt_none {
    margin-top: 0;
  }
  .p-index__sec_kv_band {
    max-width: min(1128px, 78.3333333333vw);
    margin-bottom: min(24px, 1.6666666667vw);
  }
  .p-index__sec_kv_band_inner {
    padding: min(3px, 0.2083333333vw) min(12px, 0.8333333333vw);
    font-size: min(28px, 1.9444444444vw);
    line-height: 1.6428571429;
  }
  .p-index__sec_kv_img--join {
    max-width: min(936px, 65vw);
  }
  .p-index__sec_kv_img--sustainable {
    max-width: min(744px, 51.6666666667vw);
  }
  .p-index__sec_kv_img--know {
    max-width: min(720px, 50vw);
  }
  .p-index__sec_kv_detail_txt {
    font-size: min(19px, 1.3194444444vw);
    line-height: 1.7368421053;
    text-align: center;
  }
  .p-index__sec_kv_detail_btn {
    margin-top: min(20px, 1.3888888889vw);
  }
  .p-index__sec_kv_txt {
    max-width: none;
    margin-top: min(22px, 1.5277777778vw);
    font-size: min(18px, 1.25vw);
    line-height: 1.8;
    text-align: center;
  }
  .p-index__card_wrap {
    margin-top: min(28px, 1.9444444444vw);
  }
  .p-index__card {
    width: min(936px, 65vw);
    padding: min(48px, 3.3333333333vw) min(96px, 6.6666666667vw) min(54px, 3.75vw);
    box-shadow: 0 min(4px, 0.2777777778vw) min(36px, 2.5vw) 0 rgba(0, 0, 0, 0.12);
  }
  .p-index__card + .p-index__card {
    margin-top: min(40px, 2.7777777778vw);
  }
  .p-index__card--tomose_nighter {
    margin-top: min(60px, 4.1666666667vw);
    padding: min(32px, 2.2222222222vw) min(96px, 6.6666666667vw) min(40px, 2.7777777778vw);
  }
  .p-index__card--news_prev {
    margin-top: 0;
  }
  .p-index__card--know {
    width: min(860px, 59.7222222222vw);
    margin-top: min(28px, 1.9444444444vw);
    padding: min(48px, 3.3333333333vw) min(60px, 4.1666666667vw) min(54px, 3.75vw);
  }
  .p-index__card--swiper {
    box-shadow: 0 min(4px, 0.2777777778vw) min(36px, 2.5vw) 0 rgba(0, 0, 0, 0.12);
  }
  .p-index__card--swiper::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    content: "";
    opacity: 0.8;
    pointer-events: none;
    -webkit-user-select: none;
    z-index: 5;
    transition: opacity 0.4s ease-in-out;
            user-select: none;
  }
  .p-index__card_prev_ttl {
    margin-top: min(50px, 3.4722222222vw);
    font-size: min(44px, 3.0555555556vw);
  }
  .p-index__card_item_team {
    position: absolute;
    top: min(36px, 2.5vw);
    right: min(96px, 6.6666666667vw);
    width: min(108px, 7.5vw);
    margin-bottom: 0;
  }
  .p-index__card_item_header {
    gap: min(24px, 1.6666666667vw);
  }
  .p-index__card_item_logo {
    flex: 0 0 min(96px, 6.6666666667vw);
  }
  .p-index__card_item_ttl {
    padding-right: min(108px, 7.5vw);
    font-size: min(26px, 1.8055555556vw);
    line-height: 1.6923076923;
  }
  .p-index__card_item_intro {
    margin-top: min(23px, 1.5972222222vw);
    font-size: min(20px, 1.3888888889vw);
  }
  .p-index__card_item_intro p + p {
    margin-top: min(22px, 1.5277777778vw);
  }
  .p-index__card_item_kv {
    margin-top: min(35px, 2.4305555556vw);
  }
  .p-index__card_item_center_link {
    margin-top: min(40px, 2.7777777778vw);
  }
  .p-index__card_item_clm {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: min(34px, 2.3611111111vw);
  }
  .p-index__card_item_clm_text {
    flex: 0 0 min(442px, 30.6944444444vw);
    font-size: min(18px, 1.25vw);
    line-height: 1.7777777778;
  }
  .p-index__card_item_clm_text p + p {
    margin-top: min(10px, 0.6944444444vw);
  }
  .p-index__card_item_clm_img {
    flex: 0 0 min(278px, 19.3055555556vw);
    margin-top: 0;
  }
  .p-index__card_item_care {
    margin-top: min(15px, 1.0416666667vw);
    font-size: min(14px, 0.9722222222vw);
    line-height: 1.6;
  }
  .p-index__ambassador_ttl {
    font-size: min(28px, 1.9444444444vw);
    line-height: 1.6428571429;
  }
  .p-index__ambassador_list {
    grid-template-columns: 1fr 1fr;
    max-width: min(1128px, 78.3333333333vw);
    margin-top: min(36px, 2.5vw);
    gap: min(12px, 0.8333333333vw) min(24px, 1.6666666667vw);
  }
  .p-index__ambassador_item_img {
    flex: 0 0 min(168px, 11.6666666667vw);
  }
  .p-index__ambassador_item_txt {
    padding: 0 min(36px, 2.5vw);
  }
  .p-index__ambassador_item_txt > dt {
    font-size: min(22px, 1.5277777778vw);
    line-height: 1.8181818182;
  }
  .p-index__ambassador_item_txt > dd {
    margin-top: min(20px, 1.3888888889vw);
    font-size: min(16px, 1.1111111111vw);
    line-height: 1.875;
  }
  .p-index__navigator {
    max-width: min(720px, 50vw);
  }
  .p-index__navigator_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .p-index__navigator_img {
    position: static;
    flex: 0 0 min(213px, 14.7916666667vw);
    width: 100%;
  }
  .p-index__navigator_info {
    flex: 0 0 min(467px, 32.4305555556vw);
  }
  .p-index__navigator_person {
    min-height: 0;
    padding-left: 0;
    font-size: min(20px, 1.3888888889vw);
    line-height: 1.65;
  }
  .p-index__navigator_profile {
    margin-top: min(26px, 1.8055555556vw);
    font-size: min(14px, 0.9722222222vw);
    line-height: 1.8571428571;
  }
  .p-index__coming_soon {
    max-width: min(258px, 17.9166666667vw);
    min-height: min(64px, 4.4444444444vw);
    margin-top: min(40px, 2.7777777778vw);
    font-size: min(22px, 1.5277777778vw);
    line-height: 1.8181818182;
  }
  .p-index__archive_list {
    max-width: min(552px, 38.3333333333vw);
    gap: min(48px, 3.3333333333vw);
  }
  .p-index__archive_item_btn {
    margin-top: min(24px, 1.6666666667vw);
  }
  .p-index__tomosou {
    padding: min(87px, 6.0416666667vw) 0 min(96px, 6.6666666667vw);
  }
  .p-index__tomosou_ttl {
    font-size: min(28px, 1.9444444444vw);
    line-height: 1.6428571429;
  }
  .p-index__tomosou_img {
    max-width: min(936px, 65vw);
    margin-top: min(51px, 3.5416666667vw);
  }
  .p-index__tomosou_btn {
    margin-top: min(40px, 2.7777777778vw);
  }
  .p-index__campaign {
    margin-top: min(80px, 5.5555555556vw);
  }
  .p-index__campaign_btn {
    margin-top: min(40px, 2.7777777778vw);
  }
  .p-news__item_list {
    max-width: min(936px, 65vw);
    margin-top: min(80px, 5.5555555556vw);
  }
  .p-news__item_list > li {
    padding: min(23px, 1.5972222222vw) 0 min(15px, 1.0416666667vw);
  }
  .p-news__item_list > li + li {
    margin-top: 0;
  }
  .p-news__item_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .p-news__item_txt {
    font-size: min(16px, 1.1111111111vw);
    line-height: 1.875;
  }
  .p-news__item_time {
    flex: 0 0 min(156px, 10.8333333333vw);
    margin-top: 0;
    font-size: min(16px, 1.1111111111vw);
    line-height: 1.875;
  }
  .p-report__sns {
    margin-top: min(80px, 5.5555555556vw);
  }
  .p-report__sns_ttl {
    font-size: min(22px, 1.5277777778vw);
    line-height: 1.8181818182;
  }
  .p-report__sns_link_wrap {
    flex-direction: row;
    max-width: min(1128px, 78.3333333333vw);
    margin-top: min(16px, 1.1111111111vw);
    gap: min(12px, 0.8333333333vw);
  }
  .p-report__sns_link {
    min-height: min(60px, 4.1666666667vw);
    gap: min(12px, 0.8333333333vw);
    border-radius: min(8px, 0.5555555556vw);
  }
  .p-report__sns_link:hover {
    opacity: 0.6;
  }
  .p-report__sns_icon {
    width: min(28px, 1.9444444444vw);
  }
  .p-report__sns_icon--facebook {
    width: min(30px, 2.0833333333vw);
  }
  .p-report__sns_icon--line {
    width: min(32px, 2.2222222222vw);
  }
  .p-report__sns_text {
    font-size: min(18px, 1.25vw);
    line-height: 1.4444444444;
  }
  .p-tomose_nighter__schedule {
    margin-top: min(85px, 5.9027777778vw);
  }
  .p-tomose_nighter__schedule table caption {
    margin-bottom: min(7px, 0.4861111111vw);
    font-size: min(20px, 1.3888888889vw);
    line-height: 1.5;
  }
  .p-tomose_nighter__schedule table tr {
    display: table-row;
  }
  .p-tomose_nighter__schedule table tr th {
    display: table-cell;
    padding: min(15px, 1.0416666667vw) min(20px, 1.3888888889vw);
    border: 1px solid #000000;
    font-size: min(18px, 1.25vw);
    vertical-align: middle;
  }
  .p-tomose_nighter__schedule table tr td {
    display: table-cell;
    padding: min(16px, 1.1111111111vw) min(20px, 1.3888888889vw);
    border: 1px solid #000000;
    font-size: min(16px, 1.1111111111vw);
  }
  .p-tomose_nighter__schedule table tr + tr {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (orientation: portrait){
  .p-index__kv_inner {
    height: min(4800px, 333.3333333333vw);
  }
}
@media (min-width: 1025px){
  .visible_to_l {
    display: none !important;
  }
  .visible_l {
    display: block !important;
  }
}
@media (min-width: 1281px){
  .visible_to_xl {
    display: none !important;
  }
  .visible_xl {
    display: block !important;
  }
}
@media (min-width: 1441px){
  .visible_to_xxl {
    display: none !important;
  }
  .visible_xxl {
    display: block !important;
  }
}
@media (min-width: 1513px){
  .visible_to_xxxl {
    display: none !important;
  }
  .visible_xxxl {
    display: block !important;
  }
}