/*! kiso.css v1.2.2 | MIT License | https://github.com/tak-dcxi/kiso.css */

/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes padding and border in the element's specified dimensions.
  * It is highly recommended to set box-sizing: border-box; by default, as it makes styling much easier, especially when specifying width: 100%;.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if font-family is not specified, a serif font is applied by default, so sans-serif is set as the default here. */
  font-family: sans-serif;

  /*
  * For accessibility, it is recommended to set the line-height to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;

  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;

  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;

  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;

  /* Wraps English words mid-word. Specifying anywhere also prevents content from overflowing in layouts like flex or grid. */
  overflow-wrap: anywhere;

  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;

  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the min-block-size to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;

  /* The margin specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for h1 elements within sectioning content.
  * This addresses DevTools warnings that appear when h1 elements nested within sectioning content lack font-size and margin properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The margin-block specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The <search> element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The margin-block specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The margin-inline specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the font-style is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The padding-inline-start specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;

  /*
  * In Safari, using list-style: none prevents screen readers from announcing lists.
  * list-style-type: "" is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display <dt> elements in bold, so font-weight: bolder; is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The margin-inline-start specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since text-spacing-trim can affect spacing in <pre> elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, space-all is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;

  /* Set to no-autospace as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so font-weight: bolder; is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the font-style is reset. */
  font-style: unset;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;

  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to initial to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;

  /* Resets the font-size specified in the UA stylesheet to allow inheritance. */
  font-size: unset;

  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like => from being rendered as a single symbol (e.g., ⇒).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The <abbr> element with the title attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * 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
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  cursor: help;
}

