@charset "UTF-8";
/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
/**
 * uaplus.css version 0.0.1
 */
/**
 * Different box model
 * 
 * We use the traditional box model, where the padding and border 
 * of the element is drawn inside and not outside the specified 
 * width and height. That makes combining relative and absolute 
 * units in properties like <code>inline-size</code> and 
 * <code>block-size</code> easier.
 * 
 * See https://en.wikipedia.org/wiki/CSS_box_model
 */
*,
*::after,
*::before {
  box-sizing: border-box;
}

/**
 * Improve focus styles
 *
 * Add spacing between content and its focus outline.
 */
:focus-visible {
  outline-offset: 3px;
}

/**
 * Disable text size adjustment
 * 
 * To improve readability on non-mobile optimized websites, browsers
 * like mobile Safari increase the default font size when you switch
 * a website from portrait to landscape. We don't want that for our 
 * optimized sites.
 *
 * See https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/
 */
:where(html) {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
}

/**
 * Increase line height
 *
 * Long paragraphs are easier to read if the line height is higher.
 */
:where(html) {
  line-height: 1.5;
}

/**
 * Add scrollbar gutter
 *
 * Prevent the page from “jumping” when switching from a long to a short page.
 *
 */
:where(html) {
  scrollbar-gutter: stable;
}

/**
 * Remove UA styles for h1s nested in sectioning content
 *
 * Nesting h1s in section, articles, etc., shouldn't influence the 
 * styling of the heading since nesting doesn't influence 
 * semantics either.
 * 
 * See https://github.com/whatwg/html/issues/7867#issuecomment-2632395167
 * See https://github.com/whatwg/html/pull/11102
 * See https://html.spec.whatwg.org/#sections-and-headings
 */
:where(h1) {
  font-size: 2em;
  margin-block: 0.67em;
}

/**
 * Improve abbreviations with titles
 * 
 * The abbr element with the title isn't helpful regarding 
 * accessibility because support is inconsistent, and it's only 
 * accessible to some users. Still, it's commonly used. 
 * This rule shows a dotted underline on abbreviations in all 
 * browsers (there's a bug in Safari) and changes the cursor.
 * 
 * See https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
 */
:where(abbr[title]) {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

/**
 * Optimize mark element in Forced Colors Mode
 *
 * The colors of the mark element don't change in Forced Colors Mode,
 * which can be problematic. Use system colors instead.
 * 
 * See https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
 */
@media (forced-colors: active) {
  mark {
    color: HighlightText;
    background-color: Highlight;
  }
}
/**
 * Announce del, ins, and s to screen readers
 * 
 * With the exception of NVDA (2024.4.2), which announces "deletion",
 * none of the common screen readers announces the <s> element.
 * Voice Over on macOS and iOS and Narrator don't announce 
 * <ins> and <del>. Usually, screen readers not announcing text-level
 * semantics is something we just accept, but devs using elements 
 * like <s> without knowing that they may not convey semantics is a 
 * common issue. We announce the start and end of stricken, inserted,
 * and deleted content with pseudo-elements. For languages other 
 * than English, you should provide translations, e.g. :lang(de) 
 * :where(s::before) { content: "Durchgestrichener Text Beginn "; }
 * 
 * See https://adrianroselli.com/2017/12/tweaking-text-level-styles.html
 */
:where(del, ins, s)::before,
:where(del, ins, s)::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  content: "test";
}

:where(s)::before {
  content: "stricken text start ";
}

:where(s)::after {
  content: " stricken text end";
}

:where(del)::before {
  content: "deletion start ";
}

:where(del)::after {
  content: " deletion end";
}

:where(ins)::before {
  content: "insertion start ";
}

:where(ins)::after {
  content: " insertion end";
}

/**
 * Avoid overflow caused by embedded content
 * 
 * Ensure that embedded content (audio, video, images, etc.) 
 * doesn't overflow its container.
 */
:where(audio, iframe, img, svg, video) {
  max-block-size: 100%;
  max-inline-size: 100%;
}

/**
 * Prevent fieldsets from causing overflow
 *
 * Reset the default `min-inline-size: min-content` to prevent
 * children from stretching fieldsets
 *
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
:where(fieldset) {
  min-inline-size: 0;
}

/**
 * Turn labels into block elements
 * 
 * Labels for inputs, selects, and textarea should be block 
 * elements.
 */
:where(label):has(+ :where(textarea, input, select)) {
  display: block;
}

/**
 * Increase the block-size of textareas
 *
 * The default height of textareas is small. We increase it a bit.
 */
:where(textarea:not([rows])) {
  min-block-size: 6em;
}

/**
 * Inherit font styling in form elements
 * 
 * buttons, inputs, selects, and textarea should have the same font
 * family and size as the rest of the page.
 */
:where(button, input, select, textarea) {
  font-family: inherit;
  font-size: inherit;
}

/**
 * Normalize search input styles
 *  
 * Remove the rounded corners of search inputs on macOS and IOS 
 * and normalize the background color
 */
:where([type=search]) {
  -webkit-appearance: textfield;
}

/* iOS only */
@supports (-webkit-touch-callout: none) {
  :where([type=search]) {
    border: 1px solid -apple-system-secondary-label;
    background-color: canvas;
  }
}
/**
 * Maintain direction in some input types
 * 
 * Some input types should remain left-aligned in right-to-left
 * languages,but only if the value isn't empty because the 
 * placeholder should be right-aligned.
 *
 * See https://rtlstyling.com/posts/rtl-styling#form-inputs
 */
:where([type=tel], [type=url], [type=email], [type=number]):not(:-moz-placeholder) {
  direction: ltr;
}
:where([type=tel], [type=url], [type=email], [type=number]):not(:placeholder-shown) {
  direction: ltr;
}

/**
 * Improve table styling
 *  
 * With the default styling, tables are hard to scan. These rules 
 * add padding and collapsed borders.
 */
:where(table) {
  border-collapse: collapse;
  border: 1px solid;
}

:where(th, td) {
  border: 1px solid;
  padding: 0.25em 0.5em;
}

/**
 * Fading dialogs
 *  
 * Add fade in and fade out transitions for the dialog element
 * and backdrops
 */
:where(dialog)::backdrop {
  background: oklch(0% 0 0deg / 0.3);
}

:where(dialog),
:where(dialog)::backdrop {
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms allow-discrete, overlay 300ms allow-discrete;
}

:where(dialog[open]),
:where(dialog[open])::backdrop {
  opacity: 1;
}

@starting-style {
  :where(dialog[open]),
  :where(dialog[open])::backdrop {
    opacity: 0;
  }
}
/**
 * Increase specificity of [hidden]
 *  
 * Make it harder to accidentally unhide elements with the 
 * [hidden] attribute while still maintaining the until-found 
 * functionality.
 */
[hidden]:not([hidden=until-found]) {
  display: none !important;
}

.example-text {
  font-size: clamp(1.125rem, 0.8846rem + 1.0256vw, 1.5rem);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  height: auto;
}
@media (min-width: 769px) {
  html {
    scroll-padding-top: 150px;
  }
}
html * {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  color: #515151;
  background-color: #ffffff;
}

a {
  text-decoration: underline;
  color: #515151;
}
a:hover {
  text-decoration: none;
}

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

::-moz-selection {
  background-color: #515151;
  color: #fff;
}

::selection {
  background-color: #515151;
  color: #fff;
}

blockquote {
  position: relative;
  padding: 30px 15px 8px 15px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}

