@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_text: #333;
  --color_link: #333;
  --color_border: #e9e9e9;
  --color_primary: #004999;
  --color_secondary: #00D1EE;
  --color_bg01: #FFEFC7;
  --color_bg02: #FBE8B7;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

/* ====================================================
【アニメーション】
==================================================== */
: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:
    "FOT-筑紫A丸ゴシック Std M",
    TsukuARdGothicStd-M,
    "Local Noto Sans JP",
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B", TsukuARdGothicStd-B, sans-serif;
  --font_en: "Montserrat", sans-serif;
  --font_weight: normal;
  --font_size: 1rem;
  --line_height: 1.8;
  --letter_spacing: .1em;
}

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

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

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

figure:has(img) {
  line-height: 0;
}

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

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

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

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: absolute;
  padding: 23px 0 0 50px;
  z-index: 9;
}

.h-logo {
  line-height: 1;
}

.h-utility {
  position: fixed;
  top: 0;
  right: 0;
}

.h-btn {
  display: grid;
  place-items: center;
  gap: 10px;
  background-color: var(--color_white);
  border-radius: 0 0 0 10px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 0.875rem;
  padding: 30px 10px;
  width: 116px;
  height: 112px;
  transition: background-color 0.3s ease;
}

.h-btn svg {
  fill: var(--color_secondary);
}

.h-btn .txt {
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

@media (max-width: 1400px) {
  .header {
    padding: 23px 0 0 20px;
  }

  .h-logo {
    width: 280px;
  }
}

@media (max-width: 800px) {
  .header {
    gap: 15px;
    padding: 10px 2.5%;
  }

  .h-logo {
    max-width: min(360px, 100%);
  }

  .h-btn {
    display: none;
  }
}

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

.gnavi-menu-btn {
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 6px;
  background-color: var(--color_primary);
  width: 116px;
  height: 112px;
  padding: 35px 10px;
  position: relative;
  z-index: 110;
  transition: background-color 0.3s ease;
}

@media (any-hover: hover) {
  .gnavi-menu-btn:hover {
    background-color: #276ab3;
  }
}

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

.gnavi-menu-btn-line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color_white);
  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;
}

.gnavi-menu-btn-txt {
  display: block;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.875rem;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

.gnavi-menu-btn.is-open {
  background-color: var(--color_white);
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span {
  background-color: var(--color_primary);
}

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

.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(-35deg);
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-txt {
  color: var(--color_primary);
}

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

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

.gnavi-drawer {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  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: var(--color_primary);
  display: grid;
  align-items: center;
  margin-left: auto;
  padding: 9% 7% 11% 9%;
  position: relative;
  max-width: 739px;
  overflow-y: auto;
}

.gnavi-drawer-container::before {
  content: "";
  background: url(../images/share/drawer_deco.png) no-repeat center center/cover;
  width: 111px;
  height: auto;
  aspect-ratio: 111/163;
  position: absolute;
  bottom: 0;
  right: 89px;
}

.drawer-links-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 120px;
  margin-bottom: 74px;
}

.drawer-links {
  display: grid;
  gap: 15px;
  line-height: 1.5;
  font-size: 1.125rem;
}

.drawer-links>li {
  padding-left: 13px;
  position: relative;
}

.drawer-links>li::before {
  content: "";
  background-color: var(--color_white);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 12px;
  left: 0;
}

.drawer-links .sub-menu {
  display: grid;
  gap: 13px;
  margin-top: 14px;
}

.drawer-links .sub-menu>li {
  padding-left: 18px;
  position: relative;
}

.drawer-links .sub-menu>li::before {
  content: "";
  background-color: #D0DCEB;
  width: 8px;
  height: 1px;
  position: absolute;
  top: 14px;
  left: 0;
}

.drawer-links .sub-menu>li>a {
  color: #D0DCEB;
}

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

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

.drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background-color: var(--color_white);
  border-radius: 5px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  padding: 17px 20px;
  max-width: 424px;
  text-align: center;
  text-box: trim-both cap alphabetic;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.drawer-btn svg {
  fill: var(--color_secondary);
  margin-top: 2px;
}

@media (any-hover: hover) {
  .drawer-btn:hover {
    background-color: #d9f6f9;
    transform: translateY(-2px);
  }
}

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

  .gnavi-drawer-container {
    align-items: flex-start;
    align-content: flex-start;
    padding: 50px 25px 90px;
    width: 100%;
    height: calc(100% - 50px);
    z-index: 0;
  }

  .gnavi-drawer-container::before {
    content: none;
  }

  .drawer-links-wrap {
    gap: 30px;
    margin-bottom: 55px;
  }

  .drawer-links {
    gap: 15px;
    font-size: 1rem;
  }

  .drawer-btn {
    font-size: 1.125rem;
    position: relative;
  }

  .drawer-btn::before {
    content: "";
    background: url(../images/share/drawer_deco.png) no-repeat center center / cover;
    width: 65px;
    height: auto;
    aspect-ratio: 111 / 163;
    position: absolute;
    top: -95px;
    right: 19px;
    z-index: -1;
  }

  .drawer-btn svg {
    width: 24px;
  }
}

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

.f-contents01 {
  background-color: var(--color_primary);
  color: var(--color_white);
  margin-top: auto;
  padding: 112px 0 155px;
  position: relative;
}

.f-contents01 .container {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 20px;
}

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

.f-txt {
  line-height: 2.5;
  margin-bottom: 45px;
}

.f-btn {
  display: inline-block;
  background-color: var(--color_white);
  border: 1px solid var(--color_white);
  border-radius: 3px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  padding: 19px 129px 19px 38px;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.f-btn::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/btn-arrow02.svg) no-repeat center/contain;
  mask: url(../images/share/btn-arrow02.svg) no-repeat center/contain;
  width: 13px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 34px;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

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

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

.time-table-wrap {
  background-color: var(--color_white);
  border-radius: 20px;
  margin-bottom: 10px;
  padding: 22px 15px;
}