:where(time) {
  /* Set to no-autospace because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}

@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}

/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:any-link) {
  /* The default color from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;

  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using text-decoration-line: revert;.
  */
  text-decoration-line: unset;

  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;

  /* Prevents overflow by setting the maximum width to 100%. */
  max-inline-size: 100%;

  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(iframe) {
  /* The border specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The text-align specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a 1px border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use border-color: transparent instead of border: none to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;

  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input:is([type="radio" i], [type="checkbox" i])) {
  /* The margin specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where(input[type="file" i]) {
  /* The border is often unnecessary, so it is reset here. */
  border: unset;
}

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

@supports (-webkit-touch-callout: none) {
  :where(input[type="search" i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}

:where(
    input:is(
        [type="tel" i],
        [type="url" i],
        [type="email" i],
        [type="number" i]
      ):not(:placeholder-shown)
  ) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The margin-block specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;

  /* Allows vertical resizing for <textarea> elements. */
  resize: block;
}

:where(
    input:not([type="button" i], [type="submit" i], [type="reset" i]),
    textarea,
    [contenteditable]
  ) {
  /* Set to no-autospace because text-autospace can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i])
  ),
::file-selector-button {
  /* The background-color specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i]),
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * touch-action: manipulation is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(
    button:enabled,
    label[for],
    select:enabled,
    input:is(
        [type="button" i],
        [type="submit" i],
        [type="reset" i],
        [type="radio" i],
        [type="checkbox" i]
      ):enabled,
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default min-inline-size: min-content to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;

  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default padding-inline is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the <progress> element to its initial value. */
  vertical-align: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";

  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;

  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their display property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a <dialog> element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::backdrop {
  /* Normalize the background color of the ::backdrop element. */
  background-color: oklch(0% 0 0deg / 30%);
}

:where([popover]) {
  /*
  * While the UA stylesheet's margin for <dialog> elements is useful for centering with inset: 0,
  * but margin for popover elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled="true" i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden="until-found" i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}


/* スムーススクロール設定 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 46px;
}

@media (min-width: 750px) {
  html {
    scroll-padding-top: 74px;
  }
}

/* ユーザーが視差効果を減らす設定にしている場合は無効化 */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (min-width: 376px) and (max-width: 749px) {
  html {
    scroll-behavior: auto;
  }
}

h1 {
  margin: 0;
}

svg {
  image-rendering: -webkit-optimize-contrast; /* WebKit独自のアンチエイリアシング最適化 */
  shape-rendering: geometricPrecision; /* SVGの形状レンダリングをシャープに */
  text-rendering: geometricPrecision; /* テキストのレンダリング精度を向上 */
}

button,
a {
  cursor: pointer;

  &:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
  }
}

@media screen and (min-width: 750px) {
  a:is([href^="tel:"]) {
    pointer-events: none;
  }
}

/* メイン文字色 */
@property --color-main-black {
  syntax: "<color>";
  inherits: false;
  initial-value: #5B5756;
}

/* メインカラー */
@property --color-main-green {
  syntax: "<color>";
  inherits: false;
  initial-value: #54B0AD;
}

@property --color-main-green-l {
  syntax: "<color>";
  inherits: false;
  initial-value: rgb(84 176 173 / 0.2);
}


@property --color-sub-yellow {
  syntax: "<color>";
  inherits: false;
  initial-value: #D7C327;
}

/* 白黒 */
@property --color-pure-white {
  syntax: "<color>";
  inherits: false;
  initial-value: #fff;
}

@property --color-pure-black {
  syntax: "<color>";
  inherits: false;
  initial-value: #000;
}

@property --alpha-07 {
  syntax: "<number>";
  inherits: false;
  initial-value: 0.7;
}

@property --transition-time {
  syntax: "<time>";
  inherits: false;
  initial-value: 0.3s;
}

/* フォント */
@property --font-noto-sans-jp {
  syntax: "*";
  inherits: false;
  initial-value: "Noto Sans JP", sans-serif;
}

@property --font-weight-bold {
  syntax: "<number>";
  inherits: false;
  initial-value: 700;
}

@property --font-weight-semibold {
  syntax: "<number>";
  inherits: false;
  initial-value: 600;
}

@property --font-weight-medium {
  syntax: "<number>";
  inherits: false;
  initial-value: 500;
}

@property --font-weight-regular {
  syntax: "<number>";
  inherits: false;
  initial-value: 400;
}

@property --font-weight-thin {
  syntax: "<number>";
  inherits: false;
  initial-value: 300;
}

/* 行間 */
@property --leading-tight {
  syntax: "<number>";
  inherits: false;
  initial-value: 1.3;
}

@property --leading-normal {
  syntax: "<number>";
  inherits: false;
  initial-value: 1.5;
}

@property --leading-relaxed {
  syntax: "<number>";
  inherits: false;
  initial-value: 1.75;
}

/* コンテンツ左右余白 */
@property --content-padding-inline {
  syntax: "<length>";
  inherits: false;
  initial-value: 20px;
}

/* z-index header / footer */
@property --z-index-topmost {
  syntax: "<number>";
  inherits: false;
  initial-value: 999;
}

@property --z-index-topsecond {
  syntax: "<number>";
  inherits: false;
  initial-value: 998;
}

/* タブレットスケーリング用の共通関数 */
@property --tablet-viewport-min {
  syntax: "<number>";
  inherits: false;
  initial-value: 750;
}

@property --tablet-viewport-max {
  syntax: "<number>";
  inherits: false;
  initial-value: 1024;
}

/* color setting */
:root {
  background-color: var(--color-pure-white);
  color: var(--color-main-black);

  &:lang(en) {
    font-kerning: normal;
  }

  &:lang(ja) {
    font-kerning: none;
  }
}

/* font-size setting */
*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );

  font-size: var(--clamp);
}

body {
  font-family: var(--font-noto-sans-jp);
  /* bodyにデフォルト値を設定する */
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1024;
  --clamp-min: 14;
  --clamp-max: 16;
  min-block-size: 100svb;
}

/*  util
--------------------------------------------- */
.mobile-visible {
  display: block;
}

@media (min-width: 750px) {
  .mobile-visible {
    display: none;
  }
}

.pc-visible {
  display: block;
}

@media (max-width: 749px) {
  .pc-visible {
    display: none;
  }
}

.lg-visible {
  display: block;
}
@media (max-width: 1279px) {
  .lg-visible {
    display: none;
  }
}

@media (min-width: 1280px) {
  .lg-hidden {
    display: none;
  }
}

@property --sm-padding-inline {
  syntax: "<length>";
  inherits: false;
  initial-value: 24px;
}


/*  共通パーツ
--------------------------------------------- */
/* ビューポートスケーリング（376px〜749px） */
@media (min-width: 376px) and (max-width: 749px) {
  /* スケール時のbodyの幅調整 */
  body:has(.main) {
    overflow-x: hidden;
    width: 100vw;
  }
}

.container {
  max-inline-size: 100%;
  margin-inline: auto;
  position: relative;
  overflow: visible;
}

@media (min-width: 750px) {
  .container {
    padding-inline: 20px;
  }
}

.container-padding {
  padding-inline: var(--content-padding-inline);
}

@media (min-width: 750px) {
  .container {
    max-inline-size: calc(1160px + var(--content-padding-inline) * 2);
  }

  .container-pc-padding {
    padding-inline: var(--content-padding-inline);
  }
}

@media (min-width: 750px) {
  .container-sm {
    max-inline-size: calc(760px + var(--content-padding-inline) * 2);
  }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.l-wrapper {
  min-block-size: 100svb;
}

@media (min-width: 750px) {
  .l-wrapper {
  }
}

/* ---------------------------------------------
*   button
--------------------------------------------- */

.button {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 12px;
  padding-inline-end: 14px;
  background-color: var(--color-main-green);
  font-weight: var(--font-weight-medium);
  color: var(--color-pure-white);
  gap: 4px;
  border-radius: 999px;
  transition: opacity .3s;
  --clamp-min: 18;
  --clamp-max: 18;
  letter-spacing: 0.05em;

  &::after {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    content: "";
    width: 10px;
    height: 18px;
    background: url('../images/common/ico_arrow.png') no-repeat center center / 100% auto;
  }
}

@media (any-hover: hover) {
  .button:hover {
    opacity: var(--alpha-07);
  }
}

/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
  min-height: 70px;
  padding-block: 12px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-topmost);
  background-color: var(--color-pure-white);
  color: var(--color-main-green );
}
@media (min-width: 1280px) {
  .header {
    min-height: 100px;
    padding-block: 24px;
  }
}
.header-inner {
  padding-inline: 20px;
}
.header-logo {
  display: inline-block;
}
@media (max-width: 749px) {
  .header-logo {
    width: 120px;
    translate: 2px 2px;
  }
}
.header-logoLink {
  display: inline-block;
}
.header-nav {}
.header-nav__item {
  position: relative;
}
@media (min-width: 1280px) {
  .header-nav__item {
    &+& {
      margin-inline-start: 42px;
    }
  }
  .header-nav__item.header-button {
    margin-inline-start: 20px;
    &+& {
      margin-inline-start: 0;
    }
  }
}
@media (max-width: 1279px) {
  .header-nav__item + .header-nav__item {
    margin-block-start: 20px;
  }
}
.header-nav__link {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
}
@media (min-width: 750px) {
  .header-nav__link {
    font-size: 16px;
  }
}
.header-nav-sub {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-pure-white);
  padding: 10px;
  border-radius: 4px;
}
@media (max-width: 749px) {
  .header-nav-sub {
    background: none;
  }
}
.header-nav-sub__item {
  display: none;
}
.is-active .header-nav-sub__item {
  display: revert;
}
@media (any-hover: hover) {
  .header-logoLink {
    transition: opacity var(--transition-time);
  }

  .header-logoLink:hover {
    opacity: var(--alpha-07);
  }

  .header-nav__link {
    transition: opacity var(--transition-time);
  }

  .header-nav__link:hover {
    opacity: var(--alpha-07);
  }

  .header-button__link {
    transition: opacity var(--transition-time);
  }

  .header-button__link:hover {
    opacity: var(--alpha-07);
  }
  .header-nav-sub__link {
    transition: opacity var(--transition-time);
    font-weight: var(--font-weight-semibold);
  }

  .header-nav-sub__link:hover {
    opacity: var(--alpha-07);
  }
}
@media (min-width: 1280px) {
  .header-inner {
    padding-inline: 60px;
    max-inline-size: 1280px;
    margin-inline:auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .header-button__link {
    background-color: var(--color-main-green);
    border-radius: 999px;
    display: block;
    padding: 13px 15px;
    color: var(--color-pure-white);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    margin-inline-start: 8px;
  }

  .header-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-nav-sub {
    width: 360px;
    padding-inline-start: 2.8em;
  }
  .is-active .header-nav-sub {
    padding-block-start: 28px;
  }
}

@media (max-width: 1279px) {
  .header-menu-buttons {
    position: absolute;
    top: 50%;
    right: 54px;
    transform: translateY(-50%);
    z-index: var(--z-index-topmost);
  }
}

.header-menu-buttons__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-menu-buttons__item {
  background-color: var(--color-main-green);
  border-radius: 999px;
  display: block;
  padding: 4px 10px 7px;
  color: var(--color-pure-white);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
}

.is-drawerActive .header-menu-buttons__item {
  background-color: var(--color-pure-white);
  color: var(--color-main-green);
}

/*  .header-menu-trigger
--------------------------------------------- */
.header-menu-trigger-wrapper {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  z-index: var(--z-index-topmost);
  padding: 8px;
}

@media (min-width: 1280px) {
  .header-menu-trigger-wrapper {
    display: none;
  }
}

.header-menu-trigger {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  z-index: var(--z-index-topmost);
  transition: opacity .3s;
  background: url('../images/common/ico_open.svg') no-repeat center center / 34px 34px;
}
@media (any-hover: hover) {
  .header-menu-trigger:hover {
    opacity: var(--alpha-07);
  }
}

.header-menu-trigger[aria-expanded="true"] {
  background: url('../images/common/ico_close.svg') no-repeat center center / 34px 34px;
}

/*  .header-menu-wrapper 及び drawerが開いているときのスタイル
--------------------------------------------- */
@media (min-width: 1280px) {
  .header-menu-wrapper {
    display: block;
  }
}

@media (max-width: 1279px) {
  .header-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-main-green);
    z-index: var(--z-index-topmost);
    padding-block-start: 110px;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
  }

  .header-menu-wrapper.is-ready {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.4s;
  }

  .header-menu-inner {
    padding: 24px;
  }

  .is-drawerActive {
    .header-menu-wrapper {
      transform: translateY(0);
      visibility: visible;
      pointer-events: auto;
    }
    .header-menu-wrapper.is-ready {
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .header-inner {
      display: revert;
    }
    .header-logo {
      position: relative;
      z-index: 1000;
      text-align: left;
    }
    .header-logoLink svg path,
    .header-logoLink svg rect {
      fill: var(--color-pure-white);
    }
    .header-nav__list {
      flex-direction: column;
    }
    .header-nav__link {
      color: var(--color-pure-white);
    }
    .header-nav-small {
      margin-block-start: 52px;
    }
    .header-nav-small__item + .header-nav-small__item {
      margin-block-start: 20px;
    }
    .header-nav-small__link {
      color: var(--color-pure-white);
    }
  }
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.fixed-banner {
  position: sticky;
  bottom: 4px;
  left: 0;
  width: 100%;
  z-index: var(--z-index-topsecond);
  text-align: center;
  margin-bottom: 10px;
}

.fixed-banner_inner {
  border-radius: 30px;
  border: 3px solid var(--color-main-green);
  background-color: var(--color-pure-white);
  max-width: calc(100% - 20px);
  margin-inline: auto;
  padding: 10px 10px 4px;
}

.fixed-banner_buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.fixed-banner__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 7px 2px;
  width: 102px;
  background-color: var(--color-main-green);
  color: var(--color-pure-white);
  border-radius: 999px;
  --clamp-min: 18;
  --clamp-max: 18;
  font-weight: var(--font-weight-medium);
}

