@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #111;
  --color_link: #111;
  --color_border: #E8E8E8;
  --color_primary: #066740;
  --color_secondary: #008846;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
  --gradient_primary: linear-gradient(45deg, #03804F 0%, #74BE6B 100%);
}

/* ====================================================
【アニメーション】
==================================================== */
: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:
    "Noto Sans JP",
    "Local Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  --font_jp: "Noto Sans JP", serif;
  --font_en: "Outfit", sans-serif;
  --font_weight: 500;
  --font_size: 0.9375rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

@media (max-width: 800px) {
  :root {
    --font_size: 0.9375rem;
    --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 {
  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);
  padding-top: 110px;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  background-image: radial-gradient(circle, #d9d9d9 1px, transparent 1px);
  background-size: 20px 20px;
  position: fixed;
  inset: 0;
  z-index: -1;
}

@media (max-width: 800px) {
  body {
    padding-top: 60px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

[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: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

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

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

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

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

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

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

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

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

/*ボタン*/
.btn-login {
  display: inline-block;
  color: var(--color_primary);
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-right: 15px;
  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) {
  .btn-login:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-weight: bold;
  padding: 10px 18px;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s;
}

.btn-download::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_download.svg) no-repeat center/contain;
  mask: url(../images/share/icon_download.svg) no-repeat center/contain;
  width: 14px;
  height: 17px;
}

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

.btn-download-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.4375rem;
  font-weight: bold;
  line-height: 1;
  padding: 30px 120px;
  line-height: 1;
  transition: background-color 0.3s, outline 0.3s;
}

.btn-download-large::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_download.svg) no-repeat center/contain;
  mask: url(../images/share/icon_download.svg) no-repeat center/contain;
  width: 22px;
  height: 28px;
}

@media (any-hover: hover) {
  .btn-download-large:hover {
    background-color: #008846;
    outline: 1px solid var(--color_white);
  }
}

@media (max-width: 800px) {
  .btn-download-large {
    font-size: 1.0625rem;
    gap: 15px;
    padding: 25px 15px;
    width: 100%;
  }
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  border: 1px solid var(--color_primary);
  background-color: var(--color_white);
  color: var(--color_primary);
  font-weight: bold;
  padding: 10px 18px;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s;
}

.btn-contact::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 14px;
  height: 11px;
  margin-top: 1px;
}

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

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

.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;
  align-items: center;
  gap: 15px;
  color: var(--color_primary);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  position: relative;
}

.btn-more .arrow {
  border-radius: 100px;
  border: 1px solid #8FB1A3;
  width: 40px;
  height: 40px;
  position: relative;
  transition: background-color 0.3s;
}

.btn-more .arrow::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}

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

  .btn-more:hover .arrow {
    background-color: var(--color_primary);
  }

  .btn-more:hover .arrow::before {
    background-color: var(--color_white);
  }
}

.btn-more-large {
  display: inline-grid;
  align-items: center;
  border-radius: 100px;
  gap: 10px;
  background-color: var(--color_white);
  border: 2px solid var(--color_primary);
  color: var(--color_primary);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  padding: 10px 25px;
  min-width: 400px;
  min-height: 100px;
  text-align: center;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

.btn-more-large .arrow {
  border-radius: 100px;
  border: 1px solid #8FB1A3;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.btn-more-large .arrow::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}

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

  .btn-more-large:hover .arrow::before {
    background-color: var(--color_white);
  }
}

@media (max-width: 800px) {
  .btn-more-large {
    font-size: 1.125rem;
    padding: 10px 25px;
    min-width: 100%;
    min-height: 70px;
  }
}

.btn-more-small {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--color_primary);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  position: relative;
}

.btn-more-small .arrow {
  border-radius: 100px;
  border: 1px solid #8FB1A3;
  width: 35px;
  height: 35px;
  position: relative;
  transition: background-color 0.3s;
}

.btn-more-small .arrow::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 8px;
}

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

  .btn-more-small:hover .arrow {
    background-color: var(--color_primary);
  }

  .btn-more-small:hover .arrow::before {
    background-color: var(--color_white);
  }
}

@media (max-width: 800px) {
  .btn-more-small {
    gap: 10px;
    font-size: 0.875rem;
  }

  .btn-more-small .arrow {
    width: 30px;
    height: 30px;
  }
}

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

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

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 25px;
}

.category-ttl::before {
  content: "";
  background-color: var(--color_primary);
  width: 5px;
  height: 20px;
}

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

.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: 800px) {
  .btn-back {
    margin-bottom: 15px;
  }
}

/*カテゴリーリスト*/
.list-category-links {
  display: grid;
  gap: 5px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.list-category-links>li {
  position: relative;
  padding-left: 15px;
}

.list-category-links>li::before {
  content: "";
  border-top: 1px solid var(--color_black);
  border-right: 1px solid var(--color_black);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 0;
  rotate: 45deg;
}

.list-category-links ul {
  margin-top: 5px;
}

.list-category-links ul li {
  position: relative;
  padding-left: 15px;
}

.list-category-links ul li::before {
  content: "└";
  position: absolute;
  top: 5px;
  left: 0;
  color: #888;
  font-size: 0.625rem;
}

.list-category-links ul ul {
  margin-top: 5px;
  margin-bottom: 5px;
}

.list-category-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;
}

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

