@charset "UTF-8";
:root {
  --color_primary: #E575A4;
  --color_secondary: #6CD4DE;
  --color_tertiary: #EFB5CD;
  --font_base: "Shippori Mincho", serif;
  --font_size_base: 1.6rem;
  --font_jp: "Shippori Mincho", serif;
  --font_en: "Cormorant", serif;
  --font_en_sub: "Oooh Baby", cursive;
  --color_text: #4B3A45;
  --color_link: blue;
  --color_bg: #4B3A45;
  --color_gradient: linear-gradient(90deg, #6CD4DE 0%, #E575A4 100%);
  --shadow_white:
    0px 0px 10px #fff,
    0px 0px 10px #fff,
    0px 0px 10px #fff,
    0px 0px 10px #fff,
    0px 0px 10px #fff,
    0px 0px 10px #fff;
}

.gradient-text {
  background: var(--color_gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

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

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

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

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

:where(button) {
  all: unset;
}

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
/*------------
Body
--------------*/
img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

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

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}
body,
html {
  min-height: 100svh;
}

body {
  font-family: var(--font_base);
  font-weight: 400;
  font-size: var(--font_size_base);
  color: var(--color_text);
  line-height: 2;
  letter-spacing: 0.2em;
  overflow-x: clip;
  overflow-y: visible;
  background: -webkit-gradient(linear, left top, right top, from(#FEF2F7), to(#E5FAFC));
  background: linear-gradient(90deg, #FEF2F7 0%, #E5FAFC 100%);
  padding-right: 100px;
}

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

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

@media (any-hover: hover) {
  .link:hover {
    text-decoration: none;
  }
}
.link[target=_blank]::after {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  margin-left: 5px;
}

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  /*-------------
  Body
  -------------*/
  body {
    font-size: 1.5rem;
    padding-right: 0;
  }
}
/*------------
Common
--------------*/
.btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font_jp);
  font-size: 2.6rem;
  color: #fff;
  line-height: 1.3;
  padding: 11px 15px;
  background: var(--color_gradient);
  min-width: 280px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-icon img {
  margin-right: 12px;
}

@media (any-hover: hover) {
  .btn-icon:hover {
    opacity: 0.8;
  }
}
.btn-icon:focus-visible {
  opacity: 0.8;
}

.btn-more {
  display: inline-block;
  padding: 0 57px 10px 0;
  position: relative;
  font-family: var(--font_jp);
  border-bottom: 1px solid var(--color_primary);
  letter-spacing: 0.15em;
}

.btn-more::before {
  content: "";
  background: var(--color_primary);
  width: 23px;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-more::after {
  content: "";
  background: var(--color_primary);
  width: 5px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 23px;
}

@media (any-hover: hover) {
  .btn-more:hover::before {
    width: 0;
  }
}
.btn-more:focus-visible::before {
  width: 0;
}

.btn-tel {
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.btn-tel::before {
  content: "";
  background: url(../images/share/icon_tel_pink.svg) no-repeat center/contain;
  width: 28px;
  height: 35px;
  display: inline-block;
}

@media (max-width: 800px) {
  .btn-icon {
    min-width: 0;
    width: 100%;
    max-width: 245px;
    margin-inline: auto;
    font-size: 2.2rem;
  }
  .btn-tel {
    font-size: 2.5rem;
    gap: 10px;
  }
  .btn-tel::before {
    width: 20px;
    height: 25px;
  }
}
.time-table {
  background: #fff;
  text-align: center;
  border: 1px solid #DFDFDF;
  letter-spacing: 0.05em;
}

.time-table-head,
.time-table-body {
  display: grid;
  grid-template-columns: 130px repeat(7, 1fr);
}

.time-table-head {
  background-color: var(--color_primary);
  color: #fff;
}

.time-table-head > .item {
  padding: 7px 0;
}

.time-table-body > .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 0;
  color: var(--color_primary);
}

.time-table-body > .item:first-of-type {
  border-right: 1px solid #DFDFDF;
  color: var(--color_text);
  background: #FEF2F7;
}

.time-table-body > .item.event {
  color: var(--color_text);
}

.time-table-body + .time-table-body {
  border-top: 1px solid #DFDFDF;
}

@media (max-width: 800px) {
  .time-table {
    font-size: 1.2rem;
  }
  .time-table-head,
  .time-table-body {
    grid-template-columns: 80px repeat(7, 1fr);
  }
  .time-table-head > .item {
    padding: 10px 0;
  }
  .time-table-body > .item {
    padding: 10px 0;
    line-height: 1.3;
  }
}
/*------------
Header
--------------*/
.h-logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
}

.fixed-menu {
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 5;
}

.fixed-menu .item a {
  display: grid;
  place-content: center;
  width: 100px;
  height: auto;
  aspect-ratio: 1;
  background: #ED96BB;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.fixed-menu .item.bg01 a {
  background: #EFB5CD;
}

@media (any-hover: hover) {
  .fixed-menu .item a:hover {
    opacity: 0.8;
  }
}
.fixed-menu .item a:focus-visible {
  opacity: 0.8;
}

.fixed-menu img {
  margin: 0 auto 5px;
}

.fixed-menu .txt {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  .h-logo {
    top: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 260px;
  }
  .fixed-menu {
    display: none;
  }
}
/*------------
G-navi
--------------*/
/* ボタン */
.navi-menu-btn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color_primary);
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 999;
}

.navi-menu-btn .hamburger-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-bottom: 60px;
  width: 30px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navi-menu-btn .hamburger-line::before,
.navi-menu-btn .hamburger-line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navi-menu-btn .hamburger-line::before {
  top: -12px;
}

.navi-menu-btn .hamburger-line::after {
  top: 12px;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line {
  background-color: transparent;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::before,
.navi-menu-btn[aria-expanded=true] .hamburger-line::after {
  top: 0;
  background: #fff;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navi-menu-btn .u-visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

.navi-menu-btn .hamburger-ttl {
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 23px;
}

/* 中身 */
.g-navi-contents {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 150px 0;
  position: fixed;
  inset: 0;
  -webkit-transition: opacity 0.5s, display 0.5s;
  transition: opacity 0.5s, display 0.5s;
  transition-behavior: allow-discrete;
  z-index: 998;
  opacity: 0;
}

.g-navi-contents.is-open {
  display: block;
  pointer-events: auto;
  visibility: visible;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  opacity: 1;
}

@starting-style {
  .g-navi-contents.is-open {
    opacity: 0;
  }
}
/* レイアウト等 */
.g-navi-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1024px;
  width: 90%;
  margin-inline: auto;
}

.g-navi-layout > .l-item:nth-of-type(1) {
  width: 47.85%;
}

.text-access {
  font-size: 2rem;
  letter-spacing: 0.05em;
  padding-left: 36px;
  position: relative;
}

.text-access::before {
  content: "";
  background: url(../images/share/icon_access.svg) no-repeat center/contain;
  width: 27px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}

.g-navi-list li + li {
  margin-top: 5px;
}

.g-navi-list li a {
  display: inline-block;
  padding-left: 16px;
  position: relative;
  letter-spacing: 0.14em;
  line-height: 1.8;
}

.g-navi-list li a::before {
  content: "";
  background: var(--color_primary);
  width: 6px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}

@media (any-hover: hover) {
  .g-navi-list li a:hover {
    color: var(--color_primary);
  }
}
.g-navi-list li a:focus-visible {
  color: var(--color_primary);
}

.nav-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 50px;
}

.nav-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.navi-txt {
  text-align: center;
}

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

body.is-hidden {
  display: flow-root;
  overflow: clip;
}

@media (max-width: 800px) {
  /*-----------------------------------------------------------
  g-navi SP
  -----------------------------------------------------------*/
  /* ボタン */
  .navi-menu-btn {
    width: 50px;
    height: 50px;
  }
  .navi-menu-btn .hamburger-line {
    width: 25px;
  }
  .navi-menu-btn .hamburger-line::before {
    top: -8px;
  }
  .navi-menu-btn .hamburger-line::after {
    top: 8px;
  }
  /* 中身 */
  .g-navi-contents {
    padding: 0 0 100px;
  }
  /* レイアウト等 */
  .g-navi-layout {
    display: block;
  }
  .g-navi-layout > .l-item + .l-item {
    margin: 50px 0 0;
  }
  .g-navi-layout .l-item:nth-of-type(1) {
    width: 100%;
  }
  .nav-logo {
    width: 260px;
    margin-inline: auto;
  }
  .text-access {
    font-size: 1.5rem;
    padding-left: 25px;
  }
  .text-access::before {
    width: 20px;
    height: 25px;
    top: 2px;
  }
  .nav-btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .pc-navi {
    display: none;
  }
  .sp-navi {
    display: block;
  }
  :root {
    --navi-background: #E575A4;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --humberger: #fff;
    --navi-font: "Shippori Mincho", serif;
  }
  /* ボタン類 */
  .sp-navi-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--navi-background);
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 10000;
  }
  .sp-navi-btns div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
  }
  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    font-size: 1rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }
  .sp-navi-btns .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 10px 0;
  }
  .sp-navi-btns .item .img {
    display: block;
  }
  .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 8px;
    stroke: var(--svg-stroke);
  }
  .sp-navi-btns .item .ttl {
    display: block;
  }
  .sp-menu-btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 10px;
  }
  .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-family: var(--navi-font);
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }
  .sp-menu-btn span:not(.ttl) {
    background: var(--humberger);
    position: absolute;
    left: 50%;
    width: 22px;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(1) {
    top: 20px;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(2) {
    top: 26px;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(3) {
    top: 32px;
  }
  .sp-menu-btn.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 6px) rotate(-45deg);
    transform: translate(-50%, 6px) rotate(-45deg);
  }
  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .sp-menu-btn.is-open span:nth-of-type(3) {
    -webkit-transform: translate(-50%, -6px) rotate(45deg);
    transform: translate(-50%, -6px) rotate(45deg);
  }
  /* コンテンツ */
  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 50px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }
  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }
  .sp-navi-list {
    border-top: 1px solid #d6d6d6;
    margin: 0 0 30px;
  }
  .sp-navi-list > li {
    border-bottom: 1px solid #d6d6d6;
  }
  .sp-navi-list > li > a {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }
  .sp-navi-list > li.sp-dropdown {
    position: relative;
  }
  .sp-navi-list > li.sp-dropdown::before,
  .sp-navi-list > li.sp-dropdown::after {
    content: "";
    background-color: #333;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .sp-navi-list > li.sp-dropdown::before {
    width: 1px;
    height: 11px;
    top: 17px;
    right: 20px;
  }
  .sp-navi-list > li.sp-dropdown::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }
  .sp-navi-list > li.sp-dropdown.is-on::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .sp-navi-list > li.sp-dropdown > a {
    padding: 15px 0;
    width: 85%;
  }
  .sp-navi-list .child {
    padding: 0 0 15px;
  }
  .sp-navi-list .child > ul > li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
  }
  .sp-navi-list .child > ul > li::before {
    content: "-";
    color: #333;
    position: absolute;
    left: 0;
    top: 0;
  }
  .sp-navi-list .child > ul > li > a {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
  }
  .sp-navi-other .item + .item {
    margin: 15px 0 0;
  }
}
/*------------
Hero
--------------*/
.hero {
  max-width: 1800px;
  width: 100%;
  margin: 130px auto 0;
  position: relative;
}