.fixed-banner__text {
  margin-block-start: 4px;
  --clamp-min: 14;
  --clamp-max: 14;
  font-weight: var(--font-weight-regular);
  color: var(--color-main-green);
  letter-spacing: 0.05em;
}

.footer {
  position: sticky;
  top: 100svb;
  width: 100%;
  z-index: var(--z-index-topsecond);
  background-color: var(--color-main-green);
  color: var(--color-pure-white);
  padding-block: 40px;
  padding-inline: 24px;
}


@media (max-width: 749px) {
.footer-nav__item {
  &+& {
      margin-block-start: 20px;
    }
  }
}

@media (min-width: 750px) {
  .footer {
    padding-block-start: 100px;
  }

  .footer__container {
    text-align: right;
    max-inline-size: 1048px;
    margin-inline: auto;
  }

  .footer-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}

.footer-nav__link {
  letter-spacing: 0.05em;
  --clamp-min: 18;
  --clamp-max: 18;
  font-weight: var(--font-weight-semibold);
}

@media (any-hover: hover) {
  .footer-nav__link {
    transition: opacity .3s;
  }

  .footer-nav__link:hover {
    opacity: var(--alpha-07);
  }
}

@media (max-width: 749px) {
  .footer-info-wrapper {
    margin-block-start: 40px;
  }
}
@media (min-width: 750px) {
  .footer-info-wrapper {
    position: relative;
    min-block-size: 200px;
    margin-block-start: 72px;
  }
}