.time-table {
  background-color: var(--color_white);
  border-collapse: collapse;
  color: var(--color_black);
  table-layout: fixed;
  width: 100%;
}

.time-table th,
.time-table td {
  font-family: var(--font_jp);
  font-size: 0.875rem;
  line-height: 1.2;
  text-align: center;
  padding: 15px 0;
}

@media (max-width: 800px) {

  .time-table th,
  .time-table td {
    padding: 10px 0;
  }
}

.time-table thead {
  border-bottom: 1px solid #CBCCCC;
}

.time-table thead th {
  font-size: 0.875rem;
}

.time-table th:first-child {
  border-right: 1px solid #CBCCCC;
  letter-spacing: 0;
  width: 25%;
}

@media (max-width: 800px) {
  .time-table th:first-child {
    width: 90px;
  }
}

.time-table tr:not(:last-child) {
  border-bottom: 1px solid #CBCCCC;
}

.time-table img {
  margin-inline: auto;
}

.time-table-note {
  font-size: 0.9375rem;
}

.time-table-note .co-blue {
  color: var(--color_secondary);
}

.copyright {
  text-align: right;
  margin-top: 32px;
}

.copyright small {
  color: #B8CCE3;
  font-size: 0.875rem;
}

.pagetop {
  position: absolute;
  bottom: 0;
  right: 68px;
}

.pagetop .ttl {
  display: block;
  font-family: var(--font_en);
  font-size: 1.125rem;
  font-weight: bold;
  padding-bottom: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.pagetop .ttl::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/pagetop_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/pagetop_arrow.svg) no-repeat center/contain;
  width: 22px;
  height: 17px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

@media (max-width: 1400px) {
  .pagetop img {
    width: 63px;
    margin-inline: auto;
  }
}

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

  .f-contents01 {
    padding: 60px 0;
  }

  .f-contents01 .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .f-btn {
    font-size: 1rem;
    padding: 16px 60px 16px 32px;
  }

  .pagetop {
    display: none;
  }
}

