@charset "UTF-8";

:root {
  --font-device: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font-heading: "FOT-筑紫A丸ゴシック Std B", TsukuARdGothicStd-B, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font-heading-bold: "FOT-筑紫A丸ゴシック Std E", TsukuARdGothicStd-E, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font-heading-sub: "FOT-キアロ Std B", ChiaroStd-B, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --color-bace: #333;
  --color-main: #EA1236;
  --color-sub-red: #B5253D;
  --color-sub-pink: #FDE6EA;
  --color-bg: #FFF7EF;
  --color-border: #DDDDDD;
}

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

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

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

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

:where(button) {
  all: unset;
}

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

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

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

fieldset {
  border: none;
}

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

::selection {
  background: #d4dcd6;
}

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

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

body,
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--font-device);
  font-size: 1.6rem;
  color: var(--color-bace);
  line-height: 2;
  letter-spacing: 0.1em;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  background: #FFF;
  word-break: break-all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

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

img {
  vertical-align: top;
}

i {
  font-style: normal;
}

.link {
  text-decoration: underline;
}

.link:focus-visible {
  text-decoration: none;
}

@media (any-hover: hover) {
  .link:hover {
    text-decoration: none;
  }
}

.link[target=_blank] {
  color: var(--color-main);
}

.link[target=_blank]::after {
  content: "";
  background-color: oklch(from var(--color-main) 0.7 c h);
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  margin: 0 5px;
}

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

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

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

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

@media (max-width: 800px) and (any-hover: hover) {
  .link:hover {
    text-decoration: underline;
  }
}

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

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

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

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

.header-layout {
  background-color: #fff;
  padding: 10px 0 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  width: 100%;
}

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

.h-utility {
  display: flex;
  gap: 30px;
}

.h-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.h-contact a {
  display: inline-block;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 27px;
  color: #fff;
  font-family: var(--font-heading-bold);
  font-size: 1.6rem;
  line-height: 1.25;
  overflow: hidden;
  padding: 7px 32px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  z-index: 1;
}

.h-contact a::before {
  background: #fff;
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  -webkit-transform: skew(-50deg);
  transform: skew(-50deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  height: 100%;
  width: 0;
  z-index: -2;
}

@media (any-hover: hover) {
  .h-contact a:hover {
    color: var(--color-main);
  }

  .h-contact a:hover::before {
    height: 100%;
    width: 150%;
  }
}

body.is-hidden {
  height: 100%;
  overflow: hidden;
}

.menu-btn {
  background-color: var(--color-main);
  border-radius: 0 0 0 40px;
  color: #fff;
  font-family: var(--color-main);
  width: 110px;
  height: 110px;
  position: relative;
  transition: 0.2s;
  z-index: 100;
}

.menu-btn-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0 3px;
}

.menu-btn-line span {
  display: block;
  background-color: #fff;
  width: 52px;
  height: 2px;
  transition: 0.2s;
}

.menu-btn-line span:nth-of-type(2) {
  margin: 12px 0 0;
}

.menu-btn-txt {
  display: block;
  font-family: var(--font-heading-bold);
  letter-spacing: 0.05em;
  text-align: center;
}

.menu-btn[aria-expanded=true] .menu-btn-line span:nth-of-type(1) {
  transform: rotate(20deg) translate3d(2px, 7px, 0);
}

.menu-btn[aria-expanded=true] .menu-btn-line span:nth-of-type(2) {
  transform: rotate(-20deg) translate3d(2px, -7px, 0);
}

/*humberger内*/
.menu-navi {
  pointer-events: none;
  visibility: hidden;
  background: var(--color-sub-pink);
  padding: 100px 0;
  position: fixed;
  top: 0;
  right: 0;
  transition: 0.5s;
  transform: translateX(60px);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.menu-navi.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);
}

.menu-navi.is-open .menu-block-wrap {
  margin-bottom: 135px;
}

.menu-navi .menu-logo {
  margin-bottom: 60px;
  text-align: center;
}

.menu-navi .menu-logo img {
  width: 400px;
}

.menu-navi .group-card {
  margin-bottom: 45px;
}

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