.hero-img {
  width: 57.22%;
  margin-left: 3.5%;
}

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

.hero-desc {
  position: absolute;
  right: 8.33%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.hero-desc .desc-img {
  position: absolute;
  top: -41.79%;
  left: 0;
  z-index: -1;
  width: 32.78vw;
}

.hero-catch {
  font-family: var(--font_jp);
  line-height: 1.85;
}

.hero-catch .txt-main {
  font-size: clamp(2.3rem, 3vw, 5.4rem);
  text-shadow: var(--shadow_white);
  letter-spacing: 0.26em;
}

.hero-catch .txt-sub {
  font-size: clamp(1.3rem, 1.78vw, 3.2rem);
  text-shadow: var(--shadow_white);
  margin-top: 15px;
  letter-spacing: 0.22em;
}

.hero-catch .txt-en {
  position: absolute;
  top: 82%;
  left: 5px;
  z-index: -1;
  font-size: clamp(7rem, 8.94vw, 16.1rem);
  line-height: 1.2;
  font-family: var(--font_en);
  opacity: 0.3;
  letter-spacing: 0.1em;
}

@media (max-width: 800px) {
  .hero {
    margin: 80px auto 140px;
  }
  .hero-img {
    width: 90%;
    margin: 0 auto;
  }
  .hero-img img {
    height: 320px;
  }
  .hero-desc {
    top: 275px;
    left: 20px;
    right: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .hero-desc .desc-img {
    width: 260px;
    top: -70px;
  }
}
/*------------
Top contents
--------------*/
/* title */
.t-h2 {
  text-align: center;
  max-width: 1800px;
  margin: 0 auto 60px;
}

.t-h2 [lang=en] {
  font-family: var(--font_en);
  font-size: clamp(5rem, 11.67vw, 21rem);
  line-height: 1.2;
  opacity: 0.3;
  letter-spacing: 0.1em;
}

.t-h2 .jp {
  font-size: clamp(2rem, 2.22vw, 4rem);
  line-height: 1.33;
  position: relative;
  margin-top: -5.8%;
  z-index: 2;
  letter-spacing: 0.25em;
}

.t-h2 .jp em {
  font-size: clamp(2.5rem, 3.61vw, 6.5rem);
}

@media (max-width: 800px) {
  .t-h2 {
    margin: 0 auto 40px;
  }
  .t-h2 [lang=en] {
    font-size: 5rem;
  }
  .t-h2 .jp {
    font-size: 2rem;
    margin-top: -20px;
  }
  .t-h2 .jp em {
    font-size: 2.5rem;
  }
}
/* sec01 */
.sec01 {
  padding: 140px 0 270px;
  position: relative;
}

.sec01::after {
  content: "";
  background: url(../images/arrow_down.svg) no-repeat center/contain;
  width: 42%;
  height: auto;
  aspect-ratio: 378/89;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.list-style01 > li {
  font-family: var(--font_jp);
  font-size: clamp(1.5rem, 1.22vw, 2.2rem);
  padding-left: 27px;
  position: relative;
}

.list-style01 > li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  width: 21px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
}

.list-style01.col2 {
  gap: 28px 60px;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 50px 0 70px;
  }
  .sec01::after {
    width: 60%;
    height: 55px;
    aspect-ratio: inherit;
  }
  .list-style01.col2 {
    gap: 15px;
  }
  .list-style01 > li {
    font-size: 1.5rem;
  }
  .list-style01 > li::before {
    height: 10px;
    top: 15px;
  }
}
/* sec02 */
.sec02 {
  padding: 70px 0;
}

.l-style01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 7.11vw;
  max-width: 1800px;
  margin-inline: auto;
  font-size: clmap(1.5rem, 1.11vw, 2rem);
}