.footer-info {}

@media (min-width: 750px) {
  .footer-info {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: left;
  }
}

.footer-info__button {}

.footer-info__button-link {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid var(--color-pure-white);
  color: var(--color-pure-white);
  padding: 12px 15px;
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  transition: opacity .3s;
}

@media (any-hover: hover) {
  .footer-info__button-link:hover {
    opacity: var(--alpha-07);
  }
}

.footer-info__item {
  &+& {
    margin-block-start: 20px;
  }
}

@media (min-width: 750px) {
  .footer-info__item {
    &+& {
      margin-block-start: 14px;
    }
  }
}

.footer-info__link {
  --clamp-min: 15;
  --clamp-max: 15;
  transition: opacity .3s;
  font-weight: var(--font-weight-semibold);
}

@media (any-hover: hover) {
  .footer-info__link:hover {
    opacity: var(--alpha-07);
  }
}

@media (max-width: 749px) {
.footer-company {
    margin-block-start: 36px;
  }
}

@media (min-width: 750px) {
  .footer-company {
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-company__catch {
  --clamp-min: 40;
  --clamp-max: 40;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-semibold);
  line-height: var(--leading-tight);
  margin-block-end: 28px;
}

.footer-company__copy {
  margin-block-start: 5px;
  display: block;
  --clamp-min: 13;
  --clamp-max: 13;
  font-weight: var(--font-weight-regular);
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
.main {
  padding-block-start: 70px;
}

@media (min-width: 1280px) {
  .main {
    padding-block-start: 100px;
  }
}

/* ---------------------------------------------
*   column-list
--------------------------------------------- */
.column-list {
  display: grid;
  justify-self: center;
  align-self: center;

  &.colSm2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 750px) {
  .column-list {

    &.col3 {
      grid-template-columns: repeat(3, minmax(132px, 1fr));
    }
    &.col4 {
      grid-template-columns: repeat(4, 1fr);
    }
  }
}


/* ---------------------------------------------
*   figure
--------------------------------------------- */
.figure {
  position: relative;
  text-align: center;

  & figcaption {
    color: var(--color-main-green);
    text-align: center;
    display: block;
  }
}

/* ---------------------------------------------
*   fv
--------------------------------------------- */
.fv {
  padding-bottom: 20px;
  position: relative;
}

@media (min-width: 750px) {
  .fv {
    padding-bottom: 40px;
  }
}

.fv-title {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: var(--color-main-green);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  padding-block: 32px 40px;
  padding-inline: 40px 20px;

}

@media (min-width: 750px) {
  .fv-title {
    display: none;
  }
}

.fv-content {
  /* 画面幅1024pxのときに高さが576pxになるようvwで高さを指定 */
  height: 56.25vw;
}

.fv-content video {
  width: 100%;
}

@media (min-width: 750px) {
  .fv-content {
    overflow: hidden;
  }
}

/*  scroll
--------------------------------------------- */
.scroll {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@media (min-width: 750px) {
  .scroll {
    bottom: -8px;
  }
}

.scroll a {
  position: relative;
  opacity: 1;
  transition: transform .5s ease-in 3s;
  color: var(--color-main-green);
  display: block;
  background-size: 14px auto;
  padding-block-end: 40px;

  &::before {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    display: block;
    width: 20px;
    height: 20px;
    content: "";
    border: 2px solid var(--color-main-green);
    border-width: 0px 0 2px 2px;
    animation: bounce 2s linear infinite;
  }

  &::after {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-main-green);
    content: "";
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  70%,
  80% {
    -webkit-transform: translate(-50%, 0)rotate(-45deg);
    -ms-transform: translate(-50%, 0)rotate(-45deg);
    transform: translate(-50%, 0)rotate(-45deg);
  }
  40% {
    -webkit-transform: translate(-50%, -8px)rotate(-45deg);
    -ms-transform: translate(-50%, -8px)rotate(-45deg);
    transform: translate(-50%, -8px)rotate(-45deg);
  }
  60% {
    -webkit-transform: translate(-50%, -4px)rotate(-45deg);
    -ms-transform: translate(-50%, -4px)rotate(-45deg);
    transform: translate(-50%, -4px)rotate(-45deg);
  }
}

/* ---------------------------------------------
*   section
--------------------------------------------- */
.section {
  padding-block: 20px;
}

@media (min-width: 750px) {
  .section {
    padding-block: 40px;
  }
}


.section-title {
  text-align: center;
  --clamp-min: 32;
  --clamp-max: 32;
  font-weight: var(--font-weight-semibold);
  margin-block-end: 20px;
  color: var(--color-main-green);
  letter-spacing: 0.1em;

  &.-dark {
    color: var(--color-main-black);
  }
}

.section-lead {
  --clamp-min: 18;
  --clamp-max: 18;
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-relaxed);
  letter-spacing: 0.05em;

  &.-color {
    color: var(--color-main-green);
  }
}

@media (min-width: 750px) {
  .section-lead {
    text-align: center;
  }
}

/* ---------------------------------------------
*   items
--------------------------------------------- */
.items {}

.items-inner {
  padding-block: 40px;
  padding-inline: var(--sm-padding-inline);
  border-radius: 40px;
  background-color: rgb(84 176 173 / 0.2);
}

@media (min-width: 750px) {
  .items-inner {
    padding-block: 48px;
    padding-inline: 40px;
    border-radius: 40px;
  }
}

.items-list {
  gap: 30px 48px;
}

@media (min-width: 750px) {
  .items-list {
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
    gap: 7.4%;
  }
}

.items-body {
  margin-block-start: 12px;
}

@media (min-width: 750px) {
  .items-body {
    margin-block-start: 34px;
  }
}

.items-body-title {
  text-align: center;
  letter-spacing: 0.08em;
  --clamp-min: 24;
  --clamp-max: 24;
  font-weight: var(--font-weight-medium);
  color: var(--color-main-green);
}

@media (min-width: 750px) {
  .items-body-title {
    margin-block-end: 10px;
  }
}

.items-item {
  text-align: center;
}

.items-item .figure {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-rows: 126px auto;
}

.items-item img {
  justify-self: center;
}

.items-item figcaption {
  --clamp-min: 24;
  --clamp-max: 24;
  font-weight: var(--font-weight-semibold);
}

@media screen and (min-width: 750px) {
  .items-item {
    width: 100%;
    min-width: 132px;
    margin-inline: auto;
  }

  .items-item .figure {
    grid-template-rows: 156px auto;
  }
}

.items-body-subtitle {
  margin-block: 24px 20px;
  text-align: center;
  letter-spacing: 0.05em;
  --clamp-min: 18;
  --clamp-max: 18;
  font-weight: var(--font-weight-medium);
}

@media (min-width: 750px) {
  .items-body-subtitle {
    margin-block: 36px 20px;
  }
}

.items-body-text {
  text-align: left;
  letter-spacing: 0.05em;
  --clamp-min: 15;
  --clamp-max: 15;
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-relaxed);
  margin-block-end: 14px;
}

@media (min-width: 750px) {
  .items-body-text {
    margin-block-end: 20px;
    text-align: center;
  }
}

.notice {
  text-align: left;
  letter-spacing: 0.05em;
  --clamp-min: 13;
  --clamp-max: 16;
  font-weight: var(--font-weight-regular);
}

@media (min-width: 750px) {
  .notice {
    text-align: center;
  }
}


/* ---------------------------------------------
*   howto
--------------------------------------------- */
.howto {
  margin-block-end: 40px;
}

@media (max-width: 749px) {
  .howto-inner {
    padding-inline: var(--sm-padding-inline);
  }
}

.howto-notice {
  margin-block-start: 14px;
  --clamp-min: 16;
  --clamp-max: 16;
}

.howto-body {
  max-width: 760px;
  margin-block-start: 40px;
  margin-inline: auto;
}

.howto-item_title {
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--color-main-green);
  --clamp-min: 32;
  --clamp-max: 32;
  font-weight: var(--font-weight-semibold);
  margin-block-end: 14px;
}