.gnavi-drawer-links {
  font-family: var(--font-heading);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.gnavi-drawer-links .menu-ttl {
  border-bottom: 1px solid var(--color-main);
  font-size: 1.8rem;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.gnavi-drawer-links .sub-menu {
  display: grid;
  gap: 3px;
}

.gnavi-drawer-links .sub-menu>li {
  padding-left: 21px;
  position: relative;
}

.gnavi-drawer-links .sub-menu>li::before {
  content: "";
  background-color: var(--color-main);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 6px;
  top: 14px;
}

.gnavi-drawer-links a {
  background: linear-gradient(to right, var(--color-main), var(--color-main)) no-repeat left 0 bottom/0 1px;
  transition: 0.3s;
}

.gnavi-drawer-links a[aria-current=page] {
  background-size: 100% 1px;
}

@media (any-hover: hover) {
  .gnavi-drawer-links a:hover {
    background-size: 100% 1px;
  }
}

@media (max-width: 1300px) {
  .header-layout {
    height: 81px;
    padding: 0 0 0 25px;
  }

  .h-utility {
    gap: 10px;
  }

  .h-contact {
    gap: 5px;
  }

  .h-contact a {
    font-size: 1.3rem;
    padding: 5px 14px;
  }

  .menu-btn {
    width: 81px;
    height: 81px;
  }

  .menu-btn[aria-expanded=true] .menu-btn-line span:nth-of-type(1) {
    transform: rotate(20deg) translate3d(2px, 5px, 0);
  }

  .menu-btn[aria-expanded=true] .menu-btn-line span:nth-of-type(2) {
    transform: rotate(-20deg) translate3d(2px, -5px, 0);
  }

  .menu-btn-line span {
    width: 38px;
  }

  .menu-btn-line span:nth-of-type(2) {
    margin: 8px 0 0;
  }

  .menu-btn-txt {
    font-size: 1.1rem;
  }
}

@media (max-width: 1024px) {
  .h-logo {
    width: 150px;
  }
}

@media (max-width: 800px) {
  .header {
    position: static;
  }

  .header-layout {
    padding: 0 0 0 15px;
  }

  .h-logo {
    width: min(290px, 100% - 15px - 81px);
  }

  .h-contact {
    display: none;
  }

  .menu-btn {
    position: fixed;
    top: 0;
    right: 0;
  }

  .menu-navi {
    padding: 80px 0 100px;
  }

  .menu-navi .menu-logo {
    margin-bottom: 30px;
  }

  .menu-navi .menu-logo img {
    width: 300px;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  margin: 110px 5% 0;
  position: relative;
}

.hero .splide__slide img {
  border-radius: 0 0 30px 30px;
  width: 100%;
}

.hero .splide__pagination__page {
  background-color: #fff;
  border: 0;
}

.hero .splide__controls {
  position: absolute;
  bottom: 20px;
  right: 24px;
}

.hero-catch {
  position: absolute;
  bottom: 13%;
  left: 5%;
  z-index: 5;
}

.hero-catch .ttl {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 2.7vw, 5rem);
  line-height: 1.7;
  text-shadow: 1px 1px 7px var(--color-main), -1px 1px 7px var(--color-main), 1px -1px 7px var(--color-main), -1px -1px 7px var(--color-main);
}

@media (max-width: 1300px) {
  .hero {
    margin: 81px 0 0;
  }
}

@media (max-width: 800px) {
  .hero {
    margin: 0;
  }

  .hero .splide__controls {
    bottom: 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 10;
  }

  .hero-catch {
    bottom: 22%;
  }

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

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
  font-family: var(--font-heading-sub);
  font-size: 4rem;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 75px;
  padding-top: 85px;
  position: relative;
}

.t-ttl::before {
  content: "";
  background: url(../images/share/ttl_deco.svg) no-repeat center/contain;
  width: 49px;
  height: 76px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.t-ttl02 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  margin-bottom: 45px;
  padding-bottom: 8px;
  position: relative;
}

.t-ttl02::before {
  content: "";
  background-color: var(--color-main);
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.t-ttl02.center {
  text-align: center;
}

.t-ttl02.center::before {
  left: 50%;
  transform: translateX(-50%);
}

.t-ttl02 .small {
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.t-ttl03 {
  border-bottom: 2px solid var(--color-main);
  font-family: var(--font-heading);
  font-size: 3.4rem;
  margin-bottom: 40px;
  padding-bottom: 8px;
}

.top-en-deco {
  font-family: var(--font-heading);
  font-size: clamp(12rem, 11.3vw, 20.4rem);
  color: rgba(234, 18, 54, 0.07);
  line-height: 1;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 10px;
}

.slider01 .item-img {
  padding: 0 5px 5px 0;
}

.top-layout01 {
  display: flex;
  gap: 7%;
}

.top-layout01 .l-img {
  width: 44%;
}

.top-layout01 .l-img img {
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
}

.top-layout01 .l-desc {
  flex: 1;
}

.top-layout01 .l-inner {
  max-width: 512px;
}

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

.contact-belt {
  background-color: var(--color-sub-pink);
  padding: 50px 0;
}

.contact-belt .l-inner {
  display: flex;
  min-height: 131px;
}

.contact-belt .item {
  display: grid;
  place-content: center;
}

.contact-belt .item+.item {
  border-left: 1px solid var(--color-main);
  margin-left: 5%;
  padding-left: 5%;
}

.contact-belt .l-logo {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-belt .name {
  font-family: var(--font-heading-sub);
  font-size: 4rem;
  letter-spacing: 0.1em;
}

.contact-belt .l-tel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  align-items: center;
  margin-bottom: 15px;
}

.contact-belt .l-tel .ttl {
  background-color: var(--color-main);
  border-radius: 5px;
  color: #fff;
  font-family: var(--font-heading);
  padding: 0 18px;
}

.contact-belt.shop02 {
  padding: 30px 0 44px;
}

.contact-belt.shop02 .l-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-belt.shop02 .item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 5px;
}

.contact-belt.shop02 .l-logo {
  justify-content: center;
}

.contact-belt.shop02 .l-logo img {
  width: 18px;
}

.contact-belt.shop02 .group-name {
  font-family: var(--font-heading-sub);
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 7px;
}

.contact-belt.shop02 .name {
  font-size: 2.5rem;
}

.contact-belt.shop02 .tel {
  font-size: 2.5rem;
  justify-content: center;
  margin-bottom: 7px;
}

.contact-belt.shop02 .tel img {
  width: 19px;
}

.contact-belt.shop02 .txt {
  line-height: 1.3;
  text-align: center;
}

.contact-belt.shop03 {
  padding: 40px 0;
}

.contact-belt.shop03 .l-logo img {
  margin-top: 5px;
  width: 18px;
}

.contact-belt.shop03 .name {
  font-size: 2.5rem;
  line-height: 1.2;
}

.contact-belt.shop03 .name .small {
  font-size: 1.8rem;
}

.contact-belt.shop03 .item+.item {
  margin-left: 3%;
  padding-left: 3%;
}

.contact-belt.shop03 .btn01 {
  display: inline-block;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 27px;
  color: #fff;
  font-family: var(--font-heading-bold);
  line-height: 1.25;
  overflow: hidden;
  min-width: 200px;
  padding: 7px 25px 7px 62px;
  position: relative;
  transition: color 0.3s;
  z-index: 1;
}

.contact-belt.shop03 .btn01::before {
  background: #fff;
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  -webkit-transform: skew(-50deg);
  transform: skew(-50deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  height: 100%;
  width: 0;
  z-index: -2;
}

.contact-belt.shop03 .btn01::after {
  content: "";
  background-color: #fff;
  mask: url(../images/share/icon_mail_w.svg) no-repeat center/contain;
  width: 27px;
  height: 20px;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.contact-belt.shop04 {
  padding: 40px 0;
}

.contact-belt.shop04 .l-logo img {
  margin-top: 5px;
  width: 18px;
}

.contact-belt.shop04 .name {
  font-size: 2.5rem;
  line-height: 1.2;
}

.contact-belt.shop04 .name .small {
  font-size: 1.8rem;
}

.contact-belt.shop04 .l-tel .ttl {
  padding: 1px 14px;
}

.contact-belt.shop04 .tel {
  margin-bottom: 13px;
}

.top-map {
  position: relative;
}

.top-map .l-desc {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 50px;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}

.top-map .l-name-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.top-map .l-name-wrap img {
  width: 20px;
}

.top-map .name {
  font-family: var(--font-heading-sub);
  font-size: 2.7rem;
}

.top-map .t-ttl02 {
  margin-bottom: 20px;
}

.top-map .list-disc {
  margin: 0 auto 20px;
  width: fit-content;
}

@media (any-hover: hover) {
  .contact-belt.shop03 .btn01:hover {
    color: var(--color-main);
  }

  .contact-belt.shop03 .btn01:hover::before {
    height: 100%;
    width: 150%;
  }

  .contact-belt.shop03 .btn01:hover::after {
    background-color: var(--color-main);
  }
}

@media (max-width: 800px) {
  .t-ttl {
    font-size: 2.8rem;
    margin-bottom: 30px;
    padding-top: 52px;
  }

  .t-ttl::before {
    width: 27px;
    height: 42px;
  }

  .t-ttl02 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  .t-ttl03 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    padding-bottom: 4px;
  }

  .top-en-deco {
    font-size: 6rem;
    writing-mode: lr;
    top: auto;
    bottom: 0;
    left: auto;
    right: 5%;
  }

  .top-layout01 {
    flex-direction: column;
    gap: 50px;
  }

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

  .top-layout01 .l-inner {
    max-width: 100%;
  }

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

  .contact-belt .l-inner {
    flex-direction: column;
  }

  .contact-belt .l-logo img {
    width: 25px;
  }

  .contact-belt .item+.item {
    border-left: none;
    border-top: 1px solid var(--color-main);
    margin-left: 0;
    padding-left: 0;
    margin-top: 20px;
    padding-top: 20px;
  }

  .contact-belt .name {
    font-size: 2.6rem;
  }

  .contact-belt .l-tel {
    flex-direction: column;
    gap: 15px;
  }

  .contact-belt.shop02 .l-inner {
    grid-template-columns: 1fr;
  }

  .contact-belt.shop03 .item+.item {
    margin-left: 0;
    padding-left: 0;
  }

  .contact-belt.shop03 .name {
    font-size: 2rem;
  }

  .contact-belt.shop03 .name .small {
    font-size: 1.4rem;
  }

  .contact-belt.shop04 .name {
    font-size: 2rem;
  }

  .contact-belt.shop04 .name .small {
    font-size: 1.4rem;
  }

  .contact-belt.shop04 .tel {
    justify-content: center;
  }

  .top-map .l-desc {
    padding: 30px 5%;
    position: static;
    transform: none;
  }
}

/*------------
Block
--------------*/
.sec01 {
  padding: 80px 0;
  position: relative;
}

.sec01::before {
  content: "";
  background-color: var(--color-bg);
  border-radius: 0 0 50px 50px;
  width: 100%;
  position: absolute;
  inset: -50% auto 0;
  z-index: -1;
}

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

.group-card .item {
  background-color: #fff;
  border: 1px solid var(--color-main);
  border-radius: 20px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  padding: 30px 10%;
}

.group-card .l-img {
  margin-bottom: 7px;
  text-align: center;
}

.group-card .link-ttl {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 17px;
  text-align: center;
}

.group-card .btn-more {
  min-width: auto;
  width: 100%;
}

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

  .sec01::before {
    inset: -50px auto 0;
  }

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

  .group-card .item {
    padding: 20px 5%;
  }

  .group-card .l-img img {
    height: 48px;
    width: auto;
  }

  .group-card .link-ttl {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }

  .group-card .btn-more {
    min-height: 38px;
    padding: 6px 35px 6px 15px;
    font-size: 1.3rem;
  }

  .group-card .btn-more::before {
    width: 12px;
    height: 12px;
    right: 7px;
  }
}

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

.sec02 .top-en-deco {
  top: 120px;
}

.l-sec02 {
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
  margin: 0 2% 0 auto;
}

.l-sec02 .l-img {
  width: 44%;
}

.l-sec02 .l-img img {
  border-radius: 20px;
}

.l-sec02 .l-desc {
  position: relative;
}

.l-sec02 .l-desc::before {
  content: "";
  background-color: var(--color-bg);
  border-radius: 50px 0 0 0;
  width: calc(100vw + 100px);
  position: absolute;
  inset: 100px auto -120px -100px;
  z-index: -1;
}

.l-sec02 .l-inner {
  margin: 0 0 0 5%;
  max-width: 512px;
}

.l-sec02 .l-btn {
  margin-top: 60px;
}

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

  .sec02 .top-en-deco {
    top: auto;
  }

  .l-sec02 {
    flex-direction: column;
    gap: 50px;
    margin: 0 5%;
  }

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

  .l-sec02 .l-desc::before {
    inset: 55px -5% -40px;
  }

  .l-sec02 .l-inner {
    margin: 0;
  }

  .l-sec02 .l-btn {
    margin-top: 30px;
  }
}

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

.sec03 .top-en-deco {
  top: 115px;
  left: auto;
  right: -35px;
}

.sec03 .top-layout01 {
  margin-bottom: 80px;
}

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

  .sec03 .top-en-deco {
    top: auto;
    right: 5%;
    transform: translateY(0);
  }

  .sec03 .top-layout01 {
    margin-bottom: 50px;
  }
}

.sec04 {
  padding: 0 0 120px;
}

.sec04 .contact-belt {
  margin-bottom: 75px;
}

.l-sec04 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
  margin-bottom: 80px;
}