@media (max-width: 1300px) {
  .l-style01 {
    margin-right: 5vw;
  }
}
.l-style01 .l-img {
  width: 49.11%;
  position: relative;
}

.l-style01 .img-sub {
  position: absolute;
  bottom: -45px;
  right: -60px;
  z-index: 2;
  width: 33.48%;
}

.l-style01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 150px;
  position: relative;
  z-index: 1;
  max-width: 490px;
}

.l-style01 .l-ttl {
  font-size: clamp(2rem, 2.22vw, 4rem);
  letter-spacing: 0.31em;
  padding-left: 37px;
  position: relative;
  margin-bottom: 40px;
}

.l-style01 .l-ttl::before {
  content: "";
  background: url(../images/ttl_icon.svg) no-repeat center/contain;
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-style01 .l-en {
  font-family: var(--font_en_sub);
  font-size: clamp(10rem, 19.44vw, 35rem);
  line-height: 1;
  position: absolute;
  left: -30px;
  bottom: -140px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  z-index: -1;
  color: oklch(from #ED96BB l c h/0.1);
  white-space: nowrap;
}

@media (max-width: 800px) {
  .l-style01 {
    width: 90%;
    display: block;
    font-size: 1.5rem;
    margin: 0 auto;
  }
  .l-style01 .l-img {
    width: 100%;
    margin: 0 0 50px;
  }
  .l-style01 .img-sub {
    right: -20px;
  }
  .l-style01 .l-desc {
    margin-top: 0;
  }
  .l-style01 .l-ttl {
    font-size: 2rem;
    padding-left: 30px;
    margin-bottom: 30px;
  }
  .l-style01 .l-ttl::before {
    width: 20px;
    height: 20px;
  }
  .l-style01 .l-en {
    font-size: 10rem;
    left: auto;
    right: 0;
    bottom: -60px;
  }
}
/* sec03 */
.sec03 {
  padding: 70px 0;
}

.card-layout01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 95px 100px;
  padding-top: 60px;
  max-width: 1135px;
  margin-left: auto;
}

.card-layout01 .l-item {
  position: relative;
  padding: 35px 15px;
  background: #fff;
  font-size: clamp(1.5rem, 1.11vw, 2rem);
}

.card-layout01 .num {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 10.1rem;
  line-height: 1;
  color: var(--color_primary);
  padding: 20px 0 0 35px;
  position: absolute;
  top: -60px;
  left: -11%;
  z-index: 2;
}

.card-layout01 .num::before {
  content: "";
  background: url(../images/num_en.svg) no-repeat center/contain;
  width: 74px;
  height: 64px;
  position: absolute;
  top: 0;
  left: 0;
}

.card-layout01 .l-ttl {
  font-size: clamp(1.8rem, 2.22vw, 4rem);
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .sec03 {
    padding: 50px 0;
  }
  .card-layout01 {
    grid-template-columns: 1fr;
    gap: 65px 0;
    padding-top: 45px;
  }
  .card-layout01 .l-item {
    padding: 30px 20px;
    font-size: 1.5rem;
  }
  .card-layout01 .num {
    font-size: 5rem;
    top: -45px;
    left: -12px;
    padding: 12px 0 0 20px;
  }
  .card-layout01 .num::before {
    width: 40px;
    height: 40px;
  }
  .card-layout01 .l-ttl {
    font-size: 1.8rem;
  }
}
/* sec-cta */
.sec-cta {
  padding: 70px 0;
}

.cta-layout {
  padding: 50px;
}

.cta-layout .l-inner {
  position: relative;
  background: oklch(from #fff l c h/0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.cta-layout .l-inner::before,
.cta-layout .l-inner::after {
  content: "";
  background: url(../images/box_deco@2x.png) no-repeat center/contain;
  width: 145px;
  height: 145px;
  position: absolute;
  z-index: -1;
}

.cta-layout .l-inner::before {
  top: -50px;
  left: -50px;
}

.cta-layout .l-inner::after {
  right: -50px;
  bottom: -50px;
}

.cta-layout .l-en {
  font-family: var(--font_en_sub);
  font-size: 8rem;
  color: var(--color_primary);
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  right: 75px;
  top: -55px;
  z-index: 2;
}

.cta-layout .l-img {
  width: 59.2%;
  position: relative;
  z-index: 2;
  margin: -60px 0 0 -50px;
}

.cta-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 45px 60px 60px 15px;
}

.cta-layout .l-ttl {
  font-size: clamp(2.5rem, 2.22vw, 4rem);
  text-align: center;
  margin-bottom: 30px;
}

.cta-layout .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 10px;
  margin-bottom: 45px;
}

.cta-layout .time-dl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.time-dl .item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0 10px;
  line-height: 1.8;
}

