@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #E2E2E2;
  --color_primary: #006AD5;
  --color_secondary: #00AD2F;
  --color_tertiary: #008c83;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_02: #6b7280;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
  --color_yellow: #f59e0b;
  --color_deep_blue: #1e293b;
  --gradient: linear-gradient(105deg, #59A9F8 0%, #1EB948 80%);
}

/* ====================================================
【アニメーション】
==================================================== */
:root {
  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ====================================================
【サイト全体の設定】
==================================================== */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), local("Noto Sans CJK JP Regular");
}

:root {
  --font_base:
    "Local Noto Sans JP",
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  --font_jp: "Noto Sans JP", serif;
  --font_en: "Montserrat", serif;
  --font_weight: 500;
  --font_size: 1rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

@media (max-width: 1100px) {
  :root {
    --font_size: 0.875rem;
    --line_height: 1.8;
  }
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  color: inherit;
  text-decoration: none;
}

:where(button) {
  all: unset;
  box-sizing: border-box;
}

:where(a, input, button, textarea, select) {
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

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

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  line-height: 1;
}

hr {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

mark {
  background: transparent;
  font-style: normal;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  background-color: var(--color_base);
  color: var(--color_text);
  font-family: var(--font_base);
  font-size: var(--font_size);
  font-weight: var(--font_weight);
  letter-spacing: var(--letter_spacing);
  line-height: var(--line_height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: 0.05em;
}

[lang=en] {
  font-family: var(--font_en);
}

.link {
  display: inline-block;
  text-decoration: underline;
  word-break: break-all;
  position: relative;
  text-wrap: pretty;
}

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
  position: relative;
  top: 1px;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

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

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 100px;
}

@media (max-width: 1100px) {
  :target {
    scroll-margin-top: 80px;
  }
}

.container {
  margin: 0 auto;
  max-width: 1440px;
  width: 90%;
}

.container.wide {
  max-width: 1600px;
}

.container.ultra-wide {
  max-width: 1800px;
}

.container.narrow {
  max-width: 1024px;
}

/*ボタン*/
.btn-out {
  padding-right: 15px;
  position: relative;
}

.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}

.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

@media (any-hover: hover) {
  .btn-out:hover::after {
    background-position: left bottom;
    background-size: 100% auto;
  }
}

.btn-more {
  display: inline-flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  border-radius: 100px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-weight: 600;
  line-height: 1;
  padding: 10px 25px;
  height: 55px;
  min-width: 270px;
  transition: background-color 0.3s;
}

.btn-more.white {
  border: 1px solid var(--color_white);
}

.btn-more::after {
  content: "";
  flex-shrink: 0;
  background: url(../images/share/icon_arrow.svg) no-repeat center right/17px auto;
  border-left: 1px dotted var(--color_white);
  width: 37px;
  height: 20px;
}

@media (any-hover: hover) {
  .btn-more:hover {
    background-color: var(--color_secondary);
  }
}

@media (max-width: 1100px) {
  .btn-more {
    gap: 10px;
    padding: 5px 25px;
    height: 50px;
    min-width: 200px;
  }
}

.btn-more-small {
  display: inline-flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  text-align: left;
  border-radius: 100px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 5px 15px 5px 15px;
  height: 45px;
  transition: background-color 0.3s;
}

.btn-more-small::after {
  content: "";
  flex-shrink: 0;
  background: url(../images/share/icon_arrow.svg) no-repeat center right/15px auto;
  border-left: 1px dotted var(--color_white);
  width: 25px;
  height: 15px;
}

@media (any-hover: hover) {
  .btn-more-small:hover {
    background-color: var(--color_secondary);
  }
}

@media (max-width: 1100px) {
  .btn-more-small {
    padding: 5px 15px;
    height: 40px;
  }

  .btn-more-small::after {
    content: "";
    flex-shrink: 0;
    background: url(../images/share/icon_arrow.svg) no-repeat center right/15px auto;
    border-left: 1px dotted var(--color_white);
    width: 25px;
    height: 15px;
  }
}

.btn-x {
  background-color: #333;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 40px;
  border-radius: 100px;
  color: var(--color_white);
  font-weight: 600;
  line-height: 1;
  height: 55px;
  min-width: 270px;
  transition: background-color 0.3s;
}

.btn-x::before {
  content: "";
  background: url(../images/share/icon_x.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
}

@media (any-hover: hover) {
  .btn-x:hover {
    background-color: #545454;
  }
}

@media (max-width: 1100px) {
  .btn-x {
    gap: 15px;
    padding: 5px 25px;
    height: 50px;
    min-width: 200px;
  }

  .btn-x::before {
    width: 15px;
    height: 15px;
  }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  border-radius: 50px;
  background-color: var(--color_white);
  color: var(--color_black);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0 25px;
  height: 50px;
  min-width: 250px;
}

.btn-cta::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/icon_contact.svg) no-repeat center/contain;
  mask: url(../images/share/icon_contact.svg) no-repeat center/contain;
  width: 20px;
  height: 15px;
  margin-top: 3px;
}

.btn-cta-large {
  display: block;
  background-color: var(--color_primary);
  border-radius: 10px;
  color: var(--color_white);
  font-size: 1.125rem;
  line-height: 1;
  padding: 35px 80px 35px 30px;
  min-width: 270px;
  gap: 5px 20px;
  position: relative;
}

.btn-cta-large::after {
  content: "";
  width: 55px;
  height: 40px;
  background: url(../images/share/icon_arrow.svg) right center/30px no-repeat;
  border-left: 3px dotted var(--color_white);
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}

.btn-cta-large [lang=en] {
  font-size: 2.8125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-cta-large .jp {
  font-weight: 600;
  font-size: 0.9375rem;
}

.btn-cta-large .text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 25px;
}

@media (max-width: 1100px) {
  .btn-cta-large {
    font-size: 0.9375rem;
    padding: 25px 100px 25px 25px;
    gap: 5px 20px;
  }

  .btn-cta-large::after {
    right: 25px;
  }

  .btn-cta-large [lang=en] {
    font-size: 2.1875rem;
    margin-bottom: 10px;
  }

  .btn-cta-large .jp {
    font-size: 0.9375rem;
  }

  .btn-cta-large .text {
    font-size: 0.8125rem;
  }
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-weight: 700;
  min-height: 50px;
  padding: 0 60px 0 25px;
  position: relative;
  transition: background-color 0.3s;
}

.btn-download .label {
  background-color: oklch(from var(--color_white) l c h/0.2);
  padding: 2px 10px;
  border-radius: 2px;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1.5;
}

.btn-download::after {
  content: "";
  background: url(../images/share/icon_download.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 1;
}

@media (any-hover: hover) {
  .btn-download:hover {
    background-color: var(--color_secondary);
  }
}

.btn-youtube {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--color_black);
  color: var(--color_white);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background-color 0.3s;
}

.btn-youtube::before {
  content: "";
  display: inline-flex;
  background: url(../images/share/icon_youtube.svg) no-repeat center/contain;
  width: 25px;
  height: 25px;
}

@media (any-hover: hover) {
  .btn-youtube:hover {
    background-color: oklch(from var(--color_black) l c h/0.9);
  }
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  justify-content: center;
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-size: 1.0625rem;
  line-height: 1;
  margin-bottom: 17px;
}

.btn-back {
  display: inline-flex;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 50px;
}

.btn-back::before {
  content: "";
  background-color: #333;
  -webkit-mask: url(../images/share/icon_back.svg) no-repeat center/contain;
  mask: url(../images/share/icon_back.svg) no-repeat center/contain;
  width: 17px;
  height: 12px;
}

@media (any-hover: hover) {
  .btn-back:hover {
    text-decoration: underline;
  }
}

@media (max-width: 1100px) {
  .btn-back {
    margin-bottom: 15px;
  }
}

.btn-back-large {
  display: block;
  background-color: var(--color_primary);
  border-radius: 10px;
  color: var(--color_white);
  line-height: 1;
  padding: 35px 80px 35px 30px;
  min-width: 270px;
  gap: 5px 20px;
  width: min(100%, 1024px);
  position: relative;
  margin: 50px auto 0;
}

.btn-back-large::after {
  content: "";
  width: 55px;
  height: 40px;
  background: url(../images/share/icon_arrow.svg) right center/30px no-repeat;
  border-left: 3px dotted var(--color_white);
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}

.btn-back-large [lang=en] {
  font-size: 2.8125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-back-large .jp {
  font-weight: 600;
  font-size: 0.9375rem;
}

@media (max-width: 1100px) {
  .btn-back-large {
    padding: 20px 80px 20px 20px;
  }

  .btn-back-large::after {
    right: 25px;
  }

  .btn-back-large [lang=en] {
    font-size: 2.1875rem;
  }

  .btn-back-large .jp {
    font-size: 0.75rem;
  }
}

/*カテゴリーリスト*/
.category-select-area {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  border-radius: 10px;
  margin-block-end: 50px;
}

.category-select-area .item {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 20px;
}

.category-select-area .item+.item {
  border-top: 1px solid var(--color_border);
}

.category-select-area .ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.5;
}

.category-select-area .ttl::before {
  content: "";
  display: block;
  background-color: var(--color_black);
  width: 15px;
  height: 15px;
}

.category-select-area .ttl.service::before {
  -webkit-mask: url(../images/share/icon_service.svg) no-repeat center/contain;
  mask: url(../images/share/icon_service.svg) no-repeat center/contain;
}

.category-select-area .ttl.type::before {
  -webkit-mask: url(../images/share/icon_type.svg) no-repeat center/contain;
  mask: url(../images/share/icon_type.svg) no-repeat center/contain;
}

.category-select-area .ttl.product::before {
  -webkit-mask: url(../images/share/icon_product.svg) no-repeat center/contain;
  mask: url(../images/share/icon_product.svg) no-repeat center/contain;
}

.category-select-area .ttl.subsidy::before {
  -webkit-mask: url(../images/share/icon_subsidy.svg) no-repeat center/contain;
  mask: url(../images/share/icon_subsidy.svg) no-repeat center/contain;
}

.case-submit-btn {
  text-align: center;
  margin-block-end: 60px;
}

@media (max-width: 1100px) {
  .category-select-area {
    border-radius: 10px;
    margin-bottom: 30px;
  }

  .category-select-area .item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px;
  }
}

.list-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list-category-links a {
  display: block;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100vmax;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 1px 10px;
  transition: 0.3s;
}

.list-category-links a.is-active {
  background-color: var(--color_primary);
  color: #fff;
}

@media (any-hover: hover) {
  .list-category-links a:hover {
    background-color: var(--color_primary);
    color: #fff;
  }
}

.list-category-links .checkbox-label {
  cursor: pointer;
  user-select: none;
}

.list-category-links .checkbox-label input[type="checkbox"] {
  display: none;
}

.list-category-links .checkbox-label span {
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100vmax;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 1px 10px;
  transition: 0.3s;
}

.list-category-links .checkbox-label:hover span {
  background-color: var(--color_border);
}

.list-category-links .checkbox-label input:checked+span {
  background-color: var(--color_primary);
  color: var(--color_white);
  border-color: var(--color_primary);
}

.list-category-links .checkbox-label input:focus-visible+span {
  outline: 2px solid var(--color_primary);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .list-category-links {
    gap: 5px;
  }
}

/*コラム*/
.post-under-column {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 35px 28px;
  margin-bottom: 50px;
}

.post-under-column .post-img {
  border-radius: 10px;
  border: 1px solid var(--color_border);
  overflow: hidden;
  margin-bottom: 20px;
}

.post-under-column .post-img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s;
}

.post-under-column time {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 10px;
}

.post-under-column .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.post-under-column .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-under-column .category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color_secondary);
  font-size: 0.75rem;
  line-height: 1;
}

.post-under-column .category::before {
  content: "";
  border-radius: 100%;
  background-color: var(--color_secondary);
  width: 7px;
  height: 7px;
  margin-top: 1px;
}

@media (any-hover: hover) {
  .post-under-column .post-img img:hover {
    scale: 1.1;
  }
}

@media (max-width: 1100px) {
  .post-under-column {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--color_border);
    margin-bottom: 35px;
  }

  .post-under-column a {
    border-bottom: 1px solid var(--color_border);
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 10px 0;
  }

  .post-under-column .post-img {
    margin-bottom: 0;
  }

  .post-under-column .post-img img {
    aspect-ratio: 7/5;
  }

  .post-under-column .post-desc {
    line-height: 1;
  }

  .post-under-column time {
    text-box: trim-both cap alphabetic;
    font-size: 0.6875rem;
    margin-bottom: 5px;
  }

  .post-under-column .post-ttl {
    font-size: 0.9375rem;
    margin-bottom: 10px;
  }

  .post-under-column .category {
    font-size: 0.625rem;
    padding: 3px 6px;
  }
}

/*導入事例*/
.post-under-case {
  display: grid;
  gap: 25px;
}

.post-under-case .post-item {
  border: 1px solid var(--color_border);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 40%;
  grid-template-areas: "desc img";
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: justify;
  height: 100%;
}

.post-under-case .item-img {
  grid-area: img;
}

.post-under-case .item-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.post-under-case .item-desc {
  grid-area: desc;
  padding: 50px;
}

