@charset "UTF-8";
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  --color_primary: #67AC82;
  --color_secondary: #555D5C;
  --color_tertiary: #D0E684;
  --font_base: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --font_size_base: 1.6rem;
  --font_jp: "Noto Serif JP", serif;
  --font_en: "Cormorant Infant", serif;
  --color_text: #3E4544;
  --color_text_sub: #555D5C;
  --color_link: #67AC82;
  --color_bg: #F4F4F4;
  --color_border: #D4D9D9;
}

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

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

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

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

:where(button) {
  all: unset;
}

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

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

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

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

.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-more {
  max-width: 1400px;
}

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

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

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

@media (max-width: 800px) {
  /*-------------
  Body
  -------------*/
  body {
    font-size: 1.5rem;
  }
}
/*------------
Common
--------------*/
.btn-more {
  display: inline-block;
  background: linear-gradient(70deg, #67B4A8 0%, #7FBF93 38%, #A8CC45 100%);
  min-width: 220px;
  padding: 15px 20px;
  font-family: var(--font_jp);
  text-align: center;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.btn-more::before {
  content: "";
  background: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  width: 37px;
  height: 7px;
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-more::after {
  content: "";
  background: oklch(from #fff l c h/0.3);
  position: absolute;
  inset: 5px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-more.small {
  min-width: 160px;
}

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

.btn-more.white::before {
  -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;
}

@media (any-hover: hover) {
  .btn-more:hover::after {
    opacity: 1;
  }
}
.btn-more:focus-visible::after {
  opacity: 1;
}

.btn-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-family: var(--font_en);
  font-size: 2.8rem;
  line-height: 1;
  white-space: nowrap;
}

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

.btn-tel.large {
  font-size: 4rem;
}

.btn-tel.large::before {
  width: 22px;
  height: 28px;
}

.btn-reserve {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  padding: 10px 40px;
  background: #D0E684;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  min-width: 185px;
}

.btn-reserve .txt-sub {
  font-size: 1.3rem;
}

.btn-reserve .txt-main {
  font-size: 1.6rem;
  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;
  gap: 5px;
}

.btn-reserve .txt-main::before {
  content: "";
  -webkit-mask: url(../images/share/icon_device.svg) no-repeat center/contain;
  mask: url(../images/share/icon_device.svg) no-repeat center/contain;
  background: currentColor;
  width: 20px;
  height: 15px;
  display: inline-block;
}

.btn-reserve.large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 465px;
  position: relative;
}

.btn-reserve.large::before {
  content: "";
  background: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  width: 37px;
  height: 7px;
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-reserve.small {
  padding: 9px 40px;
  line-height: 1.5;
}

@media (any-hover: hover) {
  .btn-reserve:hover {
    background: #e0efae;
  }
}
.btn-reserve:focus-visible {
  background: #e0efae;
}

.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;
  gap: 7px;
  min-width: 220px;
  background: linear-gradient(75deg, #67B4A8 0%, #7FBF93 38%, #A8CC45 100%);
  position: relative;
  z-index: 1;
  padding: 15px 20px;
  font-family: var(--font_jp);
}

.btn-icon::before {
  content: "";
  background: #fff;
  position: absolute;
  inset: 5px;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-icon svg {
  fill: var(--color_text);
}

.btn-icon img {
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.btn-icon.bg01 {
  background: var(--color_primary);
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-icon.bg01 svg {
  fill: currentColor;
}

.btn-icon.bg01::before {
  display: none;
}

@media (any-hover: hover) {
  .btn-icon.bg01:hover {
    background: #88be9d;
  }
}
.btn-icon.bg01:focus-visible {
  background: #88be9d;
}

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

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

.btn-wrap .btn-more {
  margin-right: 20px;
}

@media (max-width: 800px) {
  .btn-more {
    display: block;
    min-width: 0;
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .btn-reserve.large {
    min-width: 0;
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .btn-icon {
    min-width: 0;
    width: 100%;
  }
  .btn-tel.large {
    font-size: 3.5rem;
  }
  .btn-wrap.sp-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.time-table {
  background: #fff;
  text-align: center;
  font-size: 1.5rem;
  border: 1px solid #9DA3A3;
  color: var(--color_text_sub);
}

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

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

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

.time-table-body .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 12px 0;
  line-height: 1.5;
}

.time-table-body .item:first-of-type {
  background: #F4F4F4;
  border-right: 1px solid #9DA3A3;
}

.time-table-body .item.event {
  color: #9DA3A3;
}

.time-table-body .item .txt {
  display: block;
  font-size: 1.2rem;
  color: var(--color_secondary);
  font-weight: 700;
}

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

@media (max-width: 800px) {
  .time-table {
    font-size: 1.2rem;
  }
  .time-table-head,
  .time-table-body {
    grid-template-columns: 100px repeat(7, 1fr);
  }
  .time-table-head .item {
    padding: 10px 0;
  }
  .time-table-body .item {
    padding: 10px 0;
    line-height: 1.3;
  }
  .time-table-body .item .txt {
    font-size: 1rem;
  }
}
/*診療カレンダー*/
.business-calendar-box-wrap {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #D4D9D9;
}

.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.business-calendar-box-wrap .business-calendar caption {
  font-size: 1.8rem;
  font-family: var(--font_jp);
  text-align: center;
  margin: 0 0 10px;
  position: relative;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 25px;
  vertical-align: -1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.business-calendar-box-wrap .business-calendar-past {
  left: 0;
}

.business-calendar-box-wrap .business-calendar-future {
  right: 0;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #9DA3A3;
  border-left: 2px solid #9DA3A3;
  position: absolute;
  top: 10px;
  left: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.business-calendar-box-wrap .business-calendar-future a::before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.business-calendar-box-wrap .business-calendar th {
  background: var(--color_primary);
  text-align: center;
  padding: 5px;
  width: 14%;
  font-family: var(--font_jp);
  font-weight: 500;
  color: #fff;
}

.business-calendar-box-wrap .business-calendar td {
  position: relative;
  font-size: 1.4rem;
  padding: 5px;
  height: 65px;
  vertical-align: top;
  z-index: -1;
}

.business-calendar-box-wrap .business-calendar td:nth-of-type(6) {
  color: #3784BB;
}

.business-calendar-box-wrap .business-calendar td:nth-of-type(7) {
  color: #E44747;
}

.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  width: 11px;
  height: 11px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 0;
  z-index: -1;
}

.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 15px;
}

.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}

.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3%;
}

.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}

.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
  -webkit-mask: no-repeat center/contain;
  mask: no-repeat center/contain;
  background: currentColor;
}

.business-calendar-box-wrap .business-calendar .attr0::before {
  -webkit-mask-image: url(../images/share/icon_calendar_close.svg);
  mask-image: url(../images/share/icon_calendar_close.svg);
}

.business-calendar-box-wrap .business-calendar .attr1::before {
  -webkit-mask-image: url(../images/share/icon_calendar_circle.svg);
  mask-image: url(../images/share/icon_calendar_circle.svg);
}

.business-calendar-box-wrap .business-calendar .attr2::before {
  -webkit-mask-image: url(../images/share/icon_calendar_triangle.svg);
  mask-image: url(../images/share/icon_calendar_triangle.svg);
}

.business-calendar-box-wrap .business-calendar .attr3::before {
  -webkit-mask-image: url(../images/share/icon_calendar_square.svg);
  mask-image: url(../images/share/icon_calendar_square.svg);
}

.list-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 15px;
}

.list-event li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}

.list-event img {
  margin-right: 5px;
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .list-event {
    display: block;
  }
  .list-event li + li {
    margin-top: 5px;
  }
}
/*------------
Header
--------------*/
.h-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 14px 100px 14px 30px;
  background: #fff;
  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;
  gap: 0 50px;
}

.h-right {
  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;
}

@media (max-width: 800px) {
  .h-logo {
    width: 220px;
  }
  .h-wrapper {
    padding: 20px 60px 20px 15px;
    z-index: 1000;
  }
}
/*------------
G-navi
--------------*/
/* ボタン */
.navi-menu-btn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  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: 34px;
  right: 40px;
  width: 33px;
  height: 18px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1001;
}

.navi-menu-btn .hamburger-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 33px;
  height: 2px;
  background: #555D5C;
  -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: #555D5C;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

@starting-style {
  .g-navi-contents.is-open {
    opacity: 0;
  }
}
/* レイアウト等 */
.g-navi-layout {
  margin-inline: auto;
  max-width: 1024px;
  width: 90%;
}

.g-navi-layout .item + .item {
  margin-top: 40px;
}

.nav-post-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

.nav-post-wrapper .post-btn {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  width: 70px;
  height: 70px;
  background: var(--color_primary);
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-post-wrapper .post-btn::before {
  content: "";
  -webkit-mask: url(../images/share/icon_calendar.svg) no-repeat center/contain;
  mask: url(../images/share/icon_calendar.svg) no-repeat center/contain;
  background: currentColor;
  width: 28px;
  height: 30px;
  display: block;
  margin-inline: auto;
}

@media (any-hover: hover) {
  .nav-post-wrapper .post-btn:hover {
    background: #88be9d;
  }
}
.nav-post-wrapper .post-btn:focus-visible {
  background: #88be9d;
}

.nav-post-style {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.nav-post-style a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  font-weight: 500;
}

.nav-post-style time {
  font-size: 1.3rem;
  white-space: nowrap;
  color: #9DA3A3;
}

.nav-post-style .post-ttl {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font_jp);
}

@media (any-hover: hover) {
  .nav-post-style a:hover .post-ttl {
    text-decoration: underline;
  }
}
.nav-post-style a:focus-visible .post-ttl {
  text-decoration: underline;
}

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

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

.g-navi-list > li.item-span2 {
  grid-column: span 2;
}

.g-navi-list > li > a,
.g-navi-list > li > .no-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  line-height: 1.8;
  font-family: var(--font_jp);
}