.js-accordion-trigger .howto-item_title {
  position: relative;
  cursor: pointer;
  padding-inline-end: 30px;
}

.howto-item_ico {
  text-align: center;
}

.js-accordion-trigger .howto-item_ico {
  transition: transform 0.3s ease;
}

.js-accordion-trigger.is-active .howto-item_ico {
  transform: translateY(32px) rotate(180deg);
}

.js-accordion-trigger .howto-item_summary {
  display: none;
}

.js-accordion-trigger .howto-item_summary.is-open {
  display: block;
}

.howto-list_summary {
  margin-block-start: 20px;
}

.howto-item + .howto-item {
  margin-block-start: 16px;
}

.howto-item.is-active {
  padding-block-end: 40px;
}

@media (min-width: 750px) {
  .howto-item + .howto-item {
    margin-block-start: 28px;
  }
}

.howto-item_summary-text {
  --clamp-min: 18;
  --clamp-max: 18;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-relaxed);
  margin-block-end: 36px;
}

@media (min-width: 750px) {
  .howto-item_summary-text {
    margin-block-end: 34px;
  }
}

.howto-item_summary-list {
  text-align: center;
  gap: 40px;
}

@media (max-width: 749px) {
  .howto-item_summary-list {
    width: 100%;
    gap: 24px;
  }
}

.howto-item_summary-contents {
  color: var(--color-main-green);
  display: grid;
}

.howto-item_summary-contents .text-step {
  margin-inline: auto;
}

@media (max-width: 749px) {
  .howto-item_summary-contents {
    grid-template-columns: 64px auto;
    grid-template-rows: auto auto;
    gap: 4px 20px;
    text-align: left;
  }

  .howto-item_summary-contents .text-step {
    grid-column-start: 2;
    grid-row-start: 1;
    margin-inline: revert;
  }

  .howto-item_summary-contents .figure {
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 1;
    align-self: center;
  }

  .howto-item_summary-contents .howto-item_summary-title {
    grid-column-start: 2;
  }
}


@media (min-width: 750px) {
  .howto-item_summary-contents {
    align-self: center;
    grid-row: span 3;
    grid-template-rows: subgrid;
    gap: 10px;
  }

  .howto-item_summary-contents .text-step {
    margin-block-end: 10px;
  }
}

