@charset "UTF-8";

:root {
  --font_base: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  --font_en: "Cabin", sans-serif;
  --color_primary: #35B488;
  --color_secondary: #EE9D06;
  --color_tertiary: #C25F59;
  --color_bg: #F1F9F3;
  --color_border: #dfdfdf;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.8;
  font-family: var(--font_base);
}

/* リセットCSS - :where()で詳細度を0にして上書きしやすくする */
/* margin は削除 - WordPress ブロックエディタの論理プロパティ (margin-block-start) と競合するため */
:where(div,
  object,
  iframe,
  p,
  blockquote,
  pre,
  abbr,
  address,
  cite,
  code,
  del,
  dfn,
  img,
  ins,
  kbd,
  q,
  samp,
  sub,
  sup,
  var,
  b,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  caption,
  article,
  aside,
  canvas,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  menu,
  nav,
  section,
  summary,
  mark,
  audio,
  video,
  a) {
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

:where(span,
  small,
  em,
  time,
  i) {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

:where(p,
  ul,
  ol,
  li,
  dl,
  dt,
  dd) {
  margin-block-start: 0;
  margin-block-end: 0;
}

:where(dd) {
  margin-inline-start: 0;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

legend {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  line-height: 1.8;
  margin: 0;
}

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

:where(main,
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  menu,
  nav,
  section) {
  display: block;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
select {
  vertical-align: middle;
}

abbr[title],
dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

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

img {
  vertical-align: top;
}

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

th {
  font-weight: normal;
  text-align: left;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-size: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background: #d4dcd6;
}

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


html {
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

.link {
  text-decoration: underline;
}

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

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

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

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

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

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


/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  width: 100%;
}

/*------------
Header02
--------------*/
.header-layout02 {
  background-color: #fff;
  padding: 5px 25px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 134px;
  width: 100%;
}

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

.header-layout02 .h-logo img {
  width: 282px;
}

.header-layout02 .h-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 7px;
}

.header-layout02 .h-tel {
  display: inline-flex;
  align-items: center;
  font-family: var(--font_en);
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-right: 40px;
}

.header-layout02 .h-tel img {
  margin: 0 5px 0 0;
}

.header-layout02 .h-time {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
  grid-gap: 5px 10px;
  font-size: 13px;
  line-height: 1.3;
  margin-right: 10px;
}

.header-layout02 .h-time dt {
  border: 1px solid #37414F;
  border-radius: 2px;
  text-align: center;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 5px;
}

.header-layout02 .h-time dd {
  padding-top: 2px;
}

.header-layout02 .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: var(--color_secondary);
  border-radius: 25px;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 17px;
  height: 50px;
  padding: 10px 21px;
}

@media (max-width: 1024px) {
  .header-layout02 {
    padding: 10px;
    height: 60px;
  }

  .header-layout02 .h-logo img {
    width: 150px;
  }

  .header-layout02 .h-utility {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
/*normal*/
.gnavi-list {
  display: flex;
  justify-content: flex-end;
}

.gnavi-list>li {
  margin-left: 35px;
}

.gnavi-list>li>p,
.gnavi-list>li>a {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 17px;
}

.gnavi-list .current-menu-parent p,
.gnavi-list [aria-current="page"],
.gnavi-list a:hover {
  color: var(--color_tertiary);
}

/*dropdown*/
.gnavi-list .current-menu-item>a,
.gnavi-list a[href="#"] {
  pointer-events: none;
}

.gnavi-list .menu-item-has-children {
  display: flex;
  position: relative;
}

.gnavi-list .menu-item-has-children::after {
  content: "";
  display: block;
  border-bottom: 2px solid var(--color_tertiary);
  border-right: 2px solid var(--color_tertiary);
  width: 8px;
  height: 8px;
  margin: 13px 0 0 10px;
  transform: rotate(45deg);
  transform-origin: right;
}

.gnavi-list .menu-item-has-children>a:hover {
  opacity: 0.5;
}

.gnavi-list .menu-item-has-children.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.gnavi-list .menu-item-has-children .sub-menu {
  pointer-events: none;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  font-family: var(--font_jp);
  font-size: 14px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.gnavi-list .menu-item-has-children .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.gnavi-list .menu-item-has-children .sub-menu li {
  padding-left: 14px;
  position: relative;
}

.gnavi-list .menu-item-has-children .sub-menu li::before {
  content: "";
  background-color: #333;
  width: 6px;
  height: 1px;
  position: absolute;
  top: 12px;
  left: 0;
}

.gnavi-list .menu-item-has-children .sub-menu li+li {
  margin-top: 5px;
}

.gnavi-list .menu-item-has-children:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

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

.footer-layout01 {
  background-color: var(--color_bg);
  padding: 65px 0 60px;
}

.footer-layout01 .l-wrapper {
  display: grid;
  grid-template-columns: 45% 1fr;
  grid-gap: 5%;
}

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

.site-map {
  line-height: 1.5;
}

.site-map .sub-menu {
  margin-top: 14px;
}

.site-map .sub-menu li {
  margin-bottom: 12px;
}

.site-map .sub-menu li::before {
  content: "-";
  margin-right: 5px;
}

.site-map .no-link {
  font-family: var(--font_jp);
}

.site-map a:not([href="#"]):hover {
  text-decoration: underline;
}

.site-map a[href="#"] {
  cursor: auto;
  pointer-events: none;
  display: block;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

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

.footer-layout02 {
  overflow: hidden;
  padding: 99px 0 89px;
  position: relative;
}

.footer-layout02::before {
  content: "";
  background: url(../images/share/deco_circle01.png) no-repeat center center / contain;
  width: 552px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: -28%;
  left: -8%;
  z-index: -1;
}

.footer-layout02::after {
  content: "";
  background: url(../images/share/deco_circle01.png) no-repeat center center / contain;
  width: 552px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  bottom: -47%;
  right: -8%;
  z-index: -1;
}

.footer-layout02 .l-ttl {
  margin-bottom: 40px;
  text-align: center;
}

.footer-layout02 .l-ttl .txt01 {
  display: block;
  font-family: var(--font_jp);
  font-size: 35px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-layout02 .l-ttl .txt02 {
  display: block;
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
}

.footer-layout02 .l-sub-ttl {
  font-family: var(--font_jp);
  font-size: 23px;
  text-align: center;
  margin-bottom: 40px;
}

.footer-layout02 .l-txt {
  text-align: center;
}

.footer-layout02 .l-btn-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 39px;
}

.copyright {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
  font-size: 14px;
  padding: 3px 10px;
}

.copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.copyright-links li+li::before {
  content: "|";
  margin: 0 15px;
}

.copyright-links a {
  line-height: 1.5;
}

.copyright-links a:hover {
  text-decoration: underline;
}

.pagetop {
  position: absolute;
  bottom: 65px;
  right: 21px;
  z-index: 5;
}

.pagetop a {
  display: inline-block;
  background: var(--wp--preset--color--primary);
  border-radius: 25px;
  text-align: center;
  width: 50px;
  height: 50px;
  padding: 18px 0 0;
  transition: transform 0.5s;
  position: relative;
  z-index: 0;
}

.pagetop a:hover {
  transform: translateY(-10px);
}

.fixed-menu {
  border-radius: 4px 0 0 4px;
  background: var(--color_secondary);
  color: #fff;
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  transition: transform 0.5s;
  transform: translate(438px, -50%);
  z-index: 10;
}

.fixed-menu:hover {
  transform: translate(0, -50%);
}

.fixed-menu .ttl {
  border-radius: 4px 0 0 4px;
  display: flex;
  align-items: center;
  font-family: var(--font_jp);
  text-orientation: upright;
  writing-mode: vertical-rl;
  line-height: 1;
  white-space: nowrap;
  font-feature-settings: normal;
  padding: 40px 0;
  width: 60px;
}

.fixed-menu .ttl i {
  margin-bottom: 15px;
}

.fixed-menu .inner {
  display: grid;
  place-items: center;
  padding: 15px;
  padding-left: 0;
  width: 438px;
}

.fixed-menu .txt01 {
  font-family: var(--font_jp);
  font-size: 15px;
  text-align: center;
}

.fixed-menu .txt02 {
  font-size: 13px;
}

.fixed-menu .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  margin: 15px 0;
}

.fixed-menu .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  padding: 10px;
  min-width: 170px;
  min-height: 50px;
  width: 100%;
}

.fixed-menu .btn img {
  margin-right: 10px;
}

.fixed-menu .btn .small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.sp-navi {
  display: none;
}

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

  .footer-layout01 {
    padding: 50px 0;
  }

  .footer-layout01 .l-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

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

  .footer-container {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }

  .f-bnr {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }

  .footer-layout02 {
    padding: 50px 0;
  }

  .footer-layout02::before {
    width: 300px;
    top: -15%;
  }

  .footer-layout02::after {
    width: 300px;
    bottom: -15%;
  }

  .footer-layout02 .l-ttl {
    margin-bottom: 30px;
  }

  .footer-layout02 .l-ttl .txt01 {
    font-size: 22px;
  }

  .footer-layout02 .l-ttl .txt02 {
    font-size: 16px;
  }

  .footer-layout02 .l-sub-ttl {
    font-size: 17px;
  }

  .footer-layout02 .l-btn-list {
    display: grid;
    justify-content: normal;
    grid-gap: 15px;
    margin: 0 auto 15px;
    width: 100%;
  }

  .footer-layout02 .l-txt {
    font-size: 15px;
    text-align: left;
  }

  .copyright {
    padding: 10px 0 5px;
    text-align: center;
  }

  .copyright .container {
    display: block;
    justify-content: space-between;
    align-items: center;
  }

  .copyright-links {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }

  .fixed-menu {
    display: none;
  }

  .pagetop {
    bottom: 135px;
  }

  .sp-navi {
    display: block;
  }

  :root {
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
  }

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

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

  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    font-size: 10px;
    font-family: var(--font_en);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

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

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

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

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

  .sp-menu-btn {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 7px;
  }

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

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

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

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

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

  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 5px) rotate(-45deg);
  }

  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-open span:nth-of-type(3) {
    transform: translate(-50%, -5px) 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;
    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;
    font-family: var(--font_jp);
    margin: 0 0 50px;
  }

  .sp-navi-list>li {
    border-bottom: 1px solid #d6d6d6;
  }

  .sp-navi-list>li>a,
  .sp-navi-list>li>.no-link {
    color: #333;
    display: block;
    font-size: 14px;
    line-height: 1;
    padding: 15px 0;
  }

  .sp-navi-list>li.menu-item-has-children {
    position: relative;
  }

  .sp-navi-list>li.menu-item-has-children::before,
  .sp-navi-list>li.menu-item-has-children::after {
    content: "";
    background-color: #333;
    position: absolute;
    transition: 0.5s;
  }

  .sp-navi-list>li.menu-item-has-children::before {
    width: 1px;
    height: 11px;
    top: 17px;
    right: 20px;
  }

  .sp-navi-list>li.menu-item-has-children::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }

  .sp-navi-list>li.menu-item-has-children.is-on::before {
    transform: rotate(90deg);
  }

  .sp-navi-list .sub-menu {
    padding: 0 0 15px;
  }

  .sp-navi-list .sub-menu>li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
  }

  .sp-navi-list .sub-menu>li::before {
    content: "-";
    color: #333;
    position: absolute;
    left: 0;
    top: 0;
  }

  .sp-navi-list .sub-menu>li>a {
    display: inline-block;
    font-size: 13px;
    text-decoration: none;
  }

  .sp-navi-logo {
    text-align: center;
    margin-bottom: 30px;
  }

  .sp-navi-address {
    text-align: center;
    font-size: 13px;
  }

  .sp-navi-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    font-weight: bold;
  }

  .sp-navi-tel img {
    margin-right: 10px;
  }

  .sp-navi-time {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: start;
    grid-gap: 5px 10px;
    font-size: 13px;
    line-height: 1.3;
    margin-right: 10px;
  }

  .sp-navi-time dt {
    border: 1px solid #37414F;
    border-radius: 2px;
    text-align: center;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 5px;
  }

  .sp-navi-time dd {
    padding-top: 2px;
  }
}