blockquote:before {
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 15px;
  content: "“";
  color: #cfcfcf;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

figure {
  margin-inline-start: 0;
  margin-inline-end: 0;
  max-width: 100%;
}

pre {
  overflow: auto;
  background: #efefef;
  padding: 1rem;
}

address {
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 180%;
  color: #515151;
}
@media (min-width: 769px) {
  address {
    font-size: 1rem;
  }
}

h1, h2, h3, h4 {
  color: #515151;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-table-row {
  display: table-row !important;
}

.d-xs-none {
  display: none !important;
}

.d-xs-inline {
  display: inline !important;
}

.d-xs-block {
  display: block !important;
}

.d-xs-inline-block {
  display: inline-block !important;
}

.d-xs-flex {
  display: flex !important;
}

.d-xs-inline-flex {
  display: inline-flex !important;
}

.d-xs-grid {
  display: grid !important;
}

.d-xs-inline-grid {
  display: inline-grid !important;
}

.d-xs-table {
  display: table !important;
}

.d-xs-table-cell {
  display: table-cell !important;
}

.d-xs-table-row {
  display: table-row !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
}
@media (min-width: 769px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1440px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1920px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
}
@media (min-width: 769px) {
  .d-mobile-only {
    display: none !important;
  }
}

.d-desktop-only {
  display: none !important;
}
@media (min-width: 769px) {
  .d-desktop-only {
    display: block !important;
  }
}

.d-tablet-up {
  display: none !important;
}
@media (min-width: 576px) {
  .d-tablet-up {
    display: block !important;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.l-wrapper {
  overflow: hidden;
  position: relative;
}

.l-container {
  max-width: 1152px;
  margin-inline: auto;
  padding-inline: 16px;
}

.l-section {
  width: 100%;
  position: relative;
  padding: 40px 0;
}
@media (min-width: 769px) {
  .l-section {
    padding: 80px 0;
  }
}
.l-section--bg-yellow {
  border-radius: min(8.3333333333vw, 100px);
  background-color: #FFF1AC;
  padding-bottom: 260px;
}
@media (min-width: 769px) {
  .l-section--bg-yellow {
    padding-bottom: 300px;
  }
}
.l-section--bg-yellow:has(.c-bg--chara01--top) {
  padding-bottom: 260px;
}
@media (min-width: 769px) {
  .l-section--bg-yellow:has(.c-bg--chara01--top) {
    padding-bottom: 360px;
  }
}
.l-section--bg-blue {
  margin-top: -200px;
  border-radius: min(8.3333333333vw, 100px);
  background-color: #DAF3F2;
}

.l-content {
  padding-bottom: 16.25rem;
}
.l-content > .l-container {
  position: relative;
  max-width: 1000px;
}
.l-content--equipment01 {
  padding-bottom: 5rem;
}
.l-content--equipment02 {
  background-color: #f5f6f8;
  padding-top: 1.5rem;
  padding-bottom: 16.25rem;
}
.l-content--recruit01 {
  padding-bottom: 5rem;
}
.l-content--recruit02 {
  background-color: #f5f6f8;
  padding-top: 1.5rem;
  padding-bottom: 16.25rem;
}
@media (min-width: 769px) {
  .l-content--recruit02 {
    padding-bottom: 20rem;
  }
}
.l-content--products {
  padding-bottom: 18.75rem;
}
@media (min-width: 769px) {
  .l-content--products {
    padding-bottom: 25rem;
  }
}
.l-content--products > .l-container {
  max-width: 1000px;
}
.l-content--privacy {
  padding-bottom: 16.25rem;
}
@media (min-width: 769px) {
  .l-content--privacy {
    padding-bottom: 20rem;
  }
}
.l-content--privacy > .l-container {
  max-width: 840px;
}

@media (min-width: 769px) {
  .l-split {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}
@media (min-width: 769px) {
  .l-split__body {
    flex: 1;
    max-width: 764px;
  }
}

.l-header {
  width: 100%;
  position: absolute;
  z-index: 1000;
  transition: position 0.3s ease;
  top: 0;
}
@media (min-width: 769px) {
  .l-header {
    display: block;
  }
}
.l-header a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transition: opacity 0.2s ease;
}
.l-header a:hover {
  opacity: 0.6;
}
.l-header.is-sticky {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.is-scrolled .l-header.is-sticky {
  opacity: 1;
  transform: translateY(0);
}

.l-grid {
  display: grid;
  gap: 1rem;
}
.l-grid--center {
  justify-content: center;
  align-items: center;
}
.l-grid--gap-sm {
  gap: 0.5rem;
}
.l-grid--gap-md {
  gap: 1rem;
}
.l-grid--gap-lg {
  gap: 2rem;
}
.l-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.l-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
.l-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 769px) {
  .l-grid--2col\@md {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid--3col\@md {
    grid-template-columns: repeat(3, 1fr);
  }
  .l-grid--4col\@md {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .l-grid--2col\@lg {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid--3col\@lg {
    grid-template-columns: repeat(3, 1fr);
  }
  .l-grid--4col\@lg {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-logo {
  display: block;
  font-weight: 700;
  font-size: clamp(1rem, 0.6818rem + 2.4242vw, 2.5rem);
  line-height: 120%;
  color: #515151;
  text-align: left;
  text-decoration: none;
}
.c-logo a {
  text-decoration: none;
}
@media (min-width: 1024px) {
  .c-logo br {
    display: none;
  }
}
@media (min-width: 769px) {
  .c-logo {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}

.c-logo--bland {
  display: block;
  font-weight: 700;
  color: #515151;
  line-height: 0;
  display: none;
}
.c-logo--bland a {
  line-height: 0;
  display: flex;
  font-size: clamp(1rem, 0.6818rem + 2.4242vw, 2.5rem);
  line-height: 120%;
  align-items: center;
}
@media (min-width: 769px) {
  .c-logo--bland {
    display: block;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 90px;
  }
}

.c-lead {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.625rem, 1.0286rem + 2.5445vw, 2.25rem);
  line-height: 1.4;
  letter-spacing: 0%;
}
@media (min-width: 769px) {
  .c-lead {
    font-size: clamp(2rem, 1.25rem + 1.5625vw, 2.5rem);
  }
}

.c-badge-card {
  width: 19rem;
  height: 10.75rem;
  background-image: url(../images/c-badge-card__bg01.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.c-badge-card__eyebrow {
  margin: 0;
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #A99839;
}
.c-badge-card__title {
  margin: 1.6875rem 0 0;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1;
  /* グラデーション01 */
  background: linear-gradient(180deg, #E36E6E 0%, #D30303 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: flex;
  flex-direction: column;
}
.c-badge-card__num {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 4.25rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.c-badge-card__unit {
  color: #D30303;
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.25rem;
}
.c-badge-card__star {
  color: #D30303;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  margin: 0;
  line-height: 1;
  margin-top: 1rem;
}

.c-icon {
  display: block;
  aspect-ratio: 1/1;
  width: 2rem;
  height: auto;
  border-radius: 100%;
}
.c-icon--black {
  background-color: #000000;
}
.c-icon--blue {
  background-color: #474B64;
}
.c-icon--gray {
  background-color: #8E8E8E;
}
.c-icon--beige {
  background-color: #F3EBE0;
}

.c-product__name {
  margin: 1.1875rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
}

:root {
  --drawer-width: 70svw; /* ドロワー幅 */
  --drawer-z: 1100;
  --scrim-z: 1090;
  --transition-ms: 240ms; /* 開閉速度 */
  --bp-desktop: 1024px; /* PC時はそもそもドロワーを使わない想定ならJS側で解除可 */
}

/* トグルボタン（お好みで） */
.c-drawer__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  position: fixed;
  top: 1.5rem;
  right: 0; /* 画面右端に貼り付け */
  transform: translateX(0); /* 閉時：右端 */
  transition: transform var(--transition-ms) ease;
  z-index: calc(var(--drawer-z) + 1); /* スクラムより前に */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px; /* タップしやすいサイズ */
  border: 0;
  background: linear-gradient(180deg, #000000 0%, #515151 100%);
  background: #000;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
@media (min-width: 769px) {
  .c-drawer__btn {
    display: none;
  }
}
@media (min-width: 769px) {
  .c-drawer__btn {
    opacity: 0;
    pointer-events: none;
  }
}

.c-drawer__icon {
  position: relative;
  width: 20px;
  height: 14px;
  cursor: pointer;
  display: block;
  transition: all 0.5s;
}
.c-drawer__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}
.c-drawer__icon span {
  display: block;
  transition: all 0.5s;
}
.c-drawer__icon span:nth-of-type(1) {
  top: 0;
}
.c-drawer__icon span:nth-of-type(2) {
  top: 6px;
}
.c-drawer__icon span:nth-of-type(3) {
  bottom: 0;
}
.c-drawer__icon span:nth-of-type(1) {
  animation: btn07-bar01 0.75s forwards;
}
.c-drawer__icon span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.c-drawer__icon span:nth-of-type(3) {
  animation: btn07-bar03 0.75s forwards;
}

.c-drawer {
  position: fixed;
  inset: 0 0 0 auto; /* 右基準に変更 */
  width: var(--drawer-width);
  transform: translateX(100%); /* 初期状態は右に隠す */
  transition: transform var(--transition-ms) ease;
  background: linear-gradient(180deg, #000000 0%, #515151 100%);
  z-index: var(--drawer-z);
  will-change: transform;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.2);
}

.c-drawer[aria-hidden=false] {
  transform: translateX(0);
}

.c-drawer__panel {
  height: 100%;
  overflow: auto;
  padding: 16px;
}

.c-drawer__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  font-size: 1.125rem;
  line-height: 1;
}

.c-drawer__menu {
  text-align: center;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.c-drawer__menu a {
  color: #fff;
  display: block;
  padding: 12px 8px;
  text-decoration: none;
}

.c-drawer__scrim {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.36);
  opacity: 0;
  transition: opacity var(--transition-ms) ease;
  z-index: var(--scrim-z);
}

.c-drawer__scrim[aria-hidden=false] {
  opacity: 1;
}

.c-drawer__scrim[hidden] {
  display: none;
}

/* アニメーションを好まない設定に配慮 */
@media (prefers-reduced-motion: reduce) {
  .c-drawer, .c-drawer__scrim {
    transition: none;
  }
}
/* PCでは常時水平ナビにするなら、以下のように上書きしてもOK
@media (min-width: var(--bp-desktop)) {
  .c-drawer, .c-drawer__scrim { display:none !important; }
}
*/
/* “外側左上にくっつく”トグルボタン */
/* ドロワーが開いたら、ボタンもドロワー幅ぶん左へ移動 */
.c-drawer[aria-hidden=false] ~ .c-drawer__btn {
  transform: translateX(calc(-1 * var(--drawer-width) + 2px));
}
.c-drawer[aria-hidden=false] ~ .c-drawer__btn .c-drawer__icon span:nth-of-type(1) {
  animation: active-btn07-bar01 0.75s forwards;
}
.c-drawer[aria-hidden=false] ~ .c-drawer__btn .c-drawer__icon span:nth-of-type(2) {
  opacity: 0;
}
.c-drawer[aria-hidden=false] ~ .c-drawer__btn .c-drawer__icon span:nth-of-type(3) {
  animation: active-btn07-bar03 0.75s forwards;
}
@keyframes btn07-bar01 {
  0% {
    transform: translateY(6px) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar03 {
  0% {
    transform: translateY(-6px) rotate(-45deg);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(6px) rotate(45deg);
  }
}
@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.c-text-en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.c-text--lead {
  font-weight: 500;
  font-size: 1.5rem;
  font-size: clamp(1.125rem, 0.8846rem + 1.0256vw, 1.5rem);
  line-height: 1.5;
}

.c-text--company {
  font-weight: 700;
  font-size: 2rem;
  font-size: clamp(1.5rem, 1.1795rem + 1.3675vw, 2rem);
  line-height: 1.1875;
  text-align: center;
}

.c-note {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0%;
}
@media (min-width: 769px) {
  .c-note {
    font-size: 1rem;
  }
}

.c-balloon {
  position: relative;
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.5;
}
.c-balloon::before, .c-balloon::after {
  content: "";
  position: absolute;
  display: block;
}
.c-balloon::before {
  width: 100%;
  height: 1px;
  background-color: #D5D5D5;
  top: 1.875rem;
  left: 0;
  z-index: -2;
}
.c-balloon::after {
  background-image: url(../images/c-balloon__bg01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16.75rem;
  height: 4.5625rem;
  left: 50%;
  top: 0;
  z-index: -1;
  transform: translateX(-50%);
}

.c-card {
  text-align: center;
}
.c-card__title {
  margin: 0.625rem 0 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  font-size: clamp(0.875rem, 0.7196132597rem + 0.6629834254vw, 1.25rem);
}
@media (min-width: 769px) {
  .c-card__title {
    margin: 1.1875rem 0 0;
    font-size: 1.25rem;
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
  }
}
.c-card__text {
  margin: 0.625rem 0 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  font-size: clamp(0.875rem, 0.7196132597rem + 0.6629834254vw, 1.25rem);
}
@media (min-width: 769px) {
  .c-card__text {
    margin: 1.1875rem 0 0;
    font-size: 1.25rem;
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
  }
}

.c-btn {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 1.3125rem 1.25rem 1.4375rem;
  transition: all 0.2s ease;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25), inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  font-size: 2rem;
  line-height: 0.625;
  color: #FFFFFF;
  text-shadow: 0px 0px 4px rgba(76, 97, 149, 0.75);
  border-radius: 2rem;
  background-color: #FAA533;
  transition: 0.6s ease;
}
@media (min-width: 769px) {
  .c-btn {
    padding: 1.3125rem 2.5rem 1.4375rem;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #EF7722, #F99E5D);
  transition: opacity 0.2s ease;
}
.c-btn__inner {
  position: relative;
  z-index: 2;
}
@media (min-width: 769px) {
  .c-btn {
    min-width: 400px;
  }
}
.c-btn:hover::before {
  opacity: 0;
}
.c-btn--secondary, .c-btn--yellow {
  background: #AAADB9;
}
.c-btn--secondary:hover, .c-btn--yellow:hover {
  color: #AAADB9;
  background-color: #fff;
}
.c-btn--tertiary, .c-btn--green {
  border: 3px solid #EF7722;
  background: #EF7722;
}
.c-btn--tertiary:hover, .c-btn--green:hover {
  color: #EF7722;
  background-color: #fff;
}

.c-btn-list {
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.c-btn-list + .c-btn-list {
  margin-top: 1rem;
}
.c-btn-list li + li {
  margin-top: 0;
}
.c-btn-list li::before {
  content: none;
}

.c-bg-stripe {
  background-image: linear-gradient(180deg, #515151 30.12%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
  position: relative;
  z-index: -1;
}
.c-bg-stripe::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url(../images/bg_stripe01.png);
  background-repeat: repeat;
  opacity: 0.15;
}
@media (min-width: 769px) {
  .c-bg-stripe {
    background-image: linear-gradient(180deg, #515151 30.12%, rgba(255, 255, 255, 0) 100%);
  }
}

.c-footer-copy {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.0455rem + 1.9394vw, 2.5rem);
  line-height: 120%;
  text-align: center;
  color: #515151;
  margin: 0;
}

.c-pagetop {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  bottom: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(180deg, #515151 0%, #000000 100%);
  transition: opacity 0.2s ease;
  z-index: 10;
}
.c-pagetop img {
  width: auto;
  max-height: 1.5rem;
}
@media (min-width: 769px) {
  .c-pagetop img {
    max-height: 100%;
  }
}
.c-pagetop:hover {
  opacity: 0.6;
}
@media (min-width: 769px) {
  .c-pagetop {
    width: 4.1875rem;
    height: 4.1875rem;
  }
}

.c-list--pdf {
  list-style: none;
}
.c-list--pdf li {
  padding-left: 2.25rem;
  position: relative;
  font-weight: 700;
  color: #515151;
}
.c-list--pdf li::before {
  content: "";
  background-color: transparent;
  border-radius: 0;
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/icon_pdf01--blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.5rem auto;
}

.c-heading {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.25;
  font-size: clamp(2.5rem, 1.2727272727rem + 3.4090909091vw, 4rem);
  color: #AAADB9;
}
.c-heading--xl {
  font-size: clamp(2.375rem, -0.1297709924rem + 10.6870229008vw, 5rem);
  line-height: 1;
}
@media (min-width: 769px) {
  .c-heading--xl {
    font-size: clamp(2.5rem, 0.8943370166rem + 6.8508287293vw, 6.375rem);
  }
}

.c-hr01,
hr {
  border: none;
  border-bottom: 1px solid #dedede;
  margin-block: 3rem;
}

.c-hr02 {
  height: 3px;
  border: none;
  background-image: url(../images/line_dashed02.svg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}

table {
  border-color: #fff;
  border-collapse: collapse;
  width: 100%;
  margin-block: 2rem;
}

table thead th {
  background-color: #447FE0;
  text-align: center;
  color: #fff;
  border: solid 2px #fff;
}

table thead th a {
  color: #fff;
}

table th, table td {
  border: solid 2px #fff;
  word-break: break-all;
  padding: 2px 10px;
}
@media (min-width: 769px) {
  table th, table td {
    padding: 1rem;
  }
}

td {
  background: rgba(68, 127, 224, 0.1);
  font-weight: 500;
  font-size: 0.875rem;
}
@media (min-width: 769px) {
  td {
    font-size: 1.125rem;
  }
}

th {
  background-color: #447FE0;
  font-size: 0.875rem;
}
@media (min-width: 769px) {
  th {
    font-size: 1.125rem;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
  border: 0;
}

.text-nowrap {
  white-space: nowrap !important;
}

a.window,
.window a {
  display: inline-block;
  padding-right: 2rem;
  background-image: url(../images/icon_external02--blue.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
}

a.doc,
.doc a {
  display: inline-block;
  padding-right: 2rem;
  background-image: url(../images/icon_doc01--blue.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 1.5rem auto;
}

a.excel,
.excel a {
  display: inline-block;
  padding-right: 2rem;
  background-image: url(../images/icon_excel01--blue.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 1.5rem auto;
}

a.pdf,
.pdf a {
  display: inline-block;
  padding-right: 2rem;
  background-image: url(../images/icon_pdf01--blue.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 1.5rem auto;
}

.c-panel {
  background-color: #efefef;
  padding: 1rem;
  border-radius: 0.375rem;
}
@media (min-width: 769px) {
  .c-panel {
    padding: 1.5rem;
    border-radius: 0.625rem;
  }
}
.c-panel > :first-child {
  margin-top: 0;
}
.c-panel--yellow {
  background-color: #FFF1AC;
  padding: 1rem;
  border-radius: 0.375rem;
}
@media (min-width: 769px) {
  .c-panel--yellow {
    padding: 1.5rem;
    border-radius: 0.625rem;
  }
}
.c-panel--yellow > :first-child {
  margin-top: 0;
}
.c-panel--blue {
  background-color: #DAF3F2;
  padding: 1rem;
  border-radius: 0.375rem;
}
@media (min-width: 769px) {
  .c-panel--blue {
    padding: 1.5rem;
    border-radius: 0.625rem;
  }
}
.c-panel--blue > :first-child {
  margin-top: 0;
}

:root {
  --acc-bg:#fff;
  --acc-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  --acc-radius-sp: 14px;
  --acc-radius-pc: 20px;
  --text: #515151;
  --muted:#6b7280;
  --panel:#F4F4F4;
}

/* 本体カード */
.c-accordion {
  background: var(--acc-bg);
  border-radius: var(--acc-radius-sp);
  box-shadow: var(--acc-shadow);
  overflow: hidden;
  /* summary行 */
  /* パネル（初期は閉） */
}
@media (min-width: 769px) {
  .c-accordion {
    border-radius: var(--acc-radius-pc);
  }
}
.c-accordion__summary {
  display: block;
  position: relative;
  padding: 1.25rem 3.375rem 1.25rem 1.25rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 0.875rem;
}
@media (min-width: 769px) {
  .c-accordion__summary {
    font-size: 1.125rem;
    padding: 1.875rem 4.25rem 1.875rem 1.875rem;
  }
}
.c-accordion__summary::-webkit-details-marker {
  display: none;
}
.c-accordion__summary:focus {
  outline: none;
}
.c-accordion__summary:focus-visible {
  box-shadow: 0 0 0 3px rgba(71, 125, 230, 0.35) inset;
  border-radius: 8px;
}
.c-accordion__summary::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 9px;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/icon_arrow04.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
@media (min-width: 769px) {
  .c-accordion__summary::after {
    right: 1.875rem;
  }
}
.c-accordion__summary .c-date {
  display: block;
  margin-bottom: 0.4375rem;
}
.c-accordion[open] .c-accordion__summary::after {
  transform: translateY(-50%) scale(1, -1);
}
.c-accordion__body {
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0 20px;
  transition: height 0.34s ease, opacity 0.24s ease, padding 0.34s ease;
}
@media (min-width: 769px) {
  .c-accordion__body {
    padding: 0 30px;
  }
}
.c-accordion__inner {
  position: relative;
  background: var(--panel);
  border-radius: 0.625rem;
  padding: 0.375rem 1.25rem;
  margin: 0 0 14px;
  line-height: 1.9;
  color: var(--text);
}
@media (min-width: 769px) {
  .c-accordion__inner {
    margin: 0 0 24px;
    border-radius: 0.9375rem;
    padding: 0.625rem 1.875rem;
  }
}
.c-accordion__inner p {
  font-size: 0.875rem;
}
@media (min-width: 769px) {
  .c-accordion__inner p {
    font-size: 1.125rem;
  }
}
.c-accordion.is-open .c-accordion__body {
  opacity: 1;
  padding: 0 20px 6px;
}
@media (min-width: 769px) {
  .c-accordion.is-open .c-accordion__body {
    opacity: 1;
    padding: 0 30px 12px;
  }
}
.c-accordion__icon {
  position: absolute;
  aspect-ratio: 1/1;
  display: flex;
  align-items: top;
  justify-content: center;
  flex-shrink: 0;
  width: 1.875rem;
  height: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 100%;
  line-height: 1;
  left: 1rem;
  top: 1rem;
}
@media (min-width: 769px) {
  .c-accordion__icon {
    width: 3.125rem;
    font-size: 1.875rem;
    left: 1.875rem;
    top: 1.125rem;
  }
}
.c-accordion__icon--q {
  background-color: #515151;
  color: #fff;
  padding-top: 0.25rem;
}
@media (min-width: 769px) {
  .c-accordion__icon--q {
    padding-top: 0.5rem;
  }
}
.c-accordion__icon--a {
  border: solid 2px #515151;
  color: #515151;
  padding-top: 0.125rem;
}
@media (min-width: 769px) {
  .c-accordion__icon--a {
    border: solid 3px #515151;
    padding-top: 0.3125rem;
  }
}

.c-accordion .c-date {
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
  margin-right: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .c-accordion__summary::after,
  .c-accordion__body {
    transition: none;
  }
}
.c-accordion--qa .c-accordion__summary {
  padding-left: 60px;
}
@media (min-width: 769px) {
  .c-accordion--qa .c-accordion__summary {
    padding-left: 100px;
  }
}
.c-accordion--qa .c-accordion__inner {
  padding-left: 60px;
}
@media (min-width: 769px) {
  .c-accordion--qa .c-accordion__inner {
    padding-left: 100px;
  }
}

.p-header {
  width: 100%;
}
.p-header__inner {
  padding-top: 3.625rem;
}
.p-header__logo {
  display: block;
  width: 110px;
  height: 65px;
  background-image: url(../images/img_logo01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}
.p-header__logo a {
  display: block;
  width: 110px;
  height: 65px;
}
.p-header__nav {
  margin-top: 0.9375rem;
  border-top: 1px solid #DBDBDB;
  padding-top: 0.5rem;
  display: none;
}
@media (min-width: 769px) {
  .p-header__nav {
    display: block;
  }
}
.p-header__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-header__nav li {
  margin: 0;
}
.p-header__nav a {
  display: block;
  padding: 1rem 0.5rem;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
  transition: color 0.2s ease;
  font-weight: 700;
  font-style: Bold;
  font-size: 1rem;
  line-height: 1;
}
.p-header__nav a span {
  display: inline-block;
  letter-spacing: -0.5em;
}
.p-header__nav a:hover {
  color: #515151;
  text-decoration: underline;
}
.p-header.is-sticky {
  display: none;
}
@media (min-width: 769px) {
  .p-header.is-sticky {
    display: block;
  }
}
.p-header.is-sticky .p-header__logo {
  transition: opacity 0.2s ease;
  margin: 0;
  width: min(11vw, 6.875rem);
}
.p-header.is-sticky .p-header__logo:hover {
  opacity: 0.6;
}
.p-header.is-sticky .p-header__logo a {
  display: block;
  width: min(11vw, 6.875rem);
  height: 100%;
}
.p-header.is-sticky .p-header__inner {
  padding-block: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0 min(4vw, 2.5rem);
  height: 5.3125rem;
}
@media (min-width: 769px) {
  .p-header.is-sticky .p-header__inner {
    padding: 0 1rem;
  }
}
.p-header.is-sticky .p-header__nav {
  flex: 1;
  border: none;
  margin: 0;
  padding: 0;
}
.p-header.is-sticky .p-header__nav ul {
  gap: 0 0.75rem;
}
@media (min-width: 1024px) {
  .p-header.is-sticky .p-header__nav ul {
    gap: 0 1.25rem;
  }
}
.p-header.is-sticky .p-header__nav a {
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
}
@media (min-width: 769px) {
  .p-header__burger {
    display: none;
  }
}

.p-footer {
  background: linear-gradient(0deg, #515151 0%, #3C3C3C 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.875rem;
  padding: 4rem;
}
.p-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.p-footer__links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.p-footer__links a:hover {
  opacity: 0.5;
  text-decoration: underline;
}
.p-footer__logo {
  display: block;
  width: 110px;
  height: 65px;
  background-image: url(../images/img_logo01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}
.p-footer__copy {
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  color: #FFFFFF;
}

.p-gnav-sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  z-index: 90;
  background: #000;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 769px) {
  .p-gnav-sp {
    display: none;
  }
}
.p-gnav-sp.is-active {
  opacity: 1;
  visibility: visible;
}
.p-gnav-sp__content {
  padding-top: 80px;
  padding-bottom: 20px;
}
.p-gnav-sp__list {
  list-style: none;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.09em;
  line-height: 2.1333333333;
  color: #fff;
  padding: 0;
  margin: 0;
}
.p-gnav-sp__list li {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-gnav-sp__list li a {
  display: block;
  padding: 0.5rem 2rem;
}
.p-gnav-sp__list li a.is-external::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 12px;
  height: 12px;
  background-image: url(../images/ico-external01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-gnav-sp__sns {
  flex-direction: row;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease 0.8s;
  gap: 1.5rem;
  display: flex;
}
@media (min-width: 769px) {
  .p-gnav-sp__sns {
    display: none;
  }
}

.p-gnav-sp.is-active li {
  transform: translateY(0);
  opacity: 1;
}

.p-gnav-sp.is-active .p-gnav-sp__sns {
  opacity: 1;
}

/* 遅延アニメーション */
.p-gnav-sp.is-active li:nth-child(1) {
  transition-delay: 0.1s;
}

.p-gnav-sp.is-active li:nth-child(2) {
  transition-delay: 0.2s;
}

.p-gnav-sp.is-active li:nth-child(3) {
  transition-delay: 0.3s;
}

.p-gnav-sp.is-active li:nth-child(4) {
  transition-delay: 0.4s;
}

.p-gnav-sp.is-active li:nth-child(5) {
  transition-delay: 0.5s;
}

.p-gnav-sp.is-active li:nth-child(6) {
  transition-delay: 0.6s;
}

.p-gnav-sp.is-active li:nth-child(7) {
  transition-delay: 0.7s;
}

.p-gnav-sp.is-active li:nth-child(8) {
  transition-delay: 0.8s;
}

.p-gnav-sp.is-active li:nth-child(9) {
  transition-delay: 0.9s;
}

.p-gnav-sp.is-active li:nth-child(10) {
  transition-delay: 1s;
}

body.menu-open {
  overflow: hidden;
}

.p-hero {
  position: relative;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2509803922);
  z-index: 100;
}
.p-hero__catch {
  margin: 0;
}
.p-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  height: 80svh;
}
@media (min-width: 769px) {
  .p-hero__inner {
    justify-content: flex-start;
    padding-top: 15.3125rem;
    min-height: 720px;
  }
}
.p-hero__bg {
  z-index: 1;
  position: absolute;
  inset: 0;
}
.p-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.p-hero__copy.is-visible .p-hero__catch span {
  opacity: 1;
  transform: translateY(0);
}
.p-hero__copy.is-visible .p-hero__text {
  opacity: 1;
  transform: translateY(0);
}
.p-hero__catch {
  margin: 0;
  line-height: 0;
  font-weight: 700;
  font-size: clamp(3.75rem, 2.8695rem + 3.7569vw, 5.875rem);
  line-height: 1.1063829787;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.75);
}
.p-hero__catch span {
  display: block;
  opacity: 0;
  transform: translateY(5%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.p-hero__catch span:nth-of-type(2) {
  transition-delay: 0.1s;
}
.p-hero__catch span:nth-of-type(3) {
  transition-delay: 0.2s;
}
.p-hero__text {
  opacity: 0;
  transform: translateY(5%);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
  margin: 2.5rem 0 0;
  font-weight: 700;
  font-size: clamp(2.125rem, 1.3481rem + 3.3149vw, 4rem);
  line-height: 0.75;
  color: #fff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.75);
}

.p-awards__intro {
  margin-block: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #D5D5D5;
}
@media (min-width: 769px) {
  .p-awards__intro {
    margin-block: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.p-awards__title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
.p-awards__badges {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (min-width: 769px) {
  .p-awards__badges {
    margin: 0;
    gap: 6.25vw;
  }
}

.p-storage {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.p-storage__hero {
  padding-right: 1rem;
}
@media (min-width: 769px) {
  .p-storage__hero {
    padding-right: 2.0625rem;
  }
}
.p-storage__copy-en {
  width: auto;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  position: relative;
  z-index: 2;
  text-align: right;
  margin: 0 -8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: right;
  font-weight: 700;
  font-size: clamp(2.375rem, 0.2514rem + 9.0608vw, 7.5rem);
  color: #FFFFFF;
  text-shadow: -1px -1px 0 #AAADB9, 0 -1px 0 #AAADB9, 1px -1px 0 #AAADB9, -1px 0 0 #AAADB9, 1px 0 0 #AAADB9, -1px 1px 0 #AAADB9, 0 1px 0 #AAADB9, 1px 1px 0 #AAADB9, 0px 0px 8px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translate(0, -30%);
  transition: all 0.3s ease;
}
.p-storage__copy-en.is-visible {
  opacity: 1;
  transform: translate(0, -40%);
}
.p-storage__lead {
  font-size: clamp(0.9375rem, 0.7044198895rem + 0.9944751381vw, 1.5rem);
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  .p-storage__lead {
    margin-bottom: 4rem;
  }
}
.p-storage__features.is-visible .p-storage__item {
  opacity: 1;
  transform: translateY(0);
}
.p-storage__features.is-visible .p-storage__item:nth-of-type(1) {
  transition-delay: 0s;
}
.p-storage__features.is-visible .p-storage__item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.p-storage__features.is-visible .p-storage__item:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-storage__features.is-visible .p-storage__item:nth-of-type(4) {
  transition-delay: 0.6s;
}
.p-storage__features.is-visible .p-storage__item:nth-of-type(5) {
  transition-delay: 0.8s;
}
.p-storage__features.is-visible .p-storage__item:nth-of-type(6) {
  transition-delay: 1s;
}
.p-storage__features.is-visible .p-storage__item:nth-of-type(7) {
  transition-delay: 1.2s;
}
.p-storage__features.is-visible .p-storage__item:nth-of-type(8) {
  transition-delay: 1.4s;
}
.p-storage__features.is-visible .p-storage__item:nth-of-type(9) {
  transition-delay: 1.6s;
}
.p-storage__features.is-visible .p-storage__item:nth-of-type(10) {
  transition-delay: 1.8s;
}
.p-storage__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 769px) {
  .p-storage__grid {
    gap: 1.75rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-storage__item {
  background: #D9D9D9;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 1/1;
  opacity: 0;
  transform: translateY(5%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-comfort {
  padding-bottom: 2.5rem;
  position: relative;
}
@media (min-width: 769px) {
  .p-comfort {
    padding-bottom: 9.8125rem;
  }
}
.p-comfort__title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.4;
  color: #AAADB9;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #AAADB9;
  padding-bottom: 0.625rem;
}
.p-comfort__reasons {
  position: relative;
  margin-top: 2.625rem;
}
@media (min-width: 769px) {
  .p-comfort__reasons {
    margin-top: 4rem;
  }
}
.p-comfort__reasons::before {
  content: "";
  position: absolute;
  display: block;
  height: calc(100% - 4.6875rem);
  width: 90%;
  max-width: 720px;
  background: #F6F5F5;
  border-radius: 1.5rem;
  left: 50%;
  top: 4.6875rem;
  transform: translateX(-50%);
}
@media (min-width: 769px) {
  .p-comfort__reasons::before {
    height: calc(100% - 4.6875rem);
    width: 64.2857142857%;
    max-width: 720px;
  }
}
.p-comfort__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.p-comfort__item + .p-comfort__item {
  margin-top: 3rem;
}
@media (min-width: 769px) {
  .p-comfort__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .p-comfort__item + .p-comfort__item {
    margin-top: 4.75rem;
  }
}
.p-comfort__item.is-visible .p-comfort__body {
  opacity: 1;
  transform: translateX(0);
}
.p-comfort__item.is-visible .p-comfort__media {
  opacity: 1;
  transform: translateX(0);
}
.p-comfort__item--weight .p-comfort__body {
  transform: translateX(-5%);
}
.p-comfort__item--weight .p-comfort__media {
  transform: translateX(5%);
}
.p-comfort__item--smart .p-comfort__body {
  transform: translateX(5%);
}
.p-comfort__item--smart .p-comfort__media {
  transform: translateX(-5%);
}
@media (min-width: 769px) {
  .p-comfort__item--smart {
    flex-direction: row-reverse;
  }
}
.p-comfort__item--clean .p-comfort__body {
  transform: translateX(-5%);
}
.p-comfort__item--clean .p-comfort__media {
  transform: translateX(5%);
}
.p-comfort__item--clean .p-comfort__catch {
  letter-spacing: -0.05em;
}
@media (min-width: 769px) {
  .p-comfort__item--clean .p-comfort__catch {
    margin-right: -100px;
  }
}
.p-comfort__item--capacity .p-comfort__body {
  transform: translateX(5%);
}
.p-comfort__item--capacity .p-comfort__media {
  transform: translateX(-5%);
}
@media (min-width: 769px) {
  .p-comfort__item--capacity {
    flex-direction: row-reverse;
  }
}
.p-comfort__body {
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
}
@media (min-width: 769px) {
  .p-comfort__body {
    width: 46.4285714286%;
  }
}
.p-comfort__num, .p-comfort__label-en {
  margin: 0;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 9rem;
  color: #fff;
  line-height: 1;
  text-shadow: -1px -1px 0 #AAADB9, 0 -1px 0 #AAADB9, 1px -1px 0 #AAADB9, -1px 0 0 #AAADB9, 1px 0 0 #AAADB9, -1px 1px 0 #AAADB9, 0 1px 0 #AAADB9, 1px 1px 0 #AAADB9, 0px 0px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.03em;
  font-size: clamp(6.25rem, 3.6259541985rem + 11.1959287532vw, 9rem);
}
@media (min-width: 769px) {
  .p-comfort__num, .p-comfort__label-en {
    font-size: clamp(6.625rem, 1.4431818182rem + 10.7954545455vw, 9rem);
  }
}
.p-comfort__catch {
  position: relative;
  margin: 0;
  font-size: clamp(2.625rem, 1.3129770992rem + 5.5979643766vw, 4rem);
}
@media (min-width: 769px) {
  .p-comfort__catch {
    font-size: clamp(2.625rem, -0.375rem + 6.25vw, 4rem);
  }
}
.p-comfort__catch span {
  letter-spacing: -0.5em;
}
.p-comfort__text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #515151;
  font-weight: 700;
  margin-top: 1rem;
}
@media (min-width: 769px) {
  .p-comfort__text {
    margin-top: 1.5rem;
    font-size: 1rem;
    max-width: 433px;
  }
}
.p-comfort__media {
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 4/3;
  padding: 1px;
}
@media (min-width: 769px) {
  .p-comfort__media {
    width: 46.4285714286%;
  }
}
.p-comfort__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #fff;
  pointer-events: none;
  border-radius: 1.5rem;
}
.p-comfort__media img {
  border-radius: 1.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 4/3;
}
@media (min-width: 769px) {
  .p-comfort__media img {
    max-width: 520px;
  }
}
.p-comfort__illust {
  position: absolute;
}
.p-comfort__illust--bag {
  right: max(-4.4642857143vw, -25px);
  top: max(-12.8571428571vw, -72px);
  width: min(27.3214285714vw, 153px);
  height: min(42.1428571429vw, 236px);
}
@media (min-width: 769px) {
  .p-comfort__illust--bag {
    right: max(-2.2321428571vw, -25px);
    top: max(-6.4285714286vw, -72px);
    width: min(13.6607142857vw, 153px);
    height: min(21.0714285714vw, 236px);
  }
}
.p-comfort__illust--smart {
  right: 0;
  top: 0;
  width: min(15vw, 84px);
  height: min(15vw, 84px);
}
@media (min-width: 769px) {
  .p-comfort__illust--smart {
    right: 0;
    top: 0;
    width: min(7.5vw, 84px);
    height: min(7.5vw, 84px);
  }
}
.p-comfort__illust--clean {
  right: min(15.3571428571vw, 86px);
  top: 0;
  width: min(11.4285714286vw, 64px);
  height: min(11.4285714286vw, 64px);
}
@media (min-width: 769px) {
  .p-comfort__illust--clean {
    right: min(7.6785714286vw, 86px);
    top: 0;
    width: min(5.7142857143vw, 64px);
    height: min(5.7142857143vw, 64px);
  }
}
.p-comfort__illust--capacity {
  right: -20%;
  top: min(20.1785714286vw, 226px);
}
@media (min-width: 769px) {
  .p-comfort__illust--capacity {
    width: min(30.625vw, 343px);
    height: min(26.9642857143vw, 302px);
  }
}

.p-movie__body {
  padding: 2rem 0;
  background: linear-gradient(180deg, #515151 0%, #3C3C3C 100%);
}
@media (min-width: 769px) {
  .p-movie__body {
    padding: 3.75rem 0 2.8125rem;
  }
}
.p-movie .c-heading {
  margin-top: 0;
  color: #fff;
}

.p-functions {
  padding-top: 40px;
  position: relative;
  z-index: 3;
}
@media (min-width: 769px) {
  .p-functions {
    padding-top: 74px;
  }
}
.p-functions__title {
  margin: 0;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 2.9281767956rem + 8.8397790055vw, 10rem);
  line-height: 1;
  color: #FFFFFF;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.p-functions__title span {
  display: block;
  position: relative;
  width: 100%;
  font-size: clamp(1.25rem, 0.7320441989rem + 2.2099447514vw, 2.5rem);
  line-height: 1;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}
.p-functions__title span::before, .p-functions__title span::after {
  content: "";
  position: absolute;
  height: 1px;
  width: calc(50% - min(13.8888888889vw, 126px));
  background: #fff;
  top: 50%;
  display: block;
}
.p-functions__title span::before {
  left: 0;
}
.p-functions__title span::after {
  right: 0;
}
.p-functions__list {
  counter-reset: number;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  gap: 2rem 1rem;
}
@media (min-width: 769px) {
  .p-functions__list {
    margin: 2.5rem 0 0;
    gap: 3.125rem 1.625rem;
  }
}
.p-functions__list.is-visible .p-functions__item {
  opacity: 1;
  transform: translateY(0);
}
.p-functions__list.is-visible .p-functions__item:nth-of-type(1) {
  transition-delay: 0s;
}
.p-functions__list.is-visible .p-functions__item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.p-functions__list.is-visible .p-functions__item:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-functions__list.is-visible .p-functions__item:nth-of-type(4) {
  transition-delay: 0.6s;
}
.p-functions__list.is-visible .p-functions__item:nth-of-type(5) {
  transition-delay: 0.8s;
}
.p-functions__list.is-visible .p-functions__item:nth-of-type(6) {
  transition-delay: 1s;
}
.p-functions__list.is-visible .p-functions__item:nth-of-type(7) {
  transition-delay: 1.2s;
}
.p-functions__list.is-visible .p-functions__item:nth-of-type(8) {
  transition-delay: 1.4s;
}
.p-functions__list.is-visible .p-functions__item:nth-of-type(9) {
  transition-delay: 1.6s;
}
.p-functions__list.is-visible .p-functions__item:nth-of-type(10) {
  transition-delay: 1.8s;
}
.p-functions__item {
  color: #fff;
  opacity: 0;
  transform: translateY(5%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
}
.p-functions__item .c-card__title {
  color: #fff;
}
.p-functions__item::before {
  counter-increment: number;
  content: counter(number);
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #AAADB9;
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}
.p-functions__item .c-card__text {
  margin-top: 1rem;
}

.p-pockets {
  margin-top: 3rem;
}
@media (min-width: 769px) {
  .p-pockets {
    margin-top: 4rem;
  }
}
.p-pockets__inner {
  background: #FFFFFF;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 1rem 1rem 0 0;
}
.p-pockets__head {
  position: relative;
  padding: 1.5rem;
}
@media (min-width: 769px) {
  .p-pockets__head {
    padding: 2.5rem;
  }
}
.p-pockets__head .c-heading {
  margin: 0;
  font-size: clamp(1.75rem, 0.817679558rem + 3.9779005525vw, 4rem);
}
.p-pockets__head-text {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0%;
}
@media (min-width: 769px) {
  .p-pockets__head-text {
    font-size: 1rem;
  }
}
.p-pockets__label {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(3.75rem, 1.1602209945rem + 11.0497237569vw, 10rem);
  letter-spacing: -0.1em;
  text-align: center;
  color: #515151;
  display: flex;
  justify-content: center;
  flex-direction: column;
  line-height: 0.9;
  text-align: center;
}
@media (min-width: 769px) {
  .p-pockets__label {
    right: 1.6875rem;
    top: 2.25rem;
  }
}
.p-pockets__label span {
  font-size: clamp(1.125rem, 0.5552486188rem + 2.4309392265vw, 2.5rem);
  letter-spacing: 0;
  display: block;
  text-align: center;
}
.p-pockets__image img {
  vertical-align: bottom;
}
.p-pockets__gallery.is-visible figure {
  opacity: 1;
}
.p-pockets__gallery.is-visible figure:nth-of-type(1) {
  transform: translateX(0);
}
.p-pockets__gallery.is-visible figure:nth-of-type(2) {
  transform: translateX(0);
}
.p-pockets__gallery figure {
  margin: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
}
.p-pockets__gallery figure:nth-of-type(1) {
  transform: translateX(-5%);
}
@media (min-width: 769px) {
  .p-pockets__gallery figure:nth-of-type(1) img {
    width: min(52.4305555556vw, 604px);
    height: auto;
  }
}
.p-pockets__gallery figure:nth-of-type(2) {
  text-align: right;
  transform: translateX(5%);
}
@media (min-width: 769px) {
  .p-pockets__gallery figure:nth-of-type(2) {
    margin-top: max(-29.5138888889vw, -340px);
  }
}
@media (min-width: 769px) {
  .p-pockets__gallery figure:nth-of-type(2) img {
    width: min(54.0798611111vw, 623px);
    height: auto;
  }
}
.p-pockets__image-wrap {
  position: relative;
}
.p-pockets__summary {
  border-radius: 1rem;
  padding: 1rem;
  background: #FFFFFF;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.25);
  width: 70%;
  margin: -1.5rem auto 0;
}
@media (min-width: 576px) {
  .p-pockets__summary {
    width: 186px;
    display: block;
    position: absolute;
    top: -1.5rem;
    left: 1.5rem;
    margin: 0;
    padding: 1rem 0.5rem;
  }
}
@media (min-width: 769px) {
  .p-pockets__summary {
    display: block;
    position: absolute;
    width: 213px;
    top: -1.5rem;
    left: 1.5rem;
    margin: 0;
    padding: 1rem;
  }
}
.p-pockets__summary figure {
  margin-top: 0.6875rem;
  text-align: center;
  margin: 0;
}
@media (min-width: 769px) {
  .p-pockets__summary figure {
    margin-top: 0.6875rem;
  }
}
.p-pockets__summary img {
  width: 6.25rem;
  height: auto;
}
@media (min-width: 769px) {
  .p-pockets__summary img {
    width: 9rem;
  }
}
.p-pockets__caption {
  text-align: left;
  margin: 1.375rem 0 0;
  padding: 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  color: #515151;
}
@media (min-width: 769px) {
  .p-pockets__caption {
    margin-top: 1.375rem;
  }
}
.p-pockets__data {
  margin: 0.8125rem 0 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  color: #515151;
}
@media (min-width: 576px) {
  .p-pockets__data {
    font-size: 0.6875rem;
  }
}
@media (min-width: 769px) {
  .p-pockets__data {
    font-size: 0.75rem;
  }
}
.p-pockets__summary-title {
  margin: 1.4375rem 0 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  color: #515151;
}

.p-lineup__list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem 1.5rem;
}
@media (min-width: 769px) {
  .p-lineup__list {
    gap: min(4.6006944444vw, 53px);
  }
}
.p-lineup__list.is-visible .p-lineup__item {
  opacity: 1;
  transform: translateY(0);
}
.p-lineup__list.is-visible .p-lineup__item:nth-of-type(1) {
  transition-delay: 0s;
}
.p-lineup__list.is-visible .p-lineup__item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.p-lineup__list.is-visible .p-lineup__item:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-lineup__list.is-visible .p-lineup__item:nth-of-type(4) {
  transition-delay: 0.6s;
}
.p-lineup__list.is-visible .p-lineup__item:nth-of-type(5) {
  transition-delay: 0.8s;
}
.p-lineup__list.is-visible .p-lineup__item:nth-of-type(6) {
  transition-delay: 1s;
}
.p-lineup__list.is-visible .p-lineup__item:nth-of-type(7) {
  transition-delay: 1.2s;
}
.p-lineup__list.is-visible .p-lineup__item:nth-of-type(8) {
  transition-delay: 1.4s;
}
.p-lineup__list.is-visible .p-lineup__item:nth-of-type(9) {
  transition-delay: 1.6s;
}
.p-lineup__list.is-visible .p-lineup__item:nth-of-type(10) {
  transition-delay: 1.8s;
}
.p-lineup__item {
  opacity: 0;
  transform: translateY(5%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-pricing__title {
  margin: 0;
  font-weight: 700;
  text-align: center;
}
.p-pricing__title span {
  display: inline-block;
}
.p-pricing__title small {
  display: inline-block;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(1.25rem, 0.7320441989rem + 2.2099447514vw, 2.5rem);
  transform: translateY(max(-0.6076388889vw, -7px));
}
.p-pricing__num {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: clamp(4rem, 2.5497237569rem + 6.1878453039vw, 7.5rem);
}
.p-pricing__unit {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: clamp(2.375rem, 1.4944751381rem + 3.7569060773vw, 4.5rem);
  transform: translateY(max(-0.8680555556vw, -10px));
}
.p-pricing__lead {
  margin-top: 0;
  font-weight: 700;
  font-size: clamp(1.125rem, 0.8142265193rem + 1.3259668508vw, 1.875rem);
}
.p-pricing__badges {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (min-width: 769px) {
  .p-pricing__badges {
    margin: 0;
    gap: 6.25vw;
  }
}
.p-pricing .c-badge-card__title {
  margin-top: 0.25rem;
}
.p-pricing .c-badge-card__unit {
  margin-top: 0.25rem;
}

.p-points__list {
  list-style: none;
  padding: 0;
  max-width: 977px;
  margin: 0 auto;
}
.p-points__list.is-visible .p-points__item {
  opacity: 1;
  transform: translateX(0);
}
.p-points__list.is-visible .p-points__item:nth-of-type(1) {
  transition-delay: 0s;
}
.p-points__list.is-visible .p-points__item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.p-points__list.is-visible .p-points__item:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-points__list.is-visible .p-points__item:nth-of-type(4) {
  transition-delay: 0.6s;
}
.p-points__list.is-visible .p-points__item:nth-of-type(5) {
  transition-delay: 0.8s;
}
.p-points__list.is-visible .p-points__item:nth-of-type(6) {
  transition-delay: 1s;
}
.p-points__list.is-visible .p-points__item:nth-of-type(7) {
  transition-delay: 1.2s;
}
.p-points__list.is-visible .p-points__item:nth-of-type(8) {
  transition-delay: 1.4s;
}
.p-points__list.is-visible .p-points__item:nth-of-type(9) {
  transition-delay: 1.6s;
}
.p-points__list.is-visible .p-points__item:nth-of-type(10) {
  transition-delay: 1.8s;
}
.p-points__item {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  gap: 1rem;
  flex: 1 1 auto;
  opacity: 0;
  transform: translateX(5%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (min-width: 769px) {
  .p-points__item {
    margin: 2rem 0;
    gap: 1.8125rem;
  }
}
.p-points__badge {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: clamp(80px, 9.375vw, 108px);
  height: auto;
  border-radius: 50%;
  background-color: #AAADB9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.p-points__badge-label {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-top: 0.125rem;
  font-size: clamp(0.875rem, 0.7196132597rem + 0.6629834254vw, 1.25rem);
}
.p-points__badge-num {
  color: #fff;
  font-weight: 600;
  font-size: 2.5rem;
  font-size: clamp(2.25rem, 1.9392265193rem + 1.3259668508vw, 3rem);
  line-height: 1;
}
.p-points__text {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: #515151;
  margin: 0;
  font-weight: 500;
  font-size: clamp(1.875rem, 1.2016574586rem + 2.8729281768vw, 3.5rem);
  letter-spacing: 0%;
}

.p-faq {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: #EBEBEB;
  /* パネル（初期は閉） */
}
@media (min-width: 769px) {
  .p-faq {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-faq__heading {
  display: flex;
  margin: 0 auto 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-faq__label {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: #515151;
  margin: 0;
  padding: 0;
}
.p-faq__title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: #515151;
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid #515151;
}
.p-faq__list {
  margin-top: 2rem;
}
@media (min-width: 769px) {
  .p-faq__list {
    margin-top: 3rem;
  }
}
.p-faq__item {
  overflow: hidden;
  /* summary行 */
}
.p-faq__item + .p-faq__item {
  margin-top: 1rem;
}
@media (min-width: 769px) {
  .p-faq__item + .p-faq__item {
    margin-top: 1.5rem;
  }
}
.p-faq__question {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.9375rem 3rem 0.875rem 4rem;
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.25rem;
  background-color: #dbdbdb;
  font-weight: 700;
  line-height: 1.2;
  min-height: 3.75rem;
}
@media (min-width: 769px) {
  .p-faq__question {
    min-height: 5rem;
    font-size: 1.75rem;
    padding: 0.9375rem 4.625rem 0.875rem 6.0625rem;
    color: #515151;
  }
}
.p-faq__question::-webkit-details-marker {
  display: none;
}
.p-faq__question:focus {
  outline: none;
}
.p-faq__question::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/ico_arrow02.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
@media (min-width: 769px) {
  .p-faq__question::after {
    width: 20px;
    height: 14px;
    right: 1.25rem;
  }
}
.p-faq .p-faq__item[open] .p-faq__question::after {
  transform: translateY(-50%) scale(1, -1);
}
.p-faq__answer {
  overflow: hidden;
  position: relative;
  height: 0;
  opacity: 0;
  transition: height 0.34s ease, opacity 0.24s ease;
  background-color: #fff;
}
.p-faq__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 4rem;
  padding: 0.5rem 1.5rem 0.5rem 3.375rem;
}
@media (min-width: 769px) {
  .p-faq__inner {
    margin: 0;
    padding: 0.25rem 1.5rem 0.625rem 6.25rem;
    min-height: 5.5rem;
  }
}
.p-faq__inner p {
  font-size: 1.125rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
  color: #515151;
}
@media (min-width: 769px) {
  .p-faq__inner p {
    font-size: 1.25rem;
  }
}
.p-faq__item[open] .p-faq__answer {
  opacity: 1;
  padding: 0 20px 6px;
}
@media (min-width: 769px) {
  .p-faq__item[open] .p-faq__answer {
    opacity: 1;
    padding: 0 30px 12px;
  }
}
.p-faq__icon {
  position: absolute;
  display: flex;
  align-items: top;
  justify-content: center;
  flex-shrink: 0;
  height: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  left: 0.4375rem;
  top: 0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 769px) {
  .p-faq__icon {
    left: 1.3125rem;
    top: 1rem;
  }
}
.p-faq__icon--q {
  background-image: url(../images/ico_q01.svg);
  width: 2.75rem;
  height: 3rem;
}
@media (min-width: 769px) {
  .p-faq__icon--q {
    width: 2.75rem;
    height: 3rem;
  }
}
.p-faq__icon--a {
  background-image: url(../images/ico_a01.svg);
  width: 2.5625rem;
  height: 2.6875rem;
}
@media (min-width: 769px) {
  .p-faq__icon--a {
    width: 2.5625rem;
    height: 2.6875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-faq__question::after,
  .p-faq__answer {
    transition: none;
  }
}
.p-shop-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.125rem 1rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 769px) {
  .p-shop-links {
    gap: 1.875rem;
    padding-bottom: 5rem;
  }
}
.p-shop-links__title {
  margin: 0 0 0.875rem;
  font-weight: 500;
  font-size: 1.5rem;
  color: #515151;
}
.p-shop-links__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 293px;
}
.p-shop-links__item a + a {
  margin-top: 1.5rem;
}
@media (min-width: 769px) {
  .p-shop-links__item a + a {
    margin-top: 1.875rem;
  }
}
.p-shop-links .c-btn {
  min-width: 0;
  width: 100%;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.875;
  border-radius: 1rem;
  padding: 0;
  max-width: 293px;
}
@media (min-width: 769px) {
  .p-shop-links .c-btn {
    padding: 0;
  }
}

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

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

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

.u-text-justify {
  text-align: justify !important;
}

.u-text-start {
  text-align: start !important;
}

.u-text-end {
  text-align: end !important;
}

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

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

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

.u-text-xs-justify {
  text-align: justify !important;
}

.u-text-xs-start {
  text-align: start !important;
}

.u-text-xs-end {
  text-align: end !important;
}

@media (min-width: 576px) {
  .u-text-sm-left {
    text-align: left !important;
  }
  .u-text-sm-center {
    text-align: center !important;
  }
  .u-text-sm-right {
    text-align: right !important;
  }
  .u-text-sm-justify {
    text-align: justify !important;
  }
  .u-text-sm-start {
    text-align: start !important;
  }
  .u-text-sm-end {
    text-align: end !important;
  }
}
@media (min-width: 769px) {
  .u-text-md-left {
    text-align: left !important;
  }
  .u-text-md-center {
    text-align: center !important;
  }
  .u-text-md-right {
    text-align: right !important;
  }
  .u-text-md-justify {
    text-align: justify !important;
  }
  .u-text-md-start {
    text-align: start !important;
  }
  .u-text-md-end {
    text-align: end !important;
  }
}
@media (min-width: 1024px) {
  .u-text-lg-left {
    text-align: left !important;
  }
  .u-text-lg-center {
    text-align: center !important;
  }
  .u-text-lg-right {
    text-align: right !important;
  }
  .u-text-lg-justify {
    text-align: justify !important;
  }
  .u-text-lg-start {
    text-align: start !important;
  }
  .u-text-lg-end {
    text-align: end !important;
  }
}
@media (min-width: 1440px) {
  .u-text-xl-left {
    text-align: left !important;
  }
  .u-text-xl-center {
    text-align: center !important;
  }
  .u-text-xl-right {
    text-align: right !important;
  }
  .u-text-xl-justify {
    text-align: justify !important;
  }
  .u-text-xl-start {
    text-align: start !important;
  }
  .u-text-xl-end {
    text-align: end !important;
  }
}
@media (min-width: 1920px) {
  .u-text-xxl-left {
    text-align: left !important;
  }
  .u-text-xxl-center {
    text-align: center !important;
  }
  .u-text-xxl-right {
    text-align: right !important;
  }
  .u-text-xxl-justify {
    text-align: justify !important;
  }
  .u-text-xxl-start {
    text-align: start !important;
  }
  .u-text-xxl-end {
    text-align: end !important;
  }
}
.u-text-mobile-center {
  text-align: center !important;
}
@media (min-width: 769px) {
  .u-text-mobile-center {
    text-align: left !important;
  }
}

.u-text-mobile-left {
  text-align: left !important;
}
@media (min-width: 769px) {
  .u-text-mobile-left {
    text-align: center !important;
  }
}

@media (min-width: 576px) {
  .u-text-tablet-center {
    text-align: center !important;
  }
}

@media (min-width: 769px) {
  .u-text-desktop-right {
    text-align: right !important;
  }
}

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

.u-m-1 {
  margin: 0.25rem !important;
}

.u-m-2 {
  margin: 0.5rem !important;
}

.u-m-3 {
  margin: 1rem !important;
}

.u-m-4 {
  margin: 1.5rem !important;
}

.u-m-5 {
  margin: 2rem !important;
}

.u-m-6 {
  margin: 3rem !important;
}

.u-m-7 {
  margin: 4rem !important;
}

.u-m-8 {
  margin: 5rem !important;
}

.u-m-9 {
  margin: 6rem !important;
}

.u-mt-0 {
  margin-top: 0rem !important;
}

.u-mt-1 {
  margin-top: 0.25rem !important;
}

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

.u-mt-3 {
  margin-top: 1rem !important;
}

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

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

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

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

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

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

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

.u-mr-1 {
  margin-right: 0.25rem !important;
}

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

.u-mr-3 {
  margin-right: 1rem !important;
}

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

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

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

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

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

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

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

.u-mb-1 {
  margin-bottom: 0.25rem !important;
}

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

.u-mb-3 {
  margin-bottom: 1rem !important;
}

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

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

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

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

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

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

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

.u-ml-1 {
  margin-left: 0.25rem !important;
}

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

.u-ml-3 {
  margin-left: 1rem !important;
}

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

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

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

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

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

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

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

.u-mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.u-mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.u-mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.u-mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.u-mx-5 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.u-mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.u-mx-7 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.u-mx-8 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.u-mx-9 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

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

.u-my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.u-my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.u-my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.u-my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.u-my-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.u-my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.u-my-7 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.u-my-8 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.u-my-9 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

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

.u-p-1 {
  padding: 0.25rem !important;
}

.u-p-2 {
  padding: 0.5rem !important;
}

.u-p-3 {
  padding: 1rem !important;
}

.u-p-4 {
  padding: 1.5rem !important;
}

.u-p-5 {
  padding: 2rem !important;
}

.u-p-6 {
  padding: 3rem !important;
}

.u-p-7 {
  padding: 4rem !important;
}

.u-p-8 {
  padding: 5rem !important;
}

.u-p-9 {
  padding: 6rem !important;
}

.u-pt-0 {
  padding-top: 0rem !important;
}

.u-pt-1 {
  padding-top: 0.25rem !important;
}

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

.u-pt-3 {
  padding-top: 1rem !important;
}

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

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

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

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

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

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

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

.u-pr-1 {
  padding-right: 0.25rem !important;
}

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

.u-pr-3 {
  padding-right: 1rem !important;
}

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

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

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

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

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

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

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

.u-pb-1 {
  padding-bottom: 0.25rem !important;
}

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

.u-pb-3 {
  padding-bottom: 1rem !important;
}

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

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

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

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

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

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

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

.u-pl-1 {
  padding-left: 0.25rem !important;
}

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

.u-pl-3 {
  padding-left: 1rem !important;
}

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

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

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

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

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

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

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

.u-px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.u-px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.u-px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.u-px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.u-px-5 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.u-px-6 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.u-px-7 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.u-px-8 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.u-px-9 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

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

.u-py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.u-py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.u-py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.u-py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.u-py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.u-py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.u-py-7 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.u-py-8 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.u-py-9 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

@media (max-width: 768px) {
  .u-sp-m-0 {
    margin: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-1 {
    margin: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-2 {
    margin: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-3 {
    margin: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-4 {
    margin: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-5 {
    margin: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-6 {
    margin: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-7 {
    margin: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-8 {
    margin: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-9 {
    margin: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-0 {
    margin-top: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-1 {
    margin-top: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-2 {
    margin-top: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-3 {
    margin-top: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-4 {
    margin-top: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-5 {
    margin-top: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-6 {
    margin-top: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-7 {
    margin-top: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-8 {
    margin-top: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-9 {
    margin-top: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-0 {
    margin-right: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-1 {
    margin-right: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-2 {
    margin-right: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-3 {
    margin-right: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-4 {
    margin-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-5 {
    margin-right: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-6 {
    margin-right: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-7 {
    margin-right: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-8 {
    margin-right: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-9 {
    margin-right: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-0 {
    margin-bottom: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-1 {
    margin-bottom: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-2 {
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-3 {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-4 {
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-5 {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-6 {
    margin-bottom: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-7 {
    margin-bottom: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-8 {
    margin-bottom: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-9 {
    margin-bottom: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-0 {
    margin-left: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-1 {
    margin-left: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-2 {
    margin-left: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-3 {
    margin-left: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-4 {
    margin-left: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-5 {
    margin-left: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-6 {
    margin-left: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-7 {
    margin-left: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-8 {
    margin-left: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-9 {
    margin-left: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-8 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-9 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-8 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-9 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-0 {
    padding: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-1 {
    padding: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-2 {
    padding: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-3 {
    padding: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-4 {
    padding: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-5 {
    padding: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-6 {
    padding: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-7 {
    padding: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-8 {
    padding: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-9 {
    padding: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-0 {
    padding-top: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-1 {
    padding-top: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-2 {
    padding-top: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-3 {
    padding-top: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-4 {
    padding-top: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-5 {
    padding-top: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-6 {
    padding-top: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-7 {
    padding-top: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-8 {
    padding-top: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-9 {
    padding-top: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-0 {
    padding-right: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-1 {
    padding-right: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-2 {
    padding-right: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-3 {
    padding-right: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-4 {
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-5 {
    padding-right: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-6 {
    padding-right: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-7 {
    padding-right: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-8 {
    padding-right: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-9 {
    padding-right: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-0 {
    padding-bottom: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-1 {
    padding-bottom: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-2 {
    padding-bottom: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-3 {
    padding-bottom: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-4 {
    padding-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-5 {
    padding-bottom: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-6 {
    padding-bottom: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-7 {
    padding-bottom: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-8 {
    padding-bottom: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-9 {
    padding-bottom: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-0 {
    padding-left: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-1 {
    padding-left: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-2 {
    padding-left: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-3 {
    padding-left: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-4 {
    padding-left: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-5 {
    padding-left: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-6 {
    padding-left: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-7 {
    padding-left: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-8 {
    padding-left: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-9 {
    padding-left: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-8 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-9 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-8 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-9 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}

.u-pb-100 {
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .u-sp-pb-50 {
    padding-bottom: 50px;
  }
}

.u-mt0 {
  margin-top: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

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

.u-mr5 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

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

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

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

.u-ml5 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

/* =========================================================
  Utility: Scroll Reveal Animations
  .u-reveal
========================================================= */
/* utility/_animation.scss */
/* 初期状態：非表示。でも transition はまだ効かせない */
.u-reveal {
  opacity: 0;
  transform: translate(0, 0);
  will-change: opacity, transform;
}
.u-reveal[data-animate=up] {
  transform: translateY(30px);
}
.u-reveal[data-animate=down] {
  transform: translateY(-30px);
}
.u-reveal[data-animate=left] {
  transform: translateX(30px);
}
.u-reveal[data-animate=right] {
  transform: translateX(-30px);
}
.u-reveal[data-animate=fade] {
  transform: none;
}

/* 🔸 アニメーションを「有効化」する状態（body に .is-reveal-ready が付いたら） */
.is-reveal-ready .u-reveal {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* 表示状態 */
.is-reveal-ready .u-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}/*# sourceMappingURL=style.css.map */