@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: linear-gradient(90deg, #FFFFFF 0%, #F3F7FF 10%, #E7F0FF 35%, #E7F0FF 100%);
  --color_text: #333;
  --color_link: #333;
  --color_border: #CCC;
  --color_main: #1F55AF;
  --color_sub01: #2674F7;
  --color_sub02: #7EAAFF;
  --color_gradient01: linear-gradient(to bottom, #1937A0 0%, #3182FA 100%);
  --color_gradient02: linear-gradient(45deg, rgba(36, 66, 106, 1) 0%, rgba(61, 116, 215, 1) 65%, rgba(251, 245, 171, 1) 100%);
  --color_gradient02_opacity: linear-gradient(45deg, rgba(36, 66, 106, 0.25) 0%, rgba(61, 116, 215, 0.25) 65%, rgba(251, 245, 171, 0.25) 100%);
  --color_gradient03: linear-gradient(135deg, #C3E7FB 0%, #FAF9E7 100%);
  --color_bg01: #FFFFFF;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #666;
}

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

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

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

@media (max-width: 800px) {
  :root {
    --font_size: 0.875rem;
    --line-height: 1.8;
  }
}

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  background: url(../images/top_bg01.png) no-repeat center top/100% auto, var(--color_base);
  color: var(--color_text);
  font-family: var(--font_base);
  font-size: var(--font_size);
  font-weight: var(--font_weight);
  letter-spacing: var(--letter_spacing);
  line-height: var(--line_height);
}

@media (max-width: 800px) {
  body {
    background: url(../images/top_bg01.png) no-repeat center top/100% auto, var(--color_base);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-feature-settings: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.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: 100px;
}

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

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

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 2.5%;
  z-index: 100;
  transition: background-color 0.3s, box-shadow 0.3s;
}


@media (max-width: 800px) {
  .h-logo {
    max-width: 70px;
  }
}

.h-utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  position: fixed;
  top: 15px;
  right: 2.5%;
  width: 100%;
  z-index: 110;
}

.h-btn {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font_jp);
  font-weight: 500;
  padding: 0 40px;
  height: 70px;
  min-width: 255px;
  border-radius: 10px;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s;
}

.h-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color_gradient01);
}

.h-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {

  .h-btn:hover,
  .h-btn:focus {
    border-color: var(--color_main);
    color: var(--color_main);
  }

  .h-btn:hover::after,
  .h-btn:focus::after {
    opacity: 1;
  }
}

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

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

.gnavi-menu-btn {
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 110;
}

.gnavi-menu-btn-line {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
}

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

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

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

.gnavi-menu-btn-line span:nth-child(3) {
  top: auto;
  bottom: 0;
  width: 50%;
}

.gnavi-menu-btn-txt {
  display: block;
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  margin-top: 15px;
}

.gnavi-menu-btn-txt.txt-menu {
  display: block;
}

.gnavi-menu-btn-txt.txt-close {
  display: none;
}

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

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

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