.g-navi-list > li > a img,
.g-navi-list > li > .no-link img {
  width: 28px;
  height: 25px;
  -o-object-fit: contain;
  object-fit: contain;
}

.g-navi-child {
  margin: 15px 0 0 35px;
}

.g-navi-child.list-col2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.g-navi-child li a {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.8;
  font-family: var(--font_jp);
}

.g-navi-child:not(.list-navi-icon) li a {
  padding-left: 11px;
  position: relative;
}

.g-navi-child:not(.list-navi-icon) li a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #9DA3A3;
  border-right: 1px solid #9DA3A3;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.g-navi-child.list-navi-icon li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.g-navi-child.list-navi-icon img {
  width: 14px;
  -o-object-fit: contain;
  object-fit: contain;
}

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

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

.nav-other-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 35px;
}

.nav-other-wrap .other-left {
  width: 48%;
}

.nav-other-wrap .other-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.nav-access-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.nav-access-wrap .txt {
  font-size: 1.5rem;
}

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

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

@media (max-width: 800px) {
  /*-----------------------------------------------------------
  g-navi SP
  -----------------------------------------------------------*/
  /* ボタン */
  .navi-menu-btn {
    top: 27px;
    right: 15px;
  }
  .navi-menu-btn .hamburger-line {
    width: 29px;
  }
  /* 中身 */
  .g-navi-contents {
    padding: 100px 0;
  }
  /* レイアウト等 */
  .nav-post-wrapper {
    gap: 15px;
  }
  .nav-post-style a {
    display: block;
  }
  .nav-post-wrapper .post-btn {
    font-size: 1rem;
    width: 50px;
    height: 50px;
  }
  .nav-post-wrapper .post-btn::before {
    height: 20px;
  }
  .g-navi-list.list-col4 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .g-navi-list > li > a,
  .g-navi-list > li > .no-link {
    font-size: 1.6rem;
  }
  .g-navi-list > li > a img,
  .g-navi-list > li > .no-link img {
    height: 20px;
  }
  .g-navi-child {
    margin: 10px 0 0 35px;
  }
  .g-navi-child.list-col2 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  .nav-other-wrap {
    display: block;
  }
  .nav-logo {
    max-width: 280px;
    margin-inline: auto;
  }
  .nav-access-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .nav-other-wrap .other-left {
    width: 100%;
    margin-bottom: 30px;
  }
  .nav-btn-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.g-navi-list [aria-current=page],
.list-sub-navi [aria-current=page],
.list-site-map [aria-current=page],
.site-map-other [aria-current=page] {
  color: #C8D97D;
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .pc-navi {
    display: none;
  }
  .sp-navi {
    display: block;
  }
  :root {
    --navi-background: #67AB82;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --humberger: #fff;
    --navi-font: "Noto Serif JP", 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: 50px;
    z-index: 10000;
  }
  .sp-navi-btns div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
  }
  .sp-navi-btns .item {
    font-size: 1rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }
  .sp-navi-btns .item + .item {
    border-left: 1px solid var(--navi-border-color);
  }
  .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: 8px 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: 4px;
  }
  .sp-navi-btns .item .ttl {
    display: block;
  }
  .sp-menu-btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 10px;
  }
  .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-family: var(--navi-font);
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }
  .sp-menu-btn span:not(.ttl) {
    background: var(--humberger);
    position: absolute;
    left: 50%;
    width: 22px;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(1) {
    top: 20px;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(2) {
    top: 26px;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(3) {
    top: 32px;
  }
  .sp-menu-btn.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 6px) rotate(-45deg);
    transform: translate(-50%, 6px) rotate(-45deg);
  }
  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .sp-menu-btn.is-open span:nth-of-type(3) {
    -webkit-transform: translate(-50%, -6px) rotate(45deg);
    transform: translate(-50%, -6px) rotate(45deg);
  }
  /* コンテンツ */
  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 50px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }
  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }
  .sp-navi-list {
    border-top: 1px solid #d6d6d6;
    margin: 0 0 30px;
  }
  .sp-navi-list > li {
    border-bottom: 1px solid #d6d6d6;
  }
  .sp-navi-list > li > a {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }
  .sp-navi-list > li.sp-dropdown {
    position: relative;
  }
  .sp-navi-list > li.sp-dropdown::before,
  .sp-navi-list > li.sp-dropdown::after {
    content: "";
    background-color: #333;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .sp-navi-list > li.sp-dropdown::before {
    width: 1px;
    height: 11px;
    top: 17px;
    right: 20px;
  }
  .sp-navi-list > li.sp-dropdown::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }
  .sp-navi-list > li.sp-dropdown.is-on::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .sp-navi-list > li.sp-dropdown > a {
    padding: 15px 0;
    width: 85%;
  }
  .sp-navi-list .child {
    padding: 0 0 15px;
  }
  .sp-navi-list .child > ul > li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
  }
  .sp-navi-list .child > ul > li::before {
    content: "-";
    color: #333;
    position: absolute;
    left: 0;
    top: 0;
  }
  .sp-navi-list .child > ul > li > a {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
  }
  .sp-navi-other .item + .item {
    margin: 15px 0 0;
  }
}
.sub-nav {
  padding: 57px 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(103, 180, 168, 0.2)), color-stop(38%, rgba(127, 191, 147, 0.2)), to(rgba(168, 204, 69, 0.2)));
  background: linear-gradient(270deg, rgba(103, 180, 168, 0.2) 0%, rgba(127, 191, 147, 0.2) 38%, rgba(168, 204, 69, 0.2) 100%);
}

.list-sub-navi {
  width: 90%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 35px;
}

.list-sub-navi a,
.list-sub-navi .no-link {
  display: inline-block;
  font-family: var(--font_jp);
  color: var(--color_text_sub);
  line-height: 1.8;
  white-space: nowrap;
}

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

.list-sub-navi .dropdown {
  position: relative;
}

.list-sub-navi .dropdown-btn {
  cursor: pointer;
  display: inline-block;
  font-family: var(--font_jp);
  color: var(--color_text_sub);
  line-height: 1.8;
  white-space: nowrap;
  position: relative;
  padding-right: 13px;
}

.list-sub-navi .dropdown-btn::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

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

.list-sub-navi .dropdown ul li + li {
  margin-top: 5px;
}

