/********************************
* インナー
********************************/

/********************************
* フォント
********************************/

:root {
  --font-shippori-mincho: "Shippori Mincho B1", serif;
  --font-noto-sans-jp: "Noto Sans JP", sans-serif;
}

/********************************
* カラー
********************************/

:root {
  --color-base: #00215b;
  --color-white: #fff;
  --color-gold: #c09651;
  --color-gold02: #be9e63;
  --color-orange: #e35728;
  --color-teal: #12adab;
  --color-red: #e95550;
  --color-blue: #1455ad;
  --color-light-blue: rgba(255, 255, 255, 0.9);
  --color-border: #fffdf7;
}

html {
  font-size: 16px;
}

body {
  background-attachment: fixed;
  background-image: -webkit-image-set(
    url(../images/background@2x.webp) type("image/webp"),
    url(../images/background@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/background@2x.webp) type("image/webp"),
    url(../images/background@2x.png) type("image/png")
  );
  background-position: center;
  background-repeat: repeat-y;
  background-size: cover;
  color: #00215b;
  color: var(--color-base);
  font-family: "Shippori Mincho B1", serif;
  font-family: var(--font-shippori-mincho);
}

/* link */

/* ============================================ */

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

/* img */

/* ============================================ */

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */

/* ============================================ */