.l-sec04 .l-ttl {
  border-bottom: 1px solid var(--color-main);
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.l-sec04-02 {
  margin-top: 70px;
}

.l-sec04-02 .l-ttl {
  font-size: 2.2rem;
  margin-bottom: 35px;
  padding-left: 30px;
  position: relative;
}

.l-sec04-02 .l-ttl::before {
  content: "";
  background-color: var(--color-main);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  width: 19px;
  height: 19px;
  position: absolute;
  top: 8px;
  left: 0;
}

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

.sec04-link01 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.sec04-link01 a {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-family: var(--font-heading-bold);
  overflow: hidden;
  padding: 11px 20px;
  position: relative;
  text-align: center;
  transition: color 0.3s;
  z-index: 1;
}

.sec04-link01 a::before {
  background: #fff;
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  -webkit-transform: skew(-50deg);
  transform: skew(-50deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  height: 100%;
  width: 0;
  z-index: -2;
}

.sec04-link01 a::after {
  content: "";
  background-color: #fff;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  transition: background-color 0.3s;
}

.sec04-link02,
.treatment-link {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sec04-link02 a,
.treatment-link a {
  display: grid;
  gap: 7px;
  place-content: center;
  background-color: #fff;
  border: 1px solid var(--color-main);
  border-radius: 10px;
  height: 210px;
  overflow: hidden;
  position: relative;
  text-align: center;
  z-index: 1;
}

.sec04-link02 a::before,
.treatment-link a::before {
  background: var(--color-sub-pink);
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  -webkit-transform: skew(-35deg);
  transform: skew(-35deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  height: 100%;
  width: 0;
  z-index: -2;
}

.sec04-link02 a::after,
.treatment-link a::after {
  content: "";
  background-color: var(--color-main);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.sec04-link02 .link-img,
.treatment-link .link-img {
  display: grid;
  place-content: center;
  height: 78px;
}

.sec04-link02 .link-txt,
.treatment-link .link-txt {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.4;
  margin-top: auto;
}

@media (any-hover: hover) {
  .sec04-link01 a:hover {
    color: var(--color-main);
  }

  .sec04-link01 a:hover::before {
    height: 100%;
    width: 150%;
  }

  .sec04-link01 a:hover::after {
    background-color: var(--color-main);
  }

  .sec04-link02 a:hover::before,
  .treatment-link a:hover::before {
    height: 100%;
    width: 200%;
  }
}

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

  .sec04 .contact-belt {
    margin-bottom: 40px;
  }

  .l-sec04 {
    grid-template-columns: 1fr;
  }

  .l-sec04-02 {
    margin-top: 50px;
  }

  .l-sec04-02 .l-ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-left: 22px;
  }

  .l-sec04-02 .l-ttl::before {
    width: 15px;
    height: 15px;
    top: 6px;
  }

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

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

  .sec04-link02,
  .treatment-link {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sec04-link02 a,
  .treatment-link a {
    height: 150px;
  }

  .sec04-link02 .link-img img,
  .treatment-link .link-img img {
    height: 60px;
  }

  .sec04-link02 .link-txt,
  .treatment-link .link-txt {
    font-size: 1.8rem;
  }
}

.sec05 {
  background-color: var(--color-bg);
  overflow: hidden;
  padding: 120px 0;
  position: relative;
}

.sec05 .top-en-deco {
  top: 120px;
}

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

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

.l-sec05 .l-img {
  margin-bottom: 20px;
  text-align: center;
}

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

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

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

  .sec05 .top-en-deco {
    top: auto;
  }

  .l-sec05 {
    grid-template-columns: 1fr;
  }
}

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

.sec07 .top-en-deco {
  top: 120px;
  left: auto;
  right: -35px;
}

.sec07 .top-layout01 {
  margin-bottom: 80px;
}

.sec07 .top-post-layout01 {
  margin-bottom: 75px;
}

.l-sec07 {
  margin-bottom: 115px;
}

.l-sec07 .l-txt {
  text-align: center;
}

.l-sec07 .l-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  justify-content: center;
  margin-top: 50px;
}

.l-sec07.type02 {
  margin: 75px 0 80px;
}

.sec07-slider {
  margin-bottom: 78px;
}

.sec07-slider .item-img img {
  border-radius: 20px;
}

.sec07-slider .splide__pagination__page {
  background-color: #B6B6B6;
  border: none;
  border-radius: 50%;
}

.sec07-slider .splide__pagination__page.is-active {
  background: var(--color-main);
}

.l-sec07-02 {
  background-color: var(--color-bg);
  border-radius: 50px;
  margin-bottom: 80px;
  padding: 75px 5% 80px;
}

.l-sec07-02 .t-ttl02 {
  margin-bottom: 70px;
}

.sec07-link {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.sec07-link a {
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 50%;
  font-family: var(--font-heading-bold);
  color: #fff;
  font-size: clamp(1.4rem, 1.1vw, 2rem);
  line-height: 1.5;
  overflow: hidden;
  text-align: center;
  width: 100%;
  padding: 33% 5px 15%;
  position: relative;
  transition: color 0.3s;
  z-index: 1;
}

.sec07-link a::before {
  background: #fff;
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  -webkit-transform: skew(-50deg);
  transform: skew(-50deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  height: 100%;
  width: 0;
  z-index: -2;
}

.sec07-link .num {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

@media (any-hover: hover) {
  .sec07-link a:hover {
    color: var(--color-main);
  }

  .sec07-link a:hover::before {
    height: 100%;
    width: 200%;
  }
}

@media (max-width: 950px) {
  .sec07-link {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

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

  .sec07 .top-en-deco {
    top: auto;
    right: 0;
    transform: translateY(0);
  }

  .sec07 .top-layout01 {
    margin-bottom: 45px;
  }

  .sec07 .top-post-layout01 {
    margin-bottom: 45px;
  }

  .l-sec07 {
    margin-bottom: 60px;
  }

  .l-sec07 .l-txt {
    text-align: left;
  }

  .l-sec07 .l-btn {
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
  }

  .l-sec07.type02 {
    margin: 50px 0;
  }

  .sec07-slider {
    margin-bottom: 35px;
  }

  .l-sec07-02 {
    margin-bottom: 50px;
    padding: 35px 5%;
  }

  .l-sec07-02 .t-ttl02 {
    margin-bottom: 20px;
  }

  .sec07-link {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }

  .sec07-link .num {
    font-size: 2.4rem;
  }

  .sec07-link a {
    font-size: 1.4rem;
    padding: 50px 5px 30px;
  }
}

.sec08 {
  padding: 80px 0 120px;
}

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

.l-sec08>a {
  display: inline-block;
  aspect-ratio: 496/300;
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  width: 100%;
  height: auto;
  position: relative;
  transition: transform 0.3s;
}

.l-sec08>a::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: absolute;
  inset: 0;
  transition: background-color 0.3s;
}

.l-sec08>a::after {
  content: "";
  background-color: var(--color-main);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 21px;
  height: 21px;
  position: absolute;
  bottom: 17px;
  right: 20px;
}

.l-sec08>a:nth-of-type(1) {
  background: url(../images/sec08_img01.jpg) no-repeat center/cover;
}

.l-sec08>a:nth-of-type(2) {
  background: url(../images/sec08_img02.jpg) no-repeat center/cover;
}

.l-sec08 .txt {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  z-index: 1;
}

.l-sec08 .txt::before {
  content: "";
  background-color: var(--color-main);
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (any-hover: hover) {
  .l-sec08>a:hover {
    transform: translateY(-10px);
  }

  .l-sec08>a:hover::before {
    background-color: rgba(255, 247, 239, 0.5);
  }
}

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

  .l-sec08 {
    grid-template-columns: 1fr;
  }

  .l-sec08 a::after {
    width: 15px;
    height: 15px;
    bottom: 10px;
    right: 12px;
  }

  .l-sec08 .txt {
    font-size: 2.4rem;
    bottom: 25px;
  }
}

.sec09 {
  background-color: var(--color-bg);
  padding: 120px 0;
  position: relative;
}

.sec09 .top-en-deco {
  top: 120px;
}

.sec09 .top-layout01 {
  margin-bottom: 120px;
}

.sec09-img-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sec09-img-list img {
  border-radius: 20px;
}

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

  .sec09 .top-en-deco {
    top: auto;
  }

  .sec09 .top-layout01 {
    margin-bottom: 50px;
  }

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

.sec10 {
  padding: 0 0 100px;
}

.sec10-ttl-wrap {
  background-color: var(--color-main);
  margin: 0 0 40px;
  padding: 43px 0;
}

.sec10-ttl-wrap .l-ttl {
  color: #fff;
  font-family: var(--font-heading-sub);
  font-size: 4rem;
  line-height: 1.3;
  text-align: center;
}

.l-sec10+.l-sec10 {
  margin-top: 40px;
}

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

.sec10-card .item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  background-color: var(--color-sub-pink);
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  padding: 35px 30px;
}

.sec10-card .card-ttl {
  display: grid;
  place-content: center;
  border-bottom: 1px solid var(--color-main);
  font-family: var(--font-heading-sub);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 8px;
}

.sec10-card .tel {
  font-size: 2.8rem;
  justify-content: center;
  margin-bottom: 20px;
}

.sec10-card .l-time {
  margin-bottom: 15px;
  text-align: center;
}

.sec10-card .l-address {
  margin-top: auto;
  text-align: center;
}

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

  .sec10-ttl-wrap {
    padding: 25px 0 20px;
  }

  .sec10-ttl-wrap .l-ttl {
    font-size: 2.8rem;
  }

  .sec10-card {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/*------------
Post
--------------*/
.top-post-layout01 {
  background-color: var(--color-bg);
  border-radius: 50px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  padding: 70px 7% 80px;
  min-height: 404px;
  position: relative;
}

.top-post-layout01 .l-ttl {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 40px;
  max-width: calc(100% - 54px);
  padding-bottom: 5px;
  position: relative;
}

.top-post-layout01 .l-ttl::before {
  content: "";
  background-color: var(--color-main);
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.top-post-layout01 .l-ttl .jp {
  font-size: 3.4rem;
}

.top-post-layout01 .l-ttl [lang=en] {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--color-main);
}

.top-post-layout01 .l-btn {
  position: absolute;
  top: 70px;
  right: 7%;
}

.top-post-layout01 .l-btn .btn-more {
  min-width: 168px;
}

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

.list-top-blog .list-img,
.u-post-type01 .list-img {
  border: 1px solid var(--color-main);
  border-radius: 10px;
  margin-bottom: 7px;
  overflow: hidden;
}

.list-top-blog .list-img img,
.u-post-type01 .list-img img {
  object-fit: cover;
  width: 100%;
  height: 165px;
  transition: transform 0.5s;
}

.list-top-blog time,
.u-post-type01 time {
  color: var(--color-main);
  display: block;
  font-size: 1.3rem;
  margin-bottom: 3px;
}

.list-top-blog .list-ttl,
.u-post-type01 .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font-device);
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 7px;
}

.list-top-blog .cat-wrap,
.u-post-type01 .cat-wrap {
  display: flex;
  flex-wrap: wrap;
}

.list-top-blog .category,
.u-post-type01 .category {
  display: inline-block;
  color: #723514;
  font-size: 1.1rem;
  margin-right: 5px;
}

.list-top-blog .category+.category,
.u-post-type01 .category+.category {
  padding: 0 5px 0 10px;
  position: relative;
}

.list-top-blog .category+.category::before,
.u-post-type01 .category+.category::before {
  content: "/";
  position: absolute;
  left: 0;
}

.list-top-blog a,
.u-post-type01 a {
  display: block;
  height: 100%;
}

.list-top-blog a:focus-visible .list-img img,
.u-post-type01 a:focus-visible .list-img img {
  transform: scale(1.1);
}

.list-top-blog .no-post,
.u-post-type01 .no-post {
  grid-column: 1/-1;
}

.list-top-news a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 5px 15px 0;
}

.list-top-news time {
  display: inline-block;
  font-size: 1.5rem;
  white-space: nowrap;
  margin-right: 20px;
}

.list-top-news .category {
  color: var(--color-main);
  font-size: 1.3rem;
}

.list-top-news .category+.category {
  margin: 0 0 0 5px;
  padding: 0 0 0 10px;
  position: relative;
}

.list-top-news .category+.category::before {
  content: "/";
  position: absolute;
  left: 0;
}

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

.list-top-news .no-post {
  grid-column: 1/-1;
}

@media (any-hover: hover) {

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

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

@media (max-width: 800px) {
  .top-post-layout01 {
    border-radius: 20px;
    padding: 20px 5%;
    min-height: 0;
  }

  .top-post-layout01 .l-ttl {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 20px;
  }

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

  .top-post-layout01 .l-ttl [lang=en] {
    font-size: 1.6rem;
    margin-top: -7px;
  }

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

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

  .list-top-blog .item,
  .u-post-type01 .item {
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }

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

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

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

  .list-top-news .category+.category::before {
    top: -1px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  background: url(../images/under/page-ttl.jpg) no-repeat center/cover;
  border-radius: 0 0 30px 30px;
  display: grid;
  place-content: center;
  margin-top: 110px;
  padding: 85px 0;
  position: relative;
  text-align: center;
  z-index: 0;
}

.page-ttl::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 30px 30px;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-ttl .ttl {
  color: var(--color-main);
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1.2;
}

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

.breadcrumb ul {
  font-size: 1.2rem;
  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 var(--color-sub-red);
  border-right: 1px solid var(--color-sub-red);
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

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

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

@media (max-width: 1300px) {
  .page-ttl {
    margin-top: 81px;
  }
}

@media (max-width: 800px) {
  .page-ttl {
    margin-top: 0;
    padding: 50px 0;
  }

  .page-ttl .ttl {
    font-size: 2.5rem;
  }

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

.u-h2,
.postdata h2 {
  font-family: var(--font-heading-sub);
  font-size: 4rem;
  line-height: 1.3;
  margin-bottom: 50px;
  padding-bottom: 13px;
  text-align: center;
  position: relative;
}

.u-h2::before,
.postdata h2::before {
  content: "";
  background-color: var(--color-main);
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-h3,
.postdata h3 {
  border-bottom: 2px solid var(--color-main);
  font-family: var(--font-heading);
  font-size: 3.4rem;
  margin-bottom: 40px;
  padding-bottom: 8px;
}

.postdata h3 {
  margin-bottom: 25px;
}

.u-h4,
.postdata h4 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background-color: var(--color-main);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  width: 19px;
  height: 19px;
  position: absolute;
  top: 8px;
  left: 0;
}

@media (max-width: 800px) {

  .u-h2,
  .postdata h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }

  .u-h3,
  .postdata h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    padding-bottom: 4px;
  }

  .u-h4,
  .postdata h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-left: 22px;
  }

  .u-h4::before,
  .postdata h4::before {
    top: 5px;
  }
}

.tall.bg01 {
  background-color: var(--color-bg);
  padding: 120px 0;
}

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

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

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

.hidden {
  overflow: hidden;
}

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

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

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

.col1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

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

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

@media (max-width: 800px) {

  .col1,
  .col2,
  .col3,
  .col4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

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

.list-disc li {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}

.list-disc li:before {
  content: "";
  background-color: var(--color-main);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 9px;
  left: 0;
}

.list-check {
  display: 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: 4px;
  left: 0;
  width: 18px;
  height: 18px;
}

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

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

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

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

.dl-style01 .item {
  display: grid;
  grid-template-columns: 26% 74%;
}

.dl-style01 dt {
  background-color: var(--color-main);
  color: #fff;
  font-size: 1.7rem;
  padding: 20px;
}

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

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

.card-style01 .item {
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  padding: 25px;
}

.card-style01 .num {
  background: var(--color-main);
  border-radius: 5px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 0 20px;
  margin: 0 auto 10px;
}

/* .card-style01 .card-img img,
.card-style01 .card-img video,
.card-style01 .card-img iframe {
  border-radius: 20px;
} */

.card-style01 .card-img video,
.card-style01 .card-img iframe{
  aspect-ratio: 800/450;
  object-fit: cover;
	width: 100%;
	height: 100%;
}

.card-style01 .card-ttl {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.card-style01 .l-btn {
  margin-top: auto;
  padding-top: 15px;
}

.card-style01 .l-btn .btn-more {
  min-width: auto;
  width: 100%;
}

.card-style01:has(p) .card-img {
  margin-bottom: 18px;
}

.card-style02 .item {
  background-color: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.card-style02 .num {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-main);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 5px;
}

.card-style02 .list-ttl {
  border-bottom: 1px solid var(--color-main);
  font-size: 1.8rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.card-style02 .list-img {
  text-align: center;
  margin-bottom: 25px;
}

.card-style02 .list-img img {
  border-radius: 20px;
}

.card-style02 .list-img .zoom-img img {
  aspect-ratio: 800/590;
  object-fit: contain;
}

.card-style02 .list-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

.card-style02 .list-btn.col2 {
  gap: 10px;
}

.card-style02 .list-btn.col2 .btn-more {
  min-width: auto;
  width: 100%;
}

.card-style02.col3 .btn-more {
  min-width: auto;
  width: 100%;
}

.card-style03>li {
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: 25px;
  position: relative;
}

.card-style03>li:not(:last-child)::before {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--color-main);
  position: absolute;
  right: -5.5%;
  top: 50%;
  transform: translateY(-50%);
}

.card-style03 .num {
  background: var(--color-main);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 5px 20px 0;
  margin: 0 auto 10px;
}

.card-style03 .list-ttl {
  display: block;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.card-style03 .list-img {
  text-align: center;
  margin-bottom: 25px;
}

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

  .card-style02 .list-btn .btn-more {
    min-width: auto;
  }

  .card-style03 {
    gap: 30px !important;
  }

  .card-style03>li:not(:last-child)::before {
    top: auto;
    bottom: -27px;
    left: 50% !important;
    right: auto;
    transform: translateX(-50%) rotate(90deg);
  }
}

.table-style01 th,
.table-style01 td {
  border: 1px solid #D1D1D1;
  font-size: 1.5rem;
  padding: 14px;
  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-scroll-txt {
  display: none;
}

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

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
    padding: 7px 15px;
    width: 100%;
  }

  .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,
  .table-scroll .time-table {
    margin-bottom: 10px !important;
    width: 150%;
  }
}

.box-style01 {
  border: 1px solid #DFDFDF;
  border-radius: 50px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  padding: 5%;
}

.box-style01 .box-ttl {
  font-family: var(--font-heading-sub);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
}

.box-style01 .box-ttl02 {
  border-bottom: 2px solid var(--color-main);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 30px;
  padding-bottom: 8px;
}

.box-style01 .l-imgR .l-img img,
.box-style01 .l-imgL .l-img img {
  border-radius: 20px;
}

.box-style01.has-mg {
  margin-bottom: 5px;
}

.box-style02 {
  background-color: var(--color-bg);
  border-radius: 20px;
  padding: 5%;
}

.box-style02 .box-ttl {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color-main);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.box-style03 {
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  padding: 5%;
}

.box-style03 .list-disc {
  display: block;
  gap: 15px;
  column-count: 2;
}

.box-style03 .list-disc>li {
  break-inside: avoid;
  line-height: 2;
}

.box-style03 .list-disc>li::before {
  top: 13px;
}

@media (max-width: 800px) {
  .box-style01 {
    border-radius: 20px;
    padding: 30px 5%;
  }

  .box-style01 .box-ttl {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }

  .box-style01 .box-ttl02 {
    font-size: 2.2rem;
  }

  .box-style02 {
    padding: 8%;
  }

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

  .box-style03 {
    border-radius: 20px;
    padding: 30px 5%;
  }

  .box-style03 .list-disc {
    column-count: 1;
  }
}

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

.list-anchor-link a {
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 50%;
  font-family: var(--font-heading-bold);
  color: #fff;
  font-size: clamp(1.4rem, 1.1vw, 2rem);
  line-height: 1.5;
  overflow: hidden;
  text-align: center;
  width: 100%;
  padding: 33% 5px 15%;
  position: relative;
  transition: color 0.3s;
  z-index: 1;
}

.list-anchor-link a::before {
  background: #fff;
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  -webkit-transform: skew(-50deg);
  transform: skew(-50deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  height: 100%;
  width: 0;
  z-index: -2;
}

.list-anchor-link .num {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

@media (any-hover: hover) {
  .list-anchor-link a:hover {
    color: var(--color-main);
  }

  .list-anchor-link a:hover::before {
    height: 100%;
    width: 200%;
  }
}

@media (max-width: 950px) {
  .list-anchor-link {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 800px) {
  .list-anchor-link {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }

  .list-anchor-link .num {
    font-size: 2.4rem;
  }

  .list-anchor-link a {
    font-size: 1.4rem;
    padding: 50px 5px 30px;
  }
}

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

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

.under-slider01 .splide__arrow--prev {
  left: -30px;
}

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

.under-slider01 .splide__slide {
  padding: 0 0 5px 0;
}

.under-slider01 .slide-box {
  background-color: var(--color-bg);
  border-radius: 50px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  padding: 90px;
}

.under-slider01 .l-img img {
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
}

.under-slider01 .l-ttl {
  font-size: 3rem;
  margin: 35px 0 20px;
}

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

.under-slider02 figcaption {
  background: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

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

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

.under-slider03 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

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

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

.under-slider03 .splide__arrow {
  top: 263px;
  transform: translateY(0);
}

.under-slider03 .item-img {
  padding: 0 5px 5px 0;
}

.under-slider03 .item-img img {
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
}

.under-slider03 .item-desc {
  margin-top: 25px;
}

.under-slider03 .item-ttl {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

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

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

  .under-slider01 .splide__arrow--prev {
    left: -20px;
  }

  .under-slider01 .slide-box {
    border-radius: 20px;
    padding: 30px 5%;
  }

  .under-slider01 .l-ttl {
    font-size: 2rem;
    margin: 30px 0 10px;
  }

  .under-slider03 .item-desc {
    margin-top: 15px;
  }

  .under-slider03 .item-ttl {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

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

.fb iframe {
  margin: 0 auto;
}

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

@media (max-width: 800px) {
  .google-map iframe {
    height: 300px;
  }
}

.faq-style {
  transition: 0.3s;
}

.faq-style+.faq-style {
  margin-top: -1px;
}

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  padding: 35px 0 11px 52px;
  border-bottom: 1px solid #E6E8EA;
  position: relative;
}

.faq-style .faq-summary::-webkit-details-marker {
  display: none;
}

.faq-style .faq-content {
  overflow: hidden;
}

.faq-style .faq-inner {
  padding: 20px 0 5px 50px;
  position: relative;
}

.faq-style .faq-ttl {
  font-family: var(--font-heading);
  font-size: 2.4rem;
}

.faq-style .faq-icon {
  display: grid;
  place-content: center;
  border: 1px solid var(--color-main);
  background-color: var(--color-main);
  border-radius: 50px;
  color: #fff;
  width: 36px;
  height: 36px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 32px;
  text-align: center;
  padding: 0 0 3px 1px;
  position: absolute;
  top: 18px;
  left: 0;
  transition: 0.3s;
}

.faq-style .faq-open-icon {
  display: grid;
  place-content: center;
  border: 1px solid var(--color-main);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 35px;
  left: 0;
  transition: 0.3s;
}

.faq-style.is-open .faq-open-icon {
  transform: rotate(180deg);
}

@media (max-width: 800px) {
  .faq-style {
    line-height: 1.5;
  }

  .faq-style .faq-summary {
    padding: 18px 0 18px 40px;
  }

  .faq-style .faq-summary .faq-icon {
    top: 17px;
  }

  .faq-style .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 1.9rem;
    padding: 0 0 1px 2px;
    top: 11px;
  }

  .faq-style .faq-ttl {
    font-size: 1.8rem;
  }

  .faq-style .faq-open-icon {
    padding: 0 1px 0 0;
    width: 30px;
    height: 30px;
    right: 0;
    top: 15px;
  }

  .faq-style .faq-open-icon img {
    width: 7px;
  }

  .faq-style .faq-inner {
    padding: 15px 0 30px 40px;
  }
}

.flow-style {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  padding: 5%;
}

.flow-style>li+li {
  border-top: 1px solid #DFDFDF;
  padding-top: 70px;
  margin-top: 70px;
  position: relative;
}

.flow-style>li+li::before {
  content: "";
  background: url(../images/share/arrow-down.svg) no-repeat center/contain;
  width: 45px;
  height: 45px;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-style .flow-ttl {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid #DFDFDF;
  font-family: var(--font-heading);
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.flow-style .flow-ttl .num {
  background: var(--color-main);
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 25px;
  padding: 0 10px;
  margin-top: 3px;
}

.flow-style .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 5%;
}

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

.flow-style .flow-desc {
  flex: 1;
}

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

  .flow-style>li+li {
    padding-top: 50px;
    margin-top: 50px;
  }

  .flow-style .flow-ttl {
    flex-direction: column;
    gap: 10px;
    font-size: 2rem;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .flow-style .flow-ttl .num {
    margin: 0;
  }

  .flow-style .wrap {
    flex-direction: column;
    gap: 30px;
  }

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



/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.l-imgR .l-img,
.l-imgL .l-img {
  margin: 0 5% 0 0;
  text-align: center;
  width: 40%;
}

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

.l-imgR .l-img.wide,
.l-imgL .l-img.wide {
  width: 44%;
}

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

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

.l-imgR .l-img {
  margin: 0 0 0 5%;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    display: block;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }

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

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

/*------------
お問い合わせ
--------------*/
.tel-layout {
  background-color: var(--color-bg);
  border-radius: 50px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  max-width: 826px;
  padding: 60px 5% 50px;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid var(--color-main);
  font-size: 1.7rem;
  text-align: center;
  padding-bottom: 15px;
  margin: 0 auto 25px;
  width: fit-content;
}

.tel-layout .l-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.tel-layout .l-time {
  display: grid;
  grid-template-columns: 70px 1fr;
  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);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 800px) {
  .tel-layout {
    border-radius: 20px;
    padding: 30px 5%;
  }

  .tel-layout .l-ttl {
    font-size: 1.5rem;
  }

  .tel-layout .l-wrap {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 2px solid var(--color-main);
  font-family: var(--font-heading);
  font-size: 3.4rem;
  line-height: 1.5;
  margin-bottom: 40px;
  padding-bottom: 8px;
}

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

@media (max-width: 800px) {
  .dl-privacy dt {
    font-size: 2.4rem;
    margin-bottom: 20px;
    padding-bottom: 4px;
  }
}

.l-style01 {
  padding-top: 37px;
  position: relative;
}

.l-style01::before {
  content: "";
  background: url(../images/share/ttl_deco.svg) no-repeat center/contain;
  width: 49px;
  height: 76px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.l-style01 .l-box {
  background-color: var(--color-bg);
  border-radius: 50px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  padding: 88px 5% 95px;
}

.l-style01 .main-catch {
  font-size: 3.4rem;
  text-align: center;
}

.l-style02 {
  padding: 0 0 120px;
}

.l-style02 .l-img {
  margin-bottom: 60px;
}

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

.l-style02 .em-txt {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 50px;
}

.tall:has(.l-style02) {
  position: relative;
}

.tall:has(.l-style02)::before {
  content: "";
  background-color: var(--color-bg);
  width: 100%;
  height: calc(100% - 377px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.l-style03 {
  display: flex;
  gap: 7.3%;
  padding: 0 0 120px;
}

.l-style03 .l-img {
  padding: 0 0 0 60px;
  position: relative;
  width: 50%;
  z-index: 0;
}

.l-style03 .l-img img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.l-style03 .l-img::before {
  content: "";
  background: url(../images/under/u-mark.svg) no-repeat center/contain;
  width: 21%;
  height: auto;
  aspect-ratio: 146/228;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

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

.l-style03 .l-desc::before {
  content: "";
  background-color: var(--color-bg);
  border-radius: 0 50px 0 0;
  width: calc(100vw + 100px);
  position: absolute;
  inset: 100px -100px -120px auto;
  z-index: -1;
}

.tall:has(.l-style03) {
  overflow: hidden;
}

.l-style04 {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 0 6%;
  padding-top: 45px;
}

.l-style04 .l-img {
  grid-area: 1/1/3/2;
}

.l-style04 .l-img img {
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
}

.l-style04 .ttl-wrap {
  grid-area: 1/2/2/3;
  position: relative;
}

.l-style04 .l-desc {
  grid-area: 2/2/3/3;
}

.l-style04 .num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 9.4rem;
  color: rgba(234, 18, 54, 0.07);
  line-height: 1;
  position: absolute;
  top: -45px;
  left: -40px;
}

.l-style04 .l-ttl {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  margin-bottom: 50px;
  padding-bottom: 15px;
  position: relative;
}

.l-style04 .l-ttl::before {
  content: "";
  background-color: var(--color-main);
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.l-style05 {
  position: relative;
}

.l-style05 .l-img img {
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
}

.l-style05 .l-desc {
  background: #fff;
  padding: 75px 0 58px 100px;
  margin: -137px 0 0 38%;
  position: relative;
  z-index: 1;
}

.l-style05 .l-desc::before {
  content: "";
  background-color: #fff;
  width: calc(100vw + 100px);
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
}

.l-style05 .l-ttl {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  margin-bottom: 45px;
  padding-bottom: 15px;
  position: relative;
}

.l-style05 .l-ttl::before {
  content: "";
  background-color: var(--color-main);
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.tall:has(.l-style05) {
  overflow: hidden;
}

.l-style06 {
  display: flex;
  gap: 7.5%;
  margin: 0 0 0 -10%;
}

.l-style06 .l-img {
  width: 56.64%;
}

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

.l-style06.reverse {
  flex-direction: row-reverse;
  margin: 0 -10% 0 0;
}

.l-style06 .l-ttl {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .l-style01 {
    padding-top: 20px;
  }

  .l-style01::before {
    width: 27px;
    height: 42px;
  }

  .l-style01 .l-box {
    border-radius: 20px;
    padding: 35px 5% 30px;
  }

  .l-style01 .main-catch {
    font-size: 2.2rem;
  }

  .l-style02 {
    padding: 0 0 45px;
  }

  .l-style02 .l-img {
    margin-bottom: 20px;
  }

  .l-style02 .em-txt {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .tall:has(.l-style02)::before {
    height: calc(100% - 200px);
  }

  .l-style03 {
    flex-direction: column;
    gap: 30px;
    padding: 0 0 40px;
  }

  .l-style03 .l-img {
    padding: 0 0 0 20px;
    width: 100%;
  }

  .l-style03 .l-desc::before {
    inset: 55px -5% -40px;
  }

  .l-style04 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .l-style04 .l-img {
    grid-area: 2/1/3/2;
    margin-bottom: 30px;
  }

  .l-style04 .ttl-wrap {
    grid-area: 1/1/2/2;
  }

  .l-style04 .l-desc {
    grid-area: 3/1/4/2;
  }

  .l-style04 .num {
    left: -5%;
  }

  .l-style04 .l-ttl {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .l-style05 .l-desc {
    padding: 30px 0 30px 5%;
    margin: -50px 0 0 20px;
  }

  .l-style05 .l-ttl {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .l-style06 {
    flex-direction: column;
    gap: 35px;
    margin: 0 -5vw;
  }

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

  .l-style06.reverse {
    flex-direction: column;
    margin: 0 -5vw;
  }

  .l-style06 .l-desc {
    padding: 0 5vw;
  }

  .l-style06 .l-ttl {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

.staff-layout {
  display: flex;
  gap: 6%;
}

.staff-layout .l-img {
  text-align: center;
  width: 39%;
}

.staff-layout .l-img img {
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
}

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

.staff-layout .l-inner {
  max-width: 563px;
}

.staff-layout .job {
  border: 1px solid var(--color-main);
  border-radius: 5px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 2px 8px;
  text-align: center;
  width: fit-content;
  margin-bottom: 10px;
}

.staff-layout .name {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-family: var(--font-heading);
  margin-bottom: 45px;
  padding-bottom: 15px;
  position: relative;
}

.staff-layout .name::before {
  content: "";
  background-color: var(--color-main);
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.staff-layout .jp {
  font-size: 3.4rem;
}

.staff-layout .en {
  font-family: var(--font-heading);
  color: var(--color-main);
  font-size: 1.8rem;
}

.staff-layout .u-h4 {
  margin-bottom: 10px;
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 25px;
}

.staff-list .list-img {
  text-align: center;
  margin-bottom: 20px;
}

.staff-list .list-img img {
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
}

.staff-list .list-name {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  text-align: center;
}

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

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

  .staff-layout .l-inner {
    max-width: 100%;
  }

  .staff-layout .job {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  .staff-layout .name {
    flex-wrap: wrap;
    gap: 0 20px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .staff-layout .jp {
    font-size: 2.4rem;
  }

  .staff-layout .en {
    font-size: 1.6rem;
  }

  .staff-list {
    grid-template-columns: 1fr;
  }
}

/*------------
Add
--------------*/
.zoom-img {
  display: block;
  position: relative;
}

.zoom-img::before {
  content: "";
  background: #fff url(../images/share/icon_zoom.svg) no-repeat center/22px auto;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  position: absolute;
  bottom: 15px;
  right: 17px;
  z-index: 1;
}

@media (max-width: 800px) {
  .zoom-img {
    pointer-events: none;
  }

  .zoom-img::before {
    content: none;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color-bg);
  padding: 60px 0 0;
  margin-top: auto;
  position: relative;
}

.f-layout {
  margin-bottom: 35px;
}

.f-logo {
  margin-bottom: 50px;
  text-align: center;
}

.f-links {
  font-family: var(--font-heading);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.f-links .menu-ttl {
  border-bottom: 1px solid var(--color-main);
  font-size: 1.8rem;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.f-links .sub-menu {
  display: grid;
  gap: 3px;
}

.f-links .sub-menu>li {
  padding-left: 21px;
  position: relative;
}

.f-links .sub-menu>li::before {
  content: "";
  background-color: var(--color-main);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 6px;
  top: 14px;
}

.f-links a {
  background: linear-gradient(to right, var(--color-main), var(--color-main)) no-repeat left 0 bottom/0 1px;
  transition: 0.3s;
}

.f-links a[aria-current=page] {
  background-size: 100% 1px;
}

.copyright {
  background-color: var(--color-main);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-align: center;
  padding: 1px 10px;
}

.pagetop {
  position: absolute;
  bottom: 60px;
  right: 50px;
  z-index: 5;
}

.pagetop a {
  display: inline-block;
  transition: transform 0.5s;
}

.fixed-menu {
  width: 48px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 10;
}

.fixed-menu a {
  display: inline-block;
  border: 1px solid var(--color-main);
  border-radius: 4px 0 0 4px;
  background: var(--color-main);
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-feature-settings: normal;
  overflow: hidden;
  padding: 86px 15px 48px;
  position: relative;
  transition: color 0.3s;
  z-index: 1;
}

.fixed-menu a::before {
  background: #fff;
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  height: 100%;
  width: 0;
  z-index: -2;
}

.fixed-menu a::after {
  content: "";
  background-color: #fff;
  mask: url("../images/share/icon_recruit.svg") no-repeat center center;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 51px;
  left: 50%;
  transform: translateX(-50%);
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .f-links a:hover {
    background-size: 100% 1px;
  }

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

  .fixed-menu a:hover {
    color: var(--color-main);
  }

  .fixed-menu a:hover::before {
    height: 100%;
    width: 250%;
  }

  .fixed-menu a:hover::after {
    background-color: var(--color-main);
  }
}

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

  .pagetop {
    bottom: 130px;
    right: 20px;
  }

  .fixed-menu {
    display: none;
  }
}

.sp-navi {
  display: none;
}

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

  /*-------------
  下部固定
  -------------*/
  :root {
    --navi-background: #EA1236;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --humberger: #fff;
  }

  .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    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 var(--navi-border-color);
    font-family: var(--font-heading);
    font-size: 1rem;
    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,
  .sp-navi-btns .item button {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    width: 100%;
    height: 100%;
    padding: 8px 0;
  }

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

  .sp-navi-btns .item .img svg,
  .sp-navi-btns .item .img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 16px;
    margin-bottom: 7px;
    stroke: var(--svg-stroke);
    width: auto;
  }

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

  .sp-navi-btns .item:last-child .img img {
    height: 6px;
    margin-bottom: 12px;
  }

  .sp-tel-info {
    display: block;
    background-color: #fff;
    border: 1px solid var(--color-main);
    border-radius: 20px 20px 0 0;
    padding: 54px 5% 65px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 500;
  }

  .sp-tel-info.is-open {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .sp-tel-info-close {
    position: absolute;
    top: 15px;
    right: 22px;
  }

  .sp-tel-info-list {
    display: grid;
    gap: 5px;
  }

  .sp-tel-info-list a {
    display: grid;
    grid-template-columns: 19% 1fr;
    border: 1px solid var(--color-main);
    border-radius: 4px;
  }

  .sp-tel-info-list .img {
    background-color: #fff;
    border-radius: 4px 0 0 4px;
    display: grid;
    place-content: center;
  }

  .sp-tel-info-list .desc {
    background-color: var(--color-main);
    color: #fff;
    font-family: var(--font-heading);
    padding: 10px;
  }

  .sp-tel-info-list .l-name {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 3px;
  }

  .sp-tel-info-list .l-tel {
    font-size: 2.1rem;
    line-height: 1;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*通常投稿*/
.list-post-type01 {
  border-top: 1px solid var(--color-border);
  margin-bottom: 50px;
}

.list-post-type01 .item>a {
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 15px 70px 15px 0;
  position: relative;
  transition: border-color 0.3s;
}

.list-post-type01 .item>a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
  z-index: 2;
}

.list-post-type01 .item>a:focus-visible {
  border-color: var(--color-main);
}

.list-post-type01 .item>a:focus-visible::before {
  border-color: var(--color-main);
}

.list-post-type01 .list-img img {
  border: 1px solid #eee;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

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

.list-post-type01 time {
  display: block;
  color: var(--color-main);
  font-size: 1.4rem;
}

.list-post-type01 .list-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.8;
  margin-bottom: 5px;
}

.list-post-type01 .cat-wrap {
  display: flex;
  flex-wrap: wrap;
}

.list-post-type01 .category {
  display: inline-block;
  color: #723514;
  font-size: 1.1rem;
  margin-right: 5px;
}

.list-post-type01 .category+.category {
  padding: 0 0 0 10px;
  position: relative;
}

.list-post-type01 .category+.category::before {
  content: "/";
  position: absolute;
  left: 0;
}

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

@media (any-hover: hover) {
  .list-post-type01 .item>a:hover {
    border-color: var(--color-main);
  }

  .list-post-type01 .item>a:hover::before {
    border-color: var(--color-main);
  }
}

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

.l-post-single .l-ttl {
  border-bottom: 3px solid #eee;
  font-size: 2.2rem;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.l-post-single .post-data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.l-post-single .post-data time {
  display: inline-block;
  color: var(--color-main);
  font-size: 1.2rem;
  white-space: nowrap;
  margin-right: 20px;
}

.l-post-single .post-data .category {
  display: inline-block;
  color: #723514;
  font-size: 1.1rem;
  margin-right: 5px;
}

.l-post-single .post-data .category+.category {
  padding: 0 5px 0 10px;
  position: relative;
}

.l-post-single .post-data .category+.category::before {
  content: "/";
  position: absolute;
  left: 0;
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
  color: #0d95e8;
}

.postdata a:focus-visible {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li,
.faq-style ul.wp-block-list li {
  position: relative;
  padding-left: 15px;
}

.postdata ul li:before,
.faq-style ul.wp-block-list li:before {
  content: "";
  background: var(--color-main);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 15px;
  width: 5px;
  height: 5px;
}

.postdata ol,
.faq-style ol.wp-block-list {
  counter-reset: number;
}

.postdata ol li,
.faq-style ol.wp-block-list li {
  padding-left: 30px;
  position: relative;
}

.postdata ol li::before,
.faq-style ol.wp-block-list li::before {
  background-color: var(--color-main);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  position: absolute;
  top: 6px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding-left: 1px;
  width: 20px;
  height: 20px;
}

.postdata ol li>ol,
.faq-style ol.wp-block-list li>ol {
  counter-reset: number;
}

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

.postdata sup {
  font-size: 1.1rem;
  position: relative;
  top: -0.1em;
}

.postdata .wp-block-button__link {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s;
}

.postdata .wp-block-button__link::after {
  content: “”;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: border-color 0.3s;
}

.postdata .wp-block-button__link:focus-visible {
  opacity: 1;
  background-color: #fff;
  color: var(--color-main);
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }

  .postdata .wp-block-button__link:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--color-main);
  }
}

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

.post-number span,
.post-number a {
  display: inline-block;
  font-family: var(--font-heading);
  color: #333;
  background-color: var(--color-bg);
  font-size: 1.3rem;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  transition: 0.3s;
  padding: 0 20px;
  border-radius: 5px;
}

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

.post-number a:focus-visible {
  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 {
  margin: 0 10px;
  transition: color 0.3s;
}

.post-number-single .all:focus-visible {
  color: var(--color-main);
}

.post-number-single .prev,
.post-number-single .next {
  width: 32px;
  height: 32px;
  position: relative;
  transition: color 0.3s;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #333;
  margin: 0 auto;
  top: 14px;
  transition: border-bottom 0.3s;
}

.post-number-single .prev:focus-visible,
.post-number-single .next:focus-visible {
  color: var(--color-main);
}

.post-number-single .prev:focus-visible::before,
.post-number-single .next:focus-visible::before {
  border-bottom: 1px solid var(--color-main);
}

.post-number-single .prev::before {
  transform: rotate(-135deg);
  left: 13px;
  border-left: 1px solid #333;
}

.post-number-single .prev:focus-visible::before {
  border-left: 1px solid var(--color-main);
}

.post-number-single .next::before {
  transform: rotate(135deg);
  right: 13px;
  border-right: 1px solid #333;
}

.post-number-single .next:focus-visible::before {
  border-right: 1px solid var(--color-main);
}

@media (any-hover: hover) {
  .post-number a:hover {
    background: var(--color-main);
    color: #fff;
  }

  .post-number-single .all:hover {
    color: var(--color-main);
  }

  .post-number-single .prev:hover::before {
    border-left: 1px solid var(--color-main);
    border-bottom: 1px solid var(--color-main);
  }

  .post-number-single .next:hover::before {
    border-bottom: 1px solid var(--color-main);
    border-right: 1px solid var(--color-main);
  }
}

@media (max-width: 800px) {

  /*通常投稿*/
  .list-post-type01 .item>a {
    grid-template-columns: 120px 1fr;
    padding: 20px 25px 20px 0;
  }

  .list-post-type01 .item>a::before {
    right: 0;
  }

  .list-post-type01 .list-img img {
    height: 90px;
  }

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

  .list-post-type01 time {
    font-size: 1rem;
  }

  .list-post-type01 .list-ttl {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .list-post-type01 .category {
    font-size: 1rem;
  }

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

  /*詳細ページ*/
  .l-post-single .l-ttl {
    font-size: 2rem;
    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;
  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 var(--color-main);
  position: absolute;
  top: 12px;
  left: 0;
}

.side-area-links a {
  display: inline-block;
}

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

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

.fade {
  transition: opacity 0.5s;
}

.fade:focus-visible {
  opacity: 0.6;
}

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.6;
  }
}

.fs11 {
  font-size: 1.1rem;
}

.fs18 {
  font-size: 1.8rem;
}

.bold,
strong {
  font-weight: bold;
}

.red {
  color: var(--color-main);
}

.blown {
  color: #723514;
}

.marker {
  background: linear-gradient(transparent 50%, var(--color-sub-pink) 50%);
}

.catch {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.5;
}

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

.underline {
  text-decoration: underline;
}

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

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

  .sp-only {
    display: block;
  }

  .catch {
    font-size: 1.8rem;
  }

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

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

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

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

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

/*ボタン*/
.btn-more {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 27px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading-bold);
  line-height: 1.25;
  overflow: hidden;
  min-height: 54px;
  min-width: 300px;
  padding: 6px 40px;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

.btn-more::before {
  background: #fff;
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  -webkit-transform: skew(-50deg);
  transform: skew(-50deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  height: 100%;
  width: 0;
  z-index: -2;
}

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

.btn-more .target-blank {
  position: relative;
}

.btn-more .target-blank::after {
  content: "";
  background-color: #fff;
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 14px;
  height: 13px;
  display: inline-block;
  position: absolute;
  top: 55%;
  right: -23px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.btn-more:has(.target-blank) {
  padding: 6px 70px 6px 40px;
}

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

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

@media (any-hover: hover) {
  .btn-more:hover {
    color: var(--color-main);
  }

  .btn-more:hover::before {
    height: 100%;
    width: 150%;
  }

  .btn-more:hover .target-blank::after {
    background-color: var(--color-main);
  }
}

@media (max-width: 800px) {
  .btn-more {
    width: 100%;
  }
}

/*診療カレンダー*/
:root {
  --event01: #EA1236;
  --event02: #129FEA;
  --event03: #0EC415;
  --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%;
}

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

.business-calendar-box-wrap .business-calendar caption span {
  color: var(--color-main);
  font-size: 2.5rem;
  line-height: 1;
  position: absolute;
  vertical-align: -1px;
}

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

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

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

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

.business-calendar-box-wrap .business-calendar th {
  background-color: var(--color-main);
  border: 1px solid #dfdfdf;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  padding: 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  position: relative;
  padding: 7px 5px;
  z-index: 0;
}

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

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

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

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

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

.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.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 .attr1::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 .attr0::before {
  background: var(--event01);
}

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

.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;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.list-event li {
  font-size: 1.5rem;
  line-height: 1;
}

.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.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .list-event {
    display: block;
  }

  .list-event li+li {
    margin-top: 5px;
  }
}

/*診療時間*/
.time-table {
  border: 1px solid #DFDFDF;
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 8px;
}

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

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

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

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

.time-table-body .item:first-child {
  background-color: var(--color-sub-pink);
  letter-spacing: 0;
}

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

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

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

.time-table-txt {
  line-height: 1.8;
}

@media (max-width: 800px) {
  .time-table-head {
    font-size: 1.2rem;
  }

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

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

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

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

  .time-table-head .low,
  .time-table-body .low {
    line-height: 1.3;
  }

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

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

.tel,
.fax {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 3.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.img-round img {
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
}

@media (max-width: 800px) {

  .tel,
  .fax {
    font-size: 2.5rem;
  }

  .tel img,
  .fax img {
    width: 19px;
  }
}

/*------------
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 {
  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;
  pointer-events: auto;
}

.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__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.splide__controls .splide__pagination {
  padding-bottom: 4px;
  position: static;
}

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

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

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

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list {
  display: block;
}

.splide__track--fade>.splide__list>.splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 2px solid var(--color-main);
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 59px;
  width: 59px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid var(--color-main);
  border-width: 2px 2px 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: calc((100% - 1080px) / 2);
}

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

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

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

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

.splide__pagination__page {
  background-color: transparent;
  border: 1px solid var(--color-main);
  border-radius: 1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
}

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

.splide__pagination__page:hover {
  cursor: pointer;
}

.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 (any-hover: hover) {
  .splide__arrow:hover {
    opacity: 0.7;
  }
}

@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 {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--color-main);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: background-color 0.2s ease;
  height: 24px;
  width: 24px;
  z-index: 1;
}

.splide__toggle svg {
  fill: #fff;
  width: 10px;
  height: 10px;
}

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

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

/*------------
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;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
  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;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  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;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  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;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  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;
  -webkit-transform: translateZ(0);
  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;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  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 {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  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;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  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;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  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;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
  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: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  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 {
  -webkit-animation: fancybox-rotate 1s linear infinite;
  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;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  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;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  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;
  -webkit-transition: all 0.2s;
  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;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  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;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  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);
}

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

/*# sourceMappingURL=style.css.map */