.gnavi-menu-btn.is-open .gnavi-menu-btn-txt.txt-menu {
  display: none;
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-txt.txt-close {
  display: block;
}

.gnavi-drawer {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
  z-index: 100;
}

.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.gnavi-drawer-container {
  background-color: #fff;
  gap: 5%;
  margin-left: auto;
  padding: 150px 2.5%;
  width: 600px;
  height: 100%;
  overflow-y: auto;
}

.drawer-links {
  line-height: 1.5;
  border-top: 1px solid #707070;
}

.drawer-links>li {
  border-bottom: 1px solid #707070;
  min-height: 30px;
  padding: 15px 0;
}

.drawer-links>li>a {
  display: block;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  transition: 0.5s;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  padding-right: 40px;
}

.drawer-links>li>a:after {
  content: "";
  display: block;
  background: url(../images/share/g-navi_arrow.svg) no-repeat center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}

@media (any-hover: hover) {

  .drawer-links>li a:hover,
  .drawer-links>li a:focus {
    color: var(--color_main);
    text-decoration-color: var(--color_main);
  }

  .drawer-links>li a:hover:after,
  .drawer-links>li a:focus:after {
    right: 5px;
  }
}

.drawer-links>li .drawer-sub-links {
  padding-left: 1em;
}

.drawer-links>li .drawer-sub-links>li {
  margin-top: 15px;
}

.drawer-links>li .drawer-sub-links>li>a {
  display: block;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  transition: 0.5s;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  padding-right: 40px;
}

.drawer-links>li .drawer-sub-links>li>a:after {
  content: "";
  display: block;
  background: url(../images/share/g-navi_arrow_w.svg) no-repeat center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}

.drawer-links>li .drawer-sub-links>li:first-child>a {
  padding-top: 0;
}

@media (any-hover: hover) {

  .drawer-links>li .drawer-sub-links>li a:hover,
  .drawer-links>li .drawer-sub-links>li a:focus {
    color: var(--color_main);
    text-decoration-color: var(--color_main);
  }

  .drawer-links>li .drawer-sub-links>li a:hover:after,
  .drawer-links>li .drawer-sub-links>li a:focus:after {
    right: 5px;
  }
}

@media (max-width: 800px) {
  .gnavi-menu-btn {
    width: 40px;
    height: 40px;
  }

  .gnavi-menu-btn-line {
    height: 20px;
  }

  .gnavi-menu-btn-txt {
    font-size: 0.625rem;
    margin-top: 10px;
  }

  .gnavi-drawer-container {
    align-items: flex-start;
    padding: 100px 25px 50px;
    width: 100%;
  }

  .drawer-links>li {
    min-height: 25px;
    padding: 13px 0;
  }

  .drawer-links>li>a {
    font-size: 1rem;
  }

  .drawer-links>li>a:after {
    width: 25px;
    height: 25px;
    right: 8px;
  }

  .drawer-links>li .drawer-sub-links>li {
    margin-top: 13px;
  }

  .drawer-links>li .drawer-sub-links>li>a {
    font-size: 1rem;
  }

  .drawer-links>li .drawer-sub-links>li>a:after {
    width: 25px;
    height: 25px;
    right: 8px;
  }

  .drawer-links>li .drawer-sub-links>li:first-child>a {
    padding-top: 0;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: #323B4D;
  color: #fff;
  margin-top: auto;
  position: relative;
  padding: 290px 0 200px;
}

.f-contents {
  display: grid;
  grid-template-columns: 1fr 421px;
  margin-inline: auto;
  gap: 7.6%;
  width: min(90%, 1200px);
}

.f-map iframe {
  width: 100%;
  height: 410px;
  border-radius: 20px;
}

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

.f-address {
  display: flex;
  gap: 6px;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.f-address .icon {
  flex: 0 0 auto;
  margin-top: 2px;
}

.f-btn>.btn {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 20px 15px 45px;
  border-radius: 10px;
  background: var(--color_gradient01);
  color: #fff;
  transition: 0.3s;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-feature-settings: normal;
  transition: 0.3s;
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}

.f-btn>.btn::after {
  content: "";
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 5px;
  transition: transform 0.5s, background-color 0.3s, background-image 0.3s;
  background: #fff url(../images/share/btn_arrow.svg) no-repeat center/13px auto;
}

.f-btn>.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--color_main);
  opacity: 0;
  transition: opacity 0.3s;
}

@media (hover: hover) {

  .f-btn>.btn:hover,
  .f-btn>.btn:focus {
    color: var(--color_main);
  }

  .f-btn>.btn:hover::before,
  .f-btn>.btn:focus::before {
    opacity: 1;
  }

  .f-btn>.btn:hover::after,
  .f-btn>.btn:focus::after {
    transform: translateX(10px);
    background-color: var(--color_main);
    background-image: url(../images/share/btn_arrow_w.svg);
  }
}

.copyright {
  margin-top: 88px;
  font-size: 0.8125rem;
}

@media (max-width: 800px) {
  .footer {
    padding: 160px 0 30px;
  }

  .f-contents {
    display: block;
  }

  .f-map {
    margin-bottom: 30px;
  }

  .f-map iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
  }

  .f-logo {
    margin: 0 auto 16px;
    width: 211px;
  }

  .f-address {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .f-address .icon {
    flex: 0 0 auto;
    margin-top: 1px;
  }

  .f-btn {
    text-align: center;
  }

  .f-btn>.btn {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 16px 10px 36px;
    border-radius: 8px;
    background: var(--color_gradient01);
    color: #fff;
    font-family: var(--font_jp);
    font-size: 0.875rem;
    font-weight: 500;
    font-feature-settings: normal;
    text-decoration: underline;
    text-underline-offset: 1px;
    text-decoration-thickness: 1px;
    text-decoration-color: transparent;
    transition: 0.3s;
  }

  .f-btn>.btn::after {
    content: "";
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    transition: transform 0.5s, background-color 0.3s, background-image 0.3s;
    background: #fff url(../images/share/btn_arrow.svg) no-repeat center/9px auto;
  }

  .f-btn>.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--color_main);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .copyright {
    margin-top: 40px;
    font-size: 0.6875rem;
    text-align: center;
    word-break: break-word;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  padding: clamp(150px, 13.8vw, 250px) 0 0;
  margin-top: 40px;
}

@media (max-width: 800px) {
  .hero {
    padding: 100px 0 0;
    margin-top: 20px;
  }
}

.hero-ttl {
  position: absolute;
  top: 0;
  left: max(5%, 50% - 750px);
  z-index: 5;
}

.hero-ttl .ttl01 {
  background: #fff;
  border: 1px solid #000;
  color: var(--color_main);
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: clamp(0.8125rem, 1vw, 1rem);
  border-radius: 5px;
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 5px;
}

.hero-ttl .ttl02 {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: clamp(3.75rem, 4.66vw, 5.25rem);
  line-height: 1.5;
  background: var(--color_gradient02);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}

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

  .hero-ttl .ttl01 {
    font-size: 0.6875rem;
    padding: 4px 8px;
    margin-bottom: 4px;
  }

  .hero-ttl .ttl02 {
    font-size: 1.875rem;
  }
}

.hero-catch {
  position: absolute;
  bottom: min(31px, 10vw);
  left: max(5%, 50% - 750px);
  z-index: 5;
}

.hero-catch .bg {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: #fff;
  padding: 0.15em 0.3em;
}

.hero-catch .txt01 {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: clamp(2.5rem, 2vw, 3.75rem);
  color: var(--color_main);
  margin-bottom: 5px;
}

.hero-catch .txt02 {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: clamp(1.25rem, 1vw, 1.875rem);
}

.hero-catch .txt02 .bg {
  padding: 0.15em 0.3em;
}

@media (max-width: 800px) {
  .hero-catch {
    left: 5%;
    right: 5%;
    bottom: 15px;
  }

  .hero-catch .txt01 {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }

  .hero-catch .txt02 {
    font-size: 0.8125rem;
  }
}

.hero-slider {
  --scale: 1;
  overflow: hidden;
  height: calc(579px * var(--scale));
}

.loop-slider-wrapper {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  transform: scale(var(--scale));
  transform-origin: left top;
}

.loop-slider {
  display: flex;
  align-items: flex-start;
  height: 579px;
  animation: infinity-scroll 60s linear infinite both;
}

.loop-slider li {
  margin-right: 30px;
}

.loop-slider li.top-pad {
  padding-top: 50px;
}

.loop-slider li.bottom {
  align-self: flex-end;
}

.loop-slider img {
  display: block;
  height: auto;
  width: auto;
  max-width: none;
  border-radius: 20px;
}

