@charset "UTF-8";
@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bottomToTop {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes blur {
  from {
    filter: blur(1.5rem);
  }
  to {
    filter: blur(0);
  }
}
:root {
  --font-family-base:"Zen Kaku Gothic New", "Yu Gothic", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --color-default: #333;
  --color-caption: #666;
  --color-gra: linear-gradient(90deg, #FA9600 0%, #FF0800 100%);
  --color-grare: linear-gradient(270deg, #FA9600 0%, #FF0800 100%);
  --color-link: #0056AB;
  --color-grayline: #EDEDE4;
  --color-theme: #E62128;
  --color-caution: #C35608;
  --color-bg: #FFF4E4;
  --header-height: 12rem;
  --content-width: 120rem;
  --content-width-narrow: 99.6rem;
  --content-gutter: 2.4rem;
  --content-gap: 2.4rem;
  --linear: cubic-bezier(0.0, 0.0, 1.0, 1.0); /* linear */
  /* Sine（最も弱い） */
  --easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715); /* easeInSine */
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1); /* easeOutSine */
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95); /* easeInOutSine */
  /* Quad（弱め。Sineより強く、Cubicより弱い） */
  --easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53); /* easeInQuad */
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94); /* easeOutQuad */
  --easeInOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955); /* easeInOutQuad */
  /* Cubic（Quadより強く、Quartより弱い） */
  --easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19); /* easeInCubic */
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1); /* easeOutCubic */
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  /* Quart（Cubicより強く、Quintより弱い） */
  --easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22); /* easeInQuart */
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
  /* Quint（Quartより強く、Expoより弱い） */
  --easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06); /* easeInQuint */
  --easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1); /* easeOutQuint */
  --easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
  /* Expo（最も強い） */
  --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035); /* easeInExpo */
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1); /* easeOutExpo */
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1); /* easeInOutExpo */
  /* Circ（Expoのような強さを持つが、加速や減速の時間がよりゆるやか。） */
  --easeInCirc: cubic-bezier(0.6, 0.04, 0.98, 0.335); /* easeInCirc */
  --easeOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1); /* easeOutCirc */
  --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.15, 0.86); /* easeInOutCirc */
  /* Back（少し行き過ぎてから戻ってくるような動き） */
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045); /* easeInBack */
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275); /* easeOutBack */
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55); /* easeInOutBack */
}
@media screen and (max-width: 1480px) {
  :root {
    --header-height: 6rem;
  }
}

/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  -moz-tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
}

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

/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

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

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 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;
}

/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

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

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

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

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

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*****************************************************
  Foundation
*****************************************************/
/* -----------------------------------------------
  Web Font
----------------------------------------------- */
/* -----------------------------------------------
  reset overwrite
----------------------------------------------- */
body, h1, h2, h3, h4, h5, h6, div, p, ul, ol, dl, dt, dd, li, td, th, input, figure, pre {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-base);
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dt, dd, li, td, th, input, figure {
  font-size: 100%;
  font-weight: 500;
  line-height: 1.5;
}

:where(a) {
  text-decoration: none;
  color: currentColor;
}

:where(a:visited) {
  color: currentColor;
}

a:hover {
  text-decoration: none;
  color: currentColor;
}

a img {
  border: none;
}

ul, ol, li {
  list-style: none;
}

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

th {
  text-align: left;
  vertical-align: top;
}

img {
  display: inline-block;
  width: auto;
  vertical-align: top;
}

input {
  color: #000;
}

button {
  outline: none;
}

@media only screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
  body {
    overflow-x: hidden;
  }
}
@media (pointer: coarse) {
  a:hover {
    text-decoration: none;
  }
}
/* -----------------------------------------------
  Base
----------------------------------------------- */
html {
  font-size: 0.625em;
  scroll-behavior: smooth;
  scroll-padding-top: 5.6rem;
  overscroll-behavior-y: none;
}

