@charset "UTF-8";

@font-face {
  font-family: "Quentin";
  src: url("../fonts/Quentin.woff") format("woff");
}

:root {
  --font-device: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  --font-heading: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  --font-en: "Cormorant Garamond", serif;
  --font-en-deco: "Quentin", serif;
  --color-bace: #2F2F2F;
  --color-main: #676F76;
  --color-sub: #7D868A;
  --color-bg-light: #F5F1EB;
  --color-bg-dark: #E9E4DD;
  --color-bg-beige: #FAF0E8;
  --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;
}

/*-----------------------------------------------------------
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-weight: 500;
  font-size: 1.6rem;
  color: var(--color-bace);
  line-height: 1.8;
  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.15em;
  line-height: 1.6;
}

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

img {
  vertical-align: top;
}

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

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

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

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

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

.header .h-logo {
  display: none;
}

.header.is-fixed {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
}

.header-layout {
  background-color: #fff;
  padding: 33px 20px;
  position: relative;
  height: 100px;
  width: 100%;
}

.header.is-fixed .header-layout {
  padding-left: 348px;
}

.header.is-fixed .h-logo {
  display: block;
  position: absolute;
  top: 28px;
  left: 30px;
}

.header-layout .h-logo>a {
  display: block;
}

@media (max-width: 1400px) {
  .header-layout {
    padding: 39px 20px 30px;
  }
}

@media (max-width: 1200px) {
  .header.is-fixed .header-layout {
    padding-left: 210px;
  }

  .header.is-fixed .h-logo {
    width: 150px;
    top: 40px;
  }
}

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

  .header-layout {
    background-color: #fff;
    padding: 27px 16px;
    height: 82px;
  }

  .header-layout .h-logo {
    display: block;
    position: static;
    width: 215px;
  }

  .gnavi {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
.gnavi-list {
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin-inline: auto;
  position: relative;
}

.gnavi-list:after {
  content: "";
  background-color: var(--color-sub);
  width: 1px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.gnavi-list>li {
  font-size: min(1.9rem, 1vw);
  line-height: 1.4;
  text-align: center;
  flex: 1;
  display: grid;
  align-items: center;
}

.gnavi-list>li .small {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.gnavi-list>li+li {
  position: relative;
}

.gnavi-list>li::before {
  content: "";
  background-color: var(--color-sub);
  width: 1px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}



.gnavi-list>li>a {
  display: block;
  text-align: center;
  transition: color 0.3s;
  padding: 0 15px;
}

/*dropdown*/
.dropdown {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 0 15px;
}

.dropdown .menu-ttl {
  display: block;
  position: relative;
}

.dropdown .menu-ttl::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  transform-origin: right;
  position: absolute;
  left: calc(50% - 4px);
  bottom: -12px;
}

.dropdown>a:hover {
  opacity: 0.5;
}

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

.dropdown .sub-menu {
  display: grid;
  gap: 12px;
  pointer-events: none;
  background-color: var(--color-bg-dark);
  padding: 29px 40px;
  position: absolute;
  top: 52px;
  right: 50%;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
  text-align: left;
}

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

.dropdown .sub-menu>li {
  font-size: 1.5rem;
  padding-left: 14px;
  position: relative;
}

.dropdown .sub-menu>li::before {
  content: "";
  background-color: var(--color-main);
  width: 6px;
  height: 1px;
  position: absolute;
  top: 1.1rem;
  left: 0;
}

.dropdown .sub-menu a {
  transition: color 0.3s;
}

.dropdown:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

@media (any-hover: hover) {
  .gnavi-list>li>a:hover {
    color: #C18F40;
  }

  .dropdown .sub-menu a:hover {
    color: #C18F40;
  }
}

@media (max-width: 1400px) {
  .gnavi-list>li {
    font-size: 1.4rem;
    padding: 0 5px;
  }

  .gnavi-list>li+li::before {
    height: 25px;
  }

}

@media (max-width: 1024px) {
  .gnavi-list {
    display: none;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
}

.hero {
  position: relative;
}

.hero .splide__slide img {
  width: 100%;
  animation: 3.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero .splide__slide.is-prev img,
.hero .splide__slide.is-next img,
.hero .splide__slide.is-before img {
  animation-name: slide-fadeOut;
  will-change: transform;
}

.hero .splide__slide.is-active img {
  animation-name: slide-fadeIn;
  will-change: transform;
}

.hero .splide__slide.is-before {
  opacity: 1 !important;
}

.hero .splide__slide.is-first {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero .splide__slide.is-first.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero .splide__slide.is-first img {
  clip-path: inset(0) !important;
  transform: translateY(0) !important;
}

@keyframes slide-fadeIn {
  0% {
    clip-path: inset(0 0 100% 0);
    transform: translateY(-15%);
  }

  100% {
    clip-path: inset(0);
    transform: translateY(0);
  }
}

@keyframes slide-fadeOut {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(15%);
  }
}

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

.hero-logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 5;
}

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

.hero-catch .ttl {
  text-shadow: 0 0 15px #2F2F2F;
  color: #fff;
  font-size: clamp(3.5rem, 2.8vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: -32px 0 0 4%;
  white-space: nowrap;
}

.hero-catch .sub-ttl {
  color: rgba(233, 228, 221, 0.45);
  font-family: var(--font-en-deco);
  font-size: clamp(3.2rem, 2.6vw, 4.7rem);
  letter-spacing: -0.05em;
  line-height: 1.1;
  rotate: -3deg;
}

.hero-catch .ttl,
.hero-catch .sub-ttl {
  animation-name: catch-fadeOut;
  animation: 4.0s cubic-bezier(0.22, 1, 0.36, 1) both 1.5s;
  will-change: transform;
}

.hero .splide__slide.is-active .hero-catch .ttl,
.hero .splide__slide.is-active .hero-catch .sub-ttl {
  animation-name: catch-fadeIn;
  animation-delay: 3.0s;
}

.hero .splide__slide.is-first.is-active .hero-catch .ttl,
.hero .splide__slide.is-first.is-active .hero-catch .sub-ttl {
  animation-delay: 1.5s;
}

@keyframes catch-fadeIn {
  0% {
    clip-path: inset(0 0 100% 0);
    transform: translateY(-15%);
  }

  100% {
    clip-path: inset(0);
    transform: translateY(0);
  }
}

@keyframes catch-fadeOut {
  0% {
    clip-path: inset(0);
    transform: translateY(0);
  }

  100% {
    clip-path: inset(0 0 100% 0);
    transform: translateY(-15%);
  }
}

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

  .hero-logo {
    top: -67px;
    left: 15px;
    width: 215px;
  }

  .hero .splide__slide img {
    height: 50vh;
  }

  .hero-catch {
    bottom: 40px;
    left: 5%;
  }

  .hero-catch .ttl {
    font-size: 2.2rem;
    margin: -7px 0 0 20px;
    white-space: normal;
  }

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

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

.t-ttl [lang=en] {
  color: #C18F40;
  font-family: var(--font-en-deco);
  font-size: 5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 5px;
}

.t-ttl .jp {
  font-size: 6rem;
}

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

  .t-ttl [lang=en] {
    font-size: 3.0rem;
  }

  .t-ttl .jp {
    font-size: 2.5rem;
  }
}

/*------------
Block
--------------*/
.sec01 {
  background: url(../images/sec01_bg.jpg) no-repeat center center/cover;
  overflow: hidden;
  padding: 130px 0 100px;
}

.sec01-box {
  background-color: var(--color-bg-beige);
  padding: 50px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.26);
}

.sec01-box .txt {
  text-align: center;
}

.sec01-box .txt+.txt {
  margin-top: 1.5em;
}

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

.sec01-ttl {
  margin: -130px 0 35px 0;
  text-align: center;
  padding-top: 135px;
  position: relative;
}

.sec01-ttl [lang=en] {
  color: #C18F40;
  font-family: var(--font-en-deco);
  font-size: 15.8rem;
  line-height: 1;
  white-space: nowrap;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sec01-ttl .jp {
  font-size: 3.5rem;
}

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

  .sec01-box {
    padding: 30px 5%;
  }

  .sec01-box .txt {
    text-align: left;
  }

  .sec01-ttl {
    margin: -70px 0 30px 0;
    padding-top: 70px;
  }

  .sec01-ttl [lang=en] {
    font-size: 5.5rem;
    top: 10px;
  }

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

.sec02 {
  background-color: var(--color-bg-beige);
  overflow: hidden;
  padding: 112px 0 100px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.26);
}

.sec02::before {
  content: "";
  background: url(../images/sec02_bg01.png) no-repeat center center/contain;
  width: 38%;
  height: auto;
  aspect-ratio: 700/503;
  position: absolute;
  bottom: 40px;
  right: 50%;
}