.howto-item_summary-title {
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
  margin-block-end: 10px;
  letter-spacing: 0.1em;
}

@media (min-width: 750px) {
  .howto-item_summary-title {
    font-size: 20px;
    margin-block-end: 20px;
  }
}

/* ---------------------------------------------
*   cta-area
--------------------------------------------- */
.cta-area {
  margin-block-start: 24px;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 750px) {
  .cta-area {
    margin-block-start: 27px;
  }
}

.cta-area_text {
  --clamp-min: 16;
  --clamp-max: 16;
  font-weight: var(--font-weight-regular);
  margin-block-end: 4px;
}

.cta-area_text span {
  --clamp-min: 15;
  --clamp-max: 15;
}

@media (max-width: 749px) {
  .howto .cta-area_text {
    --clamp-min: 14;
    --clamp-max: 16;
  }
}


.parts-line {
  margin-block-start: 22px;

  a {
    transition: opacity .3s;
  }
}

.parts-line p {
  --clamp-min: 16;
  --clamp-max: 16;
  font-weight: var(--font-weight-regular);
  margin-block-start: 16px;
  text-decoration: underline;
}

@media (min-width: 750px) {
  .parts-line {
    margin-block-start: 36px;
  }
}

.contact .parts-line {
  margin-block-start: 24px;
}

.parts-line_link {
  display: inline-block;
  transition: opacity .3s;
  margin-block-start: 16px;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .parts-line_link:hover,
  .parts-line a:hover {
    opacity: var(--alpha-07);
  }
}

.cta-area_tel {
  margin-block-start: 14px;
  --clamp-min: 16;
  --clamp-max: 16;
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-tight);
}

.cta-area_tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-area_tel-link span {
  letter-spacing: 0.1em;
  --clamp-min: 32;
  --clamp-max: 32;
  font-weight: var(--font-weight-medium);
}

@media (min-width: 750px) {
  .cta-area_tel-link span {
  }
}

/* ---------------------------------------------
*   top-about
--------------------------------------------- */
.top-about {
  padding-block: 28px 40px;
  border-top: 2px solid color-mix(in srgb, var(--color-main-green) 30%, transparent);
}

@media (min-width: 750px) {
  .top-about {
    padding-block-start: 80px;
  }
}

.top-about-inner {
  max-width: 760px;
  margin-inline: auto;
}

@media (max-width: 749px) {
  .top-about-inner {
    padding-inline: var(--sm-padding-inline);
  }
}

.top-about-lead {
  text-align: left;
  font-weight: var(--font-weight-medium);
}

@media (max-width: 749px) {
  .top-about-lead {
    padding-inline: 16px;
  }
}

.top-about-images {
  margin-block-start: 40px;
  text-align: center;
}

@media (min-width: 750px) {
  .top-about-images {
    margin-block-start: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(60px / 760px * 100%);
  }
}

.top-about-images_character {
  max-width: 300px;
  text-align: center;
}

.top-about-images_character figcaption {
  --clamp-min: 15;
  --clamp-max: 15;
  font-weight: var(--font-weight-regular);
  margin-block-start: -28px;
}

@media (max-width: 749px) {
  .top-about-images_character {
    width: 152px;
    margin-block-start: 10px;
    margin-inline: auto;
  }

  .top-about-images_character figcaption {
    margin-block-start: -8px;
  }
}

@media (min-width: 750px) {
  .top-about-images_character figcaption {
    padding-inline-start: 42px;
  }
}


.top-about-button {
  margin-block-start: 32px;
  margin-inline: auto;
}

@media (min-width: 750px) {
  .top-about-button {
    margin-block-start: 40px;
    width: 328px;
  }
}

/* ---------------------------------------------
*   store
--------------------------------------------- */
@media (max-width: 749px) {
.store-inner {
    padding-inline: var(--sm-padding-inline);
  }
}

.store-list {
  margin-block-start: 40px;
  gap: 30px;
}

@media (min-width: 750px) {
  .store-list {
    gap: 40px;
  }
}

.store-item {

}

.store-item_image {
  border-radius: 20px;
  margin-block-end: 10px;
  overflow: hidden;
}

@media (min-width: 750px) {
  .store-item_image {
    margin-block-end: 20px;
  }
}

.store-item_body {
  text-align: left;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.store-item_title {
  --clamp-min: 18;
  --clamp-max: 18;
  font-weight: var(--font-weight-medium);
}

.store-item_text {
  --clamp-min: 16;
  --clamp-max: 16;
  font-weight: var(--font-weight-regular);

  &.-link {
    display: block;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity .3s;
  }
}

@media (any-hover: hover) {
  .store-item_text.-link:hover {
    opacity: var(--alpha-07);
  }
}

/* ---------------------------------------------
*   faq
--------------------------------------------- */
.faq {
  padding-block: 40px;
}

@media (min-width: 750px) {
  .faq {
    padding-block: 20px;
  }
  .faq-title {
    margin-block-end: 40px;
  }
}

.faq-inner {
  border-radius: 40px;
  background-color: color-mix(in srgb, var(--color-main-green) 20%, transparent);
  padding: 26px 24px;
}

@media (min-width: 750px) {
  .faq-inner {
    padding: 72px 80px;
  }
}

.faq-sub-section {
  max-width: 760px;
  margin-inline: auto;

  &:not(:first-of-type) {
    margin-block-start: 36px;
  }
}

.faq-sub-section_title {
  --clamp-min: 22;
  --clamp-max: 22;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-semibold);
  background-color: var(--color-pure-white);
  color: var(--color-main-green);
  max-width: 328px;
  margin-inline: auto;
  margin-block-end: 8px;
  padding: 4px 15px;
  border-radius: 999px;
  text-align: center;
}

