@charset "UTF-8";

:root {
  --color_primary: #009FB9;
  --color_secondary: #0075C2;
  --color_tertiary: #ABCD03;
  --color_quaternary: #00A73C;
  --font_base: "Noto Sans JP", sans-serif;
  --font_size_base: 1.8rem;
  --font_jp: "Noto Sans JP", sans-serif;
  --font_en: "Poppins", sans-serif;
  --color_text: #333;
  --color_link: #009FB9;
  --gradient_primary: linear-gradient(90deg, #0075C2 0%, #009FB9 21%, #ABCD03 79%, #01A73C 100%);
  --gradient_secondary: linear-gradient(90deg, #009FB9 0%, #009FB9 26%, #B9E5EC 75%, #019FB9 100%);
  --color_bg: #F8F8F8;
}

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

html {
  font-size: 62.5%;
  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%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

:where(button) {
  all: unset;
}

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

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

textarea {
  resize: block;
}

: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;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

hr {
  border: none;
  -webkit-border-before: 1px solid;
  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
--------------*/
img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

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

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

body,
html {
  min-height: 100svh;
}

body {
  font-family: var(--font_base);
  font-weight: 500;
  font-size: var(--font_size_base);
  color: var(--color_text);
  line-height: 2;
  letter-spacing: 0.1em;
  overflow-x: clip;
  overflow-y: visible;
}

.link {
  color: var(--color_link);
  text-decoration: underline;
  word-break: break-all;
}

.link:focus-visible {
  text-decoration: none;
}

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

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

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

.anchor {
  margin-top: -50px;
  padding-top: 50px;
}

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

a:focus-visible,
button:focus-visible {
  outline: auto;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.44;
  letter-spacing: 0.15em;
  font-family: var(--font_jp);
  font-weight: 700;
}

@media (max-width: 800px) {

  /*-------------
  Body
  -------------*/
  body {
    font-size: 1.5rem;
  }
}

/*------------
Common
--------------*/
.btn-more {
  display: inline-block;
  padding: 11px 60px;
  background: var(--color_primary);
  border-radius: 100px;
  color: #fff;
  position: relative;
}

.btn-more::after {
  content: "";
  -webkit-mask: url(../images/share/icon_arrow_right.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow_right.svg) no-repeat center/contain;
  background: currentColor;
  width: 15px;
  height: 12px;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-more.large {
  min-width: 435px;
  padding: 16px 60px 16px 45px;
}

.btn-more.large::after {
  right: 30px;
}

.btn-more.bg01 {
  background: var(--color_quaternary);
}

.btn-more.white {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

@media (any-hover: hover) {
  .btn-more:hover::after {
    -webkit-animation: btn-arrow-move 0.5s ease-in-out;
    animation: btn-arrow-move 0.5s ease-in-out;
  }
}

.btn-more:focus-visible::after {
  -webkit-animation: btn-arrow-move 0.5s ease-in-out;
  animation: btn-arrow-move 0.5s ease-in-out;
}

@-webkit-keyframes btn-arrow-move {
  0% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(15px, -50%);
    transform: translate(15px, -50%);
    opacity: 0;
  }

  50% {
    -webkit-transform: translate(-15px, -50%);
    transform: translate(-15px, -50%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 1;
  }
}

@keyframes btn-arrow-move {
  0% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 1;
  }

  40% {
    -webkit-transform: translate(15px, -50%);
    transform: translate(15px, -50%);
    opacity: 0;
  }

  50% {
    -webkit-transform: translate(-15px, -50%);
    transform: translate(-15px, -50%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 1;
  }
}

.btn-out {
  display: inline-block;
  min-width: 215px;
  padding: 10px 40px 10px 20px;
  background: #fff;
  border: 1px solid currentColor;
  border-radius: 3px;
  color: var(--color_primary);
  position: relative;
}

.btn-out::after {
  content: "";
  -webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  background: currentColor;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-icon {
  display: inline-block;
  padding: 24px 14.81% 24px 28.4%;
  background: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  font-size: clamp(1.5rem, 1.39vw, 2.5rem);
  text-align: center;
  color: var(--color_primary);
  font-weight: 700;
  position: relative;
  min-width: 400px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-icon::before,
.btn-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-icon::before {
  width: clamp(40px, 3.33vw, 60px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  left: 9.38%;
}

.btn-icon::after {
  -webkit-mask: url(../images/share/icon_dl_w.svg) no-repeat center/contain;
  mask: url(../images/share/icon_dl_w.svg) no-repeat center/contain;
  background: #fff;
  width: 23px;
  height: 17px;
  left: calc(6% + clamp(40px, 3.33vw, 60px) / 2);
}

@media (any-hover: hover) {
  .btn-icon:hover {
    background: oklch(from var(--color_primary) l c h/0.05);
  }
}

.btn-icon:focus-visible {
  background: oklch(from var(--color_primary) l c h/0.05);
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 40px;
}

.btn-wrap.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 800px) {
  .btn-more {
    min-width: 0 !important;
    width: 100%;
    padding: 10px 60px 10px 30px;
  }

  .btn-icon {
    min-width: 0;
    width: 100%;
    font-size: 1.5rem;
    padding: 15px 35px 15px 70px;
  }

  .btn-icon::before {
    width: 40px;
    left: 20px;
  }

  .btn-icon::after {
    left: 28px;
  }
}

/*------------
Header
--------------*/
.header {
  padding: 15px 5vw;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.h-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

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

.h-logo-txt {
  font-weight: 600;
  padding: 0 15px;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.navi-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.22vw;
}

.navi-other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.h-btn {
  display: inline-block;
  padding: 2px 15px;
  border-radius: 100px;
  background: var(--color_primary);
  color: #fff;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: clamp(1.5rem, 1vw, 1.8rem);
}

.h-btn svg {
  display: none;
}

.h-btn .txt.is-fixed {
  display: none;
}

.h-btn.bg01 {
  background: var(--color_quaternary);
}

@media (any-hover: hover) {
  .h-btn:hover {
    opacity: 0.8;
  }
}

.h-btn:focus-visible {
  opacity: 0.8;
}

.header.is-fixed {
  padding: 15px 20px 15px 30px;
}

.header.is-fixed .h-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header.is-fixed .logo-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.header.is-fixed .h-logo {
  max-width: 170px;
}

.header.is-fixed .h-logo-txt {
  font-size: 1rem;
  padding: 0 15px;
}

.header.is-fixed .navi-wrap {
  gap: 20px;
}

.header.is-fixed .h-btn {
  display: grid;
  place-content: center;
  gap: 7px;
  padding: 0;
  width: 80px;
  height: 80px;
  border-radius: 5px;
}

.header.is-fixed .h-btn svg {
  display: block;
  stroke: currentColor;
  margin-inline: auto;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
}

.header.is-fixed .h-btn .txt {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1.44;
}

.header.is-fixed .h-btn .txt.is-default {
  display: none;
}

.header.is-fixed .h-btn .txt.is-fixed {
  display: block;
}

@media (max-width: 1150px) {
  .header {
    position: static;
  }

  .h-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .logo-wrap {
    gap: 10px;
  }

  .h-logo {
    width: 150px;
  }

  .h-logo-txt {
    font-size: 1rem;
    padding: 0 10px;
  }

  .navi-wrap .navi-other {
    display: none;
  }
}

/*------------
G-navi
--------------*/
.pc-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.11vw;
}

.pc-navi-list>li>a,
.pc-navi-list>li>p {
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  font-size: clamp(1.5rem, 1vw, 1.8rem);
}

@media (any-hover: hover) {
  .pc-navi-list>li>a:hover {
    color: var(--color_secondary);
  }
}

.pc-navi-list>li>a:focus-visible {
  color: var(--color_secondary);
}

.pc-navi .dropdown {
  position: relative;
  margin-bottom: -10px;
  padding-bottom: 10px;
}

.pc-navi .dropdown>p,
.pc-navi .dropdown>a {
  position: relative;
  padding-right: 15px;
}

.pc-navi .dropdown>p::after,
.pc-navi .dropdown>a::after {
  content: "";
  background: url(../images/share/icon_dropdown.svg) no-repeat center/contain;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pc-navi .dropdown .child {
  background: #fff;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
  text-align: left;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  opacity: 0;
  padding: 25px 30px;
  border-radius: 7px;
  z-index: 10;
}

.pc-navi .dropdown ul li+li {
  margin: 5px 0 0;
}

.pc-navi .dropdown ul li {
  line-height: 1.52;
}

.pc-navi .dropdown ul li a {
  display: inline-block;
  font-size: 1.4rem;
  white-space: nowrap;
  line-height: 1.5;
}

@media (any-hover: hover) {
  .pc-navi .dropdown ul li a:hover {
    color: var(--color_secondary);
  }
}

.pc-navi .dropdown ul li a:focus-visible {
  color: var(--color_secondary);
}

.pc-navi .dropdown:is(:hover, :focus-within) .child {
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 1;
}

.pc-navi-list [aria-current=page],
.sp-navi-list [aria-current=page],
.list-site-map [aria-current=page] {
  color: #00B1C0;
}

.sp-navi {
  display: none;
}

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

  .sp-navi {
    display: block;
  }

  :root {
    --navi-background: #009FB9;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --humberger: #fff;
    --navi-font: "Noto Sans JP", sans-serif;
  }

  /* ボタン類 */
  .sp-menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 10000;
    display: block;
    width: 50px;
    height: 50px;
    background: var(--navi-background);
    border: none;
  }

  .sp-menu-btn span {
    background: var(--humberger);
    position: absolute;
    left: 50%;
    width: 25px;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .sp-menu-btn span:nth-of-type(1) {
    top: 20px;
  }

  .sp-menu-btn span:nth-of-type(2) {
    top: 26px;
  }

  .sp-menu-btn span:nth-of-type(3) {
    top: 32px;
  }

  .sp-menu-btn.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 6px) rotate(-45deg);
    transform: translate(-50%, 6px) rotate(-45deg);
  }

  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-open span:nth-of-type(3) {
    -webkit-transform: translate(-50%, -6px) rotate(45deg);
    transform: translate(-50%, -6px) rotate(45deg);
  }

  /* コンテンツ */
  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 70px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }

  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }

  .sp-navi-list {
    border-top: 1px solid #d6d6d6;
    margin: 0 0 30px;
  }

  .sp-navi-list>li {
    border-bottom: 1px solid #d6d6d6;
  }

  .sp-navi-list>li>a {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }

  .sp-navi-list>li.sp-dropdown {
    position: relative;
  }

  .sp-navi-list>li.sp-dropdown::before,
  .sp-navi-list>li.sp-dropdown::after {
    content: "";
    background-color: #333;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .sp-navi-list>li.sp-dropdown::before {
    width: 1px;
    height: 11px;
    top: 17px;
    right: 20px;
  }

  .sp-navi-list>li.sp-dropdown::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }

  .sp-navi-list>li.sp-dropdown.is-on::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .sp-navi-list>li.sp-dropdown>a {
    padding: 15px 0;
    width: 85%;
  }

  .sp-navi-list .child {
    padding: 0 0 15px;
  }

  .sp-navi-list .child>ul>li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
  }

  .sp-navi-list .child>ul>li::before {
    content: "-";
    color: #333;
    position: absolute;
    left: 0;
    top: 0;
  }

  .sp-navi-list .child>ul>li>a {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
  }

  .sp-navi-other .item+.item {
    margin: 15px 0 0;
  }
}

/*------------
Hero
--------------*/
.hero {
  position: relative;
  margin-top: 175px;
}

.hero-slider .splide__pagination {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  left: auto;
  right: 5%;
  bottom: 65px;
}

.hero-slider .splide__pagination__page {
  width: 6px;
  height: 6px;
  background: #fff !important;
  margin: 10px;
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
}

.hero-slider .splide__pagination__page::before {
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  inset: -7px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.hero-slider .splide__pagination__page.is-active::before {
  opacity: 1;
}

.hero-img {
  position: relative;
}

.hero-img::before {
  content: "";
  background: oklch(from #000 l c h/0.4);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img img {
  width: 100%;
  height: 830px;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-desc {
  color: #fff;
  position: absolute;
  bottom: 185px;
  left: 6.67%;
  z-index: 2;
}

.hero-catch {
  margin-bottom: 45px;
}

.hero-catch .txt-main {
  font-size: 5.5rem;
  letter-spacing: 0.14em;
}

.hero-catch .txt-sub {
  font-size: 3rem;
  letter-spacing: 0.12em;
}

.hero-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}

.hero-scroll-down {
  font-family: var(--font_en);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.05em;
  padding-left: 37px;
  position: absolute;
  bottom: 67px;
  left: 6.83%;
  z-index: 2;
}

.hero-scroll-down::before {
  content: "";
  background: currentColor;
  width: 12px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1150px) {
  .hero {
    margin-top: 0;
  }

  .hero-img img {
    height: calc(100svh - 69px);
  }

  .hero-desc {
    bottom: 80px;
    left: 5vw;
    right: 5vw;
  }

  .hero-catch {
    margin-bottom: 30px;
  }

  .hero-catch .txt-main {
    font-size: 2.5rem;
  }

  .hero-catch .txt-sub {
    font-size: 1.6rem;
  }

  .hero-slider .splide__pagination {
    bottom: 20px;
    right: 5vw;
  }

  .hero-scroll-down {
    bottom: 20px;
    left: 5vw;
  }
}

/*------------
Top contents
--------------*/
.contents {
  overflow: hidden;
}

/* title */
.t-h2 {
  margin-bottom: 60px;
}

.t-h2 [lang=en] {
  font-family: var(--font_en);
  font-weight: 600;
  font-size: 2.1rem;
  color: var(--color_primary);
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  padding-left: 19px;
  position: relative;
}

.t-h2 [lang=en]::before {
  content: "";
  background: currentColor;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.t-h2 .jp {
  font-size: 4rem;
  letter-spacing: 0.11em;
}

.t-h2-02 {
  font-size: 3.6rem;
  padding-left: 32px;
  position: relative;
}

.t-h2-02::before {
  content: "";
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

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

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

  .t-h2-02 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
}

/* sec01 */
.sec01 {
  max-width: 1760px;
  width: 97.78%;
  margin: 20px auto 0;
  padding: 160px 0 180px;
  background: oklch(from #fff l c h/0.5);
  border-radius: 15px;
  position: relative;
}

.sec01::before {
  content: "";
  background: url(../images/sec01_bg.png) no-repeat center/contain;
  width: 1259px;
  height: 1230px;
  position: absolute;
  bottom: -440px;
  right: -620px;
  z-index: -1;
}

.sec01 .loop-text {
  position: absolute;
  bottom: 240px;
  left: 0;
  z-index: 1;
}

.top-layout01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 12%;
  margin-right: 20px;
}

.top-layout01 .l-img {
  width: 46.45%;
}

.top-layout01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.top-layout01 .l-btn {
  margin-top: 55px;
}

.sec01-catch {
  margin-top: 225px;
  text-align: center;
  line-height: 1.44;
  font-weight: 700;
  font-size: 4.5rem;
  letter-spacing: 0.09em;
}

@media (max-width: 1024px) {
  .top-layout01 {
    display: block;
    margin: 0;
  }

  .top-layout01 .l-img {
    width: 100%;
    margin: 0 0 30px;
  }

  .top-layout01 .l-btn {
    margin-top: 30px;
  }

  .sec01-catch {
    font-size: 2.5rem;
    margin-top: 80px;
  }

  .sec01 .loop-text {
    bottom: 130px;
  }
}

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

/* sec02 */
.sec02 {
  padding: 150px 0 200px;
}

.sec02 .top-layout02 {
  margin-bottom: 60px;
}

.top-layout02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
}

.top-layout02 .t-h2 {
  margin-bottom: 0;
}

.top-layout02 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 780px;
}

.top-layout03 {
  padding-left: 80px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6.07%;
}

.top-layout03 .num {
  font-family: var(--font_en);
  font-weight: 600;
  font-size: 2.1rem;
  color: var(--color_primary);
  position: absolute;
  left: 0;
  top: 105px;
}

.top-layout03 .l-img {
  width: 42.79%;
}

.top-layout03 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 100px;
}

.top-layout03 .l-ttl {
  font-size: 3rem;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}

.top-layout03 .l-btn {
  margin-top: 40px;
}

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

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

  .sec02 .top-layout02 {
    margin-bottom: 50px;
  }

  .top-layout02 {
    display: block;
  }

  .top-layout02 .t-h2 {
    margin-bottom: 40px;
  }

  .top-layout03 {
    display: block;
    padding-left: 50px;
  }

  .top-layout03 .num {
    top: 0;
  }

  .top-layout03 .l-img {
    width: 100%;
    margin-bottom: 30px;
  }

  .top-layout03 .l-desc {
    margin: 0;
  }

  .top-layout03 .l-ttl {
    font-size: 2rem;
  }

  .top-layout03 .l-btn {
    margin-top: 30px;
  }

  .top-layout03+.top-layout03 {
    margin-top: 50px;
  }
}

/* sec03 */
.sec03 {
  max-width: 1760px;
  width: 97.78%;
  margin-inline: auto;
  padding: 130px 0;
  background: linear-gradient(67deg, #18A59E 0%, #7EC132 100%);
  border-radius: 30px;
  color: #fff;
}

.sec03 .top-layout02 {
  margin-bottom: 100px;
}

.sec03 .l-btn {
  margin-top: 60px;
  text-align: center;
}

.top-dx-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.top-dx-layout .l-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  color: var(--color_text);
}

.top-dx-layout .l-item a::before {
  content: "";
  background: url(../images/btn_arrow_right.svg) no-repeat center/contain;
  width: 15px;
  height: 12px;
  position: absolute;
  right: 39px;
  bottom: 51px;
  z-index: 2;
}

.top-dx-layout .l-item a::after {
  content: "";
  width: 52px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #D5D5D5;
  position: absolute;
  right: 21px;
  bottom: 31px;
  z-index: 2;
}

@media (any-hover: hover) {
  .top-dx-layout .l-item a:hover::before {
    -webkit-animation: arrow-move 0.5s ease-in-out;
    animation: arrow-move 0.5s ease-in-out;
  }
}

.top-dx-layout .l-item a:focus-visible::before {
  -webkit-animation: arrow-move 0.5s ease-in-out;
  animation: arrow-move 0.5s ease-in-out;
}

.top-dx-layout .logo-img {
  margin-bottom: 20px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top-dx-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 20px;
}

.top-dx-layout .l-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  padding-right: 40px;
}