.list-sub-navi .dropdown.is-open .child {
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 800px) {
  .sub-nav {
    padding: 25px 0;
  }
  .list-sub-navi {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .list-sub-navi .dropdown .child {
    -webkit-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
  }
  .list-sub-navi .dropdown:is(:hover, :focus-within) .child {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .list-sub-navi .dropdown .child.pos-right {
    left: auto;
    right: 0;
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }
  .list-sub-navi .dropdown:is(:hover, :focus-within) .child.pos-right {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .list-sub-navi .dropdown.is-open .child.pos-right {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/*------------
Hero
--------------*/
.hero {
  margin-top: 100px;
  position: relative;
}

.hero-slider {
  width: 62%;
  margin-left: auto;
}

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

.hero-desc {
  position: absolute;
  left: calc((100% - 1800px) / 2);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 60px;
}

@media (max-width: 1900px) {
  .hero-desc {
    left: 3vw;
  }
}
.hero-catch {
  font-family: var(--font_jp);
  font-size: 4.2rem;
  line-height: 1.76;
  color: var(--color_text_sub);
  text-align: center;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 4px #fff, 0px 0px 4px #fff, 0px 0px 4px #fff, 0px 0px 4px #fff, 0px 0px 4px #fff;
}

.list-hero-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.list-hero-point li {
  width: 210px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(45deg, #67B4A8 0%, #7FBF93 38%, #A8CC45 100%);
  display: grid;
  place-content: center;
  color: #fff;
  font-family: var(--font_jp);
  text-align: center;
  line-height: 1.55;
  font-size: 2rem;
}

@media (max-width: 800px) {
  .hero {
    margin: 70px 0 65px;
  }
  .hero-slider {
    width: 91.75%;
  }
  .hero-slider .splide__slide img {
    height: 320px;
  }
  .hero-desc {
    left: 50%;
    top: auto;
    bottom: -55px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    gap: 15px;
  }
  .hero-catch {
    font-size: 2.1rem;
  }
  .list-hero-point {
    gap: 5px;
  }
  .list-hero-point li {
    width: 115px;
    font-size: 1rem;
  }
}
/*------------
Top contents
--------------*/
.t-h2 {
  margin-bottom: 45px;
  padding-bottom: 15px;
  position: relative;
}

.t-h2::before {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--color_primary);
  position: absolute;
  bottom: 0;
  left: 0;
}

.t-h2 [lang=en] {
  font-family: var(--font_en);
  font-size: 3.8rem;
  color: var(--color_text_sub);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
}

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

.t-h2-02 {
  text-align: center;
  margin-bottom: 75px;
  color: var(--color_text_sub);
}

.t-h2-02 [lang=en] {
  font-family: var(--font_en);
  font-size: 12rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

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

.t-h2-02.icon [lang=en] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 800px) {
  .t-h2-02 {
    margin-bottom: 40px !important;
  }
  .t-h2-02 [lang=en] {
    font-size: 5rem;
  }
  .t-h2-02 .jp {
    font-size: 2.3rem;
  }
  .t-h2-02.icon [lang=en] {
    gap: 10px;
  }
  .t-h2-02.icon [lang=en] img {
    width: 35px;
  }
}
.sec01,
.sec05,
.sec10 {
  overflow: hidden;
}

.sec01 {
  padding: 80px 0;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.sec01::before {
  content: "";
  background: url(../images/sec01_deco@2x.png) no-repeat center/contain;
  width: 250px;
  height: 351px;
  position: absolute;
  top: 0;
  right: -6.11%;
  z-index: -1;
}

.sec01 .l-btn {
  text-align: center;
  margin-top: 50px;
}

.top-post-style01 {
  font-family: var(--font_jp);
}

.top-post-style01 .post-item {
  padding-bottom: 10px;
  border-bottom: 1px solid #D4D9D9;
}

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

.top-post-style01 time {
  display: block;
  font-size: 1.3rem;
  color: #9DA3A3;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.top-post-style01 .post-ttl {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (any-hover: hover) {
  .top-post-style01 .post-ttl a:hover {
    text-decoration: underline;
  }
}
.top-post-style01 .post-ttl a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 50px 0;
  }
  .sec01::before {
    width: 140px;
    height: 190px;
  }
  .sec01 .l-btn {
    margin-top: 30px;
  }
}
.sec02 {
  padding: 0 0 280px;
  max-width: 1800px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.sec02::before {
  content: "";
  background: url(../images/sec02_deco@2x.png) no-repeat center/contain;
  width: 398px;
  height: 419px;
  position: absolute;
  bottom: -75px;
  left: -9.44%;
  z-index: -1;
}

.top-layout01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 50px;
}

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

.top-layout01 .l-map iframe {
  width: 100%;
  height: 410px;
}

@media (max-width: 800px) {
  .sec02 {
    padding: 50px 0;
  }
  .sec02::before {
    display: none;
  }
  .top-layout01 {
    display: block;
  }
  .top-layout01 > .l-item + .l-item {
    margin-top: 50px;
  }
  .top-layout01 .l-map iframe {
    height: 300px;
  }
}
.top-layout02 {
  padding: 150px 0;
  background: #F4F4F4;
}

.top-layout02 .l-wrapper {
  max-width: 1800px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 80px;
}

.top-layout02 .l-img {
  width: 45.56%;
  padding: 0 65px 85px 0;
  position: relative;
}

.top-layout02 .l-img .img-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 27.32%;
}

.top-layout02 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 25px 5vw 0 0;
  position: relative;
}

.top-layout02 .l-ttl {
  position: absolute;
  top: -250px;
  left: 0;
  z-index: 2;
  color: var(--color_text_sub);
}

.top-layout02 .l-ttl [lang=en] {
  font-family: var(--font_en);
  font-size: 12rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.top-layout02 .l-ttl .jp {
  font-size: 2.4rem;
  letter-spacing: 0.14em;
}

@media (max-width: 1300px) {
  .top-layout02 .l-ttl {
    top: -260px;
  }
  .top-layout02 .l-ttl [lang=en] {
    font-size: 10rem;
  }
}
.top-layout02 .l-catch {
  font-family: var(--font_jp);
  font-size: 3rem;
  color: var(--color_text_sub);
  line-height: 1.76;
  letter-spacing: 0.14em;
  margin-bottom: 50px;
}

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

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

@media (max-width: 800px) {
  .sec03 {
    padding: 85px 0 0;
    position: relative;
  }
  .top-layout02 {
    padding: 200px 0 50px;
  }
  .top-layout02 .l-wrapper {
    display: block;
    margin: 0 5vw;
  }
  .top-layout02 .l-img {
    width: 100%;
    padding: 0 35px 50px 0;
  }
  .top-layout02 .l-img .img-sub {
    width: 32%;
  }
  .top-layout02 .l-desc {
    position: static;
    margin: 30px 0 0;
  }
  .top-layout02 .l-ttl {
    top: 45px;
    left: 5vw;
  }
  .top-layout02 .l-ttl [lang=en] {
    font-size: 7rem;
    margin-bottom: 10px;
  }
  .top-layout02 .l-ttl .jp {
    font-size: 2.3rem;
  }
  .top-layout02 .l-catch {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  .top-layout02 .l-btn {
    margin-top: 30px;
    text-align: center;
  }
}
.sec04 {
  padding: 180px 0 190px;
  overflow: hidden;
}

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

.sec04 .container::before {
  content: "";
  background: url(../images/sec04_deco@2x.png) no-repeat center/contain;
  width: 362px;
  height: 219px;
  position: absolute;
  top: -180px;
  right: -16.67vw;
  z-index: -1;
}

.sec04 .l-btn {
  text-align: center;
  margin-top: 30px;
}

.l-top-card01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 48px;
}

.l-top-card01 .l-item {
  position: relative;
}

.l-top-card01 .num {
  font-family: var(--font_en);
  font-size: 7rem;
  line-height: 1;
  background: linear-gradient(135deg, #67b4a8 0%, #7fbf93 50%, #a8cc45 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  position: absolute;
  top: -35px;
  left: 35px;
  z-index: 2;
}

.l-top-card01 .l-img {
  margin-bottom: 30px;
}

.l-top-card01 .l-txt {
  font-family: var(--font_jp);
  font-size: 2.1rem;
  color: var(--color_text_sub);
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 50px 0;
  }
  .sec04 .container::before {
    width: 170px;
    height: 100px;
    top: -50px;
    right: -5vw;
  }
  .l-top-card01 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .l-top-card01 .num {
    font-size: 6rem;
    top: -30px;
    left: 20px;
  }
  .l-top-card01 .l-img {
    margin-bottom: 20px;
  }
  .l-top-card01 .l-txt {
    font-size: 1.8rem;
  }
}
.sec05 {
  padding: 0 0 195px;
}

.sec05 .btn-wrap {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .sec05 {
    padding: 50px 0;
  }
  .sec05 .btn-wrap {
    margin-top: 30px;
  }
}
.sec06 {
  padding: 0 0 180px;
  position: relative;
  z-index: 1;
}

.sec06::before {
  content: "";
  background: -webkit-gradient(linear, right top, left top, from(rgba(103, 180, 168, 0.2)), color-stop(38%, rgba(127, 191, 147, 0.2)), to(rgba(168, 204, 69, 0.2)));
  background: linear-gradient(270deg, rgba(103, 180, 168, 0.2) 0%, rgba(127, 191, 147, 0.2) 38%, rgba(168, 204, 69, 0.2) 100%);
  position: absolute;
  inset: 75px 0 0;
  z-index: -1;
}

.l-top-card02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.l-top-card02 .l-desc {
  padding: 25px 40px 40px;
  background: #fff;
}

.l-top-card02 .l-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.l-top-card02 .l-ttl .icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(45deg, #96D5CB 0%, #B4E5C4 38%, #D0E88D 100%);
}

.l-top-card02 .l-ttl .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 3rem;
  color: var(--color_text_sub);
  line-height: 1.76;
  letter-spacing: 0.05em;
}

.l-top-card02 .l-btn {
  text-align: center;
  margin-top: 25px;
}

.l-top-card03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 38px;
}

.l-top-card03 .l-item a {
  display: block;
  height: 100%;
  padding: 35px 30px 50px;
  background: #fff;
  border: 1px solid var(--color_secondary);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-top-card03 .l-item a::before {
  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: 37px;
  height: 7px;
  position: absolute;
  right: 15px;
  bottom: 25px;
}

@media (any-hover: hover) {
  .l-top-card03 .l-item a:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  }
}
.l-top-card03 .l-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(45deg, #96D5CB 0%, #B4E5C4 38%, #D0E88D 100%);
  margin: 0 auto 15px;
  display: grid;
  place-items: center;
}

.l-top-card03 .l-ttl {
  text-align: center;
  font-size: 2rem;
  color: var(--color_text_sub);
  line-height: 1.75;
  margin-bottom: 20px;
}

.l-top-card03 .l-ttl.min {
  min-height: 3.5em;
}

@media (max-width: 800px) {
  .sec06 {
    padding: 50px 0;
  }
  .l-top-card02 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .l-top-card02 .l-desc {
    padding: 25px;
  }
  .l-top-card02 .l-ttl .icon {
    width: 50px;
    height: 50px;
  }
  .l-top-card02 .l-ttl .icon img {
    height: 30px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .l-top-card02 .l-ttl .txt {
    font-size: 2rem;
  }
  .l-top-card03 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .l-top-card03 .l-item a {
    padding: 25px 25px 50px;
  }
  .l-top-card03 .l-img {
    width: 90px;
    height: 90px;
  }
  .l-top-card03 .l-img img {
    height: 50px;
    width: 80%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .l-top-card03 .l-ttl {
    font-size: 1.8rem;
  }
  .l-top-card03 .l-ttl.min {
    min-height: 0;
  }
}
.sec07 {
  padding: 280px 0 180px;
  position: relative;
  z-index: 1;
  max-width: 1800px;
  margin-inline: auto;
}

.sec07::before {
  content: "";
  background: url(../images/sec07_deco@2x.png) no-repeat center/contain;
  width: 186px;
  height: 294px;
  position: absolute;
  top: 150px;
  left: -60px;
  z-index: -1;
}

.top-layout03 {
  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: 60px;
}

.top-layout03 .l-img {
  width: 38.57%;
  padding: 0 100px 120px 0;
  position: relative;
  margin-top: 50px;
}

.top-layout03 .l-img .img-sub {
  width: 41.48%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.top-layout03 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 0 0 7.14%;
}

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

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

@media (max-width: 800px) {
  .sec07 {
    padding: 50px 0;
  }
  .sec07::before {
    display: none;
  }
  .top-layout03 {
    display: block;
  }
  .top-layout03 .l-img {
    width: 100%;
    margin: 0 0 30px;
    padding: 0 45px 60px 0;
  }
  .top-layout03 .l-img .img-sub {
    width: 45%;
  }
  .top-layout03 .l-desc {
    margin: 0;
  }
  .top-layout03 .l-btn {
    margin-top: 30px;
    text-align: center;
  }
}
.sec08 {
  padding: 0 0 120px;
  position: relative;
  z-index: 1;
}

.sec08::before {
  content: "";
  background: #F4F4F4;
  position: absolute;
  inset: 55px 0 0;
  z-index: -1;
}

.l-top-post01 {
  display: grid;
  grid-template-columns: 32.25% 1fr;
  grid-template-rows: 1fr auto;
  gap: 50px;
}

.l-top-post01 .l-ttl {
  grid-area: 1/1/2/2;
  color: var(--color_text_sub);
}

.l-top-post01 .l-ttl [lang=en] {
  font-family: var(--font_en);
  font-size: 8rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.l-top-post01 .l-ttl .jp {
  font-size: 2.4rem;
}

.l-top-post01 .top-post-style02 {
  grid-area: 1/2/3/3;
}

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

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

.top-post-style02 .post-img {
  margin-bottom: 23px;
}

.top-post-style02 .post-img a {
  display: block;
  border: 1px solid #D4D9D9;
  aspect-ratio: 241/171;
  overflow: hidden;
}

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

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

.top-post-style02 time {
  font-family: var(--font_jp);
  font-size: 1.3rem;
  color: #9DA3A3;
  display: block;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.top-post-style02 .post-ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

@media (any-hover: hover) {
  .top-post-style02 .post-ttl a:hover {
    text-decoration: underline;
  }
}
.top-post-style02 .post-ttl a:focus-visible {
  text-decoration: underline;
}

.top-post-style02 .category {
  display: inline-block;
  padding: 5px 8px;
  background: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
  margin: 0 5px 5px 0;
}

@media (max-width: 800px) {
  .sec08 {
    padding: 50px 0;
  }
  .sec08::before {
    inset: 80px 0 0;
  }
  .l-top-post01 {
    display: block;
  }
  .l-top-post01 .l-ttl {
    margin-bottom: 40px;
  }
  .l-top-post01 .l-ttl [lang=en] {
    font-size: 5rem;
  }
  .l-top-post01 .l-ttl .jp {
    font-size: 2.3rem;
  }
  .l-top-post01 .l-btn {
    margin-top: 30px;
    text-align: center;
  }
  .top-post-style02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5vw;
    width: calc(100% + 5vw);
    padding: 0 5vw 10px 0;
    overflow-x: auto;
  }
  .top-post-style02 .post-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
  }
}
.sec09 {
  padding: 180px 0 160px;
  position: relative;
  z-index: 1;
}

.sec09::before {
  content: "";
  background: #F4F4F4;
  position: absolute;
  inset: 255px 0 0;
  z-index: -1;
}

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

.insta-dummy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 800px) {
  .sec09 {
    padding: 50px 0;
  }
  .sec09::before {
    inset: 80px 0 0;
  }
  .insta-dummy {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sec10 {
  padding: 210px 0 180px;
  position: relative;
  max-width: 1800px;
  margin-inline: auto;
  z-index: 1;
}

.sec10::before {
  content: "";
  background: url(../images/sec10_deco@2x.png) no-repeat center/contain;
  width: 320px;
  height: 323px;
  position: absolute;
  top: 70px;
  right: -125px;
  z-index: -1;
}

.top-layout04 {
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-rows: auto 1fr;
  gap: 30px 80px;
}

@media (max-width: 1450px) {
  .top-layout04 {
    grid-template-columns: 50% 1fr;
  }
}
@media (max-width: 1200px) {
  .top-layout04 {
    grid-template-columns: 40% 1fr;
  }
}
.top-layout04 .l-map {
  grid-area: 1/1/3/2;
}

.top-layout04 .l-map iframe {
  width: 100%;
  height: 665px;
}

.top-layout04 .l-desc {
  grid-area: 1/2/2/3;
}

.top-layout04 .t-h2-02 {
  margin-bottom: 50px;
}

.top-layout04 .l-item + .l-item {
  margin-top: 30px;
}

.top-layout04 .btn-wrap {
  grid-area: 2/2/3/3;
}

.ttl-style01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #D4D9D9;
  margin-bottom: 15px;
}

.ttl-style01 .txt {
  font-size: 1.8rem;
  color: var(--color_text_sub);
  line-height: 1.77;
}

@media (max-width: 800px) {
  .sec10 {
    padding: 50px 0;
  }
  .sec10::before {
    height: 210px;
    top: 25px;
  }
  .top-layout04 {
    display: block;
  }
  .top-layout04 .l-map {
    margin-top: 30px;
  }
  .top-layout04 .l-map iframe {
    height: 300px;
  }
  .top-layout04 .btn-wrap {
    margin-top: 30px;
  }
}
.sec11 {
  padding: 0 0 160px;
  position: relative;
  z-index: 1;
}

.sec11::before {
  content: "";
  background: #F4F4F4;
  position: absolute;
  inset: 75px 0 0;
  z-index: -1;
}

.sec11 .short + .short {
  margin-top: 40px;
}

.ttl-style02 {
  font-size: 2.1rem;
  line-height: 1.52;
  color: var(--color_text_sub);
  padding-bottom: 10px;
  border-bottom: 1px solid #D4D9D9;
  margin-bottom: 25px;
  letter-spacing: 0.24em;
  font-family: var(--font_jp);
}

.cash-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 20px;
}

.cash-list li {
  display: grid;
  place-items: center;
}

.cash-list img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 800px) {
  .sec11 {
    padding: 50px 0;
  }
  .sec11::before {
    inset: 80px 0 0;
  }
  .ttl-style02 {
    font-size: 1.8rem;
  }
  .cash-list {
    gap: 10px;
  }
}
.sec12 {
  padding: 180px 0;
  background: url(../images/sec12_bg.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
  color: #fff;
}

.sec12::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#67B4A8), color-stop(38%, #7FBF93), to(#A8CC45));
  background: linear-gradient(90deg, #67B4A8 0%, #7FBF93 38%, #A8CC45 100%);
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.85;
}

.sec12 .t-h2-02 {
  color: currentColor;
}

.top-layout05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 85px;
}

.top-layout05 .l-img {
  width: 47%;
}

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

.top-layout05 .l-btn {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .sec12 {
    padding: 50px 0;
  }
  .top-layout05 {
    display: block;
  }
  .top-layout05 .l-img {
    width: 100%;
  }
  .top-layout05 .l-desc {
    margin-top: 30px;
  }
  .top-layout05 .l-btn {
    margin-top: 30px;
    text-align: center;
  }
}
/*------------
Footer
--------------*/
.footer {
  position: relative;
  padding: 180px 0 50px;
}

.f-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 50px;
}