.time-dl .item + .item {
  margin-top: 4px;
}

.time-dl dt {
  display: grid;
  place-content: center;
  background: var(--color_primary);
  border-radius: 2px;
  padding: 0 5px;
  font-size: 1rem;
  text-align: center;
  color: #fff;
}

.time-dl dd {
  font-size: 1.3rem;
}

@media (max-width: 800px) {
  .sec-cta {
    padding: 50px 0;
  }
  .cta-layout {
    padding: 20px;
  }
  .cta-layout .l-en {
    font-size: 5.9rem;
    right: -10px;
    top: -40px;
  }
  .cta-layout .l-inner {
    padding: 40px 15px 0;
    display: block;
  }
  .cta-layout .l-inner::before,
  .cta-layout .l-inner::after {
    width: 110px;
    height: 110px;
  }
  .cta-layout .l-inner::before {
    top: -20px;
    left: -20px;
  }
  .cta-layout .l-inner::after {
    right: -20px;
    bottom: -20px;
  }
  .cta-layout .l-desc {
    padding: 0;
  }
  .cta-layout .l-ttl {
    font-size: 2.5rem;
  }
  .cta-layout .btn-wrap {
    gap: 15px;
    margin-bottom: 30px;
  }
  .cta-layout .l-img {
    width: 100%;
    position: static;
    margin: 10px 0 0;
  }
}
/* sec05 */
.sec05 {
  padding: 70px 0;
}

.table-style02 {
  font-family: var(--font_jp);
}

.table-style02 th,
.table-style02 td {
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  padding: 20px 15px;
  font-weight: 400;
}

.table-style02 tr:first-of-type th:last-of-type {
  border-right: none;
}

.table-style02 th .table-img {
  display: grid;
  place-content: center;
  height: 200px;
}

.table-style02 td:last-of-type {
  border-right: none;
}

.table-style02 th.bg01,
.table-style02 td.bg01 {
  background: #fff;
}

.table-style02 th.bg02,
.table-style02 td.bg02 {
  background: oklch(from #fff l c h/0.35);
}

@media (max-width: 800px) {
  .sec05 {
    padding: 50px 0;
  }
  .table-style02 {
    white-space: nowrap;
  }
  .table-style02 colgroup {
    display: none;
  }
  .table-style02 .fs22 {
    font-size: 1.5rem;
  }
  .table-style02 .table-img {
    width: 60%;
    margin-inline: auto;
  }
}
/* sec06 */
.sec06 {
  padding: 70px 0;
}

.case-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 60px;
}

.case-layout .l-img {
  width: 51.33%;
}

.case-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 40px;
}

.case-layout .l-btn {
  margin-top: 80px;
  text-align: right;
}

.comparison-block {
  width: 100%;
  max-width: 640px;
  position: relative;
  margin: 0 auto;
}

.comparison-block::-moz-selection {
  background-color: transparent;
}

.comparison-block::selection {
  background-color: transparent;
}

.comparison-block::-moz-selection {
  background-color: transparent;
}

.comparison-block *::-moz-selection {
  background-color: transparent;
}