@keyframes infinity-scroll {
  0% {
    transform: translateX(0);
  }

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

@media (max-width: 1200px) {
  .hero-slider {
    --scale: 0.75;
  }
}

@media (max-width: 800px) {
  .hero-slider {
    --scale: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loop-slider {
    animation: none;
  }
}

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

.t-h2:has(.jp .small) {
  padding: 1.875rem 0 0;
  position: relative;
}

.t-h2 [lang=en] {
  font-family: var(--font_en);
  font-size: 7.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  background: var(--color_gradient02_opacity);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.t-h2 [lang=en]:has(+ .jp .small) {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.t-h2 .jp {
  font-family: var(--font_jp);
  font-size: 3.125rem;
  font-weight: 500;
}

.t-h2 .jp:has(.small) {
  line-height: 2.26;
}

.t-h2 .jp .small {
  display: block;
  font-size: 60%;
}

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

  .t-h2:has(.jp .small) {
    padding: 1.25rem 0 0;
  }

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

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

  .t-h2 .jp:has(.small) {
    line-height: 1.8;
  }
}

/*t-btn*/
.t-btn {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 26px 64px 26px 110px;
  border-radius: 20px;
  background: var(--color_gradient01);
  color: #fff;
  transition: 0.3s;
  font-family: var(--font_jp);
  font-size: 1.6875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-feature-settings: normal;
  transition: 0.3s;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}

.t-btn::after {
  content: "";
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 5px;
  transition: transform 0.5s, background-color 0.3s, background-image 0.3s;
  background: #fff url(../images/share/btn_arrow.svg) no-repeat center/23px auto;
}

.t-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--color_main);
  opacity: 0;
  transition: opacity 0.3s;
}

@media (hover: hover) {

  .t-btn:hover,
  .t-btn:focus {
    color: var(--color_main);
  }

  .t-btn:hover::before,
  .t-btn:focus::before {
    opacity: 1;
  }

  .t-btn:hover::after,
  .t-btn:focus::after {
    transform: translateX(10px);
    background-color: var(--color_main);
    background-image: url(../images/share/btn_arrow_w.svg);
  }
}

@media (max-width: 800px) {
  .t-btn {
    gap: 8px;
    padding: 16px 28px 16px 52px;
    border-radius: 14px;
    color: #fff;
    font-family: var(--font_jp);
    font-size: 1rem;
    font-weight: 500;
  }

  .t-btn::after {
    width: 36px;
    height: 36px;
    background: #fff url(../images/share/btn_arrow.svg) no-repeat center/14px auto;
  }

  .t-btn::before {
    border-radius: 14px;
  }
}

/*deco*/
.deco {
  position: relative;
}

.deco img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  width: 100%;
}

.deco::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: var(--color_gradient03);
  transform: translate(15px, 15px);
}

@media (max-width: 800px) {
  .deco img {
    border-radius: 20px;
  }

  .deco::after {
    border-radius: 20px;
    transform: translate(8px, 8px);

  }
}

/*Job Card*/
.job-card-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.job-card-layout>li {
  border: 2px solid var(--color_main);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  display: flex;
}

.job-card-layout .card-img {
  width: 34.5%;
}

.job-card-layout .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.job-card-layout .card-desc {
  flex: 1;
  padding: 30px 25px;
}

.job-card-layout .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0 0 0 20px;
  position: relative;
  margin-bottom: 20px;
}

.job-card-layout .card-ttl::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color_main);
  position: absolute;
  top: 0.6em;
  left: 0;
}

.job-card-layout .card-btn {
  margin-top: 30px;
  text-align: right;
}

.job-card-layout .card-btn .btn {
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color_main);
  font-feature-settings: normal;
  transition: 0.3s;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}

.job-card-layout .card-btn .btn::after {
  content: "";
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  background: url(../images/share/job-card_btn_arrow.svg) no-repeat center/contain;
}

@media (hover: hover) {

  .job-card-layout .card-btn .btn:hover,
  .job-card-layout .card-btn .btn:focus {
    text-decoration-color: var(--color_main);
  }

  .job-card-layout .card-btn .btn:hover::after,
  .job-card-layout .card-btn .btn:focus::after {
    transform: translateY(3px);
  }
}

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

  .job-card-layout>li {
    flex-direction: column;
  }

  .job-card-layout .card-img {
    width: 100%;
  }

  .job-card-layout .card-img img {
    aspect-ratio: 5/4;
    width: 100%;
    height: auto;
  }

  .job-card-layout .card-desc {
    flex: none;
  }
}

/*cta-area*/
.cta-area {
  width: min(90%, 1700px);
  margin-inline: auto;
}

.cta-area.overlap {
  margin-bottom: -196px;
  position: relative;
  z-index: 1;
}

.cta-bnr {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 100px 75px;
  border-radius: 20px;
  background: var(--color_gradient01);
  color: #fff;
  transition: 0.3s;
}

.cta-bnr::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--color_main);
  opacity: 0;
  transition: opacity 0.3s;
}

.cta-bnr .cta-en {
  font-family: var(--font_en);
  font-size: 7.125rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
}

.cta-bnr .cta-txt {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: 500;
  margin-top: 16px;
}

.cta-bnr .cta-link-txt {
  font-family: var(--font_jp);
  font-size: 1.6875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  font-feature-settings: normal;
  transition: 0.3s;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}

.cta-bnr .cta-link-txt::after {
  content: "";
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 5px;
  transition: transform 0.5s, background-color 0.3s, background-image 0.3s;
  background: #fff url(../images/share/btn_arrow.svg) no-repeat center/23px auto;
}

@media (hover: hover) {

  .cta-bnr:hover,
  .cta-bnr:focus {
    color: var(--color_main);
  }

  .cta-bnr:hover::before,
  .cta-bnr:focus::before {
    opacity: 1;
  }

  .cta-bnr:hover .cta-link-txt::after,
  .cta-bnr:focus .cta-link-txt::after {
    transform: translateX(10px);
    background-color: var(--color_main);
    background-image: url(../images/share/btn_arrow_w.svg);
  }
}

@media (max-width: 800px) {
  .cta-area.overlap {
    margin-bottom: -100px;
  }

  .cta-bnr {
    display: block;
    padding: 40px 20px 32px;
    border-radius: 10px;
  }

  .cta-bnr .cta-en {
    font-size: 2.5rem;
    line-height: 1.1;
    text-align: center;
  }

  .cta-bnr .cta-txt {
    font-size: 0.875rem;
    text-align: center;
    margin-top: 10px;
  }

  .cta-bnr .cta-link-txt {
    margin-top: 30px;
    font-size: 1.125rem;
    gap: 6px;
    margin: 25px auto 0;
  }

  .cta-bnr .cta-link-txt::after {
    width: 38px;
    height: 38px;
    border-radius: 5px;
    background-size: 15px auto;
  }
}

/*Slider*/
.top-slider01 {
  overflow: hidden;
}

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

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

.top-slider01 .splide__slide:not(.is-active) {
  pointer-events: none;
  opacity: 0.5;
}

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

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

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

.top-slider01 .splide__slide {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.4s ease;
}

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

.top-slider01 .splide__slide .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 16px;
  background: var(--color-primary, #1a5fd6);
  color: #fff;
  text-align: center;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
}

