@charset "UTF-8";

:root {
  --color_bg: #fff;
  --color_text: #4B4341;
  --color_border: #E0D8D6;
  --color_primary: #CE9C8F;
  --color_secondary: #FFFBF7;
  --font_base: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_jp: "秀英丸ゴシック L";
  --font_jp_min: "FP-ヒラギノ明朝 ProN W3";
  --font_en: "Jost", serif;
  --semibold: 600;
  --easing: cubic-bezier(.12, 1, .5, 1);
}


/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

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

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

a:-webkit-any-link:focus-visible {
  outline-offset: 1px;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.8em;
}

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;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
}


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

::selection {
  background: #d4dcd6;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--font_base);
  color: var(--color_text);
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

@media (max-width: 800px) {
  body {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

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

th,
dt {
  font-family: var(--font_jp);
}

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

.link-out {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}

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

.link-out:is(:hover, :focus) {
  text-decoration: none;
}

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.header.transform {
  background: #fff;
}

.header-layout {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  padding: 10px 30px 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 90px;
}

@media (max-width: 1024px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }

  .header.transform {
    background: transparent;
  }

  .header-layout {
    justify-content: center;
    padding: 5px 10px;
    height: 65px;
  }

  .h-logo {
    width: 187px;
  }

  .gnavi {
    display: none;
  }
}

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

.gnavi-list>li>a {
  display: inline-block;
}

.gnavi-list a:hover {
  color: var(--color_primary);
}

/*dropdown*/
.dropdown {
  display: flex;
  align-items: center;
  position: relative;
}

.dropdown::after {
  content: "";
  border-bottom: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
  width: 6px;
  height: 6px;
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
}

.dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.sub-menu {
  font-family: var(--font_jp);
  font-size: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  pointer-events: none;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  position: absolute;
  top: 52px;
  right: 50%;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

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

.sub-menu .item>li {
  padding-left: 12px;
  position: relative;
}

.sub-menu .item>li::after {
  content: "";
  border-bottom: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: rotate(-45deg) translateY(-50%);
}

.sub-menu .item>li+li {
  margin-top: 4px;
}

/*drawer*/
.gnavi-drawer {
  pointer-events: none;
  background-color: #f5f5f5;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
}

.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.gnavi-drawer-container {
  display: grid;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.gnavi-drawer-wrapper {
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
}

.gnavi-drawer-right-area {
  width: 50%;
  padding: 100px 5%;
  overflow: auto;
}

.gnavi-drawer-links {
  display: grid;
  gap: 30px;
}

.gnavi-drawer-links>li {
  font-size: 16px;
}

.gnavi-drawer-links>li>a {
  text-decoration: underline;
}

.gnavi-drawer-links>li>a:hover {
  text-decoration: none;
}

.gnavi-drawer-links .sub-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 20px;
  margin-top: 15px;
  font-size: 14px;
}

.gnavi-drawer-links .sub-menu>li>a:hover {
  text-decoration: underline;
}

.gnavi-drawer-left-area {
  background: url(../images/share/gnavi-drawer_bg.jpg) no-repeat center/cover;
  width: 50%;
  height: 100%;
  padding: 0 0 0 5%;
  display: flex;
  position: fixed;
  inset: 0;
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  padding-top: 90px;
  position: relative;
}

.hero::before {
  content: "";
  background: url(../images/hero_bg01_pc.png) no-repeat top left/contain;
  width: 386px;
  aspect-ratio: 386/215;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero::after {
  content: "";
  background: url(../images/hero_bg02_pc.png) no-repeat bottom right/contain;
  width: 603px;
  aspect-ratio: 603/521;
  position: absolute;
  bottom: -200px;
  right: 0;
  z-index: -1;
}

.hero .splide {
  max-width: 1740px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

.hero .splide__slide img {
  width: 100%;
  aspect-ratio: 1740/678;
  object-fit: cover;
  border-radius: 30px;
}

.hero .splide__pagination {
  display: none;
}

.hero-catch {
  position: absolute;
  bottom: 15%;
  left: 6%;
  z-index: 1;
}

.hero-catch .sub-ttl {
  color: #777;
  font-family: var(--font_jp);
  font-size: clamp(1.6rem, 2.222vw, 4rem);
  line-height: 1.5;
  text-shadow: 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255);
  margin-bottom: 1.666vw;
}

.hero-catch .ttl {
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: clamp(5rem, 5.555vw, 10rem);
  line-height: 1;
  background: linear-gradient(to right, #f2988d 0%, #f0a023 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 5px 6px #fff);
}

.hero-icon {
  display: flex;
  align-items: center;
  gap: 1.111vw;
  position: absolute;
  bottom: 5%;
  left: 6%;
  z-index: 1;
}

.hero-icon li {
  width: 11.111vw;
  max-width: 200px;
  height: 3vw;
  max-height: 54px;
  background: #FAC7C1;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #6F4B3E;
  font-family: var(--font_jp);
  font-size: clamp(1.2rem, 1vw, 1.8rem);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 800px) {
  .hero {
    padding-top: 110px;
  }

  .hero::before {
    background: url(../images/hero_bg01_sp.png) no-repeat top left/contain;
    width: 136px;
    aspect-ratio: 136/104;
  }

  .hero::after {
    background: url(../images/hero_bg02_sp.png) no-repeat bottom right/contain;
    width: 196px;
    aspect-ratio: 196/192;
    bottom: -80px;
  }

  .hero .splide {
    width: 100%;
  }

  .hero .splide__slide img {
    height: 47vh;
    border-radius: 0;
  }

  .hero .splide__pagination {
    display: none;
  }

  .hero-catch {
    bottom: -4%;
    left: auto;
    right: 3%;
  }

  .hero-catch .sub-ttl {
    text-align: right;
    font-size: 2.4rem;
  }

  .hero-catch .ttl {
    font-size: 5rem;
  }

  .hero-icon {
    gap: 0;
    top: 75px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
  }

  .hero-icon li {
    width: auto;
    max-height: none;
    height: auto;
    font-size: 1.2rem;
    background: none;
    border: none;
    color: #E59086;
    padding: 0 12px;
    position: relative;
    display: inline-block;
  }

  .hero-icon li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    color: #E59086;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
  text-align: center;
  margin-bottom: 45px;
}

.t-ttl .en {
  color: var(--color_primary);
  font-size: 2.7rem;
  line-height: 1;
}

.t-ttl .jp-min {
  font-size: 3.2rem;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
}

.t-ttl .jp-min::before,
.t-ttl .jp-min::after {
  content: "";
  display: block;
  width: 120px;
  aspect-ratio: 120/60;
  position: relative;
  bottom: 10px;
}

.t-ttl .jp-min::before {
  background: url(../images/share/cmn_ttl_deco_left.svg) no-repeat left center/contain;
}

.t-ttl .jp-min::after {
  background: url(../images/share/cmn_ttl_deco_right.svg) no-repeat right center/contain;
}

.t-ttl.left {
  text-align: left;
}

.t-ttl.deco-none .jp-min {
  display: block;
}

.t-ttl.deco-none .jp-min::before,
.t-ttl.deco-none .jp-min::after {
  content: none;
}

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

  .t-ttl .en {
    font-size: 1.8rem;
  }

  .t-ttl .jp-min {
    font-size: 2.1rem;
    gap: 15px;
  }

  .t-ttl .jp-min::before,
  .t-ttl .jp-min::after {
    width: 40px;
    bottom: 9px;
  }

  .t-ttl.left .en {
    margin-bottom: 10px;
  }
}

.contents {
	overflow: clip;
}

/*------------
sec01
--------------*/
.sec01 {
  padding: 100px 0;
}

.sec01-layout {
  background: url(../images/sec01_bg.jpg) no-repeat center/cover;
  border-radius: 30px;
  padding: 20px;
}

.sec01-layout .inner {
  background: url(../images/sec01_bg02.jpg) no-repeat center / cover;
  border-radius: 30px;
  padding: 30px;
}

.sec01-layout-ttl {
  color: #CE9C8F;
  font-family: var(--font_en);
  font-size: 7.0rem;
  line-height: 1;
  position: relative;
}

.sec01-layout-ttl::after {
  content: "";
  background: url(../images/sec01_deco.svg) no-repeat center / contain;
  width: 248px;
  height: 68px;
  position: absolute;
  top: -10px;
  right: -270px;
}

.sec01-layout-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

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

  .sec01-layout {
    padding: 15px;
  }

  .sec01-layout .inner {
    padding: 15px;
  }

  .sec01-layout-ttl {
    font-size: 4.5rem;
  }

  .sec01-layout-ttl::after {
    width: 150px;
    height: 37px;
    top: 0px;
    right: -200px;
  }

  .sec01-layout .l-btn {
    margin-top: 15px;
    text-align: right;
  }
}

/*------------
sec02
--------------*/
.sec02 {
  padding: 0 0 60px;
  position: relative;
  z-index: 1;
}

.sec02::before {
  content: "";
  background: url(../images/sec02_bg01.png) no-repeat top right/contain;
  width: 362px;
  aspect-ratio: 362/418;
  position: absolute;
  top: -4%;
  right: 0;
  z-index: -1;
}

.sec02::after {
  content: "";
  background: url(../images/sec02_bg02.png) no-repeat bottom left/contain;
  width: 347px;
  aspect-ratio: 347/478;
  position: absolute;
  bottom: -15%;
  left: 0;
  z-index: -1;
}

.sec02 .t-ttl {
  margin-bottom: 70px;
}

.sec02 .pc-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sec02 .sp-box {
  display: none;
}

.sec02 .sns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec02-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
}

.sec02-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  min-width: 353px;
  background: #FEE9E7;
  border: 1px solid #EBD9D3;
  border-radius: 50px;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1;
  padding: 10px 20px 10px 30px;
  position: relative;
  transition: 0.3s;
}

.sec02-btn::before {
  content: "";
  background: url(../images/share/icon_btn-arrow_b.svg) no-repeat right center/contain;
  width: 21px;
  height: 3px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 2;
}

.sec02-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #FAC7C1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transform-origin: top center;
  transition: 0.3s;
}