.faq-list_item {
  letter-spacing: 0.05em;
  --clamp-min: 18;
  --clamp-max: 18;
  font-weight: var(--font-weight-medium);
  color: var(--color-main-green);
  border-bottom: 1px solid var(--color-main-green);
}

.faq-list_question {
  position: relative;
  display: flex;
  align-items: start;
  gap: 10px;
  padding-inline-end: 30px;
  padding-block: 14px;
  cursor: pointer;
  transition: opacity .3s;
}

.faq-list_question svg {
  flex-shrink: 0;
}

.faq-list_question::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  background: url('../images/common/ico_arrow-circle.svg') no-repeat center center / 100% auto;
  transition: transform 0.3s ease;
}

@media (any-hover: hover) {
  .faq-list_question:hover {
    opacity: var(--alpha-07);
  }
}

.js-accordion-trigger.is-active .faq-list_question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-list_question-text {
  font-weight: var(--font-weight-medium);
}

.faq-list_answer-wrap {
  display: none;
}

.faq-list_answer {
  display: flex;
  align-items: start;
  gap: 10px;
  padding-inline-end: 30px;
  padding-block-end: 16px;
}

.faq-list_answer svg {
  flex-shrink: 0;
}

/* ---------------------------------------------
*   news
--------------------------------------------- */
.news {}

@media (min-width: 750px) {
  .news-title {
    margin-block-end: 40px;
  }
}

@media (max-width: 749px) {
  .news-inner {
    padding-inline: var(--sm-padding-inline);
  }
}

.news-list {
  max-width: 760px;
  margin-inline: auto;
  border-top: 2px solid color-mix(in srgb, var(--color-main-green) 20%, transparent);
}

.news-item {
  padding-block: 10px;
  border-bottom: 2px solid color-mix(in srgb, var(--color-main-green) 20%, transparent);
  letter-spacing: 0.05em;
  --clamp-min: 16;
  --clamp-max: 16;
  font-weight: var(--font-weight-regular);
}

.news-item_date {
  display: block;
}

.news-item_title {
  --clamp-min: 16;
  --clamp-max: 16;
  font-weight: var(--font-weight-regular);
}

.news-item_title-link {
  transition: opacity .3s;

  &.no-link {
    pointer-events: none;
  }
}

@media (any-hover: hover) {
  .news-item_title-link:hover {
    opacity: var(--alpha-07);
  }
}
/* ---------------------------------------------
*   contact
--------------------------------------------- */
.contact {
  padding-inline: var(--sm-padding-inline);
  padding-block: 40px 60px;
}

@media (min-width: 750px) {
  .contact {
    text-align: center;
    padding-block: 20px 80px;
    padding-inline: revert;
  }
}

.contact-inner {
  max-width: 760px;
  margin-inline: auto;
  border-radius: 40px;
  border: 2px solid color-mix(in srgb, var(--color-main-green) 30%, transparent);
  padding: 28px 24px;
}

@media (min-width: 750px) {
  .contact-inner {
    padding-inline: 40px;
    padding-block: 30px 64px;
  }
}

.contact-title {
  --clamp-min: 32;
  --clamp-max: 32;
  font-weight: var(--font-weight-semibold);
}

.contact-text {
  --clamp-min: 18;
  --clamp-max: 18;
  font-weight: var(--font-weight-medium);

  &.-time {
    font-weight: var(--font-weight-regular);
  }
}

@media (max-width: 749px) {
  .contact-text {
    text-align: left;
    padding-inline: 28px;

    &.-time {
      text-align: center;
      --clamp-min: 16;
      --clamp-max: 16;
    }
  }
}

.contact-tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: var(--font-weight-semibold);
}

@media (max-width: 749px) {
  .contact-tel-link {
    margin-block-start: 20px;
  }

  .contact-tel-link svg {
    width: 32px;
    height: 32px;
  }
}

.contact-tel {
  letter-spacing: 0.05em;
  --clamp-min: 32;
  --clamp-max: 50;
  font-weight: var(--font-weight-bold);
}

@media (min-width: 750px) {
  .contact-tel {
    letter-spacing: 0.1em;
  }
}

/* ---------------------------------------------
*   下層ページ
--------------------------------------------- */
.lower {
  padding-block: 26px 70px;
}

@media (min-width: 750px) {
  .lower {
    padding-block: 50px 80px;
  }
}

/*  about
--------------------------------------------- */
.lower-about-section {
  padding-inline: var(--sm-padding-inline);
  &+& {
    margin-block-start: 14px;
  }
}

@media (max-width: 749px) {
  .lower-about-section {
    padding-block-start: 26px;
    &:first-of-type {
      padding-block-start: 0;
    }
  }
}

@media (min-width: 750px) {
  .lower-about-section {
    &+& {
      margin-block-start: 100px;
    }
  }
}

.lower-about-title {
  --clamp-min: 40;
  --clamp-max: 40;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  color: var(--color-main-green);

}

@media (min-width: 750px) {
  .lower-about-title {
    text-align: center;

    &.left {
      text-align: center;
    }
  }

  .lower-about-title span {
    display: inline-block;
    max-width: 278px;
    margin-inline: auto;
    text-align: left;
  }
}