@media (max-width: 800px) {
  .top-slider01 .splide__arrow--prev {
    left: calc(10% - 4px);
    width: 20px;
    height: 20px;
  }

  .top-slider01 .splide__arrow--next {
    right: calc(10% - 4px);
    width: 20px;
    height: 20px;
  }

  .top-slider01 .splide__slide {
    border-radius: 10px;
  }

  .top-slider01 .splide__slide .caption {
    padding: 10px;
    font-size: 1rem;
  }
}

/*------------
Section
--------------*/
/*sec01*/
.sec01 {
  background: url(../images/top_bg02.png) no-repeat center;
  padding: 190px 0;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 70px 0;
    background-size: 150% auto;
  }
}

.message-area {
  position: relative;
  margin-bottom: 180px;
  position: relative;
}

.message-area::before {
  content: attr(data-en);
  font-family: var(--font_en);
  font-size: 7.125rem;
  font-weight: 400;
  line-height: 1;
  color: #D1E2FF;
  position: absolute;
  top: -1em;
  right: 5%;
}

@media (max-width: 800px) {
  .message-area {
    margin-bottom: 60px;
  }

  .message-area::before {
    font-size: 3.125rem;
    top: -0.8em;
    right: 0;
  }
}

.sec01-layout {
  display: grid;
  grid-template-columns: 54.5% 1fr;
  gap: 6%;
  align-items: center;
  padding: 0 max(5%, 50% - 600px) 0 min(5%, 50% - 775px);
}

.sec01-layout .l-ttl {
  font-family: var(--font_jp);
  font-size: clamp(2rem, 3.3vw, 3.125rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 25px;
}

.sec01-layout .l-catch {
  font-family: var(--font_jp);
  font-size: clamp(1.25rem, 1.8vw, 1.8125rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 50px;
}

.sec01-layout .l-txt p+p {
  margin-top: 1.5em;
}

@media (max-width: 800px) {
  .sec01-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 5%;
  }

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

  .sec01-layout .l-catch {
    font-size: 1.0625rem;
    margin-bottom: 25px;
  }

  .sec01-layout .l-txt p+p {
    margin-top: 1em;
  }
}

.sec01-ttl {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 80px;
}

.sec01-ttl .big {
  font-size: 166%;
}

@media (max-width: 800px) {
  .sec01-ttl {
    font-size: 1.0625rem;
    margin-bottom: 40px;
  }

  .sec01-ttl .big {
    font-size: 150%;
  }
}

.sec01-notice {
  background: #fff;
  border-radius: 5px;
  padding: 10px 18px;
  color: var(--color_gray_dark);
  border-left: 5px solid var(--color_main);
  display: inline-block;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .sec01-notice {
    font-size: 0.8125rem;
    padding: 8px 14px;
  }
}

/*sec02*/
.sec02 {
  background: url(../images/top_bg03.png) no-repeat center top;
}

@media (max-width: 800px) {
  .sec02 {
    background-size: 150% auto;
  }
}

.reason-area {
  padding: 85px 0 145px;
  position: relative;
}

.reason-area:after {
  content: "";
  position: absolute;
  inset: auto 2.8% 0;
  height: 1px;
  background: var(--color_border);
  z-index: -1;
}

.reason-area.intro {
  padding: 190px 0;
}

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

  .reason-area.intro {
    padding: 70px 0;
  }
}

.sec02-num {
  background: var(--color_gradient02_opacity);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: var(--font_en);
  font-size: 7.125rem;
  font-weight: 400;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}

@media (max-width: 800px) {
  .sec02-num {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}

.sec02-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color_main);
  margin: 0 auto 30px;
}

.sec02-ttl::before,
.sec02-ttl::after {
  content: "";
  width: 2px;
  height: 40px;
  background: currentColor;
}

.sec02-ttl::before {
  transform: rotate(-30deg);
}

.sec02-ttl::after {
  transform: rotate(30deg);
}

@media (max-width: 800px) {
  .sec02-ttl {
    gap: 10px;
    font-size: 1.0625rem;
  }

  .sec02-ttl::before,
  .sec02-ttl::after {
    height: 30px;
  }
}

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

.sec02-btn-layout a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 20px;
  padding: 30px 40px;
  border-radius: 20px;
  transition: 0.3s;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-decoration: none;
}

.sec02-btn-layout a .num {
  font-family: var(--font_en);
  font-size: 3.125rem;
  font-weight: 400;
}

.sec02-btn-layout a .ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.sec02-btn-layout a::after {
  content: "";
  width: 40px;
  height: 40px;
  background: url("../images/share/job-card_btn_arrow.svg") no-repeat center/contain;
  transition: transform 0.3s ease;
}

.sec02-btn-layout a .btn-img {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sec02-btn-layout a .btn-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (hover: hover) {

  .sec02-btn-layout a:hover,
  .sec02-btn-layout a:focus {
    text-shadow: 0 0 20px #fff;
  }

  .sec02-btn-layout a:hover .btn-img img,
  .sec02-btn-layout a:focus .btn-img img {
    transform: scale(1.2);
  }

  .sec02-btn-layout a:hover::after,
  .sec02-btn-layout a:focus::after {
    transform: translateY(6px);
  }
}

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

  .sec02-btn-layout a {
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
  }

  .sec02-btn-layout a .num {
    font-size: 1.75rem;
  }

  .sec02-btn-layout a .ttl {
    font-size: 1rem;
    line-height: 1.5;
  }

  .sec02-btn-layout a::after {
    width: 25px;
    height: 25px;
  }
}

.sec02-layout {
  display: flex;
  gap: 6%;
  align-items: center;
  width: min(90%, 1680px);
  margin-inline: auto;
}

.sec02-layout.reverse {
  flex-direction: row-reverse;
}

.sec02-layout .l-img {
  width: 52%;
}

.sec02-layout .l-img.img-col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  align-items: flex-start;
}

.sec02-layout .l-img.img-col2 .deco:nth-child(even) {
  margin-top: 70px;
}

.sec02-layout .caption {
  background: #fff;
  border: 1px solid #000;
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 500;
  border-radius: 5px;
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 5;
}

.sec02-layout .l-desc {
  flex: 1;
  max-width: 504px;
}

.sec02-layout .l-ttl {
  font-family: var(--font_jp);
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 30px;
}

.sec02-layout .l-ttl .bg {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: #fff;
  padding: 0.15em 0.3em;
}

.sec02-layout .l-catch {
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 50px;
}

.sec02-layout .l-txt p+p {
  margin-top: 1.5em;
}