/*診療時間*/
.time-table {
  border: 1px solid var(--wp--preset--color--border-color);
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 10px;
}

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

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

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

.time-table-body .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.time-table-body .item:first-child {
  background-color: var(--color_primary);
  color: #fff;
  letter-spacing: 0;
  justify-content: end;
  padding: 10px 10px;
}

.time-table-head,
.time-table-body {
  display: grid;
  font-family: var(--font_jp);
  grid-template-columns: 130px repeat(6, 1fr) 60px;
}

.time-table.large .time-table-head,
.time-table.large .time-table-body {
  grid-template-columns: 220px repeat(6, 1fr) 100px;
}

@media (max-width: 782px) {
  .time-table-head {
    font-size: 12px;
  }

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

  .time-table-body .item {
    padding: 5px 0;
    font-size: 13px;
  }

  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 10px;
    justify-content: center;
  }

  .time-table-head,
  .time-table-body {
    grid-template-columns: 70px repeat(6, 1fr) 50px !important;
  }
}


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

.sp-only {
  display: none;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fs11 {
  font-size: 11px;
}


.red, .fo-red {
  color: var(--color_tertiary);
}

.fo-green {
  color: var(--color_primary);
}

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

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

.notice {
  font-size: 0.8rem;
  text-indent: -1.6em;
  padding-left: 1.6em;
}

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

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

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

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

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

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

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

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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


@media (max-width: 782px) {
  .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;
  }

  iframe.google-map {
    height: 300px;
  }
}