.f-layout > .l-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.site-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px 0;
  color: var(--color_text_sub);
  margin-bottom: 25px;
}

.site-map-item:first-of-type {
  margin-right: 90px;
}

.site-map-item .item-ttl {
  font-family: var(--font_jp);
  line-height: 1.75;
  margin-bottom: 15px;
}

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

.list-site-map li a {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
  padding-left: 13px;
  position: relative;
}

.list-site-map li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #9DA3A3;
  border-right: 2px solid #9DA3A3;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

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

.list-site-map.list-col2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  gap: 0 30px;
}

.site-map-other ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 25px;
}

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

.site-map-other ul li a {
  font-size: 1.4rem;
  line-height: 1;
}

@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;
}

.pagetop {
  position: absolute;
  top: 180px;
  right: 45px;
  z-index: 2;
}

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

.copyright {
  font-size: 1.2rem;
  color: #9DA3A3;
  line-height: 1;
  text-align: right;
}

@media (max-width: 800px) {
  .footer {
    padding: 50px 0 100px;
  }
  .f-layout {
    display: block;
  }
  .f-layout > .l-item + .l-item {
    margin-top: 50px;
  }
  .f-logo {
    max-width: 280px;
    margin-inline: auto;
  }
  .site-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .list-site-map.list-col2 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    gap: 0;
  }
  .site-map-other ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .copyright {
    text-align: center;
  }
  .pagetop {
    display: none;
  }
}
/*------------
Under layout
--------------*/
.page-ttl {
  position: relative;
  z-index: 1;
  margin-top: 105px;
}

