@charset "UTF-8";

:root {
  --font-device: "FOT-筑紫ゴシック Pr5 M", TsukuGoPr5-M, "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font-heading: "FOT-筑紫明朝 Pr6N M", TsukuMinPr6N-M, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --font-en: "Homemade Apple", cursive;
  --color-bace: #333;
  --color-main: #4EA7BB;
  --color-sub-green: #60C48A;
  --color-sub-gray: #546166;
  --color-bg: #EAEFF0;
  --color-border: #DFDFDF;
}

/*-----------------------------------------------------------
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 {
  font-family: var(--font-heading);
  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;
  appearance: none;
  font-size: inherit;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background: #d4dcd6;
}

img,
video {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (max-width: 800px) {
  html {
    font-size: 15px;
  }
}

body,
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--font-device);
  font-weight: 500;
  color: var(--color-bace);
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media (max-width: 800px) {
  body {
    line-height: 1.8;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.5;
}

@media (max-width: 800px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.7;
  }
}

th,
dt {
  font-weight: bold;
}

.link {
  color: var(--color-main);
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}

.link[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:is(:hover, :focus) {
  text-decoration: none;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 100px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 60px;
  }
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.container.wide {
  max-width: 1200px;
}

.container.narrow {
  max-width: 800px;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  background-color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 30px;
  position: fixed;
  height: 110px;
  width: 100%;
  z-index: 10;
}

.h-logo {
  margin-bottom: auto;
}

.h-contact {
  display: flex;
  position: absolute;
  right: 30px;
  top: 0;
}

.h-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  padding: 7px 10px;
  width: 158px;
}

.h-contact a:first-child {
  background-color: var(--color-main);
  font-size: 1.063rem;
  gap: 4px;
}

.h-contact a:nth-child(2) {
  background-color: var(--color-sub-green);
  gap: 10px;
}

@media (max-width: 800px) {
  .header {
    display: flex;
    align-items: center;
    padding: 11px 2.5vw;
    position: static;
    width: 100%;
    height: auto;
  }

  .h-logo {
    max-width: 303px;
    margin: 0;
  }

  .h-contact {
    display: none;
  }

}

/*------------
Gnavi
--------------*/
.gnavi-list {
  display: flex;
  gap: 25px;
}

.gnavi-list>li>a,
.gnavi-list>li>span {
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.063rem;
}

.gnavi-list>li>a {
  transition: color 0.3s;
}

.gnavi-list>li>a:focus-visible {
  color: var(--color-main);
}

.gnavi-list>li>span {
  padding-right: 15px;
  position: relative;
}

.gnavi-list>li>span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.dropdown {
  display: flex;
  align-items: center;
  position: relative;
}

.dropdown::after {
  content: "";
  display: block;
  border-bottom: 2px solid #6C5D55;
  border-right: 2px solid #6C5D55;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  transform: rotate(45deg);
  transform-origin: right;
  display: none;
}

.dropdown a {
  background: linear-gradient(to right, #fff, #fff) no-repeat left bottom/0 1px;
  transition: background-size 0.3s;
}

.dropdown a:focus-visible {
  background-size: 100% 1px;
}

.dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.dropdown .sub-menu {
  display: grid;
  grid-gap: 0;
  font-size: 0.938rem;
  pointer-events: none;
  background-color: var(--color-main);
  color: #fff;
  padding: 16px 23px 24px;
  position: absolute;
  top: 40px;
  right: 50%;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  width: 100%;
  height: 35px;
}

.dropdown .sub-menu li {
  padding-left: 10px;
  position: relative;
}

.dropdown .sub-menu li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 0.938rem;
  transform: rotate(45deg);
}

.dropdown .sub-menu.single {
  gap: 4px;
}

.dropdown .sub-menu.column {
  display: flex;
  gap: 30px;
}

.dropdown .sub-menu.column>li:nth-child(3)::before {
  content: none;
}

.dropdown:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

.dropdown .menu-ttl {
  margin-bottom: 4px;
}

.dropdown .menu-list {
  display: grid;
  gap: 4px;
}

.dropdown .menu-list li::before {
  background-color: #fff;
  width: 6px;
  height: 1px;
  border-top: none;
  border-right: none;
  transform: none;
}

@media (any-hover: hover) {
  .gnavi-list>li>a:hover {
    color: var(--color-main);
  }

  .dropdown a:hover {
    background-size: 100% 1px;
  }
}

@media (max-width: 1024px) {
  .gnavi {
    display: none;
  }

}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  padding: 110px 0 0 min(11vw, 210px);
}

.hero-catch {
  position: absolute;
  bottom: 30%;
  left: 5%;
  z-index: 5;
}

.hero-catch .ttl {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 2.4vw, 2.75rem);
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-shadow: 3px 2px 3px rgba(255, 255, 255, 1);
}

.fixed-bnr-wrap {
  position: absolute;
  bottom: 80px;
  right: 65px;
  z-index: 5;
}

.fixed-bnr {
  position: relative;
  width: clamp(330px, 25vw, 455px);
}

.fixed-bnr+.fixed-bnr {
  margin-top: 20px;
}

.fixed-bnr .txt01 {
  background: linear-gradient(100deg, var(--color-main) 0%, var(--color-sub-green) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.3vw, 1.5rem);
  padding: 8px 30 11px;
  text-align: center;
}

.fixed-bnr .bnr-inner {
  background-color: #fff;
  border-right: 1px solid var(--color-sub-gray);
  border-bottom: 1px solid var(--color-sub-gray);
  border-left: 1px solid var(--color-sub-gray);
  padding: 21px 0 17px;
}

.fixed-bnr .bnr-inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.fixed-bnr .bnr-inner a:first-child {
  gap: 16px;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.6vw, 1.875rem);
  line-height: 1.4;
  text-align: center;
}

.fixed-bnr .bnr-inner a:nth-child(2) {
  gap: 8px;
}

.fixed-bnr .bnr-inner a+a {
  margin-top: 13px;
}

.fixed-bnr .bnr-inner a:focus-visible {
  color: var(--color-main);
}

.fixed-bnr-close {
  cursor: pointer;
  background-color: var(--color-sub-gray);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
}

.fixed-bnr-close::before,
.fixed-bnr-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #fff;
  transform-origin: center;
}

.fixed-bnr-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.fixed-bnr-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero .splide__slide img {
  border-radius: 0 0 0 160px;
  width: 100%;
  object-fit: cover;
}

.hero .splide__pagination {
  justify-content: flex-end;
  bottom: 30px;
  right: 50px;
}

@media (any-hover: hover) {
  .fixed-bnr .bnr-inner a:hover {
    color: var(--color-main);
  }
}