*,
::before,
::after {
  border-style: solid;
  border-width: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 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 {
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
  line-height: 1.15; /* 1 */
}

/* 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 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */

/* ============================================ */

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 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 {
  border-top-width: 1px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /* 1 */
  clear: both;
  color: inherit;
  height: 0; /* 1 */
  margin: 0;
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

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-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * 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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  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 */
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  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 {
  margin: 0;
  min-width: 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-collapse: collapse;
  border-color: inherit; /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

/* フェード設定 */

/* ============================================ */

.splide__container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.l-inner {
  height: inherit;
  margin: 0 auto;
  max-width: calc(1300px + 6.6666%);
  padding-left: 3.3333%;
  padding-right: 3.3333%;
  width: 100%;
}

.c-accordion summary::-webkit-details-marker {
  display: none;
}

.c-accordion__title {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #be9e63;
  background: var(--color-gold02);
  border-radius: 2.5rem;
  color: #fff;
  color: var(--color-white);
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.25rem;
  font-weight: 800;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 130%;
  padding-block: 1rem 1.0625rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.c-accordion__title::before {
  border: 0.125rem solid #fff;
  border: 0.125rem solid var(--color-white);
  border-radius: 50%;
  content: "";
  height: 3.25rem;
  position: absolute;
  right: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3.25rem;
}

.c-accordion__icon i {
  font-size: 1rem;
  position: relative;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-accordion.is-open .c-accordion__icon i {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.c-accordion__content {
  overflow: hidden;
  text-decoration: none;
}

/* .c-accordion--type1 */

.c-accordion--type1 .c-accordion__title {
  background: #fff;
  color: #666;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}

.c-accordion--type1 .c-accordion__icon i {
  font-size: 1.25rem;
}

/* .c-accordion--type2 */

.c-accordion--type2 .c-accordion__title {
  position: relative;
}

.c-accordion--type2 .c-accordion__icon::before,
.c-accordion--type2 .c-accordion__icon::after {
  background: #fff;
  border-radius: 0.03125rem;
  content: "";
  height: 0.1375rem;
  position: absolute;
  right: 1.1875rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 1.28125rem;
}

.c-accordion--type2 .c-accordion__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.c-accordion--type2.is-open .c-accordion__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.c-application {
  grid-gap: 2rem;
  background: #fff;
  background: var(--color-white);
  border: 0.125rem solid #c09651;
  border: 0.125rem solid var(--color-gold);
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  margin-inline: auto;
  max-width: 56.25rem;
  padding: 3.125rem 2.875rem 3.125rem 3.125rem;
  width: 100%;
}

.c-application__title {
  color: #1455ad;
  color: var(--color-blue);
  font-family: "Noto Sans JP", sans-serif;
  font-family: var(--font-noto-sans-jp);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 140%;
}

.c-application__texts {
  margin-top: 0.5rem;
}

.c-application__text,
.c-application__address {
  font-family: "Noto Sans JP", sans-serif;
  font-family: var(--font-noto-sans-jp);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 143%;
}

.c-application__text._data {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-application__text._data._link {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

.c-application__text._data::before {
  content: attr(data-number);
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-button01 {
  background: linear-gradient(91deg, #e2c784 0%, #be9e63 100%);
  border: 0.1875rem solid #fffdf7;
  border: 0.1875rem solid var(--color-border);
  border-radius: 3.75rem;
  color: #fff;
  color: var(--color-white);
  display: block;
  margin-inline: auto;
  max-width: 22.5rem;
  max-width: 44.75rem;
  padding-block: 2.125rem 1.875rem;
  text-align: center;
  width: 100%;
  width: 100%;
}

.c-button01__text {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 100%;
  padding-right: 2.4375rem;
  position: relative;
  text-align: center;
}

.c-button01__text::before {
  background-image: -webkit-image-set(
    url(../images/download-icon01@2x.webp) type("image/webp"),
    url(../images/download-icon01@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/download-icon01@2x.webp) type("image/webp"),
    url(../images/download-icon01@2x.png) type("image/png")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.875rem;
  position: absolute;
  right: 0rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.5rem;
}

.c-button01__small {
  font-size: 1.5rem;
}

.c-button01__-2 {
  letter-spacing: -0.08em;
}

.c-button01__small-sp {
  font-size: 1.5rem;
}

.c-button01__small-pc {
  font-size: 1.5rem;
}

.c-button01__-6 {
  letter-spacing: -0.2em;
}

.c-button01__-9 {
  letter-spacing: -0.03em;
}

.c-button02 {
  background: #be9e63;
  background: var(--color-gold02);
  border-radius: 2.5rem;
  color: #fff;
  color: var(--color-white);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 130%;
  padding-block: 1rem 1.0625rem;
  position: relative;
  text-align: center;
}

.c-button02::before {
  background-image: -webkit-image-set(
    url(../images/circle-icon@2x.webp) type("image/webp"),
    url(../images/circle-icon@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/circle-icon@2x.webp) type("image/webp"),
    url(../images/circle-icon@2x.png) type("image/png")
  );
  background-size: cover;
  content: "";
  height: 3.25rem;
  position: absolute;
  right: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3.25rem;
}

.c-campaign {
  margin-inline: auto;
  max-width: 56.25rem;
  width: 100%;
}

.c-campaign__img {
  aspect-ratio: 688/96;
  display: block;
  margin-inline: auto;
  max-width: 43rem;
  overflow: hidden;
  width: 100%;
  width: 100%;
}

.c-campaign__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.c-campaign__contents {
  background: rgba(255, 255, 255, 0.9);
  z-index: -2;
}

.c-campaign__content {
  margin-top: -2.9375rem;
  padding: 5.25rem 7.1875rem 5.125rem 6.9375rem;
}

.c-campaign__year {
  font-size: 2rem;
  font-weight: 800;
  line-height: 100%;
}

.c-campaign__month,
.c-campaign__day {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 100%;
}

.c-campaign__month._large {
  font-size: 4rem;
  font-weight: 600;
  line-height: 100%;
}

.c-campaign__month._large._7 {
  letter-spacing: -7.04px;
}

.c-campaign__month._large._1 {
  letter-spacing: -7.04px;
}

.c-campaign__month._large._4 {
  letter-spacing: inherit;
}

.c-campaign__month._large._9 {
  letter-spacing: -7.04px;
}

.c-campaign__month._large._3 {
  letter-spacing: -1.92px;
}

.c-campaign__month._large._0 {
  letter-spacing: -1.92px;
}

.c-campaign__week {
  color: #fff;
  color: var(--color-white);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 100%;
  margin-left: 0.9375rem;
  position: relative;
  z-index: 1;
}

.c-campaign__week::before {
  background-image: -webkit-image-set(
    url(../images/campaign-week@2x.webp) type("image/webp"),
    url(../images/campaign-week@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/campaign-week@2x.webp) type("image/webp"),
    url(../images/campaign-week@2x.png) type("image/png")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 3.0625rem;
  left: 50%;
  position: absolute;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 3.1875rem;
  z-index: -1;
}

.c-campaign__tilde {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 100%;
  padding-inline: 1.3125rem 0.625rem;
}

.c-card01__titles {
  grid-gap: 1.5rem;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  position: relative;
}

.c-card01__titles::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.5625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 2.096875rem;
}

.c-card01__title {
  border-radius: 1.5rem;
  color: #fff;
  color: var(--color-white);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 100%;
  margin-inline: auto;
  padding: 0.3125rem 2.25rem 0.625rem;
  text-align: center;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.c-card01__titleAccentSmall {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 100%;
}

.c-card01__titleAccent._324 {
  letter-spacing: -0.09em;
}

.c-card01__titleAccent._108 {
  letter-spacing: -0.03em;
}

.c-card01__titleAccent._216 {
  letter-spacing: -0.06em;
}

.c-card01__titleAccent._648 {
  letter-spacing: -0.18em;
}

.c-card01__titleAccent._54 {
  letter-spacing: -0.015em;
}

.c-card01__titleAccent._18 {
  letter-spacing: -0.005em;
}

.c-card01__titleAccent._792 {
  letter-spacing: -0.22em;
}

.c-card01__subText {
  font-size: 2rem;
  font-weight: 800;
  line-height: 130%;
  padding-block: 1.5625rem;
  text-align: center;
}

.c-card01__imageBlock {
  padding-inline: 22.0625rem;
}

.c-card01__image {
  margin-inline: auto;
  margin-top: 2.5rem;
  position: relative;
  width: 100%;
}

.c-card01__image::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -1.5rem;
  content: "";
  height: 9.375rem;
  position: absolute;
  right: -4.6875rem;
  width: 9.375rem;
}

.c-card01__img {
  aspect-ratio: 602/523;
  display: block;
  overflow: hidden;
  width: 100%;
}

.c-card01__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.c-card01__texts {
  margin-inline: auto;
  margin-top: 0.9375rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.c-card01__text {
  font-size: 1rem;
  font-weight: 800;
  line-height: 130%;
}

/*=====================
.c-card01._first
=====================*/

.c-card01._first .c-card01__titles::before {
  background-image: -webkit-image-set(
    url(../images/union01@2x.webp) type("image/webp"),
    url(../images/union01@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/union01@2x.webp) type("image/webp"),
    url(../images/union01@2x.png) type("image/png")
  );
}

.c-card01._first .c-card01__title {
  background: #c09651;
  background: var(--color-gold);
}

.c-card01._first .c-card01__image::before {
  background-image: -webkit-image-set(
    url(../images/collabo-number01@2x.webp) type("image/webp"),
    url(../images/collabo-number01@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/collabo-number01@2x.webp) type("image/webp"),
    url(../images/collabo-number01@2x.png) type("image/png")
  );
}

/*=====================
.c-card01._second
=====================*/

.c-card01._second .c-card01__titles::before {
  background-image: -webkit-image-set(
    url(../images/union02@2x.webp) type("image/webp"),
    url(../images/union02@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/union02@2x.webp) type("image/webp"),
    url(../images/union02@2x.png) type("image/png")
  );
}

.c-card01._second .c-card01__title {
  background: #e35728;
  background: var(--color-orange);
}

.c-card01._second .c-card01__image::before {
  background-image: -webkit-image-set(
    url(../images/collabo-number02@2x.webp) type("image/webp"),
    url(../images/collabo-number02@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/collabo-number02@2x.webp) type("image/webp"),
    url(../images/collabo-number02@2x.png) type("image/png")
  );
}

/*=====================
.c-card01._third
=====================*/

.c-card01._third .c-card01__titles::before {
  background-image: -webkit-image-set(
    url(../images/union03@2x.webp) type("image/webp"),
    url(../images/union03@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/union03@2x.webp) type("image/webp"),
    url(../images/union03@2x.png) type("image/png")
  );
}

.c-card01._third .c-card01__title {
  background: #12adab;
  background: var(--color-teal);
}

.c-card01._third .c-card01__image::before {
  background-image: -webkit-image-set(
    url(../images/collabo-number03@2x.webp) type("image/webp"),
    url(../images/collabo-number03@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/collabo-number03@2x.webp) type("image/webp"),
    url(../images/collabo-number03@2x.png) type("image/png")
  );
}

.c-card01._third .c-card01__image {
  margin-top: 0;
}

.c-card02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.25rem;
}

.c-card02__title {
  background: #e95550;
  background: var(--color-red);
  border-radius: 1.875rem;
  color: #fff;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 100%;
  padding-block: 0.4375rem;
  text-align: center;
}

.c-card02__subTitle {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 129%;
  margin-bottom: 1.375rem;
  text-align: center;
}

.c-card02__image {
  margin-inline: auto;
  width: 18.75rem;
}

.c-card02__list {
  font-size: 1rem;
  font-weight: 700;
  line-height: 130%;
}

.c-card03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.875rem;
}

.c-card03__title {
  background: #e95550;
  background: var(--color-red);
  border-radius: 1.875rem;
  color: #fff;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 100%;
  padding-block: 0.4375rem;
  text-align: center;
}

.c-cta {
  /* margin-top: -15.625rem; */
  padding-block: 8rem 6.25rem;
  position: relative;
}

.c-cta::before {
  background-image: -webkit-image-set(
    url(../images/cta-bg.webp) type("image/webp"),
    url(../images/cta-bg.png) type("image/png")
  );
  background-image: image-set(
    url(../images/cta-bg.webp) type("image/webp"),
    url(../images/cta-bg.png) type("image/png")
  );
  background-position: center;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}

.c-cta__inner.l-inner {
  max-width: calc(68.75rem + 6.6666%);
}

.c-cta__image {
  margin-inline: auto;
  max-width: 26.4375rem;
  padding-bottom: 1.96875rem;
  width: 100%;
}

.c-cta__title {
  border-top: 0.0625rem solid #00215b;
  border-top: 0.0625rem solid var(--color-base);
  font-family: "Noto Sans JP", sans-serif;
  font-family: var(--font-noto-sans-jp);
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 100%;
  padding-top: 2.84375rem;
  position: relative;
  text-align: center;
}

.c-cta__title::before,
.c-cta__title::after {
  background: #00215b;
  background: var(--color-base);
  border-radius: 50%;
  content: "";
  height: 0.3125rem;
  position: absolute;
  top: -0.1875rem;
  width: 0.3125rem;
}

.c-cta__title::before {
  left: -0.15625rem;
}

.c-cta__title::after {
  right: -0.15625rem;
}

.c-cta__number {
  font-family: "Noto Sans JP", sans-serif;
  font-family: var(--font-noto-sans-jp);
  font-size: 7.5rem;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 1.25rem;
  margin-inline: auto;
  margin-top: 1.25rem;
  position: relative;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.c-cta__number-1 {
  letter-spacing: inherit;
}

.c-cta__number-2 {
  letter-spacing: 0.01em;
}

.c-cta__text {
  font-family: "Noto Sans JP", sans-serif;
  font-family: var(--font-noto-sans-jp);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 100%;
  margin-top: 1.5625rem;
  text-align: center;
}

.c-cta__copyright {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
}

.c-cta__small {
  font-family: "Noto Sans JP", sans-serif;
  font-family: var(--font-noto-sans-jp);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 100%;
}

.c-cta__logoImage {
  margin-inline: auto;
  margin-top: 2.8125rem;
  width: 16.75rem;
}

.c-cta__textAccent._day9 {
  letter-spacing: 0.05em;
}

.c-cta__textAccent._ten {
  letter-spacing: 0.01em;
}

.c-cta__textAccent._0 {
  letter-spacing: -0.02em;
}

.c-heading01 {
  background: #00215b;
  background: var(--color-base);
  color: #fff;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 100%;
  padding-block: 0.625rem;
  text-align: center;
}

.c-mv__downloadButton {
  bottom: 1.125rem;
  max-width: 21.875rem;
  position: fixed;
  right: 1.125rem;
  width: 100%;
  z-index: 100;
}

.c-step__texts {
  margin-top: 1.875rem;
}

.c-step__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
}

.c-step__textSmall {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 120%;
  margin-top: 0.3125rem;
  text-align: center;
}

.c-step__line-height90 {
  line-height: 90%;
}

.c-step__line-height130 {
  line-height: 130%;
}

.p-ad {
  padding-block: 14.375rem 18.25rem;
  position: relative;
}

.p-ad::before {
  background-image: -webkit-image-set(
    url(../images/ad-background@2x.webp) type("image/webp"),
    url(../images/ad-background@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/ad-background@2x.webp) type("image/webp"),
    url(../images/ad-background@2x.png) type("image/png")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-ad__moya {
  overflow-x: clip;
  position: relative;
  z-index: 10;
}

.p-ad__moya::before {
  background-image: -webkit-image-set(
    url(../images/moya-left@2x.webp) type("image/webp"),
    url(../images/moya-left@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/moya-left@2x.webp) type("image/webp"),
    url(../images/moya-left@2x.png) type("image/png")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: min(23.25rem, 19.375vw);
  left: calc(50% - min(71.875rem, 60%));
  position: absolute;
  top: -7.75rem;
  width: min(42.8125rem, 35.6770833333vw);
}

.p-ad__moya::after {
  background-image: -webkit-image-set(
    url(../images/moya-right@2x.webp) type("image/webp"),
    url(../images/moya-right@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/moya-right@2x.webp) type("image/webp"),
    url(../images/moya-right@2x.png) type("image/png")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: min(25.5rem, 21.25vw);
  position: absolute;
  right: calc(50% - min(72.625rem, 61%));
  top: -12.25rem;
  width: min(43.3125rem, 36.09375vw);
}

.p-ad__inner.l-inner {
  max-width: calc(87.5rem + 6.6666%);
  position: relative;
}

.p-ad__headImage {
  padding-inline: 18.125rem;
  width: 100%;
}

.p-ad__headImg {
  aspect-ratio: 820/327;
  display: block;
  overflow: hidden;
  width: 100%;
}

.p-ad__headImg img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.p-ad__banner {
  margin-top: 2.1875rem;
}

.p-ad__textsContent {
  margin-inline: auto;
  margin-inline: auto;
  margin-top: 3.125rem;
  max-width: 51rem;
  position: relative;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  width: 100%;
}

.p-ad__text::before {
  content: attr(data-number);
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-ad__texts._white {
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-color: var(--color-white);
  -webkit-text-stroke-width: 0.125rem;
  color: #fff;
  color: var(--color-white);
  content: "";
  font-size: 1rem;
  font-weight: 700;
  line-height: 140%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.p-ad__periodImg {
  margin-inline: auto;
  margin-top: 2.875rem;
  max-width: 52.875rem;
  width: 100%;
}

.p-application {
  padding-top: 8rem;
}

.p-application__inner.l-inner {
  max-width: calc(68.75rem + 6.6666%);
}

.p-application__head {
  margin-inline: auto;
  max-width: 43rem;
  width: 100%;
}

.p-application__container {
  background: rgba(255, 255, 255, 0.9);
  background: var(--color-light-blue);
  margin-top: -3rem;
  padding: 5.25rem 3.125rem 3.125rem 3.125rem;
}

.p-application__items {
  grid-gap: 4.6875rem;
  background: #fff;
  background: var(--color-white);
  border: 0.1875rem solid #00215b;
  border: 0.1875rem solid var(--color-base);
  display: -ms-grid;
  display: grid;
  gap: 4.6875rem;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  padding: 3.125rem 3.375rem 3.125rem 3.4375rem;
}

.p-application__item {
  position: relative;
}

.p-application__item::before {
  background-image: -webkit-image-set(
    url(../images/application-line@2x.webp) type("image/webp"),
    url(../images/application-line@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/application-line@2x.webp) type("image/webp"),
    url(../images/application-line@2x.png) type("image/png")
  );
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  position: absolute;
  right: -2.4375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.3125rem;
}

.p-application__item:last-child::before {
  display: none;
}

.p-application__item._small {
  width: 15.4375rem;
}

.p-application__item._small .c-step__image {
  width: 14.5625rem;
}

.p-application__item._small .c-step__texts {
  margin-top: 1.875rem;
}

.p-application__item._small .c-step__text {
  line-height: 97%;
}

.p-application__button {
  margin-inline: auto;
  margin-top: 3.75rem;
  max-width: 44.75rem;
  width: 100%;
}

.p-campaign {
  margin-top: -24.5rem;
  padding-block: 18.75rem 16.75rem;
  position: relative;
}

.p-campaign::before {
  background-image: -webkit-image-set(
    url(../images/campaign-background@2x.webp) type("image/webp"),
    url(../images/campaign-background@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/campaign-background@2x.webp) type("image/webp"),
    url(../images/campaign-background@2x.png) type("image/png")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-campaign__banner {
  margin-left: 1.9375rem;
  max-width: 77.6875rem;
  width: 100%;
}

.p-campaign__period {
  margin-inline: auto;
  margin-top: 1.625rem;
  max-width: 53.0625rem;
  width: 100%;
}

.p-collabo {
  margin-top: 8.1875rem;
}

.p-collabo__inner.l-inner {
  max-width: calc(81.9375rem + 6.6666%);
}

.p-collabo__head {
  margin-inline: auto;
  max-width: 39.625rem;
  width: 100%;
}

.p-collabo__container {
  margin-top: -9.3125rem;
  position: relative;
}

.p-collabo__container::before {
  background-image: -webkit-image-set(
    url(../images/collabo-background@2x.webp) type("image/webp"),
    url(../images/collabo-background@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/collabo-background@2x.webp) type("image/webp"),
    url(../images/collabo-background@2x.png) type("image/png")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  left: 50%;
  position: absolute;
  top: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.p-collabo__image {
  margin-inline: auto;
  padding-inline: 0.75rem;
  padding-top: 12.0625rem;
  width: 100%;
}

.p-collabo__imageImg {
  aspect-ratio: 1286/210;
  display: block;
  overflow: hidden;
  width: 100%;
}

.p-collabo__imageImg {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.p-collabo__items {
  grid-gap: 6.25rem;
  display: -ms-grid;
  display: grid;
  gap: 6.25rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  padding-block: 4.6875rem 11.25rem;
}

.p-component__previewTitle {
  margin-top: 1.875rem;
}

.p-component__preview {
  margin-top: 1.25rem;
}

.p-media01 {
  padding-top: 3.875rem;
  position: relative;
}

.p-media01::before {
  background-image: -webkit-image-set(
    url(../images/about-background.webp) type("image/webp"),
    url(../images/about-background.png) type("image/png")
  );
  background-image: image-set(
    url(../images/about-background.webp) type("image/webp"),
    url(../images/about-background.png) type("image/png")
  );
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  height: 140.75rem;
  left: 0;
  position: absolute;
  top: -21.1875rem;
  width: 100%;
  z-index: -1;
}

@media screen and (min-width: 1920px) {
  .p-campaign::before {
    background-size: contain;
  }

  .p-media01::before {
    height: 200rem;
  }
}

.p-media01__inner.l-inner {
  max-width: calc(69rem + 6.6666%);
}

.p-media01__contents {
  position: relative;
}

.p-media01__contents::before {
  background-image: -webkit-image-set(
    url(../images/media01@2x.webp) type("image/webp"),
    url(../images/media01@2x.png) type("image/png")
  );
  background-image: image-set(
    url(../images/media01@2x.webp) type("image/webp"),
    url(../images/media01@2x.png) type("image/png")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 52.75rem;
  left: calc(50% - 37.625rem);
  position: absolute;
  top: -2.75rem;
  width: 41.0625rem;
}

.p-media01__img {
  aspect-ratio: 657/844;
  display: block;
  overflow: hidden;
  width: 100%;
}

.p-media01__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.p-media__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 4.6875rem;
  margin-left: auto;
  width: 30.5625rem;
}

.p-media__title {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.p-media__titleText {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.078125em;
  line-height: 120%;
  text-align: center;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-media__title-accent {
  letter-spacing: 0.1875em;
}

.p-media__title-accent02 {
  letter-spacing: 0.203125em;
}

.p-media__titleImage {
  width: 7.125rem;
}

.p-media__titleImg {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.p-media__texts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: 0.625rem;
}

.p-media__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
  line-height: 254%;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-media__text-first {
  margin-top: -1rem;
}

.p-overview {
  padding-top: 9.1875rem;
  padding-bottom: 9.1875rem;
}

.p-overview__inner.l-inner {
  max-width: calc(68.75rem + 6.6666%);
}

.p-overview__head {
  margin-inline: auto;
  max-width: 43rem;
  width: 100%;
}

.p-overview__containerBlock {
  background: rgba(255, 255, 255, 0.9);
  background: var(--color-light-blue);
  margin-top: -3rem;
  padding-bottom: 3rem;
}

.p-overview__container {
  padding: 6.125rem 3.125rem 3.125rem 3.125rem;
}

.p-overview__container._second {
  margin-top: -3rem;
}

.p-overview__content {
  margin-top: 3.125rem;
}

.p-overview__content._second {
  margin-top: 3.6875rem;
}

.p-overview__items {
  grid-gap: 1.875rem;
  display: -ms-grid;
  display: grid;
  gap: 1.875rem;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.9375rem;
}

.p-overview__items._column2 {
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  margin-inline: auto;
  max-width: 41rem;
  width: 100%;
}

.p-overview__wrapper {
  margin-top: 3.125rem;
}

.u-hidden-pc {
  display: none;
}

.u-hidden-sp {
  display: block;
}

.u-visually-hidden {
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  border: 0 !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

@media screen and (max-width: 1449px) {
  .c-card01__image::before {
    bottom: -0.625rem;
    height: min(8.75rem, 9.6551724138vw);
    right: -4.3125rem;
    width: min(8.75rem, 9.6551724138vw);
  }

  .p-collabo__container::before {
    height: 266.0227429359vw;
    width: 93.0392832529vw;
  }

  .p-collabo__image {
    padding-inline: 0.75rem;
  }
}

@media screen and (max-width: 1440px) {
  .p-collabo__image {
    padding-inline: 1rem;
  }
}

@media screen and (max-width: 1430px) {
  .p-collabo__image {
    padding-inline: 1.25rem;
  }
}

@media screen and (max-width: 1420px) {
  .p-collabo__image {
    padding-inline: 1.5rem;
  }
}

@media screen and (max-width: 1410px) {
  .p-collabo__image {
    padding-inline: 1.75rem;
  }
}

@media screen and (max-width: 1400px) {
  .p-campaign__banner {
    margin-left: 0;
    padding-inline: 0.25rem;
  }
}

@media screen and (max-width: 1150px) {
  html {
    font-size: 1.2307692308vw;
  }

  .c-card01__image::before {
    bottom: -0.625rem;
    right: -2.9375rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }

  a {
    opacity: 1;
    opacity: initial;
  }

  .l-inner {
    max-width: 37.5rem;
    padding-left: 2.4154589372%;
    padding-right: 2.4154589372%;
  }

  .c-accordion__title {
    font-size: 1.25rem;
    padding-block: 0.5rem 0.375rem;
  }

  .c-accordion__title::before {
    border: 0.0875rem solid #fff;
    border: 0.0875rem solid var(--color-white);
    height: 1.375rem;
    right: 0.625rem;
    width: 1.375rem;
  }

  .c-accordion--type2 .c-accordion__icon::before,
  .c-accordion--type2 .c-accordion__icon::after {
    height: 0.0625rem;
    right: 0.6875rem;
    width: 0.625rem;
  }

  .c-application {
    gap: 0.9375rem;
  }

  .c-application {
    padding: 0.9375rem;
  }

  .c-application__title {
    font-size: 1.25rem;
  }

  .c-application__texts {
    margin-top: 0.625rem;
  }

  .c-application__text,
  .c-application__address {
    font-size: 0.875rem;
  }

  .c-button01 {
    max-width: 23.375rem;
    padding-block: 1.5625rem;
  }

  .c-button01__text {
    font-size: 1.25rem;
    padding-right: 1.625rem;
  }

  .c-button01__text::before {
    height: 1.25rem;
    width: 1rem;
  }

  .c-button01__small {
    font-size: 1rem;
  }

  .c-button01__-2 {
    letter-spacing: -0.08em;
  }

  .c-button01__small-sp {
    font-size: 1rem;
  }

  .c-button01__small-pc {
    font-size: 1.25rem;
  }

  .c-button01__-6 {
    letter-spacing: -0.2em;
  }

  .c-button01__-9 {
    letter-spacing: -0.03em;
  }

  .c-button02 {
    font-size: 1.25rem;
    padding-block: 0.4375rem;
  }

  .c-button02::before {
    height: 1.375rem;
    right: 0.5625rem;
    width: 1.375rem;
  }

  .c-campaign__img {
    aspect-ratio: 313/52;
    max-width: 19.5625rem;
  }

  .c-campaign__content {
    margin-top: -1.6875rem;
    padding: 3.4375rem 1.375rem 1.875rem 0.9375rem;
  }

  .c-campaign__year {
    font-size: 1.25rem;
  }

  .c-campaign__month,
  .c-campaign__day {
    font-size: 1.25rem;
  }

  .c-campaign__month {
    letter-spacing: -1px;
  }

  .c-campaign__month._large {
    font-size: 2.5rem;
    letter-spacing: -5.2px;
  }

  .c-campaign__month._large._7 {
    letter-spacing: -11.2px;
  }

  .c-campaign__month._large._1 {
    letter-spacing: -4.4px;
  }

  .c-campaign__month._large._3 {
    letter-spacing: -1.2px;
  }

  .c-campaign__month._large._0 {
    letter-spacing: -1.2px;
  }

  .c-campaign__week {
    font-size: 1rem;
    margin-left: 0.34375rem;
    vertical-align: text-top;
  }

  .c-campaign__week::before {
    height: 1.5rem;
    width: 1.625rem;
  }

  .c-campaign__tilde {
    font-size: 1.25rem;
    padding-inline: 0.65625rem 0.25rem;
  }

  .c-card01__titles {
    gap: 0.625rem;
  }

  .c-card01__titles::before {
    height: 0.625rem;
    width: 0.8375rem;
  }

  .c-card01__title {
    font-size: 1rem;
    padding: 0.125rem 1.0625rem 0.25rem;
  }

  .c-card01__titleAccentSmall {
    font-size: 0.75rem;
  }

  .c-card01__titleAccent._324 {
    letter-spacing: -0.09em;
  }

  .c-card01__titleAccent._108 {
    letter-spacing: -0.03em;
  }

  .c-card01__titleAccent._216 {
    letter-spacing: -0.06em;
  }

  .c-card01__titleAccent._648 {
    letter-spacing: -0.18em;
  }

  .c-card01__titleAccent._54 {
    letter-spacing: -0.015em;
  }

  .c-card01__titleAccent._18 {
    letter-spacing: -0.005em;
  }

  .c-card01__titleAccent._792 {
    letter-spacing: -0.22em;
  }

  .c-card01__subText {
    display: none;
  }

  .c-card01__imageBlock {
    padding-inline: 1.25rem;
  }

  .c-card01__image {
    margin-top: 1.25rem;
    max-width: 19.375rem;
  }

  .c-card01__image::before {
    bottom: -1.6875rem;
    height: 5.625rem;
    right: -1.6875rem;
    width: 5.625rem;
  }

  .c-card01__img {
    aspect-ratio: 310/300;
  }

  .c-card01__texts {
    margin-inline: auto;
    margin-top: 2.1875rem;
    max-width: 19.375rem;
    width: 100%;
  }

  .c-card01__text {
    font-size: 0.75rem;
  }

  .c-card01._third .c-card01__image::before {
    background-image: -webkit-image-set(
      url(../images/collabo-number03-sp@2x.webp) type("image/webp"),
      url(../images/collabo-number03-sp@2x.png) type("image/png")
    );
    background-image: image-set(
      url(../images/collabo-number03-sp@2x.webp) type("image/webp"),
      url(../images/collabo-number03-sp@2x.png) type("image/png")
    );
    height: 5.625rem;
    width: 5.875rem;
  }

  .c-card01._third .c-card01__image {
    margin-top: 1.25rem;
  }

  .c-card02 {
    gap: 0.9375rem;
  }

  .c-card02__title {
    margin-inline: auto;
    width: 19.4375rem;
  }

  .c-card02__image {
    width: 19.5625rem;
  }

  .c-card02__lists {
    padding-inline: 1.03125rem;
  }

  .c-card03 {
    gap: 0.9375rem;
  }

  .c-card03__title {
    margin-inline: auto;
    width: 19.4375rem;
  }

  .c-card03__image {
    padding-inline: 0.875rem;
    padding-top: 0.8125rem;
  }

  .c-cta {
    /* margin-top: -3.4375rem; */
    padding-block: 4.6875rem 3.125rem;
  }

  .c-cta::before {
    background-image: -webkit-image-set(
      url(../images/cta-bg@sp.webp) type("image/webp"),
      url(../images/cta-bg@sp.png) type("image/png")
    );
    background-image: image-set(
      url(../images/cta-bg@sp.webp) type("image/webp"),
      url(../images/cta-bg@sp.png) type("image/png")
    );
  }

  .c-cta__inner.l-inner {
    max-width: 37.5rem;
  }

  .c-cta__image {
    max-width: 9.9375rem;
    padding-bottom: 1rem;
  }

  .c-cta__title {
    font-size: 1.5rem;
    margin-inline: auto;
    padding-top: 0.875rem;
    width: 23.375rem;
  }

  .c-cta__number {
    font-size: 3rem;
    letter-spacing: -0.01em;
    margin-bottom: 0;
    margin-top: 0.9375rem;
  }

  .c-cta__text {
    font-size: 0.875rem;
    letter-spacing: -0.04em;
    line-height: 130%;
    margin-top: 0.9375rem;
  }

  .c-cta__copyright {
    margin-top: 0.625rem;
  }

  .c-cta__logoImage {
    margin-top: 0.875rem;
  }

  .c-heading01 {
    font-size: 1.25rem;
  }

  .c-mv__downloadButton {
    display: none;
  }

  .c-step__text {
    padding-inline: 1.75rem;
  }

  .p-ad {
    margin-top: 3.125rem;
    padding-block: 4.6875rem 5.375rem;
  }

  .p-ad::before {
    background-image: -webkit-image-set(
      url(../images/ad-background-sp@2x.webp) type("image/webp"),
      url(../images/ad-background-sp@2x.png) type("image/png")
    );
    background-image: image-set(
      url(../images/ad-background-sp@2x.webp) type("image/webp"),
      url(../images/ad-background-sp@2x.png) type("image/png")
    );
  }

  .p-ad__moya::before {
    background-image: -webkit-image-set(
      url(../images/moya-left-sp@2x.webp) type("image/webp"),
      url(../images/moya-left-sp@2x.png) type("image/png")
    );
    background-image: image-set(
      url(../images/moya-left-sp@2x.webp) type("image/webp"),
      url(../images/moya-left-sp@2x.png) type("image/png")
    );
    height: 6.375rem;
    left: calc(50% - 15.6875rem);
    left: calc(50% - min(18.8125rem, 60.5%));
    top: -5.375rem;
    width: 11.9375rem;
  }

  .p-ad__moya::after {
    background-image: -webkit-image-set(
      url(../images/moya-right-sp@2x.webp) type("image/webp"),
      url(../images/moya-right-sp@2x.png) type("image/png")
    );
    background-image: image-set(
      url(../images/moya-right-sp@2x.webp) type("image/webp"),
      url(../images/moya-right-sp@2x.png) type("image/png")
    );
    height: 6.9375rem;
    right: calc(50% - min(19.625rem, 64%));
    top: -6.3125rem;
    width: 13rem;
  }

  .p-ad__inner.l-inner {
    max-width: 37.5rem;
  }

  .p-ad__headImage {
    padding-inline: 0;
  }

  .p-ad__headImg {
    aspect-ratio: 360/157;
    margin-inline: auto;
    max-width: 22.5rem;
    width: 100%;
  }

  .p-ad__banner {
    margin-inline: auto;
    max-width: 23.4375rem;
    width: 100%;
  }

  .p-ad__textsContent {
    margin-inline: auto;
    margin-top: 1rem;
    max-width: 23.375rem;
    width: 100%;
  }

  .p-ad__texts._white {
    font-size: 0.875rem;
  }

  .p-ad__periodImg {
    margin-top: 2.0625rem;
    max-width: 24.4375rem;
  }

  .p-application {
    margin-inline: auto;
    max-width: 24.5625rem;
    padding-top: 3.25rem;
    width: 100%;
  }

  .p-application__inner.l-inner {
    max-width: 37.5rem;
    padding-left: 0;
    padding-right: 0;
  }

  .p-application__head {
    max-width: 19.5625rem;
  }

  .p-application__container {
    margin-top: -1.625rem;
    padding: 0rem 1.875rem;
    padding: 0;
  }

  .p-application__items {
    background: transparent none repeat 0 0 / auto auto padding-box border-box
      scroll;
    background: initial;
    border: 0.1875rem solid transparent;
    gap: 3.5625rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 3.4375rem 2.375rem 3.125rem;
  }

  .p-application__item::before {
    background-image: -webkit-image-set(
      url(../images/application-line-sp@2x.webp) type("image/webp"),
      url(../images/application-line-sp@2x.png) type("image/png")
    );
    background-image: image-set(
      url(../images/application-line-sp@2x.webp) type("image/webp"),
      url(../images/application-line-sp@2x.png) type("image/png")
    );
    bottom: -1.875rem;
    height: 0.3125rem;
    left: 50%;
    top: auto;
    top: initial;
    -webkit-transform: translateY(0%) translateX(-50%);
    transform: translateY(0%) translateX(-50%);
    width: 19.6875rem;
  }

  .p-application__item._small {
    width: 100%;
  }

  .p-application__item._small .c-step__image {
    padding-inline: 2.5rem;
    width: 100%;
  }

  .p-application__item .c-step__image {
    padding-inline: 2.125rem;
    width: 100%;
  }

  .p-application__button {
    margin-top: 3.125rem;
  }

  .p-campaign {
    margin-top: -5.625rem;
    padding-block: 7.25rem 6.1875rem;
  }

  .p-campaign::before {
    background-image: -webkit-image-set(
      url(../images/campaign-background-sp@2x.webp) type("image/webp"),
      url(../images/campaign-background-sp@2x.png) type("image/png")
    );
    background-image: image-set(
      url(../images/campaign-background-sp@2x.webp) type("image/webp"),
      url(../images/campaign-background-sp@2x.png) type("image/png")
    );
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
  }

  .p-campaign__period {
    margin-top: 1.1875rem;
  }

  .p-collabo {
    margin-top: 3.25rem;
  }

  .p-collabo__inner.l-inner {
    max-width: 37.5rem;
    padding-inline: 0.4375rem;
  }

  .p-collabo__head {
    max-width: 24.4375rem;
  }

  .p-collabo__container {
    margin-top: -8.625rem;
  }

  .p-collabo__container::before {
    background-image: -webkit-image-set(
      url(../images/collabo-background-sp@2x.webp) type("image/webp"),
      url(../images/collabo-background-sp@2x.png) type("image/png")
    );
    background-image: image-set(
      url(../images/collabo-background-sp@2x.webp) type("image/webp"),
      url(../images/collabo-background-sp@2x.png) type("image/png")
    );
    height: 131.375rem;
    width: 25rem;
  }

  .p-collabo__image {
    margin-top: 4.8125rem;
    padding-inline: 0.125rem;
    padding-top: 5.1875rem;
    width: 24.625rem;
  }

  .p-collabo__imageImg {
    aspect-ratio: 394/130;
  }

  .p-collabo__items {
    gap: 2.8125rem;
    padding-block: 2.8125rem 3.125rem;
  }

  .p-media01 {
    margin-top: -3.125rem;
  }

  .p-media01::before {
    background-image: -webkit-image-set(
      url(../images/about-background-sp@2x.webp) type("image/webp"),
      url(../images/about-background-sp@2x.png) type("image/png")
    );
    background-image: image-set(
      url(../images/about-background-sp@2x.webp) type("image/webp"),
      url(../images/about-background-sp@2x.png) type("image/png")
    );
    background-position: top center;
    background-size: 100% 100%;
    height: 44rem;
    top: -10.8695652174vw;
    top: -1.875rem;
  }

  .p-media01__inner.l-inner {
    max-width: 37.5rem;
  }

  .p-media01__contents::before {
    background-image: -webkit-image-set(
      url(../images/media01-sp@2x.webp) type("image/webp"),
      url(../images/media01-sp@2x.png) type("image/png")
    );
    background-image: image-set(
      url(../images/media01-sp@2x.webp) type("image/webp"),
      url(../images/media01-sp@2x.png) type("image/png")
    );
    height: 23.4375rem;
    left: calc(50% - 11.6875rem);
    top: 2.4375rem;
    width: 16.375rem;
  }

  .p-media__content {
    gap: 3.0625rem;
    margin-inline: auto;
    width: 100%;
    width: 23.3125rem;
  }

  .p-media__title {
    gap: 0.1875rem;
    margin-top: 0.875rem;
  }

  .p-media__titleText {
    font-size: 2rem;
  }

  .p-media__titleImage {
    width: 4rem;
  }

  .p-media__text {
    font-size: 1rem;
    line-height: 237%;
  }

  .p-media__text-first {
    margin-top: -0.5rem;
  }

  .p-overview {
    margin-inline: auto;
    max-width: 24.5625rem;
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
    width: 100%;
  }

  .p-overview__inner.l-inner {
    max-width: 37.5rem;
    padding-inline: 0;
  }

  .p-overview__head {
    max-width: 19.5625rem;
  }

  .p-overview__containerBlock {
    margin-top: -1.625rem;
    padding-bottom: 0;
  }

  .p-overview__container {
    margin-top: -1.625rem;
    padding: 3.4375rem 0.5625rem 1.875rem;
  }

  .p-overview__container._second {
    margin-top: -3.9375rem;
  }

  .p-overview__content {
    margin-top: 1.5625rem;
  }

  .p-overview__content._second {
    margin-top: 1.75rem;
  }

  .p-overview__title {
    padding-inline: 0.875rem;
  }

  .p-overview__items {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.875rem;
  }

  .p-overview__items._column2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .p-overview__item {
    padding-inline: 1rem;
  }

  .p-overview__wrapper {
    margin-top: 1.5rem;
  }

  .u-hidden-pc {
    display: block;
  }

  .u-hidden-sp {
    display: none;
  }
}

@media (max-width: 414px) {
  html {
    font-size: 3.8647342995vw;
  }
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}






.c-card01__block {
  padding-inline: 22.0625rem;
}

.c-card01__blockInner {
  padding: 1.9rem 0;
  margin: 3.1rem auto 0;
  background-color: #fff;
}

.c-card01__blockText {
  max-width: 19rem;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-family: var(--font-noto-sans-jp);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
}

@media screen and (max-width: 768px) {
  .c-card01__block {
    padding-inline: 1.25rem;
  }

  .c-card01__blockInner {
    padding: 0.97rem 0;
    margin: 1.6rem auto 0;
    max-width: 19.375rem;
  }

  .c-card01__blockText {
    max-width: 16rem;
    font-size: 0.75rem;
  }
}


.p-collabo__item:first-of-type .c-card01__blockInner{
    border: 0.15rem solid #c09651;
}

.p-collabo__item:nth-of-type(2) .c-card01__blockInner{
    border: 0.15rem solid #E35728;
}

.p-collabo__item:last-of-type .c-card01__blockInner{
    border: 0.15rem solid #12ADAB;
}