.sec02-btn:hover {
  background: #fff;
}

.sec02-btn:hover::after {
  scale: 0.8;
}

.sec02-box-sp {
  display: none;
}

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

  .sec02::before,
  .sec02::after {
    width: 150px;
  }

  .sec02::after {
    bottom: 7%;
  }

  .sec02 .t-ttl {
    margin-bottom: 20px;
  }

  .sec02 .sec02-address {
    display: none;
  }

  .sec02 .pc-btn {
    display: none;
  }

  .sec02-box-sp {
    display: block;
    background-color: #FEE9E7;
    border: 1px solid #EBD9D3;
    border-radius: 10px;
    color: #6F4B3E;
    padding: 20px;
    margin-bottom: 20px;
  }

  .sec02-box-sp .box-ttl {
    font-size: 1.6rem;
    font-family: var(--font_jp);
    text-align: center;
    margin-bottom: 15px;
  }

  .sec02-box-sp .box-ttl span {
    color: #E59086;
  }

  .sec02-box-sp .box-btns {
    display: grid;
    gap: 1.5rem;
    justify-content: space-between;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
  }

  .sec02-box-sp .btn {
    display: inline-block;
    font-size: 1.2rem;
    padding: 0;
    background: #FFF;
    border-radius: 50px;
    padding: 1.0rem 5rem 1.0rem 1.5rem;
    position: relative;
  }

  .sec02-box-sp .btn::before {
    content: "";
    background: url(../images/share/icon_btn-arrow_b.svg) no-repeat right center / contain;
    width: 21px;
    height: 3px;
    position: absolute;
    bottom: 19px;
    right: 19px;
    z-index: 2;
  }

  .sec02-box-sp .btn::after {
    content: "";
    width: 20px;
    height: 20px;
    background: #FAC7C1;
    border-radius: 50%;
    position: absolute;
    bottom: 10px;
    right: 10px;
    transform-origin: center;
  }

  .sec02-box-sp .tel {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    font-family: var(--font_en);
    font-size: 2.5rem;
    line-height: 1;
  }

  .sec02-box-sp .time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    line-height: 1;
    margin: 0 auto;
    width: fit-content;
  }

  .sec02-box-sp .time .label {
    display: inline-block;
    border: 1px solid #6F4B3E;
    border-radius: 2px;
    padding: 0.2rem 0.5rem;
    font-size: 1.0rem;
  }

  .sec02-layout {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/*------------
sec03
--------------*/
.sec03_sec04_bg {
  background: url(../images/sec03_sec04_bg.jpg) no-repeat center/cover;
  padding: 150px 0 50px;
}

.sec03 {
  padding: 0 0 100px;
}

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

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

  .sec03 {
    padding: 0 0 70px;
  }

  .sec03 .t-ttl {
    margin-bottom: 25px;
  }

  .sec03 .t-ttl .jp-min::before,
  .sec03 .t-ttl .jp-min::after {
    width: 60px;
  }
}

/*------------
sec04
--------------*/
.sec04-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sec04-card>li {
  position: relative;
}

.sec04-card .card-img {
  margin-bottom: 35px;
}

.sec04-card .card-img img {
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}

.sec04-card .card-num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: min(3.666vw, 4.4rem);
  position: absolute;
  top: min(17.5vw, 210px);
  right: 0;
}

.sec04-card .card-num .small {
  font-size: min(3.166vw, 3.8rem);
}

.sec04-card .card-ttl {
  font-size: clamp(1.6rem, 1.583vw, 1.9rem);
  text-align: center;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .sec04-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sec04-card .card-img {
    float: left;
    width: 45%;
    margin: 0 auto 0 0;
    padding: 0;
  }

  .sec04-card .card-img img {
    height: auto;
    object-fit: cover;
    object-position: top;
  }

  .sec04-card .card-img.reverse {
    float: right;
  }

  .sec04-card .card-num {
    font-size: 3.5rem;
    top: -20px;
    left: 50%;
  }

  .sec04-card .card-num .small {
    font-size: 2.7rem;
    margin-right: 5px;
  }

  .sec04-card .card-num.reverse {
    left: 0;
  }

  .sec04-card .card-ttl {
    font-size: 1.5rem;
    text-align: left;
    width: 50%;
    margin: 33px 0 0 auto;
    padding: 0;
  }

  .sec04-card .card-ttl.reverse {
    margin: 33px auto 0 0;
  }
}