@media (max-width: 800px) {
  .sec02-layout {
    display: block;
    width: 90%;
  }

  .sec02-layout.reverse {
    flex-direction: column;
  }

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

  .sec02-layout .l-img.img-col2 {
    gap: 0 20px;
    margin-bottom: 40px;
  }

  .sec02-layout .l-img.img-col2 .deco:nth-child(even) {
    margin-top: 30px;
  }

  .sec02-layout .caption {
    font-size: 0.75rem;
    bottom: -14px;
  }

  .sec02-layout .l-desc {
    max-width: none;
  }

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

  .sec02-layout .l-catch {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .sec02-layout .l-txt p+p {
    margin-top: 1em;
  }
}

.sec02-layout02 {
  width: min(90%, 1300px);
  margin: 120px auto 0;
  display: grid;
  grid-template-columns: minmax(52%, 1fr) 310px;
  gap: 8%;
}

.sec02-layout02 .l-desc {
  background: #fff;
  border-radius: 5px;
  padding: 50px 45px;
  position: relative;
  border-left: 5px solid var(--color_main);
}

.sec02-layout02 .l-desc .l-ttl {
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

.sec02-layout02 .l-list li {
  position: relative;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 22px;
}

.sec02-layout02 .l-list li::before {
  content: "";
  background: var(--color_main);
  width: 10px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0.9em;
}

.sec02-layout02 .l-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .sec02-layout02 {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 50px auto 0;
  }

  .sec02-layout02 .l-desc {
    padding: 30px 20px;
  }

  .sec02-layout02 .l-desc .l-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }

  .sec02-layout02 .l-list li {
    font-size: 0.875rem;
  }
}

.sec02-layout03 {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  width: min(90%, 1260px);
  margin: 0 auto 70px;
}

.sec02-layout03 .l-ttl {
  font-family: var(--font_jp);
  font-size: 2.125rem;
  font-weight: 500;
}

@media (max-width: 800px) {
  .sec02-layout03 {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 auto 40px;
  }

  .sec02-layout03 .l-ttl {
    font-size: 1.375rem;
    text-align: center;
  }
}

.sec02-box {
  position: relative;
  padding: 70px 55px;
  border-radius: 20px;
  background: #fff;
  width: min(90%, 1200px);
  margin: 120px auto 0;
}

.sec02-box .sec02-ttl {
  position: absolute;
  inset: -20px 0 auto;
  margin: 0 auto;
  z-index: 2;
}

@media (max-width: 800px) {
  .sec02-box {
    padding: 45px 20px 30px;
    margin: 60px auto 0;
  }

  .sec02-box .sec02-ttl {
    inset: -10px 0 auto;
  }
}

.sec02-card-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.sec02-card-layout li {
  width: calc((100% - 75px) / 4);
  min-height: 156px;
  background: var(--color_main);
  border-radius: 10px;
  padding: 25px 25px 12px;
}

.sec02-card-layout li .card-icon {
  margin: 0 auto 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.sec02-card-layout li .card-icon img {
  -o-object-fit: scale-down;
  object-fit: scale-down;
  height: 60px;
  width: 60px;
}

.sec02-card-layout li .card-ttl {
  color: #fff;
  text-align: center;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.sec02-card-layout li .card-ttl .small {
  display: block;
  font-size: 87.5%;
}

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

  .sec02-card-layout li {
    width: calc((100% - 15px) / 2);
    min-height: 0px;
    padding: 15px 10px 10px;
  }

  .sec02-card-layout li .card-icon {
    margin-bottom: 8px;
  }

  .sec02-card-layout li .card-icon img {
    height: 44px;
    width: 44px;
  }

  .sec02-card-layout li .card-ttl {
    font-size: 0.9375rem;
  }

  .sec02-card-layout li .card-ttl .small {
    font-size: 80%;
  }
}

.sec02-card-layout02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
  width: min(90%, 1200px);
  margin: 120px auto 0;
}

.sec02-card-layout02 li {
  border-radius: 20px;
  background: var(--color_main);
  overflow: hidden;
}

.sec02-card-layout02 li .card-img img {
  width: 100%;
}

.sec02-card-layout02 li .card-desc {
  padding: 30px 50px;
}

.sec02-card-layout02 li .card-ttl {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 15px;
}

.sec02-card-layout02 li .card-txt {
  color: #fff;
}

@media (max-width: 800px) {
  .sec02-card-layout02 {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 50px auto 0;
  }

  .sec02-card-layout02 li .card-desc {
    padding: 25px 20px;
  }

  .sec02-card-layout02 li .card-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}

.sec02-card-layout03 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  width: min(90%, 1320px);
  margin-inline: auto;
}

.sec02-card-layout03>li {
  position: relative;
  padding: 25px 0 0;
}

.sec02-card-layout03 .card-ttl {
  background: #fff;
  border: 1px solid #000;
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 500;
  border-radius: 5px;
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.sec02-card-layout03 .card-img {
  position: relative;
  margin-bottom: 40px;
}

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

  .sec02-card-layout03>li {
    padding: 20px 0 0;
  }

  .sec02-card-layout03 .card-ttl {
    font-size: 0.9375rem;
  }

  .sec02-card-layout03 .card-img {
    margin-bottom: 30px;
  }
}

/*sec03*/
.sec03 {
  background: url(../images/top_bg04.png) no-repeat center top;
  padding: 120px 0 190px;
}

@media (max-width: 800px) {
  .sec03 {
    padding: 60px 0 70px;
    background-size: 150% auto;
  }
}

.sec03-card-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(90%, 1300px);
  margin-inline: auto;
}

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

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

.sec04::before {
  content: "";
  position: absolute;
  inset: -500px 0 0;
  z-index: -1;
  background: url(../images/top_bg05.png) no-repeat center top;
}

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

  .sec04::before {
    inset: -50vw 0 0;
    background-size: 200% auto;
  }
}

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