.page-ttl::before {
  content: "";
  background: url(../images/under/pagettl_bg.jpg) no-repeat center/cover;
  position: absolute;
  inset: 0 0 0 calc((100% - 1400px) / 2);
  z-index: -1;
}

@media (max-width: 1500px) {
  .page-ttl::before {
    inset: 0 0 0 3vw;
  }
}
.page-ttl::after {
  content: "";
  background: oklch(from #fff l c h/0.75);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-ttl .title {
  font-family: var(--font_jp);
  font-size: 4.2rem;
  max-width: 1024px;
  width: 90%;
  margin-inline: auto;
  height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color_text_sub);
}

.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 {
  overflow: clip;
}

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

.u-h2,
.postdata h2 {
  font-size: 3rem;
  text-align: center;
  color: var(--color_text_sub);
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 40px;
}

.u-h2::before,
.postdata h2::before {
  content: "";
  background: linear-gradient(89deg, #67B4A8 0%, #7FBF93 38%, #A8CC45 100%);
  width: 50px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.u-h2 .ttl-sub,
.postdata h2 .ttl-sub {
  font-size: 2.5rem;
  color: #88be9d;
}

.u-h3,
.postdata h3 {
  font-size: 2.1rem;
  color: var(--color_text_sub);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 30px;
}

.u-h4,
.postdata h4 {
  font-size: 1.8rem;
  color: var(--color_text_sub);
  padding-left: 11px;
  position: relative;
  margin-bottom: 15px;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background: var(--color_primary);
  width: 3px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 9px;
}

.u-h5 {
  font-size: 1.6rem;
  color: var(--color_primary);
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .page-ttl {
    margin-top: 82px;
  }
  .page-ttl .title {
    font-size: 2.5rem;
    height: 150px;
  }
  .page-ttl::before {
    inset: 0;
  }
  .breadcrumb {
    overflow: auto;
    white-space: nowrap;
  }
  .u-h2,
  .postdata h2 {
    font-size: 2.3rem;
  }
  .u-h2 .ttl-sub,
  .postdata h2 .ttl-sub {
    font-size: 2rem;
  }
  .u-h3,
  .postdata h3 {
    font-size: 2rem;
  }
  .u-h4,
  .postdata h4 {
    font-size: 1.8rem;
  }
}
/*------------
Under parts
--------------*/
.short + .short {
  margin-top: 50px;
}

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

.tall {
  padding: 50px 0;
}

.sec-bg01 {
  background: -webkit-gradient(linear, left top, right top, from(#67B4A8), color-stop(38%, #7FBF93), to(#A8CC45));
  background: linear-gradient(90deg, #67B4A8 0%, #7FBF93 38%, #A8CC45 100%);
  padding: 100px 0;
}

@media (max-width: 800px) {
  .sec-bg01 {
    padding: 80px 0;
  }
}
.l-imgR,
.l-imgL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-disc: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: 7px;
  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: 10px;
  left: 0;
}

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

.list-check02 > li {
  padding-left: 28px;
  position: relative;
  font-family: var(--font_jp);
}

.list-check02 > li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  width: 19px;
  height: 14px;
  position: absolute;
  top: 9px;
  left: 0;
}

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

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

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

@media (max-width: 800px) {
  .list-num > li:before {
    top: 5px;
  }
  .list-check > li::before {
    top: 9px;
  }
}
/* テーブルデザイン */
.table-style01 {
  background: #fff;
}
.table-style01 tr.border-red {
  border: 2px solid #E44747;
}

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

.table-style01 th {
  background-color: var(--color_tertiary);
  font-family: var(--font_jp);
  font-weight: 500;
}

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

.table-style01 .icon {
  font-size: 3rem;
}

.table-style01 .img-small {
  width: 65%;
  margin-inline: auto;
}

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

@media (max-width: 800px) {
  .box-style01 {
    padding: 25px;
  }
}
.box-style02 {
  padding: 5%;
  border: 1px solid var(--color_primary);
  background: #fff;
}

.box-style02.bg01 {
  background: var(--color_tertiary);
  border: none;
}

.box-style02.bg02 {
  background: var(--color_bg);
  border: none;
}

.box-style02 .box-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.box-style02 .box-ttl .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-decoration: underline;
  text-decoration-thickness: 0.7em;
  text-decoration-color: #D0E684;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  font-size: 2.1rem;
}

.box-style02 .box-ttl02 {
  margin-bottom: 30px;
}

.box-style02 .box-ttl02 [lang=en] {
  font-family: var(--font_en);
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #D0E684;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.box-style02 .box-ttl02 .jp {
  font-size: 2.1rem;
}

.box-style02 .box-ttl03 {
  font-size: 2.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.box-style02 .box-ttl03::before {
  content: "";
  -webkit-mask: url(../images/share/icon_alert.svg) no-repeat center/contain;
  mask: url(../images/share/icon_alert.svg) no-repeat center/contain;
  background: currentColor;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
  height: 25px;
  display: inline-block;
  margin-top: 7px;
}

@media (max-width: 800px) {
  .box-style02 {
    padding: 25px;
  }
  .box-style02 .box-ttl {
    display: block;
  }
  .box-style02 .box-ttl img {
    width: 60px;
    margin-bottom: 10px;
  }
  .box-style02 .box-ttl .txt {
    font-size: 2rem;
  }
  .box-style02 .box-ttl02 [lang=en] {
    font-size: 2.5rem;
  }
  .box-style02 .box-ttl02 .jp {
    font-size: 2rem;
  }
}
.tel-layout {
  background: var(--color_bg);
  max-width: 900px;
  padding: 50px;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid var(--color_primary);
  text-align: center;
  margin: 0 auto 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  padding-bottom: 10px;
  color: var(--color_text_sub);
  font-family: var(--font_jp);
  line-height: 1.8;
}

.tel-layout .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: 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, var(--color_primary) 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 .col-ttl {
  font-family: var(--font_jp);
  text-align: center;
  margin-bottom: 10px;
}

.tel-layout .l-time {
  display: grid;
  grid-gap: 5px;
  line-height: 1.5;
  margin: 20px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .l-time .item {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 10px;
}

.tel-layout .l-time dt {
  border: 1px solid currentColor;
  text-align: center;
  font-size: 1rem;
  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;
  font-weight: 700;
  color: var(--color_primary);
}

.tel-layout .l-time dd {
  font-family: var(--font_jp);
  font-size: 1.5rem;
}

@media (max-width: 800px) {
  .tel-layout {
    padding: 35px 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, var(--color_primary) 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;
  }
}
.flow-style {
  display: grid;
  gap: 40px;
}

.flow-style > li {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 50px;
  position: relative;
  min-height: 150px;
}

.flow-style > li:not(:last-child)::before {
  content: "";
  background-color: var(--color_primary);
  width: 1px;
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 33px;
}

.flow-style > li:not(:last-child)::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color_primary);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -1px;
  left: 29px;
}

.flow-style .flow-num {
  font-size: 3rem;
  font-family: var(--font_en);
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color_primary);
}

.flow-style .flow-num::before {
  content: attr(data-en);
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.flow-style .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;
}

.flow-style .flow-img {
  width: 35%;
}

.flow-style .flow-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 10px;
}