@media (max-width: 800px) {
  .hero-catch {
    top: 60px;
    bottom: auto;
    left: auto;
    right: 10%;
  }

  .hero-catch .ttl {
    font-size: 1.4rem;
  }

  .hero {
    padding: 0;
    margin-top: 0px;
  }

  .fixed-bnr-wrap {
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }

  .fixed-bnr {
    width: 100%;
  }

  .fixed-bnr+.fixed-bnr {
    margin-top: 15px;
  }

  .fixed-bnr .txt01 {
    font-size: 1.267rem;
    padding: 10px 25px 14px;
  }

  .fixed-bnr .bnr-inner {
    padding: 13px 25px;
  }

  .fixed-bnr .bnr-inner a:first-child {
    font-size: 1.25rem;
  }

  .fixed-bnr .bnr-inner a+a {
    margin-top: 8px;
  }

  .fixed-bnr-close {
    width: 24px;
    height: 24px;
  }

  .fixed-bnr-close::before,
  .fixed-bnr-close::after {
    width: 11px;
  }

  .hero .splide {
    padding-bottom: 210px;
  }

  .hero .splide__slide img {
    border-radius: 0;
    width: 100%;
    height: auto;
  }

  .hero .splide__pagination {
    justify-content: flex-end;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 0;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
  padding: 45px 0 0;
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

.t-ttl::before {
  content: "";
  background: url(../images/share/t_ttl_deco.svg) no-repeat center center / contain;
  width: 116px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.t-ttl [lang="en"] {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 2.875rem;
  line-height: 1;
  margin-bottom: 10px;
}

.t-ttl .jp {
  font-size: 2rem;

}

@media (max-width: 800px) {
  .t-ttl {
    padding: 30px 0 0;
    margin-bottom: 35px;
  }

  .t-ttl [lang="en"] {
    font-size: 1.75rem;
    margin-bottom: 3px;
  }

  .t-ttl .jp {
    font-size: 1.5rem;
  }
}

/*------------
Block
--------------*/
.sec01 {
  padding: 90px 0 83px;
  position: relative;
}

.sec01::before {
  content: "";
  background-color: var(--color-bg);
  width: 100%;
  height: 200%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.l-sec01 {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 100px;
  min-height: 150px;
  position: relative;
}

.l-sec01 .l-ttl [lang="en"] {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 10px;
}

.l-sec01 .l-ttl .jp {
  font-size: 1.5rem;
}

.l-sec01 .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 50px 0;
  }

  .l-sec01 {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .l-sec01 .l-ttl [lang="en"] {
    margin-bottom: 0;
  }

  .l-sec01 .l-btn {
    position: static;
    margin-top: 20px;
    text-align: center;
  }
}

.sec02 {
  padding: 150px 0;
}

.sec02-container {
  max-width: 1400px;
  margin: 0 15vw 0 5vw;
}

.l-sec02 {
  display: flex;
}

.l-sec02 .l-img {
  width: 48%;
  margin: 0 5% 0 0;
}

.l-sec02 .img {
  padding: 0 10% 15% 0;
  position: relative;
}

.l-sec02 .img::before {
  content: "";
  background: url(../images/top_img_deco01.jpg) no-repeat center/contain;
  width: 71%;
  height: auto;
  aspect-ratio: 478/372;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.l-sec02 .l-desc {
  flex: 1;
}

.l-sec02 .l-ttl {
  font-size: 2rem;
  margin-bottom: 40px;
}

.l-sec02 p+p {
  margin-top: 1rem;
}

@media (max-width: 800px) {
  .sec02 {
    padding: 50px 0;
  }

  .sec02-container {
    margin: 0 5%;
  }

  .l-sec02 {
    flex-direction: column;
  }

  .l-sec02 .l-img {
    margin: 0 0 20px 0;
    width: 100%;
  }

  .l-sec02 .img {
    padding: 0 5% 10% 0;
  }

  .l-sec02 .l-ttl {
    font-size: 1.562rem;
    margin-bottom: 20px;
  }
}

.sec03 {
  overflow: hidden;
  padding: 0 0 120px;
}

.l-sec03 {
  display: flex;
}

.l-sec03 .l-img {
  width: 46%;
  margin: 0 10% 0 0;
}

.l-sec03 .img {
  position: relative;
  padding: 0 0 10% 15%;
}

.l-sec03 .img::before {
  content: "";
  background: url(../images/top_img_deco01.jpg) no-repeat center / contain;
  width: 71%;
  height: auto;
  aspect-ratio: 478 / 372;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.l-sec03 .l-desc {
  flex: 1;
}

.sec03-ttl {
  margin-bottom: 30px;
}

.sec03-ttl .ttl {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.sec03-ttl .sub-ttl {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  padding-left: 60px;
  position: relative;
}

.sec03-ttl .sub-ttl::before {
  content: "";
  background-color: var(--color-main);
  width: 40px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.l-sec03+.l-sec03 {
  margin-top: 90px;
}

.l-sec03.reverse {
  flex-direction: row-reverse;
}

.l-sec03.reverse .l-img {
  margin: 0 0 0 8%;
}

.l-sec03.reverse .img {
  padding: 0 15% 8% 0;
}

.l-sec03.reverse .img::before {
  right: 0;
  left: auto;
}

.sec03-list a {
  border-bottom: 1px solid var(--color-sub-gray);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: center;
  gap: 35px;
  padding: 20px 10px;
  height: 115px;
  position: relative;
  transition: background-color 0.3s;
}

.sec03-list a::before {
  content: "";
  background-color: var(--color-main);
  mask: url(../images/share/icon_arrow.svg) no-repeat center / contain;
  width: 12px;
  height: 11px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.sec03-list a img {
  margin: 0 auto;
}

.l-sec03-02 {
  /* display: grid; */
  /* grid-template-columns: minmax(0, 1fr) 54%; */
  display: flex;
  gap: 30px;
  margin: 150px 0 120px;
  padding: 120px 0 115px;
  position: relative;
}

.l-sec03-02 .l-ttl {
  flex: 1;
}

.l-sec03-02 .l-desc {
  width: min(820px, 70%);
}

.l-sec03-02::before {
  content: "";
  background-color: var(--color-bg);
  height: 100%;
  position: absolute;
  inset: 0 88px 0 -100vw;
  z-index: -1;
}

.l-sec03-02 .sec03-ttl {
  margin-bottom: 120px;
}

.sec03-list02 {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); */
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 50px 40px;
}

.sec03-list02 a {
  display: grid;
  gap: 5px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
}

.sec03-list02 a img {
  border: 1px solid transparent;
  margin: 0 auto;
  transition: border 0.3s;
}

.sec03 .youtube-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (any-hover: hover) {
  .sec03-list a:hover {
    background-color: var(--color-bg);
  }

  .sec03-list02 a:hover img {
    border: 1px solid var(--color-main);
  }
}

@media (max-width: 800px) {
  .sec03 {
    padding: 50px 0;
  }

  .l-sec03,
  .l-sec03.reverse {
    flex-direction: column;
  }

  .l-sec03 .l-img,
  .l-sec03.reverse .l-img {
    width: 70%;
    margin: 0 auto 25px;
  }

  .l-sec03 .img {
    padding: 0 0 10% 10%;
  }

  .l-sec03.reverse .img {
    padding: 0 10% 10% 0;
  }

  .l-sec03+.l-sec03 {
    margin-top: 50px;
  }

  .sec03-ttl .ttl {
    font-size: 1.5rem;
  }

  .sec03-ttl .sub-ttl {
    font-size: 1.067rem;
    padding-left: 40px;
  }

  .sec03-ttl .sub-ttl::before {
    width: 25px;
  }

  .sec03-list a {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 10px 10px;
    height: 90px;
  }

  .l-sec03-02 {
    flex-flow: column;
    margin: 50px 0;
    padding: 50px 0;
  }

  .l-sec03-02 .l-desc {
    width: 100%;
  }

  .l-sec03-02::before {
    inset: 0 10% 0 -100vw;
  }

  .l-sec03-02 .sec03-ttl {
    margin-bottom: 30px;
  }

  .sec03-list02 {
    /* grid-template-columns: repeat(auto-fill, minmax(48%, 1fr)); */
    gap: 30px 20px;
  }

  .sec03 .youtube-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sec04 {
  padding: 0 0 112px;
  position: relative;
}

.sec04::before {
  content: "";
  background-color: var(--color-bg);
  width: 100%;
  height: calc(100% - 61px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sec04 .t-ttl {
  margin: 0 0 34px 88px;
  width: fit-content;
}

.sec04-desc {
  margin: 0 0 50px auto;
  max-width: 790px;
}

.sec04-desc p+p {
  margin-top: 1rem;
}

.sec04-desc .l-btn {
  margin-top: 50px;
}

.sec04-flow {
  display: flex;
  /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
  gap: 40px;
}

.sec04-flow .item.item01,
.sec04-flow .item.item02 {
  width: 270px;
}

.sec04-flow .item.item03 {
  width: 540px;
}

.sec04-flow .item {
  padding-top: 38px;
  position: relative;
}

.sec04-flow .item:nth-of-type(2n) {
  margin-top: 60px;
}

.sec04-flow .flow-date {
  color: var(--color-sub-green);
  font-family: var(--font-en);
  font-size: 2.25rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.sec04-flow .flow-img {
  margin-bottom: 30px;
}

.sec04-flow .label {
  background-color: var(--color-sub-green);
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 10px;
  padding: 0px 8px;
  width: fit-content;
}

.sec04-flow .flow-ttl {
  font-size: 1.188rem;
  margin-bottom: 10px;
}

.sec04-flow .flow-incolumn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}


.sec04-flow .list-disc {
  font-size: 0.938rem;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 50px 0;
  }

  .sec04::before {
    height: calc(100% - 85px);
  }

  .sec04 .t-ttl {
    margin: 0 0 35px;
  }

  .sec04-desc .l-btn {
    margin-top: 35px;
  }

  .sec04-flow {
    /* grid-template-columns: minmax(0, 1fr); */
    flex-flow: column;
  }

  .sec04-flow .item.item01,
  .sec04-flow .item.item02,
  .sec04-flow .item.item03 {
    width: 100%;
  }

  .sec04-flow .item:nth-of-type(2n) {
    margin-top: 0;
  }

  .sec04-flow .flow-date {
    left: 50%;
    transform: translateX(-50%);
  }

  .sec04-flow .flow-img {
    margin: 0 auto 30px;
    width: fit-content;
  }

  .sec04-flow .flow-incolumn {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.sec05 {
  padding: 120px 0;
}

.l-sec05 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 35px;
}

.sec05-btn {
  margin-top: 45px;
  text-align: center;
}

@media (max-width: 800px) {
  .sec05 {
    padding: 50px 0;
  }

  .l-sec05 {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .sec05-btn {
    margin-top: 30px;
  }
}

.sec06 {
  background-color: var(--color-bg);
  padding: 90px 0;
}

.l-sec06 {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 60px;
  min-height: 150px;
  position: relative;
}

.l-sec06 .l-ttl [lang="en"] {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 10px;
}

.l-sec06 .l-ttl .jp {
  font-size: 1.5rem;
}

.l-sec06 .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 800px) {
  .sec06 {
    padding: 50px 0;
  }

  .l-sec06 {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .l-sec06 .l-btn {
    position: static;
    text-align: center;
  }
}

.sec07 {
  overflow: hidden;
  padding: 120px 0;
}

.l-sec07 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 277px;
  gap: 0 77px;
  padding: 0 0 90px;
  position: relative;
}

.l-sec07::before {
  content: "";
  background-color: var(--color-bg);
  height: 247px;
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 10%;
  z-index: -1;
}

.l-sec07 .l-intro {
  grid-area: 1/2/2/3;
}

.l-sec07 .l-desc {
  grid-area: 1/1/3/2;
  margin-top: 50px;
}

.l-sec07 .l-btn {
  grid-area: 2/2/3/3;
  margin-top: 70px;
  text-align: center;
}

.l-sec07 .l-ttl {
  margin-bottom: 20px;
  text-align: center;
}

.l-sec07 .l-ttl [lang="en"] {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 20px;
}

.l-sec07 .l-ttl .jp {
  font-size: 1.25rem;
}

.l-sec07:nth-child(2) {
  margin-top: 60px;
}

.l-sec07:nth-child(2) .l-intro {
  margin-top: auto;
}

@media (max-width: 800px) {
  .sec07 {
    padding: 50px 0;
  }

  .l-sec07 {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 0 0 40px;
  }

  .l-sec07::before {
    height: 82%;
    position: absolute;
    bottom: 0;
    left: -5vw;
  }

  .l-sec07 .l-intro {
    grid-area: 1/1/2/2;
  }

  .l-sec07 .l-desc {
    grid-area: 2/1/3/2;
    margin-top: 0;
  }

  .l-sec07 .l-btn {
    grid-area: 3/1/4/2;
    margin-top: 0;
  }
}

/*------------
Post
--------------*/
.list-top-blog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-gap: 20px;
}

.list-top-blog .list-img {
  border: 1px solid #DEE4E5;
  margin-bottom: 15px;
  overflow: hidden;
}

.list-top-blog .list-img img {
  object-fit: cover;
  width: 100%;
  height: 170px;
  transition: transform 0.5s;
}

.list-top-blog time {
  color: #7E8588;
  display: block;
  font-size: 0.75rem;
}

.list-top-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.938rem;
}

.list-top-blog a {
  display: block;
  height: 100%;
}

.list-top-blog a:focus-visible .list-img img {
  transform: scale(1.1);
}


.list-top-news a {
  display: flex;
  border-bottom: 1px solid var(--color-sub-gray);
  padding: 22px 0;
  position: relative;
}

.list-top-news a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.list-top-news a:focus-visible .list-ttl {
  text-decoration: underline;
}

.list-top-news time {
  display: inline-block;
  color: var(--color-sub-gray);
  font-size: 0.875rem;
  white-space: nowrap;
  margin: -1px 40px 0 0;
}

.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-heading);
  font-size: 1.125rem;
}

@media (any-hover: hover) {
  .list-top-blog a:hover .list-img img {
    transform: scale(1.1);
  }

  .list-top-news a:hover .list-ttl {
    text-decoration: underline;
  }
}

@media (max-width: 800px) {
  .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 {
    padding: 13px 0;
  }

  .list-top-news time {
    margin: 3px 20px 0 0;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  position: relative;
  padding: 110px 0 0 11%;
}

.page-ttl .ttl {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  line-height: 1.2;
  position: absolute;
  bottom: 35%;
  left: 5%;
  text-shadow: 3px 2px 3px rgba(255, 255, 255, 1);
  z-index: 2;
}

.page-ttl-bg img {
  border-radius: 0 0 0 160px;
  object-fit: cover;
  height: 517px;
  width: 100%;
}

.page-ttl .fixed-bnr-wrap {
  bottom: -70px;
  right: 50px;
}

.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 {
  overflow: hidden;
  padding: 150px 0;
}

.u-contents p+p {
  margin-top: 1.5em;
}

@media (max-width: 800px) {
  .page-ttl {
    padding: 0 0 0 5%;
  }

  .page-ttl .ttl {
    font-size: 1.75rem;
    bottom: auto;
    top: 0;
    height: 220px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .page-ttl-bg img {
    border-radius: 0 0 0 80px;
    height: 220px;
  }

  .page-ttl .fixed-bnr-wrap {
    position: static;
    transform: none;
    width: 95%;
  }

  .u-contents {
    padding: 50px 0;
  }

  .u-contents p+p {
    margin-top: 1em;
  }
}

.u-h2 {
  font-size: 2rem;
  padding-bottom: 28px;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.u-h2::after {
  content: "";
  background: url(../images/under/ttl_deco.svg) no-repeat center/contain;
  width: 116px;
  height: 8px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-h3 {
  border-bottom: 1px solid var(--color-sub-gray);
  font-size: 1.75rem;
  padding-bottom: 10px;
  margin-bottom: 1.5rem;
}

.u-h4 {
  font-size: 1.125rem;
  padding-left: 50px;
  margin-bottom: 1rem;
  position: relative;
}

.u-h4::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--color-main);
  position: absolute;
  top: 14px;
  bottom: 0.2rem;
  left: 0;
}

.u-h5 {
  font-size: 1.125rem;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.u-h5::after {
  content: "";
  border-radius: 50px;
  width: 10px;
  height: 10px;
  background-color: var(--color-main);
  position: absolute;
  top: 0.6rem;
  left: 0;
}

.u-num-ttl {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--color-sub-gray);
  font-size: 1.75rem;
  padding-bottom: 10px;
  margin-bottom: 1.5rem;
}

.u-num-ttl::before {
  content: attr(data-en);
  display: grid;
  place-items: center;
  background-color: var(--color-main);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-device);
  font-size: 20px;
  width: 50px;
  height: 50px;
  text-align: center;
}

@media (max-width: 800px) {
  .u-h2 {
    font-size: 1.563rem;
    padding-bottom: 18px;
    margin-bottom: 2rem;
  }

  .u-h3 {
    font-size: 1.25rem;
    padding-bottom: 0.7rem;
    margin-bottom: 1.5rem;
  }

  .u-h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .u-num-ttl {
    align-items: flex-start;
    gap: 10px;
    grid-template-columns: 35px 1fr;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .u-num-ttl::before {
    font-size: 12px;
    width: 35px;
    height: 35px;
  }
}

.tall+.tall {
  margin-top: 100px;
}

.short+.short {
  margin-top: 50px;
}

.x-short+.x-short {
  margin-top: 25px;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 100px;
  }

  .short+.short {
    margin-top: 50px;
  }
}

.list-disc {
  display: grid;
  grid-gap: 0.5rem;
}

.list-disc li {
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.list-disc li:before {
  content: "・";
  color: var(--color-main);
  font-size: 1.563rem;
  display: block;
  position: absolute;
  top: -8px;
  left: 0;
}

.list-check {
  display: grid;
  grid-gap: 5px;
}

.list-check li {
  font-weight: bold;
  position: relative;
  padding-left: 30px;
}

.list-check li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 18px;
  height: 18px;
}

.list-num {
  counter-reset: number;
  display: grid;
  grid-gap: 5px;
}

.list-num>li {
  padding-left: 30px;
  position: relative;
}

.list-num>li:before {
  color: var(--color-main);
  counter-increment: number;
  content: counter(number) ".";
  font-family: var(--font-heading);
  font-size: 15px;
  position: absolute;
  top: 0.35rem;
  left: 0;
  line-height: 20px;
  text-align: center;
  width: 20px;
  height: 20px;
}

.dl-style01 {
  display: grid;
  grid-gap: 15px;
}

.dl-style01 .item {
  display: grid;
  grid-template-columns: 25% 75%;
}

.dl-style01 dt {
  background: rgba(0, 0, 0, 0.1);
  font-size: 17px;
  padding: 20px;
}

.dl-style01 dd {
  background: #f5f5f5;
  padding: 20px;
}

@media (max-width: 800px) {
  .dl-style01 .item {
    grid-template-columns: 1fr;
  }
}

.card-style01 {
  display: grid;
  grid-gap: 25px;
  line-height: 1.8;
}

.card-style01>li {
  background-color: var(--color-bg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.card-style01 .card-img {
  margin-bottom: 1rem;
}

.card-style01 .card-img img {
  border-radius: 8px;
}

.card-style01 .card-num {
  background-color: var(--color-main);
  border-radius: 50px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  width: fit-content;
  padding: 0 1rem;
  margin: 0 auto 0.8rem;
}

.card-style01 .card-sub-ttl {
  display: flex;
  gap: 5px;
  justify-content: center;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0.2rem;
}

.card-style01 .card-sub-ttl::before,
.card-style01 .card-sub-ttl::after {
  content: "-";
}

.card-style01 .card-ttl {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
}

.card-style01 .card-btn {
  padding-top: 15px;
  margin-top: auto;
}

@media (max-width: 800px) {
  .card-style01 {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 25px;
  }
}

.table-style01 th,
.table-style01 td {
  border: 1px solid #c9c9c9;
  padding: 10px 15px;
  vertical-align: middle;
}

.table-style01 th {
  background-color: var(--color-main);
  color: #fff;
}

.table-style01 .bg01 {
  background-color: var(--color-bg);
  color: var(--color-bace);
}

.table-style01.tac th {
  text-align: center;
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {
  .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 {
    margin-bottom: 10px !important;
    width: 150%;
  }

  .table-style01 {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .table-style01 th,
  .table-style01 td {
    padding: 10px;
  }
}

.box-style01 {
  border: 1px solid var(--color-sub-gray);
  padding: 3rem;
  position: relative;
}

.box-style01 .label {
  background-color: #fff;
  font-family: var(--font-heading);
  color: var(--color-main);
  font-size: 1.688rem;
  padding: 0 1rem;
  position: absolute;
  top: -30px;
  left: 2rem;
}

.box-style01.small {
  padding: 1.2rem;
}

.box-style02 {
  background-color: var(--color-bg);
  border-radius: 10px;
  padding: 2.875rem;
  position: relative;
}

.box-style02 .label {
  font-family: var(--font-heading);
  color: var(--color-main);
  font-size: 1.688rem;
  position: absolute;
  top: -1.9rem;
  left: 3rem;
}

.box-style02.small {
  padding: 1.2rem;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 1.5rem;
  }

  .box-style01 .label {
    font-size: 1.375rem;
    top: -1.4rem;
    left: 0.5rem;
  }

  .box-style02 {
    padding: 1.5rem;
  }

  .box-style02 .label {
    font-size: 1.375rem;
    top: -1.3rem;
    left: 1.5rem;
  }

  .box-style02.small {
    padding: 1rem;
    line-height: 1.5;
  }
}

.list-anchor-link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 15px;
}

.list-anchor-link li {
  position: relative;
}

.list-anchor-link li:not(:last-child)::after {
  content: "";
  display: inline-block;
  background: #e0e0e0;
  width: 2px;
  height: 15px;
  margin: 0 20px;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  padding-right: 25px;
}

.list-anchor-link a::before {
  content: "";
  background-color: #6C5D55;
  mask: url(../images/share/icon_arrow_down.svg) no-repeat 0 0/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -3px;
  top: 3px;
}

.list-anchor-link a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .list-anchor-link {
    display: block;
  }

  .list-anchor-link li::after {
    display: none;
  }

  .list-anchor-link a {
    padding: 0 0 0 30px;
  }

  .list-anchor-link a::before {
    right: inherit;
    left: 0;
    top: 2px;
  }
}

.under-slider01 .splide {
  margin: 0 auto;
}

.under-slider01 .splide__track {
  overflow: visible;
}

.under-slider01 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.under-slider01 .splide__arrow--prev {
  left: calc((100% - 860px) / 2);
}

.under-slider01 .splide__arrow--next {
  right: calc((100% - 860px) / 2);
}

.under-slider01 .splide__arrow {
  top: 263px;
  transform: translateY(0);
}

.under-slider01 .item-desc {
  margin-top: 25px;
}

.under-slider01 .item-ttl {
  font-size: 1rem;
  margin-bottom: 10px;
}

.under-slider02 .item-img {
  position: relative;
}

.under-slider02 figcaption {
  background: #fff;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

@media (max-width: 800px) {
  .under-slider01 .item-desc {
    margin-top: 15px;
  }

  .under-slider01 .item-ttl {
    margin-bottom: 0;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.video {
  width: 100%;
  height: auto;
}

.google-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 450px;
}

@media (max-width: 800px) {
  .google-map iframe {
    height: 300px;
  }
}

.faq-style {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-style .item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-style dt {
  cursor: pointer;
  padding: 18px 50px;
  position: relative;
}

.faq-style dt .faq-icon {
  top: 15px;
  left: 0;
}

.faq-style dd {
  display: none;
  padding: 0 50px 30px;
  position: relative;
}

.faq-style dd .faq-icon {
  border: 1px solid var(--color-main);
  background-color: #fff;
  color: var(--color-bace);
  top: 0;
  left: 0;
}

.faq-style .faq-ttl {
  font-family: var(--font-heading);
}

.faq-style .faq-icon {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  color: #333;
  font-size: 0.938rem;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  transition: 0.3s;
}

.faq-style .faq-open-icon {
  background: url(../images/share/faq_arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 21px;
  position: absolute;
  right: 30px;
  top: 24px;
  transition: transform 0.3s;
}

.faq-style .item>dt:hover .faq-icon {
  background-color: var(--color-main);
  color: #fff;
}

.faq-style .is-open .faq-icon {
  background-color: var(--color-main);
  color: #fff;
}

.faq-style .is-open .faq-open-icon {
  transform: rotate(180deg);
}

@media (max-width: 800px) {
  .faq-style {
    line-height: 1.5;
  }

  .faq-style dt {
    padding: 18px 30px 18px 50px;
  }

  .faq-style dt .faq-icon {
    top: 12px;
  }

  .faq-style dd {
    padding: 0 50px 30px;
  }

  .faq-style .faq-open-icon {
    width: 9px;
    height: 20px;
    right: 0;
    top: 19px;
  }
}

/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.l-imgR .l-img,
.l-imgL .l-img {
  width: 40%;
}

.l-imgR .l-img.w30,
.l-imgL .l-img.w30 {
  width: 30%;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
  flex: 1;
}

.l-imgR {
  flex-direction: row-reverse;
}

.fl-wrap {
  display: flow-root;
}

.fl-imgR,
.fl-imgL {
  width: 40%;
}

.fl-imgR.small,
.fl-imgL.small {
  width: 30%;
}

.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

.layout-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}

.layout-col2 .col-ttl {
  border-bottom: 1px solid #A38871;
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    flex-direction: column;
    gap: 25px;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img.w30,
  .l-imgL .l-img.w30 {
    width: 100%;
  }

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }

  .fl-imgR.small,
  .fl-imgL.small {
    width: 100%;
  }

  .layout-col2 {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .layout-col2 .col-ttl {
    font-size: 1.125rem;
  }
}

/*------------
お問い合わせ
--------------*/
.tel-layout {
  background: var(--color-bg);
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid var(--color-main);
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: fit-content;
}

.tel-layout .l-tel {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 35px;
  line-height: 1;
  margin: 0 auto;
  white-space: nowrap;
}

.tel-layout .l-tel img {
  margin: 4px 10px 0 0;
}

.tel-layout .l-time {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 10px;
  line-height: 1.5;
  margin: 20px auto 0;
  width: fit-content;
}

.tel-layout .l-time dt {
  border: 1px solid var(--color-main);
  color: var(--color-main);
  text-align: center;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout {
    padding: 2rem 1.5rem;
  }

  .tel-layout .l-ttl {
    font-size: 15px;
  }

  .tel-layout .l-tel {
    font-size: 25px;
  }

  .tel-layout .l-tel img {
    width: 15px;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid var(--color-sub-gray);
  font-family: var(--font-heading);
  font-size: 18px;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy dd+dt {
  margin-top: 30px;
}

.list-privacy li {
  position: relative;
  padding: 0 0 0 15px;
}

.list-privacy li::before {
  background: var(--color-main);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 15px;
  width: 5px;
  height: 5px;
}

.list-privacy li+li {
  margin-top: 3px;
}

/*------------
Add
--------------*/
.flow-style01>li+li {
  border-top: 1px solid var(--color-sub-gray);
  margin-top: 50px;
  padding-top: 50px;
  position: relative;
}

.flow-style01>li+li::before {
  content: "";
  background: #fff url(../images/share/arrow-flow.svg) no-repeat center/contain;
  width: 40px;
  height: 21px;
  padding: 0 50px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-style01 .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}

.flow-style01 .flow-img {
  width: 35%;
}

.flow-style01 .flow-desc {
  flex: 1;
}

.flow-style01 .flow-ttl {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.flow-style01 .flow-ttl .num {
  background: var(--color-main);
  display: inline-block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 25px;
  padding: 0 9px;
  vertical-align: 3px;
  position: relative;
}

@media (max-width: 800px) {
  .flow-style01>li+li::before {
    content: "";
    background: #fff url(../images/share/arrow-flow.svg) no-repeat center/contain;
    width: 25px;
    height: 15px;
    top: -8px;
  }

  .flow-style01 .wrap {
    flex-direction: column;
    gap: 2rem;
  }

  .flow-style01 .flow-img {
    width: 100%;
  }

  .flow-style01 .flow-ttl {
    display: grid;
    gap: 0.5rem;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
  }

  .flow-style01 .flow-ttl .num {
    font-size: 11px;
    width: fit-content;
  }
}

.flow-style02 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 30px;
}

.flow-style02.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.flow-style02>li {
  background-color: var(--color-bg);
  padding: 1.2rem;
  line-height: 1.5;
  position: relative;
}

.flow-style02>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--color-main);
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
}

.flow-style02 .flow-num {
  background-color: var(--color-main);
  border-radius: 50px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  width: fit-content;
  padding: 0 1rem;
  margin: 0 auto 0.5rem;
}

.flow-style02 .flow-img {
  margin-bottom: 1rem;
}

.flow-style02 .flow-ttl {
  font-size: 1.063rem;
  text-align: center;
  margin-bottom: 1rem;
}

.flow-style02 .flow-btn {
  display: grid;
  grid-gap: 10px;
  margin-top: 2rem;
}

.flow-style02 .btn-more {
  font-size: 0.938rem;
  width: fit-content;
}

@media (max-width: 800px) {
  .flow-style02 {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .flow-style02.col3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .flow-style02>li:not(:last-child)::after {
    top: auto;
    bottom: -28px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}

.u-arrow {
  background-color: var(--color-main);
  width: 70px;
  height: 20px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  margin: 30px auto;
}

.zoom-img {
  display: block;
  position: relative;
}

.zoom-img::before {
  content: "";
  background: var(--color-main) url(../images/share/icon_zoom.svg) no-repeat center/22px auto;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 1;
}

.merit-demerit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}

.merit-demerit .item {
  border-top: 2px solid var(--color-main);
  background: var(--color-bg);
  padding: 2.5rem;
}

.merit-demerit .item:nth-of-type(2) {
  border-color: var(--color-sub-gray);
  background-color: #EAEFF0;
}

.merit-demerit .item:nth-of-type(2) .item-ttl::before {
  color: var(--color-sub-gray);
}

.merit-demerit .item:nth-of-type(2) .list-disc li:before {
  color: var(--color-sub-gray);
}

.merit-demerit .item-ttl {
  color: #333;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.merit-demerit .item-ttl::before {
  content: attr(data-en);
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 1.563rem;
}

@media (max-width: 800px) {
  .merit-demerit {
    grid-template-columns: 1fr;
  }

  .merit-demerit .item {
    padding: 2rem;
  }
}

.list-btns {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.list-btns a {
  display: grid;
  align-items: center;
  background-color: var(--color-main);
  color: #fff;
  line-height: 1.5;
  min-height: 86px;
  padding: 19px 35px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s;
}

.list-btns a:focus-visible {
  background-color: var(--color-sub-gray);
}

@media (any-hover: hover) {
  .list-btns a:hover {
    background-color: var(--color-sub-gray);
  }
}

@media (max-width: 800px) {
  .list-btns {
    grid-gap: 10px;
    grid-template-columns: 1fr;
  }

  .list-btns a {
    font-size: 0.938rem;
    min-height: 60px;
    padding: 0 35px 0 15px;
  }
}

[data-tab-content] {
  display: none;
}

[data-tab-content].is-active {
  display: block;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 0 auto 3rem;
  width: 747px;
}

.tab-nav-item {
  display: inline-block;
  cursor: pointer;
  border: 1px solid var(--color-sub-gray);
  background-color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  padding: 10px 20px;
  transition: all 0.2s ease;
  text-align: center;
}

.tab-nav-item:hover {
  background-color: var(--color-main);
  color: #fff;
}

.tab-nav-item.is-active {
  background: var(--color-main);
  color: #FFF;
}

.tab-content.is-active {
  animation: tabFadeIn 0.7s ease 0s 1 normal;
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .tab-list {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 2rem;
    width: 100%;
  }

  .tab-nav-item {
    line-height: 1.5;
    font-size: 0.938rem;
    padding: 10px 15px;
  }
}

.staff-layout .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
}

.staff-layout .l-img {
  width: 32%;
}

.staff-layout .l-img img {
  border-radius: 15px;
}

.staff-layout .l-img figcaption {
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 15px;
  font-weight: bold;
  line-height: 1;
  position: relative;
}

.staff-layout .l-img .job {
  color: var(--color-main);
  font-size: 0.875rem;
  position: absolute;
  top: 0;
  right: 0;
}

.staff-layout .l-img .name {
  font-size: 1.25rem;
}

.staff-layout .l-img .kana {
  display: block;
  opacity: 0.5;
  font-size: 0.688rem;
  margin-top: 0.5rem;
}

.staff-layout .l-desc {
  flex: 1;
}

.staff-layout .l-ttl {
  color: var(--color-main);
  border-bottom: 2px solid var(--color-main);
  font-size: 16px;
  padding-bottom: 5px;
  margin-bottom: 30px;
  width: fit-content;
}

.staff-layout .l-message {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 30px;
}

.staff-layout .card-profile {
  margin-top: 50px;
}

.card-profile {
  display: grid;
  grid-gap: 30px;
  font-size: 14px;
}

.card-profile .item {
  background-color: var(--color-bg);
  padding: 30px;
}

.card-profile .card-ttl {
  border-bottom: 1px solid var(--color-sub-gray);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.list-career {
  display: flex;
  flex-wrap: wrap;
}

.list-career li:not(:last-child)::after {
  content: "/";
  margin: 0 5px;
}

.dl-career {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 12px 0;
  line-height: 1.5;
}

.list-staff-bnr {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 550px;
  margin: 0 auto;
}

.list-staff {}

.list-staff li {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 5%;
}

.list-staff .list-img {
  margin-bottom: 1rem;
}

.list-staff .list-img img {
  border-radius: 15px;
}

.list-staff .list-ttl {
  flex-wrap: wrap;
  gap: 15px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  margin-bottom: 30px;
}

.list-staff .list-ttl .job {
  color: #DE7E1F;
  font-size: 0.875rem;
  position: absolute;
  top: 0;
  right: 0;
}

.list-staff .list-ttl .name {
  font-size: 1.25rem;
}

.list-staff .list-ttl .kana {
  display: block;
  opacity: 0.5;
  font-size: 0.688rem;
  margin-top: 0.5rem;
}

@media (max-width: 800px) {
  .staff-layout .wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .staff-layout .l-img {
    width: auto;
    margin: 0 auto;
  }

  .staff-layout .l-img figcaption {
    flex-direction: column;
    gap: 10px;
  }

  .staff-layout .l-ttl {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .staff-layout .l-message {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .staff-layout .card-profile {
    margin-top: 30px;
  }

  .card-profile {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .card-profile .item {
    padding: 20px;
  }

  .list-staff-bnr {
    display: grid;
    text-align: center;
  }

  .list-staff li {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  padding: 80px 0 0;
  position: relative;
}

.f-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 44px;
  margin-bottom: 50px;
}

.f-logo {
  margin-bottom: 30px;
}

.f-address {
  font-size: 0.938rem;
  margin-bottom: 10px;
}

.f-tel {
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.563rem;
  line-height: 1;
  margin-bottom: 35px;
}

.sitemap {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 2rem;
}

.sitemap .col-ttl {
  margin-bottom: 0.3rem;
}

.f-links {
  display: grid;
  grid-gap: 0.2rem;
  font-size: 0.938rem;
}

.f-links>li {
  position: relative;
  padding-left: 15px;
}

.f-links>li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #869DA7;
  border-right: 1px solid #869DA7;
  position: absolute;
  top: 0.9em;
  left: 0;
  transform: rotate(45deg);
}

.f-links a:hover {
  text-decoration: underline;
}

.f-links .sub-menu {
  margin-top: 0.2rem;
}

.f-links .sub-menu>li {
  position: relative;
  padding-left: 1em;
}

.f-links .sub-menu>li::before {
  content: "-";
  color: #869DA7;
  position: absolute;
  top: 0;
  left: 0;
}

.f-treatment-links {
  display: flex;
  grid-gap: 3rem;
}

.f-offer {
  text-align: center;
  font-size: 0.938rem;
  margin: 45px 0 20px;
}

.copyright {
  background-color: var(--color-sub-gray);
  color: #fff;
  padding: 11px 0;
  text-align: center;
}

.pagetop {
  position: absolute;
  top: -60px;
  right: 60px;
  z-index: 5;
}

.pagetop a {
  display: inline-block;
  transition: transform 0.5s;
}

.pagetop a:hover {
  transform: translateY(-10px);
}

@media (max-width: 800px) {
  .footer {
    padding: 40px 0 50px;
  }

  .f-layout {
    grid-template-columns: 1fr;
    grid-gap: 25px;
    margin-bottom: 50px;
  }

  .f-logo {
    margin-bottom: 20px;
    max-width: 250px;
  }

  .f-tel {
    margin-bottom: 20px;
  }

  .sitemap {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }

  .f-links {
    grid-gap: 0.1rem;
  }

  .f-links .sub-menu {
    margin-top: 0.2rem;
  }

  .f-links .sub-menu>li {
    position: relative;
    padding-left: 1em;
  }

  .f-links .sub-menu>li::before {
    content: "-";
    color: #C3B2A3;
    position: absolute;
    top: 0;
    left: 0;
  }

  .f-treatment-links {
    flex-direction: column;
    grid-gap: 1rem;
  }

  .f-offer {
    margin: 20px 0 20px;
  }

  .pagetop {
    display: none;
  }
}

.fixed-menu {
  display: grid;
  grid-gap: 15px;
  position: fixed;
  top: 50%;
  right: -176px;
  transform: translateY(-50%);
  z-index: 10;
}

.fixed-menu a {
  border-radius: 5px 0 0 5px;
  background: #A38871;
  color: #fff;
  display: grid;
  grid-template-columns: 70px 1fr;
  width: 245px;
  height: 70px;
  transition: transform 0.5s;
  transform: translateX(0);
  z-index: 10;
}

.fixed-menu a:hover {
  transform: translateX(-175px);
}

.fixed-menu .btn-img {
  border-right: 1px solid #8D6E55;
  display: grid;
  place-items: center;
}

.fixed-menu .btn-ttl {
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  font-weight: bold;
}

.fixed-menu .btn-ttl.tel {
  font-family: var(--font-en);
}

@media (max-width: 800px) {
  .fixed-menu {
    display: none;
  }
}

.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  .sp-navi {
    display: block;
  }

  .sp-navi-btns {
    display: flex;
    background: var(--color-main);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
  }

  .sp-navi-btns div {
    flex: 1;
    position: relative;
  }

  .sp-navi-btns .item {
    border-right: 1px solid #fff;
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item:last-child {
    border-right: none;
  }

  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: #fff;
    text-decoration: none;
    height: 100%;
    padding: 10px 0;
  }

  .sp-navi-btns .item .img {
    display: block;
  }

  .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 4px;
    stroke: #fff;
  }

  .sp-navi-btns .item .ttl {
    display: block;
  }

  .sp-menu-btn {
    background-color: var(--color-main);
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 1010;
  }


  .sp-menu-btn span {
    background: #fff;
    position: absolute;
    width: 20px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
  }

  .sp-menu-btn span:nth-of-type(1) {
    top: 17px;
  }

  .sp-menu-btn span:nth-of-type(2) {
    top: 24px;
  }

  .sp-menu-btn span:nth-of-type(3) {
    top: 31px;
  }

  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 7px) 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%, -7px) rotate(45deg);
  }

  .sp-logo {
    filter: brightness(0) invert(1);
    max-width: 250px;
    margin-bottom: 30px;
  }

  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: var(--color-main);
    color: #fff;
    padding: 50px 30px 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    transform: translateX(30px);
    transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 0;
    z-index: 1000;
  }

  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
  }

  .sp-navi-list {
    margin: 0 0 50px;
  }

  .sp-navi-list>li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sp-navi-list>li>a {
    display: block;
    background: url(../images/share/sp_navi_arrow.svg) no-repeat center right 15px/13px auto;
    padding: 10px 0;
    font-weight: bold;
  }

  .sp-navi-list .sp-dropdown {
    position: relative;
  }

  .sp-navi-list .sp-dropdown::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 15px;
    right: 40px;
    width: 1px;
    height: 17px;
  }

  .sp-navi-list .sp-dropdown-btn .ttl {
    display: block;
    font-weight: bold;
    padding: 10px 0;
  }

  .sp-navi-list .sp-dropdown-plus {
    background: url(../images/share/sp_navi_plus.svg) no-repeat center/11px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 47px;
    transition: 0.3s;
  }

  .sp-navi-list .is-on .sp-dropdown-plus {
    transform: rotate(45deg);
    transform-origin: center;
  }

  .sp-navi-list .sub-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    padding: 0 0 15px;
  }

  .sp-navi-list .sub-menu li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sp-navi-list .sub-menu a {
    display: block;
    background: url(../images/share/sp_navi_arrow.svg) no-repeat center right 15px/13px auto;
    padding: 5px 0;
    font-size: 0.875rem;
  }

  .sp-navi-list .sub-menu-ttl {
    font-weight: bold;
    font-size: 0.875rem;
    margin: 1rem 0 0.2rem;
  }

  .sp-navi-list .sub-menu-ttl::before {
    content: "■";
    margin-right: 5px;
  }

  .sp-information {
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    padding: 20px 10px;
    line-height: 1.5;
    display: grid;
    gap: 10px;
  }

  .sp-information .item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    align-items: flex-start;
  }

  .sp-information dt {
    color: var(--color-main);
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 1;
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .sp-information dt img {
    object-fit: contain;
    width: 20px;
    height: 20px;
  }

  dd {
    font-size: 0.875rem;
    padding-top: 0.1rem;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.category-area dl {
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-area dl dt {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 5px;
}

.category-ttl {
  font-size: 1.125rem;
  padding-left: 50px;
  margin-bottom: 1rem;
  position: relative;
}

.category-ttl::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--color-main);
  position: absolute;
  top: 14px;
  bottom: 0.2rem;
  left: 0;
}

.category-select,
.case-category-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
  border-radius: 2px;
  border: none;
  border: 1px solid #333;
  color: #333;
  font-size: 0.938rem;
  vertical-align: middle;
  padding: 5px 40px 5px 15px;
  margin: 0;
  width: 100%;
  max-width: 180px;
  height: 40px;
}

.category-ttl {
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .category-area {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 15px;
  }
}

/*通常投稿*/
.list-under-post {
  border-top: 1px solid #eee;
  margin-bottom: 50px;
}

.list-under-post>li {
  border-bottom: 1px solid #eee;
}

.list-under-post a {
  display: flex;
  transition: background-color 0.3s, padding 0.3s;
  padding: 15px 35px 15px 0;
  position: relative;
}

.list-under-post a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #DE7E1F;
  border-right: 2px solid #DE7E1F;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(50%) rotate(45deg);
}

.list-under-post a:hover .list-ttl {
  text-decoration: underline;
}

.list-under-post .list-img {
  width: 150px;
  margin-right: 25px;
}

.list-under-post .list-img img {
  border: 1px solid #eee;
  object-fit: cover;
  width: 100%;
  height: 105px;
}

.list-under-post .list-desc {
  flex: 1;
  margin-bottom: 5px;
}

.list-under-post time {
  display: block;
  color: #ADADAD;
  font-size: 0.8rem;
}

.list-under-post .list-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.list-under-post .category {
  display: inline-block;
  background-color: #DE7E1F;
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  padding: 0 5px;
  margin-right: 5px;
}

.list-under-post .no-post {
  padding: 25px 0;
}

/*お知らせ*/
.list-under-news {
  border-top: 1px solid #dfdfdf;
  margin-bottom: 30px;
}

.list-under-news a {
  display: flex;
  border-bottom: 1px solid #dfdfdf;
  padding: 20px 0;
}

.list-under-news a:hover .ttl {
  text-decoration: underline;
}

.list-under-news time {
  display: inline-block;
  color: #7E8588;
  margin-right: 25px;
}

.list-under-news .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

/*症例紹介*/
.case-layout {
  background-color: var(--color-bg);
  padding: 6%;
}

.case-layout time {
  color: #7E8588;
  display: block;
  font-size: 12px;
  margin-right: 15px;
}

.case-layout .category {
  display: inline-block;
  background-color: var(--color-main);
  color: #fff;
  font-size: 11px;
  padding: 0 5px;
  margin-right: 10px;
}

.case-layout .l-ttl {
  font-size: 1.375rem;
  margin-bottom: 2rem;
}

.case-layout .post-data {
  display: flex;
  gap: 10px 0;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.case-layout .before-after {
  margin-bottom: 2rem;
}

.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(--color-main);
  color: #fff;
  vertical-align: top;
  text-align: left;
  width: 25%;
}

.case-layout .l-btn {
  text-align: center;
  margin-top: 50px;
}

.case-layout .l-item {
  margin-top: 50px;
}

.case-layout .item-ttl {
  border-bottom: 1px solid var(--color-sub-gray);
  font-size: 1.125rem;
  padding-bottom: 10px;
  margin-bottom: 1.5rem;
}

.case-layout+.case-layout {
  margin-top: 50px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5%;
}

.before-after .item {
  text-align: center;
  position: relative;
}

.before-after figure {
  display: grid;
  place-items: center;
  height: 300px;
  position: relative;
}

.before-after figure img {
  object-fit: contain;
  object-position: center;
  max-height: 300px;
}

.before-after p {
  font-family: var(--font-heading);
}

.before-after p::before,
.before-after p::after {
  content: "-";
  margin: 0 5px;
}

.list-case-details>li {
  display: flex;
  flex-direction: row-reverse;
}

.list-case-details>li+li {
  border-top: 1px dashed #c8c8c8;
  margin-top: 30px;
  padding-top: 30px;
}

.list-case-details .list-img {
  width: 35%;
  margin-left: 30px;
}

.list-case-details .list-desc {
  flex: 1;
}

.list-case-details .list-ttl {
  font-size: 17px;
}

.category-ttl {
  margin-bottom: 15px;
}

/*詳細ページ*/
.single-post-layout {
  border-bottom: 1px solid #eee;
  padding-bottom: 50px;
  margin-bottom: 50px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.single-post-layout .l-ttl {
  font-size: 1.563rem;
  margin-bottom: 30px;
}

.single-post-layout .post-data {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.single-post-layout .post-data time {
  display: inline-block;
  color: #98918c;
  font-size: 12px;
  margin-right: 20px;
}

.single-post-layout .post-data .category {
  display: inline-block;
  background-color: #DE7E1F;
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  padding: 0 5px;
  margin-right: 10px;
}

.postdata h2 {
  font-size: 1.25rem;
  border-top: 1px solid #A38871;
  border-bottom: 1px solid #A38871;
  padding: 15px 0;
  margin-bottom: 2rem;
}

.postdata h3 {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
}

.postdata h3:before {
  content: "";
  display: block;
  border-radius: 2px;
  background-color: #DE7E1F;
  width: 4px;
  height: 1.2em;
  margin-top: 2px;
}

.postdata h4 {
  font-size: 1rem;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.postdata h4::before {
  content: "";
  border-radius: 50px;
  width: 10px;
  height: 10px;
  background-color: #DE7E1F;
  position: absolute;
  top: 0.6rem;
  left: 0;
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

/*ページャー*/
.post-number {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: var(--color-main);
  background-color: #edeef0;
  font-size: 13px;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  transition: 0.3s;
  padding: 0 20px;
}

.post-number>*+* {
  margin-left: 10px;
}

.post-number a:hover {
  background: var(--color-main);
  color: #fff;
}

.post-number .current {
  background: var(--color-main);
  color: #fff;
}

.post-number-single {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: var(--color-main);
  border: 1px solid var(--color-main);
  color: #fff;
  font-size: 13px;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

.post-number-single .all:hover {
  background: #fff;
  color: var(--color-main);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color-main);
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid var(--color-main);
  margin: 0 auto;
  top: 12px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background: var(--color-main);
}

.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #fff;
}

.post-number-single .prev::before {
  transform: rotate(-135deg);
  left: 13px;
  border-left: 1px solid var(--color-main);
}

.post-number-single .next::before {
  transform: rotate(135deg);
  right: 13px;
  border-right: 1px solid var(--color-main);
}

@media (max-width: 800px) {

  /*通常投稿*/
  .list-under-post a {
    padding: 20px 25px 20px 0;
  }

  .list-under-post a::before {
    right: 0;
  }

  .list-under-post a:hover {
    background-color: transparent;
  }

  .list-under-post .list-img {
    width: 120px;
    margin-right: 20px;
  }

  .list-under-post .list-img img {
    height: 90px;
  }

  .list-under-post .list-desc {
    flex: 1;
  }

  .list-under-post time {
    font-size: 10px;
  }

  .list-under-post .list-ttl {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .list-under-post .category {
    font-size: 10px;
  }

  .list-under-post .no-post {
    padding: 25px 0;
  }

  /*お知らせ*/
  .list-under-news a {
    display: block;
    line-height: 1.5;
    padding: 10px 0;
  }

  .list-under-news time {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .list-under-news .ttl {
    -webkit-line-clamp: 2;
  }

  /*症例紹介*/
  .case-layout .l-ttl {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .case-layout .post-data {
    margin-bottom: 1rem;
  }

  .case-layout .before-after {
    margin-bottom: 2rem;
  }

  .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;
  }

  .case-layout .l-item {
    margin-top: 30px;
  }

  .case-layout .item-ttl {
    border-bottom: 1px solid #DE7E1F;
    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;
  }

  .before-after {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .before-after figure {
    height: auto;
  }

  .list-case-details>li {
    display: block;
  }

  .list-case-details .list-img {
    width: 100%;
    margin: 0 0 25px;
  }

  /*詳細ページ*/
  .single-post-layout .l-ttl {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
}

.main-contents {
  padding: 0 70px;
  width: calc(100% - 300px);
  max-width: 1200px;
  margin: 0 auto;
}

.side-contents {
  padding: 0 40px;
  width: 300px;
}

.side-contents-wrapper {
  position: sticky;
  top: 110px;
}

.side-area-item-ttl {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.side-area-item+.side-area-item {
  margin-top: 30px;
}

.side-area-links {
  display: grid;
  grid-gap: 5px;
}

.side-area-links li {
  padding-left: 20px;
  position: relative;
}

.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 9px;
  left: 0;
}

.side-area-links a {
  display: inline-block;
}

.side-area-links a:hover {
  text-decoration: underline;
}

.side-area-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
  border-radius: 0;
  border: none;
  border: 1px solid #e8ecf0;
  color: #333;
  vertical-align: middle;
  padding: 10px 20px 10px 15px;
  margin: 0;
  width: 100%;
  height: 50px;
}

@media (max-width: 800px) {
  .sidebar-layout {
    flex-direction: column-reverse;
    padding: 0 5vw;
    width: 100%;
  }

  .sidebar-layout.sp-reverse {
    flex-direction: column;
  }

  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }

  .main-contents {
    width: 100%;
    padding: 0;
  }

  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }

  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }

  .side-area-item+.side-area-item {
    margin-top: 30px;
  }
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.radius {
  border-radius: 15px;
}

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 11px;
}

.fs13 {
  font-size: 13px;
}

.bold,
strong {
  font-family: "FOT-筑紫ゴシック Pro B";
}

.underline {
  text-decoration: underline;
}

.color-red {
  color: #c46060;
}

.color-green {
  color: var(--color-sub-green);
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 0.8rem;
  text-indent: -1.2rem;
  padding-left: 1.2rem;
}

.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;
}

.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;
  }

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

  .mbM {
    margin-bottom: 30px !important;
  }

  .mbL {
    margin-bottom: 50px !important;
  }

  .mbXL {
    margin-bottom: 70px !important;
  }

  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
  }
}

/*ボタン*/
.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-more {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.063rem;
  line-height: 1.5;
  padding: 14px 0 14px 66px;
  position: relative;
  z-index: 0;
}

.btn-more::before {
  content: "";
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 50px;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.btn-more:focus-visible::before {
  background-color: #fff;
}

.btn-more::after {
  content: "";
  background-color: #fff;
  mask: url(../images/share/icon_arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 8px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.btn-more:focus-visible::after {
  background-color: var(--color-main);
}

@media (any-hover: hover) {
  .btn-more:hover::before {
    background-color: #fff;
  }

  .btn-more:hover::after {
    background-color: var(--color-main);
  }
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.btn-wrap.center {
  justify-content: center;
}


/*診療カレンダー*/
:root {
  --event01: #60C48A;
  --event02: #fff;
  --event03: #A8DBA8;
  --event04: #B0D7D5;
}

.business-calendar-box-wrap {
  margin-bottom: 15px;
}

.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  font-family: var(--font-heading);
}

.business-calendar-box-wrap .business-calendar caption {
  background-color: var(--color-main);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  padding: 10px;
  position: relative;
}

.business-calendar-box-wrap .business-calendar caption span.business-calendar-past {
  left: 0;
}

.business-calendar-box-wrap .business-calendar caption span.business-calendar-future {
  right: 0;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 25px;
  position: absolute;
  vertical-align: -1px;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 30px;
  height: 30px;
}

.business-calendar-box-wrap .business-calendar-future a::before,
.business-calendar-box-wrap .business-calendar-past a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 1rem;
  left: 10px;
  transform: rotate(-45deg);
}

.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(135deg);
}

.business-calendar-box-wrap .business-calendar th {
  border-bottom: 1px solid var(--color-sub-gray);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  padding: 10px;
  text-align: center;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-sub-gray);
  position: relative;
  font-size: 0.75rem;
  padding: 10px;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}

.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}

.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
}

.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);
  border: 1px solid #6C5D55;
}