/*導入事例*/
.post-under-cases {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.post-under-cases a {
  display: block;
  height: 100%;
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 5px;
  padding: 20px;
}

.post-under-cases .post-img {
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.post-under-cases .post-img img {
  aspect-ratio: 7/5;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-under-cases .post-ttl {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.post-under-cases .post-data {
  display: grid;
  gap: 5px;
}

.post-under-cases .post-data .item {
  border-bottom: 1px dashed var(--color_border);
  display: grid;
  grid-template-columns: 70px 1fr;
  line-height: 1;
  font-size: 0.875rem;
  padding-bottom: 5px;
}

.post-under-cases .post-data dt {
  opacity: 0.5;
  font-size: 0.75rem;
  padding-top: 2px;
}

@media (max-width: 800px) {
  .post-under-cases {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/*ホワイトペーパー  */
.post-under-whitepaper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 50px 30px;
}

.post-under-whitepaper a {
  display: block;
  height: 100%;
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 5px;
  padding: 20px;
}

.post-under-whitepaper .post-img {
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.post-under-whitepaper .post-img img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-under-whitepaper .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: 20px;
}

.post-under-whitepaper .post-download {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: var(--color_white);
  font-weight: bold;
  line-height: 1;
  margin-top: auto;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  transition: background-color 0.3s;
}

.post-under-whitepaper .post-download::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_download.svg) no-repeat center/contain;
  mask: url(../images/share/icon_download.svg) no-repeat center/contain;
  width: 14px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .post-under-whitepaper a:hover .post-download {
    background-color: var(--color_white);
    color: var(--color_primary);
  }

  .post-under-whitepaper a:hover .post-download::before {
    background-color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .post-under-whitepaper {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/*新着情報*/
.post-under-news {
  display: grid;
  gap: 15px;
  margin-bottom: 50px;
}

.post-under-news a {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 5px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  padding: 15px 70px 15px 15px;
  position: relative;
  transition: background-color 0.3s;
}

.post-under-news a::before {
  content: "";
  background: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1;
}

.post-under-news .post-img img {
  border-radius: 3px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

.post-under-news .post-data {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.post-under-news time {
  display: block;
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 0.875rem;
  line-height: 1;
}

.post-under-news .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-under-news .category {
  display: inline-block;
  color: #9A9A9A;
  font-size: 0.6875rem;
}

.post-under-news .category+.category::before {
  content: ",";
  margin-right: 2px;
}

.post-under-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5;
}

.post-under-news .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .post-under-news {
    gap: 15px;
    margin-bottom: 30px;
  }

  .post-under-news a {
    grid-template-columns: 110px 1fr;
    gap: 15px;
    padding: 10px;
    position: relative;
    transition: background-color 0.3s;
  }

  .post-under-news a::before {
    display: none;
  }

  .post-under-news .post-data {
    flex-wrap: wrap;
    gap: 0 10px;
    margin-bottom: 5px;
  }

  .post-under-news time {
    font-size: 0.75rem;
  }

  .post-under-news .post-ttl {
    font-size: 0.875rem;
  }

  .post-under-news .no-post {
    padding: 25px 0;
  }
}

/*詳細ページ*/
:has(.layout-single-post) .u-contents {
  position: relative;
}

:has(.layout-single-post) .u-contents::before {
  content: "";
  background-color: #ECF5EE;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  z-index: -1;
}

:has(.layout-single-post) .container {
  max-width: 1024px;
  margin-inline: auto;
}

.layout-single-post {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  border-radius: 10px;
  overflow: hidden;
}

.layout-single-post .l-header {
  color: var(--color_white);
  background-image: var(--gradient_primary);
  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 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: 800px) {
  :has(.layout-single-post) .u-contents::before {
    height: 200px;
  }

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

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

  .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: 800px) {
  .post-number {
    gap: 15px;
    margin-top: 30px;
  }
}

.post-number-single {
  border-top: 1px solid var(--color_border);
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
  padding-top: 50px;
}

@media (max-width: 800px) {
  .post-number-single {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.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_black);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_black);
  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_black);
  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;
}

/*投稿本文用CSS*/
.postdata {
  display: flow-root;
  overflow-wrap: break-word;
}

.postdata .screen-reader-text {
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
  background-color: #eee;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.postdata iframe {
  max-width: 100%;
}

.aligncenter {
  margin-inline: auto;
}

.postdata h2 {
  border-bottom: 1px solid var(--color_black);
  border-top: 1px solid var(--color_black);
  font-size: 1.375rem;
  line-height: 1.5;
  margin-block: 30px 30px;
  padding-block: 15px;
  position: relative;
}

.postdata h3 {
  font-size: 1.25rem;
  line-height: 1.5;
  border-left: 4px solid var(--color_primary);
  padding: 3px 0px 3px 15px;
  margin-block: 25px;
}

.postdata h4 {
  background: #f5f5f5;
  border-radius: 2px;
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 8px 15px;
  margin-block: 15px;
}

.wp-block-button__link {
  border: 1px solid #e9e9e9 !important;
  background-color: #f6f6f6 !important;
  color: var(--color_black) !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  text-align: left;
  font-size: 0.9375rem !important;
  line-height: 1 !important;
  min-width: 200px;
  padding: 10px 45px !important;
  line-height: 1.5;
  position: relative;
  transition: 0.3s;
}

.wp-block-button__link::after {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../../images/share/post_arrow.svg) no-repeat center/contain;
  mask: url(../../images/share/post_arrow.svg) no-repeat center/contain;
  width: 18px;
  height: 11px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.wp-block-button__link:hover {
  opacity: 1;
  background-color: var(--color_primary) !important;
  color: var(--color_white) !important;
}

.wp-block-button__link:hover::after {
  background-color: var(--color_white);
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-block: 1em;
}

.postdata a:not(.wp-block-button__link) {
  text-decoration: underline;
}

.postdata a:focus-visible {
  text-decoration: none;
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

.postdata sup {
  font-size: 1.1rem;
  position: relative;
  top: -0.1em;
}

.postdata ul {
  display: grid;
  grid-gap: 5px;
}

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

.postdata ul li::marker {
  color: var(--color_black);
}

.postdata ol {
  display: grid;
  grid-gap: 5px;
  counter-reset: number;
}

.postdata ol li {
  padding-left: 30px;
  position: relative;
}

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

.postdata table {
  width: 100%;
  border-collapse: collapse;
}

.postdata table th,
.postdata table td {
  border: 1px solid var(--color_border);
  padding: 10px;
  text-align: left;
}

.postdata table th {
  background-color: #f5f5f5;
}

/*-----------------------------------------------------------
Dialog Modal
-----------------------------------------------------------*/
.modal-button {
  border-radius: 100px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  padding: 15px 25px;
}

body:has(dialog[open]) {
  overflow: hidden;
}

.modal-style {
  border: none;
  outline: none;
  border-radius: 5px;
  width: min(720px, 100% - 32px);
  padding: 70px 60px;
  margin: auto;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.modal-style::backdrop {
  background: rgba(0, 0, 0, 0);
  transition: background 0.22s ease;
}

.modal-style[open] {
  opacity: 0;
  transform: scale(0.96);
}

.modal-style[open].is-visible {
  opacity: 1;
  transform: scale(1);
}

.modal-style[open].is-visible::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.modal-style.is-closing {
  opacity: 0;
  transform: scale(0.96);
}

.modal-style.is-closing::backdrop {
  background: rgba(0, 0, 0, 0);
}

.modal-style .modal-img {
  margin-bottom: 20px;
}

.modal-style .modal-ttl {
  font-weight: bold;
  border-bottom: 1px solid #000;
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.modal-style .modal-close {
  border-radius: 100%;
  background: var(--color_secondary) url(../images/share/icon_modal_close.svg) no-repeat center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal-close-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color_secondary);
  color: var(--color_white);
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 5px;
  text-align: center;
  margin-top: 50px;
  width: 100%;
}

.modal-close-bottom::before {
  content: "";
  background: url(../images/share/icon_modal_close.svg) no-repeat center/contain;
  width: 12px;
  height: 12px;
  margin-top: 2px;
}

@media (max-width: 800px) {
  .modal-style {
    padding: 20px;
  }

  .modal-style .modal-close {
    top: 10px;
    right: 10px;
  }
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  background-color: var(--color_white);
  border-bottom: 1px solid var(--color_border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 2.5%;
  position: fixed;
  top: 0;
  min-height: 110px;
  width: 100%;
  z-index: 10;
}

.h-utility {
  display: grid;
  gap: 10px;
}

.h-utility-btns {
  display: flex;
  gap: 10px;
  justify-content: end;
  align-items: center;
}

.h-utility-btns .btn-login {
  margin-right: 15px;
}

@media (max-width: 800px) {
  .header {
    gap: 10px;
    padding: 5px 1.25%;
    min-height: 60px;
  }

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

  .h-utility-btns,
  .gnavi {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
.gnavi-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.gnavi-links>li>a {
  display: inline-block;
}

.gnavi-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;
}

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

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

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

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

.dropdown .sub-menu {
  display: grid;
  gap: 5px;
  pointer-events: none;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  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:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

/*------------
Gnavi Drawer
--------------*/
html.is-open {
  height: 100%;
  overflow: hidden;
}

.sp-menu-btn {
  cursor: pointer;
  background-color: var(--color_secondary);
  border-radius: 2px;
  display: grid;
  display: none;
  place-items: center;
  padding-top: 0;
  width: 45px;
  height: 45px;
  position: relative;
  z-index: 110;
}

.sp-menu-btn-line {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  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.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);
}

@media (max-width: 800px) {
  .sp-menu-btn {
    display: grid;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: #E2EAE7;
  margin-top: auto;
  position: relative;
  padding: 0 5% 25px;
}

.footer::before {
  content: "";
  display: block;
  background-color: var(--color_white);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  z-index: 1;
}

.f-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  background-color: var(--color_primary);
  border-radius: 10px;
  padding: 50px 75px;
  margin: 0 auto 80px;
  max-width: 1600px;
  position: relative;
  z-index: 2;
}

.f-cta .l-desc {
  flex: 1;
  color: var(--color_white);
}

.f-cta .wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 1.25rem;
  font-weight: bold;
}

.f-cta .l-btns {}

.f-cta-ttl {
  border-bottom: 1px solid #E2EAE7;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .f-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 35px;
    padding: 25px 10% 35px;
    margin: 0 auto 50px;
  }

  .f-cta .l-desc {
    text-align: center;
  }

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

  .f-cta .wrap a {
    width: fit-content;
    margin: 0 auto;
  }

  .f-cta-ttl {
    font-size: 1.5rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}

.f-contents {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin: 0 auto;
  max-width: 1450px;
}

.f-contents>.col:nth-child(1) {
  width: 300px;
}

.f-contents>.col:nth-child(2) {
  flex: 1;
}

@media (max-width: 1330px) {
  .f-contents {
    flex-direction: column;
    gap: 50px;
  }
}

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

.f-links {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 100px;
  column-gap: 100px;
  line-height: 1.5;
  font-size: 0.875rem;
}

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

.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-btns {
  display: grid;
  gap: 10px;
  min-width: 330px;
}

.f-btn {
  background-color: var(--color_white);
  border-radius: 100px;
  border: 1px solid var(--color_white);
  color: var(--color_primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  position: relative;
  min-height: 60px;
  width: 100%;
  transition: background-color 0.3s;
}

.f-btn .arrow {
  border-radius: 100px;
  border: 1px solid var(--color_primary);
  width: 33px;
  height: 33px;
  position: relative;
  transition: background-color 0.3s;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.f-btn .arrow::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}

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

  .f-btn:hover .arrow {
    background-color: var(--color_primary);
    border-color: var(--color_white);
  }

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

.f-btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  background-color: var(--color_white);
  border: 1px solid var(--color_white);
  color: var(--color_primary);
  font-size: 1.0625rem;
  font-weight: bold;
  padding: 10px 18px;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s;
  min-height: 60px;
  width: 100%;
}

.f-btn-download::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/icon_download.svg) no-repeat center/contain;
  mask: url(../images/share/icon_download.svg) no-repeat center/contain;
  width: 18px;
  height: 23px;
}

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

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

.f-btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  border: 1px solid var(--color_white);
  background-color: var(--color_white);
  color: var(--color_primary);
  font-size: 1.0625rem;
  font-weight: bold;
  min-height: 60px;
  width: 100%;
  padding: 10px 18px;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s;
}

.f-btn-contact::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 19px;
  height: 15px;
  margin-top: 1px;
}

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

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

.f-group-ttl {
  font-weight: bold;
  line-height: 1;
  margin-bottom: 25px;
}

.f-group-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 30px 10px;
}

.f-group-list li {
  line-height: 1;
}

.f-group-list img {
  width: 100%;
}

.f-group-list .name {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
}

.f-group-list .desc {
  font-size: 13px;
}

.f-bottom {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  padding: 0 10%;
}

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

.f-bottom-links li+li::before {
  content: "|";
  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;
  }
}

.copyright {
  color: #777;
  font-size: 0.8125rem;
}

.pagetop {
  position: absolute;
  top: 330px;
  right: 25px;
  z-index: 2;
}

@media (max-width: 800px) {
  .footer {
    padding: 0 5% 80px;
  }

  .f-btns {
    min-width: 0;
  }

  .f-contents {
    padding: 0;
    gap: 35px;
  }

  .f-group-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }

  .f-bottom {
    margin-top: 50px;
    padding: 0 5%;
  }

  .pagetop {
    position: absolute;
    top: 30px;
    right: 25px;
  }
}

.sp-navi {
  display: none;
}

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

  .sp-navi {
    display: block;
  }

  .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 10000;
  }

  .sp-navi-btns>* {
    flex: 1;
    position: relative;
  }

  .sp-navi-btns .item {
    font-size: 0.625rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 10px 0;
  }

  .sp-navi-btns .item .img {
    display: block;
  }

  .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 8px;
    stroke: var(--svg-stroke);
  }

  .sp-navi-btns .item .ttl {
    display: block;
  }

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

  .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;
  }

  .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_secondary);
    -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-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_secondary);
    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%);
  }
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-areas: "sidebar body";
  gap: 50px;
  align-items: flex-start;
  margin-inline: auto;
  width: min(90%, 1200px);
}

.layout-sidebar .l-sidebar {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 5px;
  padding: 25px;
  grid-area: sidebar;
  position: sticky;
  top: 150px;
}