.flow-style .flow-ttl {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--color_text_sub);
}

@media (max-width: 800px) {
  .flow-style {
    gap: 40px;
  }
  .flow-style > li {
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
  }
  .flow-style > li:not(:last-child)::before {
    top: 55px;
    left: 24px;
  }
  .flow-style > li:not(:last-child)::after {
    left: 20px;
  }
  .flow-style .flow-num {
    font-size: 2.5rem;
  }
  .flow-style .flow-num::before {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  .flow-style .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .flow-style .flow-img {
    width: 100%;
  }
  .flow-style .flow-ttl {
    margin-bottom: 10px;
  }
  .flow-style .flow-desc {
    padding-top: 0;
  }
}
.flow-style02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  padding-top: 15px;
}

.flow-style02 > li {
  background-color: var(--color_bg);
  padding: 25px;
  position: relative;
}

.flow-style02 > li:not(:last-child)::after {
  content: "";
  background: var(--color_secondary);
  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;
  top: 50%;
  right: -21px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow-style02 .flow-num {
  font-size: 2.5rem;
  font-family: var(--font_en);
  line-height: 1;
  color: var(--color_primary);
  position: absolute;
  top: -15px;
  left: 30px;
}

.flow-style02 .flow-img {
  margin-bottom: 15px;
}

.flow-style02 .flow-ttl {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

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

.flow-style03 > li {
  background: var(--color_bg);
  padding: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flow-style03 > li:not(:last-child)::after {
  content: "";
  background: var(--color_secondary);
  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;
  top: 50%;
  right: -21px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

.flow-style03 .flow-num {
  background: #fff;
  display: table;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.8rem;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

.flow-style03 .flow-ttl {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.flow-style03 .flow-img {
  margin-bottom: 20px;
}

.flow-style03 .flow-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flow-style03 .flow-btn {
  margin-top: 15px;
}

.flow-style03 .flow-btn .btn-more {
  display: block;
  min-width: 0;
  width: calc(100% - 40px);
  margin-inline: auto;
}

@media (max-width: 800px) {
  .flow-style03,
  .flow-style03.col2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .flow-style03 > li:not(:last-child)::after,
  .flow-style03.col2 > li:not(:last-child)::after {
    top: auto;
    bottom: -28px;
    right: 50% !important;
    -webkit-transform: translateX(50%) rotate(90deg);
    transform: translateX(50%) rotate(90deg);
  }
  .flow-style03 .flow-img.col3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.list-card01 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.list-card01 > li {
  padding: 30px 5%;
  background: var(--color_bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font_jp);
  text-align: center;
}

.list-card01 .num {
  display: block;
  font-family: var(--font_en);
  font-size: 2rem;
  color: var(--color_primary);
  line-height: 1;
  margin-bottom: 15px;
}

.list-card01 .num::before {
  content: attr(data-en);
  font-size: 1.5rem;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}

.list-card01 .desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: grid;
  place-items: center;
}

@media (max-width: 800px) {
  .list-card01 {
    grid-template-columns: 1fr;
  }
  .list-card01 > li {
    padding: 25px 5%;
  }
}
/*医療費控除簡易計算*/
.calculation-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 35px;
}

.calculation-layout .item {
  background-color: var(--color_bg);
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  height: 80px;
  position: relative;
}

.calculation-layout .item::before {
  position: absolute;
  left: -24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.calculation-layout .item + .item::before {
  content: "ー";
}

.calculation-layout .item.answer {
  background-color: var(--color_secondary);
  color: #fff;
  width: 100%;
}

.calculation-layout .item.answer + .item::before {
  content: "=";
  color: var(--color_text);
  left: -23px;
}

.scroll-txt {
  display: none;
}

@media (max-width: 800px) {
  .scroll-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  .scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }
  .calculation-layout-wrap {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .calculation-layout-wrap::-webkit-scrollbar {
    height: 5px;
  }
  .calculation-layout-wrap::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }
  .calculation-layout-wrap::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }
  .calculation-layout-wrap .calculation-layout {
    margin-bottom: 10px !important;
    width: 600px;
  }
}
.card-style01 .card-item {
  padding: 5%;
  background: #fff;
  border: 1px solid var(--color_secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-style01.bg01 .card-item {
  background: var(--color_bg);
  border: none;
}

.card-style01 .item-img {
  text-align: center;
  margin-bottom: 15px;
}

.card-style01 .item-img.small {
  width: 65%;
  margin-inline: auto;
}

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

.card-style01 .item-ttl {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--color_text_sub);
  font-family: var(--font_jp);
  line-height: 1.8;
}

.card-style01 .item-btn {
  margin-top: 15px;
}

.card-style01 .btn-more {
  display: block;
  min-width: 0;
  width: calc(100% - 40px);
  margin-inline: auto;
}

@media (max-width: 800px) {
  .card-style01 .card-item {
    padding: 25px;
  }
}
.img-layout01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.img-layout01::before {
  content: "";
  background: var(--color_bg);
  position: absolute;
  inset: 125px -390px 0;
  z-index: -1;
}

.img-layout01 .l-img {
  width: 42%;
}

.img-layout01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 145px;
  position: relative;
}

.img-layout01 .num {
  font-family: var(--font_en);
  font-size: 9.5rem;
  color: var(--color_text_sub);
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.img-layout01 .num::before {
  content: attr(data-en);
  font-size: 6rem;
  display: inline-block;
  margin-right: 20px;
}

.img-layout01 .l-ttl {
  font-size: 2.1rem;
  line-height: 1.81;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 50px;
}

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

.img-layout01.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 800px) {
  .img-layout01 {
    display: block;
  }
  .img-layout01::before {
    inset: 200px -5vw 0;
  }
  .img-layout01 .l-img {
    width: 100%;
    margin-bottom: 30px;
  }
  .img-layout01 .l-desc {
    padding: 0;
  }
  .img-layout01 .num {
    position: static;
    font-size: 5rem;
    display: inline-block;
    margin-bottom: 20px;
  }
  .img-layout01 .num::before {
    font-size: 3.5rem;
  }
  .img-layout01 .l-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .img-layout01 .l-btn {
    margin-top: 30px;
  }
}
.img-layout02 {
  max-width: 1800px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 75px;
}

.img-layout02 .l-img {
  width: 55%;
}

.img-layout02 .l-img img {
  width: 100%;
}

.img-layout02 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 2;
  margin: 0 0 -75px -215px;
  padding: 100px 70px;
  background: var(--color_bg);
}

.img-layout02 .en {
  font-family: var(--font_en);
  font-size: 12rem;
  color: var(--color_text_sub);
  line-height: 1;
  position: absolute;
  left: 70px;
  top: -80px;
  z-index: 3;
}

.img-layout02 .l-txt {
  font-family: var(--font_jp);
  font-size: 3rem;
  color: var(--color_text_sub);
  line-height: 1.76;
}

@media (max-width: 800px) {
  .img-layout02 {
    display: block;
    padding: 0;
  }
  .img-layout02 .l-img {
    width: 100%;
  }
  .img-layout02 .l-desc {
    width: 90%;
    margin: -35px auto 0;
    padding: 35px 5vw 25px;
  }
  .img-layout02 .en {
    font-size: 5rem;
    left: 5vw;
    top: -35px;
  }
  .img-layout02 .l-txt {
    font-size: 1.6rem;
  }
}
.img-layout03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.img-layout03 .l-img {
  width: 50%;
  margin: 0 0 0 -10%;
  position: relative;
  z-index: 2;
}

.img-layout03 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 70px 50px 50px 150px;
  margin: 100px 0 0 -100px;
  position: relative;
  background: var(--color_bg);
}

.img-layout03 .l-ttl {
  margin-bottom: 40px;
  color: var(--color_text_sub);
}

.img-layout03 .l-ttl [lang=en] {
  font-family: var(--font_en);
  font-size: 5.5rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: right;
  position: absolute;
  right: 50px;
  top: -35px;
  z-index: 2;
  opacity: 0.3;
}

.img-layout03 .l-ttl .jp {
  font-size: 3rem;
}

.img-layout03.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.img-layout03.reverse .l-img {
  margin: 0 -10% 0 0;
}

.img-layout03.reverse .l-desc {
  padding: 50px 150px 50px 50px;
  margin: 100px -100px 0 0;
}

.img-layout03.reverse .l-ttl [lang=en] {
  right: auto;
  left: 50px;
}

@media (max-width: 1350px) {
  .img-layout03 .l-img {
    margin: 0 0 0 -5%;
  }
  .img-layout03.reverse .l-img {
    margin: 0 -5% 0 0;
  }
}
@media (max-width: 1250px) {
  .img-layout03 .l-img,
  .img-layout03.reverse .l-img {
    margin: 0;
  }
}
@media (max-width: 800px) {
  .img-layout03 {
    display: block;
  }
  .img-layout03 .l-img,
  .img-layout03.reverse .l-img {
    width: 100%;
  }
  .img-layout03 .l-desc,
  .img-layout03.reverse .l-desc {
    padding: 75px 5vw 25px;
    margin: -50px -5vw 0;
  }
  .img-layout03 .l-ttl {
    margin-bottom: 30px;
  }
  .img-layout03 .l-ttl [lang=en] {
    position: static;
    font-size: 4rem;
    margin-bottom: 10px;
    text-align: left;
  }
  .img-layout03 .l-ttl .jp {
    font-size: 2.3rem;
  }
}
.staff-layout .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 8%;
}

.staff-layout .l-img {
  width: 32%;
}

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

.staff-layout .job {
  font-family: var(--font_jp);
  margin-bottom: 25px;
}

.staff-layout .l-ttl {
  color: var(--color_text_sub);
  line-height: 1;
  margin-bottom: 35px;
}

.staff-layout .name,
.staff-layout .kana {
  display: inline-block;
}

.staff-layout .name {
  font-size: 2.5rem;
}

.staff-layout .kana {
  color: var(--color_primary);
  font-size: 1.5rem;
  font-family: var(--font_en);
  margin-left: 15px;
}

.card-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5%;
  font-size: 14px;
}