body {
  font: 500 1.6em/1.5 var(--font-family-base);
  color: var(--color-default);
  min-width: 100%;
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  word-wrap: break-word;
  word-break: break-word;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
* {
  box-sizing: border-box;
}

ul, ol, li, dd {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

em {
  font-style: normal;
}

p {
  margin: 0;
}

sub {
  bottom: -0.1em;
}

sup {
  color: var(--color-caution);
  font-weight: 700;
}

b, strong {
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

figure {
  margin: 0;
}

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

input[type=search] {
  -webkit-appearance: none;
  border-radius: 0;
}
input[type=search]:focus {
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.3s linear;
}

select {
  white-space: nowrap;
}

a {
  text-decoration: none;
  color: var(--color-defalut);
  opacity: 1;
}

@media screen and (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 820px) {
  body {
    font-size: 1.6em;
  }
  a:hover {
    text-decoration: none;
  }
}
/*****************************************************
  Layout
*****************************************************/
/* =================================================
  Frame
================================================= */
html.-open {
  overflow: hidden;
}

[data-menu=overlay] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
}
.-open [data-menu=overlay] {
  display: block;
}

.l-wrapper {
  padding: 0;
  overflow-x: hidden;
}

.l-main {
  position: relative;
}

/* =================================================
  .l-topicsPath
================================================= */
.l-topicsPath {
  padding: 1.6rem var(--content-gutter);
  border-bottom: 1px solid var(--color-grayline);
  background: #fff;
}
.l-topicsPath_list {
  display: flex;
  gap: 0 0.8rem;
  font-size: 1.4rem;
  line-height: 1.5;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 140rem;
  margin-inline: auto;
}
.l-topicsPath_list_item {
  color: var(--color-default);
  flex-shrink: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.l-topicsPath_list_item a {
  color: var(--color-theme);
}
@media (hover: hover) {
  .l-topicsPath_list_item a:hover {
    text-decoration: underline;
  }
}
.l-topicsPath_list_item + .l-topicsPath_list_item::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 1px solid var(--color-default);
  border-right: 1px solid var(--color-default);
}

/* =================================================
  .l-section
================================================= */
.l-section {
  padding: 10rem var(--content-gutter);
  position: relative;
}
.l-section.-bg_white {
  background: #fff;
}
.l-section.-bg {
  background: var(--color-bg);
}
@media screen and (max-width: 1024px) {
  .l-section {
    padding: clamp(4rem, 7.8125vw, 10rem) var(--content-gutter);
  }
}

/* =================================================
  .l-container
================================================= */
.l-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
}
.l-container.-narrow {
  max-width: var(--content-width-narrow);
}

/* =================================================
  Header
================================================= */
.l-header {
  background: var(--color-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--content-gutter);
  height: var(--header-height);
  padding: 0 var(--content-gutter);
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 1;
  /*
    &_nav {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1rem;
      z-index: 1;
      @include g.mq(lg) {
        display: none;
        position: fixed;
        left: 0;
        top: var(--header-height);
        top: 7.2rem;
        flex-direction: column;
        align-items: flex-start;
        padding:0 2.4rem;
        max-height: calc(100dvh - var(--header-height));
        overflow: auto;
        overscroll-behavior-y: none;
      }
      @include g.mq(md) {
        top: 5.5rem;
      }
      .-home & {
        display: none;
      }
      &_list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        gap: 1rem;
        font-size: 1.5rem;
        font-weight: bold;

        @include g.mq(lg) {
          grid-template-columns: repeat(1, 1fr);
          padding: 1.5rem;
          padding-bottom: 2rem;
          font-size: 2rem;
          width: 100%;
          gap: 0.6rem;
          background: #fff;
          border-radius: 0.4rem;
        }

        &_item {
          @include g.mq(lg) {
            width: 100%;
          }

          &_link {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
            min-width: 26rem;
            background: #fff ;
            border-radius: 0.4rem;
            padding: 0.9rem;
            font-weight: bold;
            @include g.mq(lg) {
              border-radius: 0;
              padding: 0.7rem 0;
              & .arrow_icon {
                right: 0;
              }
            }
            @media (hover: hover) {
              &:hover {
                & .arrow_icon {
                  background: #FA9600;
                  border-color: #FA9600;
                  transition: background .3s;
                }
              }
            }
          }
        }
      }

      &_btn {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 26rem;
        background: var(--color-gra);
        border-radius: 6rem;
        padding: 0.9rem ;
        position: relative;
        transition: 0.3s;
        &:visited {
          color:#fff;
        }
        @include g.mq(lg) {
          max-width: 100%;
          margin-top: 1.5rem;
          & .-pcText {
            display: none;
          }
        }
        & .arrow_icon {
          display: none;
          @include g.mq(lg) {
            display: flex;
         }
        }
        & .-spText {
          display: none;
          @include g.mq(lg) {
             display: block;
             & br {
              display: none;
              @include g.mq(sm) {
                display: block;
             }
             }
          }
        }
        & span {
          z-index: 5;
        }
        &::before {
          content: "";
          position: absolute;
          background-color: #FA9600;
          left: 0;
          top: 0;
          border-radius: 6rem;
          width: 100%;
          height: 100%;
          opacity: 0;
          transition: opacity .3s;
        }
        @media (hover: hover) {
          &:hover {
            &::before {
              opacity: 1;
              transition: opacity .3s;
            }
            & svg path {
              fill: #FA9600;
            }
          }
        }
      }
    }
  */
}
.-home .l-header {
  height: 0;
  pointer-events: none;
}
@media screen and (max-width: 1480px) {
  .-home .l-header {
    height: var(--header-height);
    pointer-events: revert;
  }
}
.l-header::after {
  content: "";
  width: 100%;
  height: 0.6rem;
  background: var(--color-gra);
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1480px) {
  .l-header::after {
    height: 0.2rem;
  }
}
.l-header_inner {
  max-width: 144rem;
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header_logo {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-header_logo {
    flex-shrink: 1;
  }
}
.l-header_logo a {
  display: flex;
  max-width: 22.6rem;
  width: 100%;
}
.-home .l-header_logo a {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1480px) {
  .-home .l-header_logo a {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 1480px) {
  .l-header_logo a {
    max-width: 10rem;
  }
}
.l-header_logo svg {
  width: 100%;
}
.l-header_logo img {
  width: 22.6rem;
}
@media screen and (max-width: 1280px) {
  .l-header_logo img {
    width: 16rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-header_logo img {
    max-width: 10rem;
  }
}
.-home .l-header_logo img {
  display: none;
}
@media screen and (max-width: 1480px) {
  .-home .l-header_logo img {
    display: block;
  }
}
.l-header_logo_text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.92;
  margin-inline: 1.6rem;
}
.l-header_logo_text br.-sp {
  display: none;
}
.-home .l-header_logo_text {
  display: none;
}
@media screen and (max-width: 1480px) {
  .l-header_logo_text {
    display: block;
    line-height: 1.5;
    font-size: 1.3rem;
  }
  .l-header_logo_text br {
    display: none;
  }
}
@media screen and (max-width: 1480px) and (max-width: 576px) {
  .l-header_logo_text br {
    display: block;
  }
}
@media screen and (max-width: 1480px) {
  .-home .l-header_logo_text {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .l-header_logo_text {
    font-size: 1.3rem;
  }
}
.l-header_spMenu {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  overflow: hidden;
  z-index: 10;
}
.-home .l-header_spMenu {
  display: none;
}
@media screen and (max-width: 1480px) {
  .-home .l-header_spMenu {
    display: block;
  }
}
.l-header_spMenu.-open .-icoOpen {
  display: none;
}
.l-header_spMenu.-open .-icoClose {
  display: block;
}
.l-header_spMenu:focus-visible {
  outline: solid 0.2rem #000;
  border-radius: 0.4rem;
}
@media screen and (max-width: 820px) {
  .l-header_spMenu {
    width: 4rem;
    height: 4rem;
    top: 0.7rem;
  }
}
.l-header_nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  z-index: 1;
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  flex-direction: column;
  align-items: flex-start;
  height: 100dvh;
  overflow: auto;
  overscroll-behavior-y: none;
  max-width: 57.6rem;
  background: #E2C69D;
  padding: 7rem 8rem;
}
@media screen and (max-width: 820px) {
  .l-header_nav {
    top: 0rem;
    padding: 0;
    background: #FFF4E4;
    max-width: 100%;
  }
}
.-home .l-header_nav {
  display: none;
}
.l-header_nav .l-header_logo {
  border-top: 2px solid #FA9600;
  background: linear-gradient(90deg, #FDEADD 5.33%, rgba(255, 248, 213, 0.8) 94.54%);
  padding: 1.6rem;
}
@media screen and (max-width: 820px) {
  .l-header_nav .l-header_logo {
    max-width: 100%;
  }
}
.l-header_nav .l-header_logo a {
  max-width: 10rem;
}
.l-header_nav_contents {
  position: relative;
  z-index: 10;
}
.l-header_nav_list {
  font-weight: bold;
  font-size: 1.6rem;
  width: 100%;
  background: #fff;
  padding: 0 1.6rem;
  margin: 0 auto;
}
.l-header_nav_list_item + .l-header_nav_list_item {
  border-top: solid 0.1rem #E6E6E6;
}
.l-header_nav_list_item_link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  min-width: 26rem;
  background: #fff;
  padding: 1.6rem 0;
}
@media (hover: hover) {
  .l-header_nav_list_item_link:hover .arrow_icon {
    background: #fff;
    border-color: var(--color-theme);
    transition: background 0.3s;
  }
  .l-header_nav_list_item_link:hover .arrow_icon:before {
    border-color: var(--color-theme);
  }
}
.l-header_nav_btn {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 32.7rem;
  background: #fff;
  color: var(--color-theme);
  border: solid 2px var(--color-theme);
  border-radius: 4rem;
  padding: 1.6rem 2.4rem;
  position: relative;
  transition: 0.3s;
  margin: 0 auto;
}
.l-header_nav_btn_box {
  background: #fff;
  padding: 4rem 2.4rem;
}
.l-header_nav_btn .arrow_icon.-header {
  right: 0.8rem;
}
.l-header_nav_btn:visited {
  color: var(--color-theme);
}
@media (hover: hover) {
  .l-header_nav_btn:hover {
    background: var(--color-theme);
    color: #fff;
  }
  .l-header_nav_btn:hover .arrow_icon {
    background: #fff;
  }
  .l-header_nav_btn:hover .arrow_icon::before {
    border-color: var(--color-theme);
  }
}
.l-header_nav_featureBtn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid #E2C69D;
  background: #FFDFB0;
  width: 100%;
  padding: 1.6rem;
}
.l-header_nav_featureBtn .arrow_icon {
  width: 2rem;
  height: 2rem;
  right: 1.6rem;
}
.l-header_nav_featureBtn .arrow_icon::before {
  transform: rotate(135deg);
}
.l-header_nav_featureBtn.-open .arrow_icon::before {
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .l-header_nav_featureBtn:hover .arrow_icon {
    background: #fff;
    border-color: var(--color-theme);
    transition: background 0.3s;
  }
  .l-header_nav_featureBtn:hover .arrow_icon:before {
    border-color: var(--color-theme);
  }
}
.l-header_nav_featureBtn_contents {
  display: flex;
  flex-direction: column;
  padding: 0 1.6rem;
  background: #FFF4E4;
}
.l-header_nav_featureBtn_contents_item {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  position: relative;
}
.l-header_nav_featureBtn_contents_item .-sub {
  font-size: 1.2rem;
}
.l-header_nav_featureBtn_contents_item + .l-header_nav_featureBtn_contents_item {
  border-top: solid 1px #E6E6E6;
}
.l-header_nav_featureBtn_contents_item::before {
  content: "";
  display: block;
  transition: border-color 0.3s;
  width: 1rem;
  height: 1rem;
  border-top: 3px solid var(--color-theme);
  border-right: 3px solid var(--color-theme);
  position: absolute;
  right: 0.1rem;
  top: 50%;
  transform: translate(-50%, -5px) rotate(45deg);
}

.l-header_spMenu.-open span:nth-child(1) {
  animation: open-menu-bar01 0.75s forwards;
}

.l-header_spMenu.-open span:nth-child(2) {
  animation: open-menu-bar02 0.75s forwards;
}

.l-header_spMenu.-open span:nth-child(3) {
  animation: open-menu-bar03 0.75s forwards;
}

@keyframes open-menu-bar01 {
  0% {
    transform: rotate(0);
  }
  50% {
    top: 0rem;
    transform: rotate(0);
  }
  100% {
    top: 0rem;
    transform: rotate(135deg);
  }
}
@keyframes open-menu-bar02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes open-menu-bar03 {
  0% {
    transform: rotate(0);
  }
  50% {
    top: 0;
    transform: rotate(0);
  }
  100% {
    top: 0;
    transform: rotate(-135deg);
  }
}
/* =================================================
  Footer
================================================= */
.l-footer {
  position: relative;
  background: #fff;
  text-align: center;
}
.l-footer_pagetop {
  z-index: 1;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 6rem;
  height: 6rem;
  transition: visibility 0.4s, opacity 0.4s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.l-footer_pagetop.-active {
  transition: visibility 0.4s, opacity 0.4s;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.l-footer_pagetop a {
  display: block;
  height: 100%;
}
.l-footer_pagetop a .pagetop_arrow {
  transition: transform 0.3s;
}
@media (hover: hover) {
  .l-footer_pagetop a:hover .pagetop_arrow {
    transform: translateY(-1rem);
  }
}
@media screen and (max-width: 820px) {
  .l-footer_pagetop {
    width: 4rem;
    height: 4rem;
  }
}
.l-footer_copyright {
  text-align: center;
  color: #000;
  margin-top: 1.6rem;
}
.l-footer_copyright small {
  font-size: 1.2rem;
  font-weight: 500;
}

.l-pageHeader {
  background: url(../images/img_page_header_01.jpg) no-repeat center center;
  background-size: cover;
  height: 54rem;
  width: 100%;
  padding: 6rem var(--content-gutter);
}
@media screen and (max-width: 820px) {
  .l-pageHeader {
    background-image: url(../images/img_page_header_01_sp.jpg);
    height: auto;
    aspect-ratio: 25/14;
    padding-inline: clamp(1.75rem, 17.5vw, 6rem);
  }
}
@media screen and (max-width: 576px) {
  .l-pageHeader {
    padding: 0 clamp(1.75rem, 17.5vw, 6rem);
    margin-bottom: 30vw;
  }
}
.l-pageHeader.-enjoy {
  background-image: url(../images/img_page_header_02.jpg);
}
@media screen and (max-width: 820px) {
  .l-pageHeader.-enjoy {
    background-image: url(../images/img_page_header_02_sp.jpg);
  }
}
.l-pageHeader.-health {
  background-image: url(../images/img_page_header_03.jpg);
}
@media screen and (max-width: 820px) {
  .l-pageHeader.-health {
    background-image: url(../images/img_page_header_03_sp.jpg);
  }
}
.l-pageHeader.-challenge {
  background-image: url(../images/img_page_header_04.jpg);
}
@media screen and (max-width: 820px) {
  .l-pageHeader.-challenge {
    background-image: url(../images/img_page_header_04_sp.jpg);
  }
}
.l-pageHeader.-responsibility {
  background-image: url(../images/img_page_header_05.jpg);
}
@media screen and (max-width: 820px) {
  .l-pageHeader.-responsibility {
    background-image: url(../images/img_page_header_05_sp.jpg);
  }
}
.l-pageHeader.-feature {
  height: 38.4rem;
  padding: 0 var(--content-gutter);
  display: flex;
  align-items: center;
  background-image: url(../images/feature01/img_page_header_01.jpg);
}
@media screen and (max-width: 820px) {
  .l-pageHeader.-feature {
    background-image: url(../images/feature01/img_page_header_01_sp.jpg);
    align-items: flex-end;
    margin-bottom: 17vw;
    padding: 0;
  }
}
.l-pageHeader.-frailty {
  height: 38.4rem;
  padding: 0 var(--content-gutter);
  display: flex;
  align-items: center;
  background-image: url(../images/feature02/bg_header.jpg);
}
@media screen and (max-width: 820px) {
  .l-pageHeader.-frailty {
    background-image: url(../images/feature02/bg_header_sp.jpg);
    align-items: flex-end;
    margin-bottom: 17vw;
    padding: 0;
  }
}
.l-pageHeader.-crisis {
  height: 38.4rem;
  padding: 0 var(--content-gutter);
  display: flex;
  align-items: center;
  background-image: url(../images/responsibility/10/bg_header.jpg);
}
@media screen and (max-width: 820px) {
  .l-pageHeader.-crisis {
    background-image: url(../images/responsibility/10/bg_header_sp.jpg);
    align-items: flex-end;
    margin-bottom: 17vw;
    padding: 0;
  }
}
.l-pageHeader.-frailty-check {
  height: 16.4rem;
  padding: 0 var(--content-gutter);
  display: flex;
  align-items: center;
  background-image: url(../images/health/frailty-check/bg_header.png);
}
@media screen and (max-width: 820px) {
  .l-pageHeader.-frailty-check {
    background: #FFF4E4 url(../images/health/frailty-check/bg_header_sp.png) no-repeat bottom center/80%;
    margin-bottom: 0;
    height: 20.2rem;
    align-items: flex-start;
    padding-top: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .l-pageHeader.-frailty-check {
    background-size: contain;
  }
}
.l-pageHeader_movie {
  background: #fff;
  padding: 3.2rem;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_movie {
    padding: 2.4rem;
  }
}
.l-pageHeader_movie_label {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  line-height: 1.3;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_movie_label {
    flex-direction: column;
    font-size: 1.4rem;
  }
}
.l-pageHeader_movie_label_main {
  padding: 0.6rem 2.4rem 0.6rem 1.6rem;
  border-radius: 0 3rem 3rem 0;
  border: solid 2px #333;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_movie_label_main {
    border-radius: 0 0 0.8rem 0.8rem;
  }
}
.l-pageHeader_movie_label_sub {
  padding: 0.6rem 1.6rem 0.6rem 2.4rem;
  background: #333;
  color: #fff;
  border-radius: 3rem 0 0 3rem;
  border: solid 2px #333;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_movie_label_sub {
    border-radius: 0.8rem 0.8rem 0 0;
  }
}
.l-pageHeader_movie_title {
  font-size: 4rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_movie_title {
    font-size: 3.2rem;
  }
}
.l-pageHeader_movie_subtitle {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_movie_subtitle {
    font-size: 1.6rem;
  }
}
.l-pageHeader_inner {
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_inner {
    position: relative;
    bottom: -17vw;
  }
}
.-frailty-check .l-pageHeader_inner {
  bottom: 0;
}
.l-pageHeader_title {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 54rem;
  height: 42rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.6rem;
  text-align: center;
  margin: 0 0 0 auto;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 1024px) {
  .l-pageHeader_title {
    margin-inline: auto;
  }
}
@media screen and (max-width: 820px) {
  .l-pageHeader_title {
    width: 100%;
    height: auto;
    aspect-ratio: 600/469;
    padding-bottom: 2.2rem;
    gap: 1.92rem;
    letter-spacing: 0;
    font-size: clamp(2rem, 6vw, 5rem);
  }
}
@media screen and (max-width: 576px) {
  .l-pageHeader_title {
    translate: 0 50%;
    padding: 0;
  }
}
.l-pageHeader_title_icon {
  color: #E62128;
  text-align: center;
  font-size: 9.3333rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-pageHeader_title_icon img {
  width: 9rem;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_title_icon {
    font-size: 3.9rem;
    font-size: clamp(3.9rem, 11vw, 9.3333rem);
  }
  .l-pageHeader_title_icon img {
    width: clamp(3.75rem, 10vw, 9rem);
  }
}
.l-pageHeader_featureTitle {
  padding-bottom: 0.8rem;
  border-bottom: solid 1px var(--color-default);
  font-size: 4rem;
  font-weight: 700;
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_featureTitle {
    flex-direction: column;
    font-size: 1.8rem;
  }
}
.l-pageHeader_featureTitle_block {
  background: #fff;
  border-radius: 0.8rem;
  padding: 2.4rem 3.2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_featureTitle_block {
    padding: 1.6rem;
    width: 100%;
    border-radius: 0;
  }
}
.l-pageHeader_featureTitle_label {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0.1rem 0.8rem 0.3rem 0.8rem;
  gap: 1rem;
  border: solid 1px var(--color-default);
}
@media screen and (max-width: 820px) {
  .l-pageHeader_featureTitle_label {
    width: 100%;
    text-align: center;
    background: #fff;
  }
}
.l-pageHeader_featureTitle_sub {
  font-size: 2.2rem;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_featureTitle_sub {
    font-size: 1.4rem;
  }
}
.l-pageHeader_simpleTitle {
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .l-pageHeader_simpleTitle {
    font-size: 3rem;
  }
}

.l-simpleHeader {
  padding: 5.4rem var(--content-gutter) 11.6rem;
  background: #fff;
}
@media screen and (max-width: 820px) {
  .l-simpleHeader {
    padding: var(--content-gutter);
  }
}
.l-simpleHeader_contents {
  margin-top: -8rem;
}
@media screen and (max-width: 820px) {
  .l-simpleHeader_contents {
    margin: 0;
  }
}
.l-simpleHeader_title {
  font-size: 3.6rem;
  font-weight: 500;
  padding: 0 2.2rem;
  position: relative;
  line-height: 1.25;
  margin: 0;
}
.l-simpleHeader_title::before {
  content: "";
  display: block;
  background: linear-gradient(180deg, #FA9600 0%, #FF0800 100%);
  width: 0.6rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .l-simpleHeader_title {
    font-size: clamp(2.4rem, 2.8125vw, 3.6rem);
    padding: 0 clamp(1.3rem, 3.28125vw, 4.2rem);
  }
}
.l-simpleHeader_title br {
  display: none;
}
@media screen and (max-width: 576px) {
  .l-simpleHeader_title br {
    display: block;
  }
}

.l-leadBlock {
  background: #fff;
  padding: 7rem var(--content-gutter);
}
@media screen and (max-width: 820px) {
  .l-leadBlock {
    padding-block: 3rem;
  }
}
.l-leadBlock_inner {
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
}
.l-leadBlock_text {
  font-size: 1.8rem;
  line-height: 2.4;
}

/*****************************************************
  Component
*****************************************************/
/* -----------------------------------------------
  .c-btn
----------------------------------------------- */
.c-btn {
  color: var(--color-theme);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 42rem;
  background: #fff;
  border: solid 0.2rem var(--color-theme);
  border-radius: 5rem;
  padding: 1.1rem 5rem 1.2rem 3.7rem;
  position: relative;
  transition: 0.3s;
  margin: 6rem auto 0;
}
@media screen and (max-width: 820px) {
  .c-btn {
    padding: 0.7rem 3.2rem;
    margin: 3rem auto 0;
    font-size: 1.6rem;
  }
}
.c-btn:visited {
  color: var(--color-theme);
}
.c-btn.-type02 {
  color: #fff;
  background: var(--color-theme);
}
@media (hover: hover) {
  .c-btn.-type02:hover {
    color: var(--color-theme);
    transition: 0.3s;
    background: #fff;
  }
  .c-btn.-type02:hover .arrow_icon {
    background: #fff;
    border: solid 0.2rem #fff;
    transition: 0.3s;
  }
  .c-btn.-type02:hover .arrow_icon::before {
    border-color: #fff;
  }
}
@media (hover: hover) {
  .c-btn:hover {
    color: #fff;
    border: solid 0.2rem var(--color-theme);
    transition: 0.3s;
    background: var(--color-theme);
  }
  .c-btn:hover .arrow_icon {
    background: #fff;
    border: solid 0.2rem var(--color-theme);
    transition: 0.3s;
  }
  .c-btn:hover .arrow_icon::before {
    border-color: var(--color-theme);
  }
}

/* -----------------------------------------------
  .c-title
----------------------------------------------- */
.c-titleLvTwo {
  font-size: 3.6rem;
  font-weight: 500;
  padding: 0 2.2rem;
  position: relative;
  line-height: 1.5;
  margin: 0 0 3.2rem;
}
@media screen and (max-width: 820px) {
  .c-titleLvTwo {
    font-size: 2.6rem;
    padding-left: 1.4rem;
  }
}
.c-titleLvTwo::before {
  content: "";
  display: block;
  background: linear-gradient(180deg, #FA9600 0%, #FF0800 100%);
  width: 0.6rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 820px) {
  .c-titleLvTwo::before {
    width: 0.4rem;
  }
}
.c-titleLvTwo .-en {
  font-size: 2.2rem;
  font-family: "Roboto Condensed";
  font-weight: 500;
  position: relative;
  top: -0.25em;
  padding: 0.4rem 1.2rem;
  border: solid 1px var(--color-default);
  margin-right: -1em;
}
@media screen and (max-width: 820px) {
  .c-titleLvTwo .-en {
    display: block;
    font-size: 1.6rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.c-titleLvTwo .-label {
  font-size: 2.2rem;
  font-weight: 500;
  position: relative;
  top: -0.2em;
  padding: 0.3rem 1.2rem 0.5rem 1.2rem;
  border: solid 1px var(--color-default);
}
@media screen and (max-width: 820px) {
  .c-titleLvTwo .-label {
    display: block;
    font-size: 1.6rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.c-titleLvTwo .-shoulder {
  font-size: 2rem;
  font-weight: 700;
}
.c-titleLvTwo .-sub {
  font-size: 1.6rem;
}
.c-titleLvTwo.-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-titleLvTwo.-small {
  font-size: 2.4rem;
}
@media screen and (max-width: 820px) {
  .c-titleLvTwo.-small {
    font-size: 2rem;
  }
}
.c-titleLvTwo.-bg {
  background: var(--color-bg);
  padding-block: 0.8rem;
}

.c-titleLvThree {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem 0;
}
@media screen and (max-width: 820px) {
  .c-titleLvThree {
    font-size: 2rem;
  }
}
.c-titleLvThree.-large {
  font-size: 2.8rem;
}
@media screen and (max-width: 820px) {
  .c-titleLvThree.-large {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
.c-titleLvThree .-sub {
  font-size: 1.6rem;
}
@media screen and (max-width: 820px) {
  .c-titleLvThree .-sub {
    font-size: 1.4rem;
  }
}
.c-titleLvThree:has(.-label) {
  flex-direction: row;
  gap: 0.8rem;
  align-items: flex-start;
}
@media screen and (max-width: 820px) {
  .c-titleLvThree:has(.-label) {
    flex-direction: column;
  }
}
.c-titleLvThree .-label {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  top: 0.1em;
  padding: 0.2rem 0.8rem 0.4rem 0.8rem;
  border: solid 1px var(--color-default);
  flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .c-titleLvThree .-label {
    display: block;
    font-size: 1.4rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.c-titleLvFour {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 auto 1.2rem;
}
.c-titleLvFour::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-theme);
  flex-shrink: 0;
  border-radius: 50%;
}

.c-titleLvFive {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 820px) {
  .c-titleLvFive {
    font-size: 1.8rem;
  }
}

.c-bgTitle {
  font-size: 1.4rem;
  font-weight: 700;
  background: #FFDFB0;
  padding: 0.8rem 1.6rem;
  margin-top: 0.8rem;
  margin-bottom: 3.2rem;
}

.c-imgbox {
  border-radius: 0.8rem;
  background: #F8F8F3;
  padding: 3.2rem 4rem;
  text-align: center;
  margin: 3.2rem auto;
}
@media screen and (max-width: 820px) {
  .c-imgbox {
    padding: 2.4rem;
  }
}
.c-imgbox_title {
  font-size: 2.6rem;
  font-weight: 500;
  padding-bottom: 1.2rem;
  position: relative;
  line-height: 1.5;
  margin: 0 0 3.2rem;
  border-bottom: 1px solid #DADADA;
  text-align: left;
}
@media screen and (max-width: 820px) {
  .c-imgbox_title {
    font-size: 1.8rem;
  }
}
.c-imgbox_caption {
  font-weight: 700;
  margin-top: 3.2rem;
  text-align: left;
}
.c-imgbox svg {
  max-width: 100%;
  height: auto;
}
.c-imgbox.-type01 {
  background: #fff;
}
.c-imgbox.-type02 {
  background: #FFF4E4;
}

.c-grid {
  display: grid;
  gap: var(--content-gap);
  margin-block: 3.2rem;
}

.c-grid[data-grid-col^="1-"] {
  grid-template-columns: repeat(1, 1fr);
}

.c-grid[data-grid-col^="2-"] {
  grid-template-columns: repeat(2, 1fr);
}

.c-grid[data-grid-col^="3-"] {
  grid-template-columns: repeat(3, 1fr);
}

.c-grid[data-grid-col^="4-"] {
  grid-template-columns: repeat(4, 1fr);
}

.c-grid[data-grid-col^="5-"] {
  grid-template-columns: repeat(5, 1fr);
}

.c-grid[data-grid-rowgap^="0-"] {
  row-gap: 0px;
}

.c-grid[data-grid-colgap^="0-"] {
  -moz-column-gap: 0px;
       column-gap: 0px;
}

.c-grid[data-grid-rowgap^="5-"] {
  row-gap: 5px;
}

.c-grid[data-grid-colgap^="5-"] {
  -moz-column-gap: 5px;
       column-gap: 5px;
}

.c-grid[data-grid-rowgap^="10-"] {
  row-gap: 10px;
}

.c-grid[data-grid-colgap^="10-"] {
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.c-grid[data-grid-rowgap^="15-"] {
  row-gap: 15px;
}

.c-grid[data-grid-colgap^="15-"] {
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.c-grid[data-grid-rowgap^="20-"] {
  row-gap: 20px;
}

.c-grid[data-grid-colgap^="20-"] {
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.c-grid[data-grid-rowgap^="25-"] {
  row-gap: 25px;
}

.c-grid[data-grid-colgap^="25-"] {
  -moz-column-gap: 25px;
       column-gap: 25px;
}

.c-grid[data-grid-rowgap^="30-"] {
  row-gap: 30px;
}

.c-grid[data-grid-colgap^="30-"] {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.c-grid[data-grid-rowgap^="35-"] {
  row-gap: 35px;
}

.c-grid[data-grid-colgap^="35-"] {
  -moz-column-gap: 35px;
       column-gap: 35px;
}

.c-grid[data-grid-rowgap^="40-"] {
  row-gap: 40px;
}

.c-grid[data-grid-colgap^="40-"] {
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.c-grid[data-grid-rowgap^="45-"] {
  row-gap: 45px;
}

.c-grid[data-grid-colgap^="45-"] {
  -moz-column-gap: 45px;
       column-gap: 45px;
}

.c-grid[data-grid-rowgap^="50-"] {
  row-gap: 50px;
}

.c-grid[data-grid-colgap^="50-"] {
  -moz-column-gap: 50px;
       column-gap: 50px;
}

@media screen and (max-width: 1024px) {
  .c-grid[data-grid-col*="-1-"] {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid[data-grid-col*="-2-"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid[data-grid-col*="-3-"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid[data-grid-col*="-4-"] {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid[data-grid-col*="-5-"] {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid[data-grid-rowgap*="-0-"] {
    row-gap: 0px;
  }
  .c-grid[data-grid-colgap*="-0-"] {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .c-grid[data-grid-rowgap*="-5-"] {
    row-gap: 5px;
  }
  .c-grid[data-grid-colgap*="-5-"] {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .c-grid[data-grid-rowgap*="-10-"] {
    row-gap: 10px;
  }
  .c-grid[data-grid-colgap*="-10-"] {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .c-grid[data-grid-rowgap*="-15-"] {
    row-gap: 15px;
  }
  .c-grid[data-grid-colgap*="-15-"] {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .c-grid[data-grid-rowgap*="-20-"] {
    row-gap: 20px;
  }
  .c-grid[data-grid-colgap*="-20-"] {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .c-grid[data-grid-rowgap*="-25-"] {
    row-gap: 25px;
  }
  .c-grid[data-grid-colgap*="-25-"] {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .c-grid[data-grid-rowgap*="-30-"] {
    row-gap: 30px;
  }
  .c-grid[data-grid-colgap*="-30-"] {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .c-grid[data-grid-rowgap*="-35-"] {
    row-gap: 35px;
  }
  .c-grid[data-grid-colgap*="-35-"] {
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
  .c-grid[data-grid-rowgap*="-40-"] {
    row-gap: 40px;
  }
  .c-grid[data-grid-colgap*="-40-"] {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .c-grid[data-grid-rowgap*="-45-"] {
    row-gap: 45px;
  }
  .c-grid[data-grid-colgap*="-45-"] {
    -moz-column-gap: 45px;
         column-gap: 45px;
  }
  .c-grid[data-grid-rowgap*="-50-"] {
    row-gap: 50px;
  }
  .c-grid[data-grid-colgap*="-50-"] {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media screen and (max-width: 820px) {
  .c-grid[data-grid-col$="-1"] {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid[data-grid-col$="-2"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid[data-grid-col$="-3"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid[data-grid-col$="-4"] {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid[data-grid-col$="-5"] {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid[data-grid-rowgap^="-0"] {
    row-gap: 0px;
  }
  .c-grid[data-grid-colgap^="-0"] {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .c-grid[data-grid-rowgap^="-5"] {
    row-gap: 5px;
  }
  .c-grid[data-grid-colgap^="-5"] {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .c-grid[data-grid-rowgap^="-10"] {
    row-gap: 10px;
  }
  .c-grid[data-grid-colgap^="-10"] {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .c-grid[data-grid-rowgap^="-15"] {
    row-gap: 15px;
  }
  .c-grid[data-grid-colgap^="-15"] {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .c-grid[data-grid-rowgap^="-20"] {
    row-gap: 20px;
  }
  .c-grid[data-grid-colgap^="-20"] {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .c-grid[data-grid-rowgap^="-25"] {
    row-gap: 25px;
  }
  .c-grid[data-grid-colgap^="-25"] {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .c-grid[data-grid-rowgap^="-30"] {
    row-gap: 30px;
  }
  .c-grid[data-grid-colgap^="-30"] {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .c-grid[data-grid-rowgap^="-35"] {
    row-gap: 35px;
  }
  .c-grid[data-grid-colgap^="-35"] {
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
  .c-grid[data-grid-rowgap^="-40"] {
    row-gap: 40px;
  }
  .c-grid[data-grid-colgap^="-40"] {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .c-grid[data-grid-rowgap^="-45"] {
    row-gap: 45px;
  }
  .c-grid[data-grid-colgap^="-45"] {
    -moz-column-gap: 45px;
         column-gap: 45px;
  }
  .c-grid[data-grid-rowgap^="-50"] {
    row-gap: 50px;
  }
  .c-grid[data-grid-colgap^="-50"] {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
.subgrid {
  display: grid;
  grid-template-rows: subgrid;
}
.subgrid[data-subgrid-row="2"] {
  grid-row: span 2;
}
.subgrid[data-subgrid-row="3"] {
  grid-row: span 3;
}
.subgrid[data-subgrid-row="4"] {
  grid-row: span 4;
}

/* -----------------------------------------------
  .c-card
----------------------------------------------- */
.c-card {
  background: #FEF4E5;
  border: solid 0.1rem #E5E5E4;
  border-radius: 0.8rem;
  gap: 0;
}
.c-card_imgbox {
  border-radius: 0.8rem 0.8rem 0 0;
  background: #fff;
  text-align: center;
  padding: 1.6rem;
  padding-bottom: 1rem;
}
.c-card_linkbox {
  text-align: center;
  padding: 1.6rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: solid 0.1rem #E5E5E4;
}
.c-card_linkbox a {
  font-weight: 700;
}
.c-card_textbox {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  margin-inline: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: solid 0.1rem #E5E5E4;
  font-size: 1.6rem;
}

/* -----------------------------------------------
  .c-profile
----------------------------------------------- */
.c-profile {
  display: flex;
  gap: 2.4rem;
  padding: 2.4rem;
  background: #F7F7F1;
}
@media screen and (max-width: 820px) {
  .c-profile {
    flex-direction: column-reverse;
  }
}
.c-profile_imgbox {
  max-width: 28rem;
  flex-shrink: 0;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .c-profile_imgbox {
    max-width: 15rem;
  }
}
.c-profile_title {
  font-size: 1.8rem;
  font-weight: 400;
  border-bottom: 1px solid #DAD6D5;
  padding-bottom: 0.8rem;
  margin-bottom: 2.4rem;
}
.c-profile_name {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}
.c-profile_text {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* -----------------------------------------------
  .c-lead
----------------------------------------------- */
.c-lead {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: bold;
  margin-block: 3.2rem;
}
@media screen and (max-width: 820px) {
  .c-lead {
    font-size: 1.6rem;
  }
}

/* -----------------------------------------------
  .c-caption
----------------------------------------------- */
.c-caption {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-caption);
  text-align: left;
  margin-top: 0.8rem;
}

/* -----------------------------------------------
  .c-text
----------------------------------------------- */
.c-text {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  .c-text {
    font-size: 1.6rem;
  }
}
.c-text + .c-text {
  margin-top: 2.4rem;
}

/* -----------------------------------------------
  .c-link
----------------------------------------------- */
.c-link {
  text-decoration: underline;
  color: var(--color-theme);
  word-break: break-all;
}
.c-link:visited {
  color: var(--color-theme);
}
.c-link_icon {
  margin-left: 0.8rem;
  margin-top: 0.35em;
}
@media (hover: hover) {
  .c-link:hover {
    text-decoration: none;
  }
}

.c-linkList {
  border: solid 0.1rem #DAD6D5;
  padding: 1.6rem 2.4rem;
  margin: 3.2rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: #fff;
}
@media screen and (max-width: 820px) {
  .c-linkList {
    padding: 1rem;
  }
}
.c-linkList_item {
  display: flex;
  gap: 1rem;
}
.c-linkList_item::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: var(--color-default);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5em;
}
.c-linkList_item_link {
  color: var(--color-theme);
  font-size: 1.6rem;
  font-weight: 700;
}
.c-linkList_item_link:visited {
  color: var(--color-theme);
}
.c-linkList_item_link_icon {
  margin-left: 0.8rem;
  margin-top: 0.35em;
}
@media (hover: hover) {
  .c-linkList_item_link:hover {
    text-decoration: underline;
    color: var(--color-theme);
  }
}
@media screen and (max-width: 820px) {
  .c-linkList_item_link {
    font-size: 1.4rem;
  }
}

/* -----------------------------------------------
  .c-textList
----------------------------------------------- */
[class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-numericList]:not([class*=_item]):not([class*=_title]):not([class*=_data]):not([class*=_number]),
[class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-linkArrowList]:not([class*=_item]) {
  margin-top: 0.7rem;
  padding: 0 0 0.7rem;
}
[class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]):not([class*=_item]) {
  margin-top: 0.7rem;
  padding: 0 0 0.7rem;
}

@media screen and (max-width: 820px) {
  [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-numericList]:not([class*=_item]):not([class*=_title]):not([class*=_data]):not([class*=_number]),
  [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-linkArrowList]:not([class*=_item]) {
    margin-top: 0.7rem;
  }
  [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) {
    padding-left: 0.9rem;
  }
}
.c-textList {
  margin-top: 0;
  margin-bottom: 0;
}
.c-textList_item {
  position: relative;
  padding-left: 1em;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .c-textList_item {
    font-size: 1.4rem;
  }
}
.c-textList_item + .c-textList_item {
  margin-top: 0.8rem;
}
.c-textList_item:before {
  position: absolute;
  content: "";
  display: block;
  top: 0.8em;
  left: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-default);
}
.-red .c-textList_item:before {
  background: var(--color-theme);
}

/* -----------------------------------------------
  .c-numericList
----------------------------------------------- */
.c-numericList {
  margin: 0;
  counter-reset: number 0;
}
.c-numericList_item {
  padding: 0 0 0 2.6rem;
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.c-numericList_item:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number 1;
  content: counter(number) ".";
  font-weight: 700;
}
.c-numericList_item + .c-numericList_item {
  margin-top: 0.4rem;
}
@media screen and (max-width: 820px) {
  .c-numericList_item {
    font-size: 1.4rem;
  }
}

/* -----------------------------------------------
  .c-notice
----------------------------------------------- */
.c-notice_item {
  position: relative;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.8;
}
.c-notice_item + .c-notice_item {
  margin-top: 1rem;
}
.c-notice_mark {
  position: absolute;
  left: 0;
}
.c-notice.-numeric > .c-notice_item {
  padding-left: 2em;
}
.c-notice.-w2em .c-notice_item {
  padding-left: 2em;
}
.c-notice.-w3em .c-notice_item {
  padding-left: 3em;
}
.c-notice.-w4em .c-notice_item {
  padding-left: 4em;
}
.c-notice.-w5em .c-notice_item {
  padding-left: 5em;
}
.c-notice.-w6em .c-notice_item {
  padding-left: 6em;
}
.c-notice.-w7em .c-notice_item {
  padding-left: 7em;
}
.c-notice.-w8em .c-notice_item {
  padding-left: 8em;
}
.c-notice.-w9em .c-notice_item {
  padding-left: 9em;
}
.c-notice.-w10em .c-notice_item {
  padding-left: 10em;
}
.c-notice.-w11em .c-notice_item {
  padding-left: 11em;
}
.c-notice.-w12em .c-notice_item {
  padding-left: 12em;
}
.c-notice.-w13em .c-notice_item {
  padding-left: 13em;
}
.c-notice.-w14em .c-notice_item {
  padding-left: 14em;
}
.c-notice.-w15em .c-notice_item {
  padding-left: 15em;
}
.c-notice.-w16em .c-notice_item {
  padding-left: 16em;
}
.c-notice.-w17em .c-notice_item {
  padding-left: 17em;
}
.c-notice.-w18em .c-notice_item {
  padding-left: 18em;
}
.c-notice.-w19em .c-notice_item {
  padding-left: 19em;
}
.c-notice.-w20em .c-notice_item {
  padding-left: 20em;
}

/* -----------------------------------------------
  .c-caution
----------------------------------------------- */
.c-caution {
  margin-top: 3.2rem;
  padding-left: 2.4rem;
  border-left: solid 0.1rem #DADADA;
}
.c-caution_item {
  text-indent: -1.8em;
  margin-left: 1.8em;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 1.6rem;
}
.c-caution_item:first-child {
  margin-top: 0;
}
.c-caution_item .-num {
  color: var(--color-caution);
  font-weight: 700;
  margin-right: 0.8rem;
}
.c-caution_item + .c-link {
  font-size: 1.4rem;
}

/* -----------------------------------------------
  .c-quote
----------------------------------------------- */
.c-quote {
  margin-top: 3.2rem;
  padding-left: 2.4rem;
  border-left: solid 0.1rem #DADADA;
}
.c-quote_item {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 1.6rem;
}
.c-quote_item:first-child {
  margin-top: 0;
}
.c-quote_item + .c-link {
  font-size: 1.4rem;
}

/* -----------------------------------------------
  .c-table
----------------------------------------------- */
.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table.-fixed {
  table-layout: fixed;
}
.c-table th {
  font-size: 1.6rem;
  font-weight: 700;
  border: solid 0.1rem #FFCB80;
  border-left: solid 0.2rem #FA9100;
  border-right: none;
  background: #FFDFB0;
  padding: 1.6rem;
  text-align: left;
  vertical-align: top;
  width: 25%;
}
.c-table th.-w20 {
  width: 20%;
}
.c-table td {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.6rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid #E5E5E4;
  background: #FFF;
}
.c-table td.-highlight {
  background: #FEF4E5;
  width: 45%;
}
.c-table thead th {
  border: 1px solid #E5E5E4;
  background: #F7F7F1;
}
.c-table .-bg01 {
  background: #FEF4E5;
}
.c-table .-bg02 {
  background: #EDEDE4;
}
.c-table .-bg03 {
  background: #F7F7F1;
}
.c-table .-colorRed {
  color: var(--color-theme);
}
.c-table_title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 auto 1.2rem;
  border-top: 0.1rem solid #DAD6D5;
  padding-top: 1.2rem;
  width: 100%;
}
.c-table_title::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-theme);
  flex-shrink: 0;
  border-radius: 50%;
}
@media screen and (max-width: 820px) {
  .c-table th, .c-table td {
    font-size: 1.4rem;
    display: block;
    padding: 0.8rem 1.6rem;
    width: 100%;
  }
  .-hr .c-table th, .-hr .c-table td {
    display: revert;
  }
  .c-table th.-w20, .c-table td.-w20 {
    width: 100%;
  }
  .c-table.-table th, .c-table.-table td {
    display: revert;
  }
  .c-table th {
    border-bottom: none;
  }
  .c-table td {
    border-top: none;
  }
  .c-table td.-highlight {
    width: 100%;
  }
  .c-table_title {
    width: 100%;
  }
}

.c-table02 {
  width: 100%;
  border-collapse: collapse;
}
.c-table02.-fixed {
  table-layout: fixed;
}
.c-table02 th {
  font-size: 1.6rem;
  font-weight: 700;
  border: solid 0.1rem #FFCB80;
  border-left: solid 0.2rem #FA9100;
  border-right: none;
  background: #FFDFB0;
  padding: 1.6rem;
  text-align: left;
  vertical-align: top;
  width: 25%;
}
.c-table02 th.-w20 {
  width: 20%;
}
.c-table02 td {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.6rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid #E5E5E4;
  background: #FFF;
}
.c-table02 td.-highlight {
  background: #FEF4E5;
  width: 45%;
}
.c-table02 thead th {
  border: 1px solid #E5E5E4;
  background: #F7F7F1;
}
.c-table02 .-bg01 {
  background: #FEF4E5;
}
.c-table02_title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 auto 1.2rem;
  border-top: 0.1rem solid #DAD6D5;
  padding-top: 1.2rem;
  width: 100%;
}
.c-table02_title::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-theme);
  flex-shrink: 0;
  border-radius: 50%;
}
@media screen and (max-width: 820px) {
  .c-table02 th, .c-table02 td {
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem;
  }
}

/* -----------------------------------------------
  .c-imageUnit
----------------------------------------------- */
.c-imageUnit {
  overflow: hidden;
  zoom: 1;
  margin-block: 3.2rem;
}
.c-imageUnit_text {
  overflow: hidden;
  zoom: 1;
  line-height: 1.8;
}
.c-imageUnit_image {
  margin: 0;
  max-width: calc(50% - var(--content-gutter) / 2);
  text-align: center;
  margin-top: 0.5em;
}
.c-imageUnit_image.-sizeS {
  max-width: calc(30% - var(--content-gutter) / 2);
}
@media screen and (max-width: 820px) {
  .c-imageUnit_image {
    margin-top: 0;
  }
}
.c-imageUnit_image img {
  border-radius: 0.8rem;
}
.c-imageUnit_image_caption {
  text-align: left;
  margin: 1rem auto 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-caption);
}
.c-imageUnit.-parallel .c-imageUnit_text {
  overflow: visible;
}
.c-imageUnit.-imageL .c-imageUnit_image {
  float: left;
  margin-right: var(--content-gutter);
}
.c-imageUnit.-imageR .c-imageUnit_image {
  float: right;
  margin-left: var(--content-gutter);
}
@media screen and (max-width: 820px) {
  .c-imageUnit.-rtl[data-grid-col*="-1-"] {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .c-imageUnit.-rtl[data-grid-col*="-1-"] .c-imageUnit_image {
    margin: 2.4rem auto 0;
  }
  .c-imageUnit[data-grid-col*="-1-"] .c-imageUnit_image {
    float: none;
    margin: 0 auto 2.4rem;
    max-width: 100%;
  }
  .c-imageUnit[data-grid-col*="-1-"] .c-imageUnit_image img {
    width: auto;
  }
}
@media screen and (max-width: 576px) {
  .c-imageUnit {
    margin-bottom: 0;
  }
  .c-imageUnit.-rtl[data-grid-col$="-1"] {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .c-imageUnit.-rtl[data-grid-col$="-1"] .c-imageUnit_image {
    margin: 2.4rem auto 0 auto;
  }
  .c-imageUnit[data-grid-col$="-1"] .c-imageUnit_image {
    float: none;
    margin: 0 auto 2.4rem auto;
  }
  .c-imageUnit[data-grid-col$="-1"] .c-imageUnit_image img {
    width: auto;
  }
}

/* -----------------------------------------------
  .c-figure
----------------------------------------------- */
.c-figure {
  text-align: center;
  margin: 3.2rem auto;
}
@media screen and (max-width: 820px) {
  .c-figure img {
    max-width: 100%;
    width: auto;
  }
}
.c-figure.-border img {
  border: 1px solid #DAD6D5;
}

/* -----------------------------------------------
  .c-imageWithText
----------------------------------------------- */
.c-imageWithText {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 3.2rem;
}
.c-imageWithText_img {
  text-align: center;
}
@media screen and (max-width: 820px) {
  .c-imageWithText {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* -----------------------------------------------
  .c-definition
----------------------------------------------- */
.c-definition {
  display: grid;
  grid-template-columns: auto 1fr;
  margin: 0;
  font-weight: bold;
}

/* -----------------------------------------------
  .c-linkArrow
----------------------------------------------- */
.c-linkArrow {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.8;
}
.c-linkArrow a {
  color: var(--color-link);
}
.c-linkArrow a:hover {
  text-decoration: underline;
}
.c-linkArrow a::before {
  position: absolute;
  content: "";
  display: block;
  top: 0.6em;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent var(--color-link);
}
@media screen and (max-width: 820px) {
  .c-linkArrow {
    font-size: 1.6rem;
  }
}

/* -----------------------------------------------
  .c-box
----------------------------------------------- */
.c-box {
  padding: 2.4rem 3.2rem;
  background-color: #FEF4E5;
  border-radius: 0.8rem;
}
@media screen and (max-width: 820px) {
  .c-box {
    padding: 2.4rem;
  }
}
.c-box.-type01 {
  background: #fff;
}
.c-box.-type02 {
  background: #FDF9F2;
}
.c-box.-type03 {
  background: #F7F7F1;
}
.c-box.-type04 {
  background: #F8F8F3;
}

/* -----------------------------------------------
  .c-anchor
----------------------------------------------- */
.c-anchorLink {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3.2rem;
}
.c-anchorLink_item {
  padding: 1.2rem 4.8rem 1.2rem 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-theme);
  display: flex;
  align-items: center;
  border: solid 0.2rem var(--color-theme);
  border-radius: 0.4rem;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 820px) {
  .c-anchorLink_item {
    min-height: 8rem;
  }
}
.c-anchorLink_item_icon {
  margin-right: 1.5rem;
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .c-anchorLink_item_icon {
    width: 4rem;
    height: 4rem;
    -webkit-mask-size: 4rem;
            mask-size: 4rem;
  }
}
.c-anchorLink_item::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: var(--color-theme);
  clip-path: polygon(50% 62.5%, 0 0, 100% 0);
  display: block;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-3px);
}
@media (hover: hover) {
  .c-anchorLink_item:hover {
    background: var(--color-theme);
    color: #fff;
  }
  .c-anchorLink_item:hover::after {
    background-color: #fff;
  }
  .c-anchorLink_item:hover .c-anchorLink_item_icon {
    background: #fff;
  }
}

/* -----------------------------------------------
  .c-indentList
----------------------------------------------- */
.c-indentList {
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.c-indentList_item {
  text-indent: -1em;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .c-indentList_item {
    font-size: 1.6rem;
  }
}

/* -----------------------------------------------
  .c-modal
----------------------------------------------- */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10010;
  width: 100%;
  height: 100dvh;
  display: none;
}
.c-modal[aria-hidden=false] .c-modal_overlay,
.c-modal[aria-hidden=false] .c-modal_content {
  animation: fadeIn 0.5s linear;
}
.c-modal[aria-hidden=true] .c-modal_overlay,
.c-modal[aria-hidden=true] .c-modal_content {
  animation: fadeOut 0.5s linear;
}
.c-modal.is-open {
  display: block;
}
.c-modal_overlay, .c-modal_content {
  will-change: transform;
}
.c-modal_overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: var(--content-gutter);
}
.c-modal_content {
  width: 100%;
  max-width: 100rem;
  padding: 5rem 4rem;
  border-radius: 0.4rem;
  background: #FFF4E4;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  overflow: auto;
}
@media screen and (max-width: 820px) {
  .c-modal_content {
    padding: 3.2rem 2.4rem;
  }
}
.c-modal_header {
  margin-bottom: 2.4rem;
}
.c-modal_title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
}
.c-modal_close {
  background: #fff;
  border: solid 1px var(--color-theme);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
}
.c-modal_close:hover {
  background-color: var(--color-theme);
}
.c-modal_close:hover svg rect {
  fill: #fff;
}

/* -----------------------------------------------
  .c-video
----------------------------------------------- */
.c-video {
  display: block;
  max-width: 100%;
  margin-bottom: 3.2rem;
}
.c-video iframe, .c-video video {
  width: 100%;
  aspect-ratio: 16/9;
}

body[data-current=detail] {
  background: #fff;
}

/*****************************************************
  top
*****************************************************/
.arrow_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  background: #e6002d;
  border-radius: 50%;
  position: absolute;
  right: 1rem;
  top: 50%;
  translate: 0 -50%;
  border: solid 0.1rem #e6002d;
  transition: background-color 0.3s;
}
.arrow_icon:before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  transform: translateX(-1px) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: border-color 0.3s;
}
.arrow_icon.-type01 {
  background: #fff;
  border: solid 0.1rem #fa9600;
}
.arrow_icon.-type01::before {
  border-top: 2px solid #fa9600;
  border-right: 2px solid #fa9600;
}
.arrow_icon.-mono {
  background: var(--color-default);
  right: 1.5rem;
  border: solid 0.1rem var(--color-default);
}
.arrow_icon.-large {
  width: 6rem;
  height: 6rem;
}
@media screen and (max-width: 820px) {
  .arrow_icon.-large {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.arrow_icon.-large::before {
  width: 1rem;
  height: 1rem;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
@media screen and (max-width: 820px) {
  .arrow_icon.-large::before {
    border-width: 0.2rem;
  }
}
.arrow_icon.-header {
  width: 2rem;
  height: 2rem;
  right: 0;
}
.arrow_icon.-header::before {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* -----------------------------------------------
  .mv
----------------------------------------------- */
.mv {
  position: relative;
  padding-bottom: 7.6rem;
}
.mv::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.6rem;
  background: var(--color-gra);
}
@media screen and (max-width: 1480px) {
  .mv::before {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .mv {
    padding-bottom: 6.4rem;
    padding-top: 1.6rem;
  }
}
.mv_bg {
  background: #fff url(../images/bg_mv.png);
  min-height: 40.8rem;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 1480px) {
  .mv_bg {
    min-height: 34.8rem;
  }
}
@media screen and (max-width: 1280px) {
  .mv_bg {
    min-height: 32.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .mv_bg {
    min-height: 26.6rem;
  }
}
@media screen and (max-width: 820px) {
  .mv_bg {
    min-height: 30rem;
  }
}
.mv_inner {
  max-width: 144rem;
  margin-inline: auto;
  display: flex;
  gap: 4rem;
  padding-inline: var(--content-gutter);
  padding-top: 6.4rem;
}
@media screen and (max-width: 1480px) {
  .mv_inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 3rem;
    gap: 1.6rem;
  }
}
@media screen and (max-width: 840px) {
  .mv_inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 820px) {
  .mv_inner {
    flex-direction: column;
    gap: 0;
    padding-inline: 1.6rem;
    padding-block: 0;
  }
}
.mv_lead {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: normal;
  position: relative;
  margin-inline: auto;
}
.mv_lead br {
  display: none;
}
@media screen and (max-width: 1480px) {
  .mv_lead {
    font-size: 1.4rem;
    padding: 0 0 0.8rem;
    text-align: left;
  }
}
@media screen and (max-width: 576px) {
  .mv_lead br {
    display: block;
  }
}
@media screen and (max-width: 840px) {
  .mv_lead {
    font-size: 1.8rem;
  }
}
.mv_slide {
  max-width: 73.3rem;
  border-radius: 0.8rem;
  margin-inline: auto;
  background: #fff;
  box-shadow: 0 0.8rem 0.8rem rgba(0, 0, 0, 0.15);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .mv_slide {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .mv_slide {
    max-width: 100%;
    width: 100%;
  }
  .mv_slide img {
    width: 100%;
  }
}
.mv_slide_imgbox_img {
  border: solid 2px #e6e6e6;
}
.mv_slide_textbox {
  background: #fff;
  padding: 3.2rem;
  min-height: 26.3rem;
  border-radius: 0 0 0.8rem 0.8rem;
}
@media screen and (max-width: 820px) {
  .mv_slide_textbox {
    min-height: revert;
  }
}
@media screen and (max-width: 820px) {
  .mv_slide_textbox {
    padding: 1.6rem 1.6rem 2.4rem;
  }
}
.mv_slide_textbox_category {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.108rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 820px) {
  .mv_slide_textbox_category {
    font-size: 1.4rem;
  }
}
.mv_slide_textbox_category_icon {
  color: #e62128;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mv_slide_textbox_category_icon img {
  width: 2.4rem;
  height: 1.5rem;
}
.mv_slide_textbox_title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1280px) {
  .mv_slide_textbox_title {
    -webkit-line-clamp: 3;
  }
}
@media screen and (max-width: 820px) {
  .mv_slide_textbox_title {
    font-size: 2rem;
  }
}
.mv_slide_textbox_text {
  font-size: 1.4rem;
  font-weight: 700;
}
.mv_btn {
  color: var(--color-theme);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 41rem;
  border: solid 0.2rem var(--color-theme);
  border-radius: 6rem;
  padding: 1.2rem 4.6rem 1.2rem 1.6rem;
  position: relative;
  margin: 0;
}
@media screen and (max-width: 1480px) {
  .mv_btn {
    padding: 1.2rem 3.2rem 1.2rem 1.6rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .mv_btn {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 840px) {
  .mv_btn {
    max-width: 32.7rem;
  }
}
@media (hover: hover) {
  .mv_btn:hover {
    color: #fff;
  }
  .mv_btn:hover::before {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .mv_btn:hover svg path {
    fill: var(--color-theme);
  }
  .mv_btn:hover svg circle {
    fill: #fff;
  }
}
.mv_btn_icon {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  translate: 0 -50%;
}
.mv_logobox {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 62rem;
}
@media screen and (max-width: 1480px) {
  .mv_logobox {
    max-width: 67.6rem;
  }
}
@media screen and (max-width: 840px) {
  .mv_logobox {
    max-width: 100%;
    margin-bottom: 6.4rem;
  }
}
.mv_logo {
  margin: 2.4rem 0;
}
@media screen and (max-width: 1480px) {
  .mv_logo.animationlogo {
    max-width: 56rem;
    margin: 0.8rem 0 2.76rem;
  }
}
@media screen and (max-width: 1280px) {
  .mv_logo.animationlogo {
    max-width: 46rem;
  }
}
@media screen and (max-width: 1024px) {
  .mv_logo.animationlogo {
    max-width: 26.2rem;
  }
}
@media screen and (max-width: 840px) {
  .mv_logo.animationlogo {
    max-width: 40rem;
  }
}
.mv_anchor {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin-top: 6.4rem;
}
@media screen and (max-width: 576px) {
  .mv_anchor {
    display: none;
  }
}
.mv_anchor_item {
  position: relative;
}
.mv_anchor_item_link {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.5rem 4.6rem 1.5rem 2.2rem;
  height: 100%;
  background: #fff;
  transition: 0.3s;
  border: solid 2px #d1a76a;
  position: relative;
  min-height: 7rem;
}
@media screen and (max-width: 1480px) {
  .mv_anchor_item_link {
    font-size: clamp(1.3rem, 1.081vw, 1.6rem);
    padding: 1.5rem 3.6rem 1.5rem 1.6rem;
  }
}
@media screen and (max-width: 840px) {
  .mv_anchor_item_link {
    font-size: 1.8rem;
  }
}
@media (hover: hover) {
  .mv_anchor_item_link:hover {
    border-color: var(--color-theme);
    color: var(--color-theme);
    text-decoration: underline;
  }
}
.mv_anchor_item_link .arrow_icon {
  width: 2rem;
  height: 2rem;
}
.mv_anchor_item:nth-child(1) .mv_anchor_item_link {
  border-radius: 0.8rem 0 0 0;
}
.mv_anchor_item:nth-child(1) .mv_anchor_item_link:hover {
  z-index: 1;
}
.mv_anchor_item:nth-child(2) .mv_anchor_item_link {
  border-radius: 0 0.8rem 0 0;
  transform: translateX(-2px);
}
.mv_anchor_item:nth-child(2) .mv_anchor_item_link:hover {
  z-index: 1;
}
.mv_anchor_item:nth-child(3) .mv_anchor_item_link {
  transform: translateY(-2px);
}
.mv_anchor_item:nth-child(3) .mv_anchor_item_link:hover {
  z-index: 1;
}
.mv_anchor_item:nth-child(4) .mv_anchor_item_link {
  transform: translate(-2px, -2px);
  border-radius: 0 0 0.8rem 0;
}
.mv_anchor_item:nth-child(4) .mv_anchor_item_link:hover {
  z-index: 1;
}
.mv_anchor_item:nth-child(5) .mv_anchor_item_link {
  border-radius: 0 0 0.8rem 0.8rem;
  transform: translateY(-4px);
}
.mv_anchor_item:nth-child(5) .mv_anchor_item_link:hover {
  z-index: 1;
}

.spMenu {
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 10;
}

.articleTitle {
  font-size: 5.4rem;
  font-weight: 900;
  padding: 0 3.2rem;
  display: inline-flex;
  flex-direction: column;
  position: relative;
  line-height: 1;
  margin-bottom: 4rem;
}
.articleTitle .-sub {
  font-size: 2rem;
  font-weight: 700;
}
.articleTitle::before {
  content: "";
  display: block;
  background: var(--color-gra);
  width: 0.4rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .articleTitle {
    font-size: 3.2rem;
    padding: 0 2.4rem;
  }
}

.newArticle {
  display: flex;
  gap: 8rem;
  margin-bottom: -7rem;
}
@media screen and (max-width: 1024px) {
  .newArticle {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 820px) {
  .newArticle {
    padding: 0 3.2rem;
  }
}
.newArticle_item {
  margin-left: 4rem;
  max-width: 52rem;
  position: relative;
}
@media screen and (max-width: 820px) {
  .newArticle_item {
    margin-inline: auto;
  }
}
.newArticle_item:nth-child(even) {
  translate: 0rem -16rem;
}
@media screen and (max-width: 1024px) {
  .newArticle_item:nth-child(even) {
    translate: 0;
  }
}
@media (any-hover: hover) {
  .newArticle_item_link:hover img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  .newArticle_item_link:hover .newArticle_item_textbox_text {
    text-decoration: underline;
  }
}
.newArticle_item_imgbox {
  padding: 4rem;
  background: #fff;
  border-radius: 1rem;
  border: solid 2px var(--color-default);
}
@media screen and (max-width: 820px) {
  .newArticle_item_imgbox {
    padding: 2rem;
  }
}
.newArticle_item_imgbox img {
  transition: opacity 0.3s ease;
}
.newArticle_item_label {
  position: absolute;
  left: -4rem;
  top: 6rem;
  background: linear-gradient(90deg, #87cdd7 0%, #23b6bc 100%);
  padding: 0.8rem 1.5rem 0.9rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .newArticle_item_label {
    font-size: 1.2rem;
    left: -3.4rem;
    top: 3.4rem;
  }
}
.newArticle_item_textbox {
  max-width: 40rem;
  min-height: 14.1rem;
  border-radius: 0rem 1rem 0rem 0rem;
  border-top: 2px solid var(--color-default);
  border-right: 2px solid var(--color-default);
  background: #fff4e4;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 3rem 3rem 1rem;
  margin: -10rem 0 0 -4rem;
  position: relative;
}
@media screen and (max-width: 576px) {
  .newArticle_item_textbox {
    font-size: 1.5rem;
    padding: 1.73rem 0.73rem 1rem 0;
    width: 80%;
    min-height: 9.7rem;
    margin: -7.4rem 0 0 -2.2rem;
  }
}
.newArticle_item_textbox::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: #f7bcbe;
  position: absolute;
  top: -4.2rem;
  left: 0rem;
}
@media screen and (max-width: 820px) {
  .newArticle_item_textbox::before {
    width: 2.2rem;
    height: 2.2rem;
    top: -2.4rem;
  }
}
.newArticle_item_textbox::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  background: #f7bcbe;
  position: absolute;
  right: -4.2rem;
  bottom: 0.1rem;
}
@media screen and (max-width: 820px) {
  .newArticle_item_textbox::after {
    width: 2.2rem;
    height: 2.2rem;
    right: -2.4rem;
  }
}
.newArticle_item_textbox_text {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.newArticle_btn {
  color: var(--color-default);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 42rem;
  background: #fff;
  border: solid 0.2rem var(--color-default);
  border-radius: 5rem;
  padding: 1.1rem 5rem 1.2rem 3.7rem;
  position: relative;
  transition: 0.3s;
  margin: 5.5rem auto 0;
}
@media screen and (max-width: 820px) {
  .newArticle_btn {
    padding: 0.7rem 3.2rem;
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .newArticle_btn:hover {
    color: var(--color-theme);
    border: solid 0.2rem var(--color-theme);
    transition: 0.3s;
    text-decoration: none;
  }
  .newArticle_btn:hover .arrow_icon {
    background: var(--color-theme);
    border: solid 0.2rem var(--color-theme);
    transition: 0.3s;
  }
}

.splide {
  visibility: hidden;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: flex;
  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.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
  border-radius: 0.8rem 0.8rem 0 0;
}

.splide__spinner {
  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;
  border-radius: 0.8rem;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-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 {
  align-items: center;
  background: var(--color-theme);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  border: solid 1px var(--color-theme);
  justify-content: center;
  padding: 0;
  position: absolute;
  top: calc(50% - 13.1rem);
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 1480px) {
  .splide__arrow {
    width: 3.6rem;
    height: 3.6rem;
    top: 13.5vw;
  }
}
@media screen and (max-width: 840px) {
  .splide__arrow {
    top: 27vw;
  }
}
@media (hover: hover) {
  .splide__arrow:hover {
    background: #fff;
  }
  .splide__arrow:hover:before {
    border-color: var(--color-theme);
  }
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: -2.5rem;
}
@media screen and (max-width: 1480px) {
  .splide__arrow--prev {
    left: -1.5rem;
  }
}
.splide__arrow--prev:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-right: solid #fff 0.3rem;
  border-top: solid #fff 0.3rem;
  transform: translate(0.1rem) rotate(225deg);
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: -2.5rem;
}
@media screen and (max-width: 1480px) {
  .splide__arrow--next {
    right: -1.5rem;
  }
}
.splide__arrow--next:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-right: solid #fff 0.3rem;
  border-top: solid #fff 0.3rem;
  transform: translate(-0.1rem) rotate(45deg);
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  padding: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  width: calc(100% - 5rem);
  margin-top: 2.2rem;
  position: absolute;
  bottom: -3.8rem;
}

.splide__pagination__page {
  background: #717171;
  border: 0;
  max-width: 9.6rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
}

.splide__pagination__page.is-active {
  background: var(--color-theme);
  width: 1.6rem;
  height: 1.6rem;
  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;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .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;
  }
}
.splide__toggle {
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: -4.4rem;
}
.splide__toggle img {
  width: 2.8rem;
  height: 2.8rem;
}

.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 {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.iconTitle {
  display: flex;
  gap: clamp(1rem, 2.5vw, 3.2rem);
  align-items: center;
  padding-bottom: 3.8rem;
  margin-top: 0;
  margin-bottom: 4rem;
  position: relative;
}
.iconTitle::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  background: var(--color-grare);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 820px) {
  .iconTitle::after {
    height: 0.2rem;
  }
}
@media screen and (max-width: 820px) {
  .iconTitle {
    font-size: 3.8rem;
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .iconTitle {
    margin-bottom: 6.2rem;
  }
}
.iconTitle_icon {
  color: #e62128;
  text-align: center;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  translate: 0 -0.6rem;
}
.iconTitle_icon img {
  width: 5.4rem;
}
@media screen and (max-width: 820px) {
  .iconTitle_icon {
    font-size: 3.8rem;
  }
  .iconTitle_icon img {
    width: 3.6rem;
  }
}
.iconTitle_text {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.3rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.24rem;
  position: relative;
  padding-right: 11rem;
}
@media screen and (max-width: 820px) {
  .iconTitle_text {
    font-size: 2.4rem;
    padding-right: 6rem;
    line-height: 1.25;
  }
}
@media screen and (max-width: 820px) {
  .iconTitle_text {
    padding-right: 2rem;
  }
}
.iconTitle_text .-sub {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 820px) {
  .iconTitle_text .-sub {
    display: none;
  }
}
.iconTitle_text br {
  display: none;
}
@media screen and (max-width: 576px) {
  .iconTitle_text br {
    display: block;
  }
}
@media (any-hover: hover) {
  .iconTitle_text:hover .arrow_icon {
    background: #fff;
  }
  .iconTitle_text:hover .arrow_icon::before {
    border-color: var(--color-theme);
  }
}
.iconTitle_more {
  position: absolute;
  right: 0;
  bottom: 3.8rem;
  color: var(--color-theme);
  border: solid 2px var(--color-theme);
  border-radius: 3rem;
  background: #fff;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.2rem 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  transition: background 0.3s;
}
@media screen and (max-width: 820px) {
  .iconTitle_more {
    bottom: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .iconTitle_more {
    bottom: -4.2rem;
  }
}
@media (hover: hover) {
  .iconTitle_more:hover {
    background: var(--color-theme);
    color: #fff;
    transition: background 0.3s;
  }
  .iconTitle_more:hover .iconTitle_more_icon {
    background: #fff;
    transition: background 0.3s;
  }
  .iconTitle_more:hover .iconTitle_more_icon::before {
    border-top: 2px solid var(--color-theme);
    border-right: 2px solid var(--color-theme);
  }
}
.iconTitle_more:visited {
  color: var(--color-theme);
}
@media (hover: hover) {
  .iconTitle_more:visited:hover {
    color: #fff;
  }
}
.iconTitle_more_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--color-theme);
  border-radius: 50%;
  border: solid 0.1rem var(--color-theme);
  transition: border-color 0.3s;
}
.iconTitle_more_icon::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  transform: translateX(-1px) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: border-color 0.3s;
}

.articleList {
  display: flex;
  gap: clamp(1rem, 4.6875vw, 6rem);
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .articleList {
    gap: 1.8rem;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #e6e6e6;
    padding-top: 1.8rem;
  }
}
.articleList.-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 576px) {
  .articleList.-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.articleList.-narrow {
  gap: 3.6rem;
}
@media screen and (max-width: 820px) {
  .articleList.-narrow {
    gap: 1.8rem;
  }
}
.articleList:has(.articleList_wrap) {
  align-items: flex-start;
}
.articleList_wrap {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 50%;
}
@media screen and (max-width: 820px) {
  .articleList_wrap {
    width: 100%;
    gap: 1.8rem;
    align-items: center;
  }
}
@media screen and (max-width: 820px) {
  .articleList_wrap + .articleList_wrap {
    padding-top: 1.8rem;
    border-top: solid 2px #e6e6e6;
  }
}
.articleList_item {
  border-bottom: none;
  padding-bottom: 0;
  height: 100%;
}
.articleList_item.-small {
  border-bottom: solid 2px #e6e6e6;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 820px) {
  .articleList_item.-small {
    padding-bottom: 1.8rem;
    width: 100%;
  }
}
.articleList_item_link {
  container-type: inline-size;
  overflow: auto;
  resize: horizontal;
}
@media (any-hover: hover) {
  .articleList_item_link:hover img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    border-color: var(--color-theme);
  }
  .articleList_item_link:hover .articleList_item_title {
    text-decoration: underline;
    color: var(--color-theme);
  }
}
.articleList_item_wrap {
  display: flex;
  flex-direction: column;
  gap: 2.35rem 1.7rem;
}
.-small .articleList_item_wrap {
  flex-direction: row-reverse;
}
@media screen and (max-width: 820px) {
  .articleList_item_wrap {
    gap: 1rem;
  }
}
.articleList_item_imgbox {
  max-width: 56rem;
  width: 100%;
}
.-small .articleList_item_imgbox {
  max-width: 25rem;
  flex-shrink: 0;
  width: 43.859649%;
}
.articleList_item_imgbox img {
  border-radius: 1rem;
  border: solid 2px #e6e6e6;
  transition: opacity 0.3s ease;
}
.-small .articleList_item_imgbox img {
  border-radius: 0.5rem;
}
.articleList_item_textbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 56rem;
}
.articleList_item_title {
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
}
@media screen and (max-width: 820px) {
  .articleList_item_title {
    font-size: 1.7rem;
  }
}
.articleList_item_text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 820px) {
  .articleList_item_text {
    display: none;
  }
}
.articleList_item_tag {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
@media screen and (max-width: 820px) {
  .articleList_item_tag {
    gap: 0.6rem;
  }
}
.articleList_item_tag_item {
  color: var(--color-caption);
  font-size: 1.3rem;
}
.articleList.-all {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(2.4rem, 4.6875vw, 6rem);
}
.articleList.-all .articleList_item {
  flex: 1 1 calc(50% - clamp(1rem, 4.6875vw, 6rem));
  max-width: calc(50% - clamp(1rem, 4.6875vw, 6rem) / 2);
}
.articleList.-all .articleList_item:nth-child(n+7) {
  flex: 1 1 calc(33% - clamp(1rem, 4.6875vw, 6rem));
  max-width: calc(33% - clamp(1rem, 4.6875vw, 6rem) / 2);
}
@media screen and (max-width: 820px) {
  .articleList.-all .articleList_item:nth-child(-n+3), .articleList.-all .articleList_item:nth-child(n+10):nth-child(-n+12) {
    flex: 1 1 100%;
    max-width: 56rem;
  }
  .articleList.-all .articleList_item:nth-child(n+4):nth-child(-n+9), .articleList.-all .articleList_item:nth-child(n+13) {
    flex: 1 1 100%;
    max-width: 56rem;
  }
  .articleList.-all .articleList_item:nth-child(n+4):nth-child(-n+9) .articleList_item_wrap, .articleList.-all .articleList_item:nth-child(n+13) .articleList_item_wrap {
    flex-direction: row;
  }
}
@media screen and (max-width: 820px) {
  .articleList.-all .articleList_item + .articleList_item {
    border-top: solid 2px #d9d9d9;
    padding-top: clamp(2.4rem, 4.6875vw, 6rem);
  }
}

.bannerArea {
  background: #ececec;
  position: relative;
  padding: 8rem var(--content-gutter);
}
@media screen and (max-width: 1024px) {
  .bannerArea {
    padding: 3rem var(--content-gutter) 5.3rem;
  }
}
.bannerArea_title {
  color: var(--color-theme);
  font-size: 6rem;
  font-weight: 900;
  margin: 0;
  padding-inline: 2.5rem;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  background: #fff;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .bannerArea_title {
    color: #fff;
    font-size: clamp(2.8rem, 4.6875vw, 6rem);
    position: relative;
    translate: 0;
    left: 0;
    background: transparent;
    text-align: center;
    padding: 0;
    margin-bottom: 3rem;
    width: 100%;
  }
}
.bannerArea_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .bannerArea_list {
    padding: 0;
    gap: 3rem;
    border: none;
  }
}
.bannerArea_list_item {
  max-width: 38.4rem;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  border: solid 2px #ececec;
}
@media (any-hover: hover) {
  .bannerArea_list_item:hover {
    border: solid 2px var(--color-theme);
  }
  .bannerArea_list_item:hover img {
    opacity: 0.7;
  }
  .bannerArea_list_item:hover .bannerArea_list_item_text {
    background: var(--color-theme);
    text-decoration: underline;
    color: #fff;
    transition: 0.3s;
  }
}
.bannerArea_list_item_text {
  font-weight: 700;
  text-align: center;
  padding: 1.3rem 1rem;
  background: #fff;
  transition: 0.3s;
}

.aboutContents {
  background: #fff;
  padding: clamp(2.4rem, 12.5vw, 15rem) clamp(2.4rem, 15vw, 18rem) clamp(2.4rem, 8.3333vw, 10rem);
  margin: 6rem auto 11.4rem;
}
@media screen and (max-width: 820px) {
  .aboutContents {
    padding: 5.2rem 2.4rem 5rem;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.aboutContents_logo {
  margin: 0 auto 6rem;
}
@media screen and (max-width: 820px) {
  .aboutContents_logo {
    margin-bottom: 3rem;
  }
}
.aboutContents_title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.875;
  margin: 0 0 5rem;
}
@media screen and (max-width: 820px) {
  .aboutContents_title {
    font-size: 1.9rem;
    margin-bottom: 2.7rem;
    letter-spacing: -0.1rem;
    padding: 0 1rem;
  }
  .aboutContents_title br {
    display: none;
  }
}
.aboutContents_mv {
  margin-bottom: 4rem;
}
@media screen and (max-width: 820px) {
  .aboutContents_mv {
    margin-inline: calc(var(--content-gutter) * -1);
    margin-bottom: 2rem;
  }
}
.aboutContents_text {
  font-size: 1.8rem;
}
@media screen and (max-width: 820px) {
  .aboutContents_text {
    font-size: 1.6rem;
  }
}
.aboutContents_text + .aboutContents_text {
  margin-top: 2.4rem;
}
.aboutContents_text_logo {
  vertical-align: baseline;
  margin-inline: 0.3em;
}
@media screen and (max-width: 820px) {
  .aboutContents_text_logo {
    width: 2.7rem;
  }
}
.aboutContents_hr {
  height: 0.2rem;
  background: #d9d9d9;
  border: none;
  margin: 5rem 0 6rem;
}
@media screen and (max-width: 820px) {
  .aboutContents_hr {
    margin: 3.2rem 0;
  }
}
.aboutContents_action_title {
  font-size: 3rem;
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 820px) {
  .aboutContents_action_title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.aboutContents_action_text {
  margin-block: 4.2rem;
  line-height: 1.75;
  font-size: 1.8rem;
}
@media screen and (max-width: 820px) {
  .aboutContents_action_text {
    margin-block: 3rem;
    font-size: 1.6rem;
  }
}
.aboutContents_numericList {
  margin: 0;
  counter-reset: number 0;
}
.aboutContents_numericList_item {
  padding: 0 0 0 2.8rem;
  position: relative;
  font-size: 2rem;
  line-height: 1.8;
}
.aboutContents_numericList_item:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number 1;
  content: counter(number);
  font-weight: 700;
}
.aboutContents_numericList_item + .aboutContents_numericList_item {
  margin-top: 1.6rem;
}
@media screen and (max-width: 820px) {
  .aboutContents_numericList_item {
    font-size: 1.8rem;
    padding-left: 2rem;
    line-height: 1.66;
  }
}

.indexTitle {
  font-size: 3.6rem;
  font-weight: 500;
  padding: 0 3.1rem;
  position: relative;
  line-height: 1.66;
  margin: 0 0 7rem;
}
.indexTitle::before {
  content: "";
  display: block;
  background: linear-gradient(180deg, #fa9600 0%, #ff0800 100%);
  width: 0.6rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .indexTitle {
    font-size: clamp(1.8rem, 2.8125vw, 3.6rem);
    padding: 0 clamp(1.3rem, 3.28125vw, 4.2rem);
    margin-bottom: clamp(3.5rem, 5.46875vw, 7rem);
  }
  .indexTitle:before {
    width: clamp(0.5rem, 0.78125vw, 1rem);
  }
}
@media screen and (max-width: 576px) {
  .indexTitle br {
    display: none;
  }
}

.articleAll {
  padding: 0 var(--content-gutter) 16rem;
  min-height: 100dvh;
}
@media screen and (max-width: 820px) {
  .articleAll {
    padding: var(--content-gutter);
  }
}

.articleDetail {
  padding: 8rem var(--content-gutter) 0;
  font-size: 1.8rem;
  font-weight: 400;
  background: #fff;
}
@media screen and (max-width: 820px) {
  .articleDetail {
    font-size: 1.6rem;
    padding-top: 3rem;
  }
}
.articleDetail_section + .articleDetail_section {
  margin-top: 8rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_section + .articleDetail_section {
    margin-top: 4rem;
  }
}
.js-pageHeadline + .articleDetail_section {
  margin-top: 8rem;
}
.articleDetail_section_inner {
  margin-top: 5.6rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_section_inner {
    margin-top: 3.2rem;
  }
}
.articleDetail_section_inner.-small {
  margin-top: 3.2rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_section_inner.-small {
    margin-top: 1.6rem;
  }
}
.articleDetail_header {
  position: relative;
  padding-left: 4rem;
  position: relative;
  margin: 0 auto 3.2rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_header {
    padding: 1.6rem 0 0 0;
  }
}
.articleDetail_header::before {
  content: "";
  display: block;
  background: linear-gradient(180deg, #fa9600 0%, #ff0800 100%);
  width: 0.4rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 820px) {
  .articleDetail_header::before {
    width: 100%;
    height: 0.4rem;
    background: var(--color-grare);
  }
}
.articleDetail_header_wrap {
  max-width: 99.6rem;
  margin-inline: auto;
}
.articleDetail_header_wrap:has(.articleDetail_profile) .articleDetail_mv img {
  border-radius: 0.8rem 0.8rem 0 0;
}
@media screen and (max-width: 820px) {
  .articleDetail_header_wrap:has(.articleDetail_profile) .articleDetail_mv img {
    border-radius: 0;
  }
}
.articleDetail_header_category {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.108rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_header_category {
    font-size: 1.6rem;
  }
}
.articleDetail_header_category_icon {
  color: #e62128;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.articleDetail_header_category_icon img {
  width: 2.4rem;
}
.articleDetail_header_subtitle {
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_header_subtitle {
    font-size: 1.6rem;
  }
}
.articleDetail_header_label {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  background: var(--color-default);
  padding: 0.1rem 0.8rem 0.2rem 0.8rem;
  border-radius: 2rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_header_label {
    font-size: 1.2rem;
  }
}
.articleDetail_header_title {
  font-size: 4.2rem;
  font-size: clamp(2.6rem, 3.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1.6rem;
}
.articleDetail_header_text {
  line-height: 1.8;
  font-weight: 400;
}
.articleDetail_header_date {
  font-weight: 500;
  font-size: 1.6rem;
  text-align: right;
  min-height: 2.7rem;
  color: #969696;
}
@media screen and (max-width: 820px) {
  .articleDetail_header_date {
    font-size: 1.4rem;
    min-height: 2.4rem;
  }
}
.articleDetail_header_time {
  font-weight: 500;
  font-size: 1.6rem;
  color: #969696;
}
@media screen and (max-width: 820px) {
  .articleDetail_header_time {
    font-size: 1.4rem;
  }
}
.articleDetail_header_status {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}
.articleDetail_mv {
  position: relative;
}
@media screen and (max-width: 820px) {
  .articleDetail_mv {
    margin-inline: calc(var(--content-gutter) * -1);
  }
}
.articleDetail_mv img {
  border-radius: 0.8rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_mv img {
    border-radius: 0;
  }
}
.articleDetail_mv_mark {
  position: absolute;
  top: clamp(1rem, 2.5vw, 3rem);
  left: clamp(1rem, 2.5vw, 3rem);
}
.articleDetail_mv_mark img, .articleDetail_mv_mark svg {
  width: clamp(1rem, 8.3333333vw, 10rem);
}
.articleDetail_mv_mark.-reverse path,
.articleDetail_mv_mark.-reverse svg {
  fill: #fff;
  stroke: #fff;
}
.articleDetail_mv_caption {
  background: rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  color: #fff;
  padding: 0.6rem 1.6rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.articleDetail_mv_text {
  font-size: 2.4rem;
  font-size: clamp(1.3rem, 1.875vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.072rem;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: clamp(0.1rem, 3.90625vw, 5rem);
  position: absolute;
  top: 0;
  left: 0;
}
.articleDetail_mv_text .-quot {
  padding: clamp(1rem, 3.3vw, 4rem) 0;
  background-image: url(../images/icon_quote_l.svg), url(../images/icon_quote_r.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: clamp(1rem, 2.5vw, 3.5rem), clamp(1rem, 2.5vw, 3.5rem);
}
.articleDetail_profile {
  background: #f7f7f1;
  padding: 2.4rem;
  display: flex;
  gap: 2.4rem;
  position: relative;
}
.articleDetail_profile::before {
  content: "";
  display: block;
  height: 0.1rem;
  width: 100%;
  background: #e5e5e4;
  position: absolute;
  top: 0;
  left: 0;
}
.articleDetail_profile + .articleDetail_profile:before {
  width: calc(100% - var(--content-gutter) * 2);
  left: var(--content-gutter);
}
.articleDetail_profile:last-child {
  margin-bottom: 3.2rem;
  border-radius: 0rem 0rem 0.8rem 0.8rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_profile:last-child {
    border-radius: 0;
  }
}
@media screen and (max-width: 820px) {
  .articleDetail_profile {
    flex-direction: column-reverse;
    margin-inline: calc(var(--content-gutter) * -1);
  }
  .articleDetail_profile:has(.articleDetail_profile_inner) {
    flex-direction: column;
  }
}
.articleDetail_profile_inner {
  display: flex;
  gap: 2.4rem;
  flex: 1;
}
@media screen and (max-width: 820px) {
  .articleDetail_profile_inner {
    flex-direction: column-reverse;
  }
  .articleDetail_profile_inner + .articleDetail_profile_inner {
    position: relative;
    padding-top: 2.4rem;
  }
  .articleDetail_profile_inner + .articleDetail_profile_inner::before {
    content: "";
    display: block;
    height: 0.1rem;
    width: 100%;
    background: #e5e5e4;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.articleDetail_profile_imgbox {
  max-width: 28rem;
  flex-shrink: 0;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .articleDetail_profile_imgbox {
    max-width: 15rem;
  }
}
.articleDetail_profile_imgbox.-small {
  max-width: 16.6rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_profile_imgbox.-small {
    max-width: 15rem;
  }
}
.articleDetail_profile_imgbox img {
  border-radius: 0.8rem;
}
.articleDetail_profile_textbox {
  flex-grow: 1;
}
.articleDetail_profile_title {
  font-size: 1.8rem;
  font-weight: 400;
  border-bottom: 1px solid #dad6d5;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}
.articleDetail_profile_name {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .articleDetail_profile_name {
    font-size: 1.4rem;
  }
}
.articleDetail_profile_text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 0.4rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_profile_text {
    font-size: 1.2rem;
  }
}
.articleDetail_contents {
  max-width: 99.6rem;
  margin-inline: auto;
}
.articleDetail_contents img:not([src$=".svg"]):not(.-noradius) {
  border-radius: 0.8rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_contents img:not([src$=".svg"]):not(.-noradius) {
    border-radius: 0.4rem;
  }
}
.articleDetail_lead {
  margin-bottom: 8rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_lead {
    margin-bottom: 4rem;
  }
}
.articleDetail_lead_text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.4;
}
@media screen and (max-width: 820px) {
  .articleDetail_lead_text {
    font-size: 1.6rem;
  }
}
.articleDetail_column {
  background: #f7f7f1;
  padding: 5.6rem 8rem;
}
@media screen and (max-width: 1024px) {
  .articleDetail_column {
    padding: 5.6rem clamp(2.4rem, 6.666667vw, 8rem);
  }
}
@media screen and (max-width: 820px) {
  .articleDetail_column {
    margin-inline: calc(var(--content-gutter) * -1);
  }
}
.articleDetail_column_title {
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_column_title {
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }
}
.articleDetail_column_sectionTitle {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  margin: 2.4rem 0;
}
@media screen and (max-width: 820px) {
  .articleDetail_column_sectionTitle {
    font-size: 2rem;
  }
}
.articleDetail_column_imgbox {
  margin-block: 2.4rem;
}
.articleDetail_column .c-text {
  font-weight: 400;
}
.articleDetail_column_answer {
  display: flex;
  gap: 2.4rem;
  padding: 2.4rem;
  align-items: center;
  background: #ebebe3;
}
@media screen and (max-width: 820px) {
  .articleDetail_column_answer {
    flex-direction: column;
    padding: 2.4rem;
    gap: 1.6rem;
    margin-inline: calc(var(--content-gutter) * -1);
  }
}
.articleDetail_column_answer_imgbox {
  flex-shrink: 0;
  width: 100%;
  max-width: 28rem;
}
.articleDetail_column_answer_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 3.2rem 0;
  width: -moz-fit-content;
  width: fit-content;
  background-image: url(../images/icon_quote_l.svg), url(../images/icon_quote_r.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: 2rem;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .articleDetail_column_answer_text {
    font-size: 1.8rem;
  }
}
.articleDetail_column_answer_text_inner {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}
.articleDetail_column_answer_text_inner .-name {
  font-size: 1.6rem;
  font-weight: 400;
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.articleDetail_column_answer_text_inner .-name::before {
  content: "";
  display: block;
  width: 5rem;
  height: 0.1rem;
  background: #cacab6;
}
.articleDetail_summary {
  margin: 2.4rem auto;
}
.articleDetail_summary_title {
  font-size: 2rem;
  margin-bottom: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 820px) {
  .articleDetail_summary_title {
    font-size: 1.6rem;
  }
}
.articleDetail_summary .questionContent {
  font-size: 2rem;
}
@media screen and (max-width: 820px) {
  .articleDetail_summary .questionContent {
    font-size: 1.8rem;
  }
}
.articleDetail_summary .questionContent::before {
  top: 1.4rem;
}
.articleDetail_summary .questionContent::after {
  top: 0.3rem;
}

.speechBox {
  position: relative;
}
.speechBox_text {
  font-size: 2.4rem;
  font-size: clamp(1.3rem, 1.875vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.072rem;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  position: absolute;
  top: 0;
}
.speechBox_text.-left {
  left: 0;
  padding-left: clamp(0.1rem, 3.90625vw, 5rem);
}
.speechBox_text.-right {
  right: 0;
  padding-right: clamp(0.1rem, 3.90625vw, 5rem);
}
.speechBox_text .-quot {
  padding: clamp(1rem, 3.3vw, 4rem) 0;
  background-image: url(../images/icon_quote_l.svg), url(../images/icon_quote_r.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: clamp(1rem, 2.5vw, 3.5rem), clamp(1rem, 2.5vw, 3.5rem);
}

.keywordArea {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
  margin-top: 8rem;
}
@media screen and (max-width: 820px) {
  .keywordArea {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}
.keywordArea_title {
  font-weight: 700;
  font-size: 1.6rem;
}
.keywordArea_text {
  font-size: 1.4rem;
}

.keywordTag_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.keywordTag_list_item {
  font-size: 1.6rem;
  color: var(--color-theme);
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid var(--color-theme);
  background: #fff;
  padding: 0.2rem 1rem;
}
.keywordTag_list_item:visited {
  color: var(--color-theme);
}
@media screen and (max-width: 820px) {
  .keywordTag_list_item {
    font-size: 1.4rem;
    padding: 0.1rem 0.6rem;
  }
}

.pageHeadline {
  margin: 3.2rem auto;
}
.pageHeadline_title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.pageHeadline_list {
  border-top: 1px solid var(--color-grayline);
  border-bottom: 1px solid var(--color-grayline);
  padding: 1.6rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: number 0;
}
.pageHeadline_list_item {
  display: flex;
  gap: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  .pageHeadline_list_item {
    font-size: 1.4rem;
  }
}
.pageHeadline_list_item::before {
  counter-increment: number 1;
  content: "0" counter(number) ".";
  flex-shrink: 0;
  color: #717171;
}

.recommend {
  padding: 8rem var(--content-gutter);
  background: #fff;
}
.-top .recommend {
  padding: 10rem var(--content-gutter) 0;
}
@media screen and (max-width: 820px) {
  .-top .recommend {
    padding-top: 4rem;
  }
}
.recommend .articleList {
  margin-top: 3.6rem;
}

.highlight {
  text-decoration: underline;
  text-decoration-thickness: 0.3em;
  text-decoration-color: #ffdfb0;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.highlight.-full {
  text-decoration-thickness: 1em;
  text-underline-offset: -0.9em;
}
.highlight.-type02 {
  text-decoration-color: #c7e190;
}

.challenge_01_animation_01 {
  display: flex;
  gap: 1.47rem;
  padding: clamp(2rem, 4.666667vw, 5.6rem);
  background: #f7f7f1;
  border-radius: 0.8rem;
}
.challenge_01_animation_01 img {
  border-radius: 0;
}
@media screen and (max-width: 820px) {
  .challenge_01_animation_01 {
    flex-direction: column;
  }
  .challenge_01_animation_01_item {
    max-width: 30rem;
    margin-inline: auto;
  }
}

.tanpakuGraph_point {
  transform: scale(1);
  transform-origin: center;
  transform-box: fill-box;
}
.tanpakuGraph_point.-active {
  animation: infiniteZoomIn 2s ease-out infinite;
}

.tanpakuCheck {
  margin: 3.2rem auto;
  background: #fef4e5;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  border-radius: 0.8rem;
}
@media screen and (max-width: 820px) {
  .tanpakuCheck {
    flex-direction: column;
    padding: 0 1.6rem 3.2rem;
    gap: 0;
  }
}
.tanpakuCheck_imgbox {
  padding-left: 3.2rem;
}
@media screen and (max-width: 820px) {
  .tanpakuCheck_imgbox {
    padding-left: 0;
  }
}
.tanpakuCheck_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  padding: 3.2rem 3.2rem 3.2rem 0;
}
@media screen and (max-width: 820px) {
  .tanpakuCheck_list {
    padding: 0;
  }
}
@media screen and (max-width: 576px) {
  .tanpakuCheck_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tanpakuCheck_list_item {
  border-radius: 0.4rem;
  background: #f7f7f1;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  padding: 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tanpakuCheck_list_item.-active {
  background: #fff;
  border-radius: 0rem 0.4rem 0.4rem 0rem;
  border-left: solid 2px var(--color-theme);
}
@media screen and (max-width: 820px) {
  .tanpakuCheck_list_item {
    font-size: 1.4rem;
  }
}

.aminoBlock {
  display: flex;
  gap: 2rem;
  width: 100%;
  margin: 3.2rem auto;
}
@media screen and (max-width: 1024px) {
  .aminoBlock {
    gap: 1.6rem;
  }
}
@media screen and (max-width: 820px) {
  .aminoBlock {
    flex-direction: column;
  }
}
.aminoBlock_item {
  background: #fff;
  border-radius: 0.8rem;
  border: solid 1px #e5e5e4;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.aminoBlock_item_text {
  padding: 1.6rem 1.6rem 0.8rem;
}
@media screen and (max-width: 1024px) {
  .aminoBlock_item_text {
    font-size: 1.6rem;
  }
}
.aminoBlock_item_imgbox {
  padding: 1.6rem;
}
.aminoBlock_item_title {
  padding: 1.6rem;
  font-weight: 700;
  background: #fef4e5;
  border-top: solid 1px #e5e5e4;
  margin-top: auto;
}
.aminoBlock_between {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
@media screen and (max-width: 820px) {
  .aminoBlock_between img {
    transform: rotate(90deg);
  }
}

.amino100 {
  opacity: 0;
}

.answerTitle {
  font-size: 2.8rem;
  font-weight: 500;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #dad6d5;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
  overflow: hidden;
}
.answerTitle img {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
@media screen and (max-width: 820px) {
  .answerTitle {
    font-size: 2.2rem;
    gap: 0.4rem;
  }
  .answerTitle img {
    width: 3.2rem;
    margin-right: 0.8rem;
  }
}

@keyframes sumRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sum {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.sunCenter {
  transform-origin: center;
  transform-box: fill-box;
  animation: sum 2s linear infinite;
}

.sunRing {
  transform-origin: center;
  transform-box: fill-box;
  animation: sumRing 24s steps(24) infinite;
}

.speaker01 {
  color: #a95b1d;
  font-weight: 700;
}

.speaker02 {
  color: #32633c;
  font-weight: 700;
}

.speaker03 {
  color: #ea5517;
  font-weight: 700;
}

.speaker04 {
  color: #37a0da;
  font-weight: 700;
}

.sdgsIcon {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  .sdgsIcon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.sdgsIcon_item {
  max-width: 16.5rem;
}

.tanpakuCalc {
  text-align: left;
}
.tanpakuCalc_block {
  display: flex;
  padding: 2.4rem 0;
  border-bottom: 1px solid #f2e7d7;
}
@media screen and (max-width: 1024px) {
  .tanpakuCalc_block {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .tanpakuCalc_block {
    align-items: flex-start;
  }
}
.tanpakuCalc_caution {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.tanpakuCalc_caution b {
  font-weight: 700;
}
.tanpakuCalc_inputbox {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .tanpakuCalc_inputbox {
    flex-wrap: wrap;
  }
}
.tanpakuCalc_title {
  font-weight: 700;
  position: relative;
  padding-left: 2rem;
  width: 19.2rem;
}
@media screen and (max-width: 576px) {
  .tanpakuCalc_title {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.tanpakuCalc_title::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #e6002d;
  border-radius: 50%;
  position: absolute;
  left: 0.4rem;
  top: 0.5em;
}
.tanpakuCalc_input {
  height: 100%;
  outline: solid 1px var(--color-default);
  border-radius: 0.4rem;
  border: none;
  padding: 1.3rem 1.6rem 1.4rem;
  font-size: 2rem;
  width: 14rem;
  margin-left: 2rem;
}
@media screen and (max-width: 576px) {
  .tanpakuCalc_input {
    margin-left: 0;
    font-size: 1.8rem;
    padding: 0.8rem 1rem 0.8rem;
    width: 13rem;
  }
}
.tanpakuCalc_input:focus {
  outline: solid 2px #e6002d;
}
.tanpakuCalc_input::-moz-placeholder {
  color: #969696;
  font-size: 1.4rem;
  transform: translateY(-2px);
}
.tanpakuCalc_input::placeholder {
  color: #969696;
  font-size: 1.4rem;
  transform: translateY(-2px);
}
.tanpakuCalc_unit {
  font-size: 2rem;
  align-self: flex-end;
  margin-inline: 0.8rem;
  flex-shrink: 0;
}
.tanpakuCalc_cross {
  font-size: 3rem;
  margin-right: 0.8rem;
}
@media screen and (max-width: 820px) {
  .tanpakuCalc_cross {
    margin-right: 0.4rem;
  }
}
.tanpakuCalc_weight {
  font-size: 3.2rem;
  width: 6rem;
  text-align: right;
}
@media screen and (max-width: 820px) {
  .tanpakuCalc_weight {
    font-size: 2.8rem;
    width: 5.2rem;
  }
}
.tanpakuCalc_resultbox {
  display: flex;
}
.tanpakuCalc_btn {
  width: 14rem;
  border-radius: 999.9rem;
  background: #e6002d;
  border: solid 2px #e6002d;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 0 1.2rem;
}
@media (hover: hover) {
  .tanpakuCalc_btn:hover {
    background: #fff;
    color: #e6002d;
  }
}
@media screen and (max-width: 576px) {
  .tanpakuCalc_btn {
    font-size: 1.2rem;
    width: 10rem;
    margin-left: 0;
  }
}
.tanpakuCalc_arrow {
  width: 3rem;
  margin: 0 2rem;
}
@media screen and (max-width: 576px) {
  .tanpakuCalc_arrow {
    width: 2rem;
    margin: 0 1rem;
  }
}
.tanpakuCalc_result {
  border-radius: 0.4rem;
  border: 1px solid #fa9100;
  background: #ffdfb0;
  color: #e6002d;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05rem;
  width: 14.3rem;
  text-align: right;
  padding: 0 2rem;
}
@media screen and (max-width: 576px) {
  .tanpakuCalc_result {
    font-size: 2.8rem;
  }
}

.accordionBlock {
  border-radius: 0.8rem;
  background: #f7f7f1;
  box-shadow: 0px 4px 0px 0px #dedede;
  padding: 2rem 3rem;
}
@media screen and (max-width: 576px) {
  .accordionBlock {
    padding: 2rem var(--content-gutter);
    margin-inline: calc(var(--content-gutter) * -1);
  }
}
.accordionBlock.-open {
  padding-bottom: 4rem;
}
.accordionBlock_detail {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.accordionBlock_detail.-open {
  height: auto;
  animation: fadeIn ease 0.5s forwards;
}

.questionContent {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 2.8rem;
  color: var(--color-default);
  text-align: left;
  width: 100%;
  padding-right: 3rem;
  position: relative;
  transition: transform 1s;
}
@media screen and (max-width: 820px) {
  .questionContent {
    font-size: 2.2rem;
  }
}
.questionContent::before {
  content: "";
  position: absolute;
  right: 0;
  top: 2.1rem;
  translate: 0 -50%;
  width: 2.2rem;
  height: 0.4rem;
  background: #e6002d;
  border-radius: 3rem;
}
.questionContent::after {
  content: "";
  position: absolute;
  right: 0.9rem;
  top: 1rem;
  height: 2.2rem;
  width: 0.4rem;
  background: #e6002d;
  border-radius: 3rem;
  transition: transform 0.5s;
}
.questionContent.-open {
  margin-bottom: 2rem;
}
.questionContent.-open::after {
  transform: rotate(270deg);
}
@media screen and (max-width: 820px) {
  .questionContent_icon {
    width: 3.2rem;
  }
}

.answerContent {
  border-top: 1px solid #dad6d5;
  position: relative;
  font-weight: 400;
  line-height: 2;
  padding-left: 5.6rem;
  padding-top: 2rem;
}
@media screen and (max-width: 820px) {
  .answerContent {
    font-size: 1.6rem;
    padding-left: 4.8rem;
  }
}
.answerContent_icon {
  position: absolute;
  top: 2rem;
  left: 0;
}
@media screen and (max-width: 820px) {
  .answerContent_icon {
    width: 3.4rem;
  }
}
.answerContent_inner {
  margin-top: 3.2rem;
}

.qaTitle {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.6rem;
  border-bottom: solid 1px #dad6d5;
  font-size: 2.8rem;
}
@media screen and (max-width: 820px) {
  .qaTitle {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 820px) {
  .qaTitle_icon {
    width: 3.2rem;
  }
}

.qaContents {
  position: relative;
  padding-left: 5.6rem;
  padding-top: 2rem;
}
@media screen and (max-width: 820px) {
  .qaContents {
    padding-left: 4rem;
  }
}
.qaContents_icon {
  position: absolute;
  top: 2rem;
  left: 0;
}
@media screen and (max-width: 820px) {
  .qaContents_icon {
    width: 3.2rem;
  }
}

.checkTitle {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
}
.checkTitle img {
  width: 2.2rem;
}

.scrollTable {
  overflow-x: auto;
}

.animalVegetable {
  width: 93.6rem;
}
.animalVegetable th, .animalVegetable td {
  background: #fff;
  padding: 1.6rem;
  border: 1px solid #e5e5e4;
  vertical-align: top;
  font-size: 1.6rem;
}
.animalVegetable th.-animal {
  border-top: solid 2px #fa9100;
}
.animalVegetable th.-vegetable {
  border-top: solid 2px #c7e190;
}
.animalVegetable td.-animal {
  background: #fef4e5;
}
.animalVegetable td.-vegetable {
  background: #f9ffec;
}
.animalVegetable thead .animalVegetable_box {
  display: flex;
  gap: 1.6rem;
  font-size: 1.6rem;
}
.animalVegetable thead .animalVegetable_box span {
  font-size: 1.3rem;
  font-weight: 400;
}

.connectionText {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.connectionText_line {
  height: 0.2rem;
  flex: 1 0 0;
  border: 1px dashed var(--color-default);
}

.highTanpakuAttention {
  display: flex;
  padding: 3.2rem 4rem;
  align-items: center;
  border-radius: 0.8rem;
  background: #fef4e5;
  margin-top: 2.4rem;
}
@media screen and (max-width: 820px) {
  .highTanpakuAttention {
    flex-direction: column;
    padding: var(--content-gutter);
  }
}
.highTanpakuAttention_title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 700;
}
.highTanpakuAttention_text {
  margin-left: 2.4rem;
  padding-left: 2.4rem;
  padding-right: 1rem;
  border-left: solid 1px var(--color-default);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .highTanpakuAttention_text {
    margin: 2.4rem 0 1rem;
    padding: 0;
    padding-top: 2.4rem;
    border-left: none;
    border-top: solid 1px var(--color-default);
  }
}
.highTanpakuAttention_img {
  flex-shrink: 0;
}

.scrollImage {
  overflow-x: auto;
}
.scrollImage img {
  max-width: revert;
}

.featureContents {
  margin-bottom: 6rem;
}
.featureContents_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 820px) {
  .featureContents_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .featureContents_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (hover: hover) {
  .featureContents_list_item:hover img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  .featureContents_list_item:hover .featureContents_list_item_title {
    text-decoration: underline;
  }
}
.featureContents_list_item_img img {
  transition: opacity 0.3s ease;
}
.featureContents_list_item_title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
}
.featureContents_list_item_title_label {
  flex-shrink: 0;
  padding: 0.1rem 0.8rem 0.3rem 0.8rem;
  border: solid 0.1rem var(--color-default);
  border-radius: 0.2rem;
}

.featureBanner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.featureBanner_item {
  position: relative;
  border: solid 2px var(--color-bg);
  border-radius: 1rem;
  transition: 0.3s;
}
@media (hover: hover) {
  .featureBanner_item:hover {
    border: solid 2px var(--color-theme);
  }
  .featureBanner_item:hover .featureBanner_imgbox img {
    opacity: 0.7;
  }
  .featureBanner_item:hover .featureBanner_textbox {
    background: var(--color-theme);
    color: #fff;
  }
  .featureBanner_item:hover .featureBanner_textbox_title {
    border-color: #fff;
  }
  .featureBanner_item:hover .featureBanner_textbox_title_label {
    border-color: #fff;
  }
}
@media screen and (hover: hover) and (max-width: 820px) {
  .featureBanner_item:hover .featureBanner_textbox_title_label {
    color: var(--color-default);
  }
}
.featureBanner_imgbox img {
  width: 100%;
  border-radius: 1rem;
}
@media screen and (max-width: 820px) {
  .featureBanner_imgbox img {
    border-radius: 1rem 1rem 0 0;
  }
}
.featureBanner_textbox {
  transition: 0.3s;
  background: #fff;
  border-radius: 0.8rem;
  padding: 2.4rem 3.2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: absolute;
  top: 50%;
  right: clamp(2.4rem, 5.3vw, 6.4rem);
  translate: 0 -50%;
  min-width: 57rem;
}
@media screen and (max-width: 820px) {
  .featureBanner_textbox {
    padding: 1.6rem;
    width: 100%;
    border-radius: 0 0 0.8rem 0.8rem;
    position: relative;
    top: 0;
    right: 0;
    translate: 0 0;
    min-width: revert;
  }
}
.featureBanner_textbox_title {
  padding-bottom: 0.8rem;
  border-bottom: solid 1px var(--color-default);
  font-size: 2.8rem;
  font-weight: 700;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .featureBanner_textbox_title {
    flex-direction: column;
    font-size: 1.8rem;
  }
}
.featureBanner_textbox_title_label {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.1rem 0.8rem 0.3rem 0.8rem;
  gap: 1rem;
  border: solid 1px var(--color-default);
}
@media screen and (max-width: 820px) {
  .featureBanner_textbox_title_label {
    width: 100%;
    text-align: center;
    background: #fff;
  }
}
.featureBanner_textbox_title_sub {
  font-size: 1.8rem;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
}
@media screen and (max-width: 820px) {
  .featureBanner_textbox_title_sub {
    font-size: 1.4rem;
  }
}

.featureArticle {
  text-align: left;
}
.featureArticle .articleList_item_wrap {
  flex-direction: row;
  gap: 2.4rem;
}
@media screen and (max-width: 576px) {
  .featureArticle .articleList_item_wrap {
    flex-direction: column;
  }
}
.featureArticle_description {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  background: #fff;
  border-radius: 0.4rem;
  padding: 1.6rem 2.4rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 820px) {
  .featureArticle_description {
    padding: 1.6rem;
    flex-direction: column;
  }
}
.featureArticle_description_text {
  font-size: 1.8rem;
}
@media screen and (max-width: 820px) {
  .featureArticle_description_text {
    font-size: 1.6rem;
  }
}
.featureArticle_description_link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-theme);
  position: relative;
}
@media screen and (max-width: 820px) {
  .featureArticle_description_link {
    width: 100%;
    justify-content: flex-end;
  }
}
@media (hover: hover) {
  .featureArticle_description_link:hover {
    text-decoration: underline;
  }
}
.featureArticle_description_link:visited {
  color: var(--color-theme);
}
.featureArticle_description_link::before {
  content: "";
  height: 2.4rem;
  width: 0.1rem;
  background: var(--color-theme);
  margin-right: 1.4rem;
}
@media screen and (max-width: 820px) {
  .featureArticle_description_link::before {
    position: absolute;
    top: -1rem;
    left: 0;
    width: 100%;
    height: 0.1rem;
  }
}
.featureArticle_description_link .arrow_icon {
  position: relative;
  top: 0;
  right: 0;
  translate: 0 0;
  width: 2rem;
  height: 2rem;
}
.featureArticle_description_link .arrow_icon::before {
  width: 0.5rem;
  height: 0.5rem;
  border-width: 0.1rem;
}
.featureArticle_supervisor {
  margin-top: 6rem;
}
@media screen and (max-width: 820px) {
  .featureArticle_supervisor {
    margin-top: 4rem;
  }
}

.blockTitle {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.4rem 1.6rem;
  border: 1px solid var(--color-default);
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.6rem;
  background: #fff;
}

.frailtyCheck {
  border-radius: 0.8rem;
  background: #fff4e4;
  padding: 3.2rem;
  border-radius: 0.8rem;
}
@media screen and (max-width: 820px) {
  .frailtyCheck {
    padding: 1.6rem;
  }
}
.frailtyCheck_wrap + .frailtyCheck_wrap {
  margin-top: 3.2rem;
}
.frailtyCheck_title {
  margin-bottom: 2.4rem;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 820px) {
  .frailtyCheck_title {
    font-size: 2rem;
  }
}
.frailtyCheck_title_icon {
  width: 12rem;
}
@media screen and (max-width: 820px) {
  .frailtyCheck_title_icon {
    width: 6rem;
  }
}
.frailtyCheck_list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.frailtyCheck_list_item {
  padding: 1.6rem;
  background: #fff;
  border-radius: 0rem 0.4rem 0.4rem 0rem;
  border-left: 2px solid var(--color-theme);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
@media screen and (max-width: 820px) {
  .frailtyCheck_list_item {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
}
.frailtyCheck_list_item_answer {
  display: flex;
  gap: 2.4rem;
  flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .frailtyCheck_list_item_answer {
    align-self: flex-end;
  }
}
.frailtyCheck_list_item_answer_text {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.frailtyCheck_list_item_answer_text::before {
  content: "";
  display: block;
  background: url(../images/ico_check_off.svg) no-repeat center center;
  width: 2.2rem;
  height: 2.3rem;
}
.frailtyCheck_list_item_answer_text.-active::before {
  background-image: url(../images/ico_check.svg);
}
.frailtyCheck_result {
  border-radius: 0.8rem;
  border: 0.4rem solid var(--color-theme);
  padding: 3.2rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 820px) {
  .frailtyCheck_result {
    padding: 1.6rem;
  }
}
.frailtyCheck_result_title {
  font-size: 2rem;
  padding: 0 0.8rem 1.6rem;
  border-bottom: solid 0.1rem var(--color-default);
  margin-bottom: 1.6rem;
  line-height: 1.2;
}
.frailtyCheck_result_point {
  font-size: 2rem;
  color: var(--color-theme);
  margin-bottom: 1.6rem;
}
.frailtyCheck_result_point_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.frailtyCheck_result_point_num {
  font-size: 7rem;
  margin-right: 0.4rem;
}
.frailtyCheck_result_text {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.frailtyCheck_result_subtext {
  font-size: 1.4rem;
}
.frailtyCheck_result_caption {
  color: #666;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 1.6rem;
}

.tabContents_btn {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 2.4rem;
  min-height: 5.7rem;
  margin-bottom: 1.6rem;
  border-radius: 0.4rem;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 820px) {
  .tabContents_btn {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
.tabContents_btn_item {
  position: relative;
  height: 100%;
  padding: 0.8rem;
}
.tabContents_btn_item.-active::after {
  content: "";
  width: 40%;
  height: 0.2rem;
  background: var(--color-theme);
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
@media (hover: hover) {
  .tabContents_btn_item:hover::after {
    content: "";
    width: 40%;
    height: 0.2rem;
    background: var(--color-theme);
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
  }
}
.tabContents_block {
  position: relative;
}
.tabContents_block_item {
  position: relative;
}

.js-bubbleUpGroup {
  position: relative;
}

.js-bubbleUpTarget {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

.js-tabTarget {
  display: none;
}
.js-tabTarget.-active {
  display: block;
}

.movieArticle {
  border-radius: 0.8rem;
  background: #fbecd7;
  border: solid 2px #fbecd7;
  padding: 8rem;
  margin-block: 3.2rem;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .movieArticle {
    padding: 1.6rem;
  }
}
.movieArticle_section {
  margin: 3.2rem auto;
  padding: 4rem;
  background: #fff;
  border-radius: 0.8rem;
}
@media screen and (max-width: 820px) {
  .movieArticle_section {
    padding: 2.4rem;
  }
}
.movieArticle_section_caption {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.4rem 1.6rem;
  border: 1px solid var(--color-default);
  width: -moz-fit-content;
  background: #fff;
}
.movieArticle_section .c-titleLvFour {
  margin-top: 2.4rem;
}
.movieArticle_imgbox {
  margin-bottom: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.movieArticle_imgbox img {
  border-radius: 0.8rem;
}
.movieArticle_imgbox_icon {
  position: absolute;
  width: clamp(3.6rem, 6vw, 9rem);
}
.movieArticle_title {
  color: var(--color-theme);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 820px) {
  .movieArticle_title {
    font-size: 1.8rem;
  }
}
.movieArticle_title .c-linkList_item_link_icon {
  margin: 0;
}
.movieArticle_text {
  font-size: 1.6rem;
}
@media screen and (max-width: 820px) {
  .movieArticle_text {
    font-size: 1.4rem;
  }
}
.movieArticle_figure img {
  border-radius: 0.8rem;
}
@media (hover: hover) {
  .movieArticle a.movieArticle:hover {
    background-color: #fff;
    border-color: var(--color-theme);
  }
  .movieArticle a.movieArticle:hover .movieArticle_title {
    text-decoration: underline;
  }
  .movieArticle a.movieArticle:hover .movieArticle_imgbox {
    opacity: 0.7;
  }
}
.movieArticle_relation {
  border-radius: 0.8rem;
  background: #fff4e4;
}
.movieArticle_relation_title {
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 3.2rem;
  margin-bottom: 4rem;
  letter-spacing: 0.24rem;
}
@media screen and (max-width: 820px) {
  .movieArticle_relation_title {
    font-size: 2.4rem;
    padding-left: 2.4rem;
    margin-bottom: 2rem;
    letter-spacing: 0;
  }
}
.movieArticle_relation_title .-sub {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
}
.movieArticle_relation_title::before {
  content: "";
  display: block;
  background: var(--color-gra);
  width: 0.4rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.movieArticle_relation_item {
  display: flex;
  align-items: flex-start;
  gap: 3.2rem;
  padding: 3.2rem;
  transition: 0.3s;
  border: solid 2px #fff4e4;
}
@media screen and (max-width: 820px) {
  .movieArticle_relation_item {
    flex-direction: column;
    padding: 1.8rem 1.6rem;
    gap: 1rem;
  }
}
.movieArticle_relation_item + .movieArticle_relation_item {
  border-top: 2px solid #e2c69d;
}
.movieArticle_relation_item:first-child {
  border-radius: 0.8rem 0.8rem 0 0;
}
.movieArticle_relation_item:last-child {
  border-radius: 0 0 0.8rem 0.8rem;
}
.movieArticle_relation_item_imgbox {
  flex-shrink: 0;
  max-width: 25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .movieArticle_relation_item_imgbox {
    max-width: 100%;
  }
}
.movieArticle_relation_item_imgbox::before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 0.8rem;
}
.movieArticle_relation_item_imgbox_img {
  width: 100%;
  border-radius: 0.8rem;
}
.movieArticle_relation_item_imgbox_icon {
  position: absolute;
  z-index: 1;
}
.movieArticle_relation_item_textbox_subtitle {
  font-size: 1.4rem;
  font-weight: 900;
}
@media screen and (max-width: 820px) {
  .movieArticle_relation_item_textbox_subtitle {
    font-size: 1.2rem;
  }
}
.movieArticle_relation_item_textbox_title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 820px) {
  .movieArticle_relation_item_textbox_title {
    font-size: 1.8rem;
  }
}
.movieArticle_relation_item_textbox_text {
  font-size: 1.6rem;
}
@media screen and (max-width: 820px) {
  .movieArticle_relation_item_textbox_text {
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .movieArticle_relation_item:hover {
    border: solid 2px var(--color-theme);
    transition: 0.3s;
  }
  .movieArticle_relation_item:hover .movieArticle_relation_item_textbox_subtitle {
    color: var(--color-theme);
    text-decoration: underline;
  }
  .movieArticle_relation_item:hover .movieArticle_relation_item_textbox_title {
    color: var(--color-theme);
    text-decoration: underline;
  }
  .movieArticle_relation_item:hover .movieArticle_relation_item_imgbox_img {
    opacity: 0.7;
  }
}
.-top .movieArticle_relation_item:first-child .movieArticle_relation_item_imgbox {
  max-width: 49.3rem;
}
@media screen and (max-width: 820px) {
  .-top .movieArticle_relation_item:first-child .movieArticle_relation_item_imgbox {
    max-width: 100%;
  }
}
.-top .movieArticle_relation_item:first-child .movieArticle_relation_item_imgbox_icon {
  width: 7rem;
}
.-top .movieArticle_relation_item:first-child .movieArticle_relation_item_textbox_sub {
  font-size: 1.6rem;
}
@media screen and (max-width: 820px) {
  .-top .movieArticle_relation_item:first-child .movieArticle_relation_item_textbox_sub {
    font-size: 1.2rem;
  }
}
.-top .movieArticle_relation_item:first-child .movieArticle_relation_item_textbox_title {
  font-size: 2.4rem;
}
@media screen and (max-width: 820px) {
  .-top .movieArticle_relation_item:first-child .movieArticle_relation_item_textbox_title {
    font-size: 1.8rem;
  }
}
.-top .movieArticle_relation_item:first-child .movieArticle_relation_item_textbox_text {
  font-size: 1.8rem;
}
@media screen and (max-width: 820px) {
  .-top .movieArticle_relation_item:first-child .movieArticle_relation_item_textbox_text {
    font-size: 1.4rem;
  }
}

.js-movieArticleRelationItem {
  display: none;
}
.-top .js-movieArticleRelationItem {
  display: flex;
}
.js-movieArticleRelationItem.-show {
  display: flex;
}

.featureLocalNavi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  width: 100%;
  margin-top: 2.2rem;
}
@media screen and (max-width: 576px) {
  .featureLocalNavi {
    display: none;
  }
}
.featureLocalNavi_item {
  border-radius: 0.8rem;
  border: 2px solid #d1a76a;
  background: #ffdfb0;
  box-shadow: 0px 4px 0px 0px #d1a76a;
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.6rem;
}
.featureLocalNavi_item_text {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}
@media screen and (max-width: 1480px) {
  .featureLocalNavi_item_text {
    font-size: clamp(1.3rem, 1.081vw, 1.6rem);
  }
}
@media screen and (max-width: 840px) {
  .featureLocalNavi_item_text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1480px) {
  .featureLocalNavi_item_text_icon {
    width: 1.9rem;
  }
}
@media screen and (max-width: 1480px) {
  .featureLocalNavi_item_icon {
    margin-left: 0.8rem;
  }
}
@media (hover: hover) {
  .featureLocalNavi_item:hover {
    border: 2px solid var(--color-theme);
    background: #fff;
    box-shadow: 0px 4px 0px 0px var(--color-theme);
    text-decoration: underline;
    color: var(--color-theme);
  }
}
.featureLocalNavi_title {
  font-size: 2.8rem;
  font-weight: 700;
  padding: 0 1.6rem;
  position: relative;
  line-height: 1.5;
  margin: 0 0 3.2rem;
}
@media screen and (max-width: 820px) {
  .featureLocalNavi_title {
    font-size: 2.6rem;
    padding-left: 1.4rem;
  }
}
.featureLocalNavi_title::before {
  content: "";
  display: block;
  background: linear-gradient(180deg, #fa9600 0%, #ff0800 100%);
  width: 0.6rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 820px) {
  .featureLocalNavi_title::before {
    width: 0.4rem;
  }
}
.featureLocalNavi_link_item {
  position: relative;
  border: 1px solid #e6e6e6;
  background: #fff;
  display: flex;
  padding: 1.6rem 1.6rem 1.6rem 2.4rem;
  transition: 0.3s;
  flex-direction: column;
}
.featureLocalNavi_link_item_sub {
  font-size: 1.4rem;
}
.featureLocalNavi_link_item:first-child {
  border-radius: 0.4rem 0.4rem 0 0;
}
.featureLocalNavi_link_item:last-child {
  border-radius: 0 0 0.4rem 0.4rem;
}
.featureLocalNavi_link_item:hover {
  border-color: var(--color-theme);
  color: var(--color-theme);
  text-decoration: underline;
}
.featureLocalNavi_link_item:hover .arrow_icon {
  background: #fff;
}
.featureLocalNavi_link_item:hover .arrow_icon:before {
  border-color: var(--color-theme);
}

.snsArea {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  margin: 4rem 0 0 0;
}
.snsArea_title {
  font-size: 1.4rem;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.9rem 1.6rem;
  border-top: solid 1px #e5e5e4;
  border-bottom: solid 1px #e5e5e4;
}
@media screen and (max-width: 820px) {
  .snsArea_title {
    padding: 0.9rem 1.2rem;
  }
}
.snsArea_buttons {
  display: flex;
  gap: 1.6rem;
}
.snsArea_button {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .snsArea_button:hover {
    opacity: 0.7;
  }
}
.snsArea_toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  background: rgba(51, 51, 51, 0.8);
  color: white;
  padding: 1.2rem 2.4rem;
  border-radius: 0.8rem;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.snsArea_toast.show {
  opacity: 1;
}

.snsMenu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 15rem;
  height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.snsMenu_switch {
  position: absolute;
  width: 5.5rem;
  height: 5.5rem;
  border: solid 2px var(--color-theme);
  background: var(--color-theme);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.snsMenu_switch.-active {
  transform: rotate(315deg);
}
.snsMenu_button {
  position: absolute;
  transform-origin: 6rem;
  left: 1rem;
  top: calc(50% - 2rem);
  transform: rotate(calc(30deg * var(--num))) translateX(4rem);
  transform: rotate(calc(30deg * var(--num))) translateX(-6rem);
  z-index: 10;
  pointer-events: none;
  scale: 0;
  transition: 0.5s;
  transition-delay: calc(0.1s * var(--num));
}
.-active .snsMenu_button {
  scale: 1;
  pointer-events: initial;
}
.snsMenu_button img {
  transform: rotate(calc(-30deg * var(--num)));
}

.container_profile {
  background: #f7f7f1;
  padding: 2.4rem;
  position: relative;
  container-type: inline-size;
}
.container_profile::before {
  content: "";
  display: block;
  height: 0.1rem;
  width: 100%;
  background: #e5e5e4;
  position: absolute;
  top: 0;
  left: 0;
}
.container_profile + .container_profile:before {
  width: calc(100% - var(--content-gutter) * 2);
  left: var(--content-gutter);
}
.container_profile_wrap {
  container-type: inline-size;
}
.container_profile_inner {
  display: flex;
  gap: 2.4rem;
}
@container (max-width:420px) {
  .container_profile_inner {
    flex-direction: column;
  }
}
.container_profile_imgbox {
  max-width: 28rem;
  flex-shrink: 0;
  margin: 0 auto;
}
@container (max-width:820px) {
  .container_profile_imgbox {
    max-width: 15rem;
  }
}
.container_profile_imgbox img {
  border-radius: 0.8rem;
}
.container_profile_title {
  font-size: 1.8rem;
  font-weight: 400;
  border-bottom: 1px solid #dad6d5;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}
.container_profile_name {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .container_profile_name {
    font-size: 1.4rem;
  }
}
.container_profile_text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 0.4rem;
}
@media screen and (max-width: 820px) {
  .container_profile_text {
    font-size: 1.2rem;
  }
}

.floatingBanner {
  width: 34.3rem;
  padding: 0.8rem 1.6rem 1.6rem 1.6rem;
  background: #fef4e5;
  box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  transition: visibility 0.4s, opacity 0.4s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 576px) {
  .floatingBanner {
    width: calc(100% - 3.2rem);
    left: 1.6rem;
    bottom: 1.6rem;
  }
}
.floatingBanner.-type01 {
  border-left: 2px solid var(--color-theme);
}
.floatingBanner.-type02 {
  padding: 0;
}
.floatingBanner.-type03 {
  padding: 1.2rem;
}
.floatingBanner.-active {
  transition: visibility 0.4s, opacity 0.4s;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  z-index: 1;
}
.floatingBanner_title {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.floatingBanner_contents {
  display: flex;
  gap: 0.8rem;
}
.-type03 .floatingBanner_contents {
  gap: 1.6rem;
}
@media (hover: hover) {
  .floatingBanner_contents:hover .floatingBanner_textbox_text {
    color: var(--color-theme);
    text-decoration: underline;
  }
  .floatingBanner_contents:hover .floatingBanner_imgbox {
    border: solid 2px var(--color-theme);
  }
  .-type03 .floatingBanner_contents:hover .floatingBanner_imgbox {
    border-color: #fef4e5;
    border-right: solid 1px #ffcb80;
  }
}
.floatingBanner_imgbox {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px #fef4e5;
}
.-type02 .floatingBanner_imgbox {
  border: solid 2px #fff;
  max-width: 34.3rem;
}
@media screen and (max-width: 576px) {
  .-type02 .floatingBanner_imgbox {
    max-width: 100%;
  }
}
.-type03 .floatingBanner_imgbox {
  padding-right: 1.6rem;
  border-right: solid 1px #ffcb80;
}
.floatingBanner_imgbox img {
  max-width: 15rem;
}
@media screen and (max-width: 576px) {
  .floatingBanner_imgbox img {
    max-width: 8.3rem;
  }
}
.-type02 .floatingBanner_imgbox img {
  max-width: 100%;
}
.-type03 .floatingBanner_imgbox img {
  max-width: 9rem;
}
.floatingBanner_textbox_text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media screen and (max-width: 576px) {
  .floatingBanner_textbox_text {
    -webkit-line-clamp: 2;
  }
}
.floatingBanner_close {
  width: 2rem;
  height: 2rem;
  border: solid 1px var(--color-theme);
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0.8rem;
  right: 1.6rem;
  transition: 0s;
}
@media (hover: hover) {
  .floatingBanner_close:hover {
    background: var(--color-theme);
    transition: 0s;
  }
  .floatingBanner_close:hover::before, .floatingBanner_close:hover::after {
    background: #fff;
  }
}
.floatingBanner_close::before {
  content: "";
  height: 1px;
  width: 1.2rem;
  background: var(--color-theme);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.floatingBanner_close::after {
  content: "";
  height: 1px;
  width: 1.2rem;
  background: var(--color-theme);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
.-type02 .floatingBanner_close {
  top: -2.8rem;
  right: 0;
}
.-type03 .floatingBanner_close {
  top: -2.8rem;
  right: 0;
}

@media screen and (max-width: 576px) {
  body:has(.floatingBanner) .l-footer_pagetop {
    bottom: 13rem;
    right: 1.6rem;
  }
  body:has(.floatingBanner.-type02) .l-footer_pagetop {
    bottom: 42vw;
  }
  body:has(.floatingBanner.-type03) .l-footer_pagetop {
    bottom: 12rem;
  }
}
.movie_slide {
  border-radius: 0.8rem;
  margin-inline: auto;
  background: #fff4e4;
  position: relative;
  padding: 4rem;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 1024px) {
  .movie_slide {
    width: auto;
    padding: 2.4rem;
    margin: 0 calc(var(--content-gutter) * -1) 2.4rem;
    border-radius: 0;
  }
}
@media screen and (max-width: 820px) {
  .movie_slide img {
    width: 100%;
  }
}
.movie_slide_imgbox img {
  border: solid 2px #fff4e4;
  border-radius: 0.8rem;
}
@media (hover: hover) {
  .movie_slide_imgbox:hover .movie_slide_imgbox_img {
    border-color: var(--color-theme);
  }
  .movie_slide_imgbox:hover .movie_slide_textbox_text,
  .movie_slide_imgbox:hover .movie_slide_textbox_title {
    color: var(--color-theme);
    text-decoration: underline;
  }
}
.movie_slide_textbox {
  padding: 1.2rem 0 2.4rem;
  border-radius: 0 0 0.8rem 0.8rem;
}
@media screen and (max-width: 820px) {
  .movie_slide_textbox {
    min-height: revert;
  }
}
@media screen and (max-width: 820px) {
  .movie_slide_textbox {
    padding: 1.2rem 0 4.4rem;
  }
}
.movie_slide_textbox_category {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.108rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 820px) {
  .movie_slide_textbox_category {
    font-size: 1.4rem;
  }
}
.movie_slide_textbox_category_icon {
  color: #e62128;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.movie_slide_textbox_category_icon img {
  width: 2.4rem;
  height: 1.5rem;
}
.movie_slide_textbox_title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 820px) {
  .movie_slide_textbox_title {
    font-size: 1.8rem;
    -webkit-line-clamp: 1;
  }
}
.movie_slide_textbox_text {
  font-size: 1.4rem;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.movie_slide .splide__arrow {
  top: calc(50% - 6rem);
  width: 4.8rem;
  height: 4.8rem;
}
@media screen and (max-width: 1024px) {
  .movie_slide .splide__arrow {
    width: 3.6rem;
    height: 3.6rem;
    top: 27vw;
  }
}
.movie_slide .splide__arrow--prev {
  left: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .movie_slide .splide__arrow--prev {
    left: 1rem;
  }
}
.movie_slide .splide__arrow--next {
  right: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .movie_slide .splide__arrow--next {
    right: 1rem;
  }
}
.movie_slide .splide__pagination {
  width: calc(100% - 13.2rem);
  bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  .movie_slide .splide__pagination {
    width: calc(100% - 9.2rem);
  }
}
.movie_slide .splide__toggle {
  bottom: 2.4rem;
  right: 4rem;
}
@media screen and (max-width: 1024px) {
  .movie_slide .splide__toggle {
    right: 2.4rem;
  }
}

.movie_scrollbox {
  width: 100%;
  overflow-x: auto;
  display: flex;
  gap: 2.4rem;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 1024px) {
  .movie_scrollbox {
    margin-bottom: 2.4rem;
  }
}
.movie_scrollbox_item {
  width: 48.7rem;
  flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .movie_scrollbox_item {
    width: 19.2rem;
  }
}
@media (hover: hover) {
  .movie_scrollbox_item:hover .movie_scrollbox_item_imgbox_img {
    border: solid 2px var(--color-theme);
  }
  .movie_scrollbox_item:hover .movie_scrollbox_item_textbox_text,
  .movie_scrollbox_item:hover .movie_scrollbox_item_textbox_subtext {
    color: var(--color-theme);
    text-decoration: underline;
  }
}
.movie_scrollbox_item_imgbox_img {
  border: solid 2px #f2f2f2;
  border-radius: 0.8rem;
}
.movie_scrollbox_item_textbox {
  margin-top: 1.2rem;
}
.movie_scrollbox_item_textbox_subtext {
  font-size: 1.4rem;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 820px) {
  .movie_scrollbox_item_textbox_subtext {
    display: none;
  }
}
.movie_scrollbox_item_textbox_text {
  font-size: 1.8rem;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 820px) {
  .movie_scrollbox_item_textbox_text {
    font-size: 1.4rem;
  }
}

.topTabContents {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1280px) {
  .topTabContents {
    margin: 0 calc(var(--content-gutter) * -1);
    max-width: 200%;
  }
}
@media screen and (max-width: 820px) {
  .topTabContents {
    padding-bottom: 4rem;
  }
}
.topTabContents_btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-end;
  background: var(--color-theme);
  padding: 3.2rem 4rem 0;
}
@media screen and (max-width: 820px) {
  .topTabContents_btn {
    padding: 1.6rem 2.4rem 0;
  }
}
.topTabContents_btn_item {
  background: #99001e;
  color: #fff;
  padding: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 2rem;
  font-weight: 700;
  transition: 0s;
}
.topTabContents_btn_item:first-child {
  border-radius: 0.4rem 0 0 0;
}
.topTabContents_btn_item:last-child {
  border-radius: 0 0.4rem 0 0;
}
.topTabContents_btn_item.-active {
  padding: 1.8rem 1.6rem 1.6rem;
  background: #fff;
  color: var(--color-default);
  border-radius: 0.4rem 0.4rem 0 0;
}
.topTabContents_btn_item.-active svg path {
  fill: var(--color-default);
}
.topTabContents_block {
  background: #fff;
}
.topTabContents_block_item_section {
  margin-top: 6.4rem;
  background: #fff;
}
@media screen and (max-width: 1280px) {
  .topTabContents_block_item_section {
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
  }
}
@media screen and (max-width: 820px) {
  .topTabContents_block_item_section {
    margin-top: 3rem;
  }
}
.topTabContents_block .l-section {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1280px) {
  .topTabContents_block .l-section {
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
  }
}

#globalBlandFooter a {
  text-decoration: none;
  color: #333;
}
#globalBlandFooter a:visited {
  color: #333;
}
#globalBlandFooter a:hover {
  text-decoration: underline;
  color: #333;
}

.animationlogo {
  width: 100%;
  max-width: 51.8rem;
}

.animationlogo svg {
  overflow: visible;
}

.animationlogo .ab {
  fill: url(#v);
}

.animationlogo .ab,
.animationlogo .ac,
.animationlogo .ad,
.animationlogo .ae,
.animationlogo .af,
.animationlogo .ag,
.animationlogo .ah,
.animationlogo .ai,
.animationlogo .aj,
.animationlogo .ak,
.animationlogo .al,
.animationlogo .am,
.animationlogo .an,
.animationlogo .ao,
.animationlogo .ap,
.animationlogo .aq,
.animationlogo .ar,
.animationlogo .as,
.animationlogo .at,
.animationlogo .au,
.animationlogo .av,
.animationlogo .aw,
.animationlogo .ax,
.animationlogo .ay,
.animationlogo .az,
.animationlogo .ba,
.animationlogo .bb {
  stroke-width: 0px;
}

.animationlogo .ac {
  fill: url(#w);
}

.animationlogo .ad {
  fill: url(#c);
}

.animationlogo .ae {
  fill: url(#s);
}

.animationlogo .af {
  fill: #251e1c;
}

.animationlogo .ag {
  fill: url(#y);
}

.animationlogo .ah {
  fill: url(#e);
}

.animationlogo .ai {
  fill: url(#g);
}

.animationlogo .aj {
  fill: url(#i);
}

.animationlogo .ak {
  fill: url(#l);
}

.animationlogo .al {
  fill: url(#b);
}

.animationlogo .am {
  fill: url(#q);
}

.animationlogo .an {
  fill: url(#t);
}

.animationlogo .ao {
  fill: url(#u);
}

.animationlogo .ap {
  fill: url(#n);
}

.animationlogo .bc {
  fill: none;
  stroke: url(#aa);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 23px;
}

.animationlogo .aq {
  fill: url(#z);
}

.animationlogo .ar {
  fill: url(#h);
}

.animationlogo .as {
  fill: #fff;
}

.animationlogo .at {
  fill: url(#j);
}

.animationlogo .au {
  fill: url(#d);
}

.animationlogo .av {
  fill: url(#f);
}

.animationlogo .aw {
  fill: url(#m);
}

.animationlogo .ax {
  fill: url(#r);
}

.animationlogo .ay {
  fill: url(#k);
}

.animationlogo .az {
  fill: url(#p);
}

.animationlogo .ba {
  fill: url(#x);
}

.animationlogo .bb {
  fill: url(#o);
}

.animationlogo *[data-text] {
  opacity: 0;
  transform-origin: center;
}

.animationlogo *[data-text=未],
.animationlogo *[data-text=来],
.animationlogo *[data-text=マ],
.animationlogo *[data-text=ッ],
.animationlogo *[data-text=プ] {
  transform-origin: center bottom;
}

.animationlogo02 {
  margin: 0px auto;
  width: 100px;
  aspect-ratio: 30.671/26.14;
  opacity: 0.6;
}

.animationlogo02 svg {
  overflow: visible;
}

.animationlogo02 .d02 {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 23px;
}

.animationlogo02 *[data-text] {
  opacity: 0;
  transform-origin: center;
}

.js-accordionTarget {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.js-accordionTarget.-open {
  height: auto;
  animation: fadeIn ease 0.5s forwards;
}

.moistureCheck tr:nth-child(1) th {
  background: #ededab;
}
.moistureCheck tr:nth-child(2) th {
  background: #ede951;
}
.moistureCheck tr:nth-child(3) th {
  background: #e5dd25;
}
.moistureCheck tr:nth-child(4) th {
  background: #ca9a12;
}
.moistureCheck tr:nth-child(5) th {
  background: #b5741f;
}
.moistureCheck th {
  width: 3em;
}
@media screen and (max-width: 820px) {
  .moistureCheck th {
    display: revert;
  }
}

.pfcCalculator {
  max-width: 47.2rem;
  margin: 0 auto;
}
.pfcCalculator_input {
  width: 100%;
  border-radius: 0.4rem;
  border: solid 1px var(--color-default);
  padding: 1.2rem;
  margin-bottom: 2rem;
}
.pfcCalculator_radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.pfcCalculator_radio_item {
  display: none;
}
.pfcCalculator_radio_item:checked + .pfcCalculator_radio_label {
  background: var(--color-theme);
  color: #fff;
}
.pfcCalculator_radio_label {
  margin: 0;
  width: 100%;
}
.pfcCalculator_select {
  width: 100%;
  border-radius: 0.4rem;
  border: solid 1px var(--color-default);
  padding: 1.2rem 3.6rem 1.2rem 1.2rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.pfcCalculator_select_wrap {
  margin-bottom: 2rem;
  position: relative;
}
.pfcCalculator_select_wrap::after {
  content: "";
  pointer-events: none;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%) rotate(135deg);
  border-top: 2px solid var(--color-theme);
  border-right: 2px solid var(--color-theme);
}
.pfcCalculator_btn {
  width: 100%;
  max-width: 100%;
  margin: 2rem 0;
}
.pfcCalculator_alert {
  display: none;
  color: var(--color-theme);
  font-weight: 700;
}
.pfcCalculator_alert.-active {
  display: block;
}
.pfcCalculator_result {
  background: #fff;
  padding: 3.2rem;
  margin-top: 6rem;
  display: none;
}
.pfcCalculator_result.-active {
  display: block;
}
.pfcCalculator_result .pfcCalculator_input {
  text-align: right;
}

.intakeNutrientTable {
  width: 93.6rem;
}

.intakeNutrientTable th,
.intakeNutrientTable td {
  text-align: center;
  vertical-align: middle;
}

.intakeNutrientTable th {
  padding: 1rem 0.8rem;
  border-top: solid 0.2rem #fa9100;
  border-right: solid 0.1rem #ffcb80;
  border-left: solid 0.1rem #ffcb80;
}

.intakeNutrientTable th.-bg02 {
  font-size: 1.4rem;
  font-weight: 500;
  border-color: #e5e5e4;
  background: #edede4;
}

.intakeNutrientTable th.-bg03 {
  border-color: #e5e5e4;
  background: #f7f7f1;
}

.intakeNutrientTable td {
  padding: 2rem 1rem;
}

.intakeNutrientTable td.-highlight {
  padding: 2rem 0.6rem;
}

.intakeNutrientTable .w16rem {
  width: 16rem;
}

.combinationMenu + .combinationMenu {
  margin-top: 3.2rem;
}
.combinationMenu_title {
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  border-bottom: solid 0.1rem #e5e5e4;
}
.combinationMenu_item {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  container-type: inline-size;
  container-name: combinationMenu;
}
@media screen and (max-width: 820px) {
  .combinationMenu_item {
    display: block;
    text-align: center;
  }
}
.combinationMenu_item_image {
  width: 12rem;
  flex-shrink: 1;
}
@media screen and (max-width: 820px) {
  .combinationMenu_item_image {
    width: 100%;
  }
}
.combinationMenu_item_text {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.5;
}
.combinationMenu_item_text span {
  display: inline-block;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 0.8rem;
  background-color: #faf0e2;
}
.combinationMenu_item_text:nth-of-type(2), .combinationMenu_item_text:nth-of-type(6) {
  width: 15.5rem;
  flex: revert;
}
@container combinationMenu (max-width: 871px) {
  .combinationMenu_item_text:nth-of-type(2), .combinationMenu_item_text:nth-of-type(6) {
    width: auto;
    flex: 1;
  }
}
@media screen and (max-width: 820px) {
  .combinationMenu_item_text:nth-of-type(2), .combinationMenu_item_text:nth-of-type(6) {
    width: 100%;
  }
}
.combinationMenu_item_icon {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 2;
}

.checkListBox {
  padding: 3.2rem;
  background-color: #faf0e2;
  border-radius: 0.8rem;
}
@media screen and (max-width: 820px) {
  .checkListBox {
    padding: 2.4rem;
  }
}
.checkListBox .tanpakuCheck_list {
  padding: 0;
}

.foodMenuTable {
  width: 93.6rem;
}
.foodMenuTable thead th {
  padding: 1.6rem 1rem;
  text-align: center;
  vertical-align: middle;
  border-top: solid 0.2rem #a3a3a3;
  border-right: solid 0.1rem #e5e5e4;
  border-left: solid 0.1rem #e5e5e4;
  background-color: #fff;
}
.foodMenuTable thead th:nth-of-type(1) {
  color: #32633c;
  font-size: 2.4rem;
  border-top-color: #c7e190;
}
.foodMenuTable thead th:nth-of-type(3) {
  color: #a95b1d;
  font-size: 2.4rem;
  border-top-color: #fa9100;
}
.foodMenuTable tbody th {
  padding: 0.5rem 1.6rem;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  border: solid 0.1rem #e5e5e4;
  background-color: #fff;
}
.foodMenuTable tbody td {
  padding: 0;
}
.foodMenuTable tbody td em {
  font-weight: 700;
}
.foodMenuTable tbody td:nth-of-type(1) {
  background-color: #f9ffec;
}
.foodMenuTable tbody td:nth-of-type(1) em {
  color: #32633c;
}
.foodMenuTable tbody td:nth-of-type(1) .-change {
  border-color: #32633c;
}
.foodMenuTable tbody td:nth-of-type(2) {
  background-color: #f7f7f1;
}
.foodMenuTable tbody td:nth-of-type(2) em {
  color: #333;
}
.foodMenuTable tbody td:nth-of-type(3) {
  background-color: #fef4e5;
}
.foodMenuTable tbody td:nth-of-type(3) em {
  color: #a95b1d;
}
.foodMenuTable tbody td:nth-of-type(3) .-change {
  border-color: #a95b1d;
}
.foodMenuTable tbody td ul li {
  padding: 1rem 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  border-bottom: solid 0.1rem #e5e5e4;
}
.foodMenuTable tbody td ul li:nth-child(4) {
  border-bottom: none;
}
.foodMenuTable tbody td ul li.-change {
  border: solid 0.2rem;
}
.foodMenuTable tbody td ul li em {
  text-decoration: underline;
  text-decoration-thickness: 0.2em;
  text-underline-offset: 0.15em;
  text-underline-position: from-font;
}
.foodMenuTable .-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foodMenuTable .-flex div {
  position: relative;
}
.foodMenuTable .-flex .-left {
  color: #32633c;
}
.foodMenuTable .-flex .-left::before {
  display: inline-block;
  content: "";
  margin-right: 0.8rem;
  height: 1.5rem;
  width: 1rem;
  vertical-align: -0.1em;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  background-color: #32633c;
}
.foodMenuTable .-flex .-right {
  color: #a95b1d;
}
.foodMenuTable .-flex .-right::after {
  display: inline-block;
  content: "";
  margin-left: 0.8rem;
  height: 1.5rem;
  width: 1rem;
  vertical-align: -0.1em;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #a95b1d;
}
.foodMenuTable .-flex .-large {
  font-size: 2.4rem;
}
.foodMenuTable .-gray {
  color: #fff;
  border-color: #717171;
  background-color: #717171;
}
.foodMenuTable .foodMenuDl01 {
  display: grid;
  grid-template-columns: calc(3em + 3.2rem) 1fr;
}
.foodMenuTable .foodMenuDl01 dt {
  display: grid;
  align-items: center;
  grid-template-rows: subgrid;
  padding: 1rem 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  border-bottom: solid 0.1rem #e5e5e4;
}
.foodMenuTable .foodMenuDl01 dt:last-of-type {
  border-bottom: none;
}
.foodMenuTable .foodMenuDl01 dt.-change {
  border: solid 0.2rem;
  border-right: none;
}
.foodMenuTable .foodMenuDl01 dd {
  display: grid;
  position: relative;
  align-items: center;
  grid-template-columns: auto;
  grid-template-rows: subgrid;
  padding: 1rem 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  border-bottom: solid 0.1rem #e5e5e4;
}
.foodMenuTable .foodMenuDl01 dd::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin-block: auto;
  width: 0.1rem;
  height: 2.4rem;
  background-color: #e5e5e4;
}
.foodMenuTable .foodMenuDl01 dd:last-of-type {
  border-bottom: none;
}
.foodMenuTable .foodMenuDl01 dd.-change {
  border: solid 0.2rem;
  border-left: none;
}
.foodMenuTable .foodMenuDl01 dd div {
  font-weight: 400;
}
.foodMenuTable .foodMenuDl01 dd em {
  text-decoration: underline;
  text-decoration-thickness: 0.2em;
  text-underline-offset: 0.15em;
  text-underline-position: from-font;
}
.foodMenuTable .foodMenuDl02 {
  display: grid;
  margin: 0.8rem 1.6rem;
  grid-template-columns: repeat(2, 1fr);
}
.foodMenuTable .foodMenuDl02 dt {
  display: grid;
  align-items: center;
  grid-template-rows: subgrid;
  padding-block: 0.4rem;
  border-bottom: solid 0.1rem #e5e5e4;
}
.foodMenuTable .foodMenuDl02 dt:last-of-type {
  border-bottom: none;
}
.foodMenuTable .foodMenuDl02 dd {
  display: grid;
  align-items: center;
  grid-template-rows: subgrid;
  padding-block: 0.4rem;
  font-size: 1.8rem;
  text-align: right;
  border-bottom: solid 0.1rem #e5e5e4;
}
.foodMenuTable .foodMenuDl02 dd:last-of-type {
  border-bottom: none;
}
.foodMenuTable .foodMenuDl02 em {
  font-size: 2rem;
}

.ingredientTitle {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #dad6d5;
}

/*****************************************************
  CSS Animation
*****************************************************/
@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
[data-animation=fadeIn] {
  opacity: 0;
}
[data-animation=fadeIn].-animate {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes fadeOutTop {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-3rem);
  }
}
@keyframes leftToRight {
  from {
    opacity: 0;
    transform: translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
[data-animation=leftToRight] {
  opacity: 0;
}
[data-animation=leftToRight].-animate {
  animation: leftToRight 1s ease-out forwards;
}

@keyframes rightToLeft {
  from {
    opacity: 0;
    transform: translateX(50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
[data-animation=rightToLeft] {
  opacity: 0;
}
[data-animation=rightToLeft].-animate {
  animation: rightToLeft 1s ease-out forwards;
}

@keyframes bottomToTop {
  from {
    opacity: 0;
    transform: translateY(5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
[data-animation=bottomToTop] {
  opacity: 0;
}
[data-animation=bottomToTop].-animate {
  animation: bottomToTop 0.5s ease-out forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes blur {
  from {
    filter: blur(1.5rem);
  }
  to {
    filter: blur(0);
  }
}
@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes scrollTop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes stamp {
  0% {
    scale: 10;
    opacity: 0;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}
@keyframes infiniteZoomIn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
/*****************************************************
  Utility
*****************************************************/
.u-mt0 {
  margin-top: 0rem !important;
}

.u-mr0 {
  margin-right: 0rem !important;
}

.u-mb0 {
  margin-bottom: 0rem !important;
}

.u-ml0 {
  margin-left: 0rem !important;
}

.u-mt4 {
  margin-top: 0.4rem !important;
}

.u-mr4 {
  margin-right: 0.4rem !important;
}

.u-mb4 {
  margin-bottom: 0.4rem !important;
}

.u-ml4 {
  margin-left: 0.4rem !important;
}

.u-mt8 {
  margin-top: 0.8rem !important;
}

.u-mr8 {
  margin-right: 0.8rem !important;
}

.u-mb8 {
  margin-bottom: 0.8rem !important;
}

.u-ml8 {
  margin-left: 0.8rem !important;
}

.u-mt12 {
  margin-top: 1.2rem !important;
}

.u-mr12 {
  margin-right: 1.2rem !important;
}

.u-mb12 {
  margin-bottom: 1.2rem !important;
}

.u-ml12 {
  margin-left: 1.2rem !important;
}

.u-mt16 {
  margin-top: 1.6rem !important;
}

.u-mr16 {
  margin-right: 1.6rem !important;
}

.u-mb16 {
  margin-bottom: 1.6rem !important;
}

.u-ml16 {
  margin-left: 1.6rem !important;
}

.u-mt20 {
  margin-top: 2rem !important;
}

.u-mr20 {
  margin-right: 2rem !important;
}

.u-mb20 {
  margin-bottom: 2rem !important;
}

.u-ml20 {
  margin-left: 2rem !important;
}

.u-mt24 {
  margin-top: 2.4rem !important;
}

.u-mr24 {
  margin-right: 2.4rem !important;
}

.u-mb24 {
  margin-bottom: 2.4rem !important;
}

.u-ml24 {
  margin-left: 2.4rem !important;
}

.u-mt28 {
  margin-top: 2.8rem !important;
}

.u-mr28 {
  margin-right: 2.8rem !important;
}

.u-mb28 {
  margin-bottom: 2.8rem !important;
}

.u-ml28 {
  margin-left: 2.8rem !important;
}

.u-mt32 {
  margin-top: 3.2rem !important;
}

.u-mr32 {
  margin-right: 3.2rem !important;
}

.u-mb32 {
  margin-bottom: 3.2rem !important;
}

.u-ml32 {
  margin-left: 3.2rem !important;
}

.u-mt36 {
  margin-top: 3.6rem !important;
}

.u-mr36 {
  margin-right: 3.6rem !important;
}

.u-mb36 {
  margin-bottom: 3.6rem !important;
}

.u-ml36 {
  margin-left: 3.6rem !important;
}

.u-mt40 {
  margin-top: 4rem !important;
}

.u-mr40 {
  margin-right: 4rem !important;
}

.u-mb40 {
  margin-bottom: 4rem !important;
}

.u-ml40 {
  margin-left: 4rem !important;
}

.u-mt44 {
  margin-top: 4.4rem !important;
}

.u-mr44 {
  margin-right: 4.4rem !important;
}

.u-mb44 {
  margin-bottom: 4.4rem !important;
}

.u-ml44 {
  margin-left: 4.4rem !important;
}

.u-mt48 {
  margin-top: 4.8rem !important;
}

.u-mr48 {
  margin-right: 4.8rem !important;
}

.u-mb48 {
  margin-bottom: 4.8rem !important;
}

.u-ml48 {
  margin-left: 4.8rem !important;
}

.u-mt52 {
  margin-top: 5.2rem !important;
}

.u-mr52 {
  margin-right: 5.2rem !important;
}

.u-mb52 {
  margin-bottom: 5.2rem !important;
}

.u-ml52 {
  margin-left: 5.2rem !important;
}

.u-mt56 {
  margin-top: 5.6rem !important;
}

.u-mr56 {
  margin-right: 5.6rem !important;
}

.u-mb56 {
  margin-bottom: 5.6rem !important;
}

.u-ml56 {
  margin-left: 5.6rem !important;
}

.u-mt60 {
  margin-top: 6rem !important;
}

.u-mr60 {
  margin-right: 6rem !important;
}

.u-mb60 {
  margin-bottom: 6rem !important;
}

.u-ml60 {
  margin-left: 6rem !important;
}

.u-mt64 {
  margin-top: 6.4rem !important;
}

.u-mr64 {
  margin-right: 6.4rem !important;
}

.u-mb64 {
  margin-bottom: 6.4rem !important;
}

.u-ml64 {
  margin-left: 6.4rem !important;
}

.u-mt68 {
  margin-top: 6.8rem !important;
}

.u-mr68 {
  margin-right: 6.8rem !important;
}

.u-mb68 {
  margin-bottom: 6.8rem !important;
}

.u-ml68 {
  margin-left: 6.8rem !important;
}

.u-mt72 {
  margin-top: 7.2rem !important;
}

.u-mr72 {
  margin-right: 7.2rem !important;
}

.u-mb72 {
  margin-bottom: 7.2rem !important;
}

.u-ml72 {
  margin-left: 7.2rem !important;
}

.u-mt76 {
  margin-top: 7.6rem !important;
}

.u-mr76 {
  margin-right: 7.6rem !important;
}

.u-mb76 {
  margin-bottom: 7.6rem !important;
}

.u-ml76 {
  margin-left: 7.6rem !important;
}

.u-mt80 {
  margin-top: 8rem !important;
}

.u-mr80 {
  margin-right: 8rem !important;
}

.u-mb80 {
  margin-bottom: 8rem !important;
}

.u-ml80 {
  margin-left: 8rem !important;
}

.u-mtSmall {
  margin-top: 2.4rem !important;
}

.u-mtNormal {
  margin-top: 3.2rem !important;
}

.u-mtLarge {
  margin-top: 5.6rem !important;
}

.u-mbSmall {
  margin-bottom: 2.4rem !important;
}

.u-mbNormal {
  margin-bottom: 3.2rem !important;
}

.u-mbLarge {
  margin-bottom: 5.6rem !important;
}

@media screen and (max-width: 820px) {
  .u-mtSmall {
    margin-top: 2.4rem !important;
  }
  .u-mtNormal {
    margin-top: 3.2rem !important;
  }
  .u-mtLarge {
    margin-top: 4rem !important;
  }
  .u-mbSmall {
    margin-bottom: 2.4rem !important;
  }
  .u-mbNormal {
    margin-bottom: 3.2rem !important;
  }
  .u-mbLarge {
    margin-bottom: 4rem !important;
  }
}
@media screen and (max-width: 820px) {
  .u-mt-sp0 {
    margin-top: 0rem !important;
  }
  .u-mr-sp0 {
    margin-right: 0rem !important;
  }
  .u-mb-sp0 {
    margin-bottom: 0rem !important;
  }
  .u-ml-sp0 {
    margin-left: 0rem !important;
  }
  .u-mt-sp4 {
    margin-top: 0.4rem !important;
  }
  .u-mr-sp4 {
    margin-right: 0.4rem !important;
  }
  .u-mb-sp4 {
    margin-bottom: 0.4rem !important;
  }
  .u-ml-sp4 {
    margin-left: 0.4rem !important;
  }
  .u-mt-sp8 {
    margin-top: 0.8rem !important;
  }
  .u-mr-sp8 {
    margin-right: 0.8rem !important;
  }
  .u-mb-sp8 {
    margin-bottom: 0.8rem !important;
  }
  .u-ml-sp8 {
    margin-left: 0.8rem !important;
  }
  .u-mt-sp12 {
    margin-top: 1.2rem !important;
  }
  .u-mr-sp12 {
    margin-right: 1.2rem !important;
  }
  .u-mb-sp12 {
    margin-bottom: 1.2rem !important;
  }
  .u-ml-sp12 {
    margin-left: 1.2rem !important;
  }
  .u-mt-sp16 {
    margin-top: 1.6rem !important;
  }
  .u-mr-sp16 {
    margin-right: 1.6rem !important;
  }
  .u-mb-sp16 {
    margin-bottom: 1.6rem !important;
  }
  .u-ml-sp16 {
    margin-left: 1.6rem !important;
  }
  .u-mt-sp20 {
    margin-top: 2rem !important;
  }
  .u-mr-sp20 {
    margin-right: 2rem !important;
  }
  .u-mb-sp20 {
    margin-bottom: 2rem !important;
  }
  .u-ml-sp20 {
    margin-left: 2rem !important;
  }
  .u-mt-sp24 {
    margin-top: 2.4rem !important;
  }
  .u-mr-sp24 {
    margin-right: 2.4rem !important;
  }
  .u-mb-sp24 {
    margin-bottom: 2.4rem !important;
  }
  .u-ml-sp24 {
    margin-left: 2.4rem !important;
  }
  .u-mt-sp28 {
    margin-top: 2.8rem !important;
  }
  .u-mr-sp28 {
    margin-right: 2.8rem !important;
  }
  .u-mb-sp28 {
    margin-bottom: 2.8rem !important;
  }
  .u-ml-sp28 {
    margin-left: 2.8rem !important;
  }
  .u-mt-sp32 {
    margin-top: 3.2rem !important;
  }
  .u-mr-sp32 {
    margin-right: 3.2rem !important;
  }
  .u-mb-sp32 {
    margin-bottom: 3.2rem !important;
  }
  .u-ml-sp32 {
    margin-left: 3.2rem !important;
  }
  .u-mt-sp36 {
    margin-top: 3.6rem !important;
  }
  .u-mr-sp36 {
    margin-right: 3.6rem !important;
  }
  .u-mb-sp36 {
    margin-bottom: 3.6rem !important;
  }
  .u-ml-sp36 {
    margin-left: 3.6rem !important;
  }
  .u-mt-sp40 {
    margin-top: 4rem !important;
  }
  .u-mr-sp40 {
    margin-right: 4rem !important;
  }
  .u-mb-sp40 {
    margin-bottom: 4rem !important;
  }
  .u-ml-sp40 {
    margin-left: 4rem !important;
  }
  .u-mt-sp44 {
    margin-top: 4.4rem !important;
  }
  .u-mr-sp44 {
    margin-right: 4.4rem !important;
  }
  .u-mb-sp44 {
    margin-bottom: 4.4rem !important;
  }
  .u-ml-sp44 {
    margin-left: 4.4rem !important;
  }
  .u-mt-sp48 {
    margin-top: 4.8rem !important;
  }
  .u-mr-sp48 {
    margin-right: 4.8rem !important;
  }
  .u-mb-sp48 {
    margin-bottom: 4.8rem !important;
  }
  .u-ml-sp48 {
    margin-left: 4.8rem !important;
  }
  .u-mt-sp52 {
    margin-top: 5.2rem !important;
  }
  .u-mr-sp52 {
    margin-right: 5.2rem !important;
  }
  .u-mb-sp52 {
    margin-bottom: 5.2rem !important;
  }
  .u-ml-sp52 {
    margin-left: 5.2rem !important;
  }
  .u-mt-sp56 {
    margin-top: 5.6rem !important;
  }
  .u-mr-sp56 {
    margin-right: 5.6rem !important;
  }
  .u-mb-sp56 {
    margin-bottom: 5.6rem !important;
  }
  .u-ml-sp56 {
    margin-left: 5.6rem !important;
  }
  .u-mt-sp60 {
    margin-top: 6rem !important;
  }
  .u-mr-sp60 {
    margin-right: 6rem !important;
  }
  .u-mb-sp60 {
    margin-bottom: 6rem !important;
  }
  .u-ml-sp60 {
    margin-left: 6rem !important;
  }
  .u-mt-sp64 {
    margin-top: 6.4rem !important;
  }
  .u-mr-sp64 {
    margin-right: 6.4rem !important;
  }
  .u-mb-sp64 {
    margin-bottom: 6.4rem !important;
  }
  .u-ml-sp64 {
    margin-left: 6.4rem !important;
  }
  .u-mt-sp68 {
    margin-top: 6.8rem !important;
  }
  .u-mr-sp68 {
    margin-right: 6.8rem !important;
  }
  .u-mb-sp68 {
    margin-bottom: 6.8rem !important;
  }
  .u-ml-sp68 {
    margin-left: 6.8rem !important;
  }
  .u-mt-sp72 {
    margin-top: 7.2rem !important;
  }
  .u-mr-sp72 {
    margin-right: 7.2rem !important;
  }
  .u-mb-sp72 {
    margin-bottom: 7.2rem !important;
  }
  .u-ml-sp72 {
    margin-left: 7.2rem !important;
  }
  .u-mt-sp76 {
    margin-top: 7.6rem !important;
  }
  .u-mr-sp76 {
    margin-right: 7.6rem !important;
  }
  .u-mb-sp76 {
    margin-bottom: 7.6rem !important;
  }
  .u-ml-sp76 {
    margin-left: 7.6rem !important;
  }
  .u-mt-sp80 {
    margin-top: 8rem !important;
  }
  .u-mr-sp80 {
    margin-right: 8rem !important;
  }
  .u-mb-sp80 {
    margin-bottom: 8rem !important;
  }
  .u-ml-sp80 {
    margin-left: 8rem !important;
  }
}
.u-pt0 {
  padding-top: 0rem !important;
}

.u-pr0 {
  padding-right: 0rem !important;
}

.u-pb0 {
  padding-bottom: 0rem !important;
}

.u-pl0 {
  padding-left: 0rem !important;
}

.u-pt4 {
  padding-top: 0.4rem !important;
}

.u-pr4 {
  padding-right: 0.4rem !important;
}

.u-pb4 {
  padding-bottom: 0.4rem !important;
}

.u-pl4 {
  padding-left: 0.4rem !important;
}

.u-pt8 {
  padding-top: 0.8rem !important;
}

.u-pr8 {
  padding-right: 0.8rem !important;
}

.u-pb8 {
  padding-bottom: 0.8rem !important;
}

.u-pl8 {
  padding-left: 0.8rem !important;
}

.u-pt12 {
  padding-top: 1.2rem !important;
}

.u-pr12 {
  padding-right: 1.2rem !important;
}

.u-pb12 {
  padding-bottom: 1.2rem !important;
}

.u-pl12 {
  padding-left: 1.2rem !important;
}

.u-pt16 {
  padding-top: 1.6rem !important;
}

.u-pr16 {
  padding-right: 1.6rem !important;
}

.u-pb16 {
  padding-bottom: 1.6rem !important;
}

.u-pl16 {
  padding-left: 1.6rem !important;
}

.u-pt20 {
  padding-top: 2rem !important;
}

.u-pr20 {
  padding-right: 2rem !important;
}

.u-pb20 {
  padding-bottom: 2rem !important;
}

.u-pl20 {
  padding-left: 2rem !important;
}

.u-pt24 {
  padding-top: 2.4rem !important;
}

.u-pr24 {
  padding-right: 2.4rem !important;
}

.u-pb24 {
  padding-bottom: 2.4rem !important;
}

.u-pl24 {
  padding-left: 2.4rem !important;
}

.u-pt28 {
  padding-top: 2.8rem !important;
}

.u-pr28 {
  padding-right: 2.8rem !important;
}

.u-pb28 {
  padding-bottom: 2.8rem !important;
}

.u-pl28 {
  padding-left: 2.8rem !important;
}

.u-pt32 {
  padding-top: 3.2rem !important;
}

.u-pr32 {
  padding-right: 3.2rem !important;
}

.u-pb32 {
  padding-bottom: 3.2rem !important;
}

.u-pl32 {
  padding-left: 3.2rem !important;
}

.u-pt36 {
  padding-top: 3.6rem !important;
}

.u-pr36 {
  padding-right: 3.6rem !important;
}

.u-pb36 {
  padding-bottom: 3.6rem !important;
}

.u-pl36 {
  padding-left: 3.6rem !important;
}

.u-pt40 {
  padding-top: 4rem !important;
}

.u-pr40 {
  padding-right: 4rem !important;
}

.u-pb40 {
  padding-bottom: 4rem !important;
}

.u-pl40 {
  padding-left: 4rem !important;
}

.u-pt44 {
  padding-top: 4.4rem !important;
}

.u-pr44 {
  padding-right: 4.4rem !important;
}

.u-pb44 {
  padding-bottom: 4.4rem !important;
}

.u-pl44 {
  padding-left: 4.4rem !important;
}

.u-pt48 {
  padding-top: 4.8rem !important;
}

.u-pr48 {
  padding-right: 4.8rem !important;
}

.u-pb48 {
  padding-bottom: 4.8rem !important;
}

.u-pl48 {
  padding-left: 4.8rem !important;
}

.u-pt52 {
  padding-top: 5.2rem !important;
}

.u-pr52 {
  padding-right: 5.2rem !important;
}

.u-pb52 {
  padding-bottom: 5.2rem !important;
}

.u-pl52 {
  padding-left: 5.2rem !important;
}

.u-pt56 {
  padding-top: 5.6rem !important;
}

.u-pr56 {
  padding-right: 5.6rem !important;
}

.u-pb56 {
  padding-bottom: 5.6rem !important;
}

.u-pl56 {
  padding-left: 5.6rem !important;
}

.u-pt60 {
  padding-top: 6rem !important;
}

.u-pr60 {
  padding-right: 6rem !important;
}

.u-pb60 {
  padding-bottom: 6rem !important;
}

.u-pl60 {
  padding-left: 6rem !important;
}

.u-pt64 {
  padding-top: 6.4rem !important;
}

.u-pr64 {
  padding-right: 6.4rem !important;
}

.u-pb64 {
  padding-bottom: 6.4rem !important;
}

.u-pl64 {
  padding-left: 6.4rem !important;
}

.u-pt68 {
  padding-top: 6.8rem !important;
}

.u-pr68 {
  padding-right: 6.8rem !important;
}

.u-pb68 {
  padding-bottom: 6.8rem !important;
}

.u-pl68 {
  padding-left: 6.8rem !important;
}

.u-pt72 {
  padding-top: 7.2rem !important;
}

.u-pr72 {
  padding-right: 7.2rem !important;
}

.u-pb72 {
  padding-bottom: 7.2rem !important;
}

.u-pl72 {
  padding-left: 7.2rem !important;
}

.u-pt76 {
  padding-top: 7.6rem !important;
}

.u-pr76 {
  padding-right: 7.6rem !important;
}

.u-pb76 {
  padding-bottom: 7.6rem !important;
}

.u-pl76 {
  padding-left: 7.6rem !important;
}

.u-pt80 {
  padding-top: 8rem !important;
}

.u-pr80 {
  padding-right: 8rem !important;
}

.u-pb80 {
  padding-bottom: 8rem !important;
}

.u-pl80 {
  padding-left: 8rem !important;
}

@media screen and (max-width: 820px) {
  .u-pt-sp0 {
    padding-top: 0rem !important;
  }
  .u-pr-sp0 {
    padding-right: 0rem !important;
  }
  .u-pb-sp0 {
    padding-bottom: 0rem !important;
  }
  .u-pl-sp0 {
    padding-left: 0rem !important;
  }
  .u-pt-sp4 {
    padding-top: 0.4rem !important;
  }
  .u-pr-sp4 {
    padding-right: 0.4rem !important;
  }
  .u-pb-sp4 {
    padding-bottom: 0.4rem !important;
  }
  .u-pl-sp4 {
    padding-left: 0.4rem !important;
  }
  .u-pt-sp8 {
    padding-top: 0.8rem !important;
  }
  .u-pr-sp8 {
    padding-right: 0.8rem !important;
  }
  .u-pb-sp8 {
    padding-bottom: 0.8rem !important;
  }
  .u-pl-sp8 {
    padding-left: 0.8rem !important;
  }
  .u-pt-sp12 {
    padding-top: 1.2rem !important;
  }
  .u-pr-sp12 {
    padding-right: 1.2rem !important;
  }
  .u-pb-sp12 {
    padding-bottom: 1.2rem !important;
  }
  .u-pl-sp12 {
    padding-left: 1.2rem !important;
  }
  .u-pt-sp16 {
    padding-top: 1.6rem !important;
  }
  .u-pr-sp16 {
    padding-right: 1.6rem !important;
  }
  .u-pb-sp16 {
    padding-bottom: 1.6rem !important;
  }
  .u-pl-sp16 {
    padding-left: 1.6rem !important;
  }
  .u-pt-sp20 {
    padding-top: 2rem !important;
  }
  .u-pr-sp20 {
    padding-right: 2rem !important;
  }
  .u-pb-sp20 {
    padding-bottom: 2rem !important;
  }
  .u-pl-sp20 {
    padding-left: 2rem !important;
  }
  .u-pt-sp24 {
    padding-top: 2.4rem !important;
  }
  .u-pr-sp24 {
    padding-right: 2.4rem !important;
  }
  .u-pb-sp24 {
    padding-bottom: 2.4rem !important;
  }
  .u-pl-sp24 {
    padding-left: 2.4rem !important;
  }
  .u-pt-sp28 {
    padding-top: 2.8rem !important;
  }
  .u-pr-sp28 {
    padding-right: 2.8rem !important;
  }
  .u-pb-sp28 {
    padding-bottom: 2.8rem !important;
  }
  .u-pl-sp28 {
    padding-left: 2.8rem !important;
  }
  .u-pt-sp32 {
    padding-top: 3.2rem !important;
  }
  .u-pr-sp32 {
    padding-right: 3.2rem !important;
  }
  .u-pb-sp32 {
    padding-bottom: 3.2rem !important;
  }
  .u-pl-sp32 {
    padding-left: 3.2rem !important;
  }
  .u-pt-sp36 {
    padding-top: 3.6rem !important;
  }
  .u-pr-sp36 {
    padding-right: 3.6rem !important;
  }
  .u-pb-sp36 {
    padding-bottom: 3.6rem !important;
  }
  .u-pl-sp36 {
    padding-left: 3.6rem !important;
  }
  .u-pt-sp40 {
    padding-top: 4rem !important;
  }
  .u-pr-sp40 {
    padding-right: 4rem !important;
  }
  .u-pb-sp40 {
    padding-bottom: 4rem !important;
  }
  .u-pl-sp40 {
    padding-left: 4rem !important;
  }
  .u-pt-sp44 {
    padding-top: 4.4rem !important;
  }
  .u-pr-sp44 {
    padding-right: 4.4rem !important;
  }
  .u-pb-sp44 {
    padding-bottom: 4.4rem !important;
  }
  .u-pl-sp44 {
    padding-left: 4.4rem !important;
  }
  .u-pt-sp48 {
    padding-top: 4.8rem !important;
  }
  .u-pr-sp48 {
    padding-right: 4.8rem !important;
  }
  .u-pb-sp48 {
    padding-bottom: 4.8rem !important;
  }
  .u-pl-sp48 {
    padding-left: 4.8rem !important;
  }
  .u-pt-sp52 {
    padding-top: 5.2rem !important;
  }
  .u-pr-sp52 {
    padding-right: 5.2rem !important;
  }
  .u-pb-sp52 {
    padding-bottom: 5.2rem !important;
  }
  .u-pl-sp52 {
    padding-left: 5.2rem !important;
  }
  .u-pt-sp56 {
    padding-top: 5.6rem !important;
  }
  .u-pr-sp56 {
    padding-right: 5.6rem !important;
  }
  .u-pb-sp56 {
    padding-bottom: 5.6rem !important;
  }
  .u-pl-sp56 {
    padding-left: 5.6rem !important;
  }
  .u-pt-sp60 {
    padding-top: 6rem !important;
  }
  .u-pr-sp60 {
    padding-right: 6rem !important;
  }
  .u-pb-sp60 {
    padding-bottom: 6rem !important;
  }
  .u-pl-sp60 {
    padding-left: 6rem !important;
  }
  .u-pt-sp64 {
    padding-top: 6.4rem !important;
  }
  .u-pr-sp64 {
    padding-right: 6.4rem !important;
  }
  .u-pb-sp64 {
    padding-bottom: 6.4rem !important;
  }
  .u-pl-sp64 {
    padding-left: 6.4rem !important;
  }
  .u-pt-sp68 {
    padding-top: 6.8rem !important;
  }
  .u-pr-sp68 {
    padding-right: 6.8rem !important;
  }
  .u-pb-sp68 {
    padding-bottom: 6.8rem !important;
  }
  .u-pl-sp68 {
    padding-left: 6.8rem !important;
  }
  .u-pt-sp72 {
    padding-top: 7.2rem !important;
  }
  .u-pr-sp72 {
    padding-right: 7.2rem !important;
  }
  .u-pb-sp72 {
    padding-bottom: 7.2rem !important;
  }
  .u-pl-sp72 {
    padding-left: 7.2rem !important;
  }
  .u-pt-sp76 {
    padding-top: 7.6rem !important;
  }
  .u-pr-sp76 {
    padding-right: 7.6rem !important;
  }
  .u-pb-sp76 {
    padding-bottom: 7.6rem !important;
  }
  .u-pl-sp76 {
    padding-left: 7.6rem !important;
  }
  .u-pt-sp80 {
    padding-top: 8rem !important;
  }
  .u-pr-sp80 {
    padding-right: 8rem !important;
  }
  .u-pb-sp80 {
    padding-bottom: 8rem !important;
  }
  .u-pl-sp80 {
    padding-left: 8rem !important;
  }
  .u-pt-sp84 {
    padding-top: 8.4rem !important;
  }
  .u-pr-sp84 {
    padding-right: 8.4rem !important;
  }
  .u-pb-sp84 {
    padding-bottom: 8.4rem !important;
  }
  .u-pl-sp84 {
    padding-left: 8.4rem !important;
  }
  .u-pt-sp88 {
    padding-top: 8.8rem !important;
  }
  .u-pr-sp88 {
    padding-right: 8.8rem !important;
  }
  .u-pb-sp88 {
    padding-bottom: 8.8rem !important;
  }
  .u-pl-sp88 {
    padding-left: 8.8rem !important;
  }
  .u-pt-sp92 {
    padding-top: 9.2rem !important;
  }
  .u-pr-sp92 {
    padding-right: 9.2rem !important;
  }
  .u-pb-sp92 {
    padding-bottom: 9.2rem !important;
  }
  .u-pl-sp92 {
    padding-left: 9.2rem !important;
  }
  .u-pt-sp96 {
    padding-top: 9.6rem !important;
  }
  .u-pr-sp96 {
    padding-right: 9.6rem !important;
  }
  .u-pb-sp96 {
    padding-bottom: 9.6rem !important;
  }
  .u-pl-sp96 {
    padding-left: 9.6rem !important;
  }
  .u-pt-sp100 {
    padding-top: 10rem !important;
  }
  .u-pr-sp100 {
    padding-right: 10rem !important;
  }
  .u-pb-sp100 {
    padding-bottom: 10rem !important;
  }
  .u-pl-sp100 {
    padding-left: 10rem !important;
  }
  .u-pt-sp104 {
    padding-top: 10.4rem !important;
  }
  .u-pr-sp104 {
    padding-right: 10.4rem !important;
  }
  .u-pb-sp104 {
    padding-bottom: 10.4rem !important;
  }
  .u-pl-sp104 {
    padding-left: 10.4rem !important;
  }
  .u-pt-sp108 {
    padding-top: 10.8rem !important;
  }
  .u-pr-sp108 {
    padding-right: 10.8rem !important;
  }
  .u-pb-sp108 {
    padding-bottom: 10.8rem !important;
  }
  .u-pl-sp108 {
    padding-left: 10.8rem !important;
  }
  .u-pt-sp112 {
    padding-top: 11.2rem !important;
  }
  .u-pr-sp112 {
    padding-right: 11.2rem !important;
  }
  .u-pb-sp112 {
    padding-bottom: 11.2rem !important;
  }
  .u-pl-sp112 {
    padding-left: 11.2rem !important;
  }
  .u-pt-sp116 {
    padding-top: 11.6rem !important;
  }
  .u-pr-sp116 {
    padding-right: 11.6rem !important;
  }
  .u-pb-sp116 {
    padding-bottom: 11.6rem !important;
  }
  .u-pl-sp116 {
    padding-left: 11.6rem !important;
  }
  .u-pt-sp120 {
    padding-top: 12rem !important;
  }
  .u-pr-sp120 {
    padding-right: 12rem !important;
  }
  .u-pb-sp120 {
    padding-bottom: 12rem !important;
  }
  .u-pl-sp120 {
    padding-left: 12rem !important;
  }
  .u-pt-sp124 {
    padding-top: 12.4rem !important;
  }
  .u-pr-sp124 {
    padding-right: 12.4rem !important;
  }
  .u-pb-sp124 {
    padding-bottom: 12.4rem !important;
  }
  .u-pl-sp124 {
    padding-left: 12.4rem !important;
  }
  .u-pt-sp128 {
    padding-top: 12.8rem !important;
  }
  .u-pr-sp128 {
    padding-right: 12.8rem !important;
  }
  .u-pb-sp128 {
    padding-bottom: 12.8rem !important;
  }
  .u-pl-sp128 {
    padding-left: 12.8rem !important;
  }
  .u-pt-sp132 {
    padding-top: 13.2rem !important;
  }
  .u-pr-sp132 {
    padding-right: 13.2rem !important;
  }
  .u-pb-sp132 {
    padding-bottom: 13.2rem !important;
  }
  .u-pl-sp132 {
    padding-left: 13.2rem !important;
  }
  .u-pt-sp136 {
    padding-top: 13.6rem !important;
  }
  .u-pr-sp136 {
    padding-right: 13.6rem !important;
  }
  .u-pb-sp136 {
    padding-bottom: 13.6rem !important;
  }
  .u-pl-sp136 {
    padding-left: 13.6rem !important;
  }
  .u-pt-sp140 {
    padding-top: 14rem !important;
  }
  .u-pr-sp140 {
    padding-right: 14rem !important;
  }
  .u-pb-sp140 {
    padding-bottom: 14rem !important;
  }
  .u-pl-sp140 {
    padding-left: 14rem !important;
  }
  .u-pt-sp144 {
    padding-top: 14.4rem !important;
  }
  .u-pr-sp144 {
    padding-right: 14.4rem !important;
  }
  .u-pb-sp144 {
    padding-bottom: 14.4rem !important;
  }
  .u-pl-sp144 {
    padding-left: 14.4rem !important;
  }
  .u-pt-sp148 {
    padding-top: 14.8rem !important;
  }
  .u-pr-sp148 {
    padding-right: 14.8rem !important;
  }
  .u-pb-sp148 {
    padding-bottom: 14.8rem !important;
  }
  .u-pl-sp148 {
    padding-left: 14.8rem !important;
  }
  .u-pt-sp152 {
    padding-top: 15.2rem !important;
  }
  .u-pr-sp152 {
    padding-right: 15.2rem !important;
  }
  .u-pb-sp152 {
    padding-bottom: 15.2rem !important;
  }
  .u-pl-sp152 {
    padding-left: 15.2rem !important;
  }
  .u-pt-sp156 {
    padding-top: 15.6rem !important;
  }
  .u-pr-sp156 {
    padding-right: 15.6rem !important;
  }
  .u-pb-sp156 {
    padding-bottom: 15.6rem !important;
  }
  .u-pl-sp156 {
    padding-left: 15.6rem !important;
  }
  .u-pt-sp160 {
    padding-top: 16rem !important;
  }
  .u-pr-sp160 {
    padding-right: 16rem !important;
  }
  .u-pb-sp160 {
    padding-bottom: 16rem !important;
  }
  .u-pl-sp160 {
    padding-left: 16rem !important;
  }
  .u-pt-sp164 {
    padding-top: 16.4rem !important;
  }
  .u-pr-sp164 {
    padding-right: 16.4rem !important;
  }
  .u-pb-sp164 {
    padding-bottom: 16.4rem !important;
  }
  .u-pl-sp164 {
    padding-left: 16.4rem !important;
  }
  .u-pt-sp168 {
    padding-top: 16.8rem !important;
  }
  .u-pr-sp168 {
    padding-right: 16.8rem !important;
  }
  .u-pb-sp168 {
    padding-bottom: 16.8rem !important;
  }
  .u-pl-sp168 {
    padding-left: 16.8rem !important;
  }
  .u-pt-sp172 {
    padding-top: 17.2rem !important;
  }
  .u-pr-sp172 {
    padding-right: 17.2rem !important;
  }
  .u-pb-sp172 {
    padding-bottom: 17.2rem !important;
  }
  .u-pl-sp172 {
    padding-left: 17.2rem !important;
  }
  .u-pt-sp176 {
    padding-top: 17.6rem !important;
  }
  .u-pr-sp176 {
    padding-right: 17.6rem !important;
  }
  .u-pb-sp176 {
    padding-bottom: 17.6rem !important;
  }
  .u-pl-sp176 {
    padding-left: 17.6rem !important;
  }
  .u-pt-sp180 {
    padding-top: 18rem !important;
  }
  .u-pr-sp180 {
    padding-right: 18rem !important;
  }
  .u-pb-sp180 {
    padding-bottom: 18rem !important;
  }
  .u-pl-sp180 {
    padding-left: 18rem !important;
  }
  .u-pt-sp184 {
    padding-top: 18.4rem !important;
  }
  .u-pr-sp184 {
    padding-right: 18.4rem !important;
  }
  .u-pb-sp184 {
    padding-bottom: 18.4rem !important;
  }
  .u-pl-sp184 {
    padding-left: 18.4rem !important;
  }
  .u-pt-sp188 {
    padding-top: 18.8rem !important;
  }
  .u-pr-sp188 {
    padding-right: 18.8rem !important;
  }
  .u-pb-sp188 {
    padding-bottom: 18.8rem !important;
  }
  .u-pl-sp188 {
    padding-left: 18.8rem !important;
  }
  .u-pt-sp192 {
    padding-top: 19.2rem !important;
  }
  .u-pr-sp192 {
    padding-right: 19.2rem !important;
  }
  .u-pb-sp192 {
    padding-bottom: 19.2rem !important;
  }
  .u-pl-sp192 {
    padding-left: 19.2rem !important;
  }
  .u-pt-sp196 {
    padding-top: 19.6rem !important;
  }
  .u-pr-sp196 {
    padding-right: 19.6rem !important;
  }
  .u-pb-sp196 {
    padding-bottom: 19.6rem !important;
  }
  .u-pl-sp196 {
    padding-left: 19.6rem !important;
  }
  .u-pt-sp200 {
    padding-top: 20rem !important;
  }
  .u-pr-sp200 {
    padding-right: 20rem !important;
  }
  .u-pb-sp200 {
    padding-bottom: 20rem !important;
  }
  .u-pl-sp200 {
    padding-left: 20rem !important;
  }
}
.u-wAuto {
  width: auto !important;
}

.u-w5 {
  width: 5% !important;
}

.u-w10 {
  width: 10% !important;
}

.u-w15 {
  width: 15% !important;
}

.u-w20 {
  width: 20% !important;
}

.u-w25 {
  width: 25% !important;
}

.u-w30 {
  width: 30% !important;
}

.u-w35 {
  width: 35% !important;
}

.u-w40 {
  width: 40% !important;
}

.u-w45 {
  width: 45% !important;
}

.u-w50 {
  width: 50% !important;
}

.u-w55 {
  width: 55% !important;
}

.u-w60 {
  width: 60% !important;
}

.u-w65 {
  width: 65% !important;
}

.u-w70 {
  width: 70% !important;
}

.u-w75 {
  width: 75% !important;
}

.u-w80 {
  width: 80% !important;
}

.u-w85 {
  width: 85% !important;
}

.u-w90 {
  width: 90% !important;
}

.u-w95 {
  width: 95% !important;
}

.u-w100 {
  width: 100% !important;
}

.u-w1em {
  width: 1em !important;
}

.u-w2em {
  width: 2em !important;
}

.u-w3em {
  width: 3em !important;
}

.u-w4em {
  width: 4em !important;
}

.u-w5em {
  width: 5em !important;
}

.u-w6em {
  width: 6em !important;
}

.u-w7em {
  width: 7em !important;
}

.u-w8em {
  width: 8em !important;
}

.u-w9em {
  width: 9em !important;
}

.u-w10em {
  width: 10em !important;
}

.u-w11em {
  width: 11em !important;
}

.u-w12em {
  width: 12em !important;
}

.u-w13em {
  width: 13em !important;
}

.u-w14em {
  width: 14em !important;
}

.u-w15em {
  width: 15em !important;
}

.u-w16em {
  width: 16em !important;
}

.u-w17em {
  width: 17em !important;
}

.u-w18em {
  width: 18em !important;
}

.u-w19em {
  width: 19em !important;
}

.u-w20em {
  width: 20em !important;
}

.u-w21em {
  width: 21em !important;
}

.u-w22em {
  width: 22em !important;
}

.u-w23em {
  width: 23em !important;
}

.u-w24em {
  width: 24em !important;
}

.u-w25em {
  width: 25em !important;
}

.u-w26em {
  width: 26em !important;
}

.u-w27em {
  width: 27em !important;
}

.u-w28em {
  width: 28em !important;
}

.u-w29em {
  width: 29em !important;
}

.u-w30em {
  width: 30em !important;
}

.u-w31em {
  width: 31em !important;
}

.u-w32em {
  width: 32em !important;
}

.u-w33em {
  width: 33em !important;
}

.u-w34em {
  width: 34em !important;
}

.u-w35em {
  width: 35em !important;
}

.u-w36em {
  width: 36em !important;
}

.u-w37em {
  width: 37em !important;
}

.u-w38em {
  width: 38em !important;
}

.u-w39em {
  width: 39em !important;
}

.u-w40em {
  width: 40em !important;
}

.u-w41em {
  width: 41em !important;
}

.u-w42em {
  width: 42em !important;
}

.u-w43em {
  width: 43em !important;
}

.u-w44em {
  width: 44em !important;
}

.u-w45em {
  width: 45em !important;
}

.u-w46em {
  width: 46em !important;
}

.u-w47em {
  width: 47em !important;
}

.u-w48em {
  width: 48em !important;
}

.u-w49em {
  width: 49em !important;
}

.u-w50em {
  width: 50em !important;
}

.u-fs11 {
  font-size: 1.1rem !important;
}

.u-fs12 {
  font-size: 1.2rem !important;
}

.u-fs13 {
  font-size: 1.3rem !important;
}

.u-fs14 {
  font-size: 1.4rem !important;
}

.u-fs15 {
  font-size: 1.5rem !important;
}

.u-fs16 {
  font-size: 1.6rem !important;
}

.u-fs17 {
  font-size: 1.7rem !important;
}

.u-fs18 {
  font-size: 1.8rem !important;
}

.u-fs19 {
  font-size: 1.9rem !important;
}

.u-fs20 {
  font-size: 2rem !important;
}

.u-fs21 {
  font-size: 2.1rem !important;
}

.u-fs22 {
  font-size: 2.2rem !important;
}

.u-fs23 {
  font-size: 2.3rem !important;
}

.u-fs24 {
  font-size: 2.4rem !important;
}

.u-fs25 {
  font-size: 2.5rem !important;
}

.u-fs26 {
  font-size: 2.6rem !important;
}

.u-fs27 {
  font-size: 2.7rem !important;
}

.u-fs28 {
  font-size: 2.8rem !important;
}

.u-fs29 {
  font-size: 2.9rem !important;
}

.u-fs30 {
  font-size: 3rem !important;
}

.u-fs31 {
  font-size: 3.1rem !important;
}

.u-fs32 {
  font-size: 3.2rem !important;
}

.u-fs33 {
  font-size: 3.3rem !important;
}

.u-fs34 {
  font-size: 3.4rem !important;
}

.u-fs35 {
  font-size: 3.5rem !important;
}

.u-fsXlarge {
  font-size: 2.4rem !important;
}

.u-fsLarge {
  font-size: 2rem !important;
}

.u-fsMedium {
  font-size: 1.8rem !important;
}

.u-fsSmall {
  font-size: 1.6rem !important;
}

.u-fsXsmall {
  font-size: 1.4rem !important;
}

@media screen and (max-width: 820px) {
  .u-fsXlarge {
    font-size: 2.2rem !important;
  }
  .u-fsLarge {
    font-size: 1.8rem !important;
  }
  .u-fsMedium {
    font-size: 1.6rem !important;
  }
  .u-fsSmall {
    font-size: 1.4rem !important;
  }
  .u-fsXsmall {
    font-size: 1.2rem !important;
  }
}
.u-textblock {
  font-weight: 900 !important;
}

.u-textbold {
  font-weight: 700 !important;
}

.u-textmedium {
  font-weight: 500 !important;
}

.u-textnormal {
  font-weight: 400 !important;
}

.u-textthin {
  font-weight: 200 !important;
}

.u-indent {
  text-indent: 1em !important;
}

.u-underline {
  text-decoration: underline;
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.2rem;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.u-clear {
  clear: both !important;
}

.u-ac {
  text-align: center !important;
}

.u-ar {
  text-align: right !important;
}

.u-al {
  text-align: left !important;
}

.u-vm {
  vertical-align: middle !important;
}

.u-vt {
  vertical-align: top !important;
}

.u-vb {
  vertical-align: bottom !important;
}

@media screen and (min-width: 1026px) {
  .u-ac-pc {
    text-align: center !important;
  }
  .u-ar-pc {
    text-align: right !important;
  }
  .u-al-pc {
    text-align: left !important;
  }
  .u-vm-pc {
    vertical-align: middle !important;
  }
  .u-vt-pc {
    vertical-align: top !important;
  }
  .u-vb-pc {
    vertical-align: bottom !important;
  }
}
@media screen and (max-width: 820px) {
  .u-ac-sp {
    text-align: center !important;
  }
  .u-ar-sp {
    text-align: right !important;
  }
  .u-al-sp {
    text-align: left !important;
  }
  .u-vm-sp {
    vertical-align: middle !important;
  }
  .u-vt-sp {
    vertical-align: top !important;
  }
  .u-vb-sp {
    vertical-align: bottom !important;
  }
}
.u-sp,
.u-tab {
  display: none !important;
}

@media screen and (max-width: 820px) {
  .u-pc {
    display: none !important;
  }
  .u-tab {
    display: revert !important;
  }
}
@media screen and (max-width: 576px) {
  .u-pc {
    display: none !important;
  }
  .u-sp {
    display: revert !important;
  }
}
.u-inlineBlock {
  display: inline-block !important;
}

.u-emp {
  color: #e00000 !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  animation: fadeIn 2s ease 0s;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  height: 100%;
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  margin: 0 auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* add */
.slick-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 0;
  line-height: 0;
}
.slick-dots li {
  margin: 0 0.5rem;
  font-size: 0;
  line-height: 0;
  padding: 0.4rem 0.5rem;
}
.slick-dots li button {
  font-size: 0;
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  border: solid #aeaeae 1px;
  border-radius: 50%;
  margin: 0 0.5rem;
  margin: 0;
}
.slick-dots li.slick-active button {
  background: var(--color-link);
  border-color: var(--color-link);
}

.slickBtnArea {
  margin: 0 1rem;
}
.slickBtnArea .js-tglBtn {
  width: 1.2rem;
  height: 1.2rem;
  border: none;
  border-left: solid #aeaeae 4px;
  border-right: solid #aeaeae 4px;
  border-radius: 0;
  background: transparent;
}
.slickBtnArea .js-tglBtn.-stop {
  border-color: var(--color-link);
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 37%;
  bottom: 0;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  width: 5.2rem;
  height: 5.2rem;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  outline: none;
}
@media screen and (max-width: 1280px) {
  .slick-prev,
  .slick-next {
    width: 4.4rem;
    height: 4.4rem;
  }
}
@media screen and (max-width: 820px) {
  .slick-prev,
  .slick-next {
    width: 5rem;
    height: 5rem;
  }
}
.slick-prev::before, .slick-prev::after,
.slick-next::before,
.slick-next::after {
  content: "";
  display: block;
  position: absolute;
}
.slick-prev::before,
.slick-next::before {
  width: 7px;
  height: 7px;
  border-top: solid #060606 2px;
  border-right: solid #060606 2px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .slick-prev::before,
  .slick-next::before {
    width: 5px;
    height: 5px;
  }
}
@media screen and (max-width: 820px) {
  .slick-prev::before,
  .slick-next::before {
    width: 7px;
    height: 7px;
    border-top: solid #060606 2px;
    border-right: solid #060606 2px;
  }
}
.slick-prev::after,
.slick-next::after {
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  background: #fff;
  top: 1rem;
  left: 1rem;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0px 0px 15px -6px #888;
}
@media screen and (max-width: 820px) {
  .slick-prev::after,
  .slick-next::after {
    box-shadow: 0px 0px 10px -4px #000;
  }
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 0.7;
}

.slick-prev {
  left: 1rem;
}
@media screen and (max-width: 1280px) {
  .slick-prev {
    left: -0.1rem;
  }
}
.slick-prev::before {
  transform: rotate(225deg);
  left: 2.3rem;
}
@media screen and (max-width: 1280px) {
  .slick-prev::before {
    left: 2rem;
  }
}
@media screen and (max-width: 820px) {
  .slick-prev::before {
    left: 2.2rem;
  }
}

.slick-next {
  right: 1rem;
}
@media screen and (max-width: 1280px) {
  .slick-next {
    right: -0.1rem;
  }
}
.slick-next::before {
  transform: rotate(45deg);
  right: 2.3rem;
}
@media screen and (max-width: 1280px) {
  .slick-next::before {
    right: 2rem;
  }
}
@media screen and (max-width: 820px) {
  .slick-next::before {
    right: 2.2rem;
  }
}

/* 個別に指定 */
.js-slide.p-mv_slide .slickBtnArea .js-tglBtn {
  border-left: solid #fff 3px;
  border-right: solid #fff 3px;
}
.js-slide.p-mv_slide .slickBtnArea .js-tglBtn.-stop {
  border-color: var(--color-link);
}
.js-slide.p-mv_slide .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1280px) and (hover: hover) {
  .js-slide.p-mv_slide .slick-dots {
    height: 4.5rem;
  }
}
@media screen and (max-width: 820px) {
  .js-slide.p-mv_slide .slick-dots {
    height: 5rem;
  }
}
.js-slide.p-mv_slide .slick-slide {
  font-size: 0;
}
.js-slide.p-mv_slide .slick-slide a {
  display: block;
}
.js-slide.p-mv_slide .slick-slide img {
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .js-slide.p-mv_slide .slick-prev {
    left: -0.5rem;
  }
  .js-slide.p-mv_slide .slick-next {
    right: -0.5rem;
  }
}

.p-station_slide .slick-prev,
.p-station_slide .slick-next {
  width: 4rem;
  height: 4rem;
  background: #fff;
  box-shadow: 0px 0px 10px -4px #000;
}
@media screen and (max-width: 820px) {
  .p-station_slide .slick-prev,
  .p-station_slide .slick-next {
    box-shadow: 0px 0px 10px -4px #000;
    width: 3rem;
    height: 3rem;
  }
}
.p-station_slide .slick-prev::before,
.p-station_slide .slick-next::before {
  width: 8px;
  height: 8px;
  border-top: solid #060606 3px;
  border-right: solid #060606 3px;
}
@media screen and (max-width: 820px) {
  .p-station_slide .slick-prev::before,
  .p-station_slide .slick-next::before {
    width: 6px;
    height: 6px;
    border-top: solid #060606 2px;
    border-right: solid #060606 2px;
  }
}
.p-station_slide .slick-prev {
  left: 176rem;
}
.p-station_slide .slick-prev::before {
  left: 1.6rem;
}
@media screen and (max-width: 1180px) {
  .p-station_slide .slick-prev {
    left: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-station_slide .slick-prev {
    top: 2rem;
    left: 2.5rem;
  }
  .p-station_slide .slick-prev::before {
    left: 1.2rem;
  }
}
.p-station_slide .slick-next {
  right: 59rem;
}
.p-station_slide .slick-next::before {
  right: 1.6rem;
}
@media screen and (max-width: 1180px) {
  .p-station_slide .slick-next {
    right: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-station_slide .slick-next {
    top: 2rem;
    right: 2.5rem;
  }
  .p-station_slide .slick-next::before {
    right: 1.2rem;
  }
}
.p-station_slide .slick-dots {
  max-width: var(--content-width);
  margin: 5rem auto 0;
}
@media screen and (min-width: 1181px) {
  .p-station_slide .slick-dots {
    position: relative;
    left: 58.5rem;
  }
}
@media screen and (max-width: 820px) {
  .p-station_slide .slick-dots {
    margin: 2.5rem auto 5rem;
  }
}

.p-pickup .slick-prev,
.p-pickup .slick-next {
  width: 6rem;
  height: 6rem;
}
@media screen and (max-width: 820px) {
  .p-pickup .slick-prev,
  .p-pickup .slick-next {
    width: 5rem;
    height: 5rem;
  }
}
.p-pickup .slick-prev::before,
.p-pickup .slick-next::before {
  width: 8px;
  height: 8px;
  border-top: solid #060606 3px;
  border-right: solid #060606 3px;
}
@media screen and (max-width: 820px) {
  .p-pickup .slick-prev::before,
  .p-pickup .slick-next::before {
    width: 6px;
    height: 6px;
    border-top: solid #060606 2px;
    border-right: solid #060606 2px;
  }
}
.p-pickup .slick-prev {
  top: 9rem;
  left: 34rem;
}
.p-pickup .slick-prev::before {
  left: 2.6rem;
}
@media screen and (max-width: 1180px) {
  .p-pickup .slick-prev {
    left: -1.5rem;
  }
}
@media screen and (max-width: 820px) {
  .p-pickup .slick-prev {
    top: 10rem;
    left: -1rem;
  }
  .p-pickup .slick-prev::before {
    left: 2.2rem;
  }
}
.p-pickup .slick-next {
  top: 9rem;
  right: 33rem;
}
.p-pickup .slick-next::before {
  right: 2.6rem;
}
@media screen and (max-width: 1180px) {
  .p-pickup .slick-next {
    right: -1.5rem;
  }
}
@media screen and (max-width: 820px) {
  .p-pickup .slick-next {
    top: 10rem;
    right: -1rem;
  }
  .p-pickup .slick-next::before {
    right: 2.2rem;
  }
}
.p-pickup .slick-dots {
  max-width: var(--content-width);
  margin: 4rem auto 0;
}
@media screen and (min-width: 980px) {
  .p-pickup .slick-dots {
    display: none;
  }
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*****************************************************
  Print
*****************************************************/
@media print {
  html:not([class*=-mobile]) body {
    width: var(--content-width);
    zoom: 0.8;
  }
  body {
    -webkit-print-color-adjust: exact;
  }
  .l-wrapper {
    padding-top: 0;
  }
  .l-header {
    position: static;
  }
  .l-header.-compact {
    height: inherit;
  }
  .l-header.-compact .l-header_logo img {
    width: inherit;
  }
  .l-header.-compact .l-header_utility {
    display: flex;
  }
  .heroRecruit::before {
    position: absolute;
  }
}