.sp-navi {
  display: none;
}

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

  .sp-navi {
    display: block;
  }

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

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

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

  .sp-navi-btns .item:not(:last-child) {
    border-right: 1px solid var(--navi-border-color);
  }

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

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

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

  .sp-navi-btns .item .img img {
    margin-bottom: 7px;
  }

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

  .sp-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 6px;
  }

  .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-family: var(--navi-font);
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

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

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

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

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

  .sp-menu-btn.is-open span:nth-of-type(1) {
    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) {
    transform: translate(-50%, -6px) rotate(45deg);
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
@keyframes hero-scroll-rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

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

.hero::before {
  content: "";
  background: url(../images/share/h_logo_bg.png) no-repeat center center/cover;
  width: 713px;
  height: auto;
  aspect-ratio: 713/196;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero .hero-img {
  position: relative;
  z-index: 0;
}

.hero .hero-img .img img {
  width: 100%;
}

.hero .hero-img::before {
  content: "";
  background: url(../images/hero_bottom.png) no-repeat center center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/196;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.hero .hero-catch {
  position: absolute;
  top: 26%;
  right: 14.2%;
}

.hero .catch-txt {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: clamp(2.125rem, 2.5vw, 2.8125rem);
  line-height: 1.5;
  margin-bottom: 25px;
}

.hero .catch-txt02 {
  font-family: var(--font_jp);
  font-size: 1.3125rem;
  line-height: 1.5;
  margin-bottom: 50px;
}

.hero .hero-btn {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 5px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 21px 83px 21px 40px;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero .hero-btn::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/btn-arrow.svg) no-repeat center/contain;
  mask: url(../images/share/btn-arrow.svg) no-repeat center/contain;
  width: 19px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 44px;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

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

  .hero .hero-btn:hover::before {
    background-color: var(--color_primary);
  }
}

.hero .hero-scroll {
  display: grid;
  place-items: center;
  width: 176px;
  height: 176px;
  position: absolute;
  right: 6.8%;
  bottom: 83px;
}

.hero .hero-scroll::before {
  content: "";
  background: url(../images/hero-scroll.png) no-repeat center/contain;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  animation: hero-scroll-rotation 12s linear infinite;
}

.hero .hero-scroll img {
  position: relative;
  z-index: 1;
}

@media (max-width: 1400px) {
  .hero::before {
    width: 410px;
    top: -20px;
  }

  .hero .hero-scroll {
    width: 130px;
    height: 130px;
    right: 4%;
  }
}

@media (max-width: 1024px) {
  .hero .hero-catch {
    position: static;
    padding: 0 5%;
    width: 90%;
  }

  .hero .hero-scroll {
    bottom: 0;
  }
}

@media (max-width: 800px) {
  .hero .catch-txt {
    font-size: 1.75rem;
    margin-bottom: 17px;
  }

  .hero .catch-txt02 {
    font-size: 1rem;
    margin-bottom: 23px;
  }

  .hero .hero-btn {
    font-size: 1rem;
    padding: 16px 60px 16px 32px;
  }

  .hero .hero-btn::before {
    width: 13px;
    height: 7px;
    right: 30px;
  }

  .hero .hero-scroll {
    width: 107px;
    height: 107px;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  display: flex;
  align-items: baseline;
  gap: 25px;
  flex-wrap: wrap;
}

.t-h2 [lang=en] {
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 4.375rem;
  font-weight: bold;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

.t-h2 .jp {
  color: var(--color_primary);
  font-size: 1.125rem;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .t-h2 [lang=en] {
    font-size: 3.125rem;
  }

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

/*------------
Section
--------------*/
.sec01 {
  padding: 65px 0 120px;
}

.sec01-ttl {
  margin-bottom: 85px;
  padding-top: 60px;
  position: relative;
  text-align: center;
}

.sec01-ttl::before {
  content: "";
  background: url(../images/sec01_ttl_deco.svg) no-repeat center/contain;
  width: 32px;
  height: 41px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.sec01-ttl [lang=en] {
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 4.375rem;
  font-weight: bold;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  margin-bottom: 20px;
}

.sec01-ttl .jp {
  color: var(--color_primary);
  font-size: 1.125rem;
}

.l-sec01 {
  display: grid;
  grid-template-columns: 403px 1fr 408px;
  grid-template-areas: "img01 desc img02";
  gap: 30px;
  max-width: 1568px;
  margin: auto;
}

.l-sec01 .l-img01 {
  grid-area: img01;
  margin: -45px 0 0 0;
}

.l-sec01 .l-desc {
  grid-area: desc;
}

.l-sec01 .l-img02 {
  grid-area: img02;
  margin: -165px 0 0 0;
}

.l-sec01 .l-txt {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: clamp(2.1875rem, 2.2vw, 2.5rem);
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-bottom: 70px;
  text-align: center;
}

.l-sec01 .l-inner p {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  line-height: 2.2;
  text-align: center;
}

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

@media (max-width: 1350px) {
  .l-sec01 {
    grid-template-columns: 25% 1fr 25%;
  }
}

@media (max-width: 1024px) {
  .l-sec01 {
    grid-template-columns: 1fr;
    grid-template-areas: "img01""desc""img02";
  }

  .l-sec01 .l-img01 {
    margin: 0 0 0 auto;
    padding: 0;
  }

  .l-sec01 .l-img02 {
    margin: 0 auto 0 0;
    padding: 0;
  }
}

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

  .sec01-ttl {
    margin-bottom: 65px;
  }

  .sec01-ttl [lang=en] {
    font-size: 3.125rem;
  }

  .sec01-ttl .jp {
    font-size: 1.3125rem;
  }

  .l-sec01 .l-desc {
    padding: 0 5%;
  }

  .l-sec01 .l-txt {
    font-size: 1.625rem;
    margin-bottom: 45px;
  }

  .l-sec01 .l-inner p {
    font-family: var(--font_base);
    font-size: 1rem;
    line-height: 2.5;
  }
}

@media (max-width: 430px) {
  .l-sec01 {
    overflow: hidden;
  }

  .l-sec01 .l-img02 {
    margin: 0 -23px 0 0;
  }
}

.sec02 {
  background-color: var(--color_bg02);
  overflow: hidden;
  padding: 290px 0 236px;
  position: relative;
  z-index: 0;
}

.sec02::before {
  content: "";
  background: url(../images/sec02_top.png) no-repeat center center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/88;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.sec02::after {
  content: "";
  background: url(../images/sec02_bottom.png) no-repeat center center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/88;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.sec02-ttl {
  display: grid;
  grid-template-columns: 1fr 50%;
  align-items: center;
  gap: 20px;
  margin-bottom: 68px;
  position: relative;
  z-index: 0;
}

.sec02-ttl::before {
  content: "";
  background-color: var(--color_bg01);
  border-radius: 30px;
  width: 158px;
  height: auto;
  aspect-ratio: 158/152;
  position: absolute;
  top: -31px;
  right: -18%;
  z-index: -1;
}

.l-sec02-container {
  margin: auto;
  padding-top: 115px;
  position: relative;
  width: min(90%, 1600px);
}

.l-sec02-container::before {
  content: "";
  background: url(../images/sec02_deco03.svg) no-repeat center/contain;
  width: 161px;
  height: auto;
  aspect-ratio: 161/122;
  position: absolute;
  bottom: -53px;
  left: -70px;
  z-index: -1;
}

.l-sec02 {
  background-color: var(--color_white);
  padding: 0 80px 94px;
  position: relative;
}

.l-sec02::before {
  content: "";
  background: url(../images/sec02_deco01.svg) no-repeat center/contain;
  width: 86px;
  height: auto;
  aspect-ratio: 86/110;
  position: absolute;
  top: 77px;
  left: -34px;
  z-index: 1;
}

.l-sec02::after {
  content: "";
  background: url(../images/sec02_deco02.svg) no-repeat center/contain;
  width: 113px;
  height: auto;
  aspect-ratio: 113/161;
  position: absolute;
  top: -160px;
  right: 40px;
  z-index: 1;
}

.l-sec02 .l-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2.25rem;
  line-height: 1.5;
  margin: 0 auto 50px;
  padding-left: 35px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.l-sec02 .l-ttl::before {
  content: "";
  background: url(../images/sec02_ttl_deco.svg) no-repeat center/contain;
  width: 24px;
  height: 32px;
  position: absolute;
  top: 14px;
  left: 0;
}

.l-sec02 .l-ttl::after {
  content: "";
  background-image: linear-gradient(to right, var(--color_primary), var(--color_primary) 2px, transparent 2px, transparent 5px);
  background-size: 5px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.l-sec02 .l-sec02-top {
  background-color: var(--color_white);
  width: calc(100% - 230px);
  height: 116px;
  position: absolute;
  top: -115px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.l-sec02 .l-sec02-top::before {
  content: "";
  background-color: var(--color_white);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 116px;
  height: 116px;
  position: absolute;
  top: 0;
  left: -115px;
  z-index: 1;
}

.l-sec02 .l-sec02-top::after {
  content: "";
  background-color: var(--color_white);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  width: 116px;
  height: 116px;
  position: absolute;
  top: 0;
  right: -115px;
}

.sec02-link {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 19px;
}

.sec02-link>li:nth-child(2n) {
  margin-top: 40px;
}

.sec02-link .link-img {
  border-radius: 20px;
  overflow: hidden;
}

.sec02-link .link-img img {
  transition: scale 0.3s;
  border-radius: 20px;
  width: 100%;
  transition: scale 0.3s;
}

.sec02-link .link-desc {
  background-color: var(--color_primary);
  margin: -46px 8px 0 auto;
  padding: 11px 19px 20px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transition: background-color 0.3s;
}

.sec02-link .desc-top {
  background-color: var(--color_primary);
  width: calc(100% - 30px);
  height: 16px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  transition: background-color 0.3s;
}

.sec02-link .desc-top::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: -15px;
  transition: background-color 0.3s;
}

.sec02-link .desc-top::after {
  content: "";
  background-color: var(--color_primary);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: -15px;
  transition: background-color 0.3s;
}

.sec02-link .link-txt {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: clamp(1.125rem, 1.3vw, 1.5rem);
  padding-right: 25px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transition: color 0.3s;
}

.sec02-link .link-txt::after {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/link-arrow.svg) no-repeat center/contain;
  mask: url(../images/share/link-arrow.svg) no-repeat center/contain;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 0.5em;
  right: 0;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .sec02-link a:hover .link-img img {
    scale: 1.1;
  }

  .sec02-link a:hover .link-desc {
    background-color: var(--color_white);
    box-shadow: 4px 4px 4px rgba(67, 67, 67, 0.1);
  }

  .sec02-link a:hover .desc-top {
    background-color: var(--color_white);
  }

  .sec02-link a:hover .desc-top::before, .sec02-link a:hover .desc-top::after {
    background-color: var(--color_white);
  }

  .sec02-link a:hover .link-txt {
    color: var(--color_primary);
  }

  .sec02-link a:hover .link-txt::after {
    background-color: var(--color_primary);
  }
}

@media (max-width: 1320px) {
  .sec02-link {
    grid-template-columns: repeat(3, 1fr);
  }

  .sec02-link>li:nth-child(3n),
  .sec02-link>li:nth-child(3n + 1) {
    margin-top: 40px;
  }

  .sec02-link>li:nth-child(3n + 2) {
    margin-top: 0;
  }
}

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

  .sec02-ttl {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 63px;
  }

  .sec02-ttl .txt {
    font-size: 1.125rem;
  }

  .sec02-ttl::before {
    content: none;
  }

  .l-sec02-container {
    padding-top: 28px;
  }

  .l-sec02-container::before {
    left: auto;
    right: -5%;
  }

  .l-sec02 {
    padding: 31px 43px 77px;
  }

  .l-sec02::before {
    width: 62px;
    top: -82px;
    left: 24px;
  }

  .l-sec02::after {
    width: 70px;
    top: auto;
    bottom: -48px;
    right: 7px;
  }

  .l-sec02 .l-sec02-top {
    width: calc(100% - 56px);
    height: 28px;
    top: -28px;
  }

  .l-sec02 .l-sec02-top::before {
    width: 29px;
    height: 29px;
    left: -28px;
  }

  .l-sec02 .l-sec02-top::after {
    width: 29px;
    height: 29px;
    right: -28px;
  }

  .l-sec02 .l-ttl {
    font-size: 2rem;
    text-align: center;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 2px;
    text-underline-offset: 12px;
    margin: 0 auto 40px;
    padding: 31px 0 0;
  }

  .l-sec02 .l-ttl::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .l-sec02 .l-ttl::after {
    content: none;
  }

  .sec02-link {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 28px;
  }

  .sec02-link>li:nth-child(3n), .sec02-link>li:nth-child(3n + 1) {
    margin: 0;
  }

  .sec02-link .link-desc {
    margin: -39px -8px 0 auto;
    padding: 11px 34px 20px;
  }

  .sec02-link .link-txt {
    font-size: 1rem;
  }
}

.sec03 {
  padding: 247px 0 146px;
}

.l-sec03 {
  display: flex;
  margin: 0 6% 0 0;
}

.l-sec03 .l-img {
  width: 47%;
  z-index: 1;
}

.l-sec03 .l-img img {
  border-radius: 0 30px 30px 0;
}

.l-sec03 .l-desc {
  flex: 1;
  background-color: var(--color_white);
  margin: 0 0 0 -20%;
  padding: 15px 107px 120px;
  position: relative;
}

.l-sec03 .l-desc::before {
  content: "";
  background: url(../images/sec03_deco01.svg) no-repeat center/contain;
  width: 127px;
  height: auto;
  aspect-ratio: 127/121;
  position: absolute;
  bottom: -10px;
  left: 43px;
  z-index: 1;
}

.l-sec03 .l-desc-top {
  background-color: var(--color_white);
  width: calc(100% - 186px);
  height: 94px;
  position: absolute;
  top: -93px;
  left: 50%;
  transform: translateX(-50%);
}

.l-sec03 .l-desc-top::before {
  content: "";
  background-color: var(--color_white);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 94px;
  height: 94px;
  position: absolute;
  top: 0;
  left: -93px;
}

.l-sec03 .l-desc-top::after {
  content: "";
  background-color: var(--color_white);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  width: 94px;
  height: 94px;
  position: absolute;
  top: 0;
  right: -93px;
}

.l-sec03 .l-inner {
  max-width: 680px;
  margin: 0 0 0 auto;
}

.l-sec03 .t-h2 {
  margin-bottom: 40px;
}

.l-sec03 .l-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 35px;
}

.l-sec03 .txt {
  margin-bottom: 28px;
}

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

.sec03-card>li {
  padding-top: 14px;
  position: relative;
}

.sec03-card>li:nth-child(1) .num {
  padding: 0 0 0 2px;
}

.sec03-card .num {
  color: #4AB0D9;
  font-family: var(--font_en);
  font-size: 1.875rem;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 10px;
}

.sec03-card .num::before {
  content: "";
  background: url(../images/sec03_num_circle.svg) no-repeat center/contain;
  width: 92px;
  height: auto;
  aspect-ratio: 61/62;
  position: absolute;
  top: -31px;
  left: -25px;
}

.sec03-card .card-inner {
  background-color: #FFF8E5;
  border-radius: 40px 0 0 0;
  padding: 30px 30px 25px;
}

.sec03-card .card-ttl {
  color: var(--color_primary);
  font-size: 1.25rem;
  margin-bottom: 5px;
}

@media (max-width: 1650px) {
  .l-sec03 .l-img {
    width: 38%;
  }
}

@media (max-width: 1400px) {
  .l-sec03 .l-img {
    width: 32%;
  }
}

@media (max-width: 1300px) {
  .l-sec03 {
    margin: 0 5%;
  }

  .l-sec03 .l-img {
    display: none;
  }

  .l-sec03 .l-desc {
    margin: 0 0 -80px 0;
    padding: 15px 5% 120px;
  }

  .l-sec03 .l-inner {
    max-width: none;
  }

  .l-sec03 .l-desc::before {
    width: 85px;
  }

  .l-sec03 .t-h2 [lang=en] {
    font-size: clamp(2.8125rem, 3.9vw, 4.375rem);
  }
}

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

  .l-sec03 {
    flex-direction: column-reverse;
    margin: 0;
  }

  .l-sec03 .l-img {
    display: block;
    width: 90%;
    margin: 0 5%;
  }

  .l-sec03 .l-img img {
    border-radius: 0 0 30px 30px;
  }

  .l-sec03 .l-desc {
    margin: 0 0 -30% 0;
    padding: 15px 30px calc(30% + 50px);
  }

  .l-sec03 .l-desc::before {
    bottom: auto;
    top: -73px;
    left: auto;
    right: 5%;
  }

  .l-sec03 .l-desc-top {
    width: calc(100% - 56px);
    height: 28px;
    top: -28px;
  }

  .l-sec03 .l-desc-top::before {
    width: 29px;
    height: 29px;
    left: -28px;
  }

  .l-sec03 .l-desc-top::after {
    width: 29px;
    height: 29px;
    right: -28px;
  }

  .l-sec03 .l-ttl {
    font-size: 1.375rem;
    margin-bottom: 25px;
  }

  .sec03-card {
    grid-template-columns: 1fr;
  }

  .sec03-card .num {
    font-size: 1.5rem;
  }

  .sec03-card .num::before {
    width: 70px;
    top: -23px;
    left: -18px;
  }

  .sec03-card .card-inner {
    padding: 30px 5% 25px;
  }
}

.sec04 {
  background-color: #F6F6F5;
  padding: 0 0 40px;
}

.sec04-img {
  position: relative;
}

.sec04-img::before {
  content: "";
  background: url(../images/sec04_top.png) no-repeat center/contain;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/88;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.sec04-img::after {
  content: "";
  background: url(../images/sec04_bottom.png) no-repeat center/contain;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/88;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.sec04-box {
  background-color: var(--color_white);
  border-radius: 70px;
  display: flex;
  gap: 105px;
  margin: -203px 0 0;
  padding: 70px 88px 80px;
  position: relative;
}

.sec04-box::before {
  content: "";
  background: url(../images/sec04_deco01.png) no-repeat center/contain;
  width: 182px;
  height: auto;
  aspect-ratio: 182/149;
  position: absolute;
  top: -74px;
  left: 58px;
}

.sec04-box .l-desc {
  max-width: 486px;
}

.sec04-box .t-h2 {
  flex-direction: column;
  padding: 10px 0 0;
}

.sec04-box .l-ttl {
  color: var(--color_primary);
  font-size: 2rem;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .sec04-box {
    flex-direction: column;
    gap: 50px;
    padding: 50px 40px 60px;
  }
}

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

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

  .sec04-box {
    gap: 33px;
    border-radius: 50px;
    margin: -113px 0 0;
    padding: 50px 30px 70px;
  }

  .sec04-box::before {
    width: 127px;
    top: auto;
    left: auto;
    bottom: -30px;
    right: -13px;
  }

  .sec04-box .l-ttl {
    font-size: 1.375rem;
  }
}

.sec05 {
  background-color: #F6F6F5;
  padding: 128px 0 0;
}

.l-sec05 {
  padding-top: 65px;
}

.l-sec05 .t-h2 {
  margin: -44px 0 78px;
}

.l-sec05 .sec05-ttl-wrap {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 20px;
  margin-bottom: 35px;
}

.l-sec05 .l-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.5;
}

.sec05-inner {
  background-color: var(--color_white);
  border-radius: 70px;
  padding: 10px 0 99px;
  position: relative;
}

.sec05-inner::before {
  content: "";
  background: url(../images/sec05_deco01.png) no-repeat center/contain;
  width: 246px;
  height: auto;
  aspect-ratio: 246/104;
  position: absolute;
  top: -65px;
  right: -27px;
}

.sec05-card {
  display: grid;
  gap: 38px;
}

.sec05-card .item {
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 34px;
  border-radius: 20px;
  padding: 45px 50px 45px 25px;
  background-color: #FFF8E5;
}

.sec05-card .item-img {
  margin: -65px 0 0 0;
}

.sec05-card .l-label {
  background-color: var(--color_white);
  border-radius: 14px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 13px;
  padding: 3px 10px 3px 33px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.sec05-card .l-label::before {
  content: "";
  background: url(../images/sec05_card_label_deco.svg) no-repeat center/contain;
  width: 16px;
  height: 22px;
  position: absolute;
  top: 0;
  left: 10px;
}

.sec05-card .item-ttl {
  color: var(--color_primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

  .l-sec05 .t-h2 {
    margin: -32px 0 40px;
  }

  .l-sec05 .sec05-ttl-wrap {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .l-sec05 .l-ttl {
    font-size: 1.375rem;
  }

  .sec05-inner {
    border-radius: 30px;
    padding: 10px 0 40px;
  }

  .sec05-inner::before {
    width: 172px;
    top: auto;
    bottom: -31px;
    right: -9px;
  }

  .sec05-card {
    gap: 50px;
    padding: 22px 0 0 0;
  }

  .sec05-card .item {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
  }

  .sec05-card .item-img {
    margin: -20px auto 0 auto;
  }

  .sec05-card .item-ttl {
    font-size: 1.25rem;
  }
}

.sec06 {
  background-color: #F6F6F5;
  padding: 230px 0 114px;
}

.l-sec06 {
  display: flex;
  flex-direction: row-reverse;
  gap: 52px;
  position: relative;
  background-color: var(--color_white);
  z-index: 0;
}

.l-sec06::before {
  content: "";
  background: url(../images/sec06_deco01.svg) no-repeat center/contain;
  width: 186px;
  height: auto;
  aspect-ratio: 186/54;
  position: absolute;
  bottom: 53px;
  left: 88px;
  z-index: 0;
}

.l-sec06 .l-sec06-top {
  background-color: var(--color_white);
  width: calc(100% - 186px);
  height: 93px;
  position: absolute;
  top: -93px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.l-sec06 .l-sec06-top::before {
  content: "";
  background-color: var(--color_white);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 93px;
  height: 93px;
  position: absolute;
  top: 0;
  left: -93px;
  z-index: 1;
}

.l-sec06 .l-sec06-top::after {
  content: "";
  background-color: var(--color_white);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  width: 93px;
  height: 93px;
  position: absolute;
  top: 0;
  right: -93px;
  z-index: 1;
}

.l-sec06 .l-img {
  width: 45.6%;
  margin: -150px -34px 0 0;
}

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

.l-sec06 .l-inner {
  max-width: 483px;
  margin: 0 0 0 auto;
}

.l-sec06 .t-h2 {
  flex-direction: column;
  position: absolute;
  top: -125px;
  left: 88px;
}

.l-sec06 .l-ttl {
  color: var(--color_primary);
  font-size: 2rem;
  margin: 50px 0 35px;
}

@media (max-width: 1200px) {
  .l-sec06::before {
    bottom: -20px;
    left: 5%;
  }
}

@media (max-width: 1024px) {
  .l-sec06 {
    flex-direction: column-reverse;
  }

  .l-sec06::before {
    bottom: 15px;
    left: auto;
    right: 24px;
  }

  .l-sec06 .l-img {
    width: 100%;
    margin: 0;
  }

  .l-sec06 .l-img img {
    width: max(45%, 450px);
  }

  .l-sec06 .l-inner {
    max-width: 100%;
    margin: 0 5%;
  }
}

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

  .l-sec06 .l-sec06-top {
    width: calc(100% - 56px);
    height: 28px;
    top: -28px;
  }

  .l-sec06 .l-sec06-top::before {
    width: 29px;
    height: 29px;
    left: -28px;
  }

  .l-sec06 .l-sec06-top::after {
    width: 29px;
    height: 29px;
    right: -28px;
  }

  .l-sec06 .l-img {
    width: 90%;
    margin: 0 5%;
  }

  .l-sec06 .t-h2 {
    top: -56px;
    left: 3%;
  }

  .l-sec06 .t-h2 [lang=en] {
    font-size: clamp(2.5rem, 12.5vw, 3.125rem);
  }

  .l-sec06 .l-ttl {
    font-size: 1.375rem;
    margin: 70px 0 35px;
  }
}

.sec07 {
  background-color: #F6F6F5;
  overflow: hidden;
  padding: 100px 0 296px;
  position: relative;
}

.sec07::before {
  content: "";
  background: url(../images/sec07_deco01.png) no-repeat center/contain;
  width: 230px;
  height: auto;
  aspect-ratio: 230/71;
  position: absolute;
  bottom: 19%;
  right: 9%;
}

.sec07::after {
  content: "";
  background: url(../images/sec07_bottom.png) no-repeat center/contain;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/88;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sec07-ttl {
  display: grid;
  grid-template-columns: 1fr 50%;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 68px;
  position: relative;
  z-index: 0;
}

.sec07-ttl .l-ttl {
  color: var(--color_primary);
  font-size: 2rem;
  margin-bottom: 30px;
}

.sec07-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.sec07-card .item {
  background-color: var(--color_white);
  border-radius: 70px;
  padding: 60px 30px 70px 50px;
}

.sec07-card .item-ttl {
  font-size: 1.5rem;
  margin-bottom: 25px;
  padding-left: 17px;
  position: relative;
}

.sec07-card .item-ttl::before {
  content: "";
  background-color: var(--color_secondary);
  border-radius: 50%;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 19px;
  left: 0;
}

.sec07-card .item-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--font_jp);
  font-size: 2.5rem;
  line-height: 1.5;
}

.sec07-card .item-num .num {
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 4.375rem;
  font-weight: bold;
}

.sec07-card .item-num .unit {
  color: var(--color_secondary);
}

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

.list-disc li {
  list-style: disc;
  margin-left: 1.5em;
  font-family: var(--font_jp);
  font-size: 1.3125rem;
  line-height: 1.5;
}

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

@media (max-width: 1024px) {
  .sec07-ttl {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 45px;
  }
}

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

  .sec07::before {
    width: 160px;
    bottom: 6%;
  }

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

  .sec07-ttl .txt {
    font-size: 1.125rem;
  }

  .sec07-card {
    gap: 20px;
  }

  .sec07-card .item {
    border-radius: 30px;
    padding: 40px 30px;
  }

  .sec07-card .item-ttl {
    margin-bottom: 15px;
  }

  .sec07-card .item-num {
    line-height: 1;
  }
}

.sec08 {
  padding: 141px 0 137px;
  position: relative;
  z-index: 0;
}

.sec08::before {
  content: "";
  background: url(../images/sec08_bg.png) no-repeat center/contain;
  width: 86%;
  height: auto;
  aspect-ratio: 1545/672;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.sec08-ttl {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 20px;
  margin-bottom: 68px;
  position: relative;
  z-index: 0;
}

.sec08-ttl .t-h2 {
  flex-direction: column;
}

.sec08-ttl .l-ttl {
  color: var(--color_primary);
  font-size: 2rem;
  margin-bottom: 30px;
}

.sec08-slider-wrap {
  overflow: hidden;
  width: min(90%, 100% - (100% - 1200px) / 2);
  margin: 0 0 0 auto;
}

.sec08-slider .splide {
  position: relative;
  padding: 0 90px 90px 0;
}

.sec08-slider .splide__track {
  overflow: visible;
}

.sec08-slider .splide__progress {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: calc(100% - 160px);
  overflow: hidden;
}

.sec08-slider .splide__progress__bar {
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s;
  will-change: transform;
}

.sec08-slider .splide__arrows {
  position: absolute;
  right: 20px;
  bottom: 0;
  display: flex;
  gap: 10px;
}

.sec08-slider .splide__arrow {
  display: grid;
  place-content: center;
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.sec08-slider .splide__arrow svg {
  display: none;
}

.sec08-slider .splide__arrow::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
  mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
  width: 13px;
  height: 10px;
}

.sec08-slider .splide__arrow--prev::before {
  rotate: 90deg;
}

.sec08-slider .splide__arrow--next::before {
  rotate: -90deg;
}

.sec08-card .card-img {
  margin-bottom: 23px;
}

.sec08-card .card-img img {
  border-radius: 20px;
}

.sec08-card .card-time {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.sec08-card .card-time .time {
  background-color: var(--color_white);
  border-radius: 21px;
  padding: 3px 14px;
}

@media (max-width: 1024px) {
  .sec08-ttl {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 45px;
  }
}

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

  .sec08::before {
    background: #FFF8E5;
    border-radius: 30px;
    width: 158px;
    height: auto;
    aspect-ratio: 158/152;
    position: absolute;
    top: 270px;
    left: auto;
    transform: none;
    right: 5%;
  }

  .sec08::after {
    content: "";
    background: #FBE8B7;
    border-radius: 30px;
    width: 158px;
    height: auto;
    aspect-ratio: 158/152;
    position: absolute;
    bottom: 241px;
    left: 10px;
    z-index: -1;
  }

  .sec08-ttl .l-ttl {
    font-size: 1.375rem;
  }

  .sec08-ttl .txt {
    font-size: 1.125rem;
  }

  .sec08-slider-wrap {
    width: 95%;
  }

  .sec08-slider .splide {
    padding: 0 5% 60px 0;
  }

  .sec08-card .card-time {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}

.sec09 {
  background-color: var(--color_bg02);
  overflow: hidden;
  padding: 230px 0 227px;
  position: relative;
  z-index: 0;
}

.sec09::before {
  content: "";
  background: url(../images/sec09_top.png) no-repeat center center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/88;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.sec09::after {
  content: "";
  background: url(../images/sec09_bottom.png) no-repeat center center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/88;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.sec09-ttl {
  display: grid;
  grid-template-columns: 1fr 50%;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 68px;
  position: relative;
  z-index: 0;
}

.sec09-ttl::before {
  content: "";
  background: url(../images/sec09_deco01.svg) no-repeat center/contain;
  width: 82px;
  height: auto;
  aspect-ratio: 82/84;
  position: absolute;
  top: -30px;
  right: 88px;
  z-index: -1;
}

.sec09-ttl .l-ttl {
  color: var(--color_primary);
  font-size: 2rem;
  margin-bottom: 30px;
}

.sec09-box {
  display: grid;
  grid-template-columns: 162px 1fr;
  gap: 50px;
  background-color: var(--color_white);
  border-radius: 70px;
  padding: 62px 88px 77px 107px;
  position: relative;
}

.sec09-box .l-img {
  margin-bottom: 10px;
}

.sec09-box .l-img img {
  margin-inline: auto;
}

.sec09-box .l-position {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.3125rem;
  text-align: center;
}

.sec09-box+.sec09-box {
  margin-top: 30px;
}

.sec09-box.item01::before {
  content: "";
  background-color: #FFEFC7;
  border-radius: 30px;
  width: 158px;
  height: auto;
  aspect-ratio: 158/152;
  position: absolute;
  top: -50px;
  right: -113px;
  z-index: -1;
}

.sec09-box.item02::before {
  content: "";
  background: url(../images/sec09_deco02.svg) no-repeat center/contain;
  width: 161px;
  height: auto;
  aspect-ratio: 161/122;
  position: absolute;
  top: 25px;
  left: -117px;
  z-index: -1;
}

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

.faq-style dt {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  margin-bottom: 15px;
}

@media (max-width: 1200px) {

  .sec09-ttl::before {
    right: -55px;
  }
}

@media (max-width: 1024px) {
  .sec09-ttl {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 45px;
  }

  .sec09-box {
    padding: 62px 5%;
  }
}

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

  .sec09-ttl::before {
    width: 65px;
    top: 40px;
    right: -20px;
  }

  .sec09-ttl .l-ttl {
    font-size: 1.375rem;
  }

  .sec09-ttl .txt {
    font-size: 1.125rem;
  }

  .sec09-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 30px;
  }
}

.sec10 {
  overflow: hidden;
  padding: 118px 0 238px;
  position: relative;
}

.sec10::before {
  content: "";
  background: url(../images/sec10_bottom.png) no-repeat center center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/88;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.sec10 .t-h2 {
  margin-bottom: 65px;
}

.sec10-card-wrap {
  display: grid;
  gap: 20px;
  position: relative;
}

.sec10-card-wrap::before {
  content: "";
  background: url(../images/sec10_deco01.svg) no-repeat center/contain;
  width: 309px;
  height: auto;
  aspect-ratio: 309/131;
  position: absolute;
  top: -124px;
  right: -159px;
  z-index: -1;
}

.sec10-card {
  background-color: var(--color_white);
  border-radius: 70px;
  padding: 30px 50px;
}

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

  .sec10 .t-h2 {
    margin-bottom: 45px;
  }

  .sec10-card-wrap::before {
    width: 239px;
    top: -75px;
    right: -124px;
  }

  .sec10-card {
    padding: 40px 30px;
  }
}

.sec11 {
  background-color: #F6F6F5;
  overflow: hidden;
  padding: 140px 0 77px;
  position: relative;
  z-index: 0;
}

.sec11::before {
  content: "";
  background: url(../images/sec11_deco01.svg) no-repeat center/contain;
  width: 309px;
  height: auto;
  aspect-ratio: 309/131;
  position: absolute;
  top: 4%;
  right: 4%;
  z-index: -1;
}

.sec11::after {
  content: "";
  background: url(../images/sec11_deco03.svg) no-repeat center/contain;
  width: 309px;
  height: auto;
  aspect-ratio: 309/131;
  position: absolute;
  bottom: 0;
  left: 8%;
  z-index: -1;
}

.sec11-ttl {
  margin-bottom: 95px;
}

.tab-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-bottom: 60px;
}

.tab-list .tab-btn {
  background-color: #EFF1F3;
  border-radius: 41px;
  border: 2px dotted var(--color_primary);
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 22px 72px;
  transition: background-color 0.3s, color 0.3s, border-style 0.3s;
}

.tab-list .tab-btn span {
  position: relative;
  transition: padding 0.3s;
}

.tab-list .tab-btn.active {
  background-color: var(--color_primary);
  color: var(--color_white);
  cursor: default;
  border-style: solid;
}

.tab-list .tab-btn.active span {
  padding-left: 38px;
}

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

@media (any-hover: hover) {
  .tab-list .tab-btn:hover {
    background-color: var(--color_primary);
    color: var(--color_white);
    border-style: solid;
  }
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content-item {
  background-color: var(--color_white);
  border-radius: 70px;
  padding: 75px 0 95px;
  position: relative;
}

.tab-content-item::before {
  content: "";
  background: url(../images/sec11_deco02.svg) no-repeat center/contain;
  width: 304px;
  height: auto;
  aspect-ratio: 304/114;
  position: absolute;
  bottom: -6%;
  right: 0;
}

.sec11-table th,
.sec11-table td {
  background-image: radial-gradient(circle, #B5B5B5 1px, transparent 1px);
  background-position: left bottom;
  background-size: 6px 2px;
  background-repeat: repeat-x;
  padding: 30px 34px;
}

.sec11-table th {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  text-align: left;
  vertical-align: top;
}

.sec11-table td {
  line-height: 2;
}

@media (max-width: 800px) {
  .sec11::before {
    width: 170px;
    top: 2%;
  }

  .sec11::after {
    content: none;
  }

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

  .sec11-ttl {
    margin-bottom: 45px;
  }

  .tab-list {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 35px;
  }

  .tab-list .tab-btn {
    padding: 10px 65px;
    text-align: center;
    width: 100%;
  }

  .tab-content-item {
    border-radius: 30px;
    padding: 40px 0 60px;
  }

  .tab-content-item::before {
    width: 181px;
    bottom: -2%;
  }

  .sec11-table colgroup {
    display: block;
  }

  .sec11-table th,
  .sec11-table td {
    display: block;
    padding: 15px 0;
  }

  .sec11-table th {
    background: none;
    padding: 15px 0 0;
  }
}

.sec12 {
  background-color: #F6F6F5;
  overflow: hidden;
  padding: 60px 0 231px;
  position: relative;
  z-index: 0;
}

.sec12::before {
  content: "";
  background: url(../images/sec12_bottom.png) no-repeat center/contain;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/37;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.sec12::after {
  content: "";
  background: url(../images/sec12_deco.png) no-repeat center/contain;
  width: 309px;
  height: auto;
  aspect-ratio: 309/131;
  position: absolute;
  bottom: 22%;
  right: 4%;
  z-index: -1;
}

.sec12-ttl {
  margin-bottom: 52px;
}

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

  .sec12-ttl {
    margin-bottom: 45px;
  }

  .sec12::after {
    width: 170px;
    bottom: 44px;
  }
}

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

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

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  overflow: hidden;
}

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: #990000;
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.col1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

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

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

@media (max-width: 800px) {

  .col1,
  .col2,
  .col3,
  .col4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

.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-pc-only {
    display: none;
  }

  .br-sp-only {
    display: block;
  }

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

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

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

  .mbXS {
    margin-bottom: 4px;
  }

  .mbS {
    margin-bottom: 8px;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

  .sp-col1 {
    grid-template-columns: 1fr;
  }

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

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

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

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

  .gapXL {
    grid-gap: 64px;
  }
}

/*------------
splide
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

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

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

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

.splide__pagination li {
  display: flex;
  align-items: center;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

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

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

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

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow--prev,
.splide__arrow--next {
  display: block;
  width: 30px;
  height: 30px;
}

.splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
}

.splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
}

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

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

.splide__arrow--prev {
  left: 1em;
}

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

.splide__arrow--next {
  right: 1em;
}

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

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 6rem;
}

@media (max-width: 800px) {
  .splide__controls {
    margin-top: 3rem;
  }
}

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: #D0D0C9;
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #707070;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

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

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

.splide__progress {
  background-color: #EAEAEA;
  height: 3px;
}

.splide__progress__bar {
  background: var(--color_primary);
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

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

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


.page-header {
  background: url(../images/under/page-ttl-bg.jpg) no-repeat center/cover;
  height: 654px;
  overflow: hidden;
  padding: 275px 5% 285px;
  position: relative;
}

.page-header::before {
  content: "";
  background: url(../images/share/h_logo_bg.png) no-repeat center center / cover;
  width: 713px;
  height: auto;
  aspect-ratio: 713 / 196;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-header::after {
  content: "";
  background: url(../images/under/page-ttl-bottom.png) no-repeat center/contain;
  width: 100%;
  height: auto;
  aspect-ratio: 1800/208;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.page-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2.8125rem;
  text-align: center;
  text-shadow: 1px 1px 2px var(--color_white), -1px 1px 2px var(--color_white), 1px -1px 2px var(--color_white), -1px -1px 2px var(--color_white);
}

@media (max-width: 800px) {
  .page-header {
    height: auto;
    padding: 125px 5% 70px;
  }

  .page-header::before {
    width: 410px;
    top: -20px;
  }

  .page-ttl {
    font-size: 1.625rem;
  }
}

/* 確認・完了・エラー画面の背景色 */
.page-under {
  background-color: #F6F6F5;
}

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

@media (max-width: 800px) {
  .u-contents {
    padding: 60px 0 100px;
  }
}

.btn-more {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 5px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 21px 83px 21px 40px;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-more::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/btn-arrow.svg) no-repeat center / contain;
  mask: url(../images/share/btn-arrow.svg) no-repeat center / contain;
  width: 19px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 44px;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

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

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

.page-under .l-btn {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 800px) {
  .btn-more {
    font-size: 1rem;
    padding: 16px 60px 16px 32px;
  }

  .btn-more::before {
    width: 13px;
    height: 7px;
    right: 30px;
  }
}
