@charset "UTF-8";
:root {
  --color_primary: #1A3B56;
  --color_secondary: #E0E5E8;
  --font_base: "Zen Kaku Gothic Antique", sans-serif;
  --font_size_base: 1.6rem;
  --font_jp: "Zen Kaku Gothic Antique", sans-serif;
  --font_en: "Outfit", sans-serif;
  --color_text: #1A3B56;
  --color_link: #337AB7;
  --color_bg: #E8F3F9;
  --color_border: #DCDCDC;
}

/*-----------------------------------------------------------
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(button, label, 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;
  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;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
/*------------
Body
--------------*/
img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

body,
html {
  min-height: 100svh;
}

body {
  font-family: var(--font_base);
  font-weight: 500;
  font-size: var(--font_size_base);
  color: var(--color_text);
  line-height: 1.8;
  letter-spacing: 0.1em;
}

main {
  overflow: hidden;
}

p {
  line-height: 2.2;
}

.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.8;
  letter-spacing: 0.15em;
  font-family: var(--font_jp);
}

@media (max-width: 800px) {
  /*-------------
  Body
  -------------*/
  body {
    font-size: 1.5rem;
  }
}
/*------------
Common
--------------*/
.btn-more {
  display: inline-block;
  min-width: 270px;
  background: #fff;
  border-radius: 100px;
  border: 2px solid var(--color_primary);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  padding: 15px 35px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-more::after {
  content: "";
  -webkit-mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  background: var(--color_primary);
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .btn-more:hover {
    background: var(--color_primary);
    color: #fff;
  }
  .btn-more:hover::after {
    background: #fff;
  }
}
.btn-more:focus-visible {
  background: var(--color_primary);
  color: #fff;
}

.btn-more:focus-visible::after {
  background: #fff;
}

.btn-tel {
  display: inline-block;
  font-family: var(--font_en);
  font-size: 2.6rem;
  line-height: 1.5;
}

.btn-tel::before {
  content: "";
  background: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 10px;
}

.btn-tel.large {
  font-size: 3.8rem;
}

.btn-tel.large::before {
  width: 23px;
  height: 23px;
}

.btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 11px 35px;
  border: 2px solid var(--color_primary);
  background: #fff;
  border-radius: 100px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-icon svg {
  stroke: currentColor;
  margin-right: 10px;
}

@media (any-hover: hover) {
  .btn-icon:hover {
    background: var(--color_primary);
    color: #fff;
  }
}
.btn-icon:focus-visible {
  background: var(--color_primary);
  color: #fff;
}

@media (max-width: 800px) {
  .btn-more {
    font-size: 1.5rem;
  }
}
.time-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.time-dl dt {
  font-size: 1.1rem;
  text-align: center;
  padding: 0 7px;
  border: 1px solid var(--color_primary);
  border-radius: 3px;
  background: #fff;
}

.time-dl dd {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

/* tel-layout */
.tel-layout {
  background: var(--color_bg);
  max-width: 900px;
  padding: 50px;
  margin: 0 auto;
  border-radius: 5px;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 30px;
  font-size: 1.8rem;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .wrap {
  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;
  grid-gap: 120px;
}

.tel-layout .wrap .col + .col {
  position: relative;
}

.tel-layout .wrap .col + .col::before {
  content: "";
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #333 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
  background-repeat: repeat-y;
  background-size: 2px 9px;
  position: absolute;
  top: 0;
  left: -60px;
}

.tel-layout .fit-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout {
    padding: 35px 25px;
  }
  .tel-layout .l-ttl {
    margin: 0 auto 25px;
  }
  .tel-layout .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 60px;
  }
  .tel-layout .wrap .col + .col::before {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #333 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
    background-repeat: repeat-x;
    background-size: 10px 2px;
    top: -30px;
    left: 0;
  }
}
/*------------
Header
--------------*/
.h-logo {
  width: 280px;
  height: 230px;
  display: grid;
  place-content: center;
  background: var(--color_secondary);
  border-radius: 0 0 50px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.h-wrapper {
  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;
  gap: 20px;
  padding: 30px 170px 55px 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
}

.h-cta {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}

.h-cta 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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 15px;
  padding: 15px 10px 20px 20px;
  background: var(--color_primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: center;
  border-radius: 0 0 0 50px;
  width: 150px;
  height: auto;
  aspect-ratio: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .h-cta a:hover {
    background: #26567d;
  }
}
.h-cta a:focus-visible {
  background: #26567d;
}

.h-cta svg {
  stroke: currentColor;
}

@media (max-width: 800px) {
  .h-wrapper,
  .h-cta {
    display: none;
  }
  .h-logo {
    width: 135px;
    height: 110px;
  }
  .h-logo img {
    width: 85px;
  }
}
/*------------
G-navi
--------------*/
/* ボタン */
.navi-menu-btn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: none;
  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: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 34px;
  height: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 20000;
}

.navi-menu-btn .hamburger-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 34px;
  height: 2px;
  background: var(--color_primary);
  -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: var(--color_primary);
  -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 !important;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::before,
.navi-menu-btn[aria-expanded=true] .hamburger-line::after {
  top: 0;
  background: var(--color_primary) !important;
}

.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::after {
  content: "MEMU OPEN";
  font-family: var(--font_en);
  font-size: 2rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: block;
  white-space: nowrap;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-top: 25px;
}

.navi-menu-btn[aria-expanded=true] .hamburger-ttl::after {
  content: "MEMU CLOSE";
  color: var(--color_primary) !important;
}

.navi-menu-btn.dark .hamburger-line {
  background: #fff;
}

.navi-menu-btn.dark .hamburger-line::before,
.navi-menu-btn.dark .hamburger-line::after {
  background: #fff;
}

.navi-menu-btn.dark .hamburger-ttl::after {
  color: #fff;
}

/* 中身 */
.g-navi-contents {
  pointer-events: none;
  visibility: hidden;
  background: var(--color_bg);
  background-blend-mode: multiply;
  padding: 150px 0;
  position: fixed;
  inset: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  z-index: 9999;
}

.g-navi-contents.is-open {
  pointer-events: auto;
  visibility: visible;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  opacity: 1;
}

/* レイアウト等 */
.g-navi-layout {
  max-width: 1024px;
  width: 90%;
  margin-inline: auto;
}

.g-navi-layout > .item + .item {
  margin-top: 60px;
}

.navi-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}

.navi-info > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.dl-access > .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
}

.dl-access dt {
  width: 110px;
  background: #fff;
  border: 1px solid var(--color_primary);
  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: 3px 10px;
  font-size: 1.3rem;
  border-radius: 2px;
  white-space: nowrap;
}

.dl-access dt svg {
  fill: var(--color_primary);
  margin-right: 10px;
}

.dl-access dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.4rem;
  padding-top: 5px;
  letter-spacing: 0.05em;
}

.dl-access .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 40px;
}

.dl-access .wrap + .wrap {
  margin-top: 10px;
}

.dl-access .wrap p {
  line-height: 1.6;
}

.dl-access .wrap .access-txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.g-navi-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px 40px;
}