.card-profile .item {
  background-color: var(--color_bg);
  padding: 30px;
}

.card-profile .card-ttl {
  color: var(--color_text_sub);
  border-bottom: 1px dashed var(--color_primary);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.7rem;
}

.dl-career {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px 15px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .staff-layout .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
  .staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }
  .staff-layout .l-ttl {
    margin-bottom: 25px;
  }
  .staff-layout .name {
    font-size: 2.2rem;
  }
  .staff-layout .kana {
    font-size: 1.2rem;
  }
  .card-profile {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .card-profile .item {
    padding: 20px;
  }
}
.u-catch {
  font-family: var(--font_jp);
  font-size: 2.4rem;
}

@media (max-width: 800px) {
  .u-catch {
    font-size: 1.8rem;
  }
}
.list-anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 15px;
}

.list-anchor-link li {
  position: relative;
}

.list-anchor-link li::after {
  content: "";
  display: inline-block;
  background: #e0e0e0;
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  padding-right: 25px;
}

.list-anchor-link a::before {
  content: "";
  background: url(../images/share/ico_arrow_down.svg) no-repeat 0 0/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -3px;
  top: 3px;
}

.list-anchor-link a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .list-anchor-link {
    display: block;
  }
  .list-anchor-link li::after {
    display: none;
  }
  .list-anchor-link a {
    padding: 0 0 0 30px;
  }
  .list-anchor-link a::before {
    right: inherit;
    left: 0;
    top: 4px;
  }
}
.faq-style {
  border-bottom: 1px solid var(--color_border);
}

.faq-style .item {
  padding: 40px 40px 40px 100px;
}

.faq-style .item + .item {
  border-top: 1px solid var(--color_border);
}

.faq-style dt {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 25px;
  position: relative;
}

.faq-style .faq-icon {
  color: var(--color_primary);
  font-size: 3rem;
  font-family: var(--font_en);
  line-height: 1;
  position: absolute;
  top: 4px;
  left: -60px;
}

@media (max-width: 800px) {
  .faq-style .item {
    padding: 40px 0 40px 60px;
  }
  .faq-style dt {
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  .faq-style .faq-icon {
    top: 0;
  }
}
.ttl-style03 {
  margin-bottom: 30px;
  padding-top: 25px;
  position: relative;
}

.ttl-style03 .num {
  font-family: var(--font_en);
  font-size: 4.3rem;
  line-height: 1;
  color: var(--color_primary);
  position: absolute;
  left: 10px;
  top: 0;
  z-index: 2;
}

.ttl-style03 .ttl {
  font-size: 2.1rem;
  color: var(--color_text_sub);
  padding: 10px 30px;
  background: #D8EADF;
}

@media (max-width: 800px) {
  .ttl-style03 {
    padding-top: 20px;
  }
  .ttl-style03 .num {
    font-size: 3.5rem;
  }
  .ttl-style03 .ttl {
    font-size: 2rem;
    padding: 10px 20px;
  }
}
.dl-style01 {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-gap: 10px 0;
}

.dl-style01 > dt {
  background: var(--color_tertiary);
  font-size: 1.7rem;
  padding: 20px;
  font-family: var(--font_jp);
  font-weight: 500;
}

.dl-style01 > dt .num {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font_en);
  line-height: 1;
  margin-bottom: 5px;
}

.dl-style01 > dd {
  background: var(--color_bg);
  padding: 20px;
}

@media (max-width: 800px) {
  .dl-style01 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .dl-style01 > dt {
    font-size: 1.5rem;
    padding: 15px;
  }
  .dl-style01 > dd {
    padding: 15px;
  }
  .dl-style01 > dd + dt {
    margin-top: 15px;
  }
}
@media (max-width: 800px) {
  .img-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .img-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;
  }
  .img-scroll::-webkit-scrollbar {
    height: 5px;
  }
  .img-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }
  .img-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }
  .img-scroll .scroll-inner {
    width: 200%;
    margin-bottom: 10px;
  }
}
.merit-demerit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4%;
}

.merit-demerit .item {
  background: var(--color_bg);
  border-top: 3px solid var(--color_primary);
  padding: 35px;
}

.merit-demerit .item:nth-of-type(2) {
  border-color: var(--color_secondary);
}

.merit-demerit .item-ttl {
  margin-bottom: 25px;
}

.merit-demerit .item-ttl [lang=en],
.merit-demerit .item-ttl .jp {
  display: inline-block;
  line-height: 1;
}

.merit-demerit .item-ttl [lang=en] {
  letter-spacing: 0.05em;
  margin-right: 15px;
  font-family: var(--font_en);
  font-size: 3rem;
}

.merit-demerit .item-ttl .jp {
  font-size: 1.5rem;
  color: var(--color_text_sub);
}

@media (max-width: 800px) {
  .merit-demerit {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .merit-demerit .item {
    padding: 25px;
  }
  .merit-demerit .item-ttl {
    margin-bottom: 20px;
  }
  .merit-demerit .item-ttl [lang=en] {
    font-size: 2.5rem;
  }
}
/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: 1.8rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

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

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

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

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

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  margin-bottom: 15px;
}

/*普通投稿 old*/
.l-post-type01 {
  margin-bottom: 80px;
}

.l-post-type01 .post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-post-type01 .post-item + .post-item {
  margin-top: 50px;
}

.l-post-type01 .post-ttl {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  font-family: var(--font_jp);
  font-size: 2rem;
  word-break: break-all;
  position: relative;
  margin: 0 0 25px;
}

.l-post-type01 .post-ttl a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.l-post-type01 .post-ttl a:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .l-post-type01 .post-ttl a:hover {
    opacity: 0.5;
  }
}
.l-post-type01 .post-img {
  margin: 0 30px 0 0;
  width: 250px;
}