.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}

.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

.list-event {
  display: flex;
}

.list-event li {
  font-size: 15px;
  line-height: 1;
  margin: 0 20px 0 0;
}

.list-event i {
  margin: 0 5px 0 0;
}

.list-event .event01 {
  color: var(--event01);
}

.list-event .event02 {
  color: var(--event02);
}

.list-event .event03 {
  color: var(--event03);
}

.list-event .event04 {
  color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap .business-calendar caption {
    padding: 3px 10px;
  }

  .business-calendar-box-wrap .business-calendar-future a::before,
  .business-calendar-box-wrap .business-calendar-past a::before {
    top: 0.8rem;
  }
}

/*診療時間*/
.time-table {
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 5px;
}

.time-table-head {
  background-color: var(--color-sub-gray);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.938rem;
}

.time-table-head .item {
  padding: 10px 0;
}

.time-table-body {
  border-bottom: 1px solid var(--color-sub-gray);
  color: var(--color-main);
}

.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-bg);
  color: var(--color-bace);
  font-size: 0.875rem;
  letter-spacing: 0;
}

.time-table-body .green {
  color: var(--color-sub-green);
}

.time-table-body .gray {
  color: #7E8588;
}

.time-table-head,
.time-table-body {
  display: grid;
  grid-template-columns: 134px repeat(7, 1fr);
}

.time-table-txt {
  font-size: 0.938rem;
}

.time-table.large .time-table-head .item {
  padding: 20px 0;
}

.time-table.large .time-table-body .item {
  padding: 20px 0;
}

.time-table.large .time-table-head,
.time-table.large .time-table-body {
  grid-template-columns: 200px repeat(7, 1fr);
}

@media (max-width: 800px) {
  .time-table-head {
    font-size: 12px;
  }

  .time-table-head .item {
    padding: 5px 0 !important;
  }

  .time-table-body .item {
    padding: 5px 0 !important;
    font-size: 13px;
  }

  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 10px;
  }

  .time-table-head,
  .time-table-body {
    grid-template-columns: 90px repeat(7, 1fr) !important;
  }
}

/*------------
splide
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__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;
  -ms-flex-negative: 0;
  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__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;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: var(--color-main);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  width: 64px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid #fff;
  border-width: 1px 1px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  gap: 10px;
  bottom: 0.5em;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  border: 1px solid var(--color-bace);
  border-radius: 8px;
  display: inline-block;
  padding: 0;
  position: relative;
  transition: background-color 0.2s linear, border 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  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 #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  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 #000;
}

.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: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/*------------
Fancybox
-------------*/
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}