.sec04-card-layout li {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.sec04-card-layout .card-ttl {
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.sec04-card-layout .card-icon {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec04-card-layout .card-icon img {
  display: block;
  width: auto;
  height: auto;
}

.sec04-card-layout .card-txt {
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  font-feature-settings: normal;
  margin-top: 20px;
}

.sec04-card-layout .card-txt .big {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 450%;
  line-height: 1;
}

.sec04-card-layout .card-notice {
  margin-top: 15px;
}

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

  .sec04-card-layout li {
    padding: 25px 20px;
  }

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

  .sec04-card-layout .card-txt {
    font-size: 1rem;
    margin-top: 15px;
  }

  .sec04-card-layout .card-txt .big {
    font-size: 300%;
  }
}

.sec05 {
  background: url(../images/top_bg06.png) no-repeat center;
  padding: 190px 0;
  position: relative;
}

@media (max-width: 800px) {
  .sec05 {
    padding: 70px 0;
    background-size: 200% auto;
  }
}

.sec05-layout {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 8%;
}

.sec05-layout .l-img .img+.img {
  margin-top: 60px;
}

@media (max-width: 800px) {
  .sec05-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sec05-layout .l-img {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
  }

  .sec05-layout .l-img>.img {
    width: calc(50% - 10px);
  }

  .sec05-layout .l-img .img+.img {
    margin-top: 0;
  }
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0 40px;
  padding-bottom: 60px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 120px;
  width: 1px;
  height: 100%;
  background: var(--color_sub01);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-time {
  font-family: var(--font_en);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  padding-right: 30px;
}

.timeline-time::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 19px;
  height: 19px;
  background: var(--color_sub01);
  border-radius: 4px;
}

.timeline-title {
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}

.timeline-desc {
  line-height: 1.5;
}

@media (max-width: 800px) {
  .timeline-item {
    grid-template-columns: 70px 1fr;
    gap: 0 20px;
    padding-bottom: 35px;
  }

  .timeline-item::before {
    left: 62px;
  }

  .timeline-time {
    font-size: 1.125rem;
    padding-right: 20px;
    line-height: 1.5;
  }

  .timeline-time::after {
    top: 6px;
    width: 14px;
    height: 14px;
  }

  .timeline-title {
    font-size: 1.0625rem;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .timeline-desc {
    font-size: 0.875rem;
  }
}

/*sec06*/
.sec06 {
  padding: 190px 0;
  position: relative;
}

.sec06::before {
  content: "";
  position: absolute;
  inset: -500px 0 0;
  z-index: -1;
  background: url(../images/top_bg07.png) no-repeat center top;
}

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

  .sec06::before {
    inset: -25vw 0 0;
    background-size: 200% auto;
  }
}

.sec06-layout {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  margin-left: max(5%, 50% - 680px);
  gap: 13%;
}

.sec06-layout+.sec06-layout {
  margin-top: 150px;
}

.sec06-layout .l-img {
  position: sticky;
  top: 100px;
  overflow: hidden;
  width: auto;
  max-width: 56.9%;
}

.sec06-layout .l-img img {
  width: auto;
  height: min(100svh - 100px, 800px);
  border-radius: 20px 0 0 20px;
  border: 1px solid #000;
}

.sec06-layout .l-desc {
  flex: 1;
}

.sec06-layout .l-ttl {
  font-family: var(--font_jp);
  font-size: 2.125rem;
  font-weight: 500;
  background: var(--color_sub01);
  color: #fff;
  padding: 8px 20px;
  margin-bottom: 50px;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 800px) {
  .sec06-layout {
    display: block;
    max-width: 90%;
    margin-inline: auto;
  }

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

  .sec06-layout .l-img {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    top: 0;
  }

  .sec06-layout .l-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .sec06-layout .l-ttl {
    font-size: 1.25rem;
    padding: 6px 16px;
    margin-bottom: 25px;
  }
}

.sec06-dl dt {
  position: relative;
  padding-left: 50px;
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 25px;
}

.sec06-dl dt::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 30px;
  height: 1px;
  background: var(--color_main);
}

.sec06-dl dd+dt {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .sec06-dl dt {
    font-size: 1.0625rem;
    padding-left: 35px;
    margin-bottom: 15px;
  }

  .sec06-dl dt::before {
    width: 22px;
  }

  .sec06-dl dd {
    font-size: 0.875rem;
  }

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

/*sec07*/
.sec07 {
  background-color: #fff;
  padding: 130px 0 150px;
  margin: 0 auto 200px;
  width: min(90%, 1700px);
  border-radius: 20px;
}

@media (max-width: 800px) {
  .sec07 {
    padding: 50px 5%;
    margin: 0 auto 70px;
    border-radius: 10px;
  }
}

.faq-style {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  transition: 0.3s;
}

.faq-style+.faq-style {
  margin-top: -1px;
}

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  padding: 20px 50px;
  position: relative;
}

.faq-style .faq-summary .faq-icon {
  top: 20px;
  left: 0;
}

.faq-style .faq-summary::-webkit-details-marker {
  display: none;
}

.faq-style .faq-summary:hover .faq-icon {
  background-color: var(--color_main);
  color: #fff;
}

.faq-style .faq-content {
  overflow: hidden;
}

.faq-style .faq-inner {
  padding: 0 50px 30px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  border: 1px solid var(--color_main);
  background-color: #fff;
  color: var(--color_main);
  top: 0;
  left: 0;
}

.faq-style .faq-ttl {
  color: var(--color_main);
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
}

.faq-style .faq-icon {
  border: 1px solid var(--color_main);
  border-radius: 3px;
  background-color: var(--color_main);
  color: #fff;
  font-family: var(--font_en);
  font-weight: 700;
  font-size: 1.0625rem;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  transition: 0.3s;
}

.faq-style .faq-open-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 16px;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before,
.faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before {
  width: 16px;
  height: 2px;
  transform: translateX(-50%);
}

.faq-style .faq-open-icon::after {
  width: 16px;
  height: 2px;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left;
  transition: transform 0.5s;
}

.faq-style.is-open .faq-open-icon {
  transform: rotate(180deg);
}

.faq-style.is-open .faq-open-icon::after {
  opacity: 0;
}

@media (max-width: 800px) {
  .faq-style {
    line-height: 1.5;
  }

  .faq-style .faq-summary {
    padding: 18px 30px 18px 50px;
  }

  .faq-style .faq-ttl {
    font-size: 1rem;
  }

  .faq-style .faq-open-icon {
    right: 0;
    top: 11px;
  }

  .faq-style .faq-inner {
    padding: 0 0 30px 50px;
  }
}

/*sec08*/
.sec08 {
  padding: 190px 0;
  position: relative;
}

.sec08::before {
  content: "";
  position: absolute;
  inset: -600px 0 0;
  z-index: -1;
  background: url(../images/top_bg08.png) no-repeat center top;
}

.sec08 .job-card-layout {
  margin-bottom: 200px;
}

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

  .sec08::before {
    inset: -45vw 0 0;
    background-size: 200% auto;
    background-repeat: space;
  }

  .sec08 .job-card-layout {
    margin-bottom: 60px;
  }
}