.l-post-type01 .post-img img {
  width: 250px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-post-type01 .post-img a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.l-post-type01 .post-img a:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .l-post-type01 .post-img a:hover {
    opacity: 0.5;
  }
}
.l-post-type01 .post-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-post-type01 .post-data {
  font-size: 1.3rem;
  margin: 0 0 5px;
}

.l-post-type01 time {
  display: inline-block;
  color: #98918c;
  font-size: 1.4rem;
  vertical-align: -1px;
  margin: 0 25px 0 0;
}

.l-post-type01 .category {
  background: var(--color_primary);
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  padding: 5px 8px;
  margin: 0 10px 0 0;
}

.l-post-type01 .post-txt {
  margin: 0 0 30px;
}

.l-post-type01 .post-btn {
  text-align: right;
}

.l-post-type01 .post-btn a {
  display: inline-block;
  background: var(--color_primary);
  color: #fff;
  font-family: "###";
  line-height: 1;
  text-align: center;
  padding: 15px 45px;
  min-width: 160px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 0;
}

.l-post-type01 .post-btn a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.l-post-type01 .post-btn a:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .l-post-type01 .post-btn a:hover {
    opacity: 0.5;
  }
}
@media (max-width: 800px) {
  .l-post-type01 {
    margin: 0 0 50px;
  }
  .l-post-type01 .post-item + .post-item {
    margin-top: 20px;
  }
  .l-post-type01 .post-ttl {
    font-size: 1.8rem;
    padding: 0 0 7px;
    margin: 0 0 15px;
  }
  .l-post-type01 .post-img {
    margin: 0 15px 0 0;
    width: 40%;
  }
  .l-post-type01 .post-img img {
    width: 100%;
    height: 25vw;
  }
  .l-post-type01 .post-desc {
    margin: -5px 0 0;
  }
  .l-post-type01 time {
    font-size: 1.2rem;
    margin: 0 15px 0 0;
  }
  .l-post-type01 .post-txt {
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
  }
  .l-post-type01 .post-btn {
    margin-top: 15px;
  }
  .l-post-type01 .post-btn a {
    padding: 12px 25px;
    font-size: 1.3rem;
    min-width: 130px;
  }
}
/* 普通投稿 */
.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;
}

.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-size: 1.5rem;
  font-family: var(--font_en);
}

.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_tertiary);
  border: 1px solid #fff;
  color: var(--color_text);
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

.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.5rem;
  font-family: var(--font_en);
  margin-right: 20px;
}

.single-post-layout .post-data .category {
  display: inline-block;
  background-color: var(--color_tertiary);
  border: 1px solid #fff;
  color: var(--color_text);
  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;
  text-decoration: none;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  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;
  margin: 0 30px 0 0;
}

.select-area .select-ttl {
  display: inline-block;
  font-family: "###";
  font-size: 1.6rem;
  margin: 0 15px 0 0;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
  background: #fff url(../images/share/ico_arrow_down.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: #333;
  font-size: 1.6rem;
  vertical-align: middle;
  height: 35px;
  min-width: 150px;
  padding: 5px 20px 5px 5px;
}

.select-area .select-category::-ms-expand {
  display: none;
}

@media (max-width: 800px) {
  .select-area {
    display: block;
    margin: 0 0 30px;
  }
  .select-area .select-item {
    margin: 0;
  }
  .select-area .select-item + .select-item {
    margin-top: 10px;
  }
  .select-area .select-ttl {
    font-size: 1.5rem;
  }
}
/*ページャー*/
.post-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-number span,
.post-number a {
  display: 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);
}

/*------------
症例紹介
--------------*/
.case-layout {
  background-color: #fff;
  border: 1px solid var(--color_secondary);
  padding: 6%;
  margin-bottom: 50px;
}

.case-layout time {
  color: #aaa;
  display: block;
  font-size: 1.5rem;
  margin-right: 15px;
  font-family: var(--font_en);
}

.case-layout .category {
  display: inline-block;
  background-color: var(--color_primary);
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

.case-layout .l-ttl {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: var(--color_text_sub);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color_border);
}

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

.case-layout .before-after {
  margin-bottom: 30px;
}

.post-table,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
  background-color: #fff;
  border: 1px solid #eee;
}

.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: 1px solid #eee;
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 15px;
}

.post-table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background-color: var(--color_tertiary);
  vertical-align: middle;
  text-align: left;
  width: 25%;
  font-family: var(--font_jp);
  font-weight: 500;
}

.case-layout .l-btn {
  text-align: center;
  margin-top: 50px;
}

.before-after {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5% 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5%;
}

.before-after .item {
  text-align: center;
  position: relative;
}

.before-after figure {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 300px;
  position: relative;
}

.before-after figure img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  max-height: 300px;
}

.before-after p {
  font-family: var(--font_en);
  text-align: center;
  font-size: 1.8rem;
}

.before-after p::before,
.before-after p::after {
  content: "-";
  margin: 0 5px;
}

@media (max-width: 800px) {
  .case-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .case-layout .post-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }
  .case-layout .before-after {
    margin-bottom: 30px;
  }
  .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: 10px;
    font-size: 1.4rem;
  }
  .post-table tr th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
    width: 100%;
  }
  .case-layout .l-btn {
    margin-top: 30px;
  }
  .before-after {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .before-after figure {
    height: auto;
  }
}
/*-----------------------------------------------------------
投稿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 #e8ecf0;
  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: 11px;
  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;
  }
}
/*お知らせ*/
.under-post-news {
  border-top: 1px solid #dfdfdf;
  margin-bottom: 30px;
}

.under-post-news a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #dfdfdf;
  padding: 20px 0;
}

.under-post-news a:focus-visible .ttl {
  text-decoration: underline;
}

@media (any-hover: hover) {
  .under-post-news a:hover .ttl {
    text-decoration: underline;
  }
}
.under-post-news time {
  display: inline-block;
  color: #888;
  white-space: nowrap;
  margin-right: 25px;
  font-family: var(--font_en);
}

.under-post-news .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_jp);
}

@media (max-width: 800px) {
  .under-post-news a {
    display: block;
    line-height: 1.5;
    padding: 10px 0;
  }
  .under-post-news time {
    margin-bottom: 5px;
  }
  .under-post-news .ttl {
    -webkit-line-clamp: 2;
  }
}
/*-----------------------------------------------------------
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: #F44336;
}

.fs14 {
  font-size: 1.4rem;
}

.fs15 {
  font-size: 1.5rem;
}

.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #D0E684;
  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;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.map {
  height: 450px;
}

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

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

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

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

.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: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 40px;
  width: 40px;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 23px;
  height: 23px;
  border: solid #333;
  border-width: 3px 3px 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% - 770px) / 2);
}

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

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

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

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

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

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

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

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .under-slider01 .splide__arrow--prev {
    left: -4%;
  }
  .under-slider01 .splide__arrow--next {
    right: -4%;
  }
}
.view-slider .splide {
  padding-bottom: 60px;
}

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

.view-slider .splide__arrow {
  top: calc(50% - 60px);
}

.view-slider .splide__pagination {
  bottom: 0;
}

.view-slider .item-ttl {
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.75;
  color: var(--color_text_sub);
  margin-top: 20px;
}

@media (max-width: 800px) {
  .view-slider .item-ttl {
    font-size: 1.7rem;
    margin-top: 15px;
  }
}
/*-----------------------------------------------------------
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);
}

.sec-first {
  position: relative;
  z-index: 1;
}

.sec-first::before {
  content: "";
  background: url(../images/sec02_deco@2x.png) no-repeat center/contain;
  width: 398px;
  height: 419px;
  position: absolute;
  bottom: -75px;
  left: -160px;
  z-index: -1;
}

.sec-first::after {
  content: "";
  background: url(../images/sec01_deco@2x.png) no-repeat center/contain;
  width: 250px;
  height: 351px;
  position: absolute;
  top: 0;
  right: -25px;
  z-index: -1;
}

@media (max-width: 800px) {
  .sec-first::before {
    width: 140px;
    height: 150px;
    left: -20px;
  }
  .sec-first::after {
    width: 140px;
    height: 190px;
    right: -50px;
  }
}
@media (max-width: 800px) {
  .scroll-wrap {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .scroll-wrap::-webkit-scrollbar {
    height: 5px;
  }
  .scroll-wrap::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }
  .scroll-wrap::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }
  .scroll-wrap .flow-style02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px 30px;
    margin-bottom: 10px !important;
    width: 250%;
  }
  .scroll-wrap .flow-style02 > li {
    min-width: 300px;
  }
}
.logo-link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}