/*------------
sec05
--------------*/
.sec05 {
  background: url(../images/sec05_bg01.png) no-repeat top right/523px 702px;
  padding: 110px 0 130px;
  position: relative;
  z-index: 0;
}

.sec05::before {
  content: "";
  background: url(../images/sec05_bg02.png) no-repeat bottom left/contain;
  width: 397px;
  aspect-ratio: 397/415;
  position: absolute;
  top: 29%;
  left: 0;
  z-index: -1;
}

.sec05::after {
  content: "";
  background: url(../images/sec05_bg03.png) no-repeat bottom right/contain;
  width: 337px;
  aspect-ratio: 337/419;
  position: absolute;
  top: 51%;
  right: 0;
  z-index: -1;
}

.sec05 .t-ttl {
  margin-bottom: 55px;
}

.sec05-deco {
  color: #F0E2DD;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: min(10.555vw, 19rem);
  line-height: 1;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  top: 16%;
  left: 7.777vw;
  z-index: -1;
}

.sec05-bg {
  position: relative;
  z-index: 1;
}

.sec05-bg::before {
  content: "";
  background: url(../images/sec05_bg04.png) no-repeat bottom left/contain;
  width: 430px;
  aspect-ratio: 430/486;
  position: absolute;
  bottom: 3%;
  left: 0;
  z-index: -1;
}

.sec05-bg::after {
  content: "";
  background: url(../images/sec05_bg05.png) no-repeat bottom right/contain;
  width: 523px;
  aspect-ratio: 523/703;
  position: absolute;
  bottom: -21%;
  right: 0;
  z-index: -1;
}

.sec05-card {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 100px;
}

.sec05-card>li {
  text-align: center;
  width: calc(20% - 16px);
}

.sec05-card a {
  display: block;
  background: #fff;
  border: 1px solid #C7AE78;
  border-radius: 27px;
  height: 100%;
  padding: 30px 20px 37px;
  position: relative;
  transition: 0.3s;
}

.sec05-card a::before {
  content: "";
  background: url(../images/share/icon_btn-arrow_b.svg) no-repeat right center/contain;
  width: 21px;
  height: 3px;
  position: absolute;
  bottom: 19px;
  right: 19px;
  z-index: 2;
}

.sec05-card a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #FAC7C1;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  right: 10px;
  transform-origin: center;
  transition: 0.3s;
}

.sec05-card a:hover {
  color: var(--color_primary);
}

.sec05-card a:hover::after {
  scale: 0.8;
}

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

.sec05-card .card-ttl {
  font-size: 1.8rem;
  line-height: 1.4;
}

.sec05-ttl {
  text-align: center;
}

.sec05-ttl .txt {
  color: var(--color_primary);
  font-family: var(--font_jp_min);
  font-size: 2.8rem;
  border-bottom: 3px dotted #E5CCC6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px 8px 0;
  margin-bottom: 40px;
}

.sec05-ttl .txt::before {
  content: "";
  display: block;
  background: url(../images/share/icon_glass.svg) no-repeat left center/contain;
  width: 39px;
  height: 39px;
}

.sec05-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 60px;
  right: 126px;
}

.sec05-btn-wrap.aging-care {
  top: 124px;
}

.sec05-btn-wrap .btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  max-width: 250px;
  width: 21.645vw;
  max-height: 54px;
  height: 4.675vw;
  background: #fff;
  border: 1px solid #EBD9D3;
  border-radius: 50px;
  font-family: var(--font_jp);
  font-size: clamp(1.1rem, 1.558vw, 1.8rem);
  line-height: 1;
  padding: 10px 10px 10px 30px;
  position: relative;
  transition: 0.3s;
}

.sec05-btn-wrap .btn::before {
  content: "";
  background: url(../images/share/icon_btn-arrow_b.svg) no-repeat right center/contain;
  width: 21px;
  height: 3px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 2;
}

.sec05-btn-wrap .btn::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #FAC7C1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transform-origin: top center;
  transition: 0.3s;
}

.sec05-btn-wrap .btn:hover {
  color: var(--color_primary);
}

.sec05-btn-wrap .btn:hover::after {
  scale: 0.8;
}

@media (max-width: 1600px) {
  .sec05 {
    background: url(../images/sec05_bg01.png) no-repeat top right/262px 351px;
    padding: 90px 0;
  }

  .sec05::before {
    width: 198.5px;
    top: 25%;
  }

  .sec05::after {
    width: 168.5px;
    top: 50%;
  }

  .sec05-deco {
    left: -2%;
  }
}

@media (max-width: 1155px) {
  .sec05-deco {
    display: none;
  }

  .sec05-bg::before {
    width: 215px;
    bottom: 14%;
  }

  .sec05-bg::after {
    width: 261.5px;
    bottom: -8%;
  }

  .sec05-btn-wrap {
    top: 5.194vw;
  }

  .sec05-btn-wrap.aging-care {
    top: 10.735vw;
  }
}

@media (max-width: 800px) {
  .sec05-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 70px;
  }

  .sec05-card>li {
    width: 100%;
  }

  .sec05-card a {
    padding: 5px 10px 30px;
    border-radius: 10px;
    aspect-ratio: 1/1;
  }

  .sec05-card a::before,
  .sec05-card a::after {
    display: none;
  }

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

  .sec05-ttl .txt {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .sec05-card .card-img {
    max-width: 60px;
    margin: 0 auto 3px;
  }

  .sec05-btn-wrap {
    gap: 5px;
    top: 33px;
    right: 10px;
  }

  .sec05-btn-wrap.aging-care {
    top: 74px;
  }

  .sec05-btn-wrap.skin {
    top: 26px;
  }

  .sec05-btn-wrap .btn {
    justify-content: center;
    width: 30vw;
    min-width: 120px;
    height: 27px;
    padding: 0;
    font-size: 1.2rem;
  }

  .sec05-btn-wrap .btn::before,
  .sec05-btn-wrap .btn::after {
    content: none;
  }

  .sec05-btn-wrap .btn.sp-large {
    height: 35px;
  }
}

/*------------
sec06
--------------*/
.sec06 {
  padding: 0 0 105px;
  margin-bottom: 170px;
  position: relative;
  z-index: 1;
}