/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  background: var(--wp--preset--color--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 400px;
  width: 100%;
}

.page-ttl-main {
  font-family: var(--font_jp);
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.page-ttl-sub {
  display: block;
  font-family: var(--font_en);
  font-size: 18px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}

.breadcrumb ul {
  font-size: 0.8rem;
  padding: 5px 5vw;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

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

@media (max-width: 782px) {
  .page-ttl {
    padding-top: 0;
    height: 120px;
  }

  .page-ttl-main {
    font-size: 25px;
    padding: 0 15px;
    margin-bottom: 8px;
  }

  .page-ttl-sub {
    font-size: 15px;
  }

  .u-contents {
    padding: 50px 0;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
/*------------
Hero01
--------------*/
.hero01 {
  overflow: hidden;
  position: relative;
}

.hero01::before {
  content: "";
  background: url(../images/hero_deco01.png) no-repeat center center / contain;
  width: 290px;
  height: auto;
  aspect-ratio: 290 / 212;
  position: absolute;
  bottom: -16px;
  left: 23%;
  z-index: 1;
}

.hero01 .splide__slide img {
  width: 100%;
  object-fit: cover;
}

.hero01 .splide__pagination {
  justify-content: flex-end;
  display: flex;
  position: absolute;
  bottom: 30px;
  right: 46px;
}

.hero01-catch {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6%;
  z-index: 5;
}

.hero01-catch .ttl {
  font-family: var(--font_jp);
  font-size: 50px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero01-catch .ttl span {
  color: var(--color_primary);
}

.hero01-catch .sub-ttl {
  background-color: #fff;
  border-radius: 5px;
  font-family: var(--font_jp);
  font-size: 21px;
  line-height: 1.4;
  padding: 7px 15px;
  width: fit-content;
}

@media (max-width: 782px) {
  .hero01::before {
    width: 130px;
    left: auto;
    right: 1%;
  }

  .hero01 .splide__pagination {
    bottom: 15px;
    right: 10px;
  }

  .hero01-catch {
    top: auto;
    bottom: 15px;
    left: 5%;
    transform: none;
  }

  .hero01-catch .ttl {
    font-size: 31px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .hero01-catch .sub-ttl {
    background-color: transparent;
    font-size: 20px;
    line-height: 2;
    padding: 0;
  }
}


.top-ttl {
  text-align: center;
  margin-bottom: 55px;
}

.top-ttl .txt01 {
  display: block;
  font-family: var(--font_jp);
  font-size: 35px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.top-ttl .txt02 {
  display: block;
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
}

@media (max-width: 782px) {
  .top-ttl {
    margin-bottom: 30px;
  }

  .top-ttl .txt01 {
    font-size: 25px;
  }

  .top-ttl .txt02 {
    font-size: 15px;
  }
}

.top-post-layout01 {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 47px;
  min-height: 170px;
  position: relative;
}

.top-post-layout01 .l-ttl .txt01 {
  display: block;
  font-family: var(--font_jp);
  font-size: 25px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.top-post-layout01 .l-ttl .txt02 {
  display: block;
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
}

.top-post-layout01 .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.list-top-blog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 15px;
}

.list-top-blog .list-img {
  margin-bottom: 15px;
  overflow: hidden;
}

.list-top-blog .list-img img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 165px;
  transition: transform 0.5s;
}

.list-top-blog time {
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-size: 13px;
  display: block;
  letter-spacing: 0.1em;
}

.list-top-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 16px;
  margin-bottom: 5px;
}

.list-top-blog .category {
  display: inline-block;
  background-color: var(--color_bg);
  border-radius: 3px;
  color: var(--color_primary);
  font-size: 11px;
  padding: 0 5px;
  margin-right: 5px;
}

.list-top-blog a {
  display: block;
  height: 100%;
}

.list-top-blog a:hover .list-img img {
  transform: scale(1.1);
}

.list-top-news {
  border-top: 1px solid var(--color_border);
}

.list-top-news a {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--color_border);
  padding: 17px 0;
}

.list-top-news a:hover .ttl {
  text-decoration: underline;
}

.list-top-news time {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 15px;
  font-weight: bold;
  white-space: nowrap;
}

.list-top-news .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 17px;

}

@media (max-width: 782px) {
  .top-post-layout01 {
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 30px;
    min-height: 0;
  }

  .top-post-layout01 .l-ttl .txt01 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .top-post-layout01 .l-ttl .txt02 {
    font-size: 13px;
  }

  .top-post-layout01 .l-btn {
    position: static;
  }

  .list-top-blog {
    display: flex;
    grid-gap: 0;
    flex-wrap: nowrap;
    margin: 0 -5vw 0 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }

  .list-top-blog li {
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }

  .list-top-news a {
    display: block;
    line-height: 1.5;
    padding: 10px 0;
  }

  .list-top-news time {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .list-top-news .ttl {
    -webkit-line-clamp: 2;
  }
}

.sec01 {
  background-color: var(--color_bg);
  padding: 120px 0;
}

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

.sec02 {
  overflow: hidden;
  padding: 120px 0 125px;
  position: relative;
}

.sec02::before {
  content: "";
  background: url(../images/share/deco_circle01.png) no-repeat center center / contain;
  width: 680px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  right: -12%;
  z-index: -1;
}

.sec02-img {
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}

.sec02-img img {
  border-radius: 10px;
}

.sec02-img::before {
  content: "";
  display: block;
  background: url(../images/sec02_deco.png) no-repeat center center / contain;
  width: 251px;
  height: auto;
  aspect-ratio: 251 / 154;
  position: absolute;
  bottom: -29px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

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

.sec02-btn {
  margin-top: 35px;
  text-align: center;
}

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

  .sec02::before {
    width: 300px;
    right: -20%;
  }

  .sec02-img {
    margin-bottom: 40px;
  }

  .sec02-img::before {
    width: 112px;
    bottom: -28px;
  }

  .sec02-txt {
    text-align: left;
  }

  .sec02-btn {
    margin-top: 25px;
  }
}

.sec03 {
  overflow: hidden;
  padding: 0 0 120px;
  position: relative;
}

.sec03::before {
  content: "";
  background: url(../images/share/deco_circle01.png) no-repeat center center / contain;
  width: 552px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  bottom: 31%;
  left: -3%;
  z-index: -1;
}

.sec03-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-bottom: 88px;
}

.sec03-card .item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  background-color: var(--color_bg);
  border-radius: 10px;
}

.sec03-card .l-img {
  margin-bottom: 0;
}

.sec03-card .l-img img {
  border-radius: 10px 10px 0 0;
  width: 100%;
}

.sec03-card .l-desc {
  display: flex;
  flex-direction: column;
  padding: 42px 25px 40px;
  position: relative;
}

.sec03-card .num {
  display: grid;
  place-content: center;
  background-color: var(--color_primary);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font_en);
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  width: 52px;
  height: 52px;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.sec03-card .l-ttl {
  font-family: var(--font_jp);
  font-size: 21px;
  line-height: 1.75;
  margin-bottom: 15px;
  text-align: center;
}

.sec03-card .l-txt {
  margin-bottom: auto;
}

.sec03-card .l-btn {
  margin-top: 20px;
  text-align: center;
}

.sec03-box {
  background: #fff;
  border: 2px solid var(--color_primary);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 25px;
  padding: 50px 45px;
  min-height: 255px;
  position: relative;
}

.sec03-box .l-ttl .txt01 {
  display: block;
  font-family: var(--font_jp);
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.sec03-box .l-ttl .txt02 {
  display: block;
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
}

.sec03-box .l-ttl02 {
  font-family: var(--font_jp);
  font-size: 21px;
  margin-bottom: 15px;
}

.sec03-box .l-btn {
  position: absolute;
  bottom: 50px;
  left: 45px;
}

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

  .sec03::before {
    width: 300px;
    left: -15%;
  }

  .sec03-card {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .sec03-card .item {
    display: block;
  }

  .sec03-card .l-desc {
    padding: 35px 20px 30px;
  }

  .sec03-card .l-ttl {
    font-size: 18px;
  }

  .sec03-box {
    grid-template-columns: 1fr;
    padding: 30px 20px 100px;
    min-height: 0;
  }

  .sec03-box .l-ttl .txt01 {
    font-size: 22px;
  }

  .sec03-box .l-ttl02 {
    font-size: 18px;
  }

  .sec03-box .l-btn {
    position: absolute;
    bottom: 25px;
    left: 20px;
  }
}

.sec04 {
  background-color: var(--color_bg);
  padding: 120px 0;
}

.l-sec04 {
  display: flex;
  align-items: flex-start;
}

.l-sec04 .l-img {
  width: 56%;
}

.l-sec04 .l-desc {
  flex: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: 5%;
  position: relative;
  margin: 75px 0 0 -49px;
  z-index: 0;
}

.l-sec04 .l-ttl {
  margin-bottom: 34px;
}

.l-sec04 .l-ttl .txt01 {
  display: block;
  font-family: var(--font_jp);
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.l-sec04 .l-ttl .txt02 {
  display: block;
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
  padding-right: 89px;
  position: relative;
  width: fit-content;
}

.l-sec04 .l-ttl .txt02::before {
  content: "";
  background-color: var(--color_tertiary);
  width: 74px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.l-sec04 .l-btn {
  margin-top: 25px;
}

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

  .l-sec04 {
    flex-direction: column;
  }

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

  .l-sec04 .l-img img {
    border-radius: 10px;
  }

  .l-sec04 .l-desc {
    margin: -20px 15px 0;
    padding: 30px 20px;
    z-index: 1;
  }

  .l-sec04 .l-ttl {
    margin-bottom: 20px;
  }

  .l-sec04 .l-ttl .txt01 {
    font-size: 20px;
  }
}

.sec05 {
  overflow: hidden;
  padding: 120px 0;
  position: relative;
}

.sec05::before {
  content: "";
  background: url(../images/share/deco_circle01.png) no-repeat center center / contain;
  width: 552px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: 122px;
  right: -4%;
  z-index: -1;
}

.sec05::after {
  content: "";
  background: url(../images/share/deco_circle01.png) no-repeat center center / contain;
  width: 552px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  bottom: 143px;
  left: -5%;
  z-index: -1;
}

.l-sec05 {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  margin-bottom: 110px;
}

.l-sec05 .l-img {
  position: relative;
  width: 56%;
}

.l-sec05 .l-img::before {
  content: "";
  background: url(../images/sec05_deco.png) no-repeat center center / contain;
  width: 203px;
  height: auto;
  aspect-ratio: 203 / 142;
  position: absolute;
  bottom: -32px;
  right: 29px;
  z-index: 1;
}

.l-sec05 .l-img img {
  border-radius: 10px;
}

.l-sec05 .l-desc {
  flex: 1;
  background-color: var(--color_bg);
  border-radius: 10px;
  padding: 5%;
  position: relative;
  margin: 75px -49px 0 0;
  z-index: 0;
}

.l-sec05 .l-ttl {
  margin-bottom: 34px;
}

.l-sec05 .l-ttl .txt01 {
  display: block;
  font-family: var(--font_jp);
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.l-sec05 .l-ttl .txt02 {
  display: block;
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
  padding-right: 89px;
  position: relative;
  width: fit-content;
}

.l-sec05 .l-ttl .txt02::before {
  content: "";
  background-color: var(--color_tertiary);
  width: 74px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.l-sec05 .l-btn {
  margin-top: 25px;
}

.sec05-card {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
}

.sec05-card li {
  text-align: center;
  width: calc(100% / 4 - 26px);
}

.sec05-card li a {
  display: block;
  background-color: #fff;
  border: 2px solid var(--color_primary);
  border-radius: 10px;
  height: 100%;
  padding: 28px 20px 50px;
  position: relative;
  transition: transform 0.5s;
}

.sec05-card li a::before {
  content: "";
  border-style: solid;
  border-width: 0 0 14px 14px;
  border-color: transparent transparent var(--color_primary) transparent;
  position: absolute;
  bottom: 8px;
  right: 9px;
}

@media (any-hover: hover) {
  .sec05-card li a:hover {
    transform: translateY(-10px);
  }
}

.sec05-card .card-img {
  margin-bottom: 10px;
}

.sec05-card .card-ttl {
  line-height: 1.5;
}

.sec05-card .card-ttl .txt01 {
  display: block;
  font-family: var(--font_jp);
  font-size: 24px;
  margin-bottom: 4px;
}

.sec05-card .card-ttl .txt02 {
  display: block;
  font-size: 14px;
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
}

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

  .sec05::before {
    width: 300px;
    top: 0;
  }

  .sec05::after {
    width: 300px;
    bottom: 0;
  }

  .l-sec05 {
    flex-direction: column;
    margin-bottom: 50px;
  }

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

  .l-sec05 .l-img::before {
    width: 120px;
    bottom: -18px;
    right: 10px;
  }

  .l-sec05 .l-desc {
    margin: -20px 15px 0 15px;
    padding: 30px 20px;
  }

  .l-sec05 .l-ttl {
    margin-bottom: 20px;
  }

  .l-sec05 .l-ttl .txt01 {
    font-size: 20px;
  }

  .sec05-card {
    gap: 15px;
  }

  .sec05-card li {
    width: calc(50% - 8px);
  }

  .sec05-card li a {
    padding: 20px 10px 40px;
  }

  .sec05-card .card-img img {
    width: 80px;
  }

  .sec05-card .card-ttl .txt01 {
    font-size: 18px;
  }

  .sec05-card .card-ttl .txt02 {
    font-size: 11px;
  }
}

.sec06 {
  background-color: #F7F7F7;
  padding: 120px 0;
}

.l-sec06 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.l-sec06 .l-ttl {
  border-bottom: 1px solid #B8B8B8;
  font-size: 25px;
  margin-bottom: 15px;
  padding: 0 0 5px 34px;
  position: relative;
}

.l-sec06 .l-ttl::before {
  content: "";
  background: url(../images/share/ttl_deco.svg) no-repeat center center / contain;
  width: 22px;
  height: auto;
  aspect-ratio: 22/20;
  position: absolute;
  left: 0;
  top: 13px;
}

.l-sec06 .l-table th {
  font-family: var(--font_jp);
  width: 90px;
}

.l-sec06 .item-img .img {
  position: relative;
}

.l-sec06 .item-img .img::before {
  content: "";
  background: url(../images/sec06_deco.png) no-repeat center center / contain;
  width: 146px;
  height: auto;
  aspect-ratio: 146/124;
  position: absolute;
  bottom: -25px;
  left: 22px;
  z-index: 1;
}

.l-sec06 .item-img .img img {
  border-radius: 10px;
}

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

  .l-sec06 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .l-sec06 .l-ttl {
    font-size: 20px;
    padding: 0 0 5px 30px;
  }

  .l-sec06 .l-ttl::before {
    top: 9px;
  }

  .l-sec06 .item-img .img::before {
    width: 100px;
    bottom: -15px;
    left: 10px;
  }
}

.sec07 {
  padding: 120px 0;
}

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

.sec08 {
  background-color: var(--color_bg);
  padding: 126px 0 140px;
}

.l-sec08 {
  display: flex;
  align-items: flex-start;
  gap: 52px;
}

.l-sec08 .l-img {
  width: 45%;
}

.l-sec08 .l-img .img {
  position: relative;
}

.l-sec08 .l-img .img::before {
  content: "";
  background: url(../images/sec08_deco.png) no-repeat center center / contain;
  width: 135px;
  height: auto;
  aspect-ratio: 135/105;
  position: absolute;
  bottom: -18px;
  left: 70px;
  z-index: 1;
}

.l-sec08 .l-img .img img {
  border-radius: 10px;
}

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

.l-sec08 .l-ttl {
  margin-bottom: 23px;
}

.l-sec08 .l-ttl .txt01 {
  display: block;
  font-family: var(--font_jp);
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.l-sec08 .l-ttl .txt02 {
  display: block;
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
}

.l-sec08 .l-btn {
  margin-top: 25px;
}

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

  .l-sec08 {
    flex-direction: column;
    gap: 30px;
  }

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

  .l-sec08 .l-img .img::before {
    width: 90px;
    bottom: -12px;
    left: auto;
    right: 30px;
  }

  .l-sec08 .l-ttl .txt01 {
    font-size: 22px;
  }
}

.l-sec09 {
  display: grid;
  grid-template-columns: 1fr 426px;
  background-color: #fff;
}

.l-sec09 .l-map iframe {
  vertical-align: bottom;
  height: 100%;
  width: 100%;
}

.l-sec09 .l-desc {
  padding: 10%;
}

.l-sec09 .l-ttl {
  margin-bottom: 20px;
  text-align: center;
}

.l-sec09 .l-ttl .txt01 {
  display: block;
  font-family: var(--font_jp);
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.l-sec09 .l-ttl .txt02 {
  display: block;
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
}

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

@media (max-width: 782px) {
  .l-sec09 {
    grid-template-columns: 1fr;
  }

  .l-sec09 .l-map iframe {
    height: 250px;
  }

  .l-sec09 .l-desc {
    padding: 30px 5%;
  }

  .l-sec09 .l-ttl .txt01 {
    font-size: 22px;
  }
}

.btn-more {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 26px;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 17px;
  line-height: 1.5;
  padding: 12px 30px 12px 43px;
  position: relative;
  text-align: center;
  transition: opacity 0.3s;
  min-height: 52px;
  min-width: 220px;
}

.btn-more::before {
  content: "";
  display: block;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 8px;
  height: 8px;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%) rotate(-45deg);
}

@media (any-hover: hover) {
  .btn-more:hover {
    opacity: 0.8;
  }
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: #54B565;
  border-radius: 25px;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 17px;
  height: 50px;
  padding: 10px 39px;
  transition: opacity 0.3s;
}

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

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

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