.g-navi-list .list-ttl {
  font-weight: 700;
  margin-bottom: 10px;
}

.g-navi-list .g-navi-child ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.g-navi-list .g-navi-child li {
  margin-bottom: 7px;
  padding-left: 17px;
  position: relative;
}

.g-navi-list .g-navi-child li::before {
  content: "";
  background: var(--color_primary);
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.g-navi-list .g-navi-child li a {
  display: inline-block;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color_primary)), to(var(--color_primary))) no-repeat bottom right/0 1px;
  background: linear-gradient(var(--color_primary), var(--color_primary)) no-repeat bottom right/0 1px;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
  font-weight: 500;
}

@media (any-hover: hover) {
  .g-navi-list .g-navi-child li a:hover {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}
.g-navi-list .g-navi-child li a:focus-visible {
  background-position: bottom left;
  background-size: 100% 1px;
}

.g-navi-list .g-navi-child.col-all li {
  -webkit-column-span: all;
  -moz-column-span: all;
  column-span: all;
}

.g-navi-list li.current a {
  color: #337AB7;
  pointer-events: none;
}

.nav-img-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 70px;
}

.nav-img-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.nav-img-layout .l-ttl {
  font-size: 3rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.nav-img-layout .l-btn-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.nav-img-layout .tel-wrap {
  margin-right: 20px;
}

.nav-img-layout .l-img {
  width: 225px;
}

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-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    opacity: 1;
  }
  /* レイアウト等 */
  .g-navi-list .g-navi-child li a {
    letter-spacing: 0;
  }
}
.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .pc-navi {
    display: none;
  }
  .sp-navi {
    display: block;
  }
  :root {
    --navi-background: #1A3B56;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --humberger: #fff;
    --navi-font: "Zen Kaku Gothic Antique", sans-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: 7px;
    stroke: var(--svg-stroke);
  }
  .sp-navi-btns .item .ttl {
    display: block;
  }
  .sp-navi-btns .item:nth-of-type(2) .img svg {
    margin-bottom: 2px;
  }
  .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 {
  margin-top: 155px;
}

.hero-layout {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 25px;
}

.hero-layout .hero-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 210px;
  position: relative;
  z-index: 2;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 2.2rem;
  letter-spacing: 0.27em;
  line-height: 1.6;
}