.comparison-block *::selection {
  background-color: transparent;
}

.comparison-block *::-moz-selection {
  background-color: transparent;
}

.comparison-before-img {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 5;
}

.comparison-before-img img {
  width: 100%;
  max-inline-size: none;
}

.comparison-after-img {
  position: relative;
  z-index: 1;
}

.comparison-after-img img {
  width: 100%;
}

.comparison-label {
  position: absolute;
  top: 15px;
  background-color: #6E6E6E;
  font-family: var(--font_en);
  font-size: 2.5rem;
  color: #fff;
  padding: 0 15px;
  overflow-wrap: break-word;
}

.comparison-label.after {
  background-color: #E575A4;
}

.comparison-before-img .comparison-label {
  left: 15px;
}

.comparison-after-img .comparison-label {
  right: 15px;
}

.comparison-block img {
  pointer-events: none;
}

.comparison-arrow {
  background-color: #fff;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 2px;
  height: 100%;
  left: 50%;
  cursor: pointer;
}

.comparison-arrow:after {
  content: "";
  display: block;
  border-radius: 100vmax;
  width: 55px;
  height: 55px;
  background: #fff url(https://baboon.heteml.net/creative/coding/codepen/images/icon_swipe.svg) no-repeat center/25px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.post-table th {
  min-width: 130px;
}

.post-table th,
.post-table td {
  font-family: var(--font_jp);
  font-weight: 400;
  padding: 14px 20px;
  border-bottom: 1px solid #707070;
}

@media (max-width: 800px) {
  .sec06 {
    padding: 50px 0;
  }
  .case-layout {
    display: block;
  }
  .case-layout .l-img {
    width: 100%;
    margin: 0 0 20px;
  }
  .case-layout .l-btn {
    margin-top: 30px;
    text-align: center;
  }
  .post-table th,
  .post-table td {
    padding: 10px 5px;
  }
  .post-table th {
    width: 25%;
  }
  .comparison-label {
    font-size: 1.5rem;
  }
}
/* sec07 */
.sec07 {
  padding: 70px 0;
}

.l-style02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 60px;
  max-width: 1800px;
  margin-inline: auto;
}

.l-style02 + .l-style02 {
  margin-top: 130px;
}

.l-style02 .l-img {
  width: 46.11%;
  position: relative;
  z-index: 1;
}