.layout-sidebar .l-label {
  border-bottom: 1px solid var(--color_border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.layout-sidebar .l-label [lang=en] {
  font-size: 1.0625rem;
}

.layout-sidebar .l-label .jp {
  font-size: 0.625rem;
}

.layout-sidebar .l-body {
  grid-area: body;
}

@media (max-width: 1024px) {
  .layout-sidebar {
    grid-template-columns: 1fr;
    grid-template-areas: "body" "sidebar";
    gap: 50px;
  }

  .layout-sidebar .l-sidebar {
    position: static;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  background-color: #F2F8F6;
  position: relative;
  overflow-x: clip;
}

.hero .wrapper {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  height: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2.5% 0 5%;
  position: relative;
  min-height: 720px;
}

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

.hero .row01 {
  display: flex;
  gap: 25px;
}

.hero .fukidashi {
  background-image: var(--gradient_primary);
  color: var(--color_white);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 5px 25px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.hero .fukidashi::before {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: #0e8752;
  width: 19px;
  height: 19px;
  position: absolute;
  bottom: -14px;
  left: 25px;
}

.hero .row02 {
  font-size: clamp(30px, 4vw, 63px);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero .row02 span {
  display: block;
  color: var(--color_primary);
  font-size: clamp(40px, 5vw, 70px);
}

.hero .row3 {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}

.hero .row4 {
  line-height: 1.5;
  font-size: 1.0625rem;
  position: relative;
  z-index: 5;
}

.hero .hero-mockup {
  position: relative;
  z-index: 2;
}

.hero .hero-deco01 {
  top: 0;
  left: 0;
}

.hero .hero-deco02 {
  bottom: 25%;
  right: 45%;
}

.hero .hero-deco03 {
  top: 20%;
  right: 40%;
}

.hero .hero-deco04 {
  bottom: 0;
  right: 0;
}

.hero .hero-img01 {
  top: 0;
  right: 0;
  z-index: 1;
}

.hero .hero-img02 {
  bottom: -15%;
  left: 0;
  z-index: 2;
}

.hero-badge {
  display: grid;
  place-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  position: relative;
  padding: 0 48px;
}

.hero-badge::before,
.hero-badge::after {
  content: "";
  width: 48px;
  height: 120px;
  position: absolute;
}

.hero-badge::before {
  background: url(../images/share/badge_l.svg) no-repeat center/contain;
  left: 0;
}

.hero-badge::after {
  background: url(../images/share/badge_r.svg) no-repeat center/contain;
  right: 0;
}

.hero-badge .label {
  font-size: 1.1875rem;
  margin-bottom: 5px;
}

.hero-badge .value-wrap {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.hero-badge .value {
  color: var(--color_secondary);
  font-size: 4rem;
  letter-spacing: 0;
}

.hero-badge .unit {
  font-size: 1.5625rem;
}

.hero-badge .note {
  font-size: 1.25rem;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .hero .wrapper {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
    padding: 80px 8% 30px;
    min-height: 0;
  }

  .hero .hero-mockup {
    position: relative;
    z-index: 2;
  }

  .hero .hero-deco01 {
    top: -20px;
    left: -22px;
    rotate: 90deg;
    width: 63px;
  }

  .hero .hero-deco02 {
    bottom: 5%;
    right: auto;
    left: 25%;
    width: 35px;
  }

  .hero .hero-deco03 {
    top: auto;
    bottom: 30%;
    right: auto;
    left: 30px;
    width: 50px;
  }

  .hero .hero-deco04 {
    bottom: -12px;
    right: -13px;
    rotate: -90deg;
    width: 100px;
  }

  .hero .hero-img01 {
    width: 45vw;
  }

  .hero .hero-img02 {
    width: 30vw;
    bottom: -5%;
    left: 0;
    z-index: 2;
  }
}

@media (max-width: 800px) {
  .hero .row01 {
    flex-direction: column;
    gap: 15px;
  }

  .hero .fukidashi {
    font-size: 0.9375rem;
  }

  .hero .row02 {
    font-size: 1.875rem;
    margin-bottom: 25px;
  }

  .hero .row02 span {
    font-size: 2.5rem;
  }

  .hero .row3 {
    gap: 15px;
    margin-bottom: 25px;
  }

  .hero .row4 {
    font-size: 0.9375rem;
  }

  .hero-badge {
    padding: 0 30px;
  }

  .hero-badge::before,
  .hero-badge::after {
    width: 30px;
    height: 70px;
  }

  .hero-badge .label {
    font-size: 0.75rem;
  }

  .hero-badge .value {
    font-size: 1.875rem;
  }

  .hero-badge .unit {
    font-size: 0.875rem;
  }

  .hero-badge .note {
    font-size: 0.875rem;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}

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

.t-h2 [lang=en] {
  color: var(--color_secondary);
  font-size: 1.1875rem;
}

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

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

  .t-h2 [lang=en] {
    font-size: 1rem;
  }
}

/*------------
Section
--------------*/
.sec01 {
  padding: 50px 0 100px;
  position: relative;
  overflow: clip;
}

.sec01::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, transparent 100%);
  width: 200px;
  z-index: 1;
}

.sec01::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(270deg, #fff 0%, #fff 50%, transparent 100%);
  width: 200px;
  z-index: 1;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 50px 0 80px;
  }

  .sec01::before {
    display: none;
    width: 80px;
  }

  .sec01::after {
    display: none;
    width: 80px;
  }
}

.carousel-logo-wrap {
  display: grid;
  gap: 15px;
}

.carousel-logo {
  position: relative;
  width: 100%;
}

.carousel-logo__viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-logo__track {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  width: -moz-max-content;
  width: max-content;
}

.carousel-logo--marquee .carousel-logo__track {
  animation: carousel-logo-marquee 45s linear infinite;
}

.carousel-logo--marquee.reverse .carousel-logo__track {
  animation-direction: reverse;
}

.carousel-logo img {
  flex-shrink: 0;
  height: auto;
  width: 160px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-logo--marquee .carousel-logo__track {
    animation: none;
  }
}

@keyframes carousel-logo-marquee {
  to {
    transform: translateX(-50%);
  }
}

.sec02-text {
  text-decoration: underline;
  text-decoration-color: var(--color_primary);
  text-decoration-thickness: 3px;
  text-underline-offset: 15px;
  color: var(--color_primary);
  text-align: center;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 70px;
}

.sec02-fukidashi {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 40px;
  align-items: start;
}

.sec02-fukidashi .fukidashi {
  background-color: #F1F4F3;
  border-radius: 10px;
  padding: 35px;
  text-align: center;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.5;
  position: relative;
}

.sec02-fukidashi .fukidashi::before {
  content: "";
  background: url(../images/share/icon_fukidashi.svg) no-repeat center/contain;
  width: 37px;
  height: 31px;
  position: absolute;
  top: -15px;
  left: 15px;
}

.sec02-fukidashi .fukidashi::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  background-color: #F1F4F3;
  width: 26px;
  height: 33px;
  position: absolute;
  bottom: -33px;
  left: 55%;
}

.sec02-fukidashi .fukidashi.left {
  margin-top: 40px;
}

.sec02-fukidashi .fukidashi.center::after {
  left: 40%;
}

.sec02-fukidashi .fukidashi.right {
  margin-top: 40px;
}

.sec02-fukidashi .fukidashi.right::after {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 100% 0);
  left: 30%;
}

@media (max-width: 800px) {
  .sec02-text {
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    font-size: 1.5625rem;
    letter-spacing: 0.25em;
    line-height: 1.5;
    margin-bottom: 50px;
  }

  .sec02-fukidashi {
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 10px;
  }

  .sec02-fukidashi .fukidashi {
    border-radius: 10px;
    padding: 10px;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: justify;
  }

  .sec02-fukidashi .fukidashi br {
    display: none;
  }

  .sec02-fukidashi .fukidashi::before {
    width: 20px;
    height: 18px;
    top: -10px;
    left: 10px;
  }

  .sec02-fukidashi .fukidashi::after {
    width: 18px;
    height: 22px;
    bottom: -22px;
    left: 45%;
  }

  .sec02-fukidashi .fukidashi.right {
    margin-top: 30px;
  }

  .sec02-fukidashi .fukidashi.left {
    margin-top: 30px;
  }
}

.sec03 {
  margin-bottom: 130px;
}

.sec03-01 {
  background-image: var(--gradient_primary);
  padding: 110px 0 200px;
}

.sec03-02 {
  background-color: #ECF5EE;
  border-radius: 10px;
  width: 95%;
  padding: 90px 2.5% 60px;
  margin: -100px auto 70px;
  position: relative;
  z-index: 1;
}

.sec03-ttl {
  color: var(--color_white);
  text-align: center;
  margin-bottom: 70px;
}

.sec03-ttl .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
}

.sec03-ttl .ttl {
  font-size: 2.8125rem;
}

.sec03-ttl02 {
  text-align: center;
  margin-bottom: 70px;
}

.sec03-ttl02 .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
}

.sec03-ttl02 .ttl {
  display: flex;
  align-items: end;
  justify-content: center;
  color: var(--color_secondary);
  font-size: 2.625rem;
  line-height: 1;
  margin-top: -15px;
}

.sec03-ttl02 .ttl span {
  font-size: 3.75rem;
  line-height: 1;
}

.sec03-ttl02 .ttl::before,
.sec03-ttl02 .ttl::after {
  content: "";
  background-color: var(--color_secondary);
  width: 2px;
  height: 50px;
}

.sec03-ttl02 .ttl::before {
  rotate: -25deg;
  margin-right: 20px;
}

.sec03-ttl02 .ttl::after {
  rotate: 25deg;
  margin-left: 20px;
}

.sec03-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.sec03-card li {
  background-color: var(--color_white);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 35px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}

.sec03-card .card-ttl {
  text-align: center;
  margin-bottom: 30px;
}

.sec03-card .card-ttl .num {
  color: var(--color_secondary);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 15px;
}

.sec03-card .card-ttl .ttl {
  font-size: 1.5625rem;
}

.sec03-card .card-img img {
  margin: 0 auto;
}

.sec03-card02 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.sec03-card02 li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 25px;
  border-radius: 6px;
  background-color: var(--color_white);
  padding: 75px 35px 50px;
  text-align: justify;
  position: relative;
  overflow: hidden;
}

.sec03-card02 .card-num {
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  background-color: var(--color_secondary);
  color: var(--color_white);
  font-family: var(--font_en);
  line-height: 1;
  padding: 10px 25px 10px 14px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
}

.sec03-card02 .card-num span {
  font-size: 1.25rem;
  margin-left: 5px;
}

.sec03-card02 .card-ttl-wrap {
  display: grid;
  align-items: center;
}

.sec03-card02 .card-ttl {
  font-size: 1.25rem;
  line-height: 1.5;
}