.post-under-case .item-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.post-under-case .item-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  .post-under-case {
    display: grid;
    gap: 25px;
  }

  .post-under-case .post-item {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .post-under-case .item-img {
    grid-area: img;
  }

  .post-under-case .item-img img {
    aspect-ratio: 7/5;
  }

  .post-under-case .item-desc {
    display: block;
    padding: 15px;
  }

  .post-under-case .item-ttl {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .post-under-case .item-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

.case-category {
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 5px;
  display: grid;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.case-category .item {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 10px 15px;
}

.case-category .item+.item {
  border-top: 1px solid var(--color_border);
}

.case-category dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.case-category dt::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
}

.case-category dt.service::before {
  background: url(../images/share/icon_service.svg) no-repeat center/contain;
}

.case-category dt.type::before {
  background: url(../images/share/icon_type.svg) no-repeat center/contain;
}

.case-category dt.product::before {
  background: url(../images/share/icon_product.svg) no-repeat center/contain;
}

.case-category dt.subsidy::before {
  background: url(../images/share/icon_subsidy.svg) no-repeat center/contain;
}

@media (max-width: 1100px) {
  .case-category {
    font-size: 0.6875rem;
  }

  .case-category .item {
    grid-template-columns: 110px 1fr;
    padding: 5px;
  }

  .case-category dt {
    gap: 5px;
  }

  .case-category dt::before {
    width: 12px;
    height: 12px;
  }
}

.under-case-slider {
  color: var(--color_black);
  padding-left: calc((90% - 1200px) / 2);
  margin-left: 5%;
  position: relative;
  z-index: 5;
}

.under-case-slider .splide__track {
  padding-right: 5%;
}

.under-case-slider .post-item {
  background-color: var(--color_white);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 45%;
  grid-template-areas: "desc img";
  gap: 25px;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: justify;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.under-case-slider .item-img {
  grid-area: img;
}

.under-case-slider .item-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.under-case-slider .item-desc {
  display: flex;
  flex-direction: column;
  grid-area: desc;
  padding: 40px;
}

.under-case-slider .item-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.under-case-slider .item-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.under-case-slider .post-data {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.under-case-slider .post-data .item {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 5px 0;
}

.under-case-slider .post-data .item+.item {
  border-top: 1px solid var(--color_border);
}

.under-case-slider .post-data dt {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  color: var(--color_gray_02);
}

.under-case-slider .post-data dt::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
}

.under-case-slider .post-data dt.service::before {
  background: url(../images/share/icon_service.svg) no-repeat center/contain;
}

.under-case-slider .post-data dt.type::before {
  background: url(../images/share/icon_type.svg) no-repeat center/contain;
}

.under-case-slider .post-data dt.product::before {
  background: url(../images/share/icon_product.svg) no-repeat center/contain;
}

.under-case-slider .post-data dt.subsidy::before {
  background: url(../images/share/icon_subsidy.svg) no-repeat center/contain;
}

.under-case-slider .item-btn {
  margin-top: auto;
}

.under-case-slider .splide__navi {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.under-case-slider .splide .splide__pagination {
  display: flex !important;
}

.under-case-slider .splide__arrow--prev,
.under-case-slider .splide__arrow--next {
  border: 2px solid var(--color_white);
  background-color: inherit;
}

.under-case-slider .splide__arrow--prev::before,
.under-case-slider .splide__arrow--next::before {
  content: "";
  background-color: var(--color_white);
}

.under-case-slider .splide__pagination__page.is-active {
  background-color: var(--color_secondary);
}

.tall-blue .under-case-slider .no-post {
  color: var(--color_white);
}

@media (max-width: 1100px) {
  .under-case-slider .post-item {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .under-case-slider .item-img img {
    aspect-ratio: 7/5;
  }

  .under-case-slider .item-desc {
    display: block;
    padding: 15px;
  }

  .under-case-slider .item-ttl {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .under-case-slider .item-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

/*解説動画*/
.post-under-youtube {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.post-under-youtube li {
  border: 1px solid var(--color_border);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
}

.post-under-youtube iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

/*詳細ページ*/
.layout-single-post {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  border-radius: 10px;
  max-width: 1024px;
  margin-inline: auto;
  overflow: hidden;
}

.layout-single-post .l-header {
  color: var(--color_white);
  background: url(../images/sec04_bg.jpg) repeat center/cover;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.layout-single-post .l-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.layout-single-post .l-label {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  line-height: 1;
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.layout-single-post time {
  font-family: var(--font_en);
  font-size: 0.875rem;
  line-height: 1;
}

.layout-single-post .l-ttl {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.4;
}

.layout-single-post .category-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.layout-single-post .category-wrap .category {
  display: inline-flex;
  border: 1px solid var(--color_white);
  background-color: oklch(from var(--color_white) l c h/0.1);
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  padding: 5px 10px;
  text-align: center;
}

.layout-single-post .category-wrap .category::before {
  content: "#";
}

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
}

.layout-single-post .l-body {
  padding: 50px;
}

.layout-single-post .post-data {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  .layout-single-post .l-header {
    padding: 25px 15px;
  }

  .layout-single-post .l-meta {
    margin-bottom: 20px;
  }

  .layout-single-post .l-ttl {
    font-size: 1.5625rem;
  }

  .layout-single-post .l-body {
    padding: 15px;
  }
}

/*ページャー*/
.post-number {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: #c8c8c8;
  font-size: 1rem;
  line-height: 1;
  position: relative;
  transition: color 0.3s;
}

.post-number span:hover,
.post-number a:hover {
  color: #333;
}

.post-number .current {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 15px;
}

.post-number .prev,
.post-number .next {
  width: 10px;
  height: 10px;
  margin-top: 5px;
}

.post-number .prev {
  margin-right: 10px;
}

.post-number .next {
  margin-left: 10px;
}

.post-number .prev::before,
.post-number .next::before {
  content: "";
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}

.post-number .prev::before {
  -webkit-mask: url(../images/share/post_prev.svg) no-repeat center/contain;
  mask: url(../images/share/post_prev.svg) no-repeat center/contain;
}

.post-number .next::before {
  -webkit-mask: url(../images/share/post_next.svg) no-repeat center/contain;
  mask: url(../images/share/post_next.svg) no-repeat center/contain;
}

@media (max-width: 1100px) {
  .post-number {
    gap: 15px;
    margin-top: 30px;
  }
}

.post-number-single {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  text-align: center;
  margin-top: 5rem;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: var(--color_primary);
  color: var(--color_white);
  border: 1px solid var(--color_primary);
  font-size: 0.8125rem;
  font-family: var(--font_en);
  line-height: 28px;
  max-width: 200px;
  height: 30px;
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
}

.post-number-single .all:hover {
  background: var(--color_base);
  color: var(--color_primary);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  width: 30px;
  height: 30px;
  position: relative;
  transition: background-color 0.3s;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: background-color 0.3s;
  width: 10px;
  height: 10px;
}

.post-number-single .prev::before {
  right: 8px;
}

.post-number-single .next::before {
  left: 8px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background-color: var(--color_primary);
}

.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  background-color: var(--color_white);
}

.post-number-single .prev::before {
  -webkit-mask: url(../images/share/post_next.svg) no-repeat center/contain;
  mask: url(../images/share/post_next.svg) no-repeat center/contain;
}

.post-number-single .next::before {
  -webkit-mask: url(../images/share/post_prev.svg) no-repeat center/contain;
  mask: url(../images/share/post_prev.svg) no-repeat center/contain;
}

/*目次*/
#toc_container {
  display: block;
  background-color: var(--color_gray_light);
  border-radius: 5px;
  border: none;
  padding: 30px;
  margin: 0 auto 50px;
  font-size: 100%;
  width: 100%;
}

#toc_container span.toc_toggle {
  display: none;
}

#toc_container .toc_title {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-size: 0.9375rem;
  margin-bottom: 10px;
}

#toc_container .toc_title::before {
  content: "";
  background: url(../images/share/icon_toc.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
}

#toc_container .toc_list {
  font-size: 15px;
}

#toc_container .toc_list li {
  list-style: none;
}

#toc_container .toc_list>li a {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  text-decoration: none;
}

#toc_container .toc_list>li .toc_number {
  white-space: nowrap;
}

#toc_container .toc_list ul {
  font-size: 14px;
  margin-left: 15px;
  padding-bottom: 15px;
}

#toc_container .toc_list ul li {
  position: relative;
}

#toc_container .toc_list ul a {
  padding: 5px 0 5px 0;
  font-weight: 500;
}

#toc_container .toc_list a {
  border-bottom: 1px solid #ccc;
  display: block;
  padding: 5px 0 5px 0;
  font-weight: 600;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  #toc_container .toc_list a:hover {
    color: var(--color_primary);
    text-decoration: none;
  }
}

@media (max-width: 1100px) {
  #toc_container {
    padding: 25px;
  }
}

/*------------
modal
--------------*/
body.is-fixed {
  overflow: clip;
}

.modal-trigger {
  color: #333;
}

.modal-detail-area {
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-property: opacity, visibility;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  overflow: hidden;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  will-change: opacity, backdrop-filter;
  z-index: 1000000;
}

.modal-detail-area[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-duration: 0.3s;
}

.modal-detail-area[aria-hidden=false] .modal-detail-contaier {
  transform: translateY(0%);
}

.modal-detail-contaier {
  display: grid;
  grid-template-rows: 60px 1fr;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 6px oklch(from #1E4B90 l c h/0.3);
  max-width: 1024px;
  max-height: 600px;
  height: 100%;
  width: 100%;
  position: relative;
  transition: transform 0.5s ease;
  transform: translateY(100%);
  z-index: 5;
  overflow: hidden;
}

.modal-detail-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal-detail-item {
  opacity: 0;
  background-color: #fff;
  padding: 50px;
  transition: opacity 0.5s;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.modal-detail-item.is-visible {
  opacity: 1;
  z-index: 5;
}

.modal-detail-item::-webkit-scrollbar {
  display: none;
}

.modal-detail-btns {
  background-image: linear-gradient(105deg, #59A9F8 0%, #33b255 80%);
  border-right: 1px solid var(--color_border02);
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
}

.modal-detail-btns hr {
  border-left: 1px solid #d0d0d0;
  border-width: 0 0 0 1px;
  margin: 0 15px;
  width: 1px;
  height: 30px;
}

.modal-detail-btns button {
  border: 1px solid #fff;
  border-radius: 100vmax;
  color: #fff;
  padding: 10px 0;
  transition: background-color 0.3s;
  height: 35px;
  width: 35px;
  position: relative;
  box-sizing: border-box;
}

.modal-detail-btns button::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 12px;
  width: 12px;
}

.modal-detail-btns button.modal-detail-prev::before {
  -webkit-mask: url(../images/share/modal_prev.svg) no-repeat center/contain;
  mask: url(../images/share/modal_prev.svg) no-repeat center/contain;
}

.modal-detail-btns button.modal-detail-next::before {
  -webkit-mask: url(../images/share/modal_next.svg) no-repeat center/contain;
  mask: url(../images/share/modal_next.svg) no-repeat center/contain;
}

.modal-detail-btns button.modal-detail-close {
  border-radius: 2px;
}

.modal-detail-btns button.modal-detail-close::before {
  -webkit-mask: url(../images/share/modal_close.svg) no-repeat center/contain;
  mask: url(../images/share/modal_close.svg) no-repeat center/contain;
}

@media (any-hover: hover) {
  .modal-detail-btns button:hover {
    background-color: #fff;
  }

  .modal-detail-btns button:hover::before {
    background-color: var(--color_primary);
  }
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
  z-index: 1;
}

.modal-detail-ttl {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}

.modal-detail-ttl .small {
  font-size: 1.5rem;
}

@media (max-width: 1100px) {
  .modal-detail-contaier {
    max-width: 90vw;
    max-height: 90vh;
  }

  .modal-detail-item {
    padding: 25px 5%;
  }
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 1.5%;
  position: fixed;
  top: 0;
  width: 100%;
  transition: background-color 0.3s ease;
  z-index: 100;
}

.header.is-fixed {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
}


.h-utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.h-btn {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  border-radius: 50px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 20px;
  height: 50px;
  transition: background-color 0.3s;
}

.h-btn::before {
  content: "";
  background: url(../images/share/icon_contact.svg) no-repeat center/contain;
  width: 19px;
  height: 14px;
}

@media (any-hover: hover) {
  .h-btn:hover {
    background-color: var(--color_secondary);
  }
}

@media (max-width: 1300px) {

  .header {
    gap: 15px;
    padding: 20px 2.5%;
  }

  .h-logo {
    max-width: 200px;
  }

  .h-utility {
    display: none;
  }

  .h-btn {
    justify-content: center;
    position: fixed;
    bottom: 15px;
    right: 15px;
    left: 15px;
    z-index: 100;
  }
}

/*------------
Gnavi
--------------*/
@media (max-width: 1300px) {
  .gnavi {
    display: none;
  }
}

.gnavi-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.gnavi-links>li>a {
  display: inline-block;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .gnavi-links>li>a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

/*dropdown*/
.dropdown {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}

.dropdown::after {
  content: "";
  display: block;
  background: url(../images/share/icon_plus.svg) no-repeat center/contain;
  width: 10px;
  height: 10px;
}

.dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.dropdown .sub-menu {
  display: grid;
  grid-template-columns: 170px 1fr;
  grid-gap: 5px;
  pointer-events: none;
  background-color: var(--color_white);
  border-radius: 5px;
  border: 1px solid var(--color_border);
  padding: 40px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: -moz-max-content;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.dropdown .sub-menu a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
}

@media (any-hover: hover) {
  .dropdown .sub-menu a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.dropdown .sub-menu-ttl {
  line-height: 1;
}

.dropdown .sub-menu-ttl [lang=en] {
  font-size: 1.4375rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.dropdown .sub-menu-ttl .jp {
  font-size: 0.8125rem;
}

.dropdown .sub-menu-list {
  display: grid;
  gap: 1em;
  line-height: 1.5;
}

.dropdown .sub-menu-list li {
  position: relative;
  padding-left: 15px;
}

.dropdown .sub-menu-list li::before {
  content: "";
  border-top: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0.6em;
  left: 0;
  rotate: 45deg;
}

.dropdown:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: #333;
  color: var(--color_white);
  margin-top: auto;
  position: relative;
}

.f-cta {
  background: url(../images/share/bg_cta.png) no-repeat center/cover;
  padding: 150px 0;
  position: relative;
  overflow-x: clip;
  z-index: 1;
}

.f-cta::before {
  content: "";
  pointer-events: none;
  width: 1800px;
  height: 650px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/share/f_cta_town.svg) center bottom no-repeat;
  z-index: 2;
}

.f-cta .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
  position: relative;
  z-index: 5;
}

.f-cta-ttl {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.f-cta-catch {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.f-cta-text {
  max-width: 600px;
  font-size: 1rem;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 20px;
}

.f-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 50px;
  background-color: var(--color_white);
  color: var(--color_black);
  font-size: 1.4375rem;
  font-weight: 600;
  padding: 30px 20px;
  height: 100px;
  min-width: 450px;
  transition: background-color 0.3s, color 0.3s;
}

.f-cta-btn::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/icon_contact.svg) no-repeat center/contain;
  mask: url(../images/share/icon_contact.svg) no-repeat center/contain;
  width: 34px;
  height: 24px;
  margin-top: 3px;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .f-cta-btn:hover {
    background-color: var(--color_primary);
    color: var(--color_white);
  }

  .f-cta-btn:hover::before {
    background-color: var(--color_white);
  }
}

.f-cta-rimipachi {
  bottom: 0;
  right: 5%;
  z-index: 3;
}

.f-contents {
  padding: 160px 0 0;
}

.f-contents .wrap {
  border-bottom: 1px solid #454545;
  display: grid;
  grid-template-columns: 410px 1fr;
  padding-bottom: 100px;
  position: relative;
}

.f-contents hr {
  border-color: #606060;
  width: 100%;
  margin: 25px auto;
}

.f-logo {
  margin-bottom: 50px;
}

.f-sns {
  display: flex;
  align-items: center;
  gap: 25px;
}

.f-sns p {
  color: #4E9CE0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
}

.f-sns ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

.f-txt {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.f-bnr {
  display: grid;
  gap: 15px;
  margin-top: 40px;
}

.site-map {
  display: flex;
  gap: 6rem;
  justify-content: flex-end;
  align-items: flex-start;
}

.f-links-ttl {
  color: #4E9CE0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 30px;
}

.f-links {
  display: grid;
  grid-gap: 10px 20px;
  line-height: 1.5;
  font-size: 0.875rem;
}

.f-links a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .f-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.f-links .out {
  position: relative;
}

.f-links .out::after {
  content: "";
  display: inline-block;
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 9px;
  height: 8px;
  margin-left: 4px;
  margin-bottom: 1px;
}

.f-links+.f-links-ttl {
  margin-top: 50px;
}

.f-bottom {
  padding: 35px 0 50px;
}

.f-bottom .wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.f-bottom-links {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  line-height: 1;
  flex-wrap: wrap;
}

.f-bottom-links li+li::before {
  content: "|";
  color: #606060;
  margin: 0 15px;
}

.f-bottom-links a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .f-bottom-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.f-bottom-links .out {
  position: relative;
}

.f-bottom-links .out::after {
  content: "";
  display: inline-block;
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 9px;
  height: 8px;
  margin-left: 4px;
  margin-bottom: 1px;
}

.copyright {
  font-size: 0.8125rem;
}

.pagetop {
  position: absolute;
  bottom: 25px;
  right: 0;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .pagetop:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 1300px) {
  .f-cta {
    padding: 80px 0 120px;
    text-align: justify;
  }

  .f-cta::before {
    width: 1800px;
    height: 650px;
    background: url(../images/share/f_cta_town.svg) center bottom no-repeat;
    z-index: -1;
  }

  .f-cta .wrap {
    display: grid;
    gap: 25px;
  }

  .f-cta-ttl {
    font-size: 3.4375rem;
    margin-bottom: 10px;
  }

  .f-cta-catch {
    font-size: 1.5625rem;
    margin-bottom: 20px;
  }

  .f-cta-btn {
    font-size: 1.125rem;
    height: 50px;
    min-width: 0;
    width: 100%;
  }

  .f-cta-rimipachi {
    bottom: -40px;
    right: 5%;
    width: 120px;
    z-index: 0;
  }

  .f-contents {
    padding: 80px 0 0;
  }

  .f-contents .wrap {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 80px;
  }

  .f-logo {
    margin-bottom: 35px;
  }

  .f-sns {
    margin-top: 25px;
  }

  .f-txt {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .f-bnr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
    max-width: 500px;
  }

  .f-bnr img {
    width: 100%;
  }

  .site-map {
    flex-direction: column;
    gap: 35px;
  }

  .f-links-ttl {
    margin-bottom: 15px;
  }

  .f-links+.f-links-ttl {
    margin-top: 35px;
  }

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

  .f-bottom {
    padding: 35px 0 100px;
  }

  .f-bottom .wrap {
    flex-direction: column;
    gap: 35px;
  }

  .f-bottom-links {
    display: flex;
    align-items: center;
    font-size: 0.8125rem;
    gap: 15px;
  }

  .f-bottom-links li+li::before {
    display: none;
    margin: 0 5px;
  }

  .pagetop {
    bottom: 25px;
    right: 50%;
    width: 100px;
    transform: translateX(50%);
  }
}

.sp-navi {
  display: none;
}

.sp-fixed-btn {
  display: none;
}

@media (max-width: 1300px) {
  :root {
    --navi-background: #f5f5f5;
    --navi-border-color: #333;
    --navi-text-color: #333;
    --svg-stroke: #333;
    --menu-btn: #333;
  }

	html.is-open {
		overflow: clip;
	}

  .sp-fixed-btn {
    background-color: var(--color_white);
    display: block;
    position: fixed;
    padding: 10px;
    bottom: 0;
    width: 100%;
    z-index: 100;
  }

  .sp-fixed-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    border-radius: 50px;
    background-color: var(--color_primary);
    color: var(--color_white);
    font-size: 0.9375rem;
    font-weight: 600;
    height: 45px;
  }

  .sp-fixed-btn a::before {
    content: "";
    background: url(../images/share/icon_contact.svg) no-repeat center/contain;
    width: 24px;
    height: 24px;
    margin-top: 3px;
  }

  .sp-navi {
    display: block;
  }

  .sp-menu-btn {
    background-color: var(--color_primary);
    border-radius: 3px;
    cursor: pointer;
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1005;
  }

  .sp-menu-btn-line {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 12px;
  }

  .sp-menu-btn-line span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color_white);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  }

  .sp-menu-btn-line span:nth-child(1) {
    top: 0;
  }

  .sp-menu-btn-line span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .sp-menu-btn-line span:nth-child(3) {
    top: auto;
    bottom: 0;
  }

  .sp-menu-btn-txt {
    display: block;
    color: var(--color_black);
    font-family: var(--font_en);
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 500;
    text-align: center;
    margin-top: 3px;
  }

  .sp-menu-btn.is-open .sp-menu-btn-line span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(35deg);
  }

  .sp-menu-btn.is-open .sp-menu-btn-line span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }

  .sp-menu-btn.is-open .sp-menu-btn-line span:nth-child(3) {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-35deg);
  }

  .sp-navi-drawer {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_white);
    color: var(--color_black);
    font-size: 0.9375rem;
    padding: 25px 25px 100px;
    position: fixed;
    inset: 0;
    transform: translateX(60px);
    transition: 0.5s var(--ease);
    opacity: 0;
    z-index: 1000;
  }

  .sp-navi-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition-timing-function: var(--ease);
  }

  .sp-logo {
    margin-bottom: 30px;
    max-width: 200px;
  }

  .sp-navi-list {
    border-top: 1px solid var(--color_gray);
    font-weight: bold;
    line-height: 1.5;
  }

  .sp-navi-list>li {
    position: relative;
    border-bottom: 1px solid var(--color_gray);
  }

  .sp-navi-list>li>a {
    display: grid;
    align-items: center;
    padding: 10px 25px 10px 0;
    position: relative;
    min-height: 50px;
  }

  .sp-navi-list>li>a::after {
    content: "";
    background-color: var(--color_black);
    -webkit-mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 11px;
    height: 11px;
    transform: translateY(-50%);
  }

  .sp-navi-list .out {
    position: relative;
  }

  .sp-navi-list .out::after {
    content: "";
    display: inline-block;
    background-color: var(--color_black);
    -webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
    mask: url(../images/share/icon_out.svg) no-repeat center/contain;
    width: 11px;
    height: 10px;
    margin-left: 7px;
  }

  .sp-details::details-content {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 15px;
    transition: 0.3s ease;
  }

  .sp-details[open]::details-content {
    background-color: rgba(0, 0, 0, 0.015);
    grid-template-rows: 1fr;
    padding: 15px;
  }

  .sp-details[open] .plus {
    rotate: 45deg;
  }

  .sp-details-btn {
    display: flex;
    align-items: center;
    padding: 10px 30px 10px 0;
    position: relative;
    min-height: 50px;
    width: 100%;
  }

  .sp-details-btn .text {
    display: block;
  }

  .sp-details-btn .plus {
    display: block;
    background-color: var(--color_primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: 0.3s;
    transform-origin: 50% 0;
  }

  .sp-details-btn .plus::after {
    content: "";
    background-color: var(--color_white);
    -webkit-mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
    mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
  }

  .sp-sub-menu {
    display: grid;
    grid-gap: 5px;
    font-size: 0.875rem;
  }

  .sp-sub-menu a {
    display: block;
    position: relative;
    padding-left: 20px;
  }

  .sp-sub-menu a::before {
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: var(--color_primary);
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  background: url(../images/hero_town.svg) repeat-x center bottom;
  position: relative;
  min-height: 100vh;
  padding: 100px 3.5% 50px 7%;
  overflow: hidden;
}

.hero::before {
  content: "";
  background: url(../images/hero_ring@2x.png) no-repeat center/contain;
  height: 100vh;
  width: 100vh;
  position: absolute;
  top: 10%;
  right: -10%;
  z-index: 0;
}

.hero .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
  width: min(100%, 1600px);
  margin-inline: auto;
}