.lower-about-body {
  margin-block-start: 80px;
}

@media (min-width: 750px) {
  .lower-about-body {
    margin-block-start: 40px;
  }
}

.about-section {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

@media (max-width: 749px) {
  .about-section {
    &+& {
      margin-top: 32px;
      padding-top: 40px;
      border-top: 1px solid color-mix(in srgb, var(--color-main-green) 10%, transparent);
    }
  }
}

@media (max-width: 749px) {
  .about-section_image {
    display: none;
  }
}

@media (min-width: 750px) {
  .about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

    &+& {
      margin-block-start: 56px;
    }
  }

  .about-section:nth-child(even) {
    flex-direction: row-reverse;
  }

  .about-section:nth-child(even) .lower-about-head {
    order: 2;
  }

  .about-section:nth-child(even) .about-section_image {
    order: 1;
  }

  .about-section_head {
    flex-basis: 650px;
  }

  .about-section_image {
    max-width: 182px;
  }
}

.lower-about-contents,
.about-section_sub-title {
  padding-inline-start: 48px;
}

.about-section_sub-title {
  margin-block-start: 10px;
  --clamp-min: 20;
  --clamp-max: 20;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  color: var(--color-main-green);
}

.about-section_title {
  margin-block-end: 16px;
}

@media (min-width: 750px) {
  .about-section_title {
    margin-block-end: 20px;
  }
}

.about-section_text {
  --clamp-min: 18;
  --clamp-max: 18;
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-relaxed);
  color: var(--color-main-green);
  letter-spacing: 0.05em;
}

.about-section_text strong {
  display: inline;
  background-color: var(--color-main-green);
  color: var(--color-pure-white);
  font-weight: var(--font-weight-regular);
  line-height: 1.3;
}

@media (min-width: 750px) {
  .about-section_text strong {
    display: inline-block;
    padding-inline: 2px;
  }
}

@media (max-width: 749px) {
  .about-catch {
    padding-block-start: 40px;
  }
}

.about-catch-inner {
  max-width: 760px;
  margin-inline: auto;
}

@media (max-width: 749px) {
  .about-catch-title {
    background: url('../images/about/bg_about-catch-title.svg') no-repeat right bottom / 64px auto;
  }
}

.about-catch_text {
  margin-block-start: 14px;
  --clamp-min: 18;
  --clamp-max: 18;
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-relaxed);
  letter-spacing: 0.05em;
}

@media (min-width: 750px) {
  .about-catch_text {
    margin-block-start: 36px;
  }
}

/*  company
--------------------------------------------- */
.company .section-lead {
  text-align: left;
}

.company .lower-inner {
  max-width: 760px;
  margin-inline: auto;
}

@media (max-width: 749px) {
  .company .lower-inner {
    padding-inline: var(--sm-padding-inline);
  }
}

.company-link {
  margin-block-start: 16px;
  text-align: center;
}

@media (min-width: 750px) {
  .company-link {
    margin-block-start: 36px;
  }
}


.company-link_text {
  --clamp-min: 16;
  --clamp-max: 16;
  text-decoration: underline;
  display: inline-block;
  transition: opacity .3s;
}

@media (any-hover: hover) {
  .company-link_text:hover {
    opacity: var(--alpha-07);
  }
}

@media (min-width: 750px) {
  .company-link_text {
    text-align: center;
  }
}

.company-image {
  border-radius: 20px;
  overflow: hidden;
  margin-block-start: 28px;
}

@media (min-width: 750px) {
  .company-image {
    margin-block-start: 36px;
  }
}

.company-section {
  margin-block-start: 40px;
}

.company-section .section-title {
  font-weight: var(--font-weight-semibold);
}

@media (min-width: 750px) {
  .company-section {
    margin-block-start: 90px;
  }
}

.company-sub-section {
  margin-block-start: 30px;

  &.overview {
    margin-block-start: 56px;
  }
}

@media (min-width: 750px) {
  .company-sub-section {
    margin-block-start: 90px;

    &+& {
      margin-block-start: 56px;
    }

    &.overview {
      margin-block-start: 80px;
    }
  }
}

.company-sub-section_title {
  text-align: center;
  --clamp-min: 24;
  --clamp-max: 24;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-semibold);
  margin-block-end: 12px;
}

.company-sub-section_text {
  --clamp-min: 18;
  --clamp-max: 18;
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-relaxed);
  letter-spacing: 0.05em;
}

.company-sub-section_button {
  margin-block-start: 20px;
  max-width: 200px;
  margin-inline: auto;
}

.company-sub-section_button .button {
  font-weight: var(--font-weight-regular);
  --clamp-min: 15;
  --clamp-max: 15;
  padding-block: 4px;
}

.company-data-list {}
.company-data-list_item {
  --clamp-min: 15;
  --clamp-max: 15;
  letter-spacing: 0.05em;
  display: flex;
  gap: 20px;
  padding-block: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-main-black) 20%, transparent);
}

@media (max-width: 749px) {
  .company-data-list_item:first-of-type {
    padding-block-start: 8px;
  }
}

@media (min-width: 750px) {
  .company-data-list_item {
    gap: 30px;
    padding-block: 20px;
  }
}

.company-data-list_item-title {
  flex-basis: 70px;
  flex-shrink: 0;
  font-weight: var(--font-weight-semibold);
}
.company-data-list_item-value {
  font-weight: var(--font-weight-regular);
}

/* ======================================================
//  Scroll Fade-in Animation
// ====================================================== */
.js-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.js-fade-in.is-visible {
  opacity: 1;
}