@media (max-width: 1400px) {
  .sec03-card02 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.sec03-btns {
  display: flex;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 1024px) {
  .sec03-btns {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 800px) {
  .sec03 {
    margin-bottom: 80px;
  }

  .sec03-01 {
    padding: 50px 0 100px;
  }

  .sec03-02 {
    border-radius: 10px;
    width: 90%;
    padding: 50px 5%;
    margin: -50px auto 50px;
  }

  .sec03-ttl {
    margin-bottom: 30px;
  }

  .sec03-ttl .logo {
    gap: 10px;
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .sec03-ttl .logo img {
    width: 200px;
  }

  .sec03-ttl .ttl {
    font-size: 1.875rem;
  }

  .sec03-ttl02 {
    margin-bottom: 30px;
  }

  .sec03-ttl02 .logo {
    gap: 10px;
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .sec03-ttl02 .logo img {
    width: 200px;
  }

  .sec03-ttl02 .ttl {
    font-size: 1.875rem;
    margin-top: -5px;
  }

  .sec03-ttl02 .ttl span {
    font-size: 3.125rem;
    margin: 0 0 -5px;
  }

  .sec03-card {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
  }

  .sec03-card li {
    padding: 25px;
  }

  .sec03-card .card-ttl {
    margin-bottom: 30px;
  }

  .sec03-card .card-ttl .num {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }

  .sec03-card .card-ttl .ttl {
    font-size: 1.375rem;
  }

  .sec03-card02 {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sec03-btns {
    gap: 15px;
  }
}

.sec04 {
  margin-bottom: 140px;
}

.sec04-layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  padding-right: 2.5%;
  padding-bottom: 200px;
  align-items: start;
  position: relative;
}

.sec04-layout::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 0 100px 0 0;
  position: absolute;
  inset: 50px 10% 0 0;
  z-index: -1;
}

.sec04-layout .l-img img {
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 550px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec04-layout .client {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.sec04-layout .client .client-logo {
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.sec04-layout .client .client-name {
  color: #767676;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.5;
}

.sec04-layout .l-desc {
  background-color: var(--color_white);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 50px;
  margin-top: 100px;
  margin-left: -50px;
  max-width: 740px;
  font-size: 1.0625rem;
  text-align: justify;
}

.sec04-layout .l-ttl {
  color: var(--color_primary);
  font-size: 2.1875rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.sec04-layout .l-btn {
  margin-top: 40px;
  text-align: right;
}

@media (max-width: 1024px) {
  .sec04-layout {
    grid-template-columns: 1fr;
    padding-right: 0;
    padding-bottom: 200px;
  }

  .sec04-layout::before {
    inset: 50px 0 0 0;
  }

  .sec04-layout .l-img img {
    min-height: auto;
  }

  .sec04-layout .l-desc {
    padding: 50px 10%;
    margin: -100px auto 0;
    max-width: 740px;
  }
}

.post-top-case {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-top: -120px;
  position: relative;
  z-index: 1;
}

.post-top-case a {
  display: block;
  height: 100%;
}

.post-top-case .post-img {
  overflow: hidden;
  margin-bottom: 30px;
}

.post-top-case .post-img img {
  aspect-ratio: 372/249;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s;
}

.post-top-case .client-name {
  color: #767676;
  line-height: 1.5;
  margin-bottom: 10px;
}

.post-top-case .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--color_primary);
  font-size: 1.25rem;
}

.post-top-case .post-more {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color_primary);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  position: relative;
  margin-top: 30px;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.post-top-case .post-more .arrow {
  border-radius: 100px;
  border: 1px solid #8FB1A3;
  width: 35px;
  height: 35px;
  position: relative;
  transition: background-color 0.3s;
}

.post-top-case .post-more .arrow::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}

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

  .post-top-case a:hover .post-more {
    text-decoration: underline;
  }

  .post-top-case a:hover .post-more .arrow {
    background-color: var(--color_primary);
  }

  .post-top-case a:hover .post-more .arrow::before {
    background-color: var(--color_white);
  }
}

@media (max-width: 1024px) {
  .post-top-case {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: -80px;
  }
}

@media (max-width: 800px) {
  .sec04 {
    margin-bottom: 80px;
  }

  .sec04-layout {
    grid-template-columns: 1fr;
    padding-right: 0;
    padding-bottom: 100px;
  }

  .sec04-layout::before {
    inset: 50px 0 0 0;
  }

  .sec04-layout .l-desc {
    padding: 25px 8%;
    margin: -50px auto 0;
    font-size: 0.9375rem;
    max-width: 90%;
  }

  .sec04-layout .l-ttl {
    font-size: 1.375rem;
    margin-bottom: 15px;
  }

  .sec04-layout .l-btn {
    margin-top: 20px;
  }

  .sec04-layout .client {
    gap: 15px;
    margin-bottom: 20px;
  }

  .sec04-layout .client .client-logo {
    width: 50px;
  }

  .sec04-layout .client .client-name {
    font-size: 0.875rem;
  }

  .post-top-case {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: -50px;
  }

  .post-top-case a {
    background-color: var(--color_white);
    border: 1px solid var(--color_border);
    border-radius: 5px;
    display: grid;
    gap: 15px;
    grid-template-columns: 100px 1fr;
    height: 100%;
    padding: 15px;
  }

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

  .post-top-case .post-img img {
    aspect-ratio: 1/1;
  }

  .post-top-case .client-name {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }

  .post-top-case .post-ttl {
    font-size: 1rem;
  }

  .post-top-case .post-more {
    display: none;
  }
}

.sec05 {
  padding-left: 100px;
  position: relative;
  z-index: 0;
}

.sec05::before {
  content: "";
  background-color: #F1F4F3;
  height: 275px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.sec05-link {
  display: block;
  border-radius: 100px 0 0 0;
  overflow: hidden;
  position: relative;
}

.sec05-link .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 5%;
  width: 100%;
  z-index: 5;
}

.sec05-link .link-img {
  position: relative;
}

.sec05-link .link-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 550px;
  width: 100%;
}

.sec05-link .link-img::before,
.sec05-link .link-img::after {
  content: "";
  position: absolute;
  inset: 0;
}

.sec05-link .link-img::before {
  background-color: oklch(from #000 l c h/0.5);
  z-index: 1;
}

.sec05-link .link-img::after {
  background-image: var(--gradient_primary);
  opacity: 0.25;
  z-index: 2;
}

.sec05-link .link-ttl {
  color: var(--color_white);
  font-size: 2.1875rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
}

.sec05-link .link-ttl [lang=en] {
  opacity: 0.25;
  font-size: 5.9375rem;
  line-height: 1;
}

.sec05-link .link-ttl .jp {
  font-size: 2.1875rem;
  line-height: 1;
  margin-top: -35px;
  margin-left: 30px;
}

.sec05-link .link-arrow {
  display: block;
  border-radius: 100px;
  border: 1px solid var(--color_white);
  width: 200px;
  height: 200px;
  position: relative;
  transition: background-color 0.3s;
}

.sec05-link .link-arrow::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 40px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (any-hover: hover) {
  .sec05-link:hover .link-arrow {
    background-color: var(--color_white);
  }

  .sec05-link:hover .link-arrow::before {
    background-color: var(--color_primary);
  }
}

@media (max-width: 1024px) {
  .sec05-link {
    border-radius: 100px 0 0 0;
  }

  .sec05-link .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 5%;
    width: 100%;
    z-index: 5;
  }

  .sec05-link .link-img img {
    height: 350px;
  }

  .sec05-link .link-ttl [lang=en] {
    font-size: 5.9375rem;
  }

  .sec05-link .link-ttl .jp {
    font-size: 2.1875rem;
    margin-top: -30px;
    margin-left: 30px;
  }

  .sec05-link .link-arrow {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 800px) {
  .sec05 {
    padding-left: 5%;
  }

  .sec05::before {
    height: 150px;
  }

  .sec05-link {
    border-radius: 80px 0 0 0;
  }

  .sec05-link .wrapper {
    padding: 0 5%;
    height: 100%;
  }

  .sec05-link .link-img img {
    height: 250px;
  }

  .sec05-link .link-ttl [lang=en] {
    font-size: 4.375rem;
  }

  .sec05-link .link-ttl .jp {
    font-size: 1.5625rem;
    margin-top: -20px;
    margin-left: 20px;
  }

  .sec05-link .link-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .sec05-link .link-arrow::before {
    width: 20px;
    height: 6px;
  }
}

.sec06 {
  background-image: var(--gradient_primary);
  color: var(--color_white);
  padding: 115px 0;
}

.sec06-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "desc img";
  gap: 50px;
  align-items: center;
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
}

.sec06-layout .l-img {
  grid-area: img;
}

.sec06-layout .l-img img {
  margin: 0 auto;
}

.sec06-layout .l-desc {
  grid-area: desc;
  font-size: 1.0625rem;
  text-align: justify;
}

.sec06-layout .l-desc .inner {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.sec06-layout .l-ttl {
  font-size: 2.625rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.sec06-layout .l-btn {
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .sec06-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "desc";
  }

  .sec06-layout .l-desc {
    font-size: 1.0625rem;
  }

  .sec06-layout .l-desc .inner {
    margin: 0 auto;
  }

  .sec06-layout .l-btn {
    text-align: center;
  }
}

@media (max-width: 800px) {
  .sec06 {
    padding: 80px 0;
  }

  .sec06-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "desc";
    gap: 50px;
  }

  .sec06-layout .l-desc {
    font-size: 0.9375rem;
  }

  .sec06-layout .l-desc .inner {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }

  .sec06-layout .l-ttl {
    font-size: 1.875rem;
    margin-bottom: 15px;
  }

  .sec06-layout .l-btn {
    margin-top: 50px;
  }
}

.sec07 {
  background-color: #fff;
  padding: 130px 0;
}

.sec07-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

@media (max-width: 1024px) {
  .sec07-layout {
    grid-template-columns: 1fr;
  }
}

.sec07-ttl-wrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.sec07-ttl-wrap .btn-more-small {
  margin-top: 5px;
}

.sec07-ttl {
  line-height: 1.5;
}

.sec07-ttl .jp {
  font-size: 2rem;
}

.sec07-ttl [lang=en] {
  color: var(--color_secondary);
  font-size: 0.9375rem;
}

.post-top-news {
  display: grid;
}

.post-top-news .item {
  border-bottom: 1px solid var(--color_border);
}

.post-top-news a {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  align-items: flex-start;
  padding: 25px 0;
  position: relative;
}

.post-top-news .post-img {
  overflow: hidden;
  border: 1px solid var(--color_border);
}

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

.post-top-news .post-desc {
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.post-top-news .post-data {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.post-top-news .category-wrap {
  border-right: 1px solid #aaa;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding-right: 15px;
}

.post-top-news .category {
  display: inline-block;
  color: #9A9A9A;
  font-size: 0.6875rem;
}

.post-top-news .category+.category::before {
  content: ",";
  margin-right: 2px;
}

.post-top-news time {
  color: var(--color_secondary);
  display: inline-block;
  font-size: 0.8125rem;
  font-family: var(--font_en);
  line-height: 1;
}

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

.box-epigno-journal {
  background-color: #F1F4F3;
  border-radius: 17px;
  padding: 45px 50px 40px;
}

.box-epigno-journal .box-img {
  margin-bottom: 45px;
}

.box-epigno-journal-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color_secondary);
  color: var(--color_white);
  font-weight: bold;
  line-height: 1;
  width: 157px;
  height: 157px;
  border-radius: 100px;
  padding-top: 20px;
  position: relative;
  margin-left: auto;
  transition: background-color 0.3s;
}

.box-epigno-journal-btn::after {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 31px;
  height: 10px;
}

@media (any-hover: hover) {
  .box-epigno-journal-btn:hover {
    background-color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .sec07 {
    padding: 80px 0;
  }

  .sec07-layout {
    gap: 30px;
  }
}

@media (max-width: 800px) and (max-width: 1024px) {
  .sec07-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .sec07-ttl-wrap {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
  }

  .sec07-ttl-wrap .btn-more-small {
    margin-top: 5px;
  }

  .sec07-ttl .jp {
    font-size: 1.5625rem;
  }

  .sec07-ttl [lang=en] {
    font-size: 0.8125rem;
  }

  .post-top-news a {
    grid-template-columns: 100px 1fr;
    gap: 15px;
    padding: 15px 0;
  }

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

  .post-top-news .post-ttl {
    -webkit-line-clamp: 3;
    font-size: 0.9375rem;
    margin-bottom: 10px;
  }

  .box-epigno-journal {
    padding: 35px;
    text-align: justify;
  }

  .box-epigno-journal .box-img {
    margin-bottom: 25px;
  }

  .box-epigno-journal-btn {
    margin: 0 auto;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  background-color: #F2F8F6;
  position: relative;
  overflow-x: clip;
  padding: 150px 8% 50px;
  position: relative;
  overflow: clip;
}

.page-header::before,
.page-header::after {
  content: "";
  position: absolute;
  z-index: 1;
}

.page-header::before {
  background: url(../images/hero_deco01.svg) no-repeat center/contain;
  width: 111px;
  height: 185px;
  top: 0;
  left: 0;
}

.page-header::after {
  background: url(../images/hero_deco04.svg) no-repeat center/contain;
  width: 148px;
  height: 184px;
  bottom: -35px;
  right: 0;
}

.page-ttl {
  line-height: 1.5;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.page-ttl [lang=en] {
  color: var(--color_secondary);
  text-box: trim-both cap alphabetic;
  font-size: 6.25rem;
  margin-bottom: 20px;
}

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

.breadcrumb {
  position: relative;
  z-index: 1;
}

.breadcrumb ul {
  font-size: 0.875rem;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

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

@media (max-width: 800px) {
  .page-header {
    padding: 50px 5% 25px;
  }

  .page-header::before {
    display: none;
  }

  .page-header::after {
    width: 80px;
    height: 136px;
  }

  .page-ttl {
    line-height: 1.5;
    margin-bottom: 35px;
  }

  .page-ttl [lang=en] {
    font-size: 3.75rem;
    line-height: 1;
    margin-bottom: 20px;
  }

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

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

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

.u-h2 [lang=en] {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--color_secondary);
  font-size: 1.125rem;
  line-height: 1;
  margin-bottom: 10px;
}

.u-h2 [lang=en]::before {
  content: "";
  display: inline-block;
  background-color: currentColor;
  width: 5px;
  height: 1em;
}

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

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

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

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

.u-h2-02 {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 70px;
  position: relative;
}

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

.u-h2-02 [lang=en] {
  color: #f3f3f3;
  font-size: 9.375rem;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .u-h2-02 {
    margin-bottom: 50px;
  }

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

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

.u-h3 {
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
  font-size: 1.4375rem;
  line-height: 1.5;
  margin-bottom: 40px;
}

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

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

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

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

.tall-green .u-h2 [lang=en] {
  color: var(--color_white);
}

.tall-gradation {
  color: var(--color_white);
  position: relative;
  padding: 120px 0;
  z-index: 0;
}

.tall-gradation::before {
  content: "";
  background-image: var(--gradient_primary);
  border-radius: 20px;
  position: absolute;
  inset: 0 2.5%;
  z-index: -1;
}

.tall-gradation .u-h2-02 [lang=en] {
  opacity: 0.15;
}

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

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

.hidden {
  overflow: hidden;
}

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

  .tall-green,
  .tall-gradation {
    padding: 60px 15px;
  }

  .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.9375rem;
}

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

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

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

.list-check li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 5px;
  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 #c9c9c9;
  padding: 15px;
  vertical-align: middle;
}

.table-style01 th {
  background-color: #e2e2e2;
}

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

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

@media (max-width: 800px) {

  .table-style01 th,
  .table-style01 td {
    padding: 10px;
    line-height: 1.5;
  }

  .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: 800px) {
  .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;
  text-align: justify;
}

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

.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: 800px) {

  .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%;
  }

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

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

/*------------
Add
--------------*/
.page-img {
  width: 95%;
  margin: 0 auto;
}

.page-img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.layout-style01 {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 5%;
  align-items: start;
}

.layout-style01 .l-header {
  position: sticky;
  top: 150px;
  z-index: 1;
}

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

  .layout-style01 .l-header {
    position: static;
  }
}

.u-mission {
  background-image: var(--gradient_primary);
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  padding: 100px;
  border-radius: 10px;
}

.u-mission .inner {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.u-mission .jp {
  font-size: 4.6875rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

.u-mission [lang=en] {
  font-size: 0.9375rem;
  line-height: 1;
  margin-top: 25px;
}

@media (max-width: 800px) {
  .u-mission {
    padding: 10%;
  }

  .u-mission .jp {
    font-size: 2.1875rem;
  }
}

.reason-catch {
  font-size: max(3.5vw, 1.875rem);
  font-weight: 500;
  line-height: 1.3;
}

.dl-overview .item {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 50px;
  padding: 25px 0;
}

.dl-overview :has(.company-logo) dt {
  padding-top: 15px;
}

.company-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}

.company-logo .logo {
  background-color: var(--color_white);
  border-radius: 5px;
  padding: 10px;
  color: var(--color_text);
  width: 120px;
}

.company-logo .img {
  width: 100px;
}

@media (max-width: 800px) {
  .dl-overview {
    display: grid;
    gap: 10px;
  }

  .dl-overview .item {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 10px;
  }

  .dl-overview :has(.company-logo) dt {
    padding-top: 0;
  }

  .dl-overview dd {
    font-weight: bold;
  }

  .dl-overview dd {
    line-height: 1.5;
    font-size: 0.875rem;
  }

  .company-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }

  .company-logo .logo {
    background-color: var(--color_white);
    border-radius: 5px;
    padding: 10px;
    color: var(--color_text);
    width: 120px;
  }

  .company-logo .img {
    width: 100px;
  }
}

.layout-mission {
  position: relative;
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-template-areas: "img body";
  align-items: start;
  gap: 15%;
}

.layout-mission + .layout-mission {
	margin-top: 120px;
}

.layout-mission.reverse {
    grid-template-areas: "body img";
    grid-template-columns: 1fr 35%;
    gap: 5%;
}

.layout-mission.reverse .l-typography {
    left: auto;
	right: -50px;
}

.layout-mission .l-img {
  grid-area: img;
  padding: 0 50px;
  position: relative;
  z-index: 0;
}

.layout-mission .l-img::before {
  content: "";
  aspect-ratio: 1/1;
  background-color: var(--color_primary);
  border-radius: 5px;
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 50%;
  z-index: -1;
}

.layout-mission .l-img img {
  box-shadow: 0 25px 30px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.layout-mission .l-body {
  grid-area: body;
}

.layout-mission .l-ttl {
  font-size: 2.8125rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 50px;
}

.layout-mission .l-ttl span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 2px;
  display: inline;
  padding: 0.15em 0.5em;
  color: var(--color_white);
  line-height: 2;
  background-image: var(--gradient_primary);
}

.layout-mission .l-typography {
  color: #ebebeb;
  text-transform: uppercase;
  font-size: 7.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: -50px;
  left: -50px;
}

@media (max-width: 1024px) {
  .layout-mission,
	.layout-mission.reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "body";
    gap: 100px;
  }

  .layout-mission .l-img {
    padding: 0;
  }

  .layout-mission .l-body {
    grid-area: body;
  }
	
	.layout-mission + .layout-mission {
	margin-top: 60px;
}
}

@media (max-width: 800px) {
  .layout-mission {
    gap: 20px;
  }

  .layout-mission .l-body {
    grid-area: body;
    position: relative;
    z-index: 1;
  }

  .layout-mission .l-ttl {
    font-size: 1.875rem;
    margin-bottom: 25px;
  }

  .layout-mission .l-typography {
    font-size: 3.75rem;
    top: -30px;
    left: -5vw;
  }
	
	.layout-mission.reverse {
gap: 20px;
}
	
	.layout-mission.reverse .l-typography {
	right: -5vw;
}
}

.layout-mission02 {
  margin-top: 150px;
  position: relative;
}

.layout-mission02 .l-typography {
  color: #ebebeb;
  text-transform: uppercase;
  font-size: 7.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: -80px;
  right: -50px;
}

@media (max-width: 800px) {
  .layout-mission02 {
    margin-top: 100px;
  }

  .layout-mission02 .l-typography {
    font-size: 3.75rem;
    top: -50px;
    right: -5vw;
  }
}

.card-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 50px;
}

.card-values li {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  background-color: var(--color_white);
  background: var(--color_white) url(../images/under/card_deco01.svg) no-repeat bottom 15px right 15px/35px auto;
  border-radius: 5px;
  padding: 35px;
  position: relative;
}

.card-values .card-no {
  border-bottom: 3px solid var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color_primary);
  padding-bottom: 10px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}