.hero-catch {
  position: relative;
  z-index: 5;
}

.hero-catch-sub {
  color: var(--color_primary);
  font-size: 1.3125rem;
  font-weight: 600;
}

.hero-catch-ttl {
  font-size: 3.6875rem;
  font-size: clamp(3.125rem, 0.6316vw + 2.977rem, 3.6875rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero-catch-txt {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 30px;
  max-width: 650px;
}

.hero-service {
  display: grid;
  gap: 15px;
  max-width: 520px;
}

.hero-service a {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

@media (any-hover: hover) {
  .hero-service a:hover .hero-service-img img {
    transform: scale(1.05);
  }

  .hero-service a:hover .arrow {
    background-color: var(--color_primary);
    border-color: var(--color_primary);
  }

  .hero-service a:hover .arrow::before {
    background-color: var(--color_white);
  }
}

.hero-service-img {
  position: relative;
}

.hero-service-img::before {
  content: "";
  background: oklch(from var(--color_black) l c h/0.46);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-service-img img {
  width: 100%;
  height: 26vh;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s;
}

.hero-service-desc {
  display: flex;
  flex-direction: column;
  position: absolute;
  inset: 20px;
  color: var(--color_white);
  line-height: 1.2;
  z-index: 2;
}

.hero-service-desc .num {
  background: var(--gradient);
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-service-desc .sub {
  margin-top: auto;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-service-desc .ttl {
  font-size: 1.5625rem;
  font-weight: 700;
}

.hero-service-desc .arrow {
  border: 1px solid var(--color_white);
  width: 55px;
  height: 22px;
  border-radius: 100px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: background-color 0.3s, border-color 0.3s;
}

.hero-service-desc .arrow::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  width: 13px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-rimipachi {
  bottom: -120px;
  right: -20px;
}

@media (max-width: 1100px) {
  .hero {
    background: none;
    min-height: auto;
    padding: 100px 0 15px;
  }

  .hero::before {
    display: none;

  }

  .hero .wrapper {
    flex-direction: column;
	  align-items: normal;
    gap: 15px;
    justify-content: start;
  }

  .hero-catch {
    position: relative;
    overflow: hidden;
  }

  .hero-catch::before {
    content: "";
    background: url(../images/hero_town.svg) repeat-x center bottom / cover;
    width: 100%;
    height: 180px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -3;
  }

  .hero-catch::after {
    content: "";
    background: url(../images/hero_ring@2x.png) no-repeat center / contain;
    height: 500px;
    width: 500px;
    position: absolute;
    top: 20%;
    right: -50%;
    opacity: .5;
    z-index: -1;
  }

  .hero-catch-inner {
    padding: 0 15px 150px;
  }

  .hero-catch-sub {
    font-size: 0.9375rem;
    margin-bottom: 5px;
  }

  .hero-catch-ttl {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .hero-catch-txt {
    font-size: 0.875rem;
    margin-bottom: 30px;
    max-width: 650px;
  }

  .hero-service {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 0 15px;
	  max-width: 100%;
  }

  .hero-service-img img {
    width: 100%;
    height: auto;
  }

  .hero-service-desc {
    inset: 15px;
  }

  .hero-rimipachi {
    top: auto;
    bottom: 10px;
    right: 10px;
    width: 130px;
  }
}

@media (max-width: 800px) {
  .hero-service-img img {
    aspect-ratio: 368/150;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  line-height: 1.5;
  margin-bottom: 80px;
}

.t-h2 [lang=en] {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.t-h2 .jp {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.5;
}

.t-h2-wrap {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  .t-h2 {
    line-height: 1.5;
    margin-bottom: 35px;
  }

  .t-h2 [lang=en] {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .t-h2 .jp {
    font-size: 1rem;
  }

  .t-h2-wrap {
    flex-direction: column;
    align-items: start;
  }
}

/*------------
Section
--------------*/
.sec01 {
  background: url(../images/share/bg_noise.jpg) repeat;
  padding: 160px 0;
  overflow: hidden;
}

.topics-slider {
  padding-left: calc((90% - 1440px) / 2);
  margin-left: 5%;
}

.topics-slider .col {
  position: relative;
}

.topics-slider .col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.topics-slider .splide-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
}

.topics-slider .slider-ttl {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1100px) {
  .sec01 {
    padding: 80px 0;
    overflow: hidden;
  }

  .topics-slider {
    padding-left: 15px;
    margin-left: 0;
  }

  .topics-slider .col:first-child {
    flex-direction: row;
    justify-content: space-between;
  }

  .topics-slider .splide-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .topics-slider .slider-ttl {
    font-size: 2.1875rem;
  }
}

.sec02 {
  background: url(../images/sec02_bg.png) no-repeat right bottom;
  padding: 200px 0 180px;
  position: relative;
}

.sec02::before {
  content: "";
  background: url(../images/sec02_ring.svg) no-repeat right bottom/contain;
  width: 378px;
  height: 370px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.sec02-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.sec02-list li+li {
  position: relative;
}

.sec02-list li+li::before {
  content: "";
  background-color: #ddd;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
}

.sec02-list a {
  display: grid;
  height: 100%;
}

.sec02-list .list-ttl {
  margin-top: -70px;
}

.sec02-list .list-ttl .no {
  color: var(--color_secondary);
  font-size: 1.3125rem;
  font-family: var(--font_en);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}

.sec02-list .list-ttl .no span {
  display: block;
  font-size: 5.5rem;
}

.sec02-list .list-ttl .ttl {
  font-size: 1.4375rem;
  line-height: 1.5;
  padding-left: 35px;
}

.sec02-list .arrow {
  display: inline-block;
  border-radius: 100px;
  border: 1px solid var(--color_black);
  width: 54px;
  height: 22px;
  margin: auto 0 0 auto;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}

.sec02-list .arrow::before {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  width: 13px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (any-hover: hover) {
  .sec02-list a:hover .arrow {
    background-color: var(--color_primary);
    border-color: var(--color_primary);
  }

  .sec02-list a:hover .arrow::before {
    background-color: var(--color_white);
  }
}

.sec02-rimipachi {
  top: -120px;
  left: 2.5%;
}

@media (max-width: 1100px) {
  .sec02 {
    padding: 120px 0 80px;
  }

  .sec02::before {
    width: 260px;
    height: 250px;
  }

  .sec02 .t-h2 {
    margin-bottom: 0;
  }

  .sec02-rimipachi {
    top: -70px;
    left: -5%;
    width: 120px;
  }

  .sec02-list {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .sec02-list li+li::before {
    width: 100%;
    height: 1px;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
  }

  .sec02-list .list-img img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 250px;
  }

  .sec02-list .list-ttl {
    margin-top: -70px;
    margin-bottom: 15px;
  }

  .sec02-list .list-ttl .no {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .sec02-list .list-ttl .no span {
    font-size: 3.75rem;
  }
}

.sec03 {
  background: url(../images/share/bg_noise.jpg) repeat;
  padding: 160px 0 300px;
  overflow: hidden;
  position: relative;
}

.sec03::before {
  content: "";
  background: url(../images/sec03_ring.svg) no-repeat right bottom;
  width: 294px;
  height: 339px;
  position: absolute;
  top: 0;
  left: 0;
}

.sec03::after {
  content: "";
  background: url(../images/sec03_town.svg) no-repeat center bottom/contain;
  width: 1677px;
  height: 256px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sec03 .t-h2 {
  position: relative;
  z-index: 1;
}

.sec03-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.sec03-layout .l-nav {
  border-top: 1px solid var(--color_border);
  margin-right: 10%;
}

.sec03-layout .l-nav-item {
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--color_border);
  min-height: 190px;
  padding: 10px 0;
  position: relative;
  opacity: 0.5;
}

.sec03-layout .l-nav-item::before {
  content: "";
  background: url(../images/share/icon_arrow02.svg) no-repeat center/contain;
  width: 10px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.sec03-layout .l-nav-item::after {
  content: "";
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: var(--gradient);
  background-position: 100% 100%;
  background-size: 0% 4px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
}

.sec03-layout .l-nav-item.is-active {
  background-color: var(--color_white);
  opacity: 1;
}

.sec03-layout .l-nav-item.is-active::after {
  background-position: 0 100%;
  background-size: 100% 4px;
}

.sec03-layout .l-nav-item-no {
  background: var(--gradient);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 10px;
  left: 10px;
}

.sec03-layout .l-nav-item-ttl {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  padding-left: 20%;
}

.sec03-layout .l-nav-item-ttl span {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

.sec03-layout .l-content {
  position: relative;
  text-align: justify;
}

.sec03-layout .l-content::after {
  content: "";
  background: url(../images/rimipachi03@2x.png) no-repeat center/contain;
  width: 176px;
  height: 175px;
  position: absolute;
  top: -160px;
  right: 30px;
}

.sec03-layout .l-content-item {
  display: none;
}

.sec03-layout .l-content-item.is-active {
  display: block;
  animation: content-show 0.6s ease-in-out forwards;
}

.sec03-layout .l-content-img {
  position: relative;
  margin-bottom: 15px;
}

.sec03-layout .l-content-img-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: var(--color_white);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5;
}

.sec03-layout .l-content-img-txt span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0.1em 0.2em;
}

@keyframes content-show {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .sec03 {
    padding: 80px 0 100px;
  }

  .sec03::before {
    width: 260px;
    height: 250px;
  }

  .sec03::after {
    width: 1200px;
    height: 140px;
  }

  .sec03-layout {
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
  }

  .sec03-layout .l-nav {
    display: none;
  }

  .sec03-layout .l-content {
    display: grid;
    gap: 35px;
  }

  .sec03-layout .l-content::after {
    width: 130px;
    height: 130px;
    position: absolute;
    top: -150px;
    right: -10px;
  }

  .sec03-layout .l-content-item {
    display: block;
  }

  .sec03-layout .l-content-img {
    background-color: var(--color_black);
  }

  .sec03-layout .l-content-img img {
    opacity: 0.85;
  }

  .sec03-layout .l-content-img-txt {
    gap: 10px;
    bottom: 5%;
    left: 2.5%;
    right: 2.5%;
    font-size: 1.0625rem;
  }

  .sec03-layout .l-content-img-txt span {
    padding: 0.1em 0.1em;
  }
}

.sec04 {
  background: url(../images/sec04_bg.jpg) repeat center/cover;
  padding: 160px 0 180px;
  overflow: hidden;
  position: relative;
}

.sec04::before {
  content: "";
  background: url(../images/sec04_ring.svg) no-repeat right bottom/contain;
  width: 859px;
  height: 1001px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.products-slider {
  color: var(--color_white);
  padding-left: calc((90% - 1440px) / 2);
  margin-left: 5%;
}

.products-slider .t-h2 {
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.products-slider .slider-intro {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8%;
  position: relative;
}

.products-slider .slider-intro::before {
  content: "";
  background: url(../images/rimipachi04@2x.png) no-repeat center/contain;
  width: 163px;
  height: 195px;
  position: absolute;
  bottom: 20px;
  left: -40px;
}

.products-slider .text {
  margin-top: 65px;
  max-width: 333px;
  text-align: justify;
}

.products-slider .splide-wrapper {
  display: grid;
  grid-template-columns: 630px 1fr;
}

.products-slider .slider-ttl {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
}

.products-slider .product-item {
  display: block;
  background-color: var(--color_white);
  color: var(--color_black);
  padding: 35px 35px 85px;
  border-radius: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: justify;
  position: relative;
  height: 100%;
}

.products-slider .product-img {
  text-align: center;
  margin-bottom: 35px;
}

.products-slider .product-label {
  border: 1px solid #333;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  padding: 5px 10px;
  margin-bottom: 5px;
  width: -moz-fit-content;
  width: fit-content;
}

.products-slider .product-ttl {
  line-height: 1.5;
  margin-bottom: 15px;
}

.products-slider .product-ttl .en {
  font-size: 2.0625rem;
}

.products-slider .product-ttl .jp {
  font-size: 0.75rem;
}

.products-slider .splide__navi {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.products-slider .splide .splide__pagination {
  display: flex !important;
}

.products-slider .splide__arrow--prev,
.products-slider .splide__arrow--next {
  border: 2px solid var(--color_white);
  background-color: inherit;
}

.products-slider .splide__arrow--prev::before,
.products-slider .splide__arrow--next::before {
  content: "";
  background-color: var(--color_white);
}

.products-slider .arrow {
  border: 1px solid var(--color_black);
  width: 54px;
  height: 22px;
  border-radius: 100px;
  display: inline-block;
  position: absolute;
  bottom: 25px;
  right: 35px;
  transition: background-color 0.3s, border-color 0.3s;
}

.products-slider .arrow::after {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  width: 13px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (any-hover: hover) {
  .products-slider a:hover .arrow {
    background-color: var(--color_primary);
    border-color: var(--color_primary);
  }

  .products-slider a:hover .arrow::after {
    background-color: var(--color_white);
  }
}

@media (max-width: 1100px) {
  .sec04 {
    padding: 100px 0;
  }

  .sec04::before {
    width: 859px;
    height: 1001px;
  }

  .products-slider {
    padding: 0 5%;
    margin: 0;
  }

  .products-slider .slider-intro {
    grid-template-columns: 60px 1fr;
    gap: 50px;
    max-width: 90vw;
  }

  .products-slider .slider-intro::before {
    width: 110px;
    height: 131px;
    top: -80px;
    right: -10px;
    bottom: auto;
    left: auto;
    transform: scale(-1, 1);
  }

  .products-slider .product-img img {
    max-height: 170px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .products-slider .product-item {
    padding: 30px 30px 80px;
    font-size: 0.9375rem;
  }

  .products-slider .product-img {
    text-align: center;
    margin-bottom: 35px;
  }

  .products-slider .product-label {
    font-size: 0.625rem;
    padding: 5px;
  }

  .products-slider .product-ttl .en {
    font-size: 1.875rem;
  }

  .products-slider .text {
    margin-top: 80px;
  }

  .products-slider .splide-wrapper {
    grid-template-columns: 1fr;
  }
}

.sec05 {
  background: url(../images/share/bg_noise.jpg) repeat;
  padding: 180px 0;
  position: relative;
}

.sec05::after {
  content: "";
  background: url(../images/sec05_ring.svg) no-repeat left bottom/contain;
  width: 352px;
  height: 658px;
  position: absolute;
  bottom: -180px;
  right: 0;
  z-index: 0;
}

.case-slider {
  color: var(--color_white);
  padding-left: calc((90% - 1440px) / 2);
  margin-left: 5%;
  position: relative;
  z-index: 5;
}

.case-slider::before {
  content: "";
  background: url(../images/rimipachi05@2x.png) no-repeat center/contain;
  width: 163px;
  height: 195px;
  position: absolute;
  top: -158px;
  right: 5%;
  z-index: 1;
}

.case-slider .case-item {
  display: block;
  background-color: var(--color_white);
  color: var(--color_black);
  padding: 40px 40px 130px;
  border-radius: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: justify;
  position: relative;
  height: 100%;
}

.case-slider .case-img {
  margin-bottom: 100px;
}

.case-slider .case-label {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  gap: 8px;
  margin-bottom: 5px;
}

.case-slider .case-label::before {
  content: "";
  background-color: var(--color_primary);
  width: 8px;
  height: 2px;
}

.case-slider .case-ttl {
  font-size: 1.875rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.case-slider .splide__navi {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.case-slider .splide .splide__pagination {
  display: flex !important;
}

.case-slider .splide__arrow--prev,
.case-slider .splide__arrow--next {
  border: 2px solid var(--color_black);
  background-color: inherit;
}

.case-slider .splide__arrow--prev::before,
.case-slider .splide__arrow--next::before {
  content: "";
  background-color: var(--color_black);
}

.case-slider .splide__pagination__page {
  background-color: #B1B1B1;
}

.case-slider .arrow {
  border: 1px solid var(--color_black);
  width: 54px;
  height: 22px;
  border-radius: 100px;
  display: inline-block;
  position: absolute;
  bottom: 25px;
  right: 35px;
  transition: background-color 0.3s, border-color 0.3s;
}

.case-slider .arrow::after {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  width: 13px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (any-hover: hover) {
  .case-slider a:hover .arrow {
    background-color: var(--color_primary);
    border-color: var(--color_primary);
  }

  .case-slider a:hover .arrow::after {
    background-color: var(--color_white);
  }
}

.sec05-rimipachi {
  pointer-events: none;
  bottom: -50px;
  left: 2.5%;
}

@media (max-width: 1100px) {
  .sec05 {
    padding: 100px 0;
  }

  .sec05::after {
    width: 130px;
    height: 243px;
    bottom: -130px;
    right: 0;
    z-index: 0;
  }

  .sec05 .btn-more {
    position: relative;
    z-index: 1;
  }

  .case-slider {
    margin-bottom: 50px;
  }

  .case-slider::before {
    width: 120px;
    height: 107px;
    top: -96px;
    right: 13%;
  }

  .case-slider .case-item {
    padding: 25px 25px 70px;
  }

  .case-slider .case-img {
    margin-bottom: 50px;
  }

  .case-slider .case-img img {
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 70px;
  }

  .case-slider .case-label {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .case-slider .case-ttl {
    font-size: 1.375rem;
  }

  .sec05-rimipachi {
    bottom: -50px;
    left: 2.5%;
    max-width: 120px;
  }
}

.sec06 {
  background: url(../images/sec06_bg.png) no-repeat left top;
  padding: 180px 0 0;
  margin-bottom: 200px;
}

@media (max-width: 1100px) {
  .sec06 {
    padding: 100px 0 0;
    margin-bottom: 100px;
  }
}

.post-top-column {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.post-top-column .post-img {
  border-radius: 10px;
  border: 1px solid var(--color_border);
  overflow: hidden;
  margin-bottom: 20px;
}

.post-top-column .post-img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s;
}

.post-top-column time {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 10px;
}

.post-top-column .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.post-top-column .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-top-column .category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color_secondary);
  font-size: 0.75rem;
  line-height: 1;
}

.post-top-column .category::before {
  content: "";
  border-radius: 100%;
  background-color: var(--color_secondary);
  width: 7px;
  height: 7px;
  margin-top: 1px;
}

@media (any-hover: hover) {
  .post-top-column .post-img img:hover {
    scale: 1.1;
  }
}

@media (max-width: 1100px) {
  .post-top-column {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--color_border);
    margin-bottom: 35px;
  }

  .post-top-column a {
    border-bottom: 1px solid var(--color_border);
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 10px 0;
  }

  .post-top-column .post-img {
    margin-bottom: 0;
  }

  .post-top-column .post-img img {
    aspect-ratio: 7/5;
  }

  .post-top-column .post-desc {
    line-height: 1;
  }

  .post-top-column time {
    text-box: trim-both cap alphabetic;
    font-size: 0.6875rem;
    margin-bottom: 5px;
  }

  .post-top-column .post-ttl {
    font-size: 0.9375rem;
    margin-bottom: 10px;
  }

  .post-top-column .category {
    font-size: 0.625rem;
    padding: 3px 6px;
  }
}

.sec07 {
  padding-bottom: 180px;
  position: relative;
}

.sec07::before {
  content: "";
  background: url(../images/sec07_ring.svg) no-repeat right bottom;
  width: 634px;
  height: 707px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sec07-list {
  background-color: var(--color_white);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  padding: 50px;
}

.sec07-list li+li {
  position: relative;
}

.sec07-list li+li::before {
  content: "";
  background-color: var(--color_border);
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50px;
}

.sec07-list a {
  display: block;
  height: 100%;
  position: relative;
  padding-bottom: 50px;
}

.sec07-list .list-img {
  margin-bottom: 25px;
}

.sec07-list .list-ttl {
  font-size: 1.5625rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.sec07-list p {
  text-align: justify;
}

.sec07-list .arrow {
  border: 1px solid var(--color_black);
  width: 54px;
  height: 22px;
  border-radius: 100px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: background-color 0.3s, border-color 0.3s;
}

.sec07-list .arrow::before {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  width: 13px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (any-hover: hover) {
  .sec07-list a:hover .arrow {
    background-color: var(--color_primary);
    border-color: var(--color_primary);
  }

  .sec07-list a:hover .arrow::before {
    background-color: var(--color_white);
  }
}

.sec07-rimipachi {
  bottom: -35px;
  left: 2.5%;
  z-index: 1;
}

@media (max-width: 1100px) {
  .sec07 {
    padding-bottom: 100px;
    overflow-x: clip;
  }

  .sec07::before {
    content: "";
    background: url(../images/sec07_ring.svg) no-repeat right bottom;
    width: 634px;
    height: 707px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .sec07-list {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 35px;
    margin-top: 35px;
  }

  .sec07-list li+li::before {
    width: 100%;
    height: 1px;
    top: -25px;
    bottom: auto;
    left: 0;
    right: 0;
  }

  .sec07-list .list-img {
    max-width: 80px;
    margin-bottom: 25px;
  }

  .sec07-list .list-ttl {
    font-size: 1.375rem;
  }

  .sec07-rimipachi {
    bottom: -65px;
    left: 2.5%;
    max-width: 120px;
  }
}

.sec08 {
  background: url(../images/share/bg_noise.jpg) repeat;
  padding: 160px 0;
  position: relative;
}

@media (max-width: 1100px) {
  .sec08 {
    padding: 100px 0;
  }
}

.sec08-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 100px;
}

.sec08-header .wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sec08-header p {
  font-size: 0.875rem;
  line-height: 1.8;
}

.sec08-ttl {
  font-size: 2.8125rem;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.sec08-ttl::after {
  content: "";
  background-image: var(--gradient);
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 1100px) {
  .sec08-header {
    flex-direction: column;
    align-items: start;
    gap: 25px;
    margin-bottom: 30px;
  }

  .sec08-header .wrap {
    flex-direction: column;
    align-items: start;
    gap: 25px;
  }

  .sec08-ttl {
    font-size: 1.875rem;
    padding-bottom: 5px;
  }
}

.list-x {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 5%;
  margin-bottom: 100px;
}

@media (max-width: 1100px) {
  .list-x {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 50px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  border-top: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 50px;
  padding: 100px 0 0 2.5%;
  margin: 100px auto 0;
  max-width: 1800px;
  position: relative;
}

body:has(.page-header) {
  position: relative;
}

body:has(.page-header)::before {
  content: "";
  width: 300px;
  height: 293px;
  position: absolute;
  top: 0px;
  right: 0px;
  background: url(../images/sec02_ring.svg) right bottom/contain no-repeat;
  z-index: 1;
}

.page-ttl [lang=en] {
  background: var(--gradient);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 15px;
}

.page-ttl .jp {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.page-ttl .sub {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--color_primary);
}

.page-ttl-404 {
  text-align: center;
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 1;
  margin: 100px 0 50px;
}

.page-ttl-404 .ttl {
  background: var(--gradient);
  font-family: var(--font_en);
  font-size: 200px;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.page-catch {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 35px;
}

.breadcrumb {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  padding: 5px 2.5%;
  position: relative;
  z-index: 1;
}

.breadcrumb ul {
  font-size: 0.8125rem;
  font-weight: bold;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color_primary);
  border-radius: 50%;
  margin: 0 12px 0 5px;
  vertical-align: 2px;
}

.breadcrumb a {
  opacity: 0.5;
}

.page-toc {
  margin-top: 35px;
}

.page-toc-ttl {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  font-size: 0.9375rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-toc-ttl::before {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_toc.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
}

.page-toc-list {
  display: grid;
}

.page-toc-list a {
  display: block;
  border-bottom: 1px solid var(--color_border);
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  padding: 7px 0 7px 25px;
}

.page-toc-list a::before {
  content: "";
  background: #f5f5f5 url(../images/share/icon_arrow03.svg) no-repeat center/8px auto;
  border-bottom: 1px solid var(--color_border);
  border-radius: 1px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.page-toc-list a::after {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

@media (any-hover: hover) {
  .page-toc-list a:hover {
    color: var(--color_primary);
  }
}

.u-contents {
  padding: 100px 0;
}

.u-contents .container {
  width: 90%;
  max-width: 1200px;
}

@media (max-width: 1100px) {
  .page-header {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 100px 0 0;
    margin: 0;
    position: relative;
  }

  .page-header .inner {
    width: calc(100% - 25px);
    margin: 0 auto;
  }

  body:has(.page-header)::before {
    width: 200px;
    height: 196px;
    z-index: -1;
  }

  .page-ttl [lang=en] {
    font-size: 0.75rem;
  }

  .page-ttl .jp {
    font-size: 1.75rem;
  }

  .page-ttl .sub {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }

  .page-ttl-404 {
    margin: 0 0 50px;
  }

  .page-ttl-404 .ttl {
    font-size: 150px;
  }

  .page-catch {
    font-size: 1.125rem;
    margin-top: 25px;
  }

  .page-toc {
    margin-top: 25px;
  }

  .u-contents {
    padding: 100px 0 50px;
  }

  .u-contents .container {
    width: calc(100% - 25px);
  }
}

.u-h2 {
  margin-bottom: 30px;
}

.u-h2 [lang=en] {
  font-weight: 600;
  font-size: 0.75rem;
  padding-left: 15px;
  margin-bottom: 20px;
  text-box: trim-both cap alphabetic;
  position: relative;
}

.u-h2 [lang=en]::before {
  content: "";
  background-image: linear-gradient(45deg, #59A9F8 0%, #1EB948 80%);
  width: 5px;
  height: 1.2em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0px, -50%);
}

.u-h2 .jp {
  font-size: 1.75rem;
  line-height: 1.4;
}

.u-h2 .small {
  font-size: 0.9375rem;
}

.u-h3 {
  align-items: center;
  background-color: var(--color_gray_light);
  padding: 12px 20px 12px 30px;
  border-radius: 5px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
  position: relative;
}

.u-h3::before {
  content: "";
  background-color: var(--color_secondary);
  width: 3px;
  height: calc(100% - 1.5rem);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 10px;
}

.u-h3 .label {
  color: var(--color_secondary);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

.u-h4 {
  margin-bottom: 50px;
}

.u-catch {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .u-catch {
    font-size: 1.5625rem;
  }
}

.u-catch02 {
  border-radius: 10px;
  color: var(--color_white);
  background: url(../images/share/bg_gradation.jpg) repeat center/cover;
  font-size: 1.5625rem;
  font-weight: 800;
  line-height: 1.7;
  padding: 40px 20px;
  text-align: center;
}

@media (max-width: 1100px) {
  .u-catch02 {
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 15px;
  }
}

.u-catch03 {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.5;
}

.u-catch03 span {
  display: inline-block;
  color: var(--color_primary);
  font-size: 1.875rem;
  margin-top: 5px;
}

@media (max-width: 1100px) {
  .u-catch03 {
    font-size: 1.125rem;
  }

  .u-catch03 span {
    font-size: 1.375rem;
  }
}

@media (max-width: 1100px) {
  .u-h2 {
    margin-bottom: 30px;
  }

  .u-h2 [lang=en] {
    font-size: 0.75rem;
  }

  .u-h2 .jp {
    font-size: 1.4375rem;
  }

  .u-h3 {
    font-size: 1.125rem;
    padding: 12px 20px 12px 25px;
    margin-bottom: 20px;
  }

  .u-h4 {
    margin-bottom: 10px;
  }
}

.tall+.tall {
  margin-top: 100px;
}

.tall-blue {
  position: relative;
  color: var(--color_white);
  padding: 100px 0;
}

.tall-blue::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 10px;
  position: absolute;
  inset: 0 20px;
  z-index: -1;
}

.tall-blue .container {
  width: 90%;
}

.tall-blue .u-h2 .jp::after {
  content: "";
  background-image: none;
  background-color: var(--color_white);
}

@media (max-width: 1100px) {
  .tall-blue {
    padding: 50px 0;
  }

  .tall-blue .container {
    width: calc(100% - 25px);
  }

  .tall-blue::before {
    border-radius: 20px;
    inset: 0;
  }
}

.tall-green {
  position: relative;
  color: var(--color_white);
  padding: 100px 0;
}

.tall-green::before {
  content: "";
  background-color: var(--color_tertiary);
  border-radius: 10px;
  position: absolute;
  inset: 0 20px;
  z-index: -1;
}

.short+.short {
  margin-top: 60px;
}

.x-short+.x-short {
  margin-top: 30px;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .tall+.tall {
    margin-top: 60px;
  }

  .short+.short {
    margin-top: 30px;
  }

  .x-short+.x-short {
    margin-top: 15px;
  }
}

.list-disc {
  display: grid;
  grid-gap: 5px;
}

.list-disc li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
}

.list-disc li::marker {
  color: var(--color_black);
  font-size: 0.75rem;
}

.list-disc.center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.list-check {
  display: grid;
  grid-gap: 5px;
}

.list-check li {
  border-bottom: 1px dashed var(--color_border);
  position: relative;
  font-weight: 600;
  padding-left: 28px;
  padding-bottom: 5px;
}

.list-check li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 7px;
  left: 0;
  width: 18px;
  height: 18px;
}

.list-num {
  counter-reset: number;
  display: grid;
  grid-gap: 5px;
}

.list-num>li {
  padding-left: 30px;
  position: relative;
}

.list-num>li:before {
  background-color: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 0.6875rem;
  position: absolute;
  top: 6px;
  left: 0;
  line-height: 20px;
  text-align: center;
  width: 20px;
  height: 20px;
}

.table-style01 th,
.table-style01 td {
  border: 1px solid var(--color_border);
  padding: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
  vertical-align: middle;
}

.table-style01 th {
  background-color: var(--color_gray_light);
  text-align: left;
  font-weight: 600;
}

.table-style01 .bg01 {
  background-color: #f5f5f5;
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 1100px) {

  .table-style01 th,
  .table-style01 td {
    padding: 5px;
    font-size: 0.875rem;
  }

  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }

  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }

  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
}

.under-slider01 .splide {
  margin: 0 auto;
}

.under-slider01 .splide__track {
  overflow: visible;
}

.under-slider01 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.under-slider01 .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.under-slider01 .splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 25px;
  left: calc((100% - 875px) / 2);
}

.under-slider01 .splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 25px;
  right: calc((100% - 875px) / 2);
}

.under-slider01 .splide__slide img {
  width: 100%;
}

.under-slider01 .item-desc {
  margin-top: 15px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.under-slider01 .item-ttl {
  font-size: 1rem;
  margin-bottom: 5px;
}

.under-slider02 .item-img {
  position: relative;
}

.under-slider02 figcaption {
  background: #fff;
  font-size: 0.6875rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.under-slider02 .splide__pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.youtube iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.google-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 450px;
}

@media (max-width: 1100px) {
  .google-map iframe {
    height: 300px;
  }
}

/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.l-imgR .l-img,
.l-imgL .l-img {
  width: 40%;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 30%;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
  flex: 1;
}

.l-imgR {
  flex-direction: row-reverse;
}

.fl-wrap {
  display: flow-root;
}

.fl-imgR,
.fl-imgL {
  width: 40%;
}

.fl-imgR.small,
.fl-imgL.small {
  width: 30%;
}

.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

@media (max-width: 1100px) {

  .l-imgR,
  .l-imgL {
    flex-direction: column;
    gap: 15px;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img.small,
  .l-imgL .l-img.small {
    width: 100%;
    max-width: 250px;
    margin-inline: auto;
  }

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }

  .fl-imgR.small,
  .fl-imgL.small {
    width: 100%;
  }
}

/*------------
Add
--------------*/
.layout-style01 {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  border-top: 1px solid var(--color_border);
  padding-top: 50px;
}

.layout-style01 .is-sticky {
  position: sticky;
  top: 100px;
}

@media (max-width: 1100px) {
  .layout-style01 {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 30px;
  }

  .layout-style01 .is-sticky {
    position: static;
  }
}

.layout-style02 {
  width: calc(100% - 450px);
  margin-left: auto;
}

@media (max-width: 1024px) {
  .layout-style02 {
    width: 100%;
  }
}

.tall-vision {
  background: url(../images/hero_town.svg) repeat-x center bottom;
  position: relative;
  padding-bottom: 180px;
}

@media (max-width: 1100px) {
  .tall-vision {
    padding-bottom: 100px;
  }
}

.vision-message {
  text-box: trim-both cap alphabetic;
  font-size: 3.4375rem;
  font-weight: 800;
  line-height: 1.5;
  margin: 100px 0;
}

.vision-message strong {
  background-image: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vision-message .small {
  font-size: 1.5625rem;
  margin: 0 5px;
}

.vision-message ruby {
  -webkit-ruby-position: after;
  ruby-position: under;
  ruby-align: center;
}

.vision-message rt {
  font-size: 0.9375rem;
  letter-spacing: 0.5em;
  text-align: justify;
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .vision-message {
    text-align: justify;
    font-size: 2.1875rem;
    line-height: 1.2;
    margin: 0 0 50px;
  }

  .vision-message .small {
    font-size: 0.9375rem;
  }
}

.vision-read {
  text-box: trim-both cap alphabetic;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: justify;
}

.vision-read p+p {
  margin-top: 1.5em;
}

@media (max-width: 1100px) {
  .vision-read {
    font-size: 1rem;
  }
}

.layout-feature {
  border-top: 1px solid var(--color_white);
  padding: 25px 0;
  display: grid;
  grid-template-columns: 250px 1fr 1fr;
  gap: 5%;
}

.layout-feature:last-child {
  border-bottom: 1px solid var(--color_white);
}

.layout-feature .l-img {
  display: grid;
  place-content: center;
  background-color: var(--color_white);
  border-radius: 10px;
  padding: 15px;
  aspect-ratio: 1/1;
}

.layout-feature .l-img img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 200px;
}

.layout-feature .l-no {
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.layout-feature .l-ttl {
  font-size: 1.5625rem;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 400px;
}

.layout-feature .l-body {
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 800px) {
  .layout-feature {
    padding: 25px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .layout-feature .l-img {
    aspect-ratio: auto;
    padding: 25px;
    margin-bottom: 30px;
  }

  .layout-feature .l-img img {
    max-height: 150px;
  }

  .layout-feature .l-no {
    font-size: 0.75rem;
  }

  .layout-feature .l-ttl {
    font-size: 1.5625rem;
    margin-bottom: 20px;
  }

  .layout-feature .l-body {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.layout-feature02 {
  border-top: 1px solid var(--color_white);
  padding: 25px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
}

.layout-feature02:last-child {
  border-bottom: 1px solid var(--color_white);
}

.layout-feature02 .l-no {
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.layout-feature02 .l-ttl {
  font-size: 1.5625rem;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 400px;
}

.layout-feature02 .l-body {
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: justify;
}

.dl-feature {
  border-top: 1px solid var(--color_border);
  display: grid;
  gap: 25px;
  padding-top: 25px;
}

.dl-feature .item {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding-bottom: 25px;
}

.dl-feature .no {
  display: block;
  background: var(--gradient);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.dl-feature .ttl {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}

.dl-feature dd {
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 1100px) {
  .dl-feature .item {
    grid-template-columns: 1fr;
  }
}

.tall-blue .dl-feature .no {
  -webkit-text-fill-color: var(--color_white);
}

.layout-toc {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
}

.layout-toc .l-navi {
  border-top: 1px solid var(--color_border);
  position: sticky;
  top: 100px;
  max-width: 250px;
}

.layout-toc .l-navi a {
  display: block;
  border-bottom: 1px solid var(--color_border);
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  padding: 7px 0 7px 25px;
}

.layout-toc .l-navi a::before {
  content: "";
  background: #f5f5f5 url(../images/share/icon_arrow03.svg) no-repeat center/8px auto;
  border-left: 1px solid var(--color_border);
  border-radius: 1px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
}

.layout-toc .l-navi a::after {
  content: "";
  background-color: var(--color_primary);
  width: 15px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

@media (any-hover: hover) {
  .layout-toc .l-navi a:hover {
    color: var(--color_primary);
  }
}

@media (max-width: 1100px) {
  .layout-toc {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .layout-toc .l-navi {
    position: static;
    max-width: 100%;
  }
}

.layout-service {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  border-radius: 5px;
  padding: 35px;
  position: relative;
}

.layout-service+.layout-service {
  margin-top: 50px;
}

.layout-service .l-ttl {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
  position: relative;
}

.layout-service .l-ttl .sub {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1;
  gap: 8px;
  margin-bottom: 5px;
}

.layout-service .l-ttl .sub::before {
  content: "";
  background-color: var(--color_primary);
  width: 8px;
  height: 2px;
}

.layout-service .l-ttl .ttl {
  font-size: 1.875rem;
}

.layout-service .l-img {
  position: relative;
  margin-bottom: 25px;
}

.layout-service .l-img img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 2/1;
  width: 100%;
  height: 100%;
}

.layout-service .l-catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: var(--color_white);
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1.5;
}

.layout-service .l-catch span {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0.1em 0.2em;
}

.layout-service .l-btn {
  margin-top: 35px;
  text-align: right;
}

@media (max-width: 1100px) {
  .layout-service {
    padding: 20px;
  }

  .layout-service+.layout-service {
    margin-top: 50px;
  }

  .layout-service .l-ttl {
    margin-bottom: 20px;
  }

  .layout-service .l-ttl .ttl {
    font-size: 1.375rem;
  }

  .layout-service .l-img img {
    aspect-ratio: 7/5;
  }

  .layout-service .l-catch {
    gap: 0;
    color: var(--color_black);
    position: static;
    font-size: 1.375rem;
    margin: 25px 0 0;
  }

  .layout-service .l-catch span {
    padding: 0;
  }

  .layout-service .l-btn {
    margin-top: 35px;
    text-align: right;
  }
}

.box-style01 {
  background-color: var(--color_gray_light);
  border: 1px solid var(--color_border);
  padding: 25px;
  border-radius: 10px;
}

.box-style01>.box-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}

.box-style01>.box-ttl img {
  width: 25px;
}

@media (max-width: 1100px) {
  .box-style01 {
    padding: 15px;
    font-size: 0.875rem;
  }
}

.box-style02 {
  background-color: var(--color_white);
  background-color: var(--color_gray_light);
  border-radius: 10px;
  overflow: hidden;
}

.box-style02>.box-ttl {
  background: url(../images/share/bg_gradation.jpg) repeat center/cover;
  color: var(--color_white);
  padding: 20px 25px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.box-style02>.box-body {
  padding: 35px;
}

@media (max-width: 1100px) {
  .box-style02>.box-ttl {
    padding: 15px 20px;
    font-size: 1.125rem;
  }

  .box-style02>.box-body {
    padding: 15px;
  }
}

.box-style03 {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  padding: 25px;
  border-radius: 10px;
  font-size: 0.9375rem;
}

.box-style03>.box-ttl {
  background-color: var(--color_white);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
  margin: -39px 0 15px -10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
}

@media (max-width: 1100px) {
  .box-style03 {
    padding: 10px;
  }

  .box-style03>.box-ttl {
    font-size: 0.875rem;
    margin: -22px 0 15px 0;
    padding: 0 5px;
  }
}

.faq-style {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  border-radius: 6px;
  transition: 0.3s;
}

.faq-style+.faq-style {
  margin-top: 15px;
}

.faq-style .faq-summary {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  align-items: center;
  gap: 25px;
  cursor: pointer;
  padding: 15px 20px;
  line-height: 1;
  position: relative;
}

.faq-style .faq-summary .faq-ttl {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

.faq-style .faq-summary::-webkit-details-marker {
  display: none;
}

.faq-style .faq-icon {
  background-color: var(--color_primary);
  border-radius: 100px;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1.25rem;
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
}

.faq-style .faq-content .faq-icon {
  background-color: var(--color_gray_light);
  color: var(--color_primary);
}

.faq-style .faq-content .faq-desc {
  padding-top: 9px;
}

.faq-style .faq-content {
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.faq-style .faq-wrap {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  padding: 0 20px 25px;
}

.faq-style .faq-open-icon {
  background-color: var(--color_primary);
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  position: relative;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before,
.faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: var(--color_white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.faq-style .faq-open-icon::before {
  width: 10px;
  height: 2px;
}

.faq-style .faq-open-icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.5s;
}

.faq-style.is-open .faq-open-icon {
  background-color: #d2d2d2;
}

.faq-style.is-open .faq-open-icon::after {
  opacity: 0;
}

@media (max-width: 1100px) {
  .faq-style {
    border-radius: 10px;
  }

  .faq-style+.faq-style {
    margin-top: 15px;
  }

  .faq-style .faq-summary {
    grid-template-columns: 30px 1fr 30px;
    gap: 15px;
    padding: 10px;
  }

  .faq-style .faq-summary .faq-ttl {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .faq-style .faq-icon {
    font-size: 0.9375rem;
    width: 30px;
    height: 30px;
  }

  .faq-style .faq-wrap {
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 0 15px 15px;
  }
}

.box-contact {
  color: var(--color_white);
  background: url(../images/sec04_bg.jpg) repeat center/cover;
  border-radius: 10px;
  padding: 50px;
  text-align: center;
  position: relative;
}

.box-contact .box-ttl {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 15px;
}

.box-contact .dot {
  position: relative;
}

.box-contact .dot::before {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-size: 1.02em 10px;
  background-repeat: repeat-x;
  background-position: 0 0;
  background-image: radial-gradient(circle at center center, var(--color_white) 0px, var(--color_white) 2.5px, rgba(255, 255, 255, 0) 2.5px, rgba(255, 255, 255, 0) 100%);
}

.box-contact .box-text {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 25px;
}

.box-contact .box-rimipachi {
  width: 120px;
  bottom: -40px;
  right: 2%;
  z-index: 1;
}

@media (max-width: 1100px) {
  .box-contact {
    padding: 35px 25px;
  }

  .box-contact .box-ttl {
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .box-contact .dot::before {
    top: -5px;
  }

  .box-contact .box-text {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .box-contact .box-rimipachi {
    width: 80px;
    bottom: -50px;
    right: 10px;
  }
}

.dl-overview {
  border-top: 1px solid var(--color_border);
  line-height: 1.8;
  font-size: 0.875rem;
  text-align: justify;
}

.dl-overview>.item {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 300px 1fr;
  padding: 12px 0;
}

.dl-overview>.item>dt {
  font-weight: 700;
}

.dl-overview iframe {
  width: 100%;
  height: 300px;
}

@media (max-width: 1100px) {
  .dl-overview {
    border-top: 1px solid var(--color_border);
    line-height: 1.8;
    font-size: 0.875rem;
  }

  .dl-overview>.item {
    grid-template-columns: 100px 1fr;
    padding: 12px 0;
  }

  .dl-overview>.item>dt {
    font-weight: 700;
  }

  .dl-overview iframe {
    width: 100%;
    height: 300px;
  }
}

.dl-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  line-height: 1.5;
}

.dl-member dt {
  font-weight: 800;
  font-size: 0.75rem;
}

.dl-member dd {
  font-size: 0.9375rem;
}

.page-rimipachi {
  background: url(../images/under/bg_rimipachi.png) no-repeat center/cover;
  padding: 150px 0 100px;
  position: relative;
  min-height: 700px;
}

.page-rimipachi .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  width: min(90%, 1200px);
  margin-inline: auto;
}

.rimipachi-sub-ttl {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}

.rimipachi-ttl {
  display: grid;
}

.rimipachi-ttl span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0.3em;
  line-height: 2.5;
  background-image: var(--gradient);
  color: var(--color_white);
}

.rimipachi-lead {
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.7;
  margin-bottom: 15px;
}

.rimipachi-lead span {
  font-size: 1.5625rem;
}

.rimipachi-name {
  color: var(--color_white);
  background-image: var(--gradient);
  border-radius: 10px;
  line-height: 1;
  text-align: center;
  padding: 15px 50px;
  margin-bottom: 15px;
}

.rimipachi-name .jp {
  font-weight: 700;
  font-size: 4.375rem;
  margin-bottom: 10px;
}

.rimipachi-name [lang=en] {
  font-size: 1.5625rem;
  font-weight: 700;
}

.rimipachi-img {
  position: relative;
}

.rimipachi-denki01,
.rimipachi-denki02 {
  width: 80px;
}

.rimipachi-denki01 {
  top: 0;
  left: 0;
}

.rimipachi-denki02 {
  bottom: 0;
  right: 0;
}

.rimipachi-text {
  color: var(--color_white);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2.5;
  position: absolute;
  top: 0;
  right: 0;
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  z-index: 1;
}

.rimipachi-text span {
  background-color: #F88818;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.8em 0.3em;
}

@media (max-width: 1100px) {
  .page-rimipachi {
    background: url(../images/under/bg_rimipachi.png) no-repeat center left 57%/cover;
    padding: 120px 0 100px;
  }

  .page-rimipachi .wrap {
    flex-direction: column-reverse;
  }

  .rimipachi-sub-ttl {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .rimipachi-ttl {
    display: grid;
  }

  .rimipachi-ttl span {
    padding: 0.3em;
    line-height: 2.5;
  }

  .rimipachi-lead {
    font-size: 0.9375rem;
    text-align: center;
  }

  .rimipachi-lead span {
    font-size: 1.25rem;
  }

  .rimipachi-name {
    padding: 15px 25px;
    margin-bottom: 15px;
  }

  .rimipachi-name .jp {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .rimipachi-name [lang=en] {
    font-size: 1.25rem;
  }

  .rimipachi-denki01,
  .rimipachi-denki02 {
    width: 50px;
  }

  .rimipachi-text {
    font-size: 1rem;
    line-height: 2.3;
  }

  .rimipachi-text span {
    padding: 0.5em 0.2em;
  }
}

.tall-rimipachi {
  position: relative;
  color: var(--color_white);
  padding: 100px 0;
  overflow: clip;
}

.tall-rimipachi::before {
  content: "";
  background: url(../images/sec04_bg.jpg) no-repeat center/cover;
  border-radius: 10px;
  position: absolute;
  inset: 0 20px;
  z-index: -2;
}

.tall-rimipachi::after {
  content: "";
  background: url(../images/under/rimipachi_ring.svg) no-repeat right bottom/contain;
  width: 859px;
  height: 738px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.tall-rimipachi .container {
  width: 90%;
}

@media (max-width: 1100px) {
  .tall-rimipachi {
    padding: 50px 0;
  }

  .tall-rimipachi::before {
    border-radius: 10px;
    inset: 0;
  }
}

.layout-rimipachi {
  display: grid;
  grid-template-columns: 1fr 40%;
  grid-template-areas: "desc img";
  gap: 5%;
  align-items: start;
}

.layout-rimipachi .l-img {
  position: sticky;
  top: 100px;
  grid-area: img;
}

.layout-rimipachi .l-desc {
  grid-area: desc;
}

.layout-rimipachi .l-catch {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 50px;
}

.layout-rimipachi .text01 {
  display: flex;
  gap: 15px;
  font-size: 1.25rem;
  align-items: center;
}

.layout-rimipachi .text01::after {
  content: "";
  flex: 1;
  background-color: var(--color_white);
  display: block;
  width: 100%;
  height: 2px;
}

.layout-rimipachi .text02 {
  font-size: 2.8125rem;
  margin-top: 15px;
}

.layout-rimipachi .l-read {
  text-align: justify;
  max-width: 500px;
}

.layout-rimipachi .l-profile {
  border-top: 1px solid var(--color_white);
  padding-top: 50px;
  margin-top: 50px;
}

.layout-rimipachi .l-profile .l-profile-ttl {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

@media (max-width: 1100px) {
  .layout-rimipachi {
    grid-template-columns: 1fr;
    grid-template-areas: "desc" "img";
    gap: 50px;
    align-items: start;
  }

  .layout-rimipachi .l-img {
    position: static;
  }

  .layout-rimipachi .l-catch {
    margin-bottom: 30px;
  }

  .layout-rimipachi .text01 {
    font-size: 1.125rem;
  }

  .layout-rimipachi .text02 {
    font-size: 2.1875rem;
    margin-top: 15px;
  }

  .layout-rimipachi .l-profile {
    padding-top: 30px;
    margin-top: 30px;
  }
}

.dl-profile .item {
  border-bottom: 1px dashed var(--color_white);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 8px 0;
}

.dl-profile .item dt {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.dl-profile .item dd {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.card-rimipachi {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  border: 10px solid var(--color_gray);
  background-color: var(--color_white);
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 15px 15px;
  border-radius: 10px;
  display: grid;
  place-content: center;
  padding: 25px 15px;
  max-width: 400px;
  margin-inline: auto;
  position: relative;
}

.card-rimipachi::before,
.card-rimipachi::after {
  content: "";
  background: url(../images/under/denki.svg) no-repeat center/contain;
  width: 43px;
  height: 60px;
  position: absolute;
}

.card-rimipachi::before {
  top: 10px;
  left: 10px;
}

.card-rimipachi::after {
  bottom: 10px;
  right: 10px;
}

.card-rimipachi .card-img img {
  max-height: 300px;
  -o-object-fit: contain;
  object-fit: contain;
}

.card-rimipachi .card-desc {
  color: var(--color_black);
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
  padding: 15px;
}

.card-rimipachi .card-desc .jp {
  font-size: 1.5625rem;
  font-weight: 700;
}

.card-rimipachi .card-desc [lang=en] {
  font-size: 0.9375rem;
  margin-top: 0;
}

.card-rimipachi .card-data {
  text-align: justify;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-top: 20px;
}

.card-rimipachi .card-data .item {
  display: grid;
  gap: 5px;
}

.card-rimipachi .card-data dt {
  font-weight: bold;
}

.dictionary-detail .detail-ttl {
  font-weight: 600;
  font-size: 1.5625rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.box-dictionary {
  border: 1px solid var(--color_border);
  border-radius: 10px;
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.btn-dictionary {
  display: block;
  background-color: var(--color_gray_light);
  border: 1px solid var(--color_border);
  color: var(--color_black);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  padding: 20px 20px 20px 45px;
  border-radius: 5px;
  position: relative;
  transition: border-color 0.3s;
}

.btn-dictionary::before {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/icon_dictionary.svg) no-repeat center/contain;
  mask: url(../images/share/icon_dictionary.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 51%;
  left: 15px;
  transform: translateY(-50%);
}

.btn-dictionary::after {
  content: "";
  background: url(../images/share/icon_arrow02.svg) no-repeat center/contain;
  width: 7px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.btn-dictionary .small {
  font-size: 0.6875rem;
}

@media (any-hover: hover) {
  .btn-dictionary:hover {
    border-color: var(--color_primary);
  }
}

.layout-intro .l-ttl {
  font-weight: 600;
  line-height: 1.5;
}

.layout-intro .l-ttl .sub {
  color: var(--color_primary);
  margin-bottom: 10px;
}

.layout-intro .l-ttl .ttl {
  font-size: 2.1875rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.layout-intro .l-read {
  max-width: 500px;
  text-align: justify;
}

.flow-fip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.flow-fip li {
  color: var(--color_black);
  background-color: var(--color_white);
  border-radius: 10px;
  padding: 20px;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
}

.flow-fip li:not(:last-child)::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--color_white);
  width: 9px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
}

.flow-fip .flow-no {
  font-weight: 700;
  font-family: var(--font_en);
  font-size: 0.75rem;
  line-height: 1;
  position: absolute;
  top: 15px;
  left: 15px;
}

.flow-fip .flow-img {
  width: 100px;
  margin: 0 auto 15px;
}

.flow-fip .flow-ttl {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .flow-fip {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .flow-fip li {
    padding: 30px 10px 20px;
    border-radius: 5px;
    aspect-ratio: auto;
  }

  .flow-fip li:not(:last-child)::after {
    right: -7px;
  }

  .flow-fip .flow-no {
    font-size: 0.625rem;
    top: 10px;
    left: 10px;
  }

  .flow-fip .flow-img {
    width: 70px;
    margin: 0 auto 15px;
  }

  .flow-fip .flow-ttl {
    font-size: 0.75rem;
    line-height: 1;
  }
}

.fukidashi {
  display: flex;
  gap: 25px;
  align-items: start;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.fukidashi .fukidashi-content {
  background-color: var(--color_primary);
  color: var(--color_white);
  border-radius: 10px;
  padding: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: justify;
  max-width: 400px;
  position: relative;
}

.fukidashi .fukidashi-content::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 10px;
  height: 10px;
  background-color: var(--color_primary);
  position: absolute;
  top: 25px;
  right: -10px;
}

.fukidashi .ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.fukidashi .ttl::before {
  content: "";
  display: block;
  background: url(../images/share/icon_denki.svg) no-repeat center/contain;
  width: 22px;
  height: 22px;
}

.fukidashi .fukidashi-img {
  flex-shrink: 0;
  width: 100px;
  margin-left: auto;
}

@media (max-width: 1100px) {
  .fukidashi {
    gap: 15px;
  }

  .fukidashi .fukidashi-img {
    width: 60px;
  }

  .fukidashi .fukidashi-content {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

.fukidashi02 {
  padding-top: 83px;
  position: relative;
}

.fukidashi02 .fukidashi-text {
  background-color: var(--color_primary);
  border-radius: 10px;
  color: var(--color_white);
  padding: 20px;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.fukidashi02 .fukidashi-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 24px 24px;
  opacity: 0.1;
  z-index: 1;
}

.fukidashi02 .fukidashi-text::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: var(--color_primary);
  width: 25px;
  height: 15px;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.fukidashi02 .fukidashi-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  z-index: -1;
}

@media (max-width: 1100px) {
  .fukidashi02 .fukidashi-text {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.fip-points {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.fip-points .firsr {
  background-color: var(--color_deep_blue);
  border-radius: 10px;
  padding: 20px;
  color: var(--color_white);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.fip-points .firsr::before {
  content: "";
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: var(--color_deep_blue);
  width: 25px;
  height: 15px;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.fip-points .firsr .sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #facc14;
  margin-bottom: 5px;
}

.fip-points .firsr .sub img {
  margin-top: 2px;
  width: 20px;
}

.fip-points .firsr .ttl {
  font-size: 1.25rem;
}

.fip-points .second {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: var(--color_primary);
  color: var(--color_white);
  border-radius: 50px;
  padding: 5px 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 auto 20px;
}

.fip-points .second::before {
  content: "";
  display: block;
  background: url(../images/share/icon_denki.svg) no-repeat center/contain;
  width: 15px;
  height: 15px;
  margin-top: 1px;
}

.fip-points .third {
  background: url(../images/share/bg_gradation.jpg) no-repeat center/cover;
  color: var(--color_white);
  border-radius: 10px;
  padding: 20px;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1100px) {
  .fip-points .firsr {
    padding: 15px;
    margin-bottom: 30px;
  }

  .fip-points .firsr .ttl {
    font-size: 1.125rem;
  }

  .fip-points .third {
    padding: 15px;
    font-size: 1.125rem;
  }
}

.card-balance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.card-balance .card-item {
  background-color: var(--color_gray_light);
  border: 1px solid var(--color_border);
  border-radius: 5px;
  font-size: 0.9375rem;
  line-height: 1.5;
  overflow: hidden;
}

.card-balance .card-ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color_white);
  font-weight: 600;
  line-height: 1;
  padding: 20px;
}

.card-balance .card-ttl .jp {
  font-size: 1.0625rem;
}

.card-balance .card-ttl [lang=en] {
  font-size: 0.75rem;
}

.card-balance .card-body {
  padding: 20px;
}

.card-balance .list-disc li::marker {
  color: var(--color_black);
}

.card-balance .demand .card-ttl {
  background-color: #006AD5;
}

.card-balance .demand .list-disc li::marker {
  color: #006AD5;
}

.card-balance .supply .card-ttl {
  background-color: #00AD2F;
}

.card-balance .supply .list-disc li::marker {
  color: #00AD2F;
}

@media (max-width: 1100px) {
  .card-balance {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-balance .card-body {
    padding: 15px;
  }
}

.box-grid-battery {
  border-radius: 10px;
  overflow: clip;
  border: 1px solid var(--color_border);
}

.box-grid-battery .box-ttl {
  background: url(../images/share/bg_gradation.jpg) repeat center/cover;
  color: var(--color_white);
  padding: 15px 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.box-grid-battery .box-bottom {
  padding: 20px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.box-grid-battery .table-wrap {
  overflow-x: auto;
}

.box-grid-battery .sticky {
  position: sticky;
  left: 0;
}

.table-grid-battery {
  table-layout: fixed;
}

.table-grid-battery th {
  background-color: #f9fafb;
}

.table-grid-battery thead th {
  border-bottom: 3px solid var(--color_border);
  padding: 10px 10px;
  line-height: 1.5;
}

.table-grid-battery thead th:first-child {
  border-bottom: 1px solid var(--color_border);
}

.table-grid-battery thead .sub {
  display: block;
  font-size: 0.6875rem;
  font-weight: normal;
  color: var(--color_gray_02);
  letter-spacing: 0;
}

.table-grid-battery thead .one {
  border-color: #006ad5;
}

.table-grid-battery thead .one .ttl {
  color: #006ad5;
}

.table-grid-battery thead .two {
  border-color: #007bac;
}

.table-grid-battery thead .two .ttl {
  color: #007bac;
}

.table-grid-battery thead .three {
  border-color: #006ad5;
}

.table-grid-battery thead .three .ttl {
  color: #006ad5;
}

.table-grid-battery thead .four {
  border-color: #008c83;
}

.table-grid-battery thead .four .ttl {
  color: #008c83;
}

.table-grid-battery thead .five {
  border-color: #00ad2f;
}

.table-grid-battery thead .five .ttl {
  color: #00ad2f;
}

.table-grid-battery tbody th,
.table-grid-battery tbody td {
  padding: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  vertical-align: middle;
}

.table-grid-battery tbody th {
  border-bottom: 1px solid #eee;
  background-color: #f9fafb;
  text-align: left;
}

.table-grid-battery tbody td {
  border: 1px dashed var(--color_border);
  border-top: none;
  font-weight: bold;
}

.table-grid-battery tbody td:last-child {
  border-right: none;
}

.table-grid-battery tbody .small {
  display: block;
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--color_gray_02);
}

.table-grid-battery tbody tr:hover {
  background-color: #f9fafb;
}

@media (max-width: 1100px) {
  .table-grid-battery thead th {
    padding: 5px;
  }

  .table-grid-battery thead .ttl {
    font-size: 0.625rem;
  }

  .table-grid-battery thead .sub {
    font-size: 0.625rem;
  }

  .table-grid-battery tbody th,
  .table-grid-battery tbody td {
    padding: 5px;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .table-grid-battery tbody th {
    border-bottom: 1px solid #eee;
    background-color: #f9fafb;
    text-align: left;
  }

  .table-grid-battery tbody td {
    border: 1px dashed var(--color_border);
    border-top: none;
    font-weight: bold;
  }

  .table-grid-battery tbody td:last-child {
    border-right: none;
  }

  .table-grid-battery tbody .small {
    font-size: 0.625rem;
  }
}

.layout-markets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.layout-markets>.item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  border: 1px solid var(--color_border);
  border-radius: 10px;
  overflow: hidden;
}

.layout-markets .item-ttl {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 15px 20px;
  line-height: 1.5;
}

.layout-markets .item-ttl .label {
  background-color: oklch(from var(--color_white) l c h/0.2);
  padding: 2px 10px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.layout-markets .item-ttl .ttl {
  font-size: 1.25rem;
  font-weight: 700;
}

.layout-markets .item-ttl .small {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  margin-left: 5px;
}

.layout-markets .item-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.layout-markets .item-bottom {
  border-top: 1px dashed var(--color_border);
  padding: 20px 0;
  margin: 0 20px;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: justify;
}

.layout-markets .item-bottom .note-ttl {
  font-weight: 700;
  margin-bottom: 10px;
}

.layout-markets .market01 .item-ttl {
  background-color: var(--color_primary);
}

.layout-markets .market02 .item-ttl {
  background-color: var(--color_tertiary);
}

.layout-markets .market03 .item-ttl {
  background-color: var(--color_secondary);
}

@media (max-width: 1100px) {
  .layout-markets {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.dl-market {
  display: grid;
  gap: 20px;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: justify;
}

.dl-market dt {
  background-color: var(--color_gray_light);
  padding: 1px 10px;
  border-radius: 2px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}

.flow-style01 {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
}

.flow-style01>li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 50px;
  align-items: center;
  padding: 30px 0;
  position: relative;
}

.flow-style01>li::before {
  content: "";
  background-color: var(--color_border);
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 43px;
  right: 0;
  z-index: -1;
}

.flow-style01>li::after {
  content: "";
  background-color: var(--color_border);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 80px;
  right: 0;
}

.flow-style01>li:first-child::before {
  height: 50%;
  top: auto;
  bottom: 0;
}

.flow-style01>li:last-child::before {
  height: 50%;
  top: 0;
}

.flow-style01>li:last-child::after {
  display: none;
}

.flow-style01 .flow-no {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 5px;
  color: var(--color_primary);
  font-size: 0.6875rem;
  font-family: var(--font_en);
  line-height: 1;
  display: grid;
  place-content: center;
  width: 80px;
  height: 80px;
  text-align: center;
}

.flow-style01 .flow-no span {
  font-size: 1.875rem;
}

.flow-style01 .flow-desc {
  text-align: justify;
  line-height: 1.8;
}

.flow-style01 .flow-ttl {
  color: var(--color_primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media (max-width: 1100px) {
  .flow-style01>li {
    grid-template-columns: 60px 1fr;
    gap: 25px;
    padding: 30px 0;
  }

  .flow-style01>li::before {
    left: 30px;
  }

  .flow-style01 .flow-no {
    width: 60px;
    height: 60px;
  }

  .flow-style01 .flow-no span {
    font-size: 1.875rem;
  }

  .flow-style01 .flow-desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.card-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card-points li {
  display: flex;
  flex-direction: column;
  background-color: var(--color_white);
  border-radius: 10px;
  color: var(--color_black);
  padding: 50px 30px 30px;
  text-align: center;
  position: relative;
}

.card-points .card-no {
  font-weight: 700;
  font-family: var(--font_en);
  font-size: 0.75rem;
  line-height: 1;
  position: absolute;
  top: 15px;
  left: 15px;
}

.card-points .card-img {
  margin-bottom: 25px;
  max-width: 120px;
  margin-inline: auto;
}

.card-points .card-text {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 25px;
}

.card-points .card-text .large {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.5;
}

.card-points .card-bottom {
  border-top: 1px solid var(--color_border);
  text-align: center;
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 10px;
}

@media (max-width: 1100px) {
  .card-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card-points li {
    padding: 30px 15px 15px;
    border-radius: 5px;
    aspect-ratio: auto;
  }

  .card-points .card-no {
    font-size: 0.625rem;
    top: 10px;
    left: 10px;
  }

  .card-points .card-img {
    width: 100px;
    margin: 0 auto 15px;
  }

  .card-points .card-text {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .card-points .card-text .large {
    font-size: 0.9375rem;
  }

  .card-points .card-bottom {
    font-size: 0.625rem;
  }
}

.u-catch-point {
  border-radius: 10px;
  color: var(--color_white);
  border: 3px solid var(--color_white);
  font-size: 1.4375rem;
  font-weight: 800;
  line-height: 1.8;
  padding: 30px 20px;
  text-align: center;
}

@media (max-width: 1100px) {
  .u-catch-point {
    font-size: 1.125rem;
    padding: 20px 15px;
  }
}

.card-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.card-benefits li {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  border-radius: 10px;
  color: var(--color_black);
  padding: 40px;
  font-size: 0.9375rem;
  text-align: justify;
  line-height: 1.5;
}

.card-benefits .card-header {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.card-benefits .card-header .card-ttl {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}

.card-benefits .card-img {
  background-color: var(--color_gray_light);
  border-radius: 5px;
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
}

.card-benefits .card-ttl {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}

.card-benefits .benefits01 .card-img {
  background-color: var(--color_primary);
}

.card-benefits .benefits02 .card-img {
  background-color: var(--color_secondary);
}

.card-benefits .benefits03 .card-img {
  background-color: var(--color_yellow);
}

@media (max-width: 1100px) {
  .card-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-benefits li {
    padding: 20px;
  }
}

.flow-storage-battery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.flow-storage-battery li {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 10px;
  color: var(--color_black);
  padding: 50px;
  position: relative;
}

.flow-storage-battery li:not(:last-child)::after {
  content: "";
  background: url(../images/share/icon_arrow02.svg) no-repeat center/contain;
  width: 11px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: -45px;
  transform: translateY(-50%);
}

.flow-storage-battery .flow-no {
  font-weight: 700;
  font-family: var(--font_en);
  font-size: 0.75rem;
  line-height: 1;
  position: absolute;
  top: 15px;
  left: 15px;
}

.flow-storage-battery .flow-img {
  max-width: 80px;
  margin: 0 auto 20px;
}

.flow-storage-battery .flow-ttl {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

.flow-storage-battery .flow-text {
  border-top: 1px solid var(--color_border);
  text-align: justify;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 10px;
}

@media (max-width: 1100px) {
  .flow-storage-battery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .flow-storage-battery li {
    padding: 30px 15px 15px;
    border-radius: 5px;
  }

  .flow-storage-battery li:not(:last-child)::after {
    width: 8px;
    height: 14px;
    right: -13px;
  }

  .flow-storage-battery .flow-no {
    font-size: 0.625rem;
    top: 10px;
    left: 10px;
  }

  .flow-storage-battery .flow-img {
    width: 100px;
    margin: 0 auto 20px;
  }

  .flow-storage-battery .flow-ttl {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .flow-storage-battery .flow-text {
    font-size: 0.75rem;
    padding-top: 10px;
  }
}

.list-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.list-feature li {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 10px;
  color: var(--color_black);
  padding: 20px;
  font-size: 0.9375rem;
  text-align: justify;
  line-height: 1.5;
}

.list-feature a {
  display: grid;
  height: 100%;
}

.list-feature .list-ttl {
  margin-top: -70px;
}

.list-feature .list-ttl .no {
  color: var(--color_secondary);
  font-size: 1.3125rem;
  font-family: var(--font_en);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}

.list-feature .list-ttl .no span {
  display: block;
  font-size: 5.5rem;
}

.list-feature .list-ttl .ttl {
  font-size: 1.4375rem;
  line-height: 1.5;
}

.card-guarantees {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card-guarantees li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 10px;
  color: var(--color_black);
  padding: 50px 30px 30px;
  text-align: center;
  position: relative;
}

.card-guarantees .card-no {
  font-weight: 700;
  font-family: var(--font_en);
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 15px;
  left: 15px;
}

.card-guarantees .card-img {
  max-width: 120px;
  margin-inline: auto;
}

.card-guarantees .card-ttl {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1;
}

.card-guarantees .card-ttl .small {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.card-guarantees .card-text {
  border-top: 1px solid var(--color_border);
  text-align: justify;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 10px;
}

@media (max-width: 1100px) {
  .card-guarantees {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .card-guarantees li {
    padding: 30px 10px 15px;
    border-radius: 5px;
    aspect-ratio: auto;
  }

  .card-guarantees .card-no {
    font-size: 0.625rem;
    top: 10px;
    left: 10px;
  }

  .card-guarantees .card-img {
    width: 100px;
    margin: 0 auto 15px;
  }

  .card-guarantees .card-ttl {
    font-size: 0.9375rem;
  }

  .card-guarantees .card-ttl .small {
    font-size: 0.75rem;
  }

  .card-guarantees .card-text {
    font-size: 0.75rem;
  }
}

.card-support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card-support li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 10px;
  color: var(--color_black);
  padding: 50px 30px 30px;
  text-align: center;
  position: relative;
}

.card-support .card-no {
  font-weight: 700;
  font-family: var(--font_en);
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 15px;
  left: 15px;
}

.card-support .card-img {
  max-width: 120px;
  margin-inline: auto;
}

.card-support .card-ttl {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.card-support .card-text {
  border-top: 1px solid var(--color_border);
  text-align: justify;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 10px;
}

@media (max-width: 1100px) {
  .card-support {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-support li {
    padding: 30px 15px 15px;
    border-radius: 5px;
    aspect-ratio: auto;
  }

  .card-support .card-no {
    font-size: 0.625rem;
    top: 10px;
    left: 10px;
  }

  .card-support .card-img {
    width: 100px;
    margin: 0 auto;
  }

  .card-support .card-ttl {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

.list-dealer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.list-dealer a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color_gray_light);
  padding: 12px 30px 12px 10px;
  border: 1px solid var(--color_border);
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  transition: background-color 0.3s;
  overflow: hidden;
}

.list-dealer a::after {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}

@media (any-hover: hover) {
  .list-dealer a:hover {
    background-color: var(--color_primary);
    color: var(--color_white);
  }

  .list-dealer a:hover::after {
    background-color: var(--color_white);
  }
}

.list-dealer .label {
  background-color: oklch(from var(--color_black) l c h/0.1);
  padding: 2px 5px;
  border-radius: 2px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .list-dealer {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.card-growatt {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.card-growatt li {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 10px;
  color: var(--color_black);
  padding: 50px 30px 30px;
  text-align: center;
  position: relative;
}

.card-growatt .card-img {
  max-width: 100px;
  margin: 0 auto 20px;
}

.card-growatt .card-ttl {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.card-growatt .card-text {
  border-top: 1px solid var(--color_border);
  text-align: justify;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 10px;
}

@media (max-width: 1100px) {
  .card-growatt {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card-growatt li {
    padding: 30px 15px 15px;
    border-radius: 5px;
    aspect-ratio: auto;
  }

  .card-growatt .card-img {
    width: 100px;
    margin: 0 auto 20px;
  }

  .card-growatt .card-ttl {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .card-growatt .card-text {
    font-size: 0.75rem;
    padding-top: 10px;
  }
}

.list-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.list-spec li {
  display: grid;
  align-items: center;
  border-radius: 3px;
  border: 1px solid var(--color_border);
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 5px 10px;
  min-height: 50px;
  text-align: center;
}

.product-image {
  background-color: var(--color_gray_light);
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 16px 16px;
  z-index: 1;
}

.product-image img {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 7/5;
  position: relative;
  z-index: 5;
}

.list-growatt-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.list-growatt-images li {
  border: 1px solid var(--color_border);
  border-radius: 5px;
  padding: 15px;
}

.list-growatt-images figcaption {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-top: 5px;
}

@media (max-width: 1100px) {
  .list-growatt-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.list-growatt-image-notice {
  width: -moz-fit-content;
  width: fit-content;
}

.list-growatt-image-notice li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.list-growatt-image-notice .orange {
  background-color: #E56B16;
  width: 10px;
  height: 2px;
}

.list-growatt-image-notice .blue {
  background-color: #2B74B4;
  width: 10px;
  height: 2px;
}

.list-specifications {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.list-specifications .item {
  border: 2px solid var(--color_primary);
  border-radius: 10px;
  padding: 35px 25px 60px;
  position: relative;
}

.list-specifications .list-ttl {
  text-align: center;
  margin-bottom: 35px;
}

.list-specifications .list-ttl .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.list-specifications .list-ttl .sub {
  background-color: oklch(from var(--color_primary) l c h/0.2);
  padding: 2px 10px 3px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.list-specifications .list-img {
  display: flex;
  justify-content: center;
  gap: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.list-specifications .list-img img {
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 100px;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.list-specifications .list-img figcaption {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  margin-top: 5px;
}

.list-specifications .list-more {
  display: inline-flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  border-radius: 100px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
  padding: 10px 15px;
  height: 25px;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.list-specifications .list-more::after {
  content: "";
  flex-shrink: 0;
  background: url(../images/share/icon_arrow.svg) no-repeat center right/12px auto;
  border-left: 1px dotted var(--color_white);
  width: 20px;
  height: 10px;
}

.list-specifications .modal-trigger {
  position: absolute;
  inset: 0;
}

@media (max-width: 1100px) {
  .list-specifications {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .list-specifications .list-ttl {
    margin-bottom: 25px;
  }
}

.modal-product-ttl {
  text-align: center;
  margin-bottom: 35px;
}

.modal-product-ttl .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.modal-product-ttl .sub {
  background-color: oklch(from var(--color_secondary) l c h/0.2);
  padding: 2px 10px 3px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.table-spec-wrap {
  border: 1px solid var(--color_border);
  border-radius: 10px;
  padding: 50px;
}

.table-spec {
  border-collapse: separate;
}

.table-spec th {
  background-color: #f9fafb;
}

.table-spec th+th {
  border-left: 1px solid #eee;
}

.table-spec thead.is-sticky {
  position: sticky;
  top: 90px;
  z-index: 5;
}

.table-spec thead th {
  background-color: var(--color_primary);
  color: var(--color_white);
  border-bottom: 1px solid var(--color_border);
  padding: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  z-index: 1;
  text-align: center;
}

.table-spec .spce-header {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  text-align: left;
  gap: 10px;
  font-size: 0.875rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.table-spec .spce-header .img {
  display: grid;
  place-content: center;
  background-color: var(--color_white);
  border-radius: 3px;
  padding: 3px;
}

.table-spec .spce-header .img img {
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 30px;
}

.table-spec tbody th,
.table-spec tbody td {
  padding: 15px;
  font-size: 0.875rem;
  line-height: 1.5;
  vertical-align: middle;
}

.table-spec tbody th {
  border-bottom: 1px solid #eee;
  background-color: #f9fafb;
  text-align: left;
}

.table-spec tbody td {
  border-left: 1px dashed var(--color_border);
  border-bottom: 1px dashed var(--color_border);
  font-weight: bold;
  text-align: center;
}

.table-spec tbody .bg-gray {
  background-color: #f9fafb;
}

.table-spec tbody .section-header th,
.table-spec tbody .section-header td {
  background-color: var(--color_white);
  padding-top: 25px;
  padding-bottom: 10px;
}

.table-spec tbody .section-header th {
  position: relative;
  font-weight: 800;
}

.table-spec tbody .section-header th::before {
  content: "";
  background-color: var(--color_secondary);
  width: 3px;
  height: 1.2em;
  position: absolute;
  top: 28px;
  left: 0;
}

.table-spec tbody .small {
  display: block;
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--color_gray_02);
}

.table-spec tbody tr:hover {
  background-color: #f9fafb;
}

@media (max-width: 1100px) {
  .table-spec-wrap {
    padding: 15px;
  }

  .table-spec thead.is-sticky {
    top: 70px;
  }

  .table-spec thead th {
    padding: 5px;
    font-size: 0.875rem;
  }

  .table-spec .spce-header {
    grid-template-columns: 40px 1fr;
    gap: 5px;
    font-size: 0.75rem;
    line-height: 1.2;
    word-break: break-all;
  }

  .table-spec tbody th,
  .table-spec tbody td {
    padding: 5px;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .table-spec tbody .section-header th,
  .table-spec tbody .section-header td {
    padding-top: 25px;
    padding-bottom: 10px;
  }

  .table-spec tbody .small {
    font-size: 0.625rem;
  }
}

.box-message {
  color: var(--color_white);
  background: url(../images/sec04_bg.jpg) repeat center/cover;
  border-radius: 10px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.box-message::before {
  content: "";
  pointer-events: none;
  background: url(../images/under/box_ring.svg) no-repeat right bottom/contain;
  width: 630px;
  height: 790px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.box-message .box-header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 10px;
}

.box-message .box-ttl {
  font-size: 0.9375rem;
}

.box-message .box-catch-sub {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}

.box-message .box-catch {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 100px;
}

.box-message .box-read {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  text-align: right;
}

.box-message-wrap {
  position: relative;
}

.box-message-wrap .rimipachi01 {
  position: absolute;
  bottom: -30px;
  left: 20px;
  z-index: 1;
}

@media (max-width: 1100px) {
  .box-message {
    padding: 25px 20px 50px;
  }

  .box-message .box-header {
    flex-direction: column;
    gap: 25px;
  }

  .box-message .box-ttl {
    text-align: right;
  }

  .box-message .box-catch-sub {
    margin-bottom: 25px;
  }

  .box-message .box-catch {
    font-size: 1.875rem;
    margin-bottom: 40px;
  }

  .box-message .box-read {
    font-size: 0.9375rem;
    line-height: 1.5;
    text-align: left;
  }

  .box-message-wrap .rimipachi01 {
    top: -80px;
    bottom: auto;
    left: 20px;
    width: 140px;
  }
}

.box-notice {
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 10px;
  padding: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1100px) {
  .box-notice {
    padding: 15px;
    text-align: left;
  }
}

.list-contact-btns {
  display: grid;
  gap: 15px;
}

.list-contact-btns a {
  display: block;
  background-color: var(--color_gray_light);
  border: 1px solid var(--color_border);
  border-radius: 5px;
  font-weight: 700;
  line-height: 1.5;
  padding: 15px 25px;
  position: relative;
  transition: background-color 0.3s;
  overflow: hidden;
}

.list-contact-btns a .large {
  font-size: 1.25rem;
  margin-right: 10px;
}

.list-contact-btns a::after {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 1;
}

@media (any-hover: hover) {
  .list-contact-btns a:hover {
    background-color: var(--color_primary);
    color: var(--color_white);
  }

  .list-contact-btns a:hover::after {
    background-color: var(--color_white);
  }
}

@media (max-width: 1100px) {
  .list-contact-btns a {
    display: grid;
    align-items: center;
    padding: 10px 30px 10px 15px;
  }

  .list-contact-btns a .large {
    font-size: 1.125rem;
  }
}

.list-fip-simulation-notice {
  display: grid;
  gap: 10px;
  font-size: 0.8125rem;
}

.list-fip-simulation-notice .item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  line-height: 1.5;
}

.list-fip-simulation-notice dt {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
}

.list-fip-simulation-notice .label01 {
  background-color: #169887;
  height: 15px;
}

.list-fip-simulation-notice .label02 {
  background-color: #3F9FFF;
  height: 15px;
}

.list-fip-simulation-notice .label03 {
  background-color: #FD9764;
  height: 2px;
}

@media (max-width: 1100px) {
  .list-fip-simulation-notice {
    margin-top: 25px;
  }

  .list-fip-simulation-notice .item {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

hr {
  border-color: var(--color_border);
  max-width: 100%;
  margin: 50px auto;
}

@media (max-width: 1100px) {
  hr {
    margin: 30px auto;
  }
}

.fade {
  transition: opacity 0.5s;
}

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.bold,
.strong {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.c-red {
  color: #F44336;
}

.c-blue {
  color: var(--color_primary);
}

.c-green {
  color: var(--color_secondary);
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 0.8125rem;
  line-height: 1.5;
  text-indent: -1.3em;
  padding-left: 1.3em;
}

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

.mbXS {
  margin-bottom: 8px !important;
}

.mbS {
  margin-bottom: 16px !important;
}

.mbM {
  margin-bottom: 32px !important;
}

.mbXM {
  margin-bottom: 48px !important;
}

.mbL {
  margin-bottom: 64px !important;
}

.mbXL {
  margin-bottom: 96px !important;
}

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

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

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

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

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center;
  }

  .sp-tar {
    text-align: right;
  }

  .sp-tal {
    text-align: left;
  }

  .mbXS {
    margin-bottom: 4px !important;
  }

  .mbS {
    margin-bottom: 8px !important;
  }

  .mbM {
    margin-bottom: 16px !important;
  }

  .mbXM {
    margin-bottom: 32px !important;
  }

  .mbL {
    margin-bottom: 48px !important;
  }

  .mbXL {
    margin-bottom: 64px !important;
  }

  .sp-col1 {
    grid-template-columns: 1fr;
  }

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

  .sp-col3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .sp-col4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

  .gapXL {
    grid-gap: 64px;
  }
}

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

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

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

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

.splide__pagination li {
  display: flex;
  align-items: center;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

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

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrows {
  display: flex;
  gap: 15px;
}

.splide__arrow--prev,
.splide__arrow--next {
  display: block;
  background-color: var(--color_white);
  border-radius: 50%;
  width: 65px;
  height: 65px;
  position: relative;
}

.splide__arrow--prev::before,
.splide__arrow--next::before {
  content: "";
  background-color: var(--color_black);
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.splide__arrow--prev::before {
  -webkit-mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
  mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
  left: 47%;
}

.splide__arrow--next::before {
  -webkit-mask: url(../images/share/splide_next.svg) no-repeat center/contain;
  mask: url(../images/share/splide_next.svg) no-repeat center/contain;
  left: 53%;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

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

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

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 6rem;
}

@media (max-width: 1100px) {
  .splide__controls {
    margin-top: 3rem;
  }
}

.splide__pagination {
  gap: 12px;
}

.splide__pagination__page {
  background: var(--color_white);
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 10px;
  width: 10px;
}

.splide__pagination__page.is-active {
  background: var(--color_primary);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

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

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

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

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

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

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

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

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

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

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}


/*症例カテゴリー*/
.block-case-category {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.block-case-category .item {
  background-color: var(--color_gray_light);
  border-radius: 5px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  line-height: 1;
}

.block-case-category .icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background-color: var(--color_white);
  border-radius: 5px;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  width: 50px;
  height: 50px;
}

.block-case-category .icon img {
  object-fit: contain;
  max-height: 18px;
  max-width: 22px;
}

.block-case-category .name {
  opacity: 0.7;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.block-case-category .category {
  font-weight: 700;
}


@media (max-width: 800px) {
  .block-case-category {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .block-case-category .item {
    padding: 10px;
    gap: 10px;
  }

  .block-case-category .name {
    margin-bottom: 2px;
  }
}


.br-all {
  display: block;
  margin: 0;
  padding: 0;
}


.youtube-embed--fallback,
.youtube-embed--fallback .wp-block-embed__wrapper {
  aspect-ratio: 16 /9;
  height: 100%;
}

.youtube-embed--fallback .wp-block-embed__wrapper {
  display: flex;
  place-items: center;
}

.youtube-embed--fallback img {
  display: block;
  margin-inline: auto;
}