.sec06::before {
  content: "";
  max-width: 1700px;
  width: 94.444vw;
  aspect-ratio: 1700/561;
  background: var(--color_secondary);
  border-radius: 0 30px 30px 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.sec06-deco {
  color: #FAC7C1;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: min(10.555vw, 19rem);
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  right: 7%;
  bottom: -20px;
}

.sec06-layout {
  display: flex;
  gap: 5%;
  margin: 0 auto;
}

.sec06-layout .l-img {
  width: 69%;
  height: 100%;
  display: flex;
  gap: 30px;
  margin-top: -4%;
}

.sec06-layout .img01,
.sec06-layout .img02 {
  position: relative;
}

.sec06-layout .img01 img,
.sec06-layout .img02 img {
  max-width: 400px;
  width: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.sec06-layout .l-caption {
  background: #fff;
  border-radius: 10px;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.sec06-layout .l-caption .en {
  color: var(--color_primary);
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.sec06-layout .l-caption .jp {
  font-size: 2rem;
}

.sec06-layout .l-caption .small {
  font-size: 1.6rem;
}

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

.sec06-layout .l-txt {
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .sec06 {
    padding: 0 0 75px;
    margin-bottom: 90px;
  }

  .sec06::before {
    width: 100%;
    height: 90%;
    border-radius: 0;
    aspect-ratio: auto;
  }

  .sec06-deco {
    font-size: 6rem;
    bottom: -10px;
  }

  .sec06-layout {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .sec06-layout .l-txt {
    margin-bottom: 30px;
  }

  .sec06-layout .l-img {
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }

  .sec06-layout .img01 img,
  .sec06-layout .img02 img {
    max-width: 100%;
  }

  .sec06-layout .l-caption .en {
    font-size: 1.2rem;
  }

  .sec06-layout .l-caption .jp {
    font-size: 1.8rem;
  }

  .sec06-layout .l-caption .small {
    font-size: 1.4rem;
  }
}

/*------------
sec08
--------------*/
.sec08 {
  background: url(../images/sec08_bg.png) no-repeat top left/335px 304px;
  padding: 130px 0 40px;
}

@media (max-width: 800px) {
  .sec08 {
    background: url(../images/sec08_bg.png) no-repeat top left/168px 152px;
    padding: 90px 0 0;
  }

  .sec08 .t-ttl {
    margin-bottom: 0;
  }
}

/*------------
Tab
--------------*/
[data-tab-content] {
  display: none;
}

[data-tab-content].is-active {
  display: block;
}

.tab-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tab-nav-item {
  display: inline-block;
  cursor: pointer;
  width: calc(25% - 6px);
  background: #FAC7C1;
  color: #6F4B3E;
  border-radius: 50px;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  text-align: center;
  padding: 9px 20px;
  transition: all 0.2s ease;
}

.tab-nav-item:hover {
  background-color: #FFE9E7;
}

.tab-nav-item.is-active {
  background: #FFE9E7;
}

.tab-content.is-active {
  animation: tabFadeIn 0.7s ease 0s 1 normal;
}

.tab-content {
  position: relative;
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .tab-list {
    margin-bottom: 15px;
  }

  .tab-nav-item {
    width: calc(50% - 5px);
    font-size: 1.6rem;
    padding: 5px 20px;
  }

  .tab-content img {
    height: 300px;
    object-fit: cover;
  }

  .tab-content .body-img {
    object-position: -80px 0;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  font-size: 2.6rem;
  background-image: linear-gradient(to right, #CE9C8F 2px, transparent 2px);
  background-size: 7px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

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

@media (max-width: 800px) {
  .dl-privacy dt {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  padding-bottom: 30px;
  margin-top: 90px;
  position: relative;
}

.footer::before {
  content: "";
  background: url(../images/share/f_bg.png) no-repeat bottom right/contain;
  width: 367px;
  aspect-ratio: 367/377;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFE9E7;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -2;
}

.f-map {
  position: relative;
}

.f-map .t-ttl {
  margin-bottom: 15px;
}

.footer .t-ttl .jp-min::before,
.footer .t-ttl .jp-min::after {
  width: 82px;
}

@media (max-width: 800px) {

  .footer .t-ttl .jp-min::before,
  .footer .t-ttl .jp-min::after {
    width: 40px;
  }
}

.f-map iframe {
  vertical-align: bottom;
  height: 100%;
  min-height: 460px;
  width: 100%;
}

.f-map .l-desc {
  width: 430px;
  max-width: 430px;
  min-width: 280px;
  min-height: 280px;
  padding: 20px 40px 50px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  bottom: 6%;
  right: 2%;
  display: grid;
  align-content: center;
}

.f-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 80px 0 12px;
  gap: 5%;
}

.f-wrpper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
}

.f-sns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-map {
  font-family: var(--font_jp);
  font-size: 1.6rem;
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 6%;
  margin-bottom: 40px;
}

.f-links01 a:hover {
  text-decoration: underline;
}

.f-links01>li {
  padding-left: 12px;
  position: relative;
}

.f-links01>li::after {
  content: "";
  border-bottom: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: rotate(-45deg) translateY(-50%);
}

.f-links01>li+li {
  margin-top: 5px;
}

.f-links02 .ttl {
  color: var(--color_primary);
  border-bottom: 2px dotted #E5CCC6;
  margin-bottom: 12px;
}

.f-links02 .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.f-links02 a:hover {
  text-decoration: underline;
}

.f-links02 li {
  padding-left: 12px;
  position: relative;
}

.f-links02 li::after {
  content: "";
  border-bottom: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: rotate(-45deg) translateY(-50%);
}

.f-links02 li+li {
  margin-top: 5px;
}

.copyright {
  text-align: center;
}

.copyright small {
  font-size: 1.2rem;
}

.pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5;
}

body.contact .pagetop {
  right: 85px;
}

.pagetop a {
  display: inline-block;
  transition: transform 0.5s;
  position: relative;
  z-index: 0;
}

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

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

  .footer::before {
    width: 250px;
  }

  .pagetop {
    right: 15px;
    bottom: 70px;
  }
}

@media (max-width: 800px) {
  .footer {
    margin-top: 60px;
  }

  .f-map iframe {
    height: 300px;
    min-height: auto;
  }

  .f-map .l-desc {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: auto;
    padding: 10% 5%;
    border-radius: 0;
  }

  .f-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 0 12px;
  }

  .f-wrpper {
    flex-direction: column;
  }

  .site-map {
    font-size: 1.5rem;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .f-links02 .ttl {
    margin-bottom: 0;
  }

  .f-links02 .inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .f-links02 li {
    margin-top: 5px;
  }

  body.contact .pagetop {
    right: 15px;
    bottom: 120px;
  }
}

.fixed-menu {
  border-radius: 20px 0 0 20px;
  background: #FFE9E7;
  color: #6F4B3E;
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  transition: transform 0.5s;
  transform: translate(437px, -50%);
  z-index: 1000;
}

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

.fixed-menu .ttl {
  width: 50px;
  font-size: 1.8rem;
  font-family: "秀英丸ゴシック B";
  border-radius: 20px 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  line-height: 1;
  white-space: nowrap;
  font-feature-settings: normal;
}

.fixed-menu .inner {
  display: grid;
  place-items: center;
  padding: 36px 15px;
  width: 437px;
}

.fixed-menu .txt01 {
  font-family: "秀英丸ゴシック B";
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 12px;
}

.fixed-menu .txt02 {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

.fixed-menu .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.fixed-menu .tel {
  font-family: var(--font_en);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  gap: 3px;
}

.fixed-menu .btn {
  width: 215px;
  height: 40px;
  background: #fff;
  border-radius: 50px;
  color: var(--color_primary);
  font-size: 1.6rem;
  padding: 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.3s;
}

.fixed-menu .btn:hover {
  background: var(--color_primary);
  color: #fff;
}

.fixed-menu .btn:hover::before {
  background: url(../images/share/icon_mail.svg) no-repeat left center/contain;
}

.fixed-dl {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
  white-space: nowrap;
}

.fixed-dl>dt {
  height: 20px;
  border: 1px solid #6F4B3E;
  border-radius: 3px;
  font-size: clamp(1.2rem, 1.04rem + 0.32vw, 1.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fixed-dl>dd {
  font-size: 1.4rem;
}

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

.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  .sp-navi {
    display: block;
  }

  :root {
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --navi-font: "秀英丸ゴシック L";
  }

  /* ボタン類 */
  .sp-navi-btns {
    display: flex;
    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 .time {
    background: #CEBEA8;
  }

  .sp-navi-btns .tel {
    background: #FFB4BA;
  }

  .sp-navi-btns .line {
    background: #FFF1EA;
  }

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

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

  .sp-navi-btns .line a {
    padding-right: 15px;
  }

  .sp-navi-btns .line a .ttl {
    color: #00B900;
  }

  .sp-menu-btn {
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 5px;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #FAC7C1;
  }

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

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

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

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

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

  .sp-menu-btn[aria-expanded=true] span:nth-of-type(1) {
    transform: translate(-50%, 6px) rotate(-45deg);
  }

  .sp-menu-btn[aria-expanded=true] span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-menu-btn[aria-expanded=true] 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: 10px 4% 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 var(--color_border);
  }

  .sp-navi-list>li {
    border-bottom: 1px solid var(--color_border);
  }

  .sp-navi-list>li>a {
    display: flex;
    align-items: center;
    font-family: var(--font_jp);
    font-size: 1.6rem;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }

  .sp-navi-list>li>a .jp {
    width: 210px;
  }

  .sp-navi-list>li>a .en {
    color: #C7AE78;
    font-size: 1.1rem;
  }

  .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: var(--color_primary);
    position: absolute;
    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 {
    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;
    margin-bottom: 5px;
  }

  .sp-navi-list .child>ul>li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid;
    border-color: #C7AE78 #C7AE78 transparent transparent;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

  .sp-navi-list .child>ul>li>a {
    display: block;
    color: var(--color_text);
    font-size: 1.3rem;
    text-decoration: none;
    padding-left: 20px;
    position: relative;
  }
}

/*------------
Post
--------------*/
.top-post-layout01 {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 50px;
  min-height: 170px;
  position: relative;
}

.top-post-layout01 .l-title {
  margin-bottom: 15px;
}

.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));
  gap: 30px;
}

.list-top-blog .list-img {
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.list-top-blog .list-img img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  transition: transform 0.5s;
}

.list-top-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

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

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

.list-top-news {
  display: grid;
  gap: 15px;
  width: fit-content;
  margin: 0 auto;
}

.list-top-news a {
  display: flex;
  gap: 15px;
}

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

.list-top-news .wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.list-top-news time {
  display: inline-block;
  color: #4B4341;
  font-family: var(--font_jp_min);
  font-size: 1.6rem;
  white-space: nowrap;
}

.list-top-news .category {
  height: 30px;
  display: grid;
  place-items: center;
  background-color: #FAC7C1;
  color: #fff;
  border-radius: 100px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 0 23px;
}

.list-top-news .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_base);
  flex: 1;
}

.list-top-case {
  border-top: 1px solid #dfdfdf;
}

.list-top-case a {
  display: block;
  border-bottom: 1px solid #dfdfdf;
  padding: 20px 0;
}

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

.list-top-case .list-data {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.list-top-case time {
  display: inline-block;
  color: #888;
  margin-right: 15px;
}

.list-top-case .category {
  display: inline-block;
  background-color: #333;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 5px;
}

.list-top-case .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

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

  .top-post-layout01 .l-desc::before {
    content: "横にスクロールできます。";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/20px;
    min-height: 16px;
    font-size: 1.4rem;
    padding: 0 0 0 30px;
    margin-bottom: 5px;
  }

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

  .list-top-blog {
    display: flex;
    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-blog .list-img {
    margin-bottom: 10px;
  }

  .list-top-blog .list-ttl {
    margin-bottom: 10px;
  }

  .list-top-news a {
    display: block;
  }

  .list-top-news .wrap {
    gap: 5px;
    flex-wrap: wrap;
    margin: 0 0 5px 0;
  }

  .list-top-news time {
    font-size: 1.2rem;
    margin-right: 5px;
  }

  .list-top-news .category {
    height: auto;
    font-size: 1.2rem;
    padding: 2px 20px;
  }

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

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

  .list-top-case time {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

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

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  background: url(../images/under/page-ttl_bg.jpg) no-repeat center / cover;
  margin-top: 90px;
  min-height: 640px;
  position: relative;
  gap: 3%;
}

.page-ttl .ttl {
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
  background-color: #FAC7C1;
  padding: 6.0rem 11.0rem 6.0rem 8.0rem;
  position: absolute;
  bottom: 6.0rem;
  left: 0;
  width: fit-content;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8);
}

.page-ttl .en {
  color: #CE9C8F;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 10px;
}

.page-ttl .jp {
  font-size: 3.2rem;
}

@media (max-width: 800px) {
  .page-ttl {
    background: url(../images/under/page-ttl_bg.jpg) no-repeat center / cover;
    margin-top: 65px;
    min-height: 400px;
  }

  .page-ttl .ttl {
    padding: 2rem 6rem 2rem 1.5rem;
    bottom: 2.5rem;
  }

  .page-ttl .en {
    font-size: 2rem;
    margin-bottom: 5px;
  }

  .page-ttl .jp {
    font-size: 2.2rem;
  }
}

.breadcrumb {
  margin: 5px 0 60px;
  width: 100%;
}

.breadcrumb ul {
  margin-inline: auto;
  max-width: 1024px;
  width: 90%;
}

.breadcrumb ul li {
  font-size: 1.3rem;
  display: inline;
}

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

.breadcrumb ul li span.post-page {
  color: #C7AE78;
}

@media (max-width: 800px) {
  .breadcrumb {
    margin: 0 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.tall.bg {
  background: var(--color_secondary);
  padding: 75px 0 80px;
}

.tall+.tall {
  margin-top: 90px;
}

.short+.short {
  margin-top: 60px;
}

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

.overflow-hidden {
  overflow: hidden;
}

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

@media (max-width: 800px) {
  .tall.bg {
    padding: 50px 0;
  }

  .tall+.tall {
    margin-top: 70px;
  }

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

/* Anchor */
.features-anchor {
  padding-top: 90px;
  margin-top: -90px;
}

@media (max-width: 800px) {
  .features-anchor {
    padding-top: 0;
    margin-top: 0;
  }
}

/* List */
.list-disc li {
  position: relative;
  padding-left: 15px;
}

.list-disc li:before {
  content: "";
  background: #FAC7C1;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 16px;
  width: 5px;
  height: 5px;
}

.list-num {
  counter-reset: number;
  display: grid;
  gap: 5px;
}

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

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

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

.list-check>li {
  padding-left: 30px;
  position: relative;
}

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

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

.list-check-square>li {
  padding-left: 30px;
  position: relative;
}

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

@media (max-width: 800px) {
  .list-disc li:before {
    top: 9px;
  }

  .list-num>li:before,
  .list-check-square>li:before {
    top: 5px;
  }

  .list-check>li:before {
    top: 6px;
  }
}

/* Table */
.table-style01 th,
.table-style01 td {
  padding: 10px 20px;
  vertical-align: middle;
}

.table-style01 th {
  background: #FAC7C1;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.table-style01 th.bg01 {
  background: #FFFBF7;
  color: #4B4341;
}

.table-style01 td {
  border-left: 1px solid #D1D1D1;
  border-right: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
}

.table-style01 tr:first-child td {
  border-top: 1px solid #D1D1D1;
}

.table-style01 tr:first-child th {
  border-top: 1px solid #FAC7C1;
}

.table-style01 tr:last-child th {
  border-bottom: 1px solid #FAC7C1;
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {
  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }

  .table-style01.sp-block th {
    border-bottom: none;
  }

  .table-style01.sp-block tr:first-child td {
    border-top: none;
  }

  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

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

  .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 {
    width: 180% !important;
    max-width: 180% !important;
  }
}

/* Layout */
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  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: 30%;
}

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 10px;
}

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

.l-imgR {
  flex-direction: row-reverse;
}

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

.l-style02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.l-style02 .l-desc {
  flex: 1;
  position: relative;
}

.l-style02 .l-ttl {
  font-size: 2.6rem;
  line-height: 1.9;
  margin-bottom: 30px;
}

.l-style02 .l-sub-ttl {
  color: rgba(206, 156, 143, .2);
  font-family: var(--font_en);
  font-size: 8.1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  top: -54px;
  left: -14%;
}

.l-style02 .l-img {
  width: 45%;
  max-width: 420px;
}

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

.access-layout {
  background: var(--color_secondary);
  border-radius: 10px;
  display: flex;
}

.access-layout .l-desc {
  padding: 75px 40px;
  flex: 1;
}

.access-layout .l-ttl {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.access-layout .l-map {
  width: 68%;
}

.access-layout .l-map iframe {
  vertical-align: bottom;
  height: 100%;
  width: 100%;
  border-radius: 0 10px 10px 0;
}

@media (max-width: 1300px) {
  .l-style02 .l-sub-ttl {
    left: -4%;
  }
}

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

  .l-style02 {
    flex-direction: column-reverse;
  }

  .l-style02 .l-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .l-style02 .l-sub-ttl {
    font-size: 5rem;
    top: -25px;
  }

  .l-style02 .l-img {
    width: 100%;
    text-align: center;
  }

  .access-layout {
    flex-direction: column-reverse;
  }

  .access-layout .l-desc {
    padding: 40px 5%;
    border-radius: 10px;
  }

  .access-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .access-layout .l-map {
    width: 100%;
  }

  .access-layout .l-map iframe {
    border-radius: 10px 10px 0 0;
    height: 200px;
  }
}

/* DL */
.dl-style01 {
  display: grid;
  grid-template-columns: 115px 1fr;
  grid-gap: 10px 30px;
  align-items: baseline;
}

.dl-style01>dt {
  background: #FAC7C1;
  border-radius: 4px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-style02 {
  display: grid;
  grid-gap: 15px;
}

.dl-style02 .item {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-gap: 10px 0;
}

.dl-style02 dt {
  background: #FAC7C1;
  border-radius: 10px 0 0 10px;
  color: #fff;
  padding: 20px;
  display: grid;
  align-items: center;
  line-height: 1.6;
}

.dl-style02 dd {
  background: var(--color_secondary);
  border-radius: 0 10px 10px 0;
  padding: 20px;
  display: grid;
  align-items: center;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .dl-style01 {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .dl-style01>dt {
    width: 115px;
  }

  .dl-style01 dd+dt {
    margin-top: 10px;
  }

  .dl-style02 .item {
    display: block;
  }

  .dl-style02 dt {
    padding: 15px;
    border-radius: 10px 10px 0 0;
  }

  .dl-style02 dd {
    padding: 15px;
    border-radius: 0 0 10px 10px;
  }
}

/* Staff */
.staff-layout .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
}

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

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

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

.staff-layout .l-ttl {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
  margin-bottom: 20px;
}

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

.card-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5%;
  margin-top: 30px;
}

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

.card-profile .item {
  background-color: var(--color_secondary);
  border-radius: 4px;
  padding: 30px;
}

.card-profile .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.7rem;
  border-bottom: 1px dashed #E5CCC6;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dl-career {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 12px 0;
  line-height: 1.5;
}

.bnr-area {
  display: flex;
  gap: 15px;
}

.bnr-area img {
  max-width: 200px;
  height: auto;
}

.list-image {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.list-image img {
  width: 100%;
}

@media (max-width: 800px) {
  .staff-layout .wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }

  .staff-layout .l-ttl {
    margin-bottom: 10px;
  }

  .staff-layout .name {
    font-size: 22px;
  }

  .staff-layout .kana {
    font-size: 12px;
  }

  .staff-layout .card-profile {
    margin-top: 30px;
  }

  .card-profile {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .card-profile .item {
    padding: 20px;
  }

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

  .bnr-area {
    gap: 10px;
  }

  .bnr-area img {
    max-width: 100%;
  }

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

/* お問い合わせ */
.tel-layout {
  background: var(--color_secondary);
  border-radius: 10px;
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid #FAC7C1;
  margin-bottom: 30px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: fit-content;
}

.tel-layout .wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.tel-layout .l-tel {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  color: #FAC7C1;
  font-family: var(--font_en);
  font-size: 3.5rem;
  line-height: 1;
}

.tel-layout .l-time {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
}

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

.tel-layout .l-time dt {
  color: #FAC7C1;
  border: 1px solid #FAC7C1;
  text-align: center;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout .l-ttl {
    font-size: 15px;
    margin: 0 auto 25px;
  }

  .tel-layout .wrapper {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }

  .tel-layout .l-tel {
    font-size: 30px;
  }

  .tel-layout .icon {
    width: 20px;
  }
}

/* Box */
.box-style05 {
  background: var(--color_secondary);
  border-radius: 10px;
  padding: 40px;
}

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

@media (max-width: 800px) {
  .box-style05 {
    padding: 25px;
  }

  .box-style05 .box-ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

/* splide */
.under-slider01 {
  overflow: hidden;
}

.under-slider01 .splide {
  margin: 0 auto;
}

.under-slider01 .splide__track {
  overflow: visible;
}

.under-slider01 .splide__slide {
  opacity: .2;
  transition: opacity .3s ease-in-out;
}

.under-slider01 .splide__slide.is-active {
  opacity: 1;
}

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

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

.under-slider01 .splide__slide img {
  border-radius: 10px;
}

.under-slider02 .item-img {
  position: relative;
}

@media (max-width: 800px) {
  .under-slider01 .splide__arrow--prev {
    left: 30px;
  }

  .under-slider01 .splide__arrow--next {
    right: 30px;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*通常投稿*/
.list-under-post .list-item {
  margin-bottom: 80px;
}

.list-under-post .list-item:last-child {
  margin-bottom: 0;
}

.list-under-post .list-layout {
  display: flex;
  gap: 25px;
  margin-bottom: 15px;
}

.list-under-post .list-img {
  width: 250px;
}

.list-under-post .list-img img {
  aspect-ratio: 7/5;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.list-under-post .list-desc {
  flex: 1;
}

.list-under-post .post-data {
  display: flex;
  margin-bottom: 10px;
}

.list-under-post time {
  display: block;
  font-family: var(--font_en);
  color: #AFA5A1;
  font-size: 1.4rem;
  margin-right: 15px;
}

.list-under-post .post-ttl {
  font-size: 2.6rem;
  background-image: linear-gradient(to right, #CE9C8F 2px, transparent 2px);
  background-size: 7px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.list-under-post .post-ttl span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.list-under-post .category {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.2rem;
  padding: 0 5px;
  margin-right: 5px;
}

.list-under-post .no-post {
  padding: 25px 0;
}

.select-area {
  display: flex;
  align-items: center;
  margin: 0 0 50px;
}

.select-area .select-item {
  display: flex;
  align-items: center;
  margin: 0 30px 0 0;
}

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

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: url(../images/share/icon_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 0;
}

.select-area .select-category-button {
  appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
  color: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  transition: 0.3s;
  margin-left: 15px;
  cursor: pointer;
  transition: .3s;
}

.select-area .select-category-button:hover {
  background: #fff;
  color: var(--wp--preset--color--primary);
}

@media (max-width: 800px) {
  .list-under-post .list-item {
    margin-bottom: 50px;
  }

  .list-under-post .list-item:last-child {
    margin-bottom: 0;
  }

  .list-under-post .list-layout {
    flex-direction: column;
    gap: 15px;
  }

  .list-under-post .list-img {
    width: 100%;
  }

  .list-under-post time {
    font-size: 1.2rem;
  }

  .list-under-post .post-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .list-under-post .no-post {
    padding: 25px 0;
  }

  .select-area .select-item {
    margin: 0;
  }

  .select-area .select-ttl {
    font-size: 1.5rem;
  }

  .select-area .select-category {
    font-size: 1.5rem;
    max-width: 150px;
  }
}

/*症例紹介 スライダー*/
.case-slider .splide__arrow svg {
  display: none;
}

.case-slider .splide__arrow {
  width: 65px;
  height: 65px;
}

.case-slider .splide__arrow--prev {
  background: url(../images/share/icon_case-slider_arrow.svg) no-repeat left center / contain;
  left: -88px;
}

.case-slider .splide__arrow--next {
  background: url(../images/share/icon_case-slider_arrow.svg) no-repeat right center / contain;
  right: -88px;
}

.case-slider .splide__arrow:hover:not(:disabled) {
  opacity: .7;
}

@media (max-width:1300px) {
  .case-slider .splide__arrow--prev {
    left: -30px;
  }

  .case-slider .splide__arrow--next {
    right: -30px;
  }
}

@media (max-width:800px) {
  .case-slider .splide__arrow {
    width: 45px;
    height: 45px;
  }

  .case-slider .splide__arrow--prev {
    left: -10px;
  }

  .case-slider .splide__arrow--next {
    right: -10px;
  }
}

/*症例紹介*/
.case-layout {
  background: var(--color_secondary);
  border-radius: 10px;
  padding: 40px 40px 50px;
}

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

.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.6rem;
  background-image: linear-gradient(to right, #CE9C8F 2px, transparent 2px);
  background-size: 7px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  margin-bottom: 30px;
  padding-bottom: 5px;
}

.case-layout .post-data {
  display: flex;
  margin-bottom: 20px;
}

.case-layout .l-table {
  background-color: #fff;
  border: 1px solid #eee;
}

.case-layout .l-table th,
.case-layout .l-table td {
  border: 1px solid #eee;
  line-height: 1.5;
  font-size: 15px;
  padding: 15px;
}

.case-layout .l-table th {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
  vertical-align: top;
  text-align: left;
  width: 25%;
}

.case-layout .l-btn {
  display: flex;
  justify-content: center;
  gap: 30px;
  text-align: center;
  margin-top: 40px;
}

.case-layout .l-item {
  margin-top: 50px;
}

.case-layout .item-ttl {
  border-bottom: 1px solid #333;
  font-size: 18px;
  position: relative;
  padding: 0 0 12px;
  margin: 0 0 25px;
}

.case-layout .item-ttl::after {
  content: "";
  width: 25px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.case-layout+.case-layout {
  margin-top: 50px;
}

@media (max-width:800px) {
  .case-layout {
    padding: 30px 20px;
  }

  .case-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .case-layout .post-data {
    display: flex;
    margin-bottom: 20px;
  }

  .case-layout .l-table th,
  .case-layout .l-table td {
    display: block;
    padding: 10px;
    font-size: 14px;
  }

  .case-layout .l-table th {
    width: 100%;
  }

  .case-layout .l-btn {
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .case-layout .l-item {
    margin-top: 30px;
  }

  .case-layout .item-ttl {
    border-bottom: 1px solid var(--wp--preset--color--primary);
    font-size: 18px;
    position: relative;
    padding: 0 0 12px;
    margin: 0 0 25px;
  }

  .case-layout .item-ttl::after {
    content: "";
    width: 25px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
  }

  .case-layout+.case-layout {
    margin-top: 30px;
  }
}

/*詳細ページ*/
.single-post-layout {
  display: flow-root;
  border-bottom: 1px solid #eee;
  padding-bottom: 50px;
  margin-bottom: 50px;
  max-width: 800px;
  width: 90%;
  margin: 0 auto 50px;
}

.single-post-layout .l-ttl {
  border-bottom: 3px solid #eee;
  font-size: 2.4rem;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

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

.single-post-layout .post-data .category {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.2rem;
  padding: 0 5px;
  margin-right: 10px;
}


.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>ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

@media (max-width: 800px) {
  .single-post-layout .l-ttl {
    font-size: 2rem;
  }

  .single-post-layout .post-data time {
    font-size: 1.2rem;
  }
}

/*ページャー*/
.post-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
  font-size: 13px;
  text-align: center;
  min-width: 30px;
  height: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0 20px;
  transition: 0.3s;
}

.post-number>*+* {
  margin-left: 10px;
}

.post-number a:hover {
  background: var(--wp--preset--color--primary);
  color: #fff;
}

.post-number .current {
  background: var(--wp--preset--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;
  margin-top: 50px;
}

.post-number-single a {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.post-number-single .all {
  background: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
  color: #fff;
  font-size: 13px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

.post-number-single .all:hover {
  background: #fff;
  color: var(--wp--preset--color--primary);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--wp--preset--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(--wp--preset--color--primary);
  margin: 0 auto;
  top: 12px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background: var(--wp--preset--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(--wp--preset--color--primary);
}

.post-number-single .next::before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 13px;
  border-right: 1px solid var(--wp--preset--color--primary);
}

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

.sp-only {
  display: none !important;
}

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

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

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 1.1rem;
}

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

.jp-min {
  font-family: var(--font_jp_min);
}

.en {
  font-family: var(--font_en);
}

.bold,
strong {
  font-family: "秀英丸ゴシック B";
}

.red {
  color: #F44336;
}

.pink {
  color: #CE9C8F;
}

.pink02 {
  color: #FAC7C1;
}

.pink03 {
  color: #E59086;
}

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

.underline {
  text-decoration: underline;
}

.u-catch {
  font-family: var(--font_jp);
  font-size: 2.4rem;
  text-align: center;
}

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

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.radius10 {
  border-radius: 10px;
}

.m0 {
  margin: 0 !important;
}

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

.pc-mb20 {
  margin-bottom: 20px !important;
}

.pc-mt30 {
  margin-top: 30px !important;
}

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.col2,
.col3,
.col4 {
  display: grid;
}

.col2.gap,
.col3.gap,
.col4.gap {
  gap: 5%;
}

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

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

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

@media (max-width: 800px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }

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

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

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

  .u-catch {
    font-size: 2rem;
  }

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

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

  .pc-mb20 {
    margin-bottom: 0 !important;
  }

  .pc-mt30 {
    margin-top: 0 !important;
  }

  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
  }

  .col2.gap,
  .col3.gap,
  .col4.gap {
    gap: 30px;
  }
}

/*ボタン*/
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_jp);
  height: 50px;
  font-size: 1.8rem;
  line-height: 1.5;
  padding-right: 90px;
  position: relative;
  transition: 0.3s;
}

.btn-more::before {
  content: "";
  background: url(../images/share/icon_btn-arrow_green.svg) no-repeat right center/contain;
  width: 51px;
  height: 4px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.btn-more::after {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #0ABAB5;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transform-origin: top center;
  transition: 0.3s;
}

.btn-more:hover {
  color: #0ABAB5;
}

.btn-more:hover::after {
  scale: 0.8;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  background: #FAC7C1;
  border: 1px solid #FAC7C1;
  border-radius: 50px;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1;
  padding: 10px 80px 10px 30px;
  position: relative;
  transition: 0.3s;
}

.btn-icon::before {
  content: "";
  background: url(../images/share/icon_btn-arrow_b.svg) no-repeat right center/contain;
  width: 21px;
  height: 3px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  z-index: 2;
}

.btn-icon::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #FEE9E7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transform-origin: top center;
  transition: 0.3s;
}

.btn-icon:hover {
  background: #fff;
}

.btn-icon:hover::after {
  scale: 0.8;
}

.btn-out {
  padding-right: 15px;
  position: relative;
}

.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}

.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

.btn-out:hover::after {
  background-position: left bottom;
  background-size: 100% auto;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  justify-content: center;
}

@media (max-width: 800px) {
  .btn-more {
    font-size: 1.6rem;
  }
}

/*DL*/
.dl-cmn {
  font-size: 1.5rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
}

.dl-cmn.small {
  grid-template-columns: 70px 1fr;
}

.dl-cmn>dt {
  height: 23px;
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.dl-cmn>dd {
  line-height: 1.4;
}

/*診療カレンダー*/
:root {
  --event01: #FAC7C1;
  --event02: #81A9BE;
}

.business-calendar-box-wrap {
  background: var(--color_secondary);
  border-radius: 10px;
  padding: 20px 40px;
}

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

.business-calendar-box-wrap .business-calendar caption {
  font-family: var(--font_jp);
  font-size: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--color_border);
  position: relative;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 2.5rem;
  vertical-align: -1px;
  position: absolute;
  top: 4px;
}

.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;
  background: #FAC7C1;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 4px;
}

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

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

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-bottom: 1px solid #4B4341;
  border-right: 1px solid #4B4341;
  width: 7px;
  height: 7px;
  position: absolute;
  position: absolute;
  top: 9px;
  left: 10px;
  transform: rotate(135deg);
}

.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(-45deg);
  left: 7px;
}

.business-calendar-box-wrap .business-calendar th {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: clamp(1rem, 1.333vw, 1.6rem);
  text-align: center;
  padding: 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  position: relative;
  font-family: var(--font_en);
  font-size: 1.6rem;
  padding: 5px;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  background: #ccc;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

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

.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);
  gap: 3%;
}

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

.business-calendar-box-wrap .business-calendar .attr1 {
  color: #fff;
}

.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before {
  opacity: 1;
}

.business-calendar-box-wrap .business-calendar .attr0::before {
  background: var(--event01);
}

.business-calendar-box-wrap .business-calendar .attr1::before {
  background: var(--event02);
}

.list-event {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.list-event li {
  display: flex;
  gap: 5px;
  font-size: 1.5rem;
  line-height: 1;
}

.list-event .icon01 {
  color: var(--event01);
}

.list-event .icon02 {
  color: var(--event02);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap {
    padding: 15px 20px;
  }

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

  .business-calendar-box-wrap .business-calendar caption {
    font-size: 1.5rem;
  }

  .business-calendar-box-wrap .business-calendar-past a,
  .business-calendar-box-wrap .business-calendar-future a {
    width: 18px;
    height: 18px;
    top: 2px;
  }

  .business-calendar-box-wrap .business-calendar-past a::before,
  .business-calendar-box-wrap .business-calendar-future a::before {
    width: 6px;
    height: 6px;
    top: 6px;
    left: 7px;
  }

  .business-calendar-box-wrap .business-calendar-future a::before {
    left: 4px;
  }

  .business-calendar-box-wrap .business-calendar th,
  .business-calendar-box-wrap .business-calendar td {
    font-size: 1.1rem;
  }

  .business-calendar-box-wrap .business-calendar td::before {
    width: 22px;
    height: 22px;
  }

  .list-event li {
    font-size: 1.1rem;
  }
}

/*診療時間*/
.time-table {
  background: var(--color_secondary);
  border-radius: 10px;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
  margin-bottom: 5px;
  padding: 16px 20px;
}

.time-table.white {
  background: #fff;
}

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

.time-table-head .item:first-child {
  border-right: 1px solid var(--color_border);
}

.time-table-body {
  border-top: 1px solid var(--color_border);
}

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

.time-table-body .item:first-child {
  letter-spacing: 0;
  border-right: 1px solid var(--color_border);
}

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

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

@media (max-width: 800px) {
  .time-table {
    padding: 12px 10px;
  }

  .time-table-head {
    font-size: 1.2rem;
  }

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

  .time-table-body .item {
    padding: 8px 0;
    font-size: 1.3rem;
  }

  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 1.2rem;
  }

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

/*-----------------------------------------------------------
splide
-----------------------------------------------------------*/
/*各種色設定*/
:root {
  --splide-arrow-color: #4B4341;
  /*矢印*/
  --splide-focus-color: #4B4341;
  /*タブ移動によるフォーカス時のアウトライン*/
  --splide-pagination-color: #4B4341;
  /*アクティブ時のページネーション*/
  --splide-progress-color: #4B4341;
  /*プログレスバー*/
  --splide-toggle-color: #4B4341;
  /*再生ボタン*/
  --splide-track-color: #4B4341;
  /*サムネイルの枠*/
}

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

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

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

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

.splide__pagination li {
  display: 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 {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.splide__controls .splide__pagination {
  position: static;
}

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

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

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

.splide__track--draggable {
  -webkit-touch-callout: none;
  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 {
  background: none;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 35px;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.2s;
}

.splide__arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--splide-arrow-color);
}

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

.splide__arrow:disabled {
  opacity: 0.3;
}

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

.splide__arrow--prev {
  left: 20px;
  transform: translateY(-50%) scaleX(-1);
}

.splide__arrow--next {
  right: 20px;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid var(--splide-focus-color);
  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;
  transition: transform 0.2s linear;
  width: 8px;
}

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

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

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

.splide__toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #737e80;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: background-color 0.2s ease;
  height: 29px;
  width: 29px;
}

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

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

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

.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 {
  transform: scaleX(1);
}

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .splide__arrow {
    width: 25px;
    height: 25px;
  }

  .splide__arrow--prev {
    left: 10px;
  }

  .splide__arrow--next {
    right: 10px;
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: translateY(0);
  }
}