.sec08-ttl {
  font-family: var(--font_jp);
  font-size: 2.125rem;
  font-weight: 500;
  background: var(--color_sub01);
  color: #fff;
  padding: 8px 20px;
  margin: 0 auto 80px;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 800px) {
  .sec08-ttl {
    font-size: 1.25rem;
    padding: 6px 16px;
    margin: 0 auto 40px;
  }
}

.sec08-content+.sec08-content {
  margin-top: 150px;
}

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

.sec08-table th,
.sec08-table td {
  border-bottom: 2px solid var(--color_border);
  padding: 15px 0;
  vertical-align: middle;
}

.sec08-table th {
  width: 204px;
  color: var(--color_sub01);
  text-align: left;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 500;
  border-color: #FFDF85;
}

.sec08-table td {
  padding: 15px;
}

@media (max-width: 800px) {

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

  .sec08-table th {
    font-size: 0.9375rem;
    width: 35%;
  }
}

.tab-btn {
  display: grid;
  grid-template-columns: repeat(var(--tab-btn-cols, 2), 1fr);
  align-items: flex-end;
  gap: 20px;
  min-height: 94px;
}

.tab-btn:has(button:only-child) {
  --tab-btn-cols: 1;
  pointer-events: none;
}

.tab-btn button {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: #fff;
  cursor: pointer;
  color: var(--color_sub01);
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
  border-radius: 10px 10px 0 0;
  padding: 19px 20px;
  transition: 0.5s;
  width: 100%;
}

.tab-btn button.is-active {
  background: var(--color_sub01);
  color: #fff;
  padding: 25px 20px;
}

@media (hover: hover) {

  .tab-btn button:hover,
  .tab-btn button:focus {
    background: var(--color_sub01);
    color: #fff;
  }
}

.tab-contents {
  display: none;
  background-color: #fff;
  border: 6px solid var(--color_sub01);
  border-radius: 0 0 20px 20px;
  padding: 65px 90px;
}

.tab-contents.is-show {
  display: block;
}

@media (max-width: 800px) {
  .tab-btn {
    justify-content: center;
    min-height: 58px;
    gap: 10px;
  }

  .tab-btn button {
    font-size: 0.875rem;
    padding: 8px 10px;
  }

  .tab-btn button.is-active {
    padding: 15px 10px;
  }

  .tab-contents {
    padding: 35px 20px;
    border-width: 3px;
  }
}

/*sec09*/
.sec09 {
  background-color: var(--color_sub02);
  padding: 150px 0;
  width: min(90%, 1700px);
  margin: 0 auto 190px;
  border-radius: 20px;
}

.sec09 .t-h2 [lang=en] {
  background: none;
  background-clip: border-box;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.25);
}

.sec09 .t-h2 .jp {
  color: #fff;
}

@media (max-width: 800px) {
  .sec09 {
    padding: 60px 0;
    margin: 0 auto 70px;
    border-radius: 10px;
  }
}

.sec09-flow-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding: 22px 0 0;
}

.sec09-flow-layout li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px 20px 35px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
}

.sec09-flow-layout li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 25px);
  transform: translate(-50%, -50%);
  width: 14px;
  height: 24px;
  background: #000;
  -webkit-mask: url("../images/share/flow_arrow.svg") no-repeat center/contain;
  mask: url("../images/share/flow_arrow.svg") no-repeat center/contain;
}

.sec09-flow-layout .flow-num {
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  background: var(--color_main);
  padding: 12px;
  border-radius: 4px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  inset: -22px 0 auto;
  margin: 0 auto;
  z-index: 5;
}

.sec09-flow-layout .flow-ttl {
  font-family: var(--font_jp);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color_main);
  line-height: 1.5;
  margin-bottom: 20px;
}

.sec09-flow-layout .flow-ttl .small {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
}

.sec09-flow-layout .flow-icon {
  margin: 0;
  margin-top: auto;
}

.sec09-flow-layout .flow-icon img {
  display: block;
  width: 80px;
  height: 80px;
}

@media (max-width: 800px) {
  .sec09-flow-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 20px 0 0;
  }

  .sec09-flow-layout li {
    padding: 35px 12px 25px;
    border-radius: 12px;
  }

  .sec09-flow-layout li:not(:last-child)::after {
    left: 50%;
    bottom: -32px;
    top: auto;
    transform: translateX(-50%) rotate(90deg);
    width: 14px;
    height: 24px;
  }

  .sec09-flow-layout .flow-num {
    font-size: 1rem;
    padding: 8px;
    border-radius: 3px;
    inset: -15px 0 auto;
  }

  .sec09-flow-layout .flow-ttl {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .sec09-flow-layout .flow-ttl .small {
    font-size: 0.8125rem;
    margin-top: 6px;
  }

  .sec09-flow-layout .flow-icon img {
    width: 44px;
    height: 44px;
  }
}

/*-----------------------------------------------------------
		TOP アニメーション
-----------------------------------------------------------*/
.is-mask {
  position: relative;
}