.hero-layout .hero-desc::after {
  content: "";
  background: url(../images/hero_illust.svg) no-repeat center/contain;
  width: 154px;
  height: 231px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.hero-layout .hero-desc .large {
  font-size: 3rem;
  letter-spacing: 0.37em;
  display: inline-block;
  margin-left: 10px;
}

.hero-layout .hero-img {
  width: 79.17%;
}

.hero-layout .hero-img img {
  width: 100%;
  height: 860px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 800px) {
  .hero {
    margin-top: 50px;
  }
  .hero-layout {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
  }
  .hero-layout .hero-desc {
    margin: 0 55px 0 auto;
    font-size: 1.4rem;
    padding: 0;
  }
  .hero-layout .hero-desc::after {
    width: 95px;
    height: 145px;
    bottom: 55px;
    left: -110px;
    right: auto;
  }
  .hero-layout .hero-desc .large {
    font-size: 1.8rem;
  }
  .hero-layout .hero-img {
    width: 100%;
    margin-top: -65px;
  }
  .hero-layout .hero-img img {
    height: 230px;
  }
}
/*------------
Top contents
--------------*/
.t-h2 {
  padding-top: 35px;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.t-h2::before {
  content: "";
  background: url(../images/ttl_deco.svg) no-repeat center/contain;
  width: 293px;
  height: 101px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.t-h2 [lang=en] {
  font-family: var(--font_en);
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 23px;
}

.t-h2 .jp {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  .t-h2 {
    margin-bottom: 40px;
    padding-top: 30px;
  }
  .t-h2::before {
    width: 235px;
    height: 85px;
  }
  .t-h2 [lang=en] {
    font-size: 4rem;
  }
}
.sec01 {
  padding: 150px 0 205px;
}

.sec01 .t-h2 {
  margin-bottom: 0;
}

.sec01-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 8.33%;
}

.sec01-layout .l-img {
  width: 40%;
}

.sec01-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 55px;
}

.sec01-layout .l-desc p + p {
  margin-top: 2.3em;
}

.sec01-layout .l-ttl {
  font-size: 3rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.sec01-layout .l-btn {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 50px 0;
  }
  .sec01 .t-h2 {
    margin-bottom: 40px;
  }
  .sec01-layout {
    display: block;
  }
  .sec01-layout .l-img {
    width: 100%;
  }
  .sec01-layout .l-desc {
    margin: 40px 0 0;
  }
  .sec01-layout .l-desc p + p {
    margin-top: 1em;
  }
  .sec01-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .sec01-layout .l-btn {
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.top-bg-wrap {
  padding: 160px 0 170px;
  position: relative;
  z-index: 1;
}

.top-bg-wrap::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#E8F3F9), to(#FFFFFF));
  background: linear-gradient(180deg, #E8F3F9 0%, #FFFFFF 100%);
  border-radius: 100px 0 0 0;
  position: absolute;
  inset: 0 0 0 5.56vw;
  z-index: -1;
}

.top-bg-wrap.reverse::before {
  border-radius: 0 100px 0 0;
  inset: 0 5.56vw 0 0;
}

@media (max-width: 1800px) {
  .top-bg-wrap::before {
    inset: 0 0 0 3vw;
  }
  .top-bg-wrap.reverse::before {
    inset: 0 3vw 0 0;
  }
}
.sec02-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 70px;
  margin-bottom: 100px;
}

.sec02-layout .t-h2 {
  grid-area: 1/1/2/2;
  margin-bottom: 0;
}

.sec02-layout .l-desc {
  grid-area: 2/1/3/3;
}

.sec02-layout .l-desc .l-item + .l-item {
  margin-top: 30px;
}

.sec02-layout .l-btn {
  grid-area: 1/2/2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.t-box-cat {
  padding: 50px;
  background: #fff;
  border-radius: 40px;
}

.t-box-cat .box-ttl {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.list-btn-style01.col3,
.list-btn-style01.col4 {
  gap: 20px;
}

.list-btn-style01 li a {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 20px 30px;
  background: var(--color_secondary);
  border: 2px solid var(--color_primary);
  border-radius: 3px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  vertical-align: baseline;
  min-height: 90px;
}

.list-btn-style01 li a::after {
  content: "";
  -webkit-mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  background: currentColor;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.list-btn-style01.large li a {
  font-size: 2.2rem;
}

.list-btn-style01.large li a em {
  font-size: 3.2rem;
}

@media (any-hover: hover) {
  .list-btn-style01 li a:hover {
    background: #fff;
  }
}
.list-btn-style01 li a:focus-visible {
  background: #fff;
}

@media (max-width: 800px) {
  .top-bg-wrap {
    padding: 50px 0;
  }
  .top-bg-wrap::before {
    border-radius: 50px 0 0 0;
    inset: 0;
  }
  .top-bg-wrap.reverse::before {
    border-radius: 0 50px 0 0;
    inset: 0;
  }
  .sec02-layout {
    display: block;
    margin-bottom: 50px;
  }
  .sec02-layout .t-h2 {
    margin-bottom: 40px;
  }
  .sec02-layout .l-btn {
    display: block;
    text-align: center;
    margin-top: 30px;
  }
  .t-box-cat {
    padding: 25px 5%;
  }
  .t-box-cat .box-ttl {
    font-size: 2rem;
  }
  .list-btn-style01.col3,
  .list-btn-style01.col4 {
    gap: 15px;
  }
  .list-btn-style01 li a {
    font-size: 1.6rem;
    padding: 15px 20px;
    min-height: 0;
    height: auto;
  }
  .list-btn-style01.large li a {
    font-size: 1.6rem;
  }
  .list-btn-style01.large li a em {
    font-size: 2.5rem;
  }
}
.sec03 {
  padding: 140px 0 0;
}

.sec03 .container {
  position: relative;
  z-index: 1;
}

.sec03 .container::after {
  content: "";
  background: url(../images/sec03_illust.svg) no-repeat center/contain;
  width: 132px;
  height: 313px;
  position: absolute;
  bottom: -90px;
  right: -21.48%;
  z-index: -1;
}

@media (max-width: 1500px) {
  .sec03 .container::after {
    bottom: -160px;
    right: -5%;
  }
}
.sec03 .l-btn {
  text-align: center;
  margin-top: 60px;
}

.top-layout01 {
  overflow: hidden;
  border-radius: 40px;
}

.top-layout01 .l-item {
  padding: 55px 60px 55px 40px;
  background: no-repeat center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 45px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.top-layout01 .l-item + .l-item {
  margin-top: 10px;
}

.top-layout01 .l-item::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.top-layout01 .l-item.bg01 {
  background-image: url(../images/sec03_img01.jpg);
}

.top-layout01 .l-item.bg02 {
  background-image: url(../images/sec03_img02.jpg);
}

.top-layout01 .l-item.bg03 {
  background-image: url(../images/sec03_img03.jpg);
}

.top-layout01 .num {
  display: block;
  width: 60px;
  font-family: var(--font_en);
  font-size: 5rem;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.top-layout01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.top-layout01 .l-ttl {
  font-size: 2.4rem;
  margin-bottom: 22px;
}

@media (max-width: 800px) {
  .sec03 {
    padding: 100px 0 0;
  }
  .sec03 .container::after {
    display: none;
  }
  .top-layout01 .l-item {
    display: block;
    padding: 25px 5%;
  }
  .top-layout01 .num {
    font-size: 4rem;
    margin-bottom: 5px;
    text-align: left;
  }
  .top-layout01 .l-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.sec04 {
  padding: 0 0 200px;
}

.top-layout02 .l-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.top-layout02 .l-item + .l-item {
  margin-top: 150px;
}

.top-layout02 .l-ttl {
  width: 18.75%;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 7px 0 0 5px;
  border-left: 3px solid var(--color_primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.top-layout02 .l-ttl .ttl-sub {
  font-size: 1.4rem;
  line-height: 1.28;
  letter-spacing: 0.3em;
}

.top-layout02 .l-ttl .ttl-main {
  font-size: 2.4rem;
}

.top-layout02 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.top-layout02 .l-txt {
  margin-bottom: 45px;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 50px 0;
  }
  .top-layout02 .l-item {
    display: block;
  }
  .top-layout02 .l-item + .l-item {
    margin-top: 50px;
  }
  .top-layout02 .l-ttl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    display: block;
    border-left: none;
    border-bottom: 3px solid var(--color_primary);
    margin-bottom: 30px;
  }
  .top-layout02 .l-txt {
    margin-bottom: 30px;
  }
}
.l-top-post01 {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 60px;
}

.l-top-post01 .t-h2 {
  grid-area: 1/1/2/2;
  margin-bottom: 0;
}

.l-top-post01 .top-post-style01 {
  grid-area: 2/1/3/3;
}

.l-top-post01 .l-btn {
  grid-area: 1/2/2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.top-post-style01 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.top-post-style01 .post-item a {
  display: block;
  height: 100%;
  padding: 25px 25px 20px;
  background: #fff;
  border: 1px solid var(--color_secondary);
  border-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-post-style01 time {
  display: block;
  font-family: var(--font_en);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.top-post-style01 .post-ttl {
  font-size: 2rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2px;
}

.top-post-style01 .category {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  padding: 0 10px;
  background: var(--color_primary);
  border-radius: 3px;
  margin: 0 5px 5px 0;
}

.top-post-style01 .desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 10px;
}

@media (any-hover: hover) {
  .top-post-style01 .post-item a:hover {
    border-color: var(--color_primary);
  }
}
.top-post-style01 .post-item a:focus-visible {
  border-color: var(--color_primary);
}

@media (max-width: 800px) {
  .l-top-post01 {
    display: block;
  }
  .l-top-post01 .t-h2 {
    margin-bottom: 40px;
  }
  .top-post-style01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5vw;
    width: calc(100% + 5vw);
    padding: 0 5vw 10px 0;
    overflow-x: auto;
  }
  .top-post-style01 .post-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 210px;
    flex: 0 0 210px;
  }
  .top-post-style01 .post-item a {
    padding: 20px;
  }
  .top-post-style01 .post-ttl {
    font-size: 1.8rem;
  }
  .l-top-post01 .l-btn {
    display: block;
    text-align: center;
    margin-top: 30px;
  }
}
.sec06 {
  padding: 0 0 200px;
}

.top-layout03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.top-layout03 .l-img {
  width: 53.5%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.top-layout03 .l-img::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.6)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.6));
  position: absolute;
  inset: 0;
  z-index: 1;
}

.top-layout03 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 2;
  margin: 45px 0 0 -50px;
}

.top-layout03 .l-desc::before {
  content: "";
  background: url(../images/sec06_illust.svg) no-repeat center/contain;
  width: 233px;
  height: 263px;
  position: absolute;
  top: -80px;
  right: 40px;
}

.top-layout03 .t-h2 {
  margin-bottom: 55px;
}

.top-layout03 .l-catch {
  font-size: 3rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.top-layout03 .l-btn {
  margin-top: 45px;
}

@media (max-width: 800px) {
  .sec06 {
    padding: 50px 0;
  }
  .top-layout03 {
    display: block;
  }
  .top-layout03 .l-img {
    width: 100%;
  }
  .top-layout03 .l-desc {
    margin: 20px 0 0;
  }
  .top-layout03 .l-desc::before {
    width: 173px;
    height: 200px;
    right: 0;
    z-index: 2;
  }
  .top-layout03 .t-h2 {
    margin-bottom: 40px;
  }
  .top-layout03 .l-catch {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .top-layout03 .l-btn {
    margin-top: 30px;
    text-align: center;
  }
}
/*------------
Footer
--------------*/
.footer {
  position: relative;
  padding: 100px 0;
  z-index: 1;
  color: #fff;
}

.footer::before {
  content: "";
  background: var(--color_primary);
  border-radius: 100px 100px 0 0;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.f-cat-layout {
  padding: 50px 60px 50px 80px;
  background: var(--color_secondary);
  border-radius: 40px;
  color: var(--color_text);
  margin-bottom: 80px;
}

.f-cat-layout .l-ttl {
  font-size: 3rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.f-cat-layout .l-img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 30px;
}

.f-cat-layout .l-img-wrapper .l-img {
  width: 225px;
}

.f-cat-layout .l-img-wrapper .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 20px;
}

.f-cat-layout .cta-btn-wrap {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
}

.f-cat-layout .cta-btn-wrap .item {
  display: grid;
  gap: 10px;
}

.site-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px 40px;
}

.list-site-map {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.list-site-map .list-ttl {
  -webkit-column-span: all;
  -moz-column-span: all;
  column-span: all;
  font-weight: 700;
  margin-bottom: 10px;
}

.list-site-map li:not(.list-ttl) {
  margin-bottom: 7px;
  padding-left: 17px;
  position: relative;
}

.list-site-map li:not(.list-ttl)::before {
  content: "";
  background: currentColor;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.list-site-map li:not(.list-ttl) a {
  display: inline-block;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor)) no-repeat bottom right/0 1px;
  background: linear-gradient(currentColor, currentColor) no-repeat bottom right/0 1px;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}

@media (any-hover: hover) {
  .list-site-map li:not(.list-ttl) a:hover {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}
.list-site-map li:not(.list-ttl) a:focus-visible {
  background-position: bottom left;
  background-size: 100% 1px;
}

.list-site-map.col-all > li {
  -webkit-column-span: all;
  -moz-column-span: all;
  column-span: all;
}

.f-bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
}

.pagetop {
  position: absolute;
  top: -40px;
  right: 50px;
  z-index: 5;
}

.pagetop a {
  display: inline-block;
  width: 80px;
}

.f-other-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-map-other ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-map-other ul li {
  font-size: 1.3rem;
}

.site-map-other ul li + li::before {
  content: "｜";
  display: inline-block;
  margin: 0 5px;
}

@media (any-hover: hover) {
  .site-map-other ul li a:hover {
    text-decoration: underline;
  }
}
.site-map-other ul li a:focus-visible {
  text-decoration: underline;
}

.copyright {
  font-size: 1.3rem;
}

@media (max-width: 800px) {
  .footer {
    padding: 50px 0 115px;
  }
  .footer::before {
    border-radius: 50px 50px 0 0;
  }
  .f-cat-layout {
    padding: 25px 5%;
    margin-bottom: 50px;
  }
  .f-cat-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .f-cat-layout .l-img-wrapper {
    display: block;
  }
  .f-cat-layout .l-img-wrapper .l-img {
    width: 150px;
    text-align: center;
    margin: 0 auto 20px;
  }
  .f-cat-layout .l-img-wrapper .l-desc {
    margin: 0;
  }
  .f-cat-layout .cta-btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .list-site-map li:not(.list-ttl) a {
    letter-spacing: 0;
  }
  .f-bnr {
    margin-top: 20px;
  }
  .f-other-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
  }
  .pagetop {
    display: none;
  }
}
/*------------
Under layout
--------------*/
.page-ttl {
  background: var(--color_bg);
  height: 400px;
  display: grid;
  place-content: center;
  padding-top: 20px;
}

.page-ttl .title {
  font-family: var(--font_jp);
  font-size: clamp(2.5rem, 2.5vw, 4.5rem);
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}

.u-contents p + p {
  margin-top: 1em;
}

.u-h2,
.postdata h2 {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  letter-spacing: 0.05em;
}

.u-h2::before,
.postdata h2::before {
  content: "";
  background: url(../images/under/h2_deco.svg) no-repeat center/contain;
  width: 305px;
  height: 105px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.u-h3,
.postdata h3 {
  font-size: 2.4rem;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 30px;
}

.u-h4,
.postdata h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  padding-left: 11px;
  position: relative;
  letter-spacing: 0.05em;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background: var(--color_primary);
  width: 4px;
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 6px;
}

.ttl-style01 {
  font-size: 2.4rem;
  line-height: 1.66;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
}

.num-ttl {
  margin-bottom: 30px;
  position: relative;
  padding: 20px 0 0 50px;
}

.num-ttl .num {
  display: inline-block;
  line-height: 1;
  font-family: var(--font_en);
  font-size: 6rem;
  color: oklch(from var(--color_primary) l c h/0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  letter-spacing: 0;
}

.num-ttl .ttl {
  font-size: 2.4rem;
  line-height: 1.8;
}

@media (max-width: 800px) {
  .page-ttl {
    height: 230px;
    padding-top: 90px;
  }
  .page-ttl .title {
    font-size: 2.5rem;
  }
  .breadcrumb {
    overflow: auto;
    white-space: nowrap;
  }
  .u-h2,
  .postdata h2 {
    font-size: 2.5rem;
    padding-top: 45px;
  }
  .u-h2::before,
  .postdata h2::before {
    width: 225px;
    height: 75px;
  }
  .u-h3,
  .postdata h3 {
    font-size: 2rem;
  }
  .num-ttl {
    padding: 25px 0 0 20px;
  }
  .num-ttl .num {
    font-size: 5rem;
  }
  .num-ttl .ttl {
    font-size: 2rem;
  }
}
/* 背景 */
.u-bg01 {
  position: relative;
  z-index: 1;
  padding: 100px 0 !important;
}

.u-bg01::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#E8F3F9), to(#FFFFFF));
  background: linear-gradient(180deg, #E8F3F9 0%, #FFFFFF 100%);
  border-radius: 0 100px 0 0;
  position: absolute;
  inset: 0 5.56vw 0 0;
  z-index: -1;
}

@media (max-width: 1350px) {
  .u-bg01::before {
    inset: 0 3vw 0 0;
  }
}
@media (max-width: 800px) {
  .u-bg01 {
    padding: 50px 0 !important;
  }
  .u-bg01::before {
    inset: 0;
    border-radius: 0 50px 0 0;
  }
}
/*------------
Under parts
--------------*/
.short + .short {
  margin-top: 80px;
}

.x-short + .x-short {
  margin-top: 50px;
}

.tall {
  padding: 50px 0;
}

.tall:last-of-type {
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .short + .short {
    margin-top: 50px;
  }
  .x-short + .x-short {
    margin-top: 30px;
  }
}
.l-imgR,
.l-imgL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-imgR .l-img,
.l-imgL .l-img {
  margin: 0 40px 0 0;
  width: 40%;
}

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 10px;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 31%;
}

.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:not(.col2):not(.col3):not(.col4) > li + li {
  margin-top: 5px;
}

.list-disc li:before {
  content: "・";
  color: var(--color_primary);
  position: absolute;
  top: 0;
  left: 0;
}

.list-num {
  counter-reset: number;
}

.list-num > li {
  padding: 0 0 0 30px;
  position: relative;
}

.list-num > li:before {
  background: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  position: absolute;
  top: 5px;
  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;
}

.list-num02 {
  counter-reset: number;
}

.list-num02 > li {
  padding: 20px 15px 20px 90px;
  position: relative;
  font-size: 1.8rem;
}

.list-num02 > li::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-size: 4rem;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: var(--font_en);
  color: var(--color_secondary);
}

.list-num02 > li + li {
  border-top: 1px dashed var(--color_border);
}

@media (max-width: 800px) {
  .list-num02 > li {
    font-size: 1.6rem;
    padding: 15px 15px 15px 70px;
  }
  .list-num02 > li::before {
    font-size: 3rem;
  }
}
/* テーブルデザイン */
.table-style01 {
  background: #fff;
  border-bottom: 1px solid var(--color_primary);
}

.table-style01 th,
.table-style01 td {
  border-top: 1px solid var(--color_primary);
  padding: 15px;
  vertical-align: middle;
}

.table-style01 th {
  background-color: var(--color_bg);
}

.table-style01 .bg01 {
  background-color: var(--color_secondary);
}

@media (max-width: 800px) {
  .table-style01 colgroup {
    display: none;
  }
  .table-style01 th,
  .table-style01 td {
    padding: 10px;
    line-height: 1.5;
  }
  .table-style01.sp-block {
    border-bottom: 1px solid var(--color_primary);
  }
  .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;
  }
}
/* staff-layout */
.staff-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6.67%;
}

.staff-layout .ttl-wrap {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.staff-layout .ttl-wrap p {
  margin: 0;
}

.staff-layout .ttl-wrap .kana {
  font-family: var(--font_en);
  font-size: 2rem;
  margin: -15px 0 0 20px;
  letter-spacing: 0.12em;
}

.staff-layout .ttl-wrap .job {
  font-size: 1.4rem;
}

.staff-layout .ttl-wrap .name {
  display: inline-block;
  font-size: 2.4rem;
  padding: 0 0 0 5px;
  border-left: 3px solid var(--color_primary);
}

.staff-layout .l-img {
  width: 300px;
}

.staff-layout .l-img img {
  border-radius: 20px;
}

.staff-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.staff-layout .l-desc p + p {
  margin-top: 2em;
}

.staff-profile.col1 {
  gap: 20px;
}

.staff-profile .item {
  padding: 35px;
  background: #fff;
  border: 2px solid var(--color_primary);
  border-radius: 3px;
}

.staff-profile .item-ttl {
  font-size: 1.8rem;
  line-height: 1.22;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.staff-career {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 15px;
}

.u-catch {
  font-size: 3rem;
  line-height: 1.53;
}

@media (max-width: 800px) {
  .staff-layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 0;
  }
  .staff-layout .ttl-wrap {
    grid-area: 2/1/3/2;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    margin: 0 0 30px;
  }
  .staff-layout .ttl-wrap .kana {
    margin: 0;
  }
  .staff-layout .ttl-wrap .name {
    padding: 0;
    border-left: none;
    border-bottom: 3px solid var(--color_primary);
    font-size: 2rem;
  }
  .staff-layout .l-img {
    grid-area: 1/1/2/2;
    width: 80%;
    margin: 0 auto 20px;
  }
  .staff-layout .l-desc {
    grid-area: 3/1/4/2;
  }
  .staff-layout .l-desc p + p {
    margin-top: 1em;
  }
  .staff-profile.col1 {
    gap: 15px;
  }
  .staff-profile .item {
    padding: 25px;
  }
  .u-catch {
    font-size: 1.8rem;
  }
}
/* ボックス */
.box-style01 {
  padding-top: 48px;
}

.box-style01 .box-inner {
  background: #fff;
  border: 2px solid var(--color_primary);
  padding: 45px 50px;
  position: relative;
  border-radius: 20px;
}

.box-style01 .box-inner::before {
  content: "";
  width: 104px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: -2px;
  left: 14px;
  z-index: 1;
}

.box-style01 .box-label {
  width: 80px;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/under/box_label_bg.svg) no-repeat center/contain;
  display: grid;
  place-content: center;
  position: absolute;
  top: -48px;
  left: 26px;
  z-index: 2;
  font-family: var(--font_en);
  font-size: 1.1rem;
  text-align: center;
  line-height: 1;
}

.box-style01 .box-label::before {
  content: "";
  background: url(../images/under/icon_alert.svg) no-repeat center/contain;
  width: 4px;
  height: 19px;
  display: block;
  margin: 0 auto 5px;
}

.box-style01 .box-ttl {
  font-size: 2.4rem;
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 30px;
  padding-bottom: 5px;
  letter-spacing: 0.05em;
}

.box-style01 .box-item {
  margin-top: 22px;
  padding-top: 15px;
  border-top: 1px solid var(--color_border);
}

@media (max-width: 800px) {
  .box-style01 {
    padding-top: 35px;
  }
  .box-style01 .box-label {
    width: 65px;
    font-size: 1rem;
    top: -35px;
  }
  .box-style01 .box-inner {
    padding: 35px 25px 25px;
  }
  .box-style01 .box-inner::before {
    width: 90px;
  }
  .box-style01 .box-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.box-style02 {
  padding: 50px;
  background: #fff;
  border: 2px solid var(--color_secondary);
  border-radius: 20px;
}

.box-style02 .box-ttl {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .box-style02 {
    padding: 25px;
  }
  .box-style02 .box-ttl {
    font-size: 2rem;
  }
}
.box-style03 {
  padding: 50px;
  background-color: #fff;
  border: 2px solid var(--color_primary);
  border-radius: 20px;
}

.box-style04 {
  padding: 30px 40px;
  background: var(--color_bg);
  border-radius: 20px;
}

.box-style04 .box-ttl {
  font-size: 2.4rem;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  .box-style03 {
    padding: 25px;
  }
  .box-style04 {
    padding: 25px;
  }
  .box-style04 .box-ttl {
    font-size: 2rem;
  }
}
/* カード */
.card-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.card-link .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 25px;
  padding: 35px 35px 40px;
  background: #fff;
  border: 2px solid var(--color_primary);
  border-radius: 3px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card-link .item a::after {
  content: "";
  background: var(--color_primary);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 14px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

@media (any-hover: hover) {
  .card-link .item a:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 20px 15px -8px rgba(0, 0, 0, 0.3);
    box-shadow: 0 20px 15px -8px rgba(0, 0, 0, 0.3);
  }
}
.card-link .item a:focus-visible {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 20px 15px -8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 20px 15px -8px rgba(0, 0, 0, 0.3);
}

.card-link .item-img {
  width: 90px;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
}

.card-link .desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.card-link .item-ttl {
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  .card-link {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-link .item a {
    display: block;
    padding: 25px;
  }
  .card-link .item-img {
    width: 70px;
    margin: 0 auto 15px;
  }
  .card-link .item-ttl {
    font-size: 1.8rem;
  }
}
.list-card01 > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid var(--color_border);
  background: #fff;
  border-radius: 5px;
  padding: 25px;
}

.list-card01 > li.w100 {
  grid-column: span 2;
}

.list-card01.bg01 > li {
  background: var(--color_bg);
}

.list-card01 .list-img {
  text-align: center;
  margin-bottom: 25px;
}

.list-card01 .icon {
  text-align: center;
  margin-bottom: 25px;
}

.list-card01 .icon img {
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

.list-card01 .num {
  display: block;
  font-family: var(--font_en);
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 5px;
}

.list-card01 .list-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.8rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.list-card01 .list-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

.list-card01 .list-btn .btn-more {
  min-width: 0;
  width: 100%;
}

.list-card01.col2 {
  grid-gap: 40px;
}

.list-card01.col3 {
  grid-gap: 30px;
}

.list-card01.col4 {
  grid-gap: 20px;
}

@media (max-width: 800px) {
  .list-card01.col2,
  .list-card01.col3,
  .list-card01.col4 {
    grid-gap: 15px;
  }
}
.list-card02 > li {
  padding: 5%;
  background: var(--color_bg);
  border-radius: 10px;
  text-align: center;
  display: grid;
  place-content: center;
  font-weight: 600;
}

.list-flow01 {
  padding-top: 15px;
}

.list-flow01 > li {
  background: #fff;
  border: 1px solid var(--color_primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px;
  position: relative;
  border-radius: 5px;
}

.list-flow01 > li::after {
  content: "";
  background: #fff;
  width: 120px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 15px;
  z-index: 1;
}

.list-flow01 > li + li::before {
  content: "";
  background: var(--color_primary);
  width: 12px;
  height: 24px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  left: -5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.list-flow01 .list-img {
  text-align: center;
  margin-bottom: 25px;
}

.list-flow01 .list-img img {
  border-radius: 10px;
}

.list-flow01 .num {
  font-family: var(--font_en);
  color: var(--color_primary);
  font-size: 3rem;
  position: absolute;
  left: 25px;
  top: -15px;
  z-index: 2;
  line-height: 1;
}

.list-flow01 .list-ttl {
  display: block;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.list-flow01 .list-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

.list-flow01 .btn-more {
  min-width: 0;
  width: 100%;
}

.list-flow01.col3 > li + li::before,
.list-flow01.col4 > li + li::before {
  left: -6%;
}

.list-flow01.col2 {
  grid-gap: 40px;
}

.list-flow01.col3 {
  grid-gap: 40px 30px;
}

.list-flow01.col4 {
  grid-gap: 40px 20px;
}

@media (max-width: 800px) {
  .list-flow01.col2,
  .list-flow01.col3,
  .list-flow01.col4 {
    grid-gap: 15px;
  }
  .list-flow01 {
    grid-gap: 30px !important;
  }
  .list-flow01 > li + li::before {
    left: 50% !important;
    top: -27px;
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
  }
  .list-flow01.sp-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 0 !important;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0 -5vw 30px 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }
  .list-flow01.sp-scroll > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }
  .list-flow01.sp-scroll > li + li::before {
    top: 50%;
    left: -9px !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.list-flow02 {
  display: grid;
  gap: 40px;
}

.list-flow02 > li {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 50px;
  position: relative;
  min-height: 150px;
}

.list-flow02 > li:not(:last-child)::before {
  content: "";
  background-color: var(--color_primary);
  width: 1px;
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 33px;
}

.list-flow02 > li:not(:last-child)::after {
  content: "";
  background: var(--color_primary);
  width: 10px;
  height: 10px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -1px;
  left: 28px;
}

.list-flow02 .flow-num {
  font-size: 3rem;
  font-family: var(--font_en);
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.list-flow02 .flow-num::before {
  content: attr(data-en);
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.list-flow02 .wrap {
  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;
  gap: 50px;
}

.list-flow02 .flow-img {
  width: 35%;
}

.list-flow02 .flow-img img {
  border-radius: 10px;
}

.list-flow02 .flow-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 10px;
}

.list-flow02 .flow-ttl {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .list-flow02 {
    gap: 40px;
  }
  .list-flow02 > li {
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
  }
  .list-flow02 > li:not(:last-child)::before {
    top: 55px;
    left: 24px;
  }
  .list-flow02 > li:not(:last-child)::after {
    left: 20px;
  }
  .list-flow02 .flow-num {
    font-size: 2.5rem;
  }
  .list-flow02 .flow-num::before {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  .list-flow02 .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .list-flow02 .flow-img {
    width: 100%;
  }
  .list-flow02 .flow-ttl {
    margin-bottom: 10px;
  }
  .list-flow02 .flow-desc {
    padding-top: 0;
  }
}
/* タイムライン */
.timeline01 {
  padding: 30px 0 0 30px;
  border-left: 2px solid var(--color_primary);
  max-width: 1024px;
  margin-inline: auto;
}

.timeline01 .item {
  position: relative;
  z-index: 1;
}

.timeline01 .item::before {
  content: "";
  background: #fff;
  border: 2px solid var(--color_primary);
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: -41px;
  z-index: 2;
}

.timeline01 .item + .item {
  margin-top: 70px;
}

.timeline01 .time-date {
  font-family: var(--font_en);
  font-size: 8rem;
  color: oklch(from var(--color_primary) l c h/0.05);
  line-height: 1;
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 1;
}

.timeline01 .item-ttl {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.timeline01 .desc {
  padding-left: 25px;
  border-left: 1px solid var(--color_border);
}

@media (max-width: 800px) {
  .timeline01 {
    padding: 20px 0 0 20px;
  }
  .timeline01 .item::before {
    left: -31px;
  }
  .timeline01 .item + .item {
    margin-top: 50px;
  }
  .timeline01 .time-date {
    font-size: 3.5rem;
    top: -15px;
  }
  .timeline01 .desc {
    padding-left: 15px;
  }
}
/* 画像レイアウト */
.layout-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.layout-style .l-img {
  position: relative;
  width: 45%;
  border-radius: 10px;
  overflow: hidden;
  margin-left: -4%;
}

.layout-style .l-img::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.9));
  position: absolute;
  inset: 0;
  z-index: 1;
}

.layout-style .l-desc {
  margin: 50px 0 0 -80px;
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.layout-style.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.layout-style.reverse .l-img {
  margin: 0 -4% 0 0;
}

.layout-style.reverse .l-img::before {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.9)), color-stop(50%, rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 50%);
}

.layout-style.reverse .l-desc {
  margin: 50px -80px 0 0;
}

.layout-style .l-num {
  display: inline-block;
  font-family: var(--font_en);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 15px;
}

.layout-style .l-ttl {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.layout-style .l-sub-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.layout-style .l-sub-ttl::before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  background: var(--color_primary);
  width: 30px;
  height: 2px;
}

@media (max-width: 800px) {
  .layout-style {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .layout-style .l-img {
    width: 100%;
    margin: 0 0 20px;
  }
  .layout-style .l-img::before {
    display: none;
  }
  .layout-style .l-desc {
    margin: 0;
  }
  .layout-style.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .layout-style.reverse .l-img {
    margin: 0 0 20px;
  }
  .layout-style.reverse .l-desc {
    margin: 0;
  }
  .layout-style .l-num {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .layout-style .l-ttl {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  .layout-style .l-sub-ttl {
    gap: 15px;
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
  .layout-style .l-sub-ttl::before {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    width: 20px;
  }
}
/* 価格表 */
.price-style {
  display: grid;
  grid-gap: 20px;
}

.price-style .list-intro {
  border-bottom: 1px dotted var(--color_border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  grid-gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.8rem;
  padding: 0 0 5px;
}

.price-style .list-desc {
  color: #747474;
  font-size: 1.3rem;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .price-style {
    grid-gap: 15px;
  }
  .price-style .list-intro {
    font-size: 1.6rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .price-style .price {
    margin-left: auto;
  }
}
/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: 1.8rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-weight: 600;
}

.dl-privacy dd + dt {
  margin-top: 30px;
}

.list-privacy li {
  position: relative;
  padding: 0 0 0 1em;
}

.list-privacy li + li {
  margin-top: 3px;
}

.list-privacy li:before {
  content: "・";
  color: var(--color_primary);
  position: absolute;
  top: 0;
  left: 0;
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  margin-bottom: 15px;
}

/* 普通投稿 */
.l-under-post {
  border-top: 1px solid #e8ecf0;
  margin-bottom: 50px;
}

.l-under-post > .post-item {
  border-bottom: 1px solid #f5f5f5;
}

.l-under-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: background-color 0.3s, padding 0.3s;
  transition: background-color 0.3s, padding 0.3s;
  padding: 15px 35px 15px 0;
  position: relative;
}

.l-under-post a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-under-post a::after {
  content: "";
  width: 20px;
  position: absolute;
  right: 0;
  top: 15px;
  bottom: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-under-post a:focus-visible::before {
  border-color: #fff;
}

.l-under-post a:focus-visible::after {
  background: var(--color_primary);
}

@media (any-hover: hover) {
  .l-under-post a:hover::before {
    border-color: #fff;
  }
  .l-under-post a:hover::after {
    background: var(--color_primary);
  }
}
.l-under-post .post-img {
  width: 150px;
  margin-right: 25px;
}

.l-under-post .post-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 105px;
  border-radius: 5px;
}

.l-under-post .post-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.4rem;
}

.l-under-post time {
  display: block;
  color: #ADADAD;
  font-family: var(--font_en);
  font-size: 1.2rem;
}

.l-under-post .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.l-under-post .category {
  display: inline-block;
  background-color: var(--color_bg);
  border: 1px solid #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
  border-radius: 5px;
}

.l-under-post .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .l-under-post a {
    padding: 20px 25px 20px 0;
  }
  .l-under-post a:hover {
    background-color: transparent;
  }
  .l-under-post .post-img {
    width: 120px;
    margin-right: 20px;
  }
  .l-under-post .post-img img {
    height: 90px;
  }
  .l-under-post .post-desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .l-under-post time {
    font-size: 1rem;
  }
  .l-under-post .post-ttl {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  .l-under-post .category {
    font-size: 1rem;
  }
  .l-under-post .no-post {
    padding: 25px 0;
  }
}
/*詳細ページ*/
.single-post-layout {
  display: flow-root;
  border-bottom: 3px solid #eee;
  padding-bottom: 50px;
  margin-bottom: 50px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.single-post-layout .l-ttl {
  border-bottom: 3px solid #eee;
  font-size: 2.4rem;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.single-post-layout .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.single-post-layout .post-data time {
  display: inline-block;
  color: #98918c;
  font-size: 1.2rem;
  margin-right: 20px;
  font-family: var(--font_en);
}

.single-post-layout .post-data .category {
  display: inline-block;
  background-color: var(--color_bg);
  border: 1px solid #fff;
  border-radius: 5px;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

@media (max-width: 800px) {
  .single-post-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
/*詳細ページ*/
.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li > ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li > ol {
  margin: 0 0 0 15px;
}

.postdata .wp-block-button__link {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  font-family: var(--font_jp);
  font-size: 15px;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.postdata .wp-block-button__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.postdata .wp-block-button__link:hover {
  opacity: 1;
  background-color: #fff;
  color: var(--color_primary);
}

/*セレクト式カテゴリー*/
.select-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 50px;
}

.select-area .select-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select-area .select-ttl {
  display: inline-block;
  font-size: 1.6rem;
  margin: 0 15px 0 0;
}

.select-area .select-category {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
  background: #fff url(../images/share/ico_arrow_down.svg) no-repeat right 10px center/20px auto;
  border-radius: 5px;
  border: 1px solid var(--color_border);
  color: var(--color_text);
  font-size: 1.5rem;
  vertical-align: middle;
  min-width: 150px;
  padding: 5px 40px 5px 15px;
}

.select-area .select-category::-ms-expand {
  display: none;
}

@media (max-width: 800px) {
  .select-area {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/*ページャー*/
.post-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  font-size: 1.3rem;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0 4px;
  margin: 0 4px;
}

.post-number a:focus-visible {
  background: var(--color_primary);
  color: #fff;
}

@media (any-hover: hover) {
  .post-number a:hover {
    background: var(--color_primary);
    color: #fff;
  }
}
.post-number .current {
  background: var(--color_primary);
  color: #fff;
}

.post-number-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-size: 1.3rem;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

.post-number-single .all:focus-visible {
  background: #fff;
  color: var(--color_primary);
}

@media (any-hover: hover) {
  .post-number-single .all:hover {
    background: #fff;
    color: var(--color_primary);
  }
}
.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid var(--color_primary);
  margin: 0 auto;
  top: 12px;
}

.post-number-single .prev:focus-visible,
.post-number-single .next:focus-visible {
  background: var(--color_primary);
}

.post-number-single .prev:focus-visible::before,
.post-number-single .next:focus-visible::before {
  border-color: #fff;
}

@media (any-hover: hover) {
  .post-number-single .prev:hover,
  .post-number-single .next:hover {
    background: var(--color_primary);
  }
  .post-number-single .prev:hover::before,
  .post-number-single .next:hover::before {
    border-color: #fff;
  }
}
.post-number-single .prev::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: 13px;
  border-left: 1px solid var(--color_primary);
}

.post-number-single .next::before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 13px;
  border-right: 1px solid var(--color_primary);
}

/*------------
過去の実績
--------------*/
.post-at-layout {
  margin-bottom: 50px;
}

.post-at-layout .post-item {
  padding: 5%;
  border: 1px solid var(--color_border);
  border-radius: 20px;
}

.post-at-layout .post-item + .post-item {
  margin-top: 50px;
}

.post-at-layout .post-ttl {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.post-at-layout .postdata {
  margin-bottom: 30px;
}

.post-at-layout .category {
  font-size: 1.3rem;
}

.post-at-layout .category + .category::before {
  content: "/";
  display: inline-block;
  margin: 0 10px;
}

.post-at-layout .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  gap: 40px;
  margin-bottom: 50px;
}

.post-at-layout .post-img {
  -ms-flex-preferred-size: 200px !important;
      flex-basis: 200px !important;
  -webkit-box-flex: inherit !important;
      -ms-flex-positive: inherit !important;
          flex-grow: inherit !important;
  height: auto;
  aspect-ratio: 3/3.5;
  border: 1px solid var(--color_border);
  border-radius: 10px;
  overflow: hidden;
}
.post-at-layout .post-img figure {
  height: 100%;
}

.post-at-layout .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-at-layout .desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.post-at-layout .l-btn {
  text-align: center;
}

.post-summary {
  padding: 5%;
  background: var(--color_bg);
  border-radius: 20px;
  font-size: 1.6rem;
}

.post-table,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
  background-color: #fff;
}

.post-table tr th,
.post-table tr td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  border-bottom: 1px solid var(--color_border);
  line-height: 1.5;
  font-size: 1.4rem;
  padding: 15px;
}

.post-table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  border-bottom: 1px solid var(--color_primary);
  vertical-align: middle;
  text-align: center;
  width: 25%;
  font-weight: 600;
}

.post-table tr:last-of-type td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr:last-of-type td {
  border-color: var(--color_primary);
}

@media (max-width: 800px) {
  .post-at-layout {
    border-radius: 15px;
  }
  .post-at-layout .post-ttl {
    font-size: 2rem;
  }
  .post-at-layout .wrapper {
    display: block;
  }
  .post-at-layout .post-img {
    width: 70%;
    margin: 0 auto 20px;
  }
  .post-table tr th,
  .post-table tr td,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    display: block;
    padding: 15px 10px;
  }
  .post-table tr th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
    width: 100%;
    text-align: left;
    border-bottom: none;
  }
}
/*-----------------------------------------------------------
投稿02
-----------------------------------------------------------*/
/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 100px 0;
  margin: 0 auto;
  max-width: 1400px;
}

.main-contents {
  padding: 0 70px;
  width: calc(100% - 320px);
  max-width: 1200px;
  margin-inline: auto;
}

.side-contents {
  padding: 0 40px;
  width: 320px;
}

.side-contents-wrapper {
  position: sticky;
  top: 110px;
}

.side-contents-ttl {
  border-bottom: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.side-area-item + .side-area-item {
  margin-top: 30px;
}

.side-area-item-ttl {
  font-size: 1.3rem;
  margin-bottom: 7px;
}

.side-area-links li {
  padding-left: 20px;
  position: relative;
  font-size: 1.4rem;
}

.side-area-links li::before {
  content: "";
  width: 5px;
  height: 8px;
  background-color: var(--color_primary);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 7px;
  left: 0;
}

.side-area-links li + li {
  margin-top: 5px;
}

.side-area-links a {
  display: inline-block;
}

.side-area-links a:focus-visible {
  text-decoration: underline;
}

@media (any-hover: hover) {
  .side-area-links a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 800px) {
  .sidebar-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 50px 5vw;
    width: 100%;
  }
  .sidebar-layout .tall + .tall {
    margin-top: 50px;
  }
  .sidebar-layout.sp-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }
  .main-contents {
    width: 100%;
    padding: 0;
  }
  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }
  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }
  .side-contents-ttl {
    font-size: 1.5rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .side-area-item + .side-area-item {
    margin-top: 30px;
  }
}
/*-----------------------------------------------------------
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;
}

.red {
  color: #E63946;
}

.fs20 {
  font-size: 2rem !important;
}

.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: var(--color_secondary);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.notice {
  font-size: 1.4rem;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 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%;
  border-radius: 20px;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
  .mbL {
    margin-bottom: 30px !important;
  }
  .mbXL {
    margin-bottom: 50px !important;
  }
  .map {
    height: 300px;
  }
}
/*-----------------------------------------------------------
Add
-----------------------------------------------------------*/
/*------------
splide
-------------*/
/*各種色設定*/
:root {
  --splide-arrow-color: #1A3B56;
  /*矢印*/
  --splide-focus-color: #1A3B56;
  /*タブ移動によるフォーカス時のアウトライン*/
  --splide-pagination-color: #1A3B56;
  /*アクティブ時のページネーション*/
  --splide-progress-color: #1A3B56;
  /*プログレスバー*/
  --splide-toggle-color: #1A3B56;
  /*再生ボタン*/
  --splide-track-color: #1A3B56;
  /*サムネイルの枠*/
}

.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: var(--color_primary);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: auto;
  width: 70px;
  aspect-ratio: 1;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  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: 1rem;
  height: 1rem;
  border: solid #fff;
  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: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 50%;
  display: inline-block;
  width: 15px;
  height: auto;
  aspect-ratio: 1;
  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;
}

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  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: 25px;
    height: 25px;
  }
  .splide__arrow--prev {
    left: 10px;
  }
  .splide__arrow--next {
    right: 10px;
  }
}
/*------------
cutoff-slider
--------------*/
.cutoff-slider .splide__track {
  overflow: visible;
}