.sec02::after {
  content: "";
  background: url(../images/sec02_bg02.png) no-repeat center center/contain;
  width: 22.1%;
  height: auto;
  aspect-ratio: 560/399;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

.l-sec02 {
  display: flex;
  flex-direction: row-reverse;
  gap: 5%;
}

.l-sec02 .l-img {
  position: relative;
  width: 45%;
}

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

.sec02-ttl {
  margin-bottom: 30px;
  padding-top: 126px;
  position: relative;
  z-index: 0;
}

.sec02-ttl [lang=en] {
  color: #DBD2C4;
  font-family: var(--font-en-deco);
  font-size: 19.8rem;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  top: -25px;
  left: -23%;
  z-index: -1;
}

.sec02-ttl .jp {
  font-size: 3.5rem;
  margin-bottom: 5px;
}

.sec02-ttl .sub-ttl {
  font-size: 2.5rem;
}

.sec02-circle {
  aspect-ratio: 639 / 672;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.sec02-circle .circle01 {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
  border-radius: 50%;
  font-size: clamp(1.8rem, 1.6vw, 3rem);
  display: grid;
  place-content: center;
  width: min(296px, 46%);
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sec02-circle .circle02,
.sec02-circle .circle03,
.sec02-circle .circle04,
.sec02-circle .circle05,
.sec02-circle .circle06 {
  border-radius: 50%;
  color: #fff;
  font-size: clamp(1.6rem, 1.5vw, 2.7rem);
  line-height: 1.5;
  display: grid;
  place-content: center;
  text-align: center;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.sec02-circle .circle02 {
  padding: 0 0 2% 0;
}

.sec02-circle .circle06 {
  padding: 0 0 2% 0;
}

.sec02-circle .circle03::before,
.sec02-circle .circle04::before,
.sec02-circle .circle05::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  transition: background-color 0.3s;
}

.sec02-circle .circle03::before {
  bottom: 40px;
}

.sec02-circle .circle04::before,
.sec02-circle .circle05::before {
  bottom: 27px;
}

.sec02-circle .circle02::after,
.sec02-circle .circle03::after,
.sec02-circle .circle04::after,
.sec02-circle .circle05::after,
.sec02-circle .circle06::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: -1;
}

.sec02-circle .circle02::after,
.sec02-circle .circle04::after,
.sec02-circle .circle05::after,
.sec02-circle .circle06::after {
  background: linear-gradient(-90deg, #C2CCD1 0%, #8F9DA3 100%);
}

.sec02-circle .circle03::after {
  background: linear-gradient(-90deg, #C4D8C2 0%, #8CA289 100%);
}

.sec02-circle .circle02 .link-txt i,
.sec02-circle .circle06 .link-txt i {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: background-color 0.3s;
}

.sec02-circle .circle02 {
  background: linear-gradient(-90deg, #D0D8E0 0%, #91A5BC 100%);
  width: min(232px, 36%);
  top: 0;
  left: 0;
  position: relative;
}

.sec02-circle .circle02 .link-txt {
  font-size: clamp(1rem, 0.9vw, 1.7rem);
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  position: absolute;
  bottom: clamp(19px, 2.2vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

.sec02-circle .circle02 .link-txt i {
  margin-bottom: 4px;
}

.sec02-circle .circle03 {
  background: linear-gradient(-90deg, #C0D3CD 0%, #90A8A0 100%);
  width: min(232px, 36%);
  top: 0;
  right: 0;
}

.sec02-circle .circle04 {
  background: linear-gradient(-90deg, #D0D8E0 0%, #91A5BC 100%);
  width: min(164px, 25%);
  left: 12px;
  bottom: 135px;
}

.sec02-circle .circle05 {
  background: linear-gradient(-90deg, #D0D8E0 0%, #91A5BC 100%);
  width: min(164px, 25%);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sec02-circle .circle06 {
  background: linear-gradient(-90deg, #D0D8E0 0%, #91A5BC 100%);
  width: min(164px, 25%);
  right: 12px;
  bottom: 135px;
}

.sec02-circle .circle06 .link-txt {
  font-size: clamp(0.8rem, 0.6vw, 1.2rem);
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  position: absolute;
  bottom: clamp(10px, 1.3vw, 24px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

.sec02-circle .circle06 .link-txt i {
  margin-bottom: 2px;
}

.sec02-circle>.no-link {
  pointer-events: none;
}

.sec02-circle>.no-link::before {
  content: none !important;
}

@media (any-hover: hover) {

  .sec02-circle .circle02:hover::after,
  .sec02-circle .circle03:hover::after,
  .sec02-circle .circle04:hover::after,
  .sec02-circle .circle05:hover::after,
  .sec02-circle .circle06:hover::after {
    transform: scaleX(1);
  }

  .sec02-circle .circle02:hover .link-txt span,
  .sec02-circle .circle06:hover .link-txt span {
    display: none;
  }
}

@media (max-width: 1300px) {
  .sec02-ttl {
    padding-top: 70px;
  }

  .sec02-ttl [lang=en] {
    font-size: 13rem;
    left: -5%;
  }

  .sec02-circle .circle02 .link-txt {
    gap: 5px;
  }

  .sec02-circle .circle02 .link-txt i {
    margin-bottom: 2px;
  }

  .sec02-circle .circle06 .link-txt {
    gap: 0;
  }
}

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

  .sec02::before {
    width: 95%;
    transform: translateX(50%);
  }

  .sec02::after {
    width: 50%;
  }

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

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

  .sec02-ttl {
    padding-top: 60px;
  }

  .sec02-ttl [lang=en] {
    font-size: 8rem;
    top: 0;
    left: -5%;
  }

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

  .sec02-ttl .sub-ttl {
    font-size: 1.8rem;
  }

  .sec02-circle {
    position: relative;
    transform: translate(-50%, 0);
  }

  .sec02-circle .circle01 {
    width: min(296px, 55%);
  }

  .sec02-circle .circle02,
  .sec02-circle .circle03 {
    width: min(232px, 40%);
  }

  .sec02-circle .circle03::before {
    bottom: 18px;
  }

  .sec02-circle .circle04,
  .sec02-circle .circle05,
  .sec02-circle .circle06 {
    width: min(164px, 30%);
  }

  .sec02-circle .circle04,
  .sec02-circle .circle06 {
    bottom: 55px;
  }

  .sec02-circle .circle04::before,
  .sec02-circle .circle05::before {
    bottom: 13px;
  }

  .sec02-circle .circle02 .link-txt {
    bottom: 18px;
  }

  .sec02-circle .circle06 .link-txt {
    bottom: 13px;
  }
}

.sec03 {
  overflow: hidden;
  padding: 100px 0;
}

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

.sec03-slider .swiper-container {
  position: relative;
}

.sec03-slider .swiper-button-next,
.sec03-slider .swiper-button-prev {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 0;
  width: 75px;
  height: 75px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

.sec03-slider .swiper-button-next::after,
.sec03-slider .swiper-button-prev::after {
  content: "";
  width: 2rem;
  height: 2rem;
  border: solid #333;
  border-width: 2px 2px 0 0;
}

.sec03-slider .swiper-button-next {
  right: -80px;
}

.sec03-slider .swiper-button-next::after {
  transform: rotate(45deg);
}

.sec03-slider .swiper-button-prev {
  left: -80px;
}

.sec03-slider .swiper-button-prev::after {
  transform: rotate(-135deg);
}

.sec03-slider .swiper-horizontal>.swiper-pagination-bullets,
.sec03-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -48px;
}

.sec03-slider img {
  transform: scale(0.8);
  transition: transform 0.7s;
}

.sec03-slider .l-txt {
  position: absolute;
  bottom: 12%;
  left: 15%;
  z-index: 1;
  transition: bottom 0.7s, left 0.7s;
}

.sec03-slider .l-txt .txt01 {
  color: #fff;
  font-size: 3.5rem;
  line-height: 1.6;
}

.sec03-slider .l-txt .txt02 {
  color: #C18F40;
  font-family: var(--font-en-deco);
  font-size: 8rem;
  line-height: 1;
  rotate: -4deg;
}

.sec03-slider .swiper-slide-active img {
  transform: scale(1);
  z-index: 1;
}

.sec03-slider .swiper-slide-active .l-txt {
  bottom: 20px;
  left: 40px;
}

.sec03-slider.u-slider {
  padding-bottom: 40px;
}

.sec03-slider.u-slider p+p {
  margin-top: 0;
}

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

  .sec03 .l-btn {
    margin-top: 55px;
  }

  .sec03-slider .swiper-horizontal>.swiper-pagination-bullets,
  .sec03-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -30px;
  }

  .sec03-slider img {
    transform: scale(0.9);
  }

  .sec03-slider .l-txt {
    bottom: 15px;
    left: 15px;
  }

  .sec03-slider .l-txt .txt01 {
    font-size: 1.5rem;
  }

  .sec03-slider .l-txt .txt02 {
    font-size: 4rem;
  }

  .sec03-slider .swiper-slide-active .l-txt {
    bottom: 15px;
    left: 15px;
  }
}

.sec04 {

  display: flow-root;
  overflow-x: clip;
  overflow-y: visible;
  padding: 0 0 140px;
  position: relative;
}

.sec04::before {
  content: "";
  background: linear-gradient(180deg, #B2BFC3 0%, #ACB7BA 100%);
  width: 100%;
  height: 91%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sec04::after {
  content: "";
  background: url(../images/sec04_deco01.png) no-repeat center center/contain;
  width: 32%;
  height: auto;
  aspect-ratio: 575/409;
  position: absolute;
  bottom: 60px;
  right: 0;
  z-index: -1;
}

.l-sec04 {
  display: grid;
  grid-template-columns: 56% 44%;
  margin-bottom: 157px;
  padding: 0 5%;
}

.l-sec04 .l-img {
  text-align: right;
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 2.5%;
}

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

.l-sec04 .l-img img:nth-child(2) {
  margin-top: 5%;
}

.l-sec04 .l-img::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
  width: 52%;
  height: auto;
  aspect-ratio: 505/402;
  position: absolute;
  bottom: -48px;
  left: -5vw;
  z-index: -1;
}

.l-sec04 .l-desc {
  padding: 38% 0 0 14%;
}

.sec04-ttl {
  margin-bottom: 45px;
}


.sec04-ttl .jp {
  color: #fff;
  font-size: 5.6rem;
}

.sec04-ttl .jp .small {
  display: block;
  font-size: 64.3%;
}

.sec04-ttl [lang="en"] {
  color: #C18F40;
  font-family: var(--font-en-deco);
  font-size: 4rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.l-sec04 .sub-ttl {
  color: #fff;
  font-size: 2.5rem;
}

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

.sec04-link .item {
  position: relative;
}

.sec04-link .item>a {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 400/557;
  padding: 35px 20px;
  transition: backdrop-filter 0.3s;
}

.sec04-link .item::after {
  content: "";
  background-color: #fff;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

.sec04-link .item:nth-child(1) {
  background: url(../images/sec04_img02@2x.jpg) no-repeat center center/cover;
}

.sec04-link .item:nth-child(2) {
  background: url(../images/sec04_img03@2x.jpg) no-repeat center center/cover;
}

.sec04-link .item:nth-child(3) {
  background: url(../images/sec04_img04@2x.jpg) no-repeat center center/cover;
}

.sec04-link .label {
  background: linear-gradient(138deg, #BE862D 10%, #fff 50%, #BE862D 90%);
  border: 1px solid #fff;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  box-shadow: 0 0 10px #DDDDDD;
  color: var(--color-main);
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  display: grid;
  place-content: center;
  padding-bottom: 20px;
  width: 150px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: -78px;
  right: -39px;
  z-index: 1;
}

.sec04-link .l-img {
  margin-bottom: 25px;
}

.sec04-link .l-ttl {
  color: #fff;
  font-size: 3.5rem;
  text-align: center;
}

.sec04-deco {
  color: #C18F40;
  font-family: var(--font-en-deco);
  font-size: clamp(9rem, 7.2vw, 13rem);
  letter-spacing: 0.05em;
  line-height: 0.7;
  writing-mode: vertical-rl;
  position: absolute;
  bottom: 10%;
  left: -5px;
}

@media (any-hover: hover) {
  .sec04-link .item>a:hover {
    backdrop-filter: brightness(50%);
  }
}

@media (max-width: 1200px) {

  .sec04-link>a {
    padding: 25px 10px;
  }

  .sec04-link .label {
    font-size: 1.8rem;
    width: 165px;
  }

  .sec04-link .l-img img {
    max-width: 100px;
  }

  .sec04-link .l-ttl {
    font-size: 2.2rem;
  }

}

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

  .sec04::after {
    width: 80%;
    bottom: 15px;
  }

  .l-sec04 {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

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

  .sec04-ttl {
    margin-bottom: 30px;
  }

  .sec04-ttl .jp {
    font-size: 3.0rem;
    margin-bottom: 10px;
  }

  .sec04-ttl [lang="en"] {
    font-size: 3rem;
  }

  .l-sec04 .sub-ttl {
    font-size: 2.2rem;
  }

  .sec04-link {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 auto;
    width: 80%;
  }

  .sec04-link .item>a {
    aspect-ratio: 6/7;
  }

  .sec04-link .label {
    top: -10px;
    left: auto;
    right: -10%;
    font-size: 1.5rem;
    width: 120px;
  }

  .sec04-deco {
    font-size: 6rem;
    writing-mode: inherit;
    bottom: 0;
    left: auto;
    right: 0;
  }
}

.sec05 {
  padding: 162px 0 300px;
  position: relative;
}

.sec05::before {
  content: "";
  background: url(../images/sec05_bg.jpg) no-repeat center center/cover;
  width: 100%;
  height: calc(100% - 340px);
  position: absolute;
  top: 255px;
  left: 0;
  z-index: -1;
}

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

.sec05-link {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 40px;
}

.sec05-link a {
  background-color: var(--color-bg-beige);
  display: block;
  padding: 47px 20px 35px;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.26);
}

.sec05-link a::after {
  content: "";
  background-color: #fff;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 22px;
  height: 22px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

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

.sec05-link .l-ttl {
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-align: center;
}

.sec05-link .l-ttl .small {
  font-size: 1.5rem;
}

.sec05-link .list-check li {
  font-size: 1.5rem;
  padding-left: 22px;
}

.sec05-link .list-check li::before {
  top: 3px;
  transition: background-color 0.3s;
}

.sec05-img01 {
  max-width: 40%;
  aspect-ratio: 656/705;
  position: absolute;
  top: 385px;
  left: 0;
  z-index: -1;
}

.sec05-img02 {
  max-width: 40%;
  aspect-ratio: 656/727;
  position: absolute;
  bottom: 100px;
  right: 0;
  z-index: -1;
}

@media (max-width: 1400px) {
  .sec05-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 15% 0;
  }

  .sec05-img01,
  .sec05-img02 {
    position: static;
    max-width: 100%;
  }

  .sec05-link {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (any-hover: hover) {
  .sec05-link a:hover {
    background-color: var(--color-sub);
    color: #fff;
  }

  .sec05-link a:hover .list-check li::before {
    background-color: #fff;
  }
}

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

  .sec05::before {
    height: calc(100% - 165px);
    top: 115px;
  }

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

  .sec05-link {
    gap: 15px;
  }

  .sec05-link a {
    padding: 30px 20px;
  }

  .sec05-link .l-img img {
    width: 100px;
  }

  .sec05-link .l-ttl {
    font-size: 1.8rem;
  }

  .sec05-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 5% 0;
  }

  .sec05-img01,
  .sec05-img02 {
    position: static;
    max-width: 100%;
  }

  .sec05-link .list-check li {
    font-size: 1.3rem;
  }
}

.sec06 {
  background: linear-gradient(180deg, #ACB7BA 0%, #818C90 100%);
  padding: 160px 0 246px;
  position: relative;
  z-index: 0;
}

.sec06::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  width: min(45%, 505px);
  height: auto;
  aspect-ratio: 505/402;
  position: absolute;
  top: 120px;
  left: 0;
  z-index: -1;
}

.sec06::after {
  content: "";
  background: url(../images/sec06_deco01.png) no-repeat center center/cover;
  width: min(45%, 575px);
  height: auto;
  aspect-ratio: 575/402;
  position: absolute;
  bottom: 60px;
  right: 0;
  z-index: -1;
}

.sec06-ttl {
  margin-bottom: 70px;
  text-align: center;
}

.sec06-ttl .jp {
  color: #fff;
  font-size: 6rem;
  margin-bottom: 15px;
}

.sec06-ttl [lang="en"] {
  color: #C18F40;
  font-family: var(--font-en-deco);
  font-size: 5rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.sec06 .txt {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}

.l-sec06 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  position: relative;
}

.l-sec06 a {
  display: block;
  position: relative;
}

.l-sec06 a::before {
  content: "";
  background-color: #fff;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 22px;
  height: 22px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}

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

.l-sec06 .l-img::before {
  content: "";
  display: block;
  background: linear-gradient(180deg, transparent 0%, #585858 100%);
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.3s;
}

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

.l-sec06 .l-ttl {
  color: #fff;
  font-size: 2.5rem;
  position: absolute;
  bottom: 10px;
  left: 15px;
  z-index: 1;
}

.l-sec06 .item:nth-child(2n) {
  margin-top: 35px;
}

@media (any-hover: hover) {
  .l-sec06 a:hover .l-img::before {
    opacity: 0.5;
  }
}

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

  .sec06::before {
    width: 40%;
    top: 40px;
  }

  .sec06::after {
    width: 100%;
    bottom: 20px;
  }

  .sec06-ttl .jp {
    font-size: 3.0rem;
    margin-bottom: 10px;
  }

  .sec06-ttl {
    margin-bottom: 30px;
  }

  .sec06-ttl [lang="en"] {
    font-size: 3rem;
  }

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

  .l-sec06 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .l-sec06 .item:nth-child(2n) {
    margin-top: 10px;
  }

  .l-sec06 .l-ttl {
    font-size: 1.8rem;
  }
}

.sec07 {
  background: url(../images/sec07_bg.jpg) no-repeat center center/cover;
  margin: 100px 0 90px;
  padding: 60px 0 75px;
}

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

.sec08 {
  background: url(../images/sec08_bg.jpg) no-repeat center center / cover;
  padding: 66px 0 70px;
  position: relative;
  z-index: 0;
}

.sec08 .deco-txt {
  color: rgba(103, 111, 118, 0.17);
  font-family: var(--font-en);
  font-size: 18rem;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  bottom: -45px;
  z-index: -1;
}

.sec08 .sec08-ttl {
  font-size: 3.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}

.sec08 .l-btn {
  margin-top: 47px;
  text-align: center;
}

.sec08-ttl .jp {
  color: #fff;
  font-size: 6rem;
  margin-bottom: 15px;
}

.sec08-ttl [lang="en"] {
  color: #C18F40;
  font-family: var(--font-en-deco);
  font-size: 5rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

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

  .sec08 .deco-txt {
    font-size: 8rem;
    bottom: -19px;
  }

  .sec08 .sec08-ttl {
    font-size: 2.4rem;
  }

  .sec08-ttl .jp {
    font-size: 3.0rem;
    margin-bottom: 10px;
  }

  .sec08-ttl {
    margin-bottom: 30px;
  }

  .sec08-ttl [lang="en"] {
    font-size: 3rem;
  }
}

.sec09 {
  overflow: hidden;
  padding: 150px 0 100px;
}

.l-sec09 {
  display: flex;
  flex-direction: row;
}

.l-sec09 .l-img {
  text-align: right;
  width: 50%;
  z-index: 1;
}

.l-sec09 .l-img .img {
  margin: 0 0 0 auto;
  position: relative;
  width: fit-content;
}

.l-sec09 .l-img .deco-txt01 {
  color: #C18F40;
  font-family: var(--font-en-deco);
  font-size: 14rem;
  line-height: 1;
  position: absolute;
  bottom: -115px;
  left: -45px;
  rotate: -4deg;
}

.l-sec09 .l-desc {
  background: url(../images/sec09_bg.jpg) no-repeat center center/cover;
  flex: 1;
  margin: 95px 0 0 -181px;
  padding: 120px 0 100px 274px;
  position: relative;
  z-index: 0;
}

.l-sec09 .deco-img01 {
  position: absolute;
  bottom: -44px;
  right: 80px;
}

.l-sec09 .deco-txt02 {
  color: var(--color-sub);
  font-family: var(--font-en);
  font-size: clamp(13rem, 13.4vw, 24.1rem);
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 0.7;
  position: absolute;
  top: -105px;
  right: 0;
}

.l-sec09 .l-inner {
  margin-right: 108px;
  max-width: 507px;
}

.l-sec09 .l-ttl {
  font-size: 3.5rem;
  margin-bottom: 50px;
}

.l-sec09 .l-btn {
  margin-top: 35px;
}

@media (max-width: 1400px) {
  .l-sec09 .l-desc {
    padding: 120px 0 200px 274px;
  }
}

@media (max-width: 1300px) {
  .l-sec09 .l-img .deco-txt01 {
    font-size: 10rem;
    bottom: -80px;
    left: 0;
  }

  .l-sec09 .deco-txt02 {
    top: -60px;
  }
}

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

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

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

  .l-sec09 .l-img .deco-txt01 {
    font-size: 7rem;
    bottom: -40px;
    left: auto;
    right: 0;
  }

  .l-sec09 .l-desc {
    margin: 0;
    padding: 50px 5% 70px;
  }

  .l-sec09 .deco-img01 {
    position: static;
    margin-top: 30px;
    text-align: center;
  }

  .l-sec09 .deco-txt02 {
    display: none;
  }

  .l-sec09 .l-inner {
    margin-right: 0;
    max-width: 100%;
  }

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

.sec10 {
  background: url(../images/sec10_bg.jpg) no-repeat center center/cover;
  padding: 80px 0 120px;
}

.sec10 .t-ttl [lang=en] {
  margin-bottom: 40px;
}

.sec10-btn-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto 30px;
  /* max-width: 436px; */
}

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

.l-sec10 .item {
  background-color: var(--color-bg-beige);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.26);
  padding: 40px 30px;
}

.l-sec10 .l-img {
  margin-bottom: 18px;
}

.l-sec10 .l-logo {
  margin-bottom: 18px;
}

.l-sec10 .l-dl {
  display: grid;
  grid-template-columns: 75px 1fr;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.5rem;
}

.l-sec10 .l-dl dt {
  background-color: #fff;
  text-align: center;
}

.l-sec10 .l-dl a {
  text-decoration: underline;
}

.sec10-bnr-area {
  margin-top: 74px;
}

.l-sec10-02 {
  margin-top: 85px;
}

.l-sec10-02 .l-ttl {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 15px;
  position: relative;
}

.l-sec10-02 .l-ttl::before {
  content: "";
  background-color: #C18F40;
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

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

.sec10-btn-wrap02 a {
  display: inline-block;
  background-color: #A7B7C9;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 23px 20px 39px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s;
}

.sec10-btn-wrap02 a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 50%;
  bottom: 21px;
  transform: translateX(-50%) rotate(45deg);
}

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

  .sec10-btn-wrap02 a:hover {
    background-color: var(--color-main);
  }
}

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

  .sec10-btn-wrap {
    grid-template-columns: 1fr;
  }

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

  .l-sec10 .item {
    padding: 30px 5%;
  }

  .sec10-bnr-area {
    margin-top: 50px;
  }

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

  .l-sec10-02 .l-ttl {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .sec10-btn-wrap02 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sec10-btn-wrap02 a {
    font-size: 1.4rem;
    padding: 15px 10px 25px;
  }

  .sec10-btn-wrap02 a::before {
    bottom: 14px;
  }
}

.top-map.google-map iframe {
  height: 400px;
}

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

/*------------
Post
--------------*/
.top-post-layout01 {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 50px;
  min-height: 170px;
  position: relative;
}

.top-post-layout01 .l-ttl [lang=en] {
  color: #C18F40;
  font-family: var(--font-en-deco);
  font-size: 9rem;
  letter-spacing: 0.05em;
  line-height: 0.7;
  margin-bottom: 8px;
}

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

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

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

.list-top-blog .list-img {
  border: 1px solid #eaeaea;
  margin-bottom: 9px;
  overflow: hidden;
}

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

.list-top-blog time {
  display: block;
  font-family: var(--font-en);
  font-size: 1.5rem;
  color: #fff;
}

.list-top-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: #fff;
}

.list-top-blog .category {
  display: inline-block;
  background-color: var(--color-main);
  color: #fff;
  font-size: 1.1rem;
  padding: 2px 4px 0px;
  margin-right: 5px;
}

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

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

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

.list-top-news {
  border-top: 1px solid #EDEDED;
}

.list-top-news a {
  display: flex;
  border-bottom: 1px solid #EDEDED;
  padding: 18px 0;
}

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

.list-top-news time {
  display: inline-block;
  color: var(--color-sub);
  font-family: var(--font-en);
  font-size: 1.5rem;
  white-space: nowrap;
  margin-right: 23px;
}

.list-top-news .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1.5rem;
}

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

@media (any-hover: hover) {
  .list-top-blog 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 {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    min-height: 0;
  }

  .top-post-layout01 .l-ttl [lang=en] {
    font-size: 6rem;
  }

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

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

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

  .list-top-blog .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;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl-wrap {
  background: url(../images/under/page-ttl_bg_pc.jpg) no-repeat center/cover;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
}

.page-ttl-wrap.feature {
  background: url(https://www.higashihiroshima-chuo-clinic.com/wp-content/uploads/2025/12/page-ttl_bg_feature_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.doctor {
  background: url(https://www.higashihiroshima-chuo-clinic.com/wp-content/uploads/2025/12/page-ttl_bg_feature_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.access {
  background: url(../images/under/page-ttl_bg_access_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.recruit {
  background: url(../images/under/page-ttl_bg_recruit_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.faq {
  background: url(../images/under/page-ttl_bg_faq_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.dock {
  background: url(../images/under/page-ttl_bg_dock_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.internal-medicine {
  background: url(../images/under/page-ttl_bg_internal-medicine_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.gastroenterology {
  background: url(../images/under/page-ttl_bg_gastroenterology_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.lifestyle {
  background: url(../images/under/page-ttl_bg_lifestyle_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.vaccine {
  background: url(../images/under/page-ttl_bg_vaccine_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.housecall {
  background: url(../images/under/page-ttl_bg_housecall_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.blog {
  background: url(../images/under/page-ttl_bg_blog_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.news {
  background: url(../images/under/page-ttl_bg_news_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.policy {
  background: url(../images/under/page-ttl_bg_policy_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.colonoscopy {
  background: url(../images/under/page-ttl_bg_colonoscopy_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.gastroscopy {
  background: url(../images/under/page-ttl_bg_gastroscopy_pc.jpg) no-repeat center/cover;
}

.page-ttl-wrap.h-pylori {
  background: url(../images/under/page-ttl_bg_h-pylori_pc.jpg) no-repeat center/cover;
}

.page-ttl {
  padding-top: 55px;
  position: relative;
  text-align: center;
}

.page-ttl::before {
  content: "";
  background: url(../images/under/page-ttl_logo.png) no-repeat center/contain;
  width: 49px;
  height: 35px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.page-ttl [lang=en] {
  color: var(--color-sub);
  font-family: var(--font-en);
  font-size: 5rem;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 0.7;
  margin-bottom: 25px;
}

.page-ttl .ttl {
  font-size: 3.6rem;
  line-height: 1.2;
}

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

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

.breadcrumb ul li {
  display: inline;
}

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

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

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

@media (max-width: 800px) {
  .page-ttl-wrap {
    background: url(../images/under/page-ttl_bg_sp.jpg) no-repeat center/cover;
    min-height: 92.5vw;
    padding: 0 0 10vw;
    justify-content: flex-end;
    margin-top: 82px;
  }

  .page-ttl-wrap.feature {
    background: url(../images/under/page-ttl_bg_feature_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.doctor {
    background: url(../images/under/page-ttl_bg_doctor_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.access {
    background: url(../images/under/page-ttl_bg_access_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.recruit {
    background: url(../images/under/page-ttl_bg_recruit_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.faq {
    background: url(../images/under/page-ttl_bg_faq_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.dock {
    background: url(../images/under/page-ttl_bg_dock_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.internal-medicine {
    background: url(../images/under/page-ttl_bg_internal-medicine_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.gastroenterology {
    background: url(../images/under/page-ttl_bg_gastroenterology_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.lifestyle {
    background: url(../images/under/page-ttl_bg_lifestyle_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.vaccine {
    background: url(../images/under/page-ttl_bg_vaccine_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.housecall {
    background: url(../images/under/page-ttl_bg_housecall_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.blog {
    background: url(../images/under/page-ttl_bg_blog_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.news {
    background: url(../images/under/page-ttl_bg_news_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.policy {
    background: url(../images/under/page-ttl_bg_policy_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.colonoscopy {
    background: url(../images/under/page-ttl_bg_colonoscopy_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.gastroscopy {
    background: url(../images/under/page-ttl_bg_gastroscopy_sp.jpg) no-repeat center/cover;
  }

  .page-ttl-wrap.h-pylori {
    background: url(../images/under/page-ttl_bg_h-pylori_sp.jpg) no-repeat center/cover;
  }

  .page-ttl {
    padding-top: 40px;
  }

  .page-ttl::before {
    width: 40px;
    height: 29px;
  }

  .page-ttl [lang=en] {
    font-size: 3rem;
    margin-bottom: 10px;
  }

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

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

.u-h2,
.postdata h2 {
  font-size: 3.2rem;
  margin-bottom: 50px;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
}

.u-h2-n {
  font-size: 3.2rem;
  background: url(../images/under/staff_bg.jpg) no-repeat center center/cover;
  margin-bottom: 50px;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
}

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

.u-h2[data-en] {
  padding: 0;
}

.u-h2[data-en]::before {
  content: attr(data-en);
  display: block;
  color: #fff;
  font-family: var(--font-en-deco);
  font-weight: normal;
  font-size: 5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.u-h2[data-en]::after {
  content: none;
}

.u-h3,
.postdata h3 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.u-h3::before,
.postdata h3::before {
  content: "";
  background-color: #C18F40;
  width: 40px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.u-h4,
.postdata h4 {
  color: var(--color-main);
  font-size: 2rem;
  margin-bottom: 15px;
}

.ttl-style01 {
  font-size: 3.2rem;
  margin-bottom: 15px;
  text-align: center;
}

.ttl-style01 .num {
  color: #C18F40;
  font-size: 6.4rem;
}

@media (max-width: 800px) {

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

  .u-h2-n {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .u-h2[data-en]::before {
    font-size: 3rem;
    margin-bottom: 8px;
  }

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

  .u-h4,
  .postdata h4 {
    font-size: 1.8rem;
  }

  .ttl-style01 {
    font-size: 2.5rem;
    margin-bottom: 0;
  }

  .ttl-style01 .num {
    font-size: 5rem;
  }
}

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

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

.tall.bg01+.bg01 {
  margin-top: 0;
  padding: 120px 0 80px;
}

.tall.bg02 {
  background: linear-gradient(-90deg, #DDD2C2 0%, #FAF0E8 100%);
  padding: 80px 0;
  position: relative;
  z-index: 0;
}

.tall.bg02::before {
  content: "";
  background: url(https://www.higashihiroshima-chuo-clinic.com/wp-content/uploads/2025/11/bg02_deco01.svg) no-repeat center center/cover;
  width: 28%;
  height: auto;
  aspect-ratio: 505/402;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -1;
}

.tall.bg02::after {
  content: "";
  background: url(https://www.higashihiroshima-chuo-clinic.com/wp-content/uploads/2025/11/bg02_deco02.svg) no-repeat center center/cover;
  width: 23%;
  height: auto;
  aspect-ratio: 419/181;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.tall:last-child {
  padding: 0 0 80px;
}

.tall.bg01:last-child,
.tall.bg02:last-child {
  padding: 80px 0 160px;
}

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

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

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 100px;
  }

  .tall.bg01 {
    padding: 50px 0;
  }

  .tall.bg01+.bg01 {
    padding: 100px 0 50px;
  }

  .tall.bg02::before {
    width: 75%;
    top: 30px;
  }

  .tall.bg02::after {
    width: 75%;
  }

  .tall:last-child {
    padding: 0 0 50px;
  }

  .tall.bg01:last-child,
  .tall.bg02:last-child {
    padding: 80px 0;
  }

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

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

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

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

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

.list-disc li:before {
  content: "・";
  color: var(--color-main);
  display: block;
  position: absolute;
  left: 0;
}

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

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

.list-check li::before {
  content: "";
  background-color: var(--color-sub);
  mask: 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: 25% 75%;
}

.dl-style01 dt {
  background-color: #325F76;
  color: #fff;
  font-size: 1.7rem;
  padding: 20px;
}

.dl-style01 dt .small {
  font-size: 1.2rem;
}

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

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

.card-style01.col3,
.card-style01.col2 {
  gap: 50px;
  padding: 15px 0 0;
}

.card-style01>li {
  background: var(--color-bg-beige);
  padding: 35px 30px 30px;
  position: relative;
}

.card-style01>li::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--color-main);
  position: absolute;
  top: 50%;
  right: -32px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.card-style01>li:last-child::after {
  display: none;
}

.card-style01 .num {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 0.7;
  position: absolute;
  top: -10px;
  left: 30px;
}

.card-style01 .list-img {
  margin-bottom: 20px;
}

.card-style01 .list-ttl {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 0 0 15px;
}

.card-style02 .item {
  background-color: var(--color-bg-beige);
  padding: 25px;
}

.card-style02 .list-ttl {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.card-style02 .list-ttl.center {
  text-align: center;
}

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

.card-style03 .item:has(.txt) .card-ttl {
  margin-bottom: 15px;
}

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

.card-style03 .card-ttl {
  font-size: 1.8rem;
}

@media (max-width: 800px) {

  .card-style01.col3,
  .card-style01.col2 {
    gap: 70px;
  }

  .card-style01>li {
    padding: 30px 5%;
    width: 100%;
  }

  .card-style01>li::after {
    top: inherit;
    bottom: -50px;
    right: 50%;
    -webkit-transform: translate(50%, 0) rotate(90deg);
    transform: translate(50%, 0) rotate(90deg);
  }

  .card-style01>li:last-child {
    margin: 0;
  }

  .card-style01>li:last-child::after {
    display: none;
  }

  .card-style03 .card-ttl {
    font-size: 1.4rem;
  }
}

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

.table-style01 th {
  background-color: #325F76;
  color: #fff;
}

.table-style01 td {
  background-color: #fff;
}

.table-style01 .bg01 {
  background-color: #446b7f;
}

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

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

.box-style01 {
  background: var(--color-bg-beige);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.26);
  padding: 45px 50px;
  position: relative;
  z-index: 0;
}

.box-style01 .label {
  font-family: var(--font-en-deco);
  font-size: 14rem;
  color: #C18F40;
  line-height: 1;
  rotate: -4deg;
  width: fit-content;
  position: absolute;
  top: -37px;
  left: 30px;
  z-index: -1;
}

.box-style01 .box-ttl {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.box-style01>.l-imgR .l-img,
.box-style01>.l-imgL .l-img {
  width: 28%;
}

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

.box-style01 .l-box {
  background-color: #fff;
  padding: 30px;
}

.box-style01 .l-box>.l-imgR .l-img.small,
.box-style01 .l-box>.l-imgL .l-img.small {
  width: 26%;
}

.box-style01 .l-box .l-ttl {
  color: var(--color-main);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.box-style02-wrap {
  padding-top: 34px;
}

.box-style02 {
  background-color: var(--color-bg-beige);
  padding: 50px;
  position: relative;
}

.box-style02.bg01 {
  background: url(../images/under/box-bg01.jpg) no-repeat center center / cover;
}

.box-style02 .label {
  color: #C18F40;
  font-family: var(--font-en);
  font-size: 7rem;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 0.7;
  position: absolute;
  top: -34px;
  left: 28px;
}

.box-style02 .label.right {
  left: auto;
  right: 28px;
}

.box-style02 .box-ttl {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.box-style02 .box-ttl>span+span {
  margin-top: 15px;
}

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

.box-style02 .box-ttl02>span+span {
  margin-top: 15px;
}

.box-style02 .main-ttl {
  font-size: 2.6rem;
}

.box-style02 .marker {
  background: linear-gradient(transparent 60%, rgba(125, 134, 138, 0.25) 60%);
}

.box-style02 .sub-ttl {
  display: flex;
  align-items: center;
  font-size: 2rem;
}

.box-style02 .sub-ttl::before {
  content: "";
  background: var(--color-sub);
  width: 30px;
  height: 1px;
  margin-right: 15px;
}

.box-style02>.l-imgR .l-img,
.box-style02>.l-imgL .l-img {
  width: 28%;
}

.box-style03 {
  border: 1px solid var(--color-main);
  background-color: #fff;
  padding: 5%;
}

.box-style03.bg01 {
  background-color: var(--color-bg-beige);
  border: none;
}

.box-style03 .box-ttl {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}



.box-style04-wrap {
  padding-top: 37px;
  position: relative;
}

.box-style04 {
  background: #fff;
  border: 1px solid #C18F40;
  padding: 45px 50px;
  position: relative;
  z-index: 0;
}

.box-style04 .label {
  font-family: var(--font-en-deco);
  font-size: 14rem;
  color: #C18F40;
  line-height: 1;
  rotate: -4deg;
  width: fit-content;
  position: absolute;
  top: -37px;
  left: 30px;
  z-index: -1;
}

.box-style04 .box-ttl {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.box-style04>.l-imgR .l-img,
.box-style04>.l-imgL .l-img {
  width: 28%;
}

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

.box-style04 .l-box {
  background-color: #fff;
  padding: 30px;
}

.box-style04 .l-box>.l-imgR .l-img.small,
.box-style04 .l-box>.l-imgL .l-img.small {
  width: 26%;
}

.box-style04 .l-box .l-ttl {
  color: var(--color-main);
  font-size: 1.8rem;
  margin-bottom: 15px;
}



.box-disease {
  background: url(../images/under/bg-disease.jpg) no-repeat center/cover;
  padding: 50px;
}

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

  .box-style01 {
    padding: 30px 5%;
  }

  .box-style01 .label {
    font-size: 6rem;
    top: -20px;
    left: 15px;
  }

  .box-style01 .box-ttl {
    font-size: 2rem;
  }

  .box-style01>.l-imgR .l-img,
  .box-style01>.l-imgL .l-img {
    width: 100%;
  }

  .box-style01 .l-box {
    padding: 20px;
  }

  .box-style01 .l-box>.l-imgR .l-img,
  .box-style01 .l-box>.l-imgL .l-img {
    margin: 0 0 25px;
    width: 100%;
  }

  .box-style02-wrap {
    padding-top: 21px;
  }

  .box-style02 {
    padding: 30px 5%;
  }

  .box-style02 .label {
    font-size: 5rem;
    top: -21px;
    left: 15px;
  }

  .box-style02 .label.right {
    right: 15px;
  }

  .box-style02 .box-ttl {
    font-size: 2rem;
  }

  .box-style02 .box-ttl02>span+span {
    margin-top: 10px;
  }

  .box-style02 .main-ttl {
    font-size: 2.1rem;
  }

  .box-style02 .sub-ttl {
    font-size: 1.7rem;
  }

  .box-style02 .sub-ttl::before {
    width: 20px;
    margin-right: 10px;
  }

  .box-style02>.l-imgR .l-img,
  .box-style02>.l-imgL .l-img {
    width: 100%;
  }

  .box-style03 .box-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }


  .box-style04-wrap {
    padding-top: 20px;
  }

  .box-style04 {
    padding: 30px 5%;
  }

  .box-style04 .label {
    font-size: 6rem;
    top: -20px;
    left: 15px;
  }

  .box-style04 .box-ttl {
    font-size: 2rem;
  }

  .box-style04>.l-imgR .l-img,
  .box-style04>.l-imgL .l-img {
    width: 100%;
  }

  .box-style04 .l-box {
    padding: 20px;
  }

  .box-style04 .l-box>.l-imgR .l-img,
  .box-style04 .l-box>.l-imgL .l-img {
    margin: 0 0 25px;
    width: 100%;
  }


  .box-disease {
    padding: 30px 5%;
  }
}

.list-anchor-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.list-anchor-link a {
  color: #C18F40;
  display: inline-block;
  position: relative;
  padding-left: 14px;
  text-decoration: underline;
}

.list-anchor-link a::before {
  content: "";
  display: inline-block;
  background-color: var(--color-main);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 11px;
}

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

@media (max-width: 800px) {
  .list-anchor-link {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .under-slider01 .splide__pagination {
    bottom: 5px;
  }

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

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

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

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

.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: 40px 50px 10px 52px;
  border-bottom: 1px solid #E6E8EA;
  position: relative;
}

.faq-style .faq-summary .faq-icon {
  border: 1px solid var(--color-main);
  background-color: var(--color-main);
  top: 35px;
  left: 0;
}

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

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

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

.faq-style .faq-inner .faq-icon {
  border: 1px solid var(--color-sub);
  background-color: var(--color-sub);
  color: #fff;
  top: 14px;
  left: 0;
  padding-left: 1px;
}

.faq-style .faq-ttl {
  font-size: 2rem;
  line-height: 1.4;
}

.faq-style .faq-icon {
  border-radius: 50px;
  color: #fff;
  width: 36px;
  height: 36px;
  font-family: var(--font-en);
  font-size: 2.2rem;
  line-height: 32px;
  text-align: center;
  position: absolute;
  transition: 0.3s;
}

.faq-style .faq-open-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 45px;
  right: 0;
  transition: 0.3s;
}

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

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

  .faq-style .faq-summary {
    padding: 20px 30px 10px 40px;
  }

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

  .faq-style .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 1.8rem;
    line-height: 27px;
  }

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

  .faq-style .faq-open-icon {
    right: 0;
    top: 23px;
  }

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

  .faq-style .faq-inner .faq-icon {
    top: 9px;
    padding-left: 2px;
  }
}

.flow-style {
  display: grid;
  gap: 40px;
}

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

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

.flow-style>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: var(--color-main) transparent transparent transparent;
  position: absolute;
  bottom: -1px;
  left: 28px;
}

.flow-style .flow-num {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

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

.flow-style .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}

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

.flow-style .flow-desc {
  flex: 1;
  padding-top: 25px;
}

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

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

  .flow-style>li {
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
  }

  .flow-style>li:not(:last-child)::before {
    top: 55px;
    left: 24px;
  }

  .flow-style>li:not(:last-child)::after {
    left: 20px;
  }

  .flow-style .flow-num {
    font-size: 2.5rem;
  }

  .flow-style .flow-num::before {
    font-size: 1.2rem;
  }

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

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

  .flow-style .flow-ttl {
    margin-bottom: 10px;
  }

  .flow-style .flow-desc {
    padding-top: 5px;
  }
}

/*------------
レイアウト
--------------*/
.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;
  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: 60%;
}

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

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.dl-privacy dt::before {
  content: "";
  background-color: #C18F40;
  width: 40px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

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

.l-style01 {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  z-index: 0;
}

.l-style01 .l-img {
  width: 40%;
  margin: 0 0 0 40px;
}

.l-style01 .l-img .img {
  padding-bottom: 63px;
  position: relative;
}

.l-style01 .l-img .img::before {
  content: "";
  background: linear-gradient(90deg, #DFE5EB 0%, #91A5BC 100%);
  width: 343px;
  height: 196px;
  position: absolute;
  bottom: 0;
  right: -60px;
  z-index: -1;
}

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

.l-style01 .l-ttl {
  font-size: 3.2rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
}

.l-style01 .l-ttl::before {
  content: "";
  background-color: #C18F40;
  width: 40px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.tall:has(.l-style02) {
  background: linear-gradient(180deg, #859094 38.4vw, #B1B9BC 100%);
  overflow: hidden;
  padding: 150px 0 145px;
  position: relative;
  z-index: 0;
}

.tall:has(.l-style02)::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  width: 28%;
  height: auto;
  aspect-ratio: 505/402;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -1;
}

.tall:has(.l-style02)::after {
  content: "";
  background: url(../images/under/parts_deco02.png) no-repeat center center/contain;
  width: 419px;
  height: auto;
  aspect-ratio: 419/181;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.l-style02 {
  color: #fff;
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
}

.l-style02 .l-img {
  width: 40%;
}

.l-style02 .l-img .img {
  position: relative;
  z-index: 0;
}

.l-style02 .l-img .img::before {
  content: "";
  background: linear-gradient(90deg, #DFE5EB 0%, #91A5BC 100%);
  width: 343px;
  height: auto;
  aspect-ratio: 343/196;
  position: absolute;
  bottom: -63px;
  right: -60px;
  z-index: -1;
}

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

.l-style02 .l-ttl {
  font-size: 2.4rem;
  margin-bottom: 40px;
}

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

  .l-style01 .l-img {
    width: 100%;
    margin: 0 0 25px;
  }

  .l-style01 .l-img .img {
    padding-bottom: 20px;
  }

  .l-style01 .l-img .img::before {
    width: 85%;
    height: auto;
    aspect-ratio: 343/196;
    right: -6%;
  }

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

  .tall:has(.l-style02) {
    padding: 60px 0;
  }

  .tall:has(.l-style02)::before {
    width: 75%;
    top: 25px;
  }

  .tall:has(.l-style02)::after {
    width: 80%;
  }

  .l-style02 {
    flex-direction: column;
    gap: 50px;
  }

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

  .l-style02 .l-img .img::before {
    width: 80%;
    bottom: -20px;
    right: -5%;
  }

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

.staff-layout {
  display: flex;
  flex-direction: row-reverse;
}

.staff-layout .l-img {
  width: 410px;
  margin-left: 65px;
}

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

.staff-layout:has(.l-img) .l-desc {
  margin-top: 20px;
}

.staff-layout:has(.l-img) .l-catch {
  max-width: 100%;
}

.staff-layout .name {
  display: flex;
  align-items: baseline;
  gap: 25px;
  border-bottom: 1px solid #E0E0E0;
  font-family: var(--font-heading);
  line-height: 1;
  padding-bottom: 8px;
  margin-bottom: 30px;
}

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

.staff-layout .en {
  font-family: var(--font-en);
  color: var(--color-sub);
  font-size: 2rem;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 0.7;
}

.staff-layout .l-catch {
  background: url(../images/under/staff_bg.jpg) no-repeat center center/cover;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.26);
  font-size: 2rem;
  padding: 10px 20px;
  max-width: 50%;
}

.staff-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.staff-profile .item {
  background-color: var(--color-bg-beige);
  padding: 35px;
}

.staff-profile .item-ttl {
  font-size: 1.8rem;
  color: var(--color-main);
  margin-bottom: 15px;
}

.staff-profile .dl-career {
  display: grid;
  grid-template-columns: 115px 1fr;
  font-size: 1.4rem;
  line-height: 1.7;
}

.staff-profile .dl-career dt,
.staff-profile .dl-career dd {
  padding: 10px 0;
}

.staff-profile .list-disc {
  gap: 20px;
  font-size: 1.4rem;
  padding-top: 10px;
}

@media (max-width: 800px) {
  .staff-layout {
    display: block;
    margin-bottom: 30px;
  }

  .staff-layout .l-img {
    text-align: center;
    margin: 0 0 30px;
    width: 100%;
  }

  .staff-layout .l-desc {
    margin: 0;
  }

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

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

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

  .staff-layout .l-catch {
    font-size: 1.6rem;
    max-width: 100%;
  }

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

  .staff-profile .item {
    padding: 20px 5%;
  }

  .staff-profile .item-ttl {
    margin-bottom: 10px;
  }

  .staff-profile .dl-career {
    grid-template-columns: 100px 1fr;
  }
}

/*------------
Add
--------------*/
.treatment-tab .tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.treatment-tab .tab>button {
  background-color: #fff;
  border-top: 1px solid #91A5BC;
  border-right: 1px solid #91A5BC;
  border-left: 1px solid #91A5BC;
  min-height: 50px;
  padding: 10px 10px 5px;
  text-align: center;
}

.treatment-tab .tab>button.is-active {
  background: linear-gradient(90deg, #DFE5EB 0%, #B8C5D4 100%);
  border: none;
}

.treatment-tab .tab>button:nth-child(2).is-active {
  background: linear-gradient(90deg, #B8C5D4 0%, #91A5BC 100%);
}

.treatment-tab .tab-contents {
  display: none;
  min-height: 0;
}

.treatment-tab .tab-contents.is-show {
  display: block;
  background: url(../images/under/bg-disease.jpg) no-repeat center/cover;
  padding: 50px 50px 40px;
}


.treatment02-tab .tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.treatment02-tab .tab>button {
  background-color: #fff;
  border-top: 1px solid #91A5BC;
  border-right: 1px solid #91A5BC;
  border-left: 1px solid #91A5BC;
  min-height: 50px;
  padding: 10px 10px 5px;
  text-align: center;
}

.treatment02-tab .tab>button.is-active {
  background: linear-gradient(90deg, #DFE5EB 0%, #B8C5D4 100%);
  border: none;
}

.treatment02-tab .tab>button:nth-child(2).is-active {
  background: linear-gradient(90deg, #B8C5D4 0%, #91A5BC 100%);
}

.treatment02-tab .tab-contents {
  display: none;
  min-height: 0;
}

.treatment02-tab .tab-contents.is-show {
  display: block;
  background: url(../images/under/bg-disease.jpg) no-repeat center/cover;
  padding: 50px 50px 40px;
}



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

.modal-btn-list>button {
  border: 1px solid #fff;
  color: #fff;
  min-height: 50px;
  padding: 10px 5px 5px;
  text-align: center;
  transition: background-color 0.3s;
}

.modal-btn-list>button:has(.small) {
  line-height: 1.4;
}

.modal-btn-list .small {
  font-size: 1.1rem;
}

@media (any-hover: hover) {
  .modal-btn-list>button:hover {
    background: #fff;
    color: var(--color-bace);
  }
}

body:has(dialog:modal) {
  touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: clip;
  overscroll-behavior: none;
}

.modal-contents {
  overflow-y: auto;
  overscroll-behavior-y: contain;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.modal-contents[open] {
  animation: slide-up 0.4s ease-out;
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translate(0, 15px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.modal-contents::backdrop {
  background: rgba(0, 0, 0, 0.3);
}

.modal-container {
  width: 924px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-container .modal-ttl {
  color: var(--color-main);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.modal-container .inner {
  height: 100%;
  padding: 28px 30px;
}

.modal-close-top {
  cursor: pointer;
  border: 1px solid var(--color-main);
  position: absolute;
  right: 15px;
  top: 15px;
  width: 22px;
  height: 22px;
  z-index: 10;
  transition: 0.3s;
}

.modal-close-top::before,
.modal-close-top::after {
  background: var(--color-main);
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.modal-close-top::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close-top::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 800px) {
  .treatment-tab .tab {
    gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 10px;
  }

  .treatment-tab .tab>button {
    border-bottom: 1px solid #91A5BC;
  }

  .treatment-tab .tab>button.is-active {
    background: linear-gradient(90deg, #DFE5EB 0%, #91A5BC 100%);
  }

  .treatment-tab .tab>button:nth-child(2).is-active {
    background: linear-gradient(90deg, #DFE5EB 0%, #91A5BC 100%);
  }

  .treatment-tab .tab-contents.is-show {
    padding: 30px 5%;
  }

  .modal-btn-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .modal-btn-list>button {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .modal-container {
    width: 100%;
  }

  .modal-container .inner {
    padding: 20px 5%;
  }
}

.u-accordion {
  border: 1px solid var(--color-main);
}

.u-accordion summary {
  display: block;
  cursor: pointer;
  background: linear-gradient(90deg, #859094 0%, #B1B9BC 100%);
  padding: 20px 70px 20px 30px;
  color: #fff;
  font-size: 2rem;
  position: relative;
  transition: 0.3s;
}

.u-accordion summary::before,
.u-accordion summary::after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 27px;
}

.u-accordion summary::before {
  width: 16px;
  height: 2px;
}

.u-accordion summary::after {
  width: 16px;
  height: 2px;
  rotate: 0deg;
  transition: rotate 0.5s;
}

.u-accordion summary::-webkit-details-marker {
  display: none;
}

.u-accordion.is-open summary::after {
  rotate: 90deg;
}

.u-accordion .accordion-content {
  overflow: hidden;
}

.u-accordion .accordion-inner {
  background-color: #fff;
  padding: 25px 30px;
}

.u-accordion .accordion-content:not([hidden=until-found]):target {
  display: revert;
}

.accordion-style {
  background-color: var(--color-bg-beige);
}

.accordion-style+.accordion-style {
  margin-top: 15px;
}

.accordion-style summary {
  display: block;
  cursor: pointer;
  padding: 20px 70px 15px 30px;
  font-size: 2rem;
  font-weight: var(--medium);
  position: relative;
  transition: 0.3s;
}

.accordion-style summary::before,
.accordion-style summary::after {
  content: "";
  display: block;
  background: #000000;
  position: absolute;
  top: 50%;
  right: 20px;
}

.accordion-style summary::before {
  width: 16px;
  height: 1px;
}

.accordion-style summary::after {
  width: 16px;
  height: 1px;
  rotate: 90deg;
  transition: rotate 0.5s;
}

.accordion-style.is-open summary::after {
  rotate: 0deg;
}

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

.accordion-style:not(.is-open) summary:is(:hover, :focus) {
  opacity: 0.5;
}

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

.accordion-style .accordion-content:not([hidden=until-found]):target {
  display: revert;
}

.accordion-style .accordion-inner {
  padding: 0 30px 30px;
}


@media (scripting: none) {

  .u-accordion .accordion-contentl:target,
  .accordion-style .accordion-contentl:target {
    display: revert;
  }
}

@media (max-width: 800px) {
  .u-accordion summary {
    font-size: 1.8rem;
    padding: 12px 50px 10px 15px;
  }

  .u-accordion .accordion-inner {
    padding: 15px;
  }

  .accordion-style summary {
    padding: 15px 50px 15px 15px;
    font-size: 1.8rem;
  }

  .accordion-style .accordion-inner {
    padding: 0 15px 15px;
  }

}

.tall.style01 {
  overflow: hidden;
  padding: 116px 0 150px;
  position: relative;
  z-index: 0;
}

.tall.style01::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -2;
}

.tall.style01.bg-img03::after {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1800 / 692;
  position: absolute;
  top: 0;
  z-index: -2;
}

.tall.style01.bg-colonoscopy::before {
  background:
    url(https://www.higashihiroshima-chuo-clinic.com/wp-content/uploads/2025/12/colonoscopy_bg02.jpg) no-repeat top center/contain,
    url(../images/under/colonoscopy_bg03.png) no-repeat bottom center/contain;
}

.tall.style01.bg-gastroscopy::before {
  background:
    url(../images/under/gastroscopy_bg01.png) no-repeat top center/contain,
    url(../images/under/gastroscopy_bg03.png) no-repeat bottom center/contain;
}

.tall.style01.bg-img03::before {
  background: url(../images/under/parts_bg03.jpg) no-repeat center / cover;
  height: auto;
  aspect-ratio: 1800 / 692;
}

.tall.style01.bg-gray {
  background: linear-gradient(180deg, #859094 38.4vw, #B1B9BC 100%);
}

.tall.style01.bg-gray.bg-colonoscopy {
  background: linear-gradient(180deg, #fff 27vw, #859094 38vw, #859094 38.4vw, #B1B9BC 100%);
}

.tall.style01.bg-gray::after {
  background: url(../images/under/parts_bg_gray.png) no-repeat top center/contain;
}

.tall.style01.bg-blue {
  background: linear-gradient(180deg, #91A5BC 38.4vw, #B4BDC9 100%);
}

.tall.style01.bg-blue::after {
  background: url(../images/under/parts_bg_blue.png) no-repeat top center/contain;
}

.tall.style01 .u-h2 {
  color: #fff;
}

.tall.style01 .u-h2::before {
  background-color: #fff;
}

.tall.style01 .u-h3 {
  color: #fff;
}

.tall.style01 .deco {
  position: relative;
}

.tall.style01 .deco::before {
  content: "";
  background: url(../images/under/parts_deco.svg) no-repeat top center/contain;
  width: 196px;
  height: 186px;
  position: absolute;
  top: -18px;
  left: -107px;
  z-index: -1;
}

.tall.style01 .deco-img-colonoscopy+.deco-img-colonoscopy,
.tall.style01 .deco-img-gastroscopy+.deco-img-gastroscopy {
  position: relative;
  z-index: -1;
  padding: 38.3vw 0 0;
}

.tall.style01 .deco-img-colonoscopy+.deco-img-colonoscopy::before,
.tall.style01 .deco-img-gastroscopy+.deco-img-gastroscopy::before {
  top: calc(38.3vw - 18px);
}

.tall.style01 .deco-img-colonoscopy+.deco-img-colonoscopy::after,
.tall.style01 .deco-img-gastroscopy+.deco-img-gastroscopy::after {
  content: "";
  width: 100vw;
  height: auto;
  aspect-ratio: 1800 / 690;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}

.tall.style01 .deco-img-colonoscopy+.deco-img-colonoscopy::after {
  background: url(../images/under/colonoscopy_bg02.png) no-repeat center center / contain;
  top: 0;
}

.tall.style01 .deco-img-gastroscopy+.deco-img-gastroscopy::after {
  background: url(../images/under/gastroscopy_bg02.png) no-repeat center center / contain;
  top: 0;
}

.tall.style01 .num {
  color: #fff;
  font-family: var(--font-en);
  font-size: 10rem;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 0.7;
  margin-bottom: 25px;
}

.tall.style01 .l-sub-ttl {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.tall.style01 .l-imgR .l-img,
.tall.style01 .l-imgL .l-img {
  width: 33%;
}

.tall.style01 p {
  color: #fff;
}

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

  .tall.style01.bg-colonoscopy,
  .tall.style01.bg-gastroscopy {
    padding: 116px 0 100px;
  }

  .tall.style01 .num {
    font-size: 7rem;
    margin-bottom: 10px;
  }

  .tall.style01 .l-sub-ttl {
    font-size: 2rem;
  }

  .tall.style01 .l-imgR .l-img,
  .tall.style01 .l-imgL .l-img {
    width: 100%;
  }

}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background: url(../images/sec10_bg.jpg) no-repeat center center/cover;
  padding: 70px 0 0;
  margin-top: auto;
  position: relative;
}

.f-layout {
  font-size: 1.4rem;
  margin-bottom: 65px;
}

.f-layout .container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

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

.site-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.f-links {
  display: grid;
  gap: 25px;
  margin-bottom: auto;
}

.f-links a {
  transition: color 0.3s;
}

.f-links a[aria-current="page"] {
  color: #C18F40;
}

.f-links .bb {
  border-bottom: 1px solid #808080;
}

.f-links .sub-menu {
  display: grid;
  gap: 10px;
  margin: 10px 0 0 0;
}

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

.f-links .sub-menu>li::before {
  content: "";
  background-color: var(--color-main);
  width: 6px;
  height: 1px;
  position: absolute;
  top: 12px;
  left: 0;
}

.copyright {
  background-color: var(--color-main);
  color: #fff;
  text-align: center;
  padding: 1px 10px;
}

.pagetop {
  position: absolute;
  top: 23px;
  right: 20px;
  z-index: 5;
}

.pagetop a {
  display: inline-block;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 0.7;
  text-align: center;
  writing-mode: vertical-rl;
  padding: 48px 0 0;
  position: relative;
  transition: transform 0.5s;
  z-index: 0;
}

.pagetop a::before {
  content: "";
  background-color: var(--color-main);
  width: 1px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (any-hover: hover) {

  .f-links a:hover {
    color: #C18F40;
  }

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

@media (max-width: 800px) {
  .f-layout .container {
    flex-direction: column;
    gap: 50px;
  }

  .site-map {
    gap: 25px;
  }

  .pagetop {
    top: auto;
    bottom: 90px;
  }

  .pagetop a {
    font-size: 1.8rem;
  }
}

.fixed-menu {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 999;
  background-color: #fff;
  margin-top: 50px;
}

.fixed-menu a {
  background: linear-gradient(to bottom, #2a5064 0%, #50788e 100%);
  cursor: pointer;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  padding: 9px 0 0;
  text-align: center;
  transition: opacity 0.3s;
  width: 108px;
  height: 99px;
}

.fixed-menu a img {
  margin: 0 auto 5px;
}

.fixed-menu a:nth-child(2) {
  background: linear-gradient(to bottom, #50788e 0%, #6a91a7 100%);
  font-size: 1.2rem;
}

.fixed-menu a:nth-child(3) {
  background: linear-gradient(to bottom, #6a91a7 0%, #85a6b8 100%);
  font-size: 1.1rem;
}

.fixed-menu a:nth-child(3) img {
  margin: 0 auto 10px;
}

.fixed-menu a:nth-child(4) {
  background: linear-gradient(to bottom, #85a6b8 0%, #a1bbc9 100%);
  font-size: 1rem;
}

.fixed-menu a:nth-child(5) {
  background: linear-gradient(to bottom, #a1bbc9 0%, #b1c7d3 100%);
  font-size: 1.4rem;
}


@media (any-hover: hover) {
  .fixed-menu a:hover {
    opacity: 0.7;
  }

}

@media (max-width: 1400px) {
  .fixed-menu a {
    height: 88px;
  }
}

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

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

.sp-navi {
  display: none;
}

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

  /*-------------
  下部固定
  -------------*/
  :root {
    --navi-background: linear-gradient(180deg, #325f76 0%, #8e9ea7 100%);
    --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-size: 0.9rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item:last-child {
    border-right: none;
  }

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

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

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

  .sp-navi-btns .item .img img {
    margin-bottom: 5px;
  }

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

  .navi-menu-btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    appearance: none;
    background-color: var(--color-main);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    transition: 0.4s;
    z-index: 9999;
  }

  .navi-menu-btn .hamburger-line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 20px;
    height: 1px;
    background: #fff;
    transition: 0.3s;
  }

  .navi-menu-btn .hamburger-line::before,
  .navi-menu-btn .hamburger-line::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.3s;
  }

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

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

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

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

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

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

  .navi-menu-btn .u-visually-hidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
  }

  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: var(--color-bg-dark);
    padding: 80px 30px 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    transform: translateX(60px);
    transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 0;
    z-index: 1000;
  }

  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
  }

  .sp-navi-list {
    margin: 0 0 50px;
  }

  .sp-navi-list>li {
    position: relative;
    border-bottom: 1px solid rgba(125, 134, 138, 0.2);
  }

  .sp-navi-list>li>a {
    display: block;
    background: url(../images/share/sp_navi_arrow.svg) no-repeat center right 15px/13px auto;
    padding: 10px 0;
  }

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

  .sp-navi-list .sp-dropdown::after {
    content: "";
    background-color: rgba(125, 134, 138, 0.2);
    position: absolute;
    top: 15px;
    right: 40px;
    width: 1px;
    height: 17px;
  }

  .sp-navi-list .sp-dropdown-btn .ttl {
    display: block;
    padding: 10px 0;
  }

  .sp-navi-list .sp-dropdown-plus {
    background: url(../images/share/sp_navi_plus.svg) no-repeat center/11px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 47px;
    transition: 0.3s;
  }

  .sp-navi-list .is-on .sp-dropdown-plus {
    transform: rotate(45deg);
    transform-origin: center;
  }

  .sp-navi-list .sub-menu {
    border-top: 1px solid rgba(125, 134, 138, 0.2);
    display: none;
  }

  .sp-navi-list .sub-menu li+li {
    border-top: 1px solid rgba(125, 134, 138, 0.2);
  }

  .sp-navi-list .sub-menu a {
    display: block;
    background: url(../images/share/sp_navi_arrow.svg) no-repeat center right 15px/13px auto;
    padding: 5px 0;
    font-size: 1.4rem;
  }
}

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

.list-post-type01 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 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 a:focus-visible {
  border-color: var(--color-main);
}

.list-post-type01 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;
  font-family: var(--font-en);
  font-size: 1.8rem;
}

.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 .category {
  display: inline-block;
  background-color: var(--color-main);
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 5px;
}

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

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

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

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

.l-post-single .l-ttl {
  border-bottom: 3px solid var(--color-border);
  font-size: 2.2rem;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

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

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

.l-post-single .post-data .category {
  display: inline-block;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
  padding: 0 5px;
  margin-right: 10px;
}

.l-post-single .post-data .category:focus-visible {
  color: var(--color-main);
  background-color: #fff;
}

@media (any-hover: hover) {
  .l-post-single .post-data .category:hover {
    color: var(--color-main);
    background-color: #fff;
  }
}

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

.postdata a {
  text-decoration: underline;
}

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

.postdata strong {
  background: linear-gradient(transparent 50%, rgba(193, 143, 64, 0.3) 50%);
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  position: relative;
  padding-left: 15px;
}

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

.postdata ol {
  counter-reset: number;
}

.postdata ol li {
  padding-left: 30px;
  position: relative;
}

.postdata ol 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: 2px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding-left: 2px;
  width: 20px;
  height: 20px;
}

.postdata ol 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: inherit;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  min-height: 50px;
  min-width: 210px;
  padding: 12px 30px 9px;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}

.postdata .wp-block-button__link::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}

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

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

  .postdata .wp-block-button__link:hover::before {
    border-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-beige);
  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: 12px;
  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 a {
    grid-template-columns: 120px 1fr;
    padding: 20px 25px 20px 0;
  }

  .list-post-type01 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;
  }

  .postdata .wp-block-button__link {
    width: 100%;
  }
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 80px;
  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 var(--color-border);
  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 #333;
  position: absolute;
  top: 9px;
  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;
}

.gastroenterology {
  font-size: 2.5rem
}

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

.red {
  color: #F44336;
}

.white {
  color: #fff;
}

.green {
  color: #24AA39;
}

.blown {
  color: #C18F40;
}

.orange {
  color: #a6711d;
}

.gold {
  color: #CEA93A;
}

.marker {
  background: linear-gradient(transparent 50%, rgba(193, 143, 64, 0.3) 50%);
}

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

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

  .gastroenterology {
  font-size: 2rem
}
}

/*ボタン*/
.btn-more {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  min-height: 50px;
  min-width: 210px;
  padding: 10px 15px 9px 25px;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}

.btn-more::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}

.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: 50%;
  transform: translateY(-50%);
  right: 9px;
  transition: background-color 0.3s;
}

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

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

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

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

.btn-more02 {
  background-color: #fff;
  border: 2px solid #C18F40;
  color: #C18F40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  min-height: 50px;
  min-width: 210px;
  padding: 10px 15px 9px 25px;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}

.btn-more02::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #C18F40;
  border-right: 1px solid #C18F40;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}

.btn-more02[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: 50%;
  transform: translateY(-50%);
  right: 9px;
  transition: background-color 0.3s;
}


.btn-more03 {
  border: 1px solid #fff;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  min-height: 50px;
  min-width: 200px;
  padding: 10px 15px 9px 25px;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}

.btn-more03::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #C18F40;
  border-right: 1px solid #C18F40;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}

.btn-more03[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: 50%;
  transform: translateY(-50%);
  right: 9px;
  transition: background-color 0.3s;
}


.btn-more04 {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  min-height: 50px;
  min-width: 100%;
  padding: 10px 15px 9px 25px;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}

.btn-more04::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}

.btn-more04[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: 50%;
  transform: translateY(-50%);
  right: 9px;
  transition: background-color 0.3s;
}


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

  .btn-more:hover::before {
    border-color: var(--color-main);
  }

  .btn-more:hover[target=_blank]::after {
    background-color: var(--color-main);
  }

  .btn-more02:hover {
    background-color: #C18F40;
    color: #fff;
  }

  .btn-more02:hover::before {
    border-color: #fff;
  }

  .btn-more02:hover[target=_blank]::after {
    background-color: var(--color-main);
  }

  .btn-more03:hover {
    background-color: #fff;
    color: #000000;
  }

  .btn-more03:hover::before {
    border-color: #fff;
  }

  .btn-more03:hover[target=_blank]::after {
    background-color: var(--color-main);
  }

  .btn-more04:hover {
    background-color: #fff;
    color: var(--color-main);
  }

  .btn-more04:hover::before {
    border-color: var(--color-main);
  }

  .btn-more04:hover[target=_blank]::after {
    background-color: var(--color-main);
  }
}

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

  .btn-more02 {
    width: 100%;
  }

  .btn-more03 {
    min-width: 150px;
  }

  .btn-more04 {
    width: 100%;
  }

  .btn-wrap02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

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

.time-table-body-wrap {
  position: relative;
  z-index: 1;
}

.time-table-body-wrap:before {
  content: "";
  background: linear-gradient(to bottom, #526F7A, #7E99A3);
  width: 130px;
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
}

.time-table-head {
  background-color: #526F7A;
  color: #fff;
}

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

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

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

.time-table-body .item:first-child {
  background: none;
  color: #fff;
  letter-spacing: 0;
}

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

.time-table-txt {
  font-size: 1.5rem;
}

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

.time-table.large .time-table-body-wrap:before {
  width: 220px;
}

@media (max-width: 800px) {
  .time-table-head {
    font-size: 1.2rem;
  }

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

  .time-table-body-wrap:before {
    width: 90px;
  }

  .time-table.large .time-table-body-wrap:before {
    width: 90px;
  }

  .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(6, 1fr) 50px !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 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-main);
}

.tel img {
  margin-top: -3px;
}

/*------------
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;
  margin: 0 2px;
  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 {
  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;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  width: 64px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 2rem;
  height: 2rem;
  border: solid #333;
  border-width: 3px 3px 0 0;
}

.splide__arrow--prev::after {
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  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: 1em;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: var(--color-bg-beige);
  border: 0;
  border-radius: 50%;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
}

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

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

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

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

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

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

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

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

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

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

.splide__toggle svg {
  fill: var(--color-main);
  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;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered>.swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 8px;
  top: auto;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 50%;
  background: #ddd;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-main);
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}

/*-----------------------------------------------------------
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;
  }
}

.sec04-img01 img {
  transition: opacity 3.6s, transform 3s;
  opacity: 0;
}

.sec04-img01 img:nth-child(1) {
  transform: translateY(60px);
}

.sec04-img01 img:nth-child(3) {
  transform: translateY(-60px);
}

.sec04-img01.is-show img {
  opacity: 1;
  transform: translateY(0) !important;
}

/*# sourceMappingURL=style.css.map */