.is-mask::before {
  content: "";
  background: var(--color_sub02);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
  border-radius: 20px;
  transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.is-mask:has(.img)::before {
  content: none;
}

.is-mask:has(.img) .img {
  position: relative;
}

.is-mask:has(.img) .img::before {
  content: "";
  background: #7EABFF;
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
  border-radius: 20px;
  transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.is-mask.is-action::before {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}

.is-mask.is-action .img::before {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}

.is-ttl {
  filter: blur(8px);
  opacity: 0;
  transition: 1.6s ease filter, 0.8s ease opacity;
  will-change: filter;
}

.is-ttl.is-action {
  filter: blur(0px);
  opacity: 1;
}

.is-timeline .timeline-item::before {
  scale: 1 0;
  transform-origin: top;
  transition: scale 0.35s ease-out;
}

.is-timeline .timeline-item {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.is-timeline .timeline-time::after {
  scale: 0;
  transition: scale 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.is-timeline.is-action .timeline-item {
  opacity: 1;
}

.is-timeline.is-action .timeline-item::before {
  scale: 1;
}

.is-timeline.is-action .timeline-time::after {
  scale: 1;
}

.is-timeline.is-action .timeline-item:nth-child(1) {
  transition-delay: 0s;
}

.is-timeline.is-action .timeline-item:nth-child(1) .timeline-time::after {
  transition-delay: 0.1s;
}

.is-timeline.is-action .timeline-item:nth-child(1)::before {
  transition-delay: 0.15s;
}

.is-timeline.is-action .timeline-item:nth-child(2) {
  transition-delay: 0.25s;
}

.is-timeline.is-action .timeline-item:nth-child(2) .timeline-time::after {
  transition-delay: 0.35s;
}

.is-timeline.is-action .timeline-item:nth-child(2)::before {
  transition-delay: 0.4s;
}

.is-timeline.is-action .timeline-item:nth-child(3) {
  transition-delay: 0.5s;
}

.is-timeline.is-action .timeline-item:nth-child(3) .timeline-time::after {
  transition-delay: 0.6s;
}

.is-timeline.is-action .timeline-item:nth-child(3)::before {
  transition-delay: 0.65s;
}

.is-timeline.is-action .timeline-item:nth-child(4) {
  transition-delay: 0.75s;
}

.is-timeline.is-action .timeline-item:nth-child(4) .timeline-time::after {
  transition-delay: 0.85s;
}

.is-timeline.is-action .timeline-item:nth-child(4)::before {
  transition-delay: 0.9s;
}

.is-timeline.is-action .timeline-item:nth-child(5) {
  transition-delay: 1s;
}

.is-timeline.is-action .timeline-item:nth-child(5) .timeline-time::after {
  transition-delay: 1.1s;
}

.is-timeline.is-action .timeline-item:nth-child(5)::before {
  transition-delay: 1.15s;
}

.is-timeline.is-action .timeline-item:nth-child(6) {
  transition-delay: 1.25s;
}

.is-timeline.is-action .timeline-item:nth-child(6) .timeline-time::after {
  transition-delay: 1.35s;
}

.is-timeline.is-action .timeline-item:nth-child(6)::before {
  transition-delay: 1.4s;
}

.is-timeline.is-action .timeline-item:nth-child(7) {
  transition-delay: 1.5s;
}

.is-timeline.is-action .timeline-item:nth-child(7) .timeline-time::after {
  transition-delay: 1.6s;
}

.is-timeline.is-action .timeline-item:nth-child(7)::before {
  transition-delay: 1.65s;
}

.is-timeline.is-action .timeline-item:nth-child(8) {
  transition-delay: 1.75s;
}

.is-timeline.is-action .timeline-item:nth-child(8) .timeline-time::after {
  transition-delay: 1.85s;
}

.is-timeline.is-action .timeline-item:nth-child(8)::before {
  transition-delay: 1.9s;
}

/*個別アニメーション*/
.sec05-layout .l-img>.img {
  opacity: 0;
  transition: 0.7s;
  transform: translate(0, 15%);
}

.sec05-layout .l-img>.img:nth-child(1) {
  transition-delay: 0.3s;
}

.sec05-layout .l-img>.img:nth-child(2) {
  transition-delay: 0.4s;
}

.sec05-layout .l-img>.img:nth-child(3) {
  transition-delay: 0.5s;
}

.sec05-layout .l-img.is-action>* {
  opacity: 1;
  transform: translate(0, 0);
}

.sec06-layout .is-mask::before {
  border-radius: 20px 0 0 20px;
}

@media (max-width: 800px) {
  .sec06-layout .is-mask::before {
    border-radius: 20px;
  }

}

/* モーション低減設定への対応 */
@media (prefers-reduced-motion: reduce) {
  .is-mask::before {
    transition: none;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }

  .is-mask:has(.img) .img::before {
    transition: none;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }

  .is-ttl {
    filter: none;
    opacity: 1;
    transition: none;
    will-change: auto;
  }

  .is-timeline .timeline-item {
    opacity: 1;
    transition: none;
  }

  .is-timeline .timeline-item::before {
    scale: 1;
    transition: none;
  }

  .is-timeline .timeline-time::after {
    scale: 1;
    transition: none;
  }

  .sec05-layout .l-img>.img {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }
}

.privacy-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.9375rem;
}

.dl-privacy {
  display: grid;
  gap: 1.875rem;
}

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  font-weight: 500;
  padding-top: 1.5625rem;
  margin-bottom: 0.9375rem;
  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;
}

.br-pc-only {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
}

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

.marker {
  background: linear-gradient(transparent 60%, var(--color_sub01) 60%);
}

.notice {
  font-size: 0.8125rem;
  text-indent: -1em;
  padding-left: 1em;
}

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px !important;
}

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

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

.mbXM {
  margin-bottom: 48px !important;
}

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

.mbXL {
  margin-bottom: 96px;
}

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

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

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

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

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

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

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: block;
  }

  .br-sp-only {
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
  }

  .br-pc-only {
    display: none;
  }

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

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

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

  .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
-------------*/
:root {
  /* 矢印（Arrow） */
  --splide-arrow-bg-color: var(--color_main);
  /* ドット（Pagination） */
  --splide-dot-color: #D0D0C9;
  --splide-dot-active-color: var(--color_main);
  /* 再生停止ボタン（Toggle） */
  --splide-toggle-bg-color: #ccc;
  --splide-toggle-bg-hover: #D3D3D3;
  --splide-toggle-svg-color: #fff;
  /* スクロールバー（Progress） */
  --splide-progress-color: var(--color_main);
}

.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;
  border-radius: 50%;
}

.splide__arrow--prev {
  -webkit-mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
  mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
  background-color: var(--splide-arrow-bg-color);
}

.splide__arrow--next {
  -webkit-mask: url(../images/share/splide_next.svg) no-repeat center/contain;
  mask: url(../images/share/splide_next.svg) no-repeat center/contain;
  background-color: var(--splide-arrow-bg-color);
}

.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: var(--splide-dot-color);
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: var(--splide-dot-active-color);
  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: 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 #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

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

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

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

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

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

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

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

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

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

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

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

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

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

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

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__toggle {
  cursor: pointer;
  background: var(--splide-toggle-bg-color);
  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: var(--splide-toggle-bg-hover);
}

.splide__toggle svg {
  fill: var(--splide-toggle-svg-color);
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

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