.cutoff-slider .splide-arrows-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.cutoff-slider .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.cutoff-slider .splide__arrow {
  position: static;
  -webkit-transform: none;
  transform: none;
}

.cutoff-slider .splide__pagination {
  position: static;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.u-post-at {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.post-card-at {
  position: relative;
  padding: 28px 0;
}

.post-card-at::before,
.post-card-at::after {
  content: "";
  background: url(../images/cutoff_slider_deco.svg) no-repeat center/contain;
  width: 26px;
  height: 18px;
  position: absolute;
}

.post-card-at::before {
  top: 0;
  left: 0;
}

.post-card-at::after {
  bottom: 0;
  right: 0;
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

.post-card-at .job {
  color: #fff;
  text-align: center;
  line-height: 1.3;
  padding: 14px;
  background: var(--color_primary);
  border: 2px solid var(--color_primary);
  border-radius: 3px 3px 0 0;
}

.post-card-at .card-desc {
  padding: 25px 30px 35px;
  background: #fff;
  border: 2px solid var(--color_primary);
  border-radius: 0 0 3px 3px;
  position: relative;
  z-index: 1;
}

.post-card-at .card-desc::after {
  content: "";
  width: 14px;
  height: auto;
  aspect-ratio: 1;
  background: var(--color_primary);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: -1;
}

.post-card-at .card-desc p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.at-data-table th,
.at-data-table td {
  font-size: 1.7rem;
  font-weight: 700;
}

.at-data-table th {
  width: 100px;
  text-align: left;
  padding-left: 20px;
  position: relative;
}

.at-data-table th::before {
  content: "";
  background: no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-right: 10px;
}

.at-data-table .area th::before {
  content: "";
  background-image: url(../images/share/icon_area.svg);
  width: 14px;
  height: 21px;
}

.at-data-table .employee th::before {
  content: "";
  background-image: url(../images/share/icon_employee.svg);
  width: 14px;
  height: 20px;
}

@media (max-width: 800px) {
  .cutoff-slider .splide__arrow {
    width: 40px;
    height: 40px;
  }
  .cutoff-slider .splide__arrow svg {
    width: 50%;
    height: 50%;
  }
  .cutoff-slider .splide__arrow--prev {
    right: 70px;
  }
  .cutoff-slider .splide__arrow--next {
    right: 20px;
  }
  .cutoff-slider .splide-arrows-wrap {
    margin-top: 50px;
  }
  .u-post-at {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  opacity: 0;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}