@charset "UTF-8";
/* CSS Document */
@layer reset {
  html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, dialog, figure, figcaption, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: inherit;
    font-family: inherit;
    font-style: inherit;
    font-weight: inherit;
    vertical-align: baseline;
    max-height: 999999px;
  }

  *, *:before, *:after {
    box-sizing: border-box;
    min-inline-size: 0px;
  }

  [id] {
    scroll-margin-top: var(--scroll-adjust);
  }

  body {
    color: var(--color-base);
    font-family: var(--typography-base-font-family);
    font-weight: var(--typography-base-font-weight);
    font-size: var(--typography-base-font-size);
    line-height: var(--typography-base-line-height);
    --letter-spacing: var(--typography-base-letter-spacing);
    background: #fff;
    word-wrap: break-word;
    -webkit-text-size-adjust: none;
    /*202009 100%はiPadでサイズが変わってしまうのでnoneを使う*/
  }

  a {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    font-style: inherit;
    font-weight: inherit;
    vertical-align: baseline;
    color: inherit;
    text-decoration: none;
    max-height: 999999px;
  }

  a, button {
    outline: 5px solid transparent;
    outline-offset: var(--outline-offset-start, 10px);
    transition: outline-offset var(--sec);
  }
  a::-moz-focus-inner, button::-moz-focus-inner {
    border: 0;
  }

  img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }

  a img {
    border: 0;
    transition: opacity var(--sec);
  }

  a:focus,
button:focus {
    outline: 2px solid var(--color-outline);
    outline-offset: var(--outline-offset-end, 0px);
  }

  :focus:not(:focus-visible) {
    outline: 0;
  }

  :where(a):focus-visible {
    text-decoration: underline;
  }
  :where(a):focus-visible img {
    opacity: var(--opacity);
  }
  @media (hover: hover) and (pointer: fine) {
    :where(a):hover {
      text-decoration: underline;
    }
    :where(a):hover img {
      opacity: var(--opacity);
    }
  }

  article, aside, dialog, figure, footer, header,