.card-values .card-ttl {
  font-size: 1.625rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.card-values .card-ttl span {
  color: var(--color_secondary);
}

@media (max-width: 800px) {
  .card-values {
    gap: 20px;
  }
}

.layout-message {
  position: relative;
}

.layout-message .wrapper {
  display: grid;
  grid-template-columns: 1fr 30%;
  grid-template-areas: "body img";
  align-items: start;
  gap: 10%;
  z-index: 0;
}

.layout-message .l-img {
  grid-area: img;
  position: relative;
  z-index: 0;
}

.layout-message .l-img::before {
  content: "";
  aspect-ratio: 1/1;
  background-color: var(--color_primary);
  border-radius: 5px;
  position: absolute;
  top: -50px;
  right: -50px;
  width: 50%;
  z-index: -1;
}

.layout-message .l-img img {
  box-shadow: 0 25px 30px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  aspect-ratio: 26/33;
  -o-object-fit: cover;
  object-fit: cover;
}

.layout-message .l-body {
  grid-area: body;
  text-align: justify;
}

.layout-message .inner {
  max-width: 600px;
  margin-left: auto;
}

.layout-message .l-message {
  font-size: clamp(1.875rem, 3vw, 2.5rem); /* 30px〜40px */
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 70px;
}

.layout-message .l-signature {
  line-height: 1.8;
}

.layout-message .l-signature .jp {
  font-size: 1.25rem;
}

.layout-message .l-signature span {
  margin-right: 15px;
}

.layout-message .l-typography {
  color: #ebebeb;
  text-transform: uppercase;
  font-size: 7.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  bottom: 0;
  right: -50px;
  z-index: -1;
}

@media (max-width: 800px) {
  .layout-message {
    display: flex;
    flex-direction: column;
  }

  .layout-message .wrapper {
    display: contents;
    grid-template-columns: 1fr;
    grid-template-areas: "img" "body";
    gap: 20px;
  }

  .layout-message .l-img {
    order: 1;
    margin-bottom: 50px;
  }

  .layout-message .l-img img {
    max-width: 250px;
    margin: 0 auto;
  }

  .layout-message .l-message {
    order: 2;
    font-size: 1.5625rem;
    line-height: 1.5;
    margin-bottom: 35px;
  }

  .layout-message .l-body {
    order: 2;
  }

  .layout-message .l-typography {
    display: none;
  }
}

.member-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 50px;
}