.top-dx-layout .tag {
  display: inline-block;
  padding: 3px 10px 5px;
  color: #fff;
  line-height: 1;
  background: var(--color_secondary);
}

@-webkit-keyframes arrow-move {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  40% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes arrow-move {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  40% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

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

  .sec03 .l-btn {
    margin-top: 30px;
  }

  .sec03 .top-layout02 {
    margin-bottom: 50px;
  }

  .top-dx-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .top-dx-layout .l-item a {
    padding: 25px;
  }
}

/* sec04 */
.sec04 {
  padding: 200px 0;
  position: relative;
}

.sec04::after {
  content: "";
  background: #E0E1E7;
  max-width: 1200px;
  width: 90%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

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

/* sec05 */
.sec05 {
  padding: 150px 0 140px;
}

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

.sec05 .container::before {
  content: "";
  background: url(../images/sec05_bg.png) no-repeat center/contain;
  width: 600px;
  height: 496px;
  position: absolute;
  top: -250px;
  left: -445px;
  z-index: -1;
}

.top-post-layout01 {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 60px;
}

.top-post-layout01 .t-h2 {
  grid-area: 1/1/2/2;
  margin-bottom: 0;
}

.top-post-layout01 .top-post-style01 {
  grid-area: 2/1/3/3;
}

.top-post-layout01 .l-btn {
  grid-area: 1/2/2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.top-post-style01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.top-post-style01>* {
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.top-post-style01 .post-img {
  aspect-ratio: 67/44;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--color_primary);
  margin-bottom: 30px;
}

.top-post-style01 .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .top-post-style01 .post-item a:hover .post-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.top-post-style01 .post-ttl {
  line-height: 1.83;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.top-post-style01 .category {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--color_primary);
  padding: 5px 10px;
  background: #E9ECEE;
  margin: 0 5px 5px 0;
}

.top-post-style01 time {
  display: block;
  font-family: var(--font_en);
  font-weight: 500;
  margin-top: 10px;
  color: #AFAFB3;
}

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

  .top-post-layout01 {
    display: block;
  }

  .top-post-layout01 .t-h2 {
    margin-bottom: 40px;
  }

  .top-post-layout01 .l-btn {
    display: block;
    margin-top: 30px;
  }

  .top-post-style01 {
    width: calc(100% + 5vw);
    gap: 5vw;
    padding: 0 5vw 10px 0;
    overflow-x: auto;
  }

  .top-post-style01 .post-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
  }
}

/* sec06 */
.sec06 {
  padding: 0 0 200px;
}

.top-bnr-layout01 a {
  display: block;
  padding: 150px 0;
  background: url(../images/top_bnr_bg.jpg) no-repeat center/cover;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #fff;
}

.top-bnr-layout01 a::before {
  content: "";
  background: oklch(from #14252C l c h/0.6);
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .top-bnr-layout01 a:hover::before {
    background: oklch(from #14252C l c h/0.4);
  }
}

.top-bnr-layout01 a:focus-visible::before {
  background: oklch(from #14252C l c h/0.4);
}

.top-bnr-layout01 .l-inner {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  padding-right: 205px;
}

.top-bnr-layout01 .l-inner::before,
.top-bnr-layout01 .l-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.top-bnr-layout01 .l-inner::before {
  -webkit-mask: url(../images/btn_arrow_right.svg) no-repeat center/contain;
  mask: url(../images/btn_arrow_right.svg) no-repeat center/contain;
  background: currentColor;
  width: 25px;
  height: 21px;
  right: 32px;
}

.top-bnr-layout01 .l-inner::after {
  width: 90px;
  height: 90px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid currentColor;
  right: 0;
}

.top-bnr-layout01 .t-h2 {
  width: 34.31%;
  margin-bottom: 0;
}

.top-bnr-layout01 .t-h2 [lang=en] {
  color: currentColor;
}

.top-bnr-layout01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 1230px) {
  .top-bnr-layout01 .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top-bnr-layout01 .t-h2 {
    width: 100%;
  }
}

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

  .top-bnr-layout01 a {
    padding: 50px 0 0;
  }

  .top-bnr-layout01 .l-inner {
    display: block;
    padding: 0 0 110px;
  }

  .top-bnr-layout01 .l-inner::before,
  .top-bnr-layout01 .l-inner::after {
    right: auto;
    top: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .top-bnr-layout01 .l-inner::before {
    width: 20px;
    height: 16px;
    bottom: 46px;
  }

  .top-bnr-layout01 .l-inner::after {
    width: 60px;
    height: 60px;
    bottom: 25px;
  }
}

/*------------
ループテキスト
--------------*/
.loop-text {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.loop-text-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
  color: oklch(from #333 l c h/0.03);
  font-family: var(--font_en);
  font-size: 21rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  text-rendering: optimizeSpeed;
  padding-inline: 0.25em;
}

.loop-text:not(.no-tick) .loop-text-item:nth-child(odd) {
  -webkit-animation: MoveLeft var(--tick-duration, 18s) var(--tick-delay, -9s) infinite linear;
  animation: MoveLeft var(--tick-duration, 18s) var(--tick-delay, -9s) infinite linear;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.loop-text:not(.no-tick) .loop-text-item:nth-child(even) {
  -webkit-animation: MoveLeft2 var(--tick-duration, 18s) infinite linear;
  animation: MoveLeft2 var(--tick-duration, 18s) infinite linear;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (prefers-reduced-motion: reduce) {
  .loop-text:not(.no-tick) .loop-text-item:nth-child(odd) {
    -webkit-animation: none;
    animation: none;
  }

  .loop-text:not(.no-tick) .loop-text-item:nth-child(even) {
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes MoveLeft2 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes MoveLeft2 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@media (max-width: 1024px) {
  .loop-text-item {
    font-size: 7rem;
    padding-inline: 0;
  }
}

/*------------
Footer
--------------*/
.footer {
  position: relative;
}

.f-cta-layout {
  max-width: 1760px;
  width: 97.78%;
  margin-inline: auto;
  border-radius: 15px;
  background: var(--color_primary);
  padding: 80px 0 70px;
  color: #fff;
}

.f-cta-layout .l-inner {
  max-width: 1400px;
  width: 90%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 50px;
}

.f-cta-layout .l-ttl {
  width: 51.07%;
}

.f-cta-layout .l-ttl [lang=en] {
  font-family: var(--font_en);
  font-weight: 300;
  font-size: 10.09rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}

.f-cta-layout .l-ttl .jp {
  font-size: 2.5rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

.f-cta-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.f-cta-layout .l-btn .btn-cta+.btn-cta {
  margin-top: 10px;
}

.btn-cta {
  display: block;
  padding: 40px 17.57% 40px 120px;
  position: relative;
  color: var(--color_quaternary);
  background: #fff;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-cta.bg01 {
  color: var(--color_primary);
}

.btn-cta .icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 38px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-cta .icon svg {
  stroke: #fff;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn-cta .txt {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.66;
}

@media (any-hover: hover) {
  .btn-cta:hover {
    opacity: 0.8;
  }
}

.btn-cta:focus-visible {
  opacity: 0.8;
}

.f-layout {
  max-width: 1600px;
  width: 90%;
  margin: 130px auto 70px;
}

.f-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5vw;
  margin-bottom: 100px;
}

.f-wrapper .utility {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.f-wrapper .utility .l-btn {
  margin-top: 40px;
}

.f-logo {
  width: 245px;
  margin-bottom: 65px;
}

.site-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.56vw;
}

.site-map-item .item-ttl {
  font-size: 1.7rem;
}

.list-site-map li a {
  display: inline-block;
  color: #91979D;
  line-height: 1.8;
  font-size: 1.6rem;
}

@media (any-hover: hover) {
  .list-site-map li a:hover {
    color: #666;
  }
}

.list-site-map.list-col2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.f-other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.site-map-other ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-map-other ul li+li::before {
  content: "｜";
  display: inline-block;
  margin: 0 5px;
}

.site-map-other ul li a {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 400;
  color: #868686;
}

.pagetop {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 5;
}

.pagetop a {
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 80px;
}

.copyright {
  font-size: 1.3rem;
  color: #868686;
}

@media (max-width: 800px) {
  .f-cta-layout {
    padding: 50px 0;
  }

  .f-cta-layout .l-inner {
    display: block;
  }

  .f-cta-layout .l-ttl {
    width: 100%;
    margin-bottom: 30px;
  }

  .f-cta-layout .l-ttl [lang=en] {
    font-size: 5rem;
  }

  .f-cta-layout .l-ttl .jp {
    font-size: 1.6rem;
  }

  .btn-cta {
    padding: 20px 20px 20px 85px;
    text-align: left;
  }

  .btn-cta .icon {
    width: 50px;
    left: 20px;
  }

  .btn-cta .icon svg {
    height: 15px;
  }

  .btn-cta .txt {
    font-size: 1.8rem;
  }

  .f-layout {
    margin: 50px auto;
  }

  .f-wrapper {
    display: block;
    margin-bottom: 50px;
  }

  .f-wrapper .utility {
    margin-bottom: 50px;
  }

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

  .f-wrapper .utility .l-btn {
    margin-top: 20px;
  }

  .site-map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .list-site-map.list-col2 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  .pagetop {
    display: none;
  }
}

/*------------
Under layout
--------------*/
.page-ttl {
  max-width: 1760px;
  width: 97.78%;
  margin: 175px auto 10px;
  border-radius: 15px;
  background: linear-gradient(85deg, #18A59E 0%, #7EC132 100%);
  display: grid;
  place-content: center;
  height: 350px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-ttl [lang=en] {
  font-family: var(--font_en);
  font-weight: 600;
  font-size: clamp(4rem, 11.67vw, 21rem);
  color: oklch(from #333 l c h/0.06);
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.page-ttl .title {
  font-weight: 700;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1.44;
  color: #fff;
}

.breadcrumb ul {
  margin: 0 auto 20px;
  max-width: 1400px;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb ul li {
  display: inline;
  color: #888888;
  font-size: 1.4rem;
}

.breadcrumb ul li+li:before {
  content: ">";
  padding: 0 5px;
}

.u-contents p+p {
  margin-top: 2em;
}

.u-h2,
.postdata h2 {
  font-size: 3.6rem;
  padding-left: 32px;
  position: relative;
  margin-bottom: 80px;
}

.u-h2::before,
.postdata h2::before {
  content: "";
  background: var(--color_primary);
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 25px;
}

.u-h3,
.postdata h3 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--color_primary);
}

.u-h4,
.postdata h4 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .page-ttl {
    margin: 0 auto 10px;
    height: 200px;
  }

  .page-ttl .title {
    font-size: 2.5rem;
  }

  .page-ttl .title::before {
    font-size: 4rem;
  }

  .breadcrumb {
    overflow: auto;
    white-space: nowrap;
  }

  .u-contents p+p {
    margin-top: 1em;
  }

  .u-h2,
  .postdata h2 {
    font-size: 2.5rem;
    margin-bottom: 40px !important;
  }

  .u-h2::before,
  .postdata h2::before {
    top: 16px;
  }

  .u-h3,
  .postdata h3 {
    font-size: 2rem;
    margin-bottom: 30px !important;
  }

  .u-h4,
  .postdata h4 {
    font-size: 1.8rem;
  }
}

/*------------
Under parts
--------------*/
.short+.short {
  margin-top: 80px;
}

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

.tall {
  padding: 70px 0;
}

.tall:last-of-type {
  margin-bottom: 130px;
}

.tall.bg01 {
  padding: 100px 0 150px;
  max-width: 1760px;
  width: 97.78%;
  margin-inline: auto;
  background: oklch(from #fff l c h/0.5);
  border-radius: 15px;
  position: relative;
}

.tall.bg01::before {
  content: "";
  background: url(../images/sec01_bg.png) no-repeat center/contain;
  width: 1259px;
  height: 1230px;
  position: absolute;
  bottom: -440px;
  right: -620px;
  z-index: -1;
}

@media (max-width: 800px) {
  .tall {
    padding: 50px 0 !important;
  }

  .tall:last-of-type {
    margin-bottom: 50px;
  }

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

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

.l-imgR,
.l-imgL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-imgR .l-img,
.l-imgL .l-img {
  margin: 0 60px 0 0;
  width: 40%;
}

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 10px;
}

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

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

.l-imgR {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.l-imgR .l-img {
  margin: 0 0 0 60px;
}

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

.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 {
    display: block;
  }

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

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

  .l-imgR .l-img {
    margin: 0 0 15px;
  }

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

/* グリッド */
.col1,
.col2,
.col3,
.col4 {
  display: -ms-grid;
  display: grid;
}

.col1 {
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
}

.col2 {
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.col3 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.col4 {
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

@media (max-width: 800px) {

  .col2,
  .col3,
  .col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

/* リストデザイン */
.list-disc>li {
  position: relative;
  padding: 0 0 0 1em;
}

.list-disc:not(.col2):not(.col3):not(.col4)>li+li {
  margin-top: 5px;
}

.list-disc li:before {
  content: "・";
  color: var(--color_primary);
  position: absolute;
  top: 0;
  left: 0;
}

.list-num {
  counter-reset: number;
}

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

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

.list-num:not(.col2):not(.col3):not(.col4)>li+li {
  margin-top: 5px;
}

.list-check>li {
  position: relative;
  padding: 0 0 0 25px;
}

.list-check>li::before {
  content: "";
  width: 15px;
  height: 9px;
  border-left: 2px solid var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 12px;
  left: 0;
}

.list-check:not(.col2):not(.col3):not(.col4)>li+li {
  margin-top: 5px;
}

.list-disc.col2,
.list-check.col2,
.list-num.col2 {
  grid-gap: 5px;
}

.list-disc.col3,
.list-check.col3,
.list-num.col3 {
  grid-gap: 5px;
}

.list-disc.col4,
.list-check.col4,
.list-num.col4 {
  grid-gap: 5px;
}

@media (max-width: 800px) {
  .list-num>li:before {
    top: 6px;
  }

  .list-check>li::before {
    top: 9px;
  }
}

/* テーブルデザイン */
.table-style01 {
  background: #fff;
}

.table-style01 th,
.table-style01 td {
  border: 1px solid #c9c9c9;
  padding: 15px;
  vertical-align: middle;
}

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

.table-style01 .bg01 {
  background-color: var(--color_bg);
}

@media (max-width: 800px) {
  .table-style01 colgroup {
    display: none;
  }

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

  .table-style01.sp-block {
    border-bottom: 1px solid #c9c9c9;
  }

  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }

  .table-style01.sp-block td {
    border-width: 0 1px;
  }

  .table-scroll::before {
    content: "スクロールできます";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/contain;
    width: 100%;
    height: 24.5px;
    margin-bottom: 5px;
    padding-left: 40px;
    position: sticky;
    top: 0;
    left: 0;
  }

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

  .table-scroll.table-sticky .table-style01 th:first-child {
    position: sticky;
    top: 0;
    left: 0;
  }

  .table-scroll .table-style01 th,
  .table-scroll .table-style01 td {
    white-space: nowrap;
  }
}

/* img-layout */
.l-style01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6.64%;
}

.l-style01 .l-img {
  width: 43.36%;
}

.l-style01 .l-img img {
  border-radius: 10px;
}

.l-style01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-style01 .u-h2 {
  margin-bottom: 70px;
}

.l-style01 .u-h3 {
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .l-style01 {
    display: block;
  }

  .l-style01 .l-img {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* box-style */
.box-style01 {
  padding: 100px 0 150px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F2F9EB), to(#BCE6EB));
  background: linear-gradient(180deg, #F2F9EB 0%, #BCE6EB 100%);
  border-radius: 15px;
  position: relative;
}

.box-style01 .box-en {
  font-family: var(--font_en);
  font-weight: 600;
  font-size: clamp(4rem, 11.67vw, 21rem);
  color: oklch(from #333 l c h/0.06);
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  bottom: -5.835vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

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

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

  .box-style01 .box-en {
    font-size: 4rem;
    bottom: -20px;
  }
}

.box-style02 {
  padding: 70px;
  background: var(--color_bg);
  border-radius: 15px;
}

.box-style02 .box-ttl {
  font-size: 3rem;
  color: var(--color_primary);
  margin-bottom: 50px;
}

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

  .box-style02 .box-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/* dl-style */
.dl-style01 {
  font-weight: 700;
}

.dl-style01 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 10px;
}

.dl-style01 .item+.item {
  margin-top: 20px;
}

.dl-style01 dt {
  width: 310px;
  padding: 40px 25px 40px 80px;
  border-radius: 10px;
  font-size: 2.2rem;
  color: var(--color_primary);
}

.dl-style01 dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 40px 25px 40px 70px;
  position: relative;
  font-size: 2.5rem;
}

.dl-style01 dd::before {
  content: "";
  background: #eee;
  width: 1px;
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
}

@media (max-width: 800px) {
  .dl-style01 .item {
    display: block;
  }

  .dl-style01 dt,
  .dl-style01 dd {
    padding: 15px 5vw;
  }

  .dl-style01 dt {
    font-size: 1.6rem;
  }

  .dl-style01 dd {
    font-size: 1.7rem;
  }

  .dl-style01 dd::before {
    width: auto;
    height: 1px;
    top: 0;
    left: 5vw;
    right: 5vw;
    bottom: auto;
  }
}

/* list-card */
.list-card01>li {
  padding-top: 90px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.list-card01 .list-img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
}

.list-card01 .list-img img {
  height: 120px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.list-card01 .list-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 60px 30px 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F2F9EB), to(#BCE6EB));
  background: linear-gradient(180deg, #F2F9EB 0%, #BCE6EB 100%);
  border-radius: 10px;
}

.list-card01 .list-disc {
  line-height: 1.83;
}

@media (max-width: 800px) {
  .list-card01 .list-desc {
    padding: 60px 25px 25px;
  }
}

.list-card02.col2 {
  gap: 60px 65px;
}

.list-card02>li {
  padding: 30px 25px;
  background: var(--color_bg);
  border-radius: 10px;
}

.list-card02 .list-ttl {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.list-card02 .list-img {
  margin-bottom: 20px;
}

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

@media (max-width: 800px) {
  .list-card02.col2 {
    gap: 15px;
  }

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

  .list-card02 .list-ttl {
    font-size: 1.8rem;
  }
}

/* txt-layout */
.txt-layout01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 7.14%;
}

.txt-layout01 .u-h3 {
  width: 38%;
  line-height: 2;
  margin-bottom: 0;
}

.txt-layout01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 800px) {
  .txt-layout01 {
    display: block;
  }

  .txt-layout01 .u-h3 {
    width: 100%;
  }
}

/* card-layout */
.card-layout02.col3 {
  gap: 20px 18px;
}

.card-layout02 .l-item {
  padding: 25px;
  background: var(--color_bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-layout02 .l-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 5;
  object-fit: contain;
}

.card-layout02 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  padding: 35px 0 25px;
}

.card-layout02 .status {
  display: inline-block;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
  color: var(--color_primary);
  padding: 8px 15px;
  background: #E9ECEE;
  min-width: 90px;
  margin: 0 5px 5px 0;
}

.card-layout02 .post-data {
  position: absolute;
  left: 20px;
  top: -14px;
  z-index: 2;
}

.card-layout02 .l-ttl {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.8;
}

.card-layout02 .btn-icon {
  min-width: 0;
  width: 100%;
}

@media (max-width: 800px) {
  .card-layout02.col3 {
    gap: 15px;
  }

  .card-layout02 .l-ttl {
    font-size: 1.8rem;
  }
}

/* catch */
.u-catch {
  font-size: 2.5rem;
  font-weight: 700;
}

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

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #000;
  font-family: var(--font_jp);
  font-weight: normal;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy dd+dt {
  margin-top: 30px;
}

.list-privacy li {
  position: relative;
  padding: 0 0 0 1em;
}

.list-privacy li+li {
  margin-top: 3px;
}

.list-privacy li:before {
  content: "・";
  color: var(--color_primary);
  position: absolute;
  top: 0;
  left: 0;
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*詳細ページ*/
.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

.postdata .wp-block-button__link {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  font-family: var(--font_jp);
  font-size: 15px;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.postdata .wp-block-button__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.postdata .wp-block-button__link:hover {
  opacity: 1;
  background-color: #fff;
  color: var(--color_primary);
}

/*ページャー*/
.post-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-number span,
.post-number a {
  display: grid;
  place-content: center;
  color: #91979D;
  border: 1px solid #D5D5D5;
  border-radius: 4px;
  font-size: 1.6rem;
  font-family: var(--font_en);
  font-weight: 500;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 30px;
  padding: 0 4px;
  margin: 0 4px;
}

.post-number a:focus-visible {
  background: var(--color_primary);
  color: #fff;
}

@media (any-hover: hover) {
  .post-number a:hover {
    background: var(--color_primary);
    color: #fff;
  }
}

.post-number .current {
  background: var(--color_primary);
  color: #fff;
}

@media (max-width: 800px) {

  .post-number span,
  .post-number a {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
}

.post-number-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  text-align: center;
}

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

.post-number-single .all {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #D5D5D5;
  color: #91979D;
  font-size: 1.6rem;
  font-family: var(--font_en);
  font-weight: 500;
  line-height: 28px;
  max-width: 200px;
  height: 30px;
  width: 100%;
  display: grid;
  place-content: center;
}

.post-number-single .all:focus-visible {
  background: var(--color_primary);
  color: #fff;
  border-color: var(--color_primary);
}

@media (any-hover: hover) {
  .post-number-single .all:hover {
    background: var(--color_primary);
    color: #fff;
    border-color: var(--color_primary);
  }
}

.post-number-single .prev,
.post-number-single .next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #D5D5D5;
  position: relative;
}

.post-number-single .next {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  -webkit-mask: url(../images/btn_arrow_right.svg) no-repeat center center/contain;
  mask: url(../images/btn_arrow_right.svg) no-repeat center center/contain;
  background: var(--color_primary);
  width: 15px;
  height: 12px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

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

.post-number-single .prev:focus-visible::before,
.post-number-single .next:focus-visible::before {
  background: #fff;
}

@media (any-hover: hover) {

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

  .post-number-single .prev:hover::before,
  .post-number-single .next:hover::before {
    background: #fff;
  }
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-contents {
  width: calc(100% - 270px);
  max-width: 1200px;
  margin-inline: auto;
}

.side-contents {
  width: 270px;
}

.side-contents-wrapper {
  position: sticky;
  top: 110px;
}

.side-area-item+.side-area-item {
  margin-top: 30px;
}

.side-area-item-ttl {
  font-size: 1.3rem;
  margin-bottom: 7px;
}

.side-area-links {
  border-left: 2px solid #ccc;
}

.side-area-links li {
  font-size: 1.6rem;
  color: #ADADAD;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.side-area-links li a {
  display: inline-block;
  padding: 5px 0 5px 20px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.side-area-links li a::before {
  content: "";
  border-left: 2px solid var(--color_primary);
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  opacity: 0;
}

@media (any-hover: hover) {
  .side-area-links li a:hover {
    color: var(--color_primary);
  }

  .side-area-links li a:hover::before {
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .sidebar-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 100%;
  }

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

  .sidebar-layout.sp-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }

  .main-contents {
    width: 100%;
    padding: 0;
  }

  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }

  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }

  .side-contents-ttl {
    font-size: 1.5rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .side-area-item+.side-area-item {
    margin-top: 30px;
  }
}

.u-post-style03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.u-post-style03 .post-item a {
  display: block;
  height: 100%;
  padding: 25px 20px 15px;
  background: var(--color_bg);
  border-radius: 10px;
}

.u-post-style03 .post-img {
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
}

.u-post-style03 .post-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/11;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.u-post-style03 .post-ttl {
  font-size: 2.2rem;
  line-height: 1.68;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.u-post-style03 .category {
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  padding: 5px 10px;
  background: var(--color_secondary);
  margin: 0 10px 10px 0;
}

@media (any-hover: hover) {
  .u-post-style03 .post-item a:hover .post-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.u-post-style03 .post-item a:focus-visible .post-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 800px) {
  .u-post-style03 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .u-post-style03 .post-ttl {
    font-size: 1.5rem;
  }

  .u-post-style03 .category {
    font-size: 1.3rem;
  }
}

/*------------
DXソリューション
--------------*/
.u-post-style01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.u-post-style03>* {
  min-width: 0;
}

.u-post-style01 .post-item a {
  display: block;
  height: 100%;
  padding: 25px 25px 45px;
  background: var(--color_bg);
  border-radius: 10px;
  position: relative;
}

.u-post-style01 .post-item a::before {
  content: "";
  width: 52px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #D5D5D5;
  position: absolute;
  right: 25px;
  bottom: 25px;
}

.u-post-style01 .post-item a::after {
  content: "";
  background: url(../images/btn_arrow_right.svg) no-repeat center center/contain;
  width: 15px;
  height: 12px;
  position: absolute;
  right: 43px;
  bottom: 44px;
}

.u-post-style01 .post-img {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  aspect-ratio: 62/35;
  margin-bottom: 25px;
}

.u-post-style01 .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.u-post-style01 .post-ttl {
  font-size: 2.5rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

.u-post-style01 .post-desc {
  margin-bottom: 30px;
}

.u-post-style01 .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  padding-right: 60px;
}

.u-post-style01 .category {
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  padding: 3px 10px;
  background: var(--color_secondary);
}

@media (any-hover: hover) {
  .u-post-style01 .post-item a:hover::after {
    -webkit-animation: arrow-move 0.5s ease-in-out;
    animation: arrow-move 0.5s ease-in-out;
  }

  .u-post-style01 .post-item a:hover .post-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.u-post-style01 .post-item a:focus-visible::after {
  -webkit-animation: arrow-move 0.5s ease-in-out;
  animation: arrow-move 0.5s ease-in-out;
}

.u-post-style01 .post-item a:focus-visible .post-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.u-post-style01 .post-catch {
  margin-top: 10px;
  padding-right: 60px;
}

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

  .u-post-style01 .post-ttl {
    font-size: 1.8rem;
  }

  .u-post-style01 .category {
    font-size: 1.3rem;
  }
}

/* 詳細ページ */
.single-post-layout {
  margin-bottom: 50px;
}

.single-post-layout .l-item+.l-item {
  margin-top: 150px;
}

.single-post-layout .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.term-item,
.single-post-layout .category {
  display: inline-block;
  padding: 5px 10px;
  background: var(--color_secondary);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}

.term-item+.term-item {
  margin-left: 10px;
}

.single-post-layout .post-ttl {
  font-size: 3.6rem;
  padding-left: 32px;
  position: relative;
  margin-bottom: 70px;
}

.single-post-layout .post-ttl::before {
  content: "";
  background: var(--color_primary);
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 25px;
}

@media (max-width: 800px) {
  .single-post-layout .l-item+.l-item {
    margin-top: 100px;
  }

  .single-post-layout .post-data {
    margin-bottom: 30px;
  }

  .term-item,
  .single-post-layout .category {
    font-size: 1.3rem;
  }

  .single-post-layout .post-ttl {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .single-post-layout .post-ttl::before {
    top: 17px;
  }
}

.post-layout01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6.43%;
}

.post-layout01 .l-img {
  width: 43.36%;
}

.post-layout01 .l-img img {
  border-radius: 10px;
  border: 1px solid #eee;
}

.post-layout01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 800px) {
  .post-layout01 {
    display: block;
  }

  .post-layout01 .l-img {
    width: 100%;
    margin-bottom: 30px;
  }
}

.post-layout02 {
  padding: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F2F9EB), to(#BCE6EB));
  background: linear-gradient(180deg, #F2F9EB 0%, #BCE6EB 100%);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: auto 1fr;
  gap: 70px 90px;
}

.post-layout02 .ttl-style01 {
  grid-area: 1/1/2/2;
  margin-bottom: 0;
}

.post-layout02 .l-desc {
  grid-area: 1/2/3/3;
}

.post-layout02 .l-img img {
  width: 100%;
  border-radius: 10px;
}

.post-layout02 .video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.post-layout02 .l-btn {
  grid-area: 2/1/3/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}

.btn-out02 {
  display: inline-block;
  min-width: 250px;
  background: #fff;
  padding: 15px 30px;
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  border-radius: 3px;
  text-align: center;
  font-size: 1.5rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-out02::after {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .btn-out02:hover {
    background: oklch(from var(--color_primary) l c h/0.05);
  }
}

.btn-out02:focus-visible {
  background: oklch(from var(--color_primary) l c h/0.05);
}

@media (max-width: 800px) {
  .post-layout02 {
    padding: 25px;
    display: block;
  }

  .post-layout02 .l-btn {
    margin-top: 30px;
  }

  .btn-out02 {
    min-width: 0;
    width: 100%;
  }
}

.post-layout03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.post-layout03 .item {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 10px;
}

.post-layout03 .num {
  display: block;
  font-family: var(--font_en);
  font-weight: 600;
  font-size: 2.1rem;
  color: var(--color_primary);
  line-height: 1.3;
  padding-left: 20px;
  position: relative;
  margin-bottom: 15px;
}

.post-layout03 .num::before {
  content: "";
  background: currentColor;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post-layout03 .l-ttl {
  font-size: 2.5rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

  .post-layout03 .l-ttl {
    font-size: 2rem;
  }
}

.post-layout04 {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 70px 50px;
}

.post-layout04 .ttl-style01 {
  grid-area: 1/1/2/2;
  margin-bottom: 0;
}

.post-layout04 .u-post-style02 {
  grid-area: 2/1/3/3;
}

.post-layout04 .l-btn {
  grid-area: 1/2/2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 800px) {
  .post-layout04 {
    display: block;
  }

  .post-layout04 .l-btn {
    margin-top: 30px;
  }
}

.post-layout05 {
  padding: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F2F9EB), to(#BCE6EB));
  background: linear-gradient(180deg, #F2F9EB 0%, #BCE6EB 100%);
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.post-layout05 .ttl-style01,
.post-layout05 .l-btn {
  width: 50%;
}

.post-layout05 .ttl-style01 {
  margin-bottom: 0;
}

.post-layout05 .l-btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.post-layout05 .btn-out02 {
  min-width: 0;
  width: 100%;
}

@media (max-width: 800px) {
  .post-layout05 {
    display: block;
    padding: 25px;
  }

  .post-layout05 .ttl-style01,
  .post-layout05 .l-btn {
    width: 100%;
  }

  .post-layout05 .l-btn {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.post-layout06 {
  padding: 80px 80px 60px;
  background: var(--color_bg);
  border-radius: 15px;
}

.post-layout06 .l-ttl {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .post-layout06 {
    padding: 25px;
  }

  .post-layout06 .l-ttl {
    font-size: 2rem;
  }
}

.post-layout07 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.post-layout07 .l-img {
  margin-bottom: 30px;
}

.post-layout07 .l-img img {
  border-radius: 10px;
  border: 1px solid var(--color_primary);
}

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

  .post-layout07 .l-img {
    margin-bottom: 15px;
  }
}

.post-layout08 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.post-layout08 .item {
  padding: 25px;
  background: var(--color_bg);
  border-radius: 10px;
}

.post-layout08 .l-img {
  margin-bottom: 20px;
}

.post-layout08 .l-img img {
  border-radius: 10px;
}

.post-layout08 .item-txt {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

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

  .post-layout08 .item-txt {
    font-size: 1.8rem;
  }
}

/*-----------------------------------------------------------
Utility
-----------------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.fade {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fade:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}

.bold,
strong {
  font-weight: bold;
}

.red {
  color: #F44336;
}

.fs15 {
  font-size: 1.5rem;
}

.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.4);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.notice {
  font-size: 1.4rem;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

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

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

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

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

.mbL {
  margin-bottom: 120px !important;
}

.mbXL {
  margin-bottom: 160px !important;
}

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

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

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.map {
  height: 450px;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.video {
  aspect-ratio: 16/9;
}

.video iframe {
  width: 100%;
  height: 100%;
}

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

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

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

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

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

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

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

  .map {
    height: 300px;
  }
}

/*-----------------------------------------------------------
Add
-----------------------------------------------------------*/
/*------------
splide
-------------*/
/*各種色設定*/
:root {
  --splide-arrow-color: #009FB9;
  /*矢印*/
  --splide-focus-color: #009FB9;
  /*タブ移動によるフォーカス時のアウトライン*/
  --splide-pagination-color: #009FB9;
  /*アクティブ時のページネーション*/
  --splide-progress-color: #009FB9;
  /*プログレスバー*/
  --splide-toggle-color: #009FB9;
  /*再生ボタン*/
  --splide-track-color: #009FB9;
  /*サムネイルの枠*/
}

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

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

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

.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress {
  background: #ddd;
  margin-top: 10px;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

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

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  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__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}

.splide__controls .splide__pagination {
  position: static;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-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 {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 52px;
  width: 52px;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  background: url(../images/slide_arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 12px;
}

.splide__arrow--prev::after {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrow svg {
  display: none;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid var(--color_primary);
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: calc((100% - 870px) / 2);
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: calc((100% - 870px) / 2);
}

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

.splide__pagination {
  bottom: 15px;
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ddd;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 5px;
  opacity: 1;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__progress__bar {
  background: var(--splide-progress-color);
  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 var(--splide-focus-color);
    outline-offset: -3px;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}

.splide__toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--splide-toggle-color);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  height: 29px;
  width: 29px;
}

.splide__toggle:hover {
  background: #737e80;
}

.splide__toggle svg {
  fill: #fff;
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid var(--splide-track-color);
}

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

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

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

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

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

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

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

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

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

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@media (max-width: 800px) {
  .splide__arrow {
    width: 45px;
    height: 45px;
  }

  .splide__arrow--prev {
    left: 10px;
  }

  .splide__arrow--next {
    right: 10px;
  }
}

/* under-slider01 */
.under-slider01 .splide {
  padding-bottom: 30px;
}

.under-slider01 .splide__arrow--prev {
  left: -7%;
}

.under-slider01 .splide__arrow--next {
  right: -7%;
}

.under-slider01 .splide__pagination {
  bottom: 0;
}

@media (max-width: 800px) {
  .under-slider01 .splide__arrow--prev {
    left: -4%;
  }

  .under-slider01 .splide__arrow--next {
    right: -4%;
  }
}

/* TOP case */
.top-case-wrapper {
  display: grid;
  grid-template-columns: 530px 1fr;
  grid-template-rows: auto 1fr;
  gap: 50px 135px;
  margin-left: calc((100% - min(90%, 1400px)) / 2);
  position: relative;
}

.top-case-wrapper .desc {
  grid-area: 1/1/2/2;
}

.top-case-wrapper .top-case-slider {
  grid-area: 1/2/3/3;
}

.top-case-wrapper .l-btn {
  grid-area: 2/1/3/2;
}

.top-case-slider {
  overflow: hidden;
  padding: 0 5vw 0 0;
}

.top-case-slider .splide__track {
  overflow: visible;
}

.top-case-slider .card-layout {
  height: 100%;
}

.top-case-wrapper .splide__arrows {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.top-case-wrapper .splide__arrow {
  width: 52px;
  height: 52px;
  background: #fff;
  border: 1px solid var(--color_secondary);
}

.top-case-wrapper .splide__arrow--prev,
.top-case-wrapper .splide__arrow--next {
  position: static;
}

.top-case-wrapper .splide__arrow--prev::after,
.top-case-wrapper .splide__arrow--next::after {
  background: url(../images/slide_arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 12px;
  border: none;
  -webkit-transform: none;
  transform: none;
  margin: 0;
}

.top-case-wrapper .splide__arrow--prev {
  -webkit-transform: translate(0) scaleX(-1);
  transform: translate(0) scaleX(-1);
}

.top-case-wrapper .splide__arrow--next {
  -webkit-transform: translate(0);
  transform: translate(0);
}

.card-layout a {
  display: block;
  height: 100%;
  padding: 25px 25px 60px;
  background: var(--color_bg);
  border-radius: 10px;
}

.card-layout .card-img {
  text-align: center;
  margin-bottom: 20px;
  aspect-ratio: 587/353;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 25px;
}

.card-layout .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .card-layout a:hover .card-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.card-layout a:focus-visible .card-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.card-layout .card-ttl {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-layout .category {
  display: inline-block;
  padding: 3px 10px;
  background: #E9ECEE;
  font-size: 1.3rem;
  color: var(--color_primary);
  margin: 0 5px 5px 0;
}

@media (max-width: 800px) {
  .top-case-wrapper {
    display: block;
    margin: 0;
  }

  .top-case-slider {
    overflow: hidden;
  }

  .top-case-wrapper .desc {
    width: 90%;
    margin: 0 auto 50px;
  }

  .top-case-wrapper .l-btn {
    width: 90%;
    margin: 30px auto 0;
  }

  .top-case-slider {
    margin: 0 0 0 5vw;
    width: 100%;
  }

  .top-case-slider .splide__arrows {
    position: static;
    margin: 0 5vw 15px 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .top-case-slider .splide__arrow {
    width: 40px;
    height: 40px;
  }

  .top-case-slider .splide__arrow svg {
    width: 50%;
    height: 50%;
  }

  .top-case-slider .splide__arrow--prev {
    right: 70px;
  }

  .top-case-slider .splide__arrow--next {
    right: 20px;
  }
}

/*------------
img-slider
--------------*/
.img-slider .splide-wrapper {
  padding: 0 100px;
}

.img-slider .splide__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 24/11;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.img-slider .splide__arrow--prev {
  left: 0;
}

.img-slider .splide__arrow--next {
  right: 0;
}

.img-slider .splide__progress {
  margin: 10px 100px 0;
}

.img-slider .splide__arrow {
  border-color: #D5D5D5;
}

@media (max-width: 800px) {
  .img-slider .splide-wrapper {
    padding: 0 10px;
  }

  .img-slider .splide__arrow--prev {
    left: -3%;
  }

  .img-slider .splide__arrow--next {
    right: -3%;
  }

  .img-slider .splide__progress {
    margin: 10px 10px 0;
  }
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  opacity: 0;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