hgroup, nav, section {
    display: block;
  }

  li {
    list-style-type: none;
  }

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

  table, caption, tbody, tfoot, thead, tr, th, td {
    font-size: inherit;
    font-family: inherit;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    vertical-align: baseline;
    max-height: 999999px;
  }

  caption, th, td {
    text-align: inherit;
  }

  blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
    content: none;
  }

  blockquote, q {
    quotes: none;
  }

  del {
    text-decoration: line-through;
  }

  abbr[title], dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
  }

  ins {
    text-decoration: none;
  }

  mark {
    /*	font-style:italic;*/
    /*	font-weight:bold;*/
  }

  hr {
    clear: both;
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #666;
    margin: 1em 0;
    padding-bottom: 30px;
  }

  iframe:is([src^="https://www.youtube.com"],
 [src^="https://youtu.be"]) {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

.l-container {
  min-width: var(--min-device-width);
}

.l-section {
  --l-section-inner-width-default: var(--site-width);
  --l-section-space-inline-default: var(--space-inline);
  --l-section-space-inline: var(--l-section-space-inline-override, var(--l-section-space-inline-default));
  --l-section-inner-width: var(--l-section-inner-width-override, var(--l-section-inner-width-default));
  --l-section-outer: max(0px, calc((var(--vw100) - var(--l-section-inner-width)) / 2));
  --l-section-gutter: max(var(--l-section-outer), var(--l-section-space-inline));
}
.l-section:where(._gutter) {
  padding-inline: var(--l-section-space-inline);
}
.l-section__inner {
  width: 100%;
  max-width: var(--l-section-inner-width);
  margin-inline: auto;
  background-clip: content-box;
}
.l-section__inner:where(._gutter) {
  max-width: calc( 						var(--l-section-inner-width) + 						(var(--l-section-space-inline) * 2) 					);
  padding-inline: var(--l-section-space-inline);
}
.l-section__w860 {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  background-clip: content-box;
}
.l-section__w860:where(._gutter) {
  max-width: calc( 						var(--l-section-inner-width) + 						(var(--l-section-space-inline) * 2) 					);
  padding-inline: var(--l-section-space-inline);
}
.l-section__full {
  margin-inline: calc(var(--l-section-gutter) * -1);
}
:root {
  --min-device-width: 360px;
  --site-width: 1000px;
  --space-inline-negative: calc(var(--space-inline) * -1);
  --vw100: max(calc(100vw - var(--scrollbar-width, 0)), var(--min-device-width));
  --vw: calc(var(--vw100) / 100);
  --site-outer: max(0px, calc((var(--vw100) - var(--site-width)) / 2));
  --site-gutter: max(var(--site-outer), var(--space-inline));
  --half-leading: calc((1lh - 1em) / 2);
  --half-leading-trim: calc(var(--half-leading) * -1);
  --ascender: 0.15em;
}
@supports not (top: 1lh) {
  :root {
    --half-leading: 0px;
  }
}

:root {
  --letter-spacing: 0;
}

:not(:root) {
  letter-spacing: var(--letter-spacing);
}

:root {
  --color-base: #222222;
  --color-base-rgb:34, 34, 34;
  --color-outline: #0370AA;
  --color-outline-rgb:3, 112, 170;
  --color-bg-base: #ffffff;
  --color-bg-base-rgb:255, 255, 255;
  --color-ash-bg: #C4D0DC;
  --color-ash-bg-rgb:196, 208, 220;
  --color-ash: #AFAFAF;
  --color-ash-rgb:175, 175, 175;
  --color-border: #CCCCCC;
  --color-border-rgb:204, 204, 204;
  --color-light: #ffffff;
  --color-light-rgb:255, 255, 255;
  --color-dark: #000000;
  --color-dark-rgb:0, 0, 0;
  --color-hover: #E8445F;
  --color-hover-rgb:232, 68, 95;
}

:root {
  --ff-noto: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  --ff-notoSerif: "Noto Serif JP", sans-serif;
  --ff-oswald: "Oswald", sans-serif;
  --ff-sans-serif: var(--ff-noto);
  --ff-serif: var(--ff-notoSerif);
  --ff-en: var(--ff-oswald);
}

:root {
  --typography-base-font-family: var(--ff-sans-serif);
  --typography-base-font-weight: 400;
  --typography-base-font-size: 1rem;
  --typography-base-line-height: 1.625;
  --typography-base-letter-spacing: 0.05em;
  --typography-std_jp_bold-font-family: var(--ff-sans-serif);
  --typography-std_jp_bold-font-weight: 700;
  --typography-std_jp_bold-font-size: 1rem;
  --typography-std_jp_bold-line-height: 1.625;
  --typography-std_jp_bold-letter-spacing: 0.05em;
  --typography-std_large_jp_medium_16-font-family: var(--ff-sans-serif);
  --typography-std_large_jp_medium_16-font-weight: 500;
  --typography-std_large_jp_medium_16-font-size: 1rem;
  --typography-std_large_jp_medium_16-line-height: 22px;
  --typography-std_large_jp_medium_16-letter-spacing: 0.05em;
  --typography-std_large_jp_medium_18-font-family: var(--ff-sans-serif);
  --typography-std_large_jp_medium_18-font-weight: 500;
  --typography-std_large_jp_medium_18-font-size: 1.125rem;
  --typography-std_large_jp_medium_18-line-height: 1.8125;
  --typography-std_large_jp_medium_18-letter-spacing: 0.05em;
  --typography-std_large_jp_bold_18-font-family: var(--ff-sans-serif);
  --typography-std_large_jp_bold_18-font-weight: 700;
  --typography-std_large_jp_bold_18-font-size: 1.125rem;
  --typography-std_large_jp_bold_18-line-height: 1.8125;
  --typography-std_large_jp_bold_18-letter-spacing: 0.05em;
  --typography-std_xl_jp_black_20-font-family: var(--ff-sans-serif);
  --typography-std_xl_jp_black_20-font-weight: 900;
  --typography-std_xl_jp_black_20-font-size: 1.25rem;
  --typography-std_xl_jp_black_20-line-height: 1.8125;
  --typography-std_xl_jp_black_20-letter-spacing: 0.05em;
  --typography-std_xxl_jp_black_32-font-family: var(--ff-sans-serif);
  --typography-std_xxl_jp_black_32-font-weight: 900;
  --typography-std_xxl_jp_black_32-font-size: 2rem;
  --typography-std_xxl_jp_black_32-line-height: 40px;
  --typography-std_xxl_jp_black_32-letter-spacing: 0.05em;
  --typography-dsp_xxxl_jp_black_46-font-family: var(--ff-sans-serif);
  --typography-dsp_xxxl_jp_black_46-font-weight: 900;
  --typography-dsp_xxxl_jp_black_46-font-size: 2.875rem;
  --typography-dsp_xxxl_jp_black_46-line-height: 58px;
  --typography-dsp_xxxl_jp_black_46-letter-spacing: 0.05em;
  --typography-en-font-family: var(--ff-en);
  --typography-en-letter-spacing: 0.05em;
  --typography-dsp_xxl_en_bold_32-font-family: var(--ff-en);
  --typography-dsp_xxl_en_bold_32-font-weight: 700;
  --typography-dsp_xxl_en_bold_32-font-size: 2rem;
  --typography-dsp_xxl_en_bold_32-line-height: 40px;
  --typography-dsp_xxl_en_bold_32-letter-spacing: 0;
  --typography-dsp_xxxl_en_bold-font-family: var(--ff-en);
  --typography-dsp_xxxl_en_bold-font-weight: 700;
  --typography-dsp_xxxl_en_bold-font-size: 2.875rem;
  --typography-dsp_xxxl_en_bold-line-height: 3.5;
  --typography-dsp_xxxl_en_bold-letter-spacing: 0;
  --typography-dsp_xxxxl_en_bold_112-font-family: var(--ff-en);
  --typography-dsp_xxxxl_en_bold_112-font-weight: 700;
  --typography-dsp_xxxxl_en_bold_112-font-size: 7rem;
  --typography-dsp_xxxxl_en_bold_112-line-height: 164px;
  --typography-dsp_xxxxl_en_bold_112-letter-spacing: 0;
}

:root {
  --space-inline: 30px;
}
@media (width <= 1000px) {
  :root {
    --space-inline: 20px;
  }
}

:root {
  --space-block-xl: 120px;
  --space-block-lg: 80px;
  --space-block-md: 40px;
  --space-block-sm: 20px;
  --space-block-xs: 10px;
  --space-block-xl-trim: calc(var(--space-block-xl) - var(--half-leading));
  --space-block-lg-trim: calc(var(--space-block-lg) - var(--half-leading));
  --space-block-md-trim: calc(var(--space-block-md) - var(--half-leading));
  --space-block-sm-trim: calc(var(--space-block-sm) - var(--half-leading));
  --space-block-xs-trim: calc(var(--space-block-xs) - var(--half-leading));
}
@media (width <= 768px) {
  :root {
    --space-block-xl: 60px;
    --space-block-sm: 10px;
    --space-block-xs: 5px;
  }
}
:root {
  --scroll-adjust: 0px;
  --sec: 0.5s;
  --sec-fast: 0.2s;
  --sec-slow: 0.8s;
  --opacity: 0.6;
  --zoom: 1.1;
  --radius: 10px;
}



.c-title_h2 {
  color: var(--color-light);
  font-family: var(--typography-std_xxl_jp_black_32-font-family);
  font-weight: var(--typography-std_xxl_jp_black_32-font-weight);
  font-size: var(--typography-std_xxl_jp_black_32-font-size);
  line-height: var(--typography-std_xxl_jp_black_32-line-height);
  --letter-spacing: var(--typography-std_xxl_jp_black_32-letter-spacing);
  margin-bottom: 20px;
}
.c-title_h2__marker-black {
  background-color: var(--color-base);
  padding: 0 7px;
}

/*ヘッダー*/
.g-header .header-wrapper {
  width: 100%;
  position: fixed;
  z-index: 99;
  height: 100px;
}
@media (width <= 930px) {
  .g-header .header-wrapper {
    height: 80px;
  }
}
.g-header .header-logo__wrapper {
  width: 100%;
  height: 100%;
  padding-left: 10px;
  display: flex;
  align-items: center;
  background: var(--color-light);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 100;
}
@media (width >= 768px) {
  .g-header .header-logo__wrapper {
    justify-content: space-between;
    padding-right: 40px;
  }
}
@media (width <= 1000px) {
  .g-header .header-logo__wrapper {
    padding-right: 10px;
  }
}
@media (width <= 768px) {
  .g-header .header-logo__wrapper {
    padding-right: 0;
  }
}
.g-header .header-logo__img {
  width: 400px;
}
@media (width <= 1240px) {
  .g-header .header-logo__img {
    width: 270px;
  }
}
@media (width <= 1020px) {
  .g-header .header-logo__img {
    width: 268px;
  }
}
.g-header .header-pc__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--typography-std_large_jp_bold_18-font-family);
  font-weight: var(--typography-std_large_jp_bold_18-font-weight);
  font-size: var(--typography-std_large_jp_bold_18-font-size);
  line-height: var(--typography-std_large_jp_bold_18-line-height);
  --letter-spacing: var(--typography-std_large_jp_bold_18-letter-spacing);
}
@media (width <= 1240px) {
  .g-header .header-pc__nav {
    gap: 15px;
  }
}
@media (width <= 1020px) {
  .g-header .header-pc__nav {
    font-size: 16px;
  }
}
@media (width <= 1000px) {
  .g-header .header-pc__nav {
    gap: 10px;
  }
}
.g-header .header-pc__list {
  transition: 0.5s;
}
.g-header .header-pc__list:hover {
  color: var(--color-hover);
  text-decoration: none;
}
.g-header .header-pc__btn-group {
  display: flex;
  gap: 10px;
}
@media (width <= 1000px) {
  .g-header .header-pc__btn-group {
    gap: 5px;
  }
}
.g-header .header-pc__btn {
  display: block;
  min-width: 140px;
  padding: 13px 24px;
  border-radius: 50px;
  text-align: center;
  position: relative;
}
.g-header .header-pc__btn::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  transition: 0.5s;
  border-radius: 50px;
}
.g-header .header-pc__btn::after {
  border-radius: 50px;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  top: 0;
  left: 0;
  z-index: -2;
  content: "";
}
@media (width <= 1240px) {
  .g-header .header-pc__btn {
    min-width: 100px;
  }
}
.g-header .header-pc__btn._orange::before {
  background: linear-gradient(to top, #E94B5B, #EA7736, #EB9C16, #EEB651);
}
.g-header .header-pc__btn._orange::after {
  background: var(--color-light);
  border: 1px solid var(--color-dark);
}
.g-header .header-pc__btn._green {
  color: var(--color-light);
}
.g-header .header-pc__btn._green::before {
  background: linear-gradient(#6FDABA, #3D7A96);
}
.g-header .header-pc__btn._green::after {
  background: linear-gradient(to top, #6FDABA, #3D7A96);
}
.g-header .header-pc__btn:hover {
  text-decoration: none;
}
.g-header .header-pc__btn:hover._orange {
  color: var(--color-hover);
}
.g-header .header-pc__btn:hover._orange::before {
  opacity: 0;
}
.g-header .header-pc__btn:hover._green::before {
  opacity: 0;
}
.g-header .header-nav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 46px;
  margin-right: 13px;
}
.g-header .hamburger-overlay {
  position: absolute;
  top: 10px;
  right: -7px;
  z-index: 100;
  width: 40px;
  height: 20px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.g-header .hamburger-overlay__line {
  position: absolute;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: var(--color-dark);
  transition: all 0.6s;
}
.g-header .hamburger-overlay__line:nth-of-type(1) {
  top: 1px;
}
.g-header .hamburger-overlay__line:nth-of-type(2) {
  top: 19px;
}
.g-header .hamburger-overlay__line-menu {
  color: var(--color-dark) !important;
  left: 3px;
  top: 28px;
  position: absolute;
  font-family: "Oswald", sans-serif;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.g-header .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.g-header .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  transform: translateY(-9px) rotate(45deg);
}
.g-header .nav-overlay {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-light);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 98;
}
.g-header .nav-overlay.active {
  visibility: visible;
  left: 0;
  opacity: 1;
}
.g-header .nav-overlay__content {
  width: 100%;
  padding-top: 80px;
}
.g-header .nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.g-header .nav-overlay__item {
  padding: 0 20px;
  border-bottom: 1px solid var(--color-dark);
}
.g-header .nav-overlay__link {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s;
}
.g-header .nav-overlay__btn {
  max-width: 325px;
  margin: 0 auto;
  margin-top: 20px;
}
.g-header .nav-overlay__btn-link {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70px;
  max-width: 325px;
  height: 55px;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
}
.g-header .nav-overlay__btn-link::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  transition: 0.5s;
}
.g-header .nav-overlay__btn-link::after {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  top: 0;
  left: 0;
  z-index: -2;
  content: "";
}
.g-header .nav-overlay__btn-link._orange::before {
  background: linear-gradient(to top, #E94B5B, #EA7736, #EB9C16, #EEB651);
}
.g-header .nav-overlay__btn-link._orange::after {
  background: var(--color-light);
  border: 1px solid var(--color-dark);
}
.g-header .nav-overlay__btn-link._green {
  color: var(--color-light);
  transition: 0.5s;
}
.g-header .nav-overlay__btn-link._green::before {
  background: linear-gradient(#6FDABA, #3D7A96);
}
.g-header .nav-overlay__btn-link._green::after {
  background: linear-gradient(to top, #6FDABA, #3D7A96);
}
.g-header .nav-overlay__btn-inner {
  transition: 0.5s;
}
.g-header .nav-overlay__btn-inner:hover {
  text-decoration: none;
}
.g-header .nav-overlay__btn-inner:hover ._orange {
  color: var(--color-hover);
}
.g-header .nav-overlay__btn-inner:hover ._orange::before {
  opacity: 0;
}
.g-header .nav-overlay__btn-inner:hover ._green::before {
  opacity: 0;
}
.g-header .nav-overlay__link:hover {
  color: var(--color-hover);
}
.g-header .header-nav-arow {
  background: linear-gradient(#6FDABA, #3D7A96);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  padding-top: 7px;
}

/*フッター*/
.g-footer {
  padding-top: 40px;
  background: linear-gradient(to left, #6FDABA, #3D7A96);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
.g-footer .page-top {
  font-family: var(--typography-en-font-family);
  font-weight: var(--typography-en-font-weight);
  font-size: var(--typography-en-font-size);
  line-height: var(--typography-en-line-height);
  --letter-spacing: var(--typography-en-letter-spacing);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  position: absolute;
  top: -50px;
  right: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  background: var(--color-light);
  color: #555555;
  border-radius: 10px 10px 0 0;
  border: 1px solid #555555;
}
.g-footer .page-top:hover {
  text-decoration: none;
}
@media (width <= 1150px) {
  .g-footer .page-top {
    right: 5%;
  }
}
@media (width <= 930px) {
  .g-footer .page-top {
    right: 10px;
  }
}
@media (width <= 768px) {
  .g-footer .page-top {
    width: 310px;
    right: 50%;
    transform: translateX(50%);
  }
}
.g-footer .footer__name {
  color: var(--color-light);
  margin-bottom: 40px;
}
@media (width <= 768px) {
  .g-footer .footer__name {
    text-align: center;
  }
}
.g-footer .footer__company-name {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.g-footer .footer__site-name {
  font-family: var(--typography-en-font-family);
  font-weight: var(--typography-en-font-weight);
  font-size: var(--typography-en-font-size);
  line-height: var(--typography-en-line-height);
  --letter-spacing: var(--typography-en-letter-spacing);
  letter-spacing: 0.1em;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}
.g-footer .footer__nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  row-gap: 20px;
}
@media (width <= 768px) {
  .g-footer .footer__nav {
    flex-flow: column;
    row-gap: 10px;
  }
}
.g-footer .footer__item {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  color: var(--color-light);
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid var(--color-light);
  white-space: nowrap;
}
.g-footer .footer__item a {
  color: inherit;
}
.g-footer .footer__item:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
@media (width <= 768px) {
  .g-footer .footer__item {
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 10px;
    border-right: none;
    border-bottom: 1px solid var(--color-light);
    text-align: center;
  }
  .g-footer .footer__item:first-child {
    padding-top: 10px;
    border-top: 1px solid var(--color-light);
  }
}
.g-footer .footer__btn-group {
  display: flex;
  gap: 20px;
  flex-flow: wrap;
  margin-bottom: 30px;
}
@media (width <= 768px) {
  .g-footer .footer__btn-group {
    justify-content: center;
  }
}
.g-footer .footer__btn {
  display: flex;
  align-items: center;
  width: 315px;
  height: 68px;
  background: var(--color-light);
  border-radius: 10px;
}
.g-footer .footer__btn-inner {
  margin: 0 auto;
}
.g-footer .footer__link-icon {
  margin-right: 30px;
}
.g-footer .footer__mintpark-img {
  width: 144px;
}
.g-footer .footer__daypark-logo {
  width: 192px;
}
.g-footer .footer__bottom {
  padding: 40px 0;
  background: var(--color-light);
  display: flex;
  gap: 24px;
  justify-content: center;
}
.g-footer ._ballogo {
  width: 170px;
}

/*メイン*/
.entry-wrapper {
  padding: 40px 0;
  background: linear-gradient(#6FDABA, #3D7A96);
  position: relative;
}
@media (width <= 768px) {
  .entry-wrapper {
    padding: 40px 0 250px 0;
  }
}
.entry-wrapper .c-title_h2 {
  text-align: center;
}
@media (width <= 768px) {
  .entry-wrapper .c-title_h2 {
    white-space: nowrap;
  }
}
.entry-wrapper .entry {
  position: relative;
}
.entry-wrapper .entry__btn {
  display: block;
  width: 335px;
  text-align: center;
  padding: 15px 0;
  border-radius: 60px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.entry-wrapper .entry__btn::before {
  border-radius: 50px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to top, #E94B5B, #EA7736, #EB9C16, #EEB651);
  z-index: 1;
  content: "";
  transition: 0.5s;
}
.entry-wrapper .entry__btn::after {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  top: 0;
  left: 0;
  background: var(--color-light);
  border: 1px solid var(--color-dark);
  z-index: 0;
  content: "";
}
.entry-wrapper .entry__btn:hover {
  text-decoration: none;
  color: var(--color-hover);
}
.entry-wrapper .entry__btn:hover::before {
  opacity: 0;
}
.entry-wrapper .entry__btn-text {
  position: relative;
  z-index: 2;
  transition: 0.5s;
}
.entry-wrapper .entry__deco01, .entry-wrapper .entry__deco02 {
  position: absolute;
  z-index: 2;
  bottom: -40px;
  width: 133px;
}
@media (width <= 880px) {
  .entry-wrapper .entry__deco01, .entry-wrapper .entry__deco02 {
    width: 100px;
  }
}
@media (width <= 768px) {
  .entry-wrapper .entry__deco01, .entry-wrapper .entry__deco02 {
    width: 180px;
    bottom: -200px;
  }
}
.entry-wrapper .entry__deco01 {
  left: 110px;
}
@media (width <= 880px) {
  .entry-wrapper .entry__deco01 {
    left: 130px;
  }
}
@media (width <= 768px) {
  .entry-wrapper .entry__deco01 {
    left: 50%;
    transform: translateX(-100%);
  }
}
.entry-wrapper .entry__deco02 {
  right: 110px;
}
@media (width <= 880px) {
  .entry-wrapper .entry__deco02 {
    right: 130px;
  }
}
@media (width <= 768px) {
  .entry-wrapper .entry__deco02 {
    right: 50%;
    transform: translateX(100%);
  }
}
.entry-wrapper .entry__deco03 {
  position: absolute;
  top: -135px;
  z-index: 0;
}
@media (width <= 1000px) {
  .entry-wrapper .entry__deco03 {
    top: -50px;
    width: 300px;
  }
}
@media (width <= 768px) {
  .entry-wrapper .entry__deco03 {
    top: -50px;
    width: 180px;
  }
}
.entry-wrapper .area-btn__wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (width <= 768px) {
  .entry-wrapper .area-btn__wrapper {
    flex-flow: column;
    width: fit-content;
    margin: 0 auto;
  }
}
.entry-wrapper .area-btn__content {
  overflow: hidden;
  border-radius: 10px;
  display: block;
  max-width: 335px;
  height: 246px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
.entry-wrapper .area-btn__content._red {
  background: linear-gradient(#B93248, #E8445F);
}
.entry-wrapper .area-btn__content._bulue {
  background: linear-gradient(#023855, #0370AA);
}
.entry-wrapper .area-btn__main {
  padding: 20px 25px 15px 10px;
  background: var(--color-light);
  display: flex;
  gap: 10px;
  position: relative;
  transition: 0.5s;
}
.entry-wrapper .area-btn__character {
  min-width: 98px;
  width: 100px;
}
.entry-wrapper .area-btn__main-title {
  font-family: var(--typography-dsp_xxxl_jp_black_46-font-family);
  font-weight: var(--typography-dsp_xxxl_jp_black_46-font-weight);
  font-size: var(--typography-dsp_xxxl_jp_black_46-font-size);
  line-height: var(--typography-dsp_xxxl_jp_black_46-line-height);
  --letter-spacing: var(--typography-dsp_xxxl_jp_black_46-letter-spacing);
  color: #D53D56;
}
.entry-wrapper .area-btn__main-text {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 32px;
  font-weight: 700;
  display: block;
  white-space: nowrap;
}
.entry-wrapper .area-btn__summary {
  color: var(--color-light);
  padding: 10px 15px 20px 15px;
}
.entry-wrapper .area-btn__sub-title {
  text-align: center;
  font-family: var(--typography-std_large_jp_bold_18-font-family);
  font-weight: var(--typography-std_large_jp_bold_18-font-weight);
  font-size: var(--typography-std_large_jp_bold_18-font-size);
  line-height: var(--typography-std_large_jp_bold_18-line-height);
  --letter-spacing: var(--typography-std_large_jp_bold_18-letter-spacing);
}
.entry-wrapper .area-btn__arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 57px;
  right: 10px;
}
.entry-wrapper .area-btn__arrow-red {
  width: 50px;
  height: 50px;
  color: #E8445F;
}
.entry-wrapper ._bulue .area-btn__arrow-red {
  color: #0370AA;
}
.entry-wrapper ._bulue .area-btn__main-title {
  color: #0370AA;
}
.entry-wrapper .area-btn__content:hover {
  text-decoration: none;
  opacity: 1;
}
.entry-wrapper .area-btn__content:hover img {
  opacity: 1;
}
.entry-wrapper .area-btn__content:hover .area-btn__main {
  background: #D53D56;
}
.entry-wrapper .area-btn__content:hover .area-btn__main-title {
  color: var(--color-light);
}
.entry-wrapper .area-btn__content:hover .area-btn__arrow-red {
  color: var(--color-light);
}
.entry-wrapper .area-btn__content:hover._bulue .area-btn__main {
  background: #0370AA;
}

/* 20250428 */

.c-title_h2._shadow {
  text-shadow: 3px 3px #143152;
}

.c-title_h2._shadow .yellow {
  font-size: 1.2em;
  color: #F0B829;
}

.c-title_h2._shadow .red {
  font-size: 1.2em;
  color: #e05858;
}