@media (max-width: 800px) {
  .member-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.member-card {
  display: grid;
  grid-template-columns: 45% 1fr;
  background-color: var(--color_white);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.member-card::before {
  content: "";
  border-radius: 100px;
  background: var(--color_secondary) url(../images/share/icon_search.svg) no-repeat center/12px auto;
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
}

.member-card span {
  display: block;
}

.member-card .member-img {
  overflow: hidden;
}

.member-card .member-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 5/7;
  transition: scale 0.3s;
}

.member-card .member-body {
  padding: 35px;
  display: flex;
  flex-direction: column;
}

.member-card .member-message {
  background: var(--color_primary);
  background: var(--gradient_primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 1.5625rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.member-card .bottom {
  border-top: 1px solid var(--color_border);
  margin-top: auto;
  padding-top: 25px;
  line-height: 1.5;
}

.member-card .name {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  font-size: 1.125rem;
  align-items: end;
  gap: 0 10px;
}

.member-card .name [lang=en] {
  color: var(--color_secondary);
  font-size: 0.75rem;
}

.member-card .job {
  font-size: 0.8125rem;
  margin-top: 5px;
}

@media (any-hover: hover) {
  .member-card:hover .member-img img {
    scale: 1.05;
  }
}

@media (max-width: 800px) {
  .member-card {
    grid-template-columns: 1fr;
  }

  .member-card .member-body {
    padding: 25px;
  }
}

.staff-list {
  border-top: 1px solid var(--color_border);
  padding-top: 80px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 50px;
}

.staff-list .list-img {
  background-color: var(--color_white);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

.staff-list .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 5/7;
}

.staff-list .name {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  font-size: 1.125rem;
  align-items: end;
  gap: 15px;
}

.staff-list .name [lang=en] {
  color: var(--color_secondary);
  font-size: 0.9375rem;
}

@media (max-width: 800px) {
  .staff-list {
    padding-top: 40px;
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .staff-list .name {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}

:has(.interview-intro) .modal-style {
  width: min(1024px, 100% - 32px);
  padding: 70px;
}

@media (max-width: 800px) {
  :has(.interview-intro) .modal-style {
    padding: 25px;
  }
}

.interview-intro {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 1fr 40%;
  grid-template-areas: "body img";
  gap: 5%;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.interview-intro .l-img {
  grid-area: img;
}

.interview-intro .l-img img {
  border-radius: 5px;
}

.interview-intro .l-body {
  display: flex;
  flex-direction: column;
  grid-area: body;
}

.interview-intro .l-message {
  background: var(--color_primary);
  background: var(--gradient_primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 50px;
}

.interview-intro .bottom {
  margin-top: auto;
  line-height: 1.5;
}

.interview-intro .name {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  font-size: 1.5625rem;
  align-items: end;
  gap: 0 10px;
}

.interview-intro .name [lang=en] {
  color: var(--color_secondary);
  font-size: 0.9375rem;
}

.interview-intro .job {
  font-size: 0.8125rem;
  margin-top: 5px;
}

.interview-data {
  display: grid;
  gap: 5px;
  border-left: 3px solid var(--color_secondary);
  line-height: 1.5;
  font-size: 0.875rem;
  margin-top: 25px;
  padding-left: 15px;
}

.interview-data .item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
}

.interview-question .ttl {
  color: var(--color_secondary);
  font-size: 1.5625rem;
  margin-bottom: 30px;
}

.interview-question .img {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 35px;
}

.interview-question .text {
  text-align: justify;
}

.interview-question+.interview-question {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .interview-intro {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "body";
    gap: 25px;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  .interview-intro .l-message {
    font-size: 1.875rem;
    margin-bottom: 25px;
  }

  .interview-question .ttl {
    font-size: 1.375rem;
    margin-bottom: 15px;
  }

  .interview-question .img {
    margin-bottom: 25px;
  }

  .interview-question+.interview-question {
    margin-top: 25px;
  }
}

.list-strengths {
  display: grid;
  gap: 50px;
}

.list-strengths>li {
  border-radius: 20px;
  background-color: var(--color_secondary);
  color: var(--color_white);
  display: grid;
  grid-template-columns: 45% 1fr;
  grid-template-areas: "body img";
  gap: 5%;
  padding: 60px;
}

.list-strengths .list-body {
  grid-area: body;
  position: relative;
  text-align: justify;
}

.list-strengths .list-img {
  grid-area: img;
  position: relative;
  z-index: 2;
}

.list-strengths .list-img img {
  border-radius: 10px;
}

.list-strengths .list-no {
  border: 1px solid currentColor;
  border-radius: 100px;
  padding: 5px 10px;
  margin-bottom: 15px;
  font-size: 0.75rem;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}

.list-strengths .list-ttl {
  font-size: 2.1875rem;
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.list-strengths .list-disc li::marker {
  color: var(--color_white);
}

.list-strengths .list-typography {
  color: oklch(from var(--color_white) l c h/0.1);
  font-size: 8.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: -35px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .list-strengths>li {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "body";
  }
}

@media (max-width: 800px) {
  .list-strengths {
    gap: 25px;
  }

  .list-strengths>li {
    gap: 25px;
    padding: 20px;
  }

  .list-strengths .list-ttl {
    font-size: 1.5625rem;
  }

  .list-strengths .list-typography {
    font-size: 4.375rem;
    line-height: 1;
    left: -15px;
  }
}

.hero-epitalhr {
  background-color: #F2F8F6;
  position: relative;
  overflow-x: clip;
}

.hero-epitalhr .wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2.5% 0 5%;
  position: relative;
  min-height: 720px;
}

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

.hero-epitalhr .row01 {
  display: flex;
  gap: 25px;
}

.hero-epitalhr .fukidashi {
  background-image: var(--gradient_primary);
  color: var(--color_white);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 5px 25px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.hero-epitalhr .fukidashi::before {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: #0e8752;
  width: 19px;
  height: 19px;
  position: absolute;
  bottom: -14px;
  left: 25px;
}

.hero-epitalhr .row02 {
  margin-bottom: 35px;
}

.hero-epitalhr .row02 .text {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-epitalhr .row02 .text span {
  color: var(--color_primary);
}

.hero-epitalhr .row02 .logo img {
  width: 450px;
}

.hero-epitalhr .row3 {
  display: flex;
  gap: 25px;
}

.hero-epitalhr .hero-mockup {
  position: relative;
  z-index: 2;
}

.hero-epitalhr .hero-deco01 {
  top: 0;
  left: 0;
}

.hero-epitalhr .hero-deco02 {
  bottom: 25%;
  right: 45%;
}

.hero-epitalhr .hero-deco03 {
  top: 20%;
  right: 40%;
}

.hero-epitalhr .hero-deco04 {
  bottom: 0;
  right: 0;
}

.hero-epitalhr .hero-img01 {
  top: 0;
  right: 0;
  z-index: 1;
}

.hero-epitalhr .hero-img02 {
  bottom: -15%;
  left: 0;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-epitalhr .wrapper {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
    padding: 80px 8% 30px;
    min-height: 0;
  }

  .hero-epitalhr .hero-mockup {
    position: relative;
    z-index: 2;
  }

  .hero-epitalhr .hero-deco01 {
    top: -20px;
    left: -22px;
    rotate: 90deg;
    width: 63px;
  }

  .hero-epitalhr .hero-deco02 {
    bottom: 5%;
    right: auto;
    left: 25%;
    width: 35px;
  }

  .hero-epitalhr .hero-deco03 {
    top: auto;
    bottom: 30%;
    right: auto;
    left: 30px;
    width: 50px;
  }

  .hero-epitalhr .hero-deco04 {
    bottom: -12px;
    right: -13px;
    rotate: -90deg;
    width: 100px;
  }

  .hero-epitalhr .hero-img01 {
    width: 45vw;
  }

  .hero-epitalhr .hero-img02 {
    width: 30vw;
    bottom: -5%;
    left: 0;
    z-index: 2;
  }
}

@media (max-width: 800px) {
  .hero-epitalhr .row01 {
    flex-direction: column;
    gap: 15px;
  }

  .hero-epitalhr .fukidashi {
    font-size: 0.9375rem;
  }

  .hero-epitalhr .row02 {
    margin-bottom: 25px;
  }

  .hero-epitalhr .row02 .text {
    font-size: 1.5625rem;
    line-height: 1.5;
  }

  .hero-epitalhr .row02 .text span {
    display: block;
  }

  .hero-epitalhr .row02 .logo img {
    width: 280px;
  }

  .hero-epitalhr .row3 {
    gap: 15px;
  }
}

.u-fukidashi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.u-fukidashi .fukidashi {
  display: grid;
  align-items: center;
  background-color: #F1F4F3;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.5;
  min-height: 150px;
  position: relative;
}

.u-fukidashi .fukidashi::before {
  content: "";
  background: url(../images/share/icon_fukidashi.svg) no-repeat center/contain;
  width: 37px;
  height: 31px;
  position: absolute;
  top: -15px;
  left: 15px;
}

.u-fukidashi .fukidashi::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  background-color: #F1F4F3;
  width: 20px;
  height: 25px;
  position: absolute;
  bottom: -25px;
  left: 50%;
}

.u-fukidashi-img {
  margin-top: 50px;
}

.u-fukidashi-img img {
  margin: 0 auto;
}

@media (max-width: 800px) {
  .u-fukidashi {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .u-fukidashi .fukidashi {
    padding: 15px;
    font-size: 0.9375rem;
    min-height: 100px;
    text-align: left;
  }

  .u-fukidashi .fukidashi br {
    display: none;
  }

  .u-fukidashi .fukidashi::before {
    width: 20px;
    height: 18px;
    top: -10px;
    left: 10px;
  }

  .u-fukidashi .fukidashi::after {
    display: none;
  }

  .u-fukidashi-img {
    margin-top: 25px;
  }
}

.epitalhr-text-area {
  background-color: #F1F4F3;
  font-weight: bold;
  line-height: 1.7;
  padding: 80px 0;
  text-align: center;
}

.epitalhr-text01 {
  font-size: 1.5625rem;
  margin-bottom: 50px;
}

.epitalhr-text01 span {
  font-size: 2.5rem;
}

.epitalhr-text02 {
  font-size: 1.25rem;
  margin-inline: auto;
  max-width: 800px;
  margin-bottom: 50px;
}

.epitalhr-text03 {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 50px;
}

.epitalhr-text04 {
  display: grid;
  font-size: 1.5625rem;
}

.epitalhr-text04 .text02 {
  color: var(--color_secondary);
  font-size: 2.5rem;
  font-weight: bold;
}

@media (max-width: 800px) {
  .epitalhr-text-area {
    line-height: 1.7;
    padding: 50px 0;
    text-align: left;
  }

  .epitalhr-text01 {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .epitalhr-text01 span {
    font-size: 1.375rem;
    line-height: 1.5;
  }

  .epitalhr-text02 {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .epitalhr-text03 {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .epitalhr-text04 {
    font-size: 1rem;
  }

  .epitalhr-text04 .text02 {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.card-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 20px;
}

.card-features li {
  grid-column: span 2;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 25px;
  background-color: var(--color_white);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  color: var(--color_text);
  padding: 35px;
  text-align: center;
  line-height: 1.5;
  position: relative;
  /* 最後から2番目は3列目から開始 */
}

/* .card-features li:nth-last-child(2) {
  grid-column: 2/span 2;
} */

.card-features li {
  /* 最後は5列目から */
}

/* .card-features li:last-child {
  grid-column: 4/span 2;
} */

.card-features .card-ttl {
  text-align: center;
  font-weight: bold;
}

.card-features .card-ttl .num {
  color: var(--color_secondary);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 15px;
}

.card-features .card-ttl .ttl {
  font-size: 1.5625rem;
}

.card-features .card-img img {
  border-radius: 10px;
  margin: 0 auto;
}

.card-features .card-text {
  line-height: 1.7;
  text-align: justify;
}

@media (max-width: 1024px) {
  .card-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card-features li {
    grid-column: auto;
  }

  .card-features li:nth-last-child(2) {
    grid-column: auto;
  }

  .card-features li:last-child {
    grid-column: auto;
  }
}

@media (max-width: 800px) {
  .card-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-features li {
    gap: 15px;
    padding: 25px 20px;
  }

  .card-features .card-ttl .num {
    margin-bottom: 15px;
  }

  .card-features .card-ttl .ttl {
    font-size: 1.375rem;
  }
}

.list-points {
  display: grid;
  gap: 50px;
}

.list-points>li {
  border-radius: 20px;
  background-color: var(--color_secondary);
  color: var(--color_white);
  padding: 60px;
}

.list-points .wrapper {
  display: grid;
  grid-template-columns: 45% 1fr;
  grid-template-areas: "body img";
  gap: 5%;
  position: relative;
}

.list-points .list-body {
  grid-area: body;
  position: relative;
  text-align: justify;
}

.list-points .list-img {
  grid-area: img;
  position: relative;
  z-index: 2;
}

.list-points .list-no {
  border: 1px solid currentColor;
  border-radius: 100px;
  padding: 5px 10px;
  margin-bottom: 15px;
  font-size: 0.75rem;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}

.list-points .list-ttl {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.list-points .list-disc li::marker {
  color: var(--color_white);
}

.list-points .list-typography {
  color: oklch(from var(--color_white) l c h/0.1);
  font-size: 8.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: -35px;
  z-index: 1;
}

.list-points .box {
  background-color: var(--color_primary);
  border-radius: 10px;
  padding: 50px;
  margin-top: 50px;
}

@media (max-width: 800px) {
  .list-points {
    gap: 25px;
  }

  .list-points>li {
    padding: 25px;
  }

  .list-points .wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "body";
    gap: 25px;
  }

  .list-points .list-no {
    border: 1px solid currentColor;
    border-radius: 100px;
    padding: 5px 10px;
    margin-bottom: 15px;
    font-size: 0.75rem;
    line-height: 1;
    width: -moz-fit-content;
    width: fit-content;
  }

  .list-points .list-ttl {
    font-size: 1.375rem;
    margin-bottom: 15px;
  }

  .list-points .list-typography {
    font-size: 4.375rem;
    top: 250px;
    left: -25px;
  }

  .list-points .box {
    padding: 15px;
    margin-top: 25px;
  }
}

.card-style01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.card-style01>li {
  background-color: var(--color_white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.card-style01 .card-no {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.5625rem;
  font-family: var(--font_en);
  padding: 0 0 0 7px;
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
}

.card-style01 .card-img img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-style01 .card-body {
  padding: 35px 45px;
  text-align: justify;
}

.card-style01 .card-ttl {
  font-size: 1.25rem;
  line-height: 1.5;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

.card-style01 .card-ttl::after {
  content: "";
  background-color: var(--color_secondary);
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.card-style01 .card-catch {
  color: var(--color_secondary);
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .card-style01 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-style01 .card-img img {
    aspect-ratio: 7/5;
  }

  .card-style01 .card-body {
    padding: 25px;
  }

  .card-style01 .card-ttl {
    font-size: 1.125rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .card-style01 .card-catch {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}

.box-style01 {
  background-color: #F1F4F3;
  border-radius: 10px;
  padding: 60px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 15px;
  }
}

.flow-style01 {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 20px;
  padding: 100px;
  display: grid;
  gap: 50px;
}

.flow-style01>li {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 150px 1fr;
  padding-bottom: 50px;
}

.flow-style01>li:first-child {
  border-top: 1px solid var(--color_border);
  padding-top: 50px;
}

.flow-style01 .flow-no {
  display: grid;
  line-height: 1;
  align-content: start;
  color: var(--color_secondary);
  font-family: var(--font_en);
  margin-top: 5px;
}

.flow-style01 .flow-no span:nth-child(1) {
  display: block;
  font-size: 0.9375rem;
}

.flow-style01 .flow-no span:nth-child(2) {
  display: block;
  font-size: 3.4375rem;
}

.flow-style01 .flow-ttl {
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .flow-style01 {
    padding: 35px 25px;
    gap: 25px;
  }

  .flow-style01>li {
    grid-template-columns: 1fr;
    padding-bottom: 15px;
  }

  .flow-style01>li:first-child {
    padding-top: 15px;
  }

  .flow-style01 .flow-no {
    margin: 0 0 10px;
  }

  .flow-style01 .flow-no span:nth-child(1) {
    font-size: 0.75rem;
  }

  .flow-style01 .flow-no span:nth-child(2) {
    font-size: 2.1875rem;
  }
}

.list-anchor-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.list-anchor-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: var(--color_white);
  font-weight: bold;
  line-height: 1.5;
  padding: 10px 20px;
  border-radius: 3px;
  transition: background-color 0.3s, color 0.3s;
}

.list-anchor-links a::after {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/btn_anchor.svg) no-repeat center/contain;
  mask: url(../images/share/btn_anchor.svg) no-repeat center/contain;
  width: 12px;
  height: 12px;
}

@media (any-hover: hover) {
  .list-anchor-links a:hover {
    background-color: var(--color_white);
    color: var(--color_primary);
  }

  .list-anchor-links a:hover::after {
    background-color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .list-anchor-links {
    gap: 10px;
  }

  .list-anchor-links a {
    gap: 10px;
  }
}

.faq-style {
  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: 15px 10px;
  }

  .faq-style .faq-summary .faq-ttl {
    font-size: 1rem;
    line-height: 1.5;
  }

  .faq-style .faq-icon {
    font-size: 0.9375rem;
    width: 30px;
    height: 30px;
  }

  .faq-style .faq-wrap {
    grid-template-columns: 30px 1fr;
    gap: 15px;
    padding: 0 10px 15px;
  }

  .faq-style .faq-content .faq-desc {
    padding-top: 0;
  }
}

.layout-recruit {
  position: relative;
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-template-areas: "body img";
  align-items: start;
  gap: 15%;
}

.layout-recruit .l-img {
  grid-area: img;
  padding: 0 50px;
  position: relative;
  z-index: 0;
}

.layout-recruit .l-img::before {
  content: "";
  aspect-ratio: 1/1;
  background-color: var(--color_primary);
  border-radius: 5px;
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 50%;
  z-index: -1;
}

.layout-recruit .l-img img {
  box-shadow: 0 25px 30px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.layout-recruit .l-body {
  grid-area: body;
}

.layout-recruit .l-ttl {
  font-size: clamp(1.375rem, 2.2vw, 1.875rem); /* 22px 〜 30px */
  font-weight: 900;
  line-height: 1;
  margin-bottom: 50px;
}

.layout-recruit .l-ttl span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 2px;
  display: inline;
  padding: 0.1em 0.4em;      /* 0.15em 0.5em から縮小 */
  color: var(--color_white);
  line-height: 1.9;           /* 2 から縮小 */
  background-image: var(--gradient_primary);
}

.layout-recruit .l-typography {
  color: #ebebeb;
  text-transform: uppercase;
  font-size: 7.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: -50px;
  right: -50px;
}

@media (max-width: 1024px) {
  .layout-recruit {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "body";
    gap: 80px;
  }

  .layout-recruit .l-img {
    padding: 0;
  }
}

@media (max-width: 800px) {
  .layout-recruit {
    gap: 50px;
  }

  .layout-recruit .l-img {
    padding: 0;
  }

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

  .layout-recruit .l-typography {
    font-size: 3.75rem;
    top: -35px;
    right: -5vw;
  }
}

.btn-recruit-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (max-width: 1024px) {
  .btn-recruit-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.btn-recruit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color_white);
  background-image: var(--gradient_primary);
  border-radius: 10px;
  padding: 50px;
  min-height: 150px;
  position: relative;
}

.btn-recruit .btn-ttl {
  line-height: 1.5;
}

.btn-recruit .btn-ttl [lang=en] {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.btn-recruit .btn-ttl [lang=en]::before {
  content: "";
  display: inline-block;
  background-color: var(--color_white);
  width: 5px;
  height: 5px;
}

.btn-recruit .btn-ttl .jp {
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.5;
}

.btn-recruit .arrow {
  display: block;
  border-radius: 100px;
  border: 1px solid var(--color_white);
  width: 80px;
  height: 80px;
  position: relative;
  transition: background-color 0.3s;
}

.btn-recruit .arrow::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 25px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (any-hover: hover) {
  .btn-recruit:hover .arrow {
    background-color: var(--color_white);
  }

  .btn-recruit:hover .arrow::before {
    background-color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .btn-recruit {
    padding: 20px;
    min-height: 120px;
  }

  .btn-recruit .btn-ttl [lang=en] {
    margin-bottom: 5px;
  }

  .btn-recruit .btn-ttl .jp {
    font-size: 1.375rem;
  }

  .btn-recruit .arrow {
    width: 60px;
    height: 60px;
  }
}

/* ====================================================
【数字で見るエピグノ】
==================================================== */
.fact-grid {
  display: grid;
  gap: 24px;
}

.fact-grid__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  grid-template-areas: "age     company" "gender  company" "gender  employee" "gender  employee";
  gap: 24px;
}

.fact-grid__bottom {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr 1fr auto;
  grid-template-areas:
    "vacation vacation holiday  holiday  overtime overtime"
    "vacation vacation retire   retire   overtime overtime"
    "growth   growth   growth   newcomer newcomer newcomer";
  gap: 24px;
}

@media (max-width: 1024px) {
  .fact-grid__top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .fact-grid__bottom {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "vacation overtime"
      "vacation overtime"
      "holiday  retire"
      "growth   newcomer";
  }
}

@media (max-width: 800px) {
  .fact-grid {
    gap: 16px;
  }

  .fact-grid__top,
  .fact-grid__bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .fact-grid .fact-card {
    grid-area: auto;
    width: 100%;
  }
}

.fact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 140px;
  padding: 35px;
  background-color: #ECF5EE;
  border-radius: 10px;
  overflow: hidden;
}

.fact-card--age {
  grid-area: age;
}

.fact-card--company {
  grid-area: company;
}

.fact-card--gender {
  grid-area: gender;
}

.fact-card--employee {
  grid-area: employee;
}

.fact-card--vacation {
  grid-area: vacation;
}

.fact-card--holiday {
  grid-area: holiday;
}

.fact-card--retire {
  grid-area: retire;
}

.fact-card--overtime {
  grid-area: overtime;
}

.fact-card--growth {
  grid-area: growth;
}

.fact-card--newcomer {
  grid-area: newcomer;
}

.fact-card--growth,
.fact-card--newcomer {
  min-height: 180px;
}

.fact-card .card-label {
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color_black);
  margin-bottom: 12px;
}

.fact-card .card-value {
  font-family: var(--font_en);
  line-height: 1;
  color: var(--color_text);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.fact-card .card-value .num {
  font-size: 3.5rem;
  letter-spacing: 0;
}

.fact-card .card-value .unit {
  font-size: 1.375rem;
  font-weight: bold;
}

.fact-card .card-value .sep {
  font-size: 2.5rem;
  padding: 0 4px;
}

.fact-card .card-sub {
  font-size: 0.8125rem;
  color: var(--color_gray_dark);
  margin-top: 12px;
}

.fact-card .card-img {
  margin-top: auto;
  align-self: flex-end;
  max-width: 45%;
}

.fact-card .card-img img {
  display: block;
  width: 100%;
  height: auto;
}

.fact-card .card-chart {
  margin: 25px auto 0;
}

.fact-card--company,
.fact-card--gender,
.fact-card--vacation,
.fact-card--overtime {
  min-height: 200px;
}

.fact-card--gender .card-value {
  justify-content: center;
  font-size: 2.5rem;
}

.fact-card--age .card-img,
.fact-card--holiday .card-img,
.fact-card--growth .card-img,
.fact-card--newcomer .card-img {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 40%;
}

.fact-card--employee .card-img {
  position: absolute;
  right: 50%;
  bottom: 20px;
  transform: translate(50%);
  max-width: 100%;
}

.fact-card--retire .card-img {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 35%;
  margin: 0;
}

.fact-card--vacation .card-img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 25px auto 0;
}

@media (max-width: 800px) {
  .fact-card {
    min-height: 0;
    padding: 20px;
  }

  .fact-card--company,
  .fact-card--gender,
  .fact-card--vacation,
  .fact-card--overtime {
    min-height: 200px;
  }

  .fact-card--age .card-img {
    right: 15px;
    bottom: 0;
    width: 150px;
    transform: translate(0%);
  }

  .fact-card--growth .card-img,
  .fact-card--newcomer .card-img {
    top: auto;
    right: 15px;
    bottom: 0;
    width: 150px;
    transform: translate(0%);
  }

  .fact-card--employee .card-img {
    right: 15px;
    bottom: 0;
    width: 150px;
    transform: translate(0%);
  }

  .fact-card--vacation .card-img {
    width: 100px;
    margin: 0 auto;
  }

  .fact-card--holiday .card-img {
    width: 80px;
    margin: 0;
  }

  .fact-card--retire .card-img {
    bottom: 0;
    width: 80px;
    margin: 0;
  }

  .fact-card--overtime .card-img {
    position: absolute;
    right: 15px;
    bottom: 0;
    width: 130px;
  }

  .fact-card .card-value .num {
    font-size: 2.75rem;
  }

  .fact-card .card-value .unit {
    font-size: 1.125rem;
  }

  .fact-card .card-value .sep {
    font-size: 2rem;
  }
}

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

.flow-recruit li {
  background: var(--color_white) url(../images/under/card_deco01.svg) no-repeat bottom 15px right 15px/35px auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 50px;
  text-align: justify;
  position: relative;
}

.flow-recruit li+li::before {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--color_secondary);
  width: 15px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -45px;
}

.flow-recruit .flow-no {
  display: grid;
  font-family: var(--font_en);
  line-height: 1;
  color: var(--color_secondary);
  margin-bottom: 20px;
  text-align: center;
}

.flow-recruit .flow-no span:nth-child(1) {
  display: block;
  font-size: 0.9375rem;
}

.flow-recruit .flow-no span:nth-child(2) {
  display: block;
  font-size: 2.8125rem;
}

.flow-recruit .flow-ttl {
  font-size: 1.5625rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .flow-recruit {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .flow-recruit li+li::before {
    top: -30px;
    transform: translateX(-50%) rotate(90deg);
    left: 50%;
  }
}

.accordion-style {
  background-color: var(--color_white);
  border-radius: 5px;
  transition: 0.3s;
}

.accordion-style+.accordion-style {
  margin-top: 15px;
}

.accordion-style .accordion-summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 25px;
  cursor: pointer;
  padding: 25px 25px;
  line-height: 1;
  position: relative;
}

.accordion-style .accordion-summary .accordion-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}

.accordion-style .accordion-summary::-webkit-details-marker {
  display: none;
}

.accordion-style .accordion-content {
  padding: 20px 25px;
  overflow: hidden;
}

.accordion-style .accordion-open-icon {
  background-color: var(--color_primary);
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  position: relative;
  transition: 0.3s;
}

.accordion-style .accordion-open-icon::before,
.accordion-style .accordion-open-icon::after {
  content: "";
  display: block;
  background: var(--color_white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.accordion-style .accordion-open-icon::before {
  width: 10px;
  height: 2px;
}

.accordion-style .accordion-open-icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.5s;
}

.accordion-style.is-open .accordion-open-icon {
  background-color: #d2d2d2;
}

.accordion-style.is-open .accordion-open-icon::after {
  opacity: 0;
}

@media (max-width: 800px) {
  .accordion-style .accordion-summary {
    grid-template-columns: 1fr 30px;
    gap: 15px;
    padding: 15px 20px;
    line-height: 1;
  }

  .accordion-style .accordion-summary .accordion-ttl {
    font-size: 1rem;
    text-align: justify;
  }
}

.btn-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: var(--gradient_primary);
  border-radius: 10px;
  color: var(--color_white);
  padding: 50px;
  min-height: 150px;
}

.btn-entry .btn-ttl {
  line-height: 1;
  font-weight: bold;
}

.btn-entry .btn-ttl .jp {
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.btn-entry .btn-ttl [lang=en] {
  font-size: 3.125rem;
  margin-bottom: 6px;
}

.btn-entry .arrow {
  display: block;
  border-radius: 100px;
  border: 1px solid var(--color_white);
  width: 80px;
  height: 80px;
  position: relative;
  transition: background-color 0.3s;
}

.btn-entry .arrow::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 25px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (any-hover: hover) {
  .btn-entry:hover .arrow {
    background-color: var(--color_white);
  }

  .btn-entry:hover .arrow::before {
    background-color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .btn-entry {
    padding: 25px;
    min-height: 150px;
  }

  .btn-entry .btn-ttl .jp {
    font-size: 0.9375rem;
  }

  .btn-entry .btn-ttl [lang=en] {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }

  .btn-entry .arrow {
    width: 70px;
    height: 70px;
  }
}

.search-cases {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 10px;
  padding: 60px;
  margin: 0 auto;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.form-header .u-h2 {
  margin-bottom: 0;
}

.btn-reset {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: var(--color_white);
  padding: 8px 10px;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 1;
  transition: background-color 0.3s;
}

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

.search-cases>.item {
  border-top: 2px solid var(--color_black);
  line-height: 1.5;
  padding: 25px 0;
}

.search-cases .item-ttl {
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
}

.input-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
}

.input-check-list label {
  display: block;
  border: 1px solid var(--color_border);
  border-radius: 100vmax;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1;
}

.input-check-list input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* チェックされている場合のlabelスタイル */
.input-check-list label:has(input[type=checkbox]:checked) {
  background-color: var(--color_primary);
  color: var(--color_white);
  border-color: var(--color_primary);
}

/* フォーカス時のlabelスタイル */
.input-check-list label:has(input[type=checkbox]:focus-visible) {
  border-color: var(--color_primary);
  outline: none;
}

@media (any-hover: hover) {

  /* ホバー時のlabelスタイル */
  .input-check-list label:has(input[type=checkbox]:hover) {
    border-color: var(--color_primary);
    outline: none;
  }
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color_primary);
  border: 2px solid var(--color_primary);
  color: var(--color_white);
  border-radius: 5px;
  font-size: 1.125rem;
  padding: 15px 40px;
  line-height: 1;
  font-weight: bold;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 35px auto 0;
  transition: background-color 0.3s;
}

.btn-search::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_search.svg) no-repeat center center/contain;
  mask: url(../images/share/icon_search.svg) no-repeat center center/contain;
  width: 22px;
  height: 22px;
}

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

  .btn-search:hover::before {
    background-color: var(--color_secondary);
  }
}

@media (max-width: 800px) {
  .search-cases {
    padding: 30px 25px;
  }

  .form-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }

  .btn-reset {
    text-align: center;
    width: 100%;
  }

  .search-cases>.item {
    padding: 20px 0;
  }

  .input-check-list {
    gap: 10px;
  }

  .btn-search {
    width: 100%;
    margin: 15px auto 0;
  }

  .btn-search::before {
    content: "";
    background-color: var(--color_white);
    -webkit-mask: url(../images/share/icon_search.svg) no-repeat center center/contain;
    mask: url(../images/share/icon_search.svg) no-repeat center center/contain;
    width: 22px;
    height: 22px;
  }
}

.privacy-ttl {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.dl-privacy {
  display: grid;
  gap: 3rem;
}

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-size: 1.0625rem;
  padding-top: 25px;
  margin-bottom: 15px;
  position: relative;
}

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

/*-----------------------------------------------------------
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 {
  max-width: 1024px;
  margin: 50px 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;
}

.c-red {
  color: #F44336;
}

.c-green {
  color: var(--color_secondary);
}

.marker {
  background: linear-gradient(transparent 50%, #FFE4A0 50%);
}

.notice {
  font-size: 0.8125rem;
  text-indent: -1em;
  padding-left: 1em;
}

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.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;
}

.radius-10 {
  border-radius: 10px;
}

@media (max-width: 800px) {
  .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;
  }

  .mbS {
    margin-bottom: 8px;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

  .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__arrow--prev,
.splide__arrow--next {
  display: block;
  width: 30px;
  height: 30px;
}

.splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
}

.splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

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

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.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: 800px) {
  .splide__controls {
    margin-top: 3rem;
  }
}

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: #D0D0C9;
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #707070;
  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: 2px solid var(--color_primary);
}

.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;
}



.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: translateY(0);
  }
}