.l-style02 .l-img::before {
  content: "";
  background: url(../images/layout02_deco.png) no-repeat center/contain;
  width: 165px;
  height: 165px;
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

.l-style02 .en {
  position: absolute;
  bottom: -55px;
  left: 40px;
  z-index: 2;
  font-family: var(--font_en_sub);
  font-size: clamp(5rem, 8.33vw, 15rem);
  line-height: 1;
  color: oklch(from #ED96BB l c h/0.5);
}

.l-style02 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 650px;
  margin-top: 10%;
  font-size: clamp(1.5rem, 1.11vw, 2rem);
}

@media (max-width: 1450px) {
  .l-style02 .l-desc {
    margin-right: 5vw;
  }
}
.l-style02 .num {
  display: block;
  font-family: var(--font_jp);
  font-size: clamp(3rem, 3.33vw, 6rem);
  color: var(--color_primary);
  line-height: 1;
  letter-spacing: 0.09em;
  margin-bottom: 20px;
}

.l-style02 .num em {
  font-size: clamp(4rem, 4.44vw, 8rem);
  margin-left: 20px;
}

.l-style02 .l-ttl {
  font-size: clamp(2rem, 2.22vw, 4rem);
  letter-spacing: 0.17em;
  padding-left: 37px;
  position: relative;
  margin-bottom: 40px;
}

.l-style02 .l-ttl::before {
  content: "";
  background: url(../images/ttl_icon.svg) no-repeat center/contain;
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-style02 .l-inner {
  max-width: 560px;
}

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

.l-style02.reverse .l-img::before {
  right: auto;
  left: -20px;
}

.l-style02.reverse .en {
  left: auto;
  right: 40px;
}

@media (max-width: 1450px) {
  .l-style02.reverse .l-desc {
    margin-right: auto;
    margin-left: 5vw;
  }
}
@media (max-width: 800px) {
  .sec07 {
    padding: 50px 0;
  }
  .l-style02 {
    display: block;
    width: 90%;
  }
  .l-style02 .l-img {
    width: 100%;
    margin: 0 0 40px;
  }
  .l-style02 .l-img::before {
    width: 100px;
    height: 100px;
    right: -10px;
    bottom: -10px;
  }
  .l-style02.reverse .l-img::before {
    left: -10px;
  }
  .l-style02 .en {
    font-size: 5rem;
    left: 20px;
    bottom: -20px;
  }
  .l-style02.reverse .en {
    right: 20px;
  }
  .l-style02 .l-desc {
    margin: 0 !important;
    font-size: 1.5rem;
  }
  .l-style02 .num {
    font-size: 3rem;
  }
  .l-style02 .num em {
    font-size: 4rem;
  }
  .l-style02 .l-ttl {
    font-size: 2rem;
    padding-left: 30px;
    margin-bottom: 30px;
  }
  .l-style02 .l-ttl::before {
    width: 20px;
    height: 20px;
  }
  .l-style02 + .l-style02 {
    margin-top: 50px;
  }
}
/* sec08 */
.sec08 {
  padding: 140px 0 70px;
}

.sec08 > .container {
  max-width: 1500px;
}

.box-style01 {
  background: oklch(from #fff l c h/0.5);
}

.box-style01 .container {
  position: relative;
  -webkit-transform: translateY(-135px);
  transform: translateY(-135px);
  z-index: 2;
}

.ttl-style01 {
  font-size: clamp(1.8rem, 1.39vw, 2.5rem);
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: oklch(from #A3D0EF l c h/0.3);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.ttl-style01::before {
  content: "";
  background: url(../images/ttl_icon02.svg) no-repeat center/contain;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 800px) {
  .sec08 {
    padding: 50px 0;
  }
  .box-style01 .container {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px);
  }
  .ttl-style01 {
    font-size: 1.8rem;
  }
  .ttl-style01::before {
    top: 16px;
  }
}
/* sec09 */
.sec09 {
  padding: 70px 0;
}

.sec09-catch {
  text-align: center;
  font-size: clamp(2rem, 2.22vw, 4rem);
  line-height: 1.33;
}

.sec09-catch em {
  font-size: clamp(2.5rem, 3.33vw, 6rem);
}

.sec09-catch .marker {
  text-decoration-thickness: 0.4em;
  text-underline-offset: -0.1em;
  text-decoration-color: oklch(from #EFB5CD l c h/0.3);
}

.l-style03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 60px;
  max-width: 1710px;
  width: 95%;
  margin: 150px auto;
  font-size: clamp(1.5rem, 1.11vw, 2rem);
}

.l-style03 .l-img {
  margin-right: 45px;
  position: relative;
  width: 38.89%;
}

.l-style03 .en {
  font-family: var(--font_en_sub);
  font-size: clamp(7rem, 8.33vw, 15rem);
  letter-spacing: 0;
  color: oklch(from #ED96BB l c h/0.5);
  line-height: 1;
  position: absolute;
  right: 3%;
  top: -19%;
  z-index: 2;
}

.l-style03 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 695px;
}

.l-style03 .l-ttl {
  font-size: clamp(2rem, 2.22vw, 4rem);
  padding-left: 37px;
  position: relative;
  margin-bottom: 50px;
}

.l-style03 .l-ttl::before {
  content: "";
  background: url(../images/ttl_icon.svg) no-repeat center/contain;
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 23px;
}

.l-style03 .l-txt {
  max-width: 655px;
}

.box-style02 {
  padding: 50px;
  background: oklch(from #fff l c h/0.5);
  position: relative;
  font-size: clamp(1.5rem, 1.11vw, 2rem);
}

.box-style02 .en {
  font-family: var(--font_en_sub);
  font-size: clamp(6.9rem, 7.17vw, 12.9rem);
  line-height: 1;
  letter-spacing: 0;
  color: oklch(from #ED96BB l c h/0.5);
  position: absolute;
  top: -11%;
  left: -6.5%;
  z-index: 2;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

.box-style02 .box-ttl {
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.27em;
  margin-bottom: 45px;
}

@media (max-width: 800px) {
  .sec09 {
    padding: 50px 0;
  }
  .sec09-catch {
    font-size: 2rem;
  }
  .sec09-catch em {
    font-size: 2.5rem;
  }
  .l-style03 {
    margin: 50px auto;
    display: block;
    width: 90%;
    font-size: 1.5rem;
  }
  .l-style03 .l-img {
    width: 100%;
    margin: 0 0 30px;
  }
  .l-style03 .en {
    font-size: 7rem;
    top: -40px;
  }
  .l-style03 .l-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-left: 30px;
  }
  .l-style03 .l-ttl::before {
    width: 20px;
    height: 20px;
    top: 9px;
  }
  .box-style02 {
    padding: 50px 25px 25px;
    font-size: 1.5rem;
  }
  .box-style02 .en {
    font-size: 6.9rem;
    top: -20px;
    left: -20px;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  .box-style02 .box-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
/* sec11 */
.sec11 {
  padding: 70px 0 90px;
}

.card-layout02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px 80px;
  padding-top: 50px;
}

.card-layout02 .l-item {
  position: relative;
}

.card-layout02 .l-item:nth-of-type(even) {
  margin-top: 100px;
}

.card-layout02 .num {
  font-family: var(--font_en_sub);
  font-size: 8rem;
  color: oklch(from #ED96BB l c h/0.5);
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  left: 0;
  top: -50px;
  z-index: 2;
}

.card-layout02 .l-ttl {
  padding: 15px 30px;
  background: var(--color_gradient);
  font-size: clamp(1.9rem, 1.44vw, 2.6rem);
  color: #fff;
  position: relative;
  margin: -35px -10px 40px 10px;
  z-index: 2;
}

.card-layout02 .l-desc {
  font-size: clamp(1.5rem, 1.11vw, 2rem);
}

@media (max-width: 800px) {
  .sec11 {
    padding: 50px 0;
  }
  .card-layout02 {
    grid-template-columns: 1fr;
    gap: 60px 0;
    padding-top: 30px;
  }
  .card-layout02 .l-item:nth-of-type(even) {
    margin-top: 0;
  }
  .card-layout02 .num {
    font-size: 5rem;
    top: -30px;
  }
  .card-layout02 .l-ttl {
    font-size: 1.9rem;
    margin-bottom: 20px;
    padding: 10px 15px;
  }
  .card-layout02 .l-desc {
    font-size: 1.5rem;
  }
}
/* sec12 */
.sec12 {
  padding: 70px 0;
}

.sec12 .t-h2 {
  margin-bottom: 100px;
}

.flow-layout .l-item {
  padding: 0 0 70px 110px;
  position: relative;
}

.flow-layout .l-item::before {
  content: "";
  background: var(--color_primary);
  width: 1px;
  position: absolute;
  top: 160px;
  left: 45px;
  bottom: 0;
}

.flow-layout .l-item:last-of-type {
  padding-bottom: 0;
}

.flow-layout .l-item:last-of-type::before {
  display: none;
}

.flow-layout .l-item + .l-item {
  margin-top: 40px;
}

.flow-layout .num {
  width: 80px;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/num_bg.svg) no-repeat center/contain;
  position: absolute;
  left: 5px;
  top: 40px;
  font-family: var(--font_jp);
  font-size: 4rem;
  text-align: center;
  display: grid;
  place-content: center;
  color: #fff;
  white-space: nowrap;
}

.flow-layout .num::before {
  content: attr(data-en);
  font-family: var(--font_en_sub);
  font-size: 4.3rem;
  line-height: 1;
  letter-spacing: 0;
  color: oklch(from #ED96BB l c h/0.5);
  position: absolute;
  bottom: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.flow-layout .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 60px;
}

.flow-layout .l-img {
  width: 38.22%;
  position: relative;
  z-index: 1;
}

.flow-layout .l-img::before {
  content: "";
  background: url(../images/flow_img_deco.svg) no-repeat center/contain;
  width: 145px;
  height: 145px;
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

.flow-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 45px;
}

.flow-layout .l-ttl {
  font-size: clamp(1.8rem, 2.22vw, 4rem);
  letter-spacing: 0.25em;
  margin-bottom: 45px;
}

@media (max-width: 800px) {
  .sec12 {
    padding: 50px 0;
  }
  .sec12 .t-h2 {
    margin-bottom: 40px;
  }
  .flow-layout .l-item {
    padding: 25px 0 30px 70px;
  }
  .flow-layout .l-item + .l-item {
    margin-top: 15px;
  }
  .flow-layout .l-item::before {
    top: 90px;
    left: 30px;
  }
  .flow-layout .num {
    width: 50px;
    font-size: 2.5rem;
    top: 20px;
  }
  .flow-layout .num::before {
    font-size: 2.5rem;
  }
  .flow-layout .wrapper {
    display: block;
  }
  .flow-layout .l-img {
    width: 100%;
    margin: 0 0 30px;
  }
  .flow-layout .l-img::before {
    width: 110px;
    height: 110px;
    right: -10px;
    bottom: -10px;
  }
  .flow-layout .l-desc {
    margin-top: 0;
  }
  .flow-layout .l-ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
/* sec13 */
.sec13 {
  padding: 70px 0;
}

.price-layout {
  font-size: clamp(1.5rem, 1.11vw, 2rem);
}

.price-layout .l-item {
  padding: 20px;
  border-bottom: 1px solid #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.dl-style01 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 30px;
  font-size: clamp(1.5rem, 1.11vw, 2rem);
  line-height: 1.5;
}

.dl-style01 dt {
  background: var(--color_primary);
  padding: 0 20px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  display: grid;
  place-content: center;
}

.box-style03 {
  padding: 60px;
  background: oklch(from #fff l c h/0.5);
}

.box-style03 .box-ttl {
  font-size: clamp(1.9rem, 1.67vw, 3rem);
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .sec13 {
    padding: 50px 0;
  }
  .price-layout {
    font-size: 1.5rem;
  }
  .price-layout .l-item {
    padding: 15px 5px;
  }
  .dl-style01 {
    font-size: 1.3rem;
    gap: 10px 15px;
  }
  .dl-style01 dt {
    padding: 0 15px;
  }
  .box-style03 {
    padding: 25px;
  }
  .box-style03 .box-ttl {
    font-size: 1.9rem;
  }
}
/* sec14 */
.sec14 {
  padding: 70px 0;
}

.sec14 .t-h2 {
  margin-bottom: 140px;
}

.l-style04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 85px;
  max-width: 1455px;
  width: 90%;
  margin-inline: auto;
}

.l-style04 .l-img {
  width: 40%;
  position: relative;
  z-index: 1;
}

.l-style04 .l-img::before,
.l-style04 .l-img::after {
  content: "";
  background: url(../images/staff_img_deco.svg) no-repeat center/contain;
  width: 145px;
  height: 145px;
  position: absolute;
  z-index: -1;
}

.l-style04 .l-img::before {
  top: -20px;
  left: -20px;
}

.l-style04 .l-img::after {
  right: -20px;
  bottom: -20px;
}

.l-style04 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 650px;
  font-size: clamp(1.5rem, 1.11vw, 2rem);
}

.l-style04 .l-ttl {
  font-size: clamp(2rem, 2.22vw, 4rem);
  margin-bottom: 50px;
  padding-left: 37px;
  position: relative;
}

.l-style04 .l-ttl::before {
  content: "";
  background: url(../images/ttl_icon.svg) no-repeat center/contain;
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-style04 .l-name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.l-style04 .job,
.l-style04 .name,
.l-style04 [lang=en] {
  display: inline-block;
}

.l-style04 .name {
  font-size: clamp(1.9rem, 1.67vw, 3rem);
  margin-left: 15px;
}

.l-style04 [lang=en] {
  font-family: var(--font_en);
  font-size: clamp(1.6rem, 1.22vw, 2.2rem);
  color: var(--color_primary);
  margin-left: 20px;
}

@media (max-width: 800px) {
  .sec14 {
    padding: 50px 0;
  }
  .sec14 .t-h2 {
    margin-bottom: 40px;
  }
  .l-style04 {
    display: block;
    width: 90%;
  }
  .l-style04 .l-img {
    width: 100%;
    margin: 0 0 30px;
  }
  .l-style04 .l-img::before,
  .l-style04 .l-img::after {
    width: 110px;
    height: 110px;
  }
  .l-style04 .l-img::before {
    top: -10px;
    left: -10px;
  }
  .l-style04 .l-img::after {
    right: -10px;
    bottom: -10px;
  }
  .l-style04 .l-ttl {
    font-size: 2rem;
    padding-left: 30px;
    margin-bottom: 30px;
  }
  .l-style04 .l-ttl::before {
    width: 20px;
    height: 20px;
    top: 18px;
  }
  .l-style04 .l-desc {
    font-size: 1.5rem;
  }
  .l-style04 .name {
    font-size: 1.9rem;
    margin-left: 5px;
  }
  .l-style04 [lang=en] {
    font-size: 1.6rem;
    margin-left: 5px;
  }
}
/*------------
Footer
--------------*/
.footer {
  position: relative;
  padding: 70px 0 0;
}

.f-map iframe {
  width: 100%;
  height: 500px;
}

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

.pagetop a {
  display: inline-block;
  width: 50px;
}

.copyright {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  background: var(--color_gradient);
}

@media (max-width: 800px) {
  .footer {
    padding: 50px 0 65px;
  }
  .f-map iframe {
    height: 300px;
  }
  .pagetop {
    bottom: 395px;
    right: 15px;
  }
}
/*------------
Under parts
--------------*/
.short + .short {
  margin-top: 50px;
}

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

.tall {
  padding: 50px 0;
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .l-imgR,
  .l-imgL {
    display: block;
  }
  .l-imgR .l-img,
  .l-imgL .l-img {
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }
  .l-imgR .l-img.small,
  .l-imgL .l-img.small {
    width: 100%;
  }
  .l-imgR .l-img {
    margin: 0 0 15px;
  }
  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }
}
/* グリッド */
.col1,
.col2,
.col3,
.col4 {
  display: -ms-grid;
  display: grid;
}

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

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

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

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

@media (max-width: 800px) {
  .col2,
  .col3,
  .col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
/* リストデザイン */
.list-disc > li {
  position: relative;
  padding: 0 0 0 1em;
}

.list-disc > li::before {
  content: "";
  background: var(--color_primary);
  width: 6px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 14px;
}

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

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

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

.list-disc02 > li:before {
  content: "・";
  color: currentColor;
  position: absolute;
  top: 0;
  left: 0;
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .list-disc > li::before {
    top: 13px;
  }
}
/* テーブルデザイン */
.table-style01 {
  background: #fff;
}

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

.table-style01 th {
  background-color: var(--color_primary);
  color: #fff;
}

.table-style01 .bg01 {
  background-color: var(--color_secondary);
  color: #333;
}

@media (max-width: 800px) {
  .table-style01 colgroup {
    display: none;
  }
  .table-style01 th,
  .table-style01 td {
    padding: 10px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .table-style01.sp-block {
    border-bottom: 1px solid #c9c9c9;
  }
  .table-style01.sp-block colgroup {
    display: none;
  }
  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }
  .table-style01.sp-block td {
    border-width: 0 1px;
  }
  .table-scroll::before {
    content: "スクロールできます";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/contain;
    width: 100%;
    height: 24.5px;
    margin-bottom: 5px;
    padding-left: 40px;
    position: sticky;
    top: 0;
    left: 0;
  }
  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }
  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }
  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }
  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
  .table-scroll.table-sticky .table-style01 th:first-child {
    position: sticky;
    top: 0;
    left: 0;
  }
  .table-scroll .table-style01 th,
  .table-scroll .table-style01 td {
    white-space: nowrap;
  }
}
/*-----------------------------------------------------------
Utility
-----------------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

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

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}
.bold,
strong {
  font-weight: 700 !important;
}

.red {
  color: #F44336;
}

.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: oklch(from #E575A4 l c h/0.3);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.fs20 {
  font-size: clamp(1.8rem, 1.11vw, 2rem);
}

.fs22 {
  font-size: clamp(2rem, 1.22vw, 2.2rem);
}

.font01 {
  font-family: var(--font_jp);
}

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

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

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

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

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

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

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

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

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.map {
  height: 450px;
}

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

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

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
  .mbL {
    margin-bottom: 30px !important;
  }
  .mbXL {
    margin-bottom: 50px !important;
  }
  .map {
    height: 300px;
  }
  .fs20 {
    font-size: 1.5rem;
  }
  .fs22 {
    font-size: 1.8rem;
  }
}
/*-----------------------------------------------------------
Add
-----------------------------------------------------------*/
/*------------
splide
-------------*/
/*各種色設定*/
:root {
  --splide-arrow-color: #7EC2C2;
  /*矢印*/
  --splide-focus-color: #7EC2C2;
  /*タブ移動によるフォーカス時のアウトライン*/
  --splide-pagination-color: #7EC2C2;
  /*アクティブ時のページネーション*/
  --splide-progress-color: #7EC2C2;
  /*プログレスバー*/
  --splide-toggle-color: #7EC2C2;
  /*再生ボタン*/
  --splide-track-color: #7EC2C2;
  /*サムネイルの枠*/
}

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

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

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

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

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

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

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

.splide__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}

.splide__controls .splide__pagination {
  position: static;
}

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

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

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

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

.splide--rtl {
  direction: rtl;
}

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

.splide__arrow {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  background: #e9e9e9;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 64px;
  width: 64px;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  border: solid var(--color_primary);
  border-width: 1px 1px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.splide__arrow svg {
  display: none;
}

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

.splide__arrow:disabled {
  opacity: 0.3;
}

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

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

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

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

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

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

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

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

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

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

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

.splide__progress__bar {
  background: var(--splide-progress-color);
  height: 3px;
}

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

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}
.splide__toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #737e80;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  height: 29px;
  width: 29px;
}

.splide__toggle:hover {
  background: var(--splide-toggle-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .splide__arrow {
    width: 45px;
    height: 45px;
  }
  .splide__arrow--prev {
    left: 10px;
  }
  .splide__arrow--next {
    right: 10px;
  }
}
/* under-slider01 */
.under-slider01 .splide {
  padding-bottom: 30px;
}

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

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

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

@media (max-width: 800px) {
  .under-slider01 .splide__arrow--prev {
    left: -4%;
  }
  .under-slider01 .splide__arrow--next {
    right: -4%;
  }
}
/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  opacity: 0;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
}

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