@charset "UTF-8";
@media screen and (min-width: 1024px) {
  [id] {
    scroll-margin-top: 120px;
  }
}

@font-face {
  font-family: "Noto Sans JP Custom";
  src: url("../../assets/fonts/NotoSansCJKjp.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

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

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  font-size: 17px;
  color: #414141;
  opacity: 1;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: clamp(16px, 1.5vw, 17px);
  }
}

p {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
p + p {
  margin-top: 1em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  display: inline-block;
  color: inherit;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
  transition: all 0.3s ease-in-out;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ul li::marker,
ol li::marker,
dl li::marker {
  display: none;
}
ul + p,
ol + p,
dl + p {
  margin-top: 1em;
}

div + p {
  margin-top: 1em;
}

button {
  background: none;
  border: none;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    /*  pointer-events: none;
    cursor: default; */
    color: inherit;
    text-decoration: none;
  }
}
/**
 * Swiper 12.1.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 24, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.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);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .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-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  &.swiper-pagination-disabled, .swiper-pagination-disabled > & {
    display: none !important;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active, .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  button& {
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: transform 0.2s, top 0.2s;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: transform 0.2s, left 0.2s;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > &, .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%;
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, .swiper-vertical > & {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
  }
}

.swiper-pagination-lock {
  display: none;
}

.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  overflow: visible;
}
@media print, screen and (min-width: 1024px) {
  .l-header {
    isolation: isolate;
  }
  .l-header .p-global-overlay,
  .l-header .p-global-search {
    display: none;
  }
}
.l-header__serach, .l-header__phone {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-header:has(.is-active) .l-header__serach {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.l-header__serach.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  position: relative;
  overflow: visible;
}
@media print, screen and (min-width: 1024px) {
  .l-header__inner {
    padding: 0 3.57vw 0 3.09vw;
    height: 100px;
    position: static;
    z-index: auto;
  }
}
@media print, screen and (min-width: 1680px) {
  .l-header__inner {
    padding: 0 60px 0 52px;
  }
}
@media print, screen and (min-width: 1024px) {
  .l-header__inner .u-display-pc {
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: visible;
    flex-shrink: 0;
  }
}
.l-header__inner .u-display-sp {
  margin-right: 57px;
  display: flex;
  align-items: center;
  column-gap: 14px;
}
@media print, screen and (min-width: 1024px) {
  .l-header__inner .u-display-sp {
    display: none;
  }
}

.l-header__logo {
  width: 132px;
  margin: 1px 0 1px 16px;
}
@media print, screen and (min-width: 1024px) {
  .l-header__logo {
    margin: 0;
    width: 15vw;
    max-width: 253px;
  }
}
.l-header__logo a:hover {
  opacity: 0.6;
}

.l-header__serach {
  margin-top: 10px;
  transition: all 0.4s ease-in-out;
}
@media print, screen and (min-width: 1024px) {
  .l-header__serach {
    margin-top: 0;
  }
}
.l-header__serach.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}

.l-header__phone {
  color: #f092ae;
  margin-top: 8px;
}

.l-header__nav {
  padding: 0 30px 40px;
}
@media print, screen and (min-width: 1024px) {
  .l-header__nav {
    padding: 0;
    overflow: visible;
    flex-shrink: 1;
    min-width: 0;
  }
}

.l-footer {
  background: #fff;
  position: relative;
}

.l-footer__inner {
  padding: 30px 30px 26px;
}
@media print, screen and (min-width: 1024px) {
  .l-footer__inner {
    padding: 60px 5.95vw 25px;
    display: flex;
    align-items: flex-start;
  }
}
@media print, screen and (min-width: 1680px) {
  .l-footer__inner {
    padding: 60px 100px 25px;
  }
}

.p-footer-nav {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-nav {
    display: block;
  }
}

.l-cta {
  background-image: linear-gradient(160deg, #f6fde7, #fff7f7);
  padding: 40px 30px 30px;
}
@media print, screen and (min-width: 1024px) {
  .l-cta {
    padding: 60px 50px 58px;
  }
}

.l-section {
  margin-top: 60px;
}
@media print, screen and (min-width: 600px) {
  .l-section {
    margin-top: 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .l-section {
    margin-top: 120px;
  }
}
.l-section.is-top {
  margin-top: 36px;
}
@media print, screen and (min-width: 600px) {
  .l-section.is-top {
    margin-top: 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .l-section.is-top {
    margin-top: 84px;
  }
}
.l-section.is-last {
  padding-bottom: 60px;
}
@media print, screen and (min-width: 600px) {
  .l-section.is-last {
    padding-bottom: 90px;
  }
}
@media print, screen and (min-width: 1024px) {
  .l-section.is-last {
    padding-bottom: 130px;
  }
}

.l-container {
  overflow: hidden;
}
@media print, screen and (min-width: 1024px) {
  .l-container {
    position: relative;
  }
}

.l-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media print, screen and (min-width: 600px) {
  .l-inner {
    padding: 0 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .l-inner {
    padding: 0 50px;
  }
}
.l-inner.l-inner--narrow {
  max-width: 1100px;
}
.l-inner.l-inner--bleed {
  max-width: 1385px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 60px;
}
@media print, screen and (min-width: 600px) {
  .l-inner.l-inner--bleed {
    gap: 90px;
  }
}
@media print, screen and (min-width: 1024px) {
  .l-inner.l-inner--bleed {
    gap: 120px;
  }
}
.l-inner.l-inner--bleed-reverse {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}
@media print, screen and (min-width: 1024px) {
  .l-inner.l-inner--bleed-reverse {
    padding: 0 50px;
  }
}

.p-global-overlay {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 60px);
  z-index: 998;
  background: rgba(242, 242, 242, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.p-global-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* body.is-open {
  .p-global-overlay {
    opacity: 1;
    visibility: visible;
    height: calc(100svh - 60%);
  }
}
 */
.p-search-form {
  display: flex;
  padding: 5px;
  width: 100%;
  justify-content: space-between;
}
@media print, screen and (min-width: 1024px) {
  .p-search-form {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0;
  }
  .p-search-form__input {
    width: 0;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    transition: width 0.3s ease, padding 0.3s ease;
    opacity: 0;
  }
  .p-search-form__submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
  }
}
.p-search-form label {
  width: calc(100% - 35px);
}
.p-search-form .p-search-form__input {
  width: 100%;
  padding: 0;
  border: none;
  padding: 0 10px;
  height: 100%;
  border-radius: 100vw;
}
@media print, screen and (min-width: 1024px) {
  .p-search-form .p-search-form__input {
    width: 0;
    border-bottom: 1px solid #f092ae;
    border-radius: 0;
    padding: 0 0 2px 0;
    margin: 0;
    height: 100%;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-search-form:hover .p-search-form__input {
    width: 176px;
    opacity: 1;
  }
}

.p-search-form__submit {
  border: none;
  background: none;
  width: 30px;
  padding: 0;
}

.p-global-toggle {
  position: absolute;
  top: 17px;
  right: 10px;
  width: 28px;
  height: 35px;
}
@media print, screen and (min-width: 1024px) {
  .p-global-toggle {
    display: none;
  }
}

.p-global-toggle__line {
  display: block;
  background: #f092ae;
  width: 29px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all ease-in-out 0.3s;
}
.p-global-toggle__line:nth-of-type(2) {
  top: 10px;
}

.p-global-toggle__text {
  font-size: 0.7rem;
  color: #f092ae;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: absolute;
  top: 19px;
  right: 0.15em;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.p-global-toggle__text::before {
  content: "メニュー";
}

.p-global-toggle.is-active .p-global-toggle__line {
  transform: rotate(30deg);
  transition: all ease-in-out 0.3s;
  top: 7px;
}
.p-global-toggle.is-active .p-global-toggle__line:nth-of-type(2) {
  transform: rotate(-30deg);
}

body.is-open .p-global-toggle__line {
  transform: rotate(30deg);
  transition: all ease-in-out 0.3s;
  top: 7px;
}
body.is-open .p-global-toggle__line:nth-of-type(2) {
  transform: rotate(-30deg);
}

.p-global-search {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 998;
  transition: all 0.4s ease-in-out;
  transform: translateY(-10px);
  padding: 20px;
}
.p-global-search.is-open {
  display: block;
  top: 60px;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  height: auto;
  background: rgba(242, 242, 242, 0.95);
  transform: translateY(0);
}

.p-footer-copy {
  background-image: linear-gradient(120deg, #ecfdc8, #fddbdb);
  padding: 10px 10px 57px;
}
@media print, screen and (min-width: 600px) {
  .p-footer-copy {
    padding: 12px 10px 7px;
  }
}

.p-footer-copy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
  color: #414141;
  font-size: 13px;
  line-height: 1;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-copy__text {
    font-size: 15px;
  }
}

.p-full-bleed-swiper {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  aspect-ratio: 125/121;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  overflow: visible !important;
}
@media (min-width: 768px) {
  .p-full-bleed-swiper {
    /* PC版：魔法を解除して、比率を 1620/730 に書き換える */
    margin-inline: 0;
    max-width: none;
    aspect-ratio: 1620/730;
    display: flex;
    justify-content: flex-end;
  }
}

.p-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  overflow: visible !important;
}

.p-top-service {
  margin: 60px 0;
}

@media print, screen and (min-width: 1024px) {
  .p-top-service__list {
    display: flex;
  }
}

.p-top-service__item {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 9px;
  width: 100%;
  height: 100%;
  aspect-ratio: 25/8;
}
@media print, screen and (min-width: 1024px) {
  .p-top-service__item {
    width: 33.3333333333%;
    aspect-ratio: 560/293;
  }
}
.p-top-service__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.p-top-service__item::before {
  content: "";
  background-image: linear-gradient(90deg, #ecfdc8, #fddbdb);
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  z-index: 2;
}
.p-top-service__item:hover {
  transition: all 0.5s ease;
}
.p-top-service__item:hover img {
  transform: scale(1.1);
}
.p-top-service__item:hover::before {
  opacity: 0;
  transition: all 0.5s ease;
}
.p-top-service__item:last-of-type .p-top-service__btn {
  column-gap: 40px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-service__item:last-of-type .p-top-service__btn {
    column-gap: 18px;
  }
}
.p-top-service__item:last-of-type .p-top-service__text {
  padding-left: 2em;
}
@media print, screen and (min-width: 1024px) {
  .p-top-service__item:last-of-type .p-top-service__text {
    padding-left: 1em;
  }
}

.p-top-service__img-check {
  object-position: top left;
}

.p-top-service__img-vaccination {
  object-position: center;
}

.p-top-service__img-aga {
  object-position: 0 35%;
}

.p-top-service__btn {
  position: absolute;
  z-index: 3;
  width: 100%;
  bottom: 0;
  border-top: 1px solid rgba(240, 146, 174, 0.9);
  border-bottom: 1px solid rgba(240, 146, 174, 0.9);
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  color: #f092ae;
  font-weight: 500;
  font-size: 17px;
  padding: 7px 10px 6px;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 63px;
}
@media print, screen and (min-width: 600px) {
  .p-top-service__btn {
    font-size: 20px;
    border: 1px solid rgba(240, 146, 174, 0.9);
    padding: 7px 10px 7px;
    border-radius: 100vw;
    width: 238px;
    bottom: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-service__btn {
    column-gap: 18px;
  }
}
.p-top-service__item:hover .p-top-service__btn {
  border-radius: 0;
  width: 100%;
  border-left: none;
  border-right: none;
}

.p-top-service__text {
  display: block;
  padding-left: 3em;
}
@media print, screen and (min-width: 1024px) {
  .p-top-service__text {
    padding-left: 1em;
  }
}

.p-top-service__arrow {
  color: #f092ae;
  display: block;
  position: relative;
}

.p-top-qa {
  background-image: linear-gradient(180deg, #fff7f7, #ffffff);
  padding: 30px 20px 20px;
}
@media print, screen and (min-width: 600px) {
  .p-top-qa {
    padding: 80px 40px 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-qa {
    padding: 120px 50px 120px;
  }
}
.p-top-qa .c-section-title__icon {
  width: 28px;
}

.p-top-qa__wrap {
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  padding: 18px 26px 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media print, screen and (min-width: 600px) {
  .p-top-qa__wrap {
    padding: 40px 60px 60px;
    border-radius: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-qa__wrap {
    padding: 60px 100px 100px;
  }
}

.p-top-qa__tabs {
  display: flex;
  column-gap: 7px;
  margin-top: 26px;
  justify-content: center;
}
@media print, screen and (min-width: 600px) {
  .p-top-qa__tabs {
    margin-top: 45px;
    column-gap: 18px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-qa__tabs {
    column-gap: 25px;
  }
}

.p-top-qa__tab {
  width: calc(33.3333333333% - 7px);
  text-align: center;
  border: 1px solid #f092ae;
  background-color: #ffffff;
  border-radius: 100vw;
  padding: 7px 5px 8px;
  color: #f092ae;
  font-weight: 500;
  font-size: 12px;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 600px) {
  .p-top-qa__tab {
    font-size: clamp(14px, 1.48vw, 25px);
  }
}
.p-top-qa__tab.is-active {
  background: #f092ae;
  color: #ffffff;
  position: relative;
}
.p-top-qa__tab.is-active::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 14px;
  height: 14px;
  background-color: #f092ae;
  transform: translate(-50%, -60%) rotate(45deg) skew(15deg, 15deg);
  border-radius: 2px;
  bottom: 0;
}
.p-top-qa__tab:hover {
  cursor: pointer;
  background-color: #f092ae;
  color: #ffffff;
  transition: all 0.3s ease;
}

.p-top-qa__contents {
  margin-top: 40px;
}

.p-top-qa__panel {
  display: none;
}
.p-top-qa__panel.is-show {
  display: block;
}

.p-top-qa__item {
  border: 2px solid #e1f5b6;
  border-radius: 15px;
  margin-top: 15px;
  overflow: hidden;
}

summary {
  min-height: 60px;
  list-style: none;
  background-color: #e1f5b6;
  padding: 6px 62px 8px 61px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.25;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 600px) {
  summary {
    font-size: 18px;
    min-height: 68px;
    padding: 10px 80px;
  }
}
summary::-webkit-details-marker {
  display: none;
}
summary::before {
  content: "Q";
  background: #8fc31f;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  left: 12px;
  color: #ffffff;
  font-size: 17px;
  display: block;
  text-align: center;
  border-radius: 100vw;
  line-height: 40px;
}
@media print, screen and (min-width: 600px) {
  summary::before {
    width: 44px;
    height: 44px;
    top: 12px;
    left: 20px;
  }
}
summary::after {
  content: "＋";
  color: #ffffff;
  background-color: #8fc31f;
  width: 27px;
  height: 27px;
  font-weight: 900;
  line-height: 28px;
  display: block;
  border-radius: 100vw;
  text-align: center;
  position: absolute;
  right: 12px;
  top: 17px;
}
@media print, screen and (min-width: 600px) {
  summary::after {
    width: 30px;
    height: 30px;
    top: 19px;
    right: 19px;
  }
}

details[open] summary::after {
  content: "ー";
}

.p-top-qa__a {
  overflow: hidden;
  padding: 23px 24px;
  font-size: 16px;
  line-height: 1.55;
}
@media print, screen and (min-width: 600px) {
  .p-top-qa__a {
    font-size: 18px;
    padding: 15px 31px 18px;
  }
}
.p-top-qa__a {
  /* 開く時のアニメーション */
}
details[open] .p-top-qa__a {
  animation: fadeIn 0.5s ease;
}
.p-top-qa__a a {
  color: #f092ae;
  text-decoration: underline;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  /* 1. ここが魔法！ 最初は透明にして、クリックもできないようにする */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease; /* 0.4秒かけてふんわり */
}

/* 表示された時のクラス（JSで付け外しするクラス） */
.p-modal.is-show {
  opacity: 1;
  pointer-events: auto; /* クリックできるように戻す */
}

/* 背景：全画面で色と透過度を指定 */
.p-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2b2b2b;
  opacity: 0.4;
  cursor: pointer; /* 背景クリックで閉じられる予感 */
}

.p-modal__close {
  position: absolute;
  top: 3px;
  right: 17px;
  color: #f092ae;
  font-size: 2em;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .p-modal__close {
    right: 25px;
  }
}
.p-modal__close:hover {
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

/* コンテンツ：中央の白い箱 */
.p-modal__content {
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 10px #f092ae;
  padding: 20px;
  width: calc(100% - 32px);
  max-width: 800px;
  min-height: auto;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10;
  border-radius: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-modal__content {
    width: calc(100% - 100px);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-modal__content {
    padding: 30px 105px;
  }
}

.p-modal__title {
  font-size: 16px;
  font-weight: 500;
}
@media print, screen and (min-width: 600px) {
  .p-modal__title {
    font-size: clamp(16px, 1.19vw, 20px);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-modal__title {
    font-size: 20px;
  }
}

.p-modal__body {
  margin-top: 30px;
}

.p-modal__btn {
  margin: 30px auto 0;
  text-align: center;
}
@media print, screen and (min-width: 600px) {
  .p-modal__btn {
    margin-top: 40px;
  }
}

.p-page-fadein {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info {
    max-width: 405px;
    justify-content: center;
    width: 27%;
    padding-right: 2.96%;
  }
}
@media (min-width: 1130px) {
  .p-footer-info {
    padding-right: 1.96%;
  }
}

.p-footer-info__logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-right: 17px;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__logo {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-footer-info__logo-img {
  max-width: 227px;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__logo-img {
    width: 85.24%;
    max-width: 312px;
  }
}

.p-footer-info__tel {
  margin-top: 3px;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__tel {
    width: 100%;
    padding-right: 15%;
  }
}

.p-footer-info__tel-num {
  color: #5c5c5c;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__tel-num {
    justify-content: flex-end;
  }
}

.p-footer-info__phone-icon {
  width: 30px;
  height: 34px;
  display: inline-block;
  margin-right: 9px;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__phone-icon {
    width: 12%;
    max-width: 31px;
    height: auto;
    margin-right: 0.595vw;
  }
}
.p-footer-info__phone-icon path {
  width: 100%;
}

.p-footer-info__tel-link {
  font-size: 34px;
  font-weight: 500;
  line-height: 2;
  display: inline-block;
  padding-right: 10px;
  font-family: "Noto Sans JP Custom", sans-serif;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__tel-link {
    font-size: min(1.855vw, 3.4rem);
  }
}
@media print, screen and (min-width: 1680px) {
  .p-footer-info__tel-link {
    font-size: 34px;
  }
}

.p-footer-info__tel-text {
  margin-top: 11px;
  line-height: 1.53;
  letter-spacing: 0.04em;
  font-size: 15px;
  font-weight: 500;
  text-align: right;
  color: #5c5c5c;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__tel-text {
    font-size: min(1.172vw, 1.5rem);
  }
}

.p-footer-nav {
  padding-left: 2.96%;
  width: 73%;
  position: relative;
}
.p-footer-nav::before {
  content: "";
  background-image: linear-gradient(180deg, #ecfdc8, #fddbdb);
  width: 3px;
  height: 100%;
  position: absolute;
  top: 2px;
  left: 0;
}
@media (min-width: 1440px) {
  .p-footer-nav::before {
    height: 94%;
  }
}

.p-footer-nav__list {
  display: grid;
  grid-template-columns: 240px calc(100% - 280px);
  column-gap: 2.97vw;
}
@media (min-width: 1130px) {
  .p-footer-nav__list {
    grid-template-columns: 243px 440px;
  }
}
@media (min-width: 1550px) {
  .p-footer-nav__list {
    grid-template-columns: 243px 448px 243px;
    column-gap: 50px;
  }
}

.p-footer-nav__item {
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (min-width: 1130px) {
  .p-footer-nav__item.--facility .p-footer-nav__link-wrap {
    width: 100%;
  }
}
@media (min-width: 1130px) {
  .p-footer-nav__item.--facility .p-footer-nav__child-list {
    display: grid;
    grid-template-columns: 195px 210px;
    column-gap: 40px;
    grid-template-areas: "a1 b1" "a2 b2" "a3 .";
    align-items: start;
  }
}
@media (min-width: 1130px) {
  .p-footer-nav__item.--facility .p-footer-nav__child-item:nth-child(1) {
    grid-area: a1;
  }
  .p-footer-nav__item.--facility .p-footer-nav__child-item:nth-child(2) {
    grid-area: a2;
  }
  .p-footer-nav__item.--facility .p-footer-nav__child-item:nth-child(3) {
    grid-area: a3;
  }
  .p-footer-nav__item.--facility .p-footer-nav__child-item:nth-child(4) {
    grid-area: b1;
  }
  .p-footer-nav__item.--facility .p-footer-nav__child-item:nth-child(5) {
    grid-area: b2;
  }
}
.p-footer-nav__item:last-of-type {
  line-height: 2.3;
}
@media (min-width: 1440px) {
  .p-footer-nav__item:last-of-type {
    margin-top: -0.2em;
    line-height: 2;
  }
}

.p-footer-nav__icon {
  width: 7px;
  padding-top: 4px;
  display: inline-block;
  margin-right: 5px;
}

.p-footer-nav__link-wrap {
  color: #8fc31f;
}
.p-footer-nav__link-wrap .p-footer-nav__link {
  font-size: 15px;
}
.p-footer-nav__link-wrap .p-footer-nav__link:hover {
  color: #414141;
  opacity: 0.4;
}

.p-footer-nav__child-list {
  margin-top: 0.5em;
}
.p-footer-nav__child-list .p-footer-nav__child-link {
  line-height: 2.2;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.p-footer-nav__child-list .p-footer-nav__child-link::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #8fc31f;
  position: absolute;
  left: -100%;
  bottom: 0.4em;
  transition: all 0.4s ease;
}
.p-footer-nav__child-list .p-footer-nav__child-link:hover {
  color: #8fc31f;
}
.p-footer-nav__child-list .p-footer-nav__child-link:hover::before {
  left: 0;
  transition: all 0.4s ease;
}

.p-footer-nav__grandchild-list .p-footer-nav__grandchild-item {
  padding-left: 14px;
  position: relative;
}
.p-footer-nav__grandchild-list .p-footer-nav__grandchild-item::before {
  content: "";
  background: #414141;
  width: 5px;
  height: 1px;
  position: absolute;
  top: 0.9em;
  left: 1px;
}
.p-footer-nav__grandchild-list .p-footer-nav__grandchild-link {
  font-weight: 400;
  line-height: 2.2;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.p-footer-nav__grandchild-list .p-footer-nav__grandchild-link::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #8fc31f;
  position: absolute;
  left: -100%;
  bottom: 0.4em;
  transition: all 0.4s ease;
}
.p-footer-nav__grandchild-list .p-footer-nav__grandchild-link:hover {
  color: #8fc31f;
}
.p-footer-nav__grandchild-list .p-footer-nav__grandchild-link:hover::before {
  left: 0;
  transition: all 0.4s ease;
}

.p-footer-nav__grandchild-sub {
  margin-top: -5px;
  display: flex;
  column-gap: 1em;
  margin-bottom: 10px;
}

.p-footer-nav__grandchild-sub-item {
  padding-left: 10px;
  position: relative;
  color: #666;
}
.p-footer-nav__grandchild-sub-item::before {
  content: "";
  background: #888;
  width: 5px;
  height: 1px;
  position: absolute;
  top: 0.7em;
  left: 1px;
}

.p-footer-nav__grandchild-sub-link {
  font-weight: 400;
  font-size: 13px;
  position: relative;
  overflow: hidden;
  padding-bottom: 3px;
  line-height: 1;
}
.p-footer-nav__grandchild-sub-link::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #8fc31f;
  position: absolute;
  left: -100%;
  bottom: 0;
  transition: all 0.4s ease;
}
.p-footer-nav__grandchild-sub-link:hover {
  color: #8fc31f;
}
.p-footer-nav__grandchild-sub-link:hover::after {
  left: 0;
  transition: all 0.4s ease;
}

.p-cta-contact__list {
  margin-top: 40px;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__list {
    display: flex;
    justify-content: center;
    column-gap: 2.8vw;
  }
}
@media print, screen and (min-width: 1680px) {
  .p-cta-contact__list {
    column-gap: 62px;
  }
}

.l-cta__inner {
  max-width: 890px;
  margin: 0 auto;
}

.p-cta-contact__item .c-btn,
.p-cta-contact__reservation .c-btn {
  max-width: 340px;
  width: 100%;
  text-align: center;
  padding: 3px 10px 5px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  min-height: 65px;
  margin: 0 auto;
  color: #fff;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__item .c-btn,
  .p-cta-contact__reservation .c-btn {
    max-width: 420px;
  }
}
.p-cta-contact__item .c-btn::before,
.p-cta-contact__reservation .c-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(120deg, #ecfdc8, #fddbdb);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.p-cta-contact__item .c-btn:hover,
.p-cta-contact__reservation .c-btn:hover {
  color: #f092ae;
}
.p-cta-contact__item .c-btn:hover::before,
.p-cta-contact__reservation .c-btn:hover::before {
  opacity: 1;
}
.p-cta-contact__item .c-btn:hover .p-cta-contact__arrow,
.p-cta-contact__reservation .c-btn:hover .p-cta-contact__arrow {
  right: 15px;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__item .c-btn:hover .p-cta-contact__arrow,
  .p-cta-contact__reservation .c-btn:hover .p-cta-contact__arrow {
    right: 36px;
  }
}

.p-cta-contact__item {
  justify-content: center;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__item {
    width: 47.192%;
  }
}

.p-cta-contact__tel {
  width: 18px;
  height: 31px;
  display: inline-block;
  position: absolute;
  top: 24px;
  left: 13.5%;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__tel {
    width: 27px;
    height: 47px;
    top: 18px;
    left: 53px;
  }
}

.p-cta-contact {
  margin-top: 40px;
}

.p-cta-contact__text {
  line-height: 2;
  text-align: center;
  font-size: 17px;
}

.p-cta-contact__reservation-icon {
  width: 30px;
  height: 28px;
  display: inline-block;
  position: absolute;
  top: 19px;
  left: 22px;
}
@media print, screen and (min-width: 600px) {
  .p-cta-contact__reservation-icon {
    left: 26px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__reservation-icon {
    width: 41px;
    height: 38px;
    top: 21px;
    left: 46px;
  }
}

.p-cta-contact__reception {
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__reception {
    margin-top: 7px;
  }
}

.p-cta-contact__num {
  font-size: 29px;
  font-family: "Noto Sans JP Custom", sans-serif;
  margin-top: 3px;
  margin-bottom: 4px;
  padding-left: 0.5em;
  line-height: 1;
  display: block;
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__num {
    font-size: 39px;
    margin-bottom: 7px;
    margin-top: 3px;
  }
}

.p-cta-contact__arrow {
  width: 9px;
  height: 17px;
  position: absolute;
  top: 25px;
  right: 20px;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__arrow {
    right: 46px;
    top: 31px;
  }
}

.p-cta-contact__reservation {
  display: block;
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__reservation {
    margin-top: 46px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__reservation .c-btn {
    padding: 23px 30px;
  }
}
.p-cta-contact__reservation .c-btn__text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.calendar {
  fill: none;
}

.p-cta-contact__time {
  margin: 12px 0 20px 8px;
  display: flex;
  justify-content: center;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__time {
    margin: 20px 0 0 0;
  }
}

.p-cta-contact__label {
  white-space: nowrap;
  font-size: 16px;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__label {
    font-size: min(1.465vw, 16px);
  }
}

.p-cta-contact__data {
  margin-left: -0.5em;
  margin-top: 0.1em;
  font-size: 16px;
}

.p-cta-contact__row {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  line-height: 1.5;
}
.p-cta-contact__row + .p-cta-contact__row {
  margin-top: 7px;
}

.p-cta-contact__day {
  width: 2.3em;
  text-align: right;
  flex-shrink: 0;
}

.p-cta-contact__slash {
  margin: 0 0.2em;
  flex-shrink: 0;
}

.p-cta-contact__times {
  text-align: left;
  text-indent: 0.3em;
  margin-left: -0.3em;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__times .u-display-pc {
    display: inline;
  }
}

.p-cta-contact__reservation-text {
  text-align: center;
  margin-top: 3px;
  font-size: 17px;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-contact__reservation-text {
    margin-top: 10px;
  }
}

.p-hero {
  width: 100%;
  padding: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100vw !important;
  position: relative;
  /* 2. もし親要素にleftが設定されていたらリセット */
  left: 0;
}
.p-hero .swiper {
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 600px) {
  .p-hero .swiper {
    /* PC版：左に60px空けて、残りの幅を全部使う */
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: 0;
  }
}
.p-hero__image {
  display: block;
  width: 100%;
  height: 100%;
}
.p-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 600px) {
  .p-hero__image img {
    /* 左側だけ角丸40px */
    border-radius: 40px 0 0 40px;
  }
}
.p-hero__slide {
  width: 100%;
  width: 100vw !important;
  pointer-events: none;
  transition-property: opacity;
}
@media print, screen and (min-width: 1024px) {
  .p-hero__slide {
    pointer-events: true;
    aspect-ratio: 1620/730;
  }
}
@media print, screen and (min-width: 600px) {
  .p-hero__slide {
    padding-top: 26px;
  }
}
.p-hero.swiper-slide-active {
  pointer-events: auto;
}
.p-hero .swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.p-hero .p-hero__pagination {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .p-hero .p-hero__pagination {
    display: block;
    z-index: 3;
    top: auto;
    bottom: 15.47%;
  }
}
.p-hero .p-hero__pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.p-hero .p-hero__pagination .swiper-pagination-bullet-active {
  background: #8fc31f;
  opacity: 1;
}
.p-hero {
  /* ロゴやボタンが重なる部分の調整（お好みで！） */
}
.p-hero__logo {
  background: url(../../assets/images/common/icon-logo.svg) top 53% left 20px no-repeat;
  position: absolute;
  background-size: 158px 181px;
  opacity: 0.15;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
@media print, screen and (min-width: 600px) {
  .p-hero__logo {
    opacity: 0.3;
    background-size: 23% 53%;
    background-position: top 66% left 16%;
  }
}
.p-hero__logo-text {
  left: 30px;
  position: absolute;
  top: calc(50% - 0.9em);
  transform: translateY(-50%);
  z-index: 3;
  color: #fff;
}
@media print, screen and (min-width: 600px) {
  .p-hero__logo-text {
    left: 9.8vw;
    top: calc(50% + 60px);
  }
}
@media print, screen and (min-width: 1680px) {
  .p-hero__logo-text {
    left: 180px;
  }
}
.p-hero__logo-text .c-btn {
  font-size: 17px;
  padding: 10px 50px 10px 40px;
  width: 315px;
  background: rgba(240, 146, 174, 0.8);
}
@media print, screen and (min-width: 600px) {
  .p-hero__logo-text .c-btn {
    font-size: 20px;
    padding: 13px 36px 14px 16px;
    margin-top: 30px;
  }
}
@media print, screen and (min-width: 600px) and (min-width: 600px) {
  .p-hero__logo-text .c-btn .c-btn--arrow {
    top: 23px;
    right: 21px;
  }
}
.p-hero__logo-text .c-btn:hover .c-btn--arrow {
  right: 20px;
}
@media print, screen and (min-width: 600px) {
  .p-hero__logo-text .c-btn:hover .c-btn--arrow {
    right: 11px;
  }
}
.p-hero__heading {
  font-weight: 500;
  font-size: 27px;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.34);
}
@media print, screen and (min-width: 600px) {
  .p-hero__heading {
    font-size: 46px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-hero__heading {
    font-size: clamp(34px, 3.571vw, 60px);
  }
}

.p-hero__logo-text .c-btn {
  font-size: clamp(15px, 4.35vw, 17px);
}
@media print, screen and (min-width: 1024px) {
  .p-hero__logo-text .c-btn {
    width: 312px;
    font-size: clamp(18px, 1.56vw, 20px);
  }
}

.p-top-news {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  margin: -70px auto 0;
  padding: 25px 27px 91px 22px;
}
@media print, screen and (min-width: 600px) {
  .p-top-news {
    width: calc(100% - 140px);
    margin-top: -30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-news {
    width: 71.4%;
    max-width: 1200px;
    margin-top: -4.46vw;
    padding: 60px 8.33% 100px;
  }
}
.p-top-news::after {
  content: "";
  border-radius: 30px;
  position: absolute;
  background-image: linear-gradient(180deg, #ffffff, #fff7f7);
  width: 100%;
  height: calc(100% - 25px);
  top: 0;
  left: 0;
  opacity: 0.85;
}
@media print, screen and (min-width: 1024px) {
  .p-top-news::after {
    border-radius: 40px;
  }
}
.p-top-news .c-section-title,
.p-top-news .c-news__list {
  position: relative;
  z-index: 2;
}
.p-top-news .c-section-title__icon {
  width: 29px;
  margin-right: 5px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-news .c-section-title__icon {
    width: 40px;
    margin-right: -3px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-news .c-news__title {
    width: calc(100% - 306px);
  }
}

.p-top-news__list-btn {
  position: relative;
  left: 0;
  bottom: -41px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-news__list-btn {
    bottom: -44px;
  }
}
.p-top-news__list-btn .c-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 274px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-news__list-btn .c-btn {
    width: 340px;
  }
}

.p-top-about {
  margin-top: 59px;
  padding-bottom: 60px;
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .p-top-about {
    margin-top: 120px;
    padding-bottom: 120px;
  }
}
.p-top-about::after {
  content: "";
  background: url(../../assets/images/common/icon-logo.svg) no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
  width: 73.3%;
  height: 83.7%;
  right: -6.4%;
  top: 82px;
  opacity: 0.1;
}
@media print, screen and (min-width: 1024px) {
  .p-top-about::after {
    width: 26.6vw;
    height: 30.4vw;
    top: auto;
    right: 8%;
    bottom: 0;
  }
}
.p-top-about .c-section-title__icon {
  width: 32px;
  margin-right: 4px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-about .c-section-title__icon {
    width: 44px;
  }
}

.p-top-about__sub-title {
  color: #f092ae;
  text-align: center;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 48px;
  font-size: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-about__sub-title {
    margin-top: 60px;
    font-size: 25px;
    line-height: 2;
  }
}

.p-top-about__text {
  width: calc(100% - 60px);
  margin: 20px auto 0;
  line-height: 2;
  color: #2b2b2b;
  font-size: 17px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-about__text {
    text-align: center;
    margin-top: 60px;
  }
}

.p-top-about__btn {
  margin-top: 30px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-top-about__btn {
    margin-top: 60px;
  }
}
.p-top-about__btn .c-btn {
  width: 274px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-about__btn .c-btn {
    width: 340px;
  }
}

.p-top-facility {
  position: relative;
  background-image: url(../../assets/images/top/facility-bg-top_sp.png), url(../../assets/images/top/facility-bg-bottom_sp.png);
  padding: 35px 0 85px;
  background-position: top 20px center, bottom 70px center;
  background-size: contain, contain;
  background-repeat: no-repeat, no-repeat;
}
@media print, screen and (min-width: 600px) {
  .p-top-facility {
    padding: 41px 0 100px;
    background-position: top 11px center, bottom 50px center;
    background-size: 100% 30px, 100% 50px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-facility {
    margin-top: 36px;
    background-image: url(../../assets/images/top/facility-bg-top.png), url(../../assets/images/top/facility-bg-bottom.png);
    padding: 96px 0 178px;
    background-position: top center, bottom center;
    background-size: 100% 96px, 100% 178px;
  }
}
.p-top-facility::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  background-image: linear-gradient(180deg, #ecfdc8, #fddbdb);
}
@media print, screen and (min-width: 600px) {
  .p-top-facility::after {
    background-image: linear-gradient(90deg, #ecfdc8, #fddbdb);
  }
}

.p-top-facility__inner {
  background: #fff;
  padding: 12px 30px 80px;
  position: relative;
}
@media print, screen and (min-width: 600px) {
  .p-top-facility__inner {
    padding: 0 30px 30px;
  }
}

.p-top-facility__cards {
  margin-top: 31px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-facility__cards {
    max-width: 600px;
    margin: 47px auto 0;
  }
}

.p-top-facility__btn {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media print, screen and (min-width: 600px) {
  .p-top-facility__btn {
    bottom: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-facility__btn {
    bottom: 66px;
  }
}
.p-top-facility__btn .c-btn {
  min-width: 274px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-facility__btn .c-btn {
    width: 340px;
  }
}

.p-top-collaboration {
  position: relative;
  padding: 30px 0;
}
@media print, screen and (min-width: 1024px) {
  .p-top-collaboration {
    padding: 60px 0;
  }
}
.p-top-collaboration::before {
  content: "";
  background-image: linear-gradient(180deg, #ffffff, #ecf4fc);
  opacity: 0.75;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: darken;
}
.p-top-collaboration::after {
  content: "";
  background: url(../../assets/images/top/collaboration-bg.jpg) center center no-repeat;
  background-size: cover;
  opacity: 0.15;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.p-top-collaboration__inner {
  width: calc(100% - 40px);
  margin: 25px auto 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}
@media print, screen and (min-width: 600px) {
  .p-top-collaboration__inner {
    padding: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-collaboration__inner {
    border-radius: 40px;
    padding: 61px min(8.3%, 100px);
    width: calc(100% - 100px);
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }
}

.p-top-collaboration__text {
  font-size: 17px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-collaboration__text {
    width: 45%;
    padding-right: 5%;
    font-size: clamp(1.45rem, 1.01vw, 17px);
    padding-top: 6%;
  }
}
@media print, screen and (min-width: 1300px) {
  .p-top-collaboration__text {
    padding-top: 60px;
    padding-right: 20px;
  }
}
.p-top-collaboration__text p {
  line-height: 2;
}

.p-top-collaboration__btn {
  margin: 40px auto 0;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-top-collaboration__btn {
    text-align: left;
    margin: clamp(30px, 3.57vw, 60px) 0 0;
  }
}
.p-top-collaboration__btn .c-btn {
  padding: 7px 10px 8px;
  width: 274px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-collaboration__btn .c-btn {
    padding: 15px;
    max-width: 340px;
    width: 100%;
    font-size: 20px;
    font-size: clamp(1.8rem, 1.19vw, 20px);
  }
}
@media print, screen and (min-width: 1680px) {
  .p-top-collaboration__btn .c-btn {
    padding: 13px 20px 14px;
  }
}

.p-top-collaboration___links {
  margin-top: 40px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-collaboration___links {
    width: 54.2%;
    margin: 0;
  }
}

.p-top-collaboration__title {
  color: #00437C;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.p-top-collaboration__list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media print, screen and (min-width: 600px) {
  .p-top-collaboration__list {
    margin: 20px auto 0;
    max-width: 542px;
  }
}

.p-top-collaboration__blank {
  position: absolute;
  top: 16px;
  right: 22px;
}
@media print, screen and (min-width: 600px) {
  .p-top-collaboration__blank {
    top: calc(50% - 8px);
    right: 10.1%;
  }
}

.p-top-recruit {
  margin-top: 40px;
}
@media print, screen and (min-width: 600px) {
  .p-top-recruit {
    margin-top: 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-recruit {
    margin-top: 120px;
  }
}
.p-top-recruit .p-bleed-left {
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 600px) {
  .p-top-recruit .p-bleed-left {
    margin-top: 60px;
  }
}

.p-top-recruit__body-title {
  color: #f092ae;
  line-height: 1.75;
  font-size: clamp(18px, 1.19vw, 20px);
  font-weight: 500;
}
@media print, screen and (min-width: 1024px) {
  .p-top-recruit__body-title {
    font-size: clamp(17px, 1.48vw, 25px);
  }
}

.p-top-recruit__body-text {
  margin-top: 20px;
  line-height: 2;
  font-size: 17px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-recruit__body-text {
    font-size: clamp(13px, 1.01vw, 17px);
    margin-top: clamp(30px, 3.57vw, 60px);
  }
}

.p-top-recruit__btn {
  margin-top: 28px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-top-recruit__btn {
    margin-top: clamp(30px, 3.57vw, 60px);
    text-align: left;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-recruit__btn .c-btn {
    font-size: clamp(17px, 1.19vw, 20px);
    width: clamp(300px, 28.33vw, 340px);
  }
}

.p-top-access {
  margin-top: 60px;
}
@media print, screen and (min-width: 600px) {
  .p-top-access {
    margin-top: 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-access {
    margin-top: 120px;
  }
}
.p-top-access .p-bleed-right {
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-top-access .p-bleed-right {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-access .p-bleed-right {
    margin-top: 60px;
  }
}

.p-top-access__body {
  margin: 30px auto 59px;
  width: calc(100% - 60px);
  font-size: 15px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-access__body {
    margin-top: 0;
    font-size: clamp(14px, 1.01vw, 17px);
  }
}

.p-top-access__table {
  border-collapse: collapse;
}
.p-top-access__table th,
.p-top-access__table td {
  text-align: left;
  font-weight: 400;
  line-height: 2;
}
@media print, screen and (min-width: 1024px) {
  .p-top-access__table th,
  .p-top-access__table td {
    line-height: 1.7;
  }
}
.p-top-access__table th {
  width: 73px;
  vertical-align: top;
  border-right: 1px solid #9f9e9e;
}
@media print, screen and (min-width: 1024px) {
  .p-top-access__table th {
    width: 92px;
  }
}
.p-top-access__table td {
  width: calc(100% - 73px);
  padding: 0 0 0px 17px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-access__table td {
    width: calc(100% - 92px);
    padding-left: 18px;
  }
}

.p-top-access__method {
  margin-top: 30px;
}

.p-top-access__label {
  margin-top: 20px;
  margin-bottom: 16px;
  text-align: center;
  background: #ecf4fc;
  text-align: center;
  border-radius: 100vw;
  padding: 5px 2em 6px;
  font-size: 17px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-access__label {
    margin-top: 30px;
    font-size: clamp(14px, 1.01vw, 17px);
    margin: 30px 0 10px;
  }
}

.p-top-access__heading {
  position: relative;
  margin: 10px 0 10px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-access__heading {
    margin-bottom: 5px;
  }
}
.p-top-access__heading::after {
  content: "";
  height: 1px;
  width: 100%;
  border-bottom: 1px dashed #414141;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
@media print, screen and (min-width: 1024px) {
  .p-top-access__heading::after {
    border-bottom: 1px dashed #e3e3e3;
  }
}

.p-top-access__bus {
  position: relative;
  display: inline-block;
  background: #fff;
  padding-right: 1.5em;
}
.p-top-landscape {
  padding-bottom: 30px;
  margin-top: 59px;
}
@media print, screen and (min-width: 600px) {
  .p-top-landscape {
    padding-bottom: 60px;
    margin-top: 100px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-landscape {
    padding-bottom: 100px;
    margin-top: 141px;
  }
}

.p-top-landscape__list {
  display: flex;
  flex-wrap: wrap;
}

.p-top-landscape__item {
  width: 50%;
}
@media print, screen and (min-width: 600px) {
  .p-top-landscape__item {
    width: 25%;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-bleed-left {
    display: flex;
    position: relative;
  }
}
.p-bleed-left .p-bleed-left__image {
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 115/67;
  margin-left: calc(50% - 50vw);
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-left .p-bleed-left__image {
    border-radius: 0 40px 40px 0;
    width: 52.08vw;
    aspect-ratio: 175/102;
  }
}
.p-bleed-left .p-bleed-left__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-bleed-left .p-bleed-left__image.is-top {
  width: calc(100% - 30px);
  height: 100%;
  aspect-ratio: 115/67;
  margin-left: calc(50% - 50vw);
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-left .p-bleed-left__image.is-top {
    border-radius: 0 40px 40px 0;
    width: 52.08vw;
    margin-right: -21.6%;
    z-index: 2; /* 画像を下に */
    position: absolute;
    aspect-ratio: 175/102;
    height: 86.62%;
  }
}
.p-bleed-left__body {
  padding: 20px 0;
  width: 100%;
}
.p-bleed-left .p-bleed-left--bg {
  position: relative;
  z-index: -1;
  background-color: #fcfaf4;
  border-radius: 20px;
  padding: 159px 15px 54px 20px;
  width: calc(100% - 20px);
  left: 10px;
  margin-top: -129px;
}
@media print, screen and (min-width: 600px) {
  .p-bleed-left .p-bleed-left--bg {
    padding: 159px 45px 54px 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-left .p-bleed-left--bg {
    margin-top: 44px;
    width: 71.4%;
    flex-shrink: 0;
    margin-left: 0%;
    padding: 4.76% min(4.76vw, 130px) 7.44% 30%;
    margin-left: 28.6%;
  }
}
@media print, screen and (min-width: 1680px) {
  .p-bleed-left .p-bleed-left--bg {
    padding: 80px 130px 125px 368px;
  }
}
.p-bleed-left--reverse {
  flex-direction: row-reverse;
}
.p-bleed-left--reverse .p-bleed-left__image {
  padding-left: calc(50vw - 50%);
}

.p-bleed-left__body {
  margin: 20px auto 0;
  width: calc(100% - 20px);
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-left__body {
    width: 47%;
    margin: 0;
    padding: 0 0 0 8%;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-left__body .c-sub-title {
    margin-bottom: 50px;
  }
}

.p-bleed-left__body--chiiki {
  margin-top: 30px;
}
.p-bleed-left__body--chiiki .c-sub-title {
  margin-top: 20px;
}
.p-bleed-left__body--chiiki .c-sub-title__main {
  color: #f29d79;
}
.p-bleed-left__body--chiiki .p-bleed-left__text {
  margin-top: 20px;
}

@media print, screen and (min-width: 1024px) {
  .p-bleed-left.p-bleed-left--overlap-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    position: relative;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-left.p-bleed-left--overlap-grid .p-bleed-left__image {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 52.08vw;
    z-index: 2;
  }
}
.p-bleed-left.p-bleed-left--overlap-grid .p-bleed-left--bg {
  padding: 140px 21px 30px;
  width: 100%;
  left: 0;
  margin-top: -112px;
}
@media print, screen and (min-width: 600px) {
  .p-bleed-left.p-bleed-left--overlap-grid .p-bleed-left--bg {
    padding: 140px 40px 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-left.p-bleed-left--overlap-grid .p-bleed-left--bg {
    grid-column: 1/2;
    grid-row: 1/2;
    justify-self: end;
    width: min(60vw, 918px);
    max-width: 918px;
    margin-top: 44px;
    position: relative;
    z-index: 1;
    background-color: #fcfaf4;
    border-radius: 40px;
    padding: 60px clamp(4%, 4.76vw, 80px) 60px clamp(5%, 21vw, 353px);
  }
}

.p-bleed-left__body-text {
  line-height: 2;
  font-size: 17px;
}

.p-bleed-left__text {
  line-height: 2;
}

.p-bleed-left--reverse {
  /* 💡 左右を入れ替える（HTMLの順序が テキスト→イラスト の場合） */
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  flex-direction: column-reverse;
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-left--reverse {
    flex-direction: row;
    justify-content: space-between;
  }
}
.p-bleed-left--reverse .p-bleed-left__body {
  position: relative;
  z-index: 1;
  background-color: #fcfaf4;
  padding: 30px 33px 30px;
  width: 100%;
  margin-top: 0;
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-left--reverse .p-bleed-left__body {
    border-radius: 0 60px 0 0;
    width: 44.66%;
    padding: 60px 65px 60px 0;
  }
  .p-bleed-left--reverse .p-bleed-left__body::before {
    border-radius: 0 60px 0 0;
  }
}
.p-bleed-left--reverse .p-bleed-left__body {
  /* 💡 魔法の「左側だけ突き抜け」 */
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-left--reverse .p-bleed-left__body::before {
    content: "";
    position: absolute;
    top: 0;
    /* 画面の左端（0）から、要素の左端（0）までを埋める */
    left: calc(50% - 50vw);
    right: 0;
    height: 100%;
    background-color: inherit;
    z-index: -1;
  }
}
.p-bleed-left--reverse .p-bleed-left__body-text {
  margin-top: 30px;
}
.p-bleed-left--reverse .p-bleed-left__image {
  aspect-ratio: auto;
  border-radius: 0;
  padding-left: 0;
  width: auto;
  padding: 0 20px;
  width: 100%;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-left--reverse .p-bleed-left__image {
    width: 51.25%;
    margin: 35px 0 0 0;
    padding: 0;
  }
}
.p-bleed-left--reverse .p-bleed-left__image img {
  object-fit: inherit;
  max-width: 615px;
  height: auto;
  display: inline-block;
}

.p-bleed-left__body--shika .c-sub-title__main {
  color: #97add8;
}

.p-bleed-left__body--houmon .c-sub-title__main {
  color: #eabd5a;
}

.p-bleed-left__body--station .c-sub-title__main {
  color: #f092ae;
}

@media print, screen and (min-width: 1024px) {
  .p-bleed-right {
    display: flex;
    justify-content: space-between;
  }
}
.p-bleed-right .p-bleed-right__image {
  margin-left: 10px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 115/67;
  margin-right: calc(50% - 50vw);
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-right .p-bleed-right__image {
    order: 2;
    width: 52.08vw;
    aspect-ratio: 175/102;
    border-radius: 40px 0 0 40px;
    margin-left: 0;
  }
}
.p-bleed-right .p-bleed-right__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-bleed-right .p-bleed-right__image.p-bleed-right__image--map {
  aspect-ratio: 71/60;
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-right .p-bleed-right__image.p-bleed-right__image--map {
    aspect-ratio: 125/73;
  }
}
.p-bleed-right .p-bleed-right__image.p-bleed-right__image--map {
  position: relative;
}
.p-bleed-right .p-bleed-right__image.p-bleed-right__image--map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-bleed-right__body {
  margin: 20px auto 0;
  width: calc(100% - 20px);
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-right__body {
    width: 47%;
    margin: 0;
    padding: 0 9.6% 0 0;
  }
}
@media print, screen and (min-width: 1680px) {
  .p-bleed-right__body {
    padding-right: 114px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-right__body .c-sub-title {
    margin-bottom: 50px;
  }
}

.p-bleed-right__text {
  color: #2b2b2b;
  font-size: 17px;
  margin-top: 15px;
  line-height: 2;
}
@media print, screen and (min-width: 600px) {
  .p-bleed-right__text {
    margin-top: 35px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-right__text {
    margin-top: 60px;
  }
}

.p-bleed-right__body--chiiki {
  margin-top: 30px;
}
.p-bleed-right__body--chiiki .c-sub-title__main {
  color: #f29d79;
}
.p-bleed-right__body--chiiki .p-bleed-right__text {
  margin-top: 20px;
}

.p-bleed-right__body--shika .c-sub-title__main {
  color: #97add8;
}

.p-bleed-right__body--houmon .c-sub-title__main {
  color: #eabd5a;
}

.p-bleed-right__body--station .c-sub-title__main {
  color: #f092ae;
}

.p-bleed-right__sub-text {
  margin-top: 1em;
  font-size: 14px;
  line-height: 2.5;
}
.p-bleed-right__sub-text.p-bleed-right__sub-text--chiiki {
  font-weight: 500;
  font-size: 15px;
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-right__sub-text.p-bleed-right__sub-text--chiiki {
    font-size: 17px;
    line-height: 2;
    margin-top: 1.5em;
  }
}

.p-bleed-right__text-note {
  margin-top: 1.5em;
  font-size: 14px;
}
@media print, screen and (min-width: 1024px) {
  .p-bleed-right__text-note {
    margin-top: 40px;
  }
}

.p-page-hero {
  width: calc(100% - 10px);
  padding: 0;
  margin-left: 10px;
  margin-right: auto;
  margin-top: 9px;
  border-radius: 20px 0 0 20px;
  position: relative;
  overflow: hidden;
  left: 0;
  height: 100%;
  aspect-ratio: 73/34;
  position: relative;
  z-index: 1;
  line-height: 1.48;
}
.p-page-hero::before {
  content: "";
  background-image: linear-gradient(90deg, rgba(92, 92, 92, 0.39) 0%, rgba(92, 92, 92, 0) 40%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media print, screen and (min-width: 600px) {
  .p-page-hero {
    width: calc(100% - 30px);
    margin-top: 20px;
    margin-left: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero {
    width: calc(100% - 60px);
    margin-top: 20px;
    margin-left: 60px;
    aspect-ratio: 81/23;
    line-height: 1.95;
  }
}

.p-page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-page-hero__logo {
  opacity: 0.3;
  width: 37.86%;
  height: 95.29%;
  position: absolute;
  z-index: 2;
  top: 2.47%;
  left: 2.6%;
  background: url(../../assets/images/common/icon-logo.svg) 0 0 no-repeat;
  background-size: contain;
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero__logo {
    width: 16.84%;
    height: 70.21%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: 3.45%;
  }
}

.p-page-hero__heading {
  position: absolute;
  font-weight: 500;
  color: #fff;
  font-size: 27px;
  letter-spacing: 0.05em;
  top: 50%;
  left: 5.33%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.34);
  z-index: 2;
}
@media print, screen and (min-width: 600px) {
  .p-page-hero__heading {
    font-size: 34px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero__heading {
    font-size: clamp(50px, 3.57vw, 60px);
    top: 46.5%;
    left: 4.7%;
  }
}

.p-recruit__facility {
  background-image: linear-gradient(180deg, #ffffff, #fff7f7);
  padding-bottom: 60px;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 600px) {
  .p-recruit__facility {
    padding-bottom: 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-recruit__facility {
    padding-bottom: 120px;
    margin-bottom: 24px;
  }
}

.p-recruit__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5em;
  justify-content: center;
}
@media print, screen and (min-width: 600px) {
  .p-recruit__list {
    column-gap: 4%;
    row-gap: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-recruit__list {
    column-gap: 0;
  }
}
@media print, screen and (min-width: 600px) {
  .p-recruit__list p {
    width: 100%;
  }
}

.p-recruit__item {
  margin-top: 10px;
}
@media print, screen and (min-width: 600px) {
  .p-recruit__item {
    margin-top: 0px;
    width: 48%;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-recruit__item {
    width: 30.83%;
  }
}

.p-recruit__item-title {
  color: #f092ae;
  text-align: center;
  font-size: 17px;
  width: 100%;
  font-weight: 500;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-recruit__item-title {
    margin-bottom: 30px;
  }
}

.p-recruit__img {
  width: 100%;
  aspect-ratio: 63/22;
  border-radius: 10px;
  overflow: hidden;
}
@media print, screen and (min-width: 600px) {
  .p-recruit__img {
    aspect-ratio: 37/22;
    border-radius: 20px;
  }
}
.p-recruit__img img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.p-recruit__img.item01 img, .p-recruit__img.item06 img {
  transform: scale(1.05) translate(0, -28%);
}
@media print, screen and (min-width: 600px) {
  .p-recruit__img.item01 img, .p-recruit__img.item06 img {
    transform: scale(1.3) translate(4%, -11%);
  }
}
.p-recruit__img.item02 img {
  height: 100%;
  object-position: center;
}
.p-recruit__img.item03 img {
  transform: scale(1.05) translate(0, -30%);
}
@media print, screen and (min-width: 600px) {
  .p-recruit__img.item03 img {
    transform: scale(1.6) translate(4%, -19%);
  }
}
.p-recruit__img.item04 img {
  transform: scale(1.05) translate(0, -41%);
}
@media print, screen and (min-width: 600px) {
  .p-recruit__img.item04 img {
    transform: scale(1.8) translate(1%, -20%);
  }
}
.p-recruit__img.item05 img {
  transform: scale(1.3) translate(11%, -42%);
}
@media print, screen and (min-width: 600px) {
  .p-recruit__img.item05 img {
    transform: scale(1.7) translate(18%, -19%);
  }
}
.p-recruit__img.item07 img {
  transform: scale(1.25) translate(-1%, -26%);
}
@media print, screen and (min-width: 600px) {
  .p-recruit__img.item07 img {
    transform: scale(1.03) translate(1%, -2%);
  }
}
.p-recruit__img.item08 img {
  transform: scale(1) translate(0%, -36%);
}
@media print, screen and (min-width: 600px) {
  .p-recruit__img.item08 img {
    transform: scale(1.03) translate(1%, -2%);
  }
}
.p-recruit__img.item09 img {
  transform: scale(1.03) translate(0%, 1%);
}
@media print, screen and (min-width: 600px) {
  .p-recruit__img.item09 img {
    transform: scale(1.03) translate(1%, -2%);
  }
}

.p-recruit__item-label {
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  position: relative;
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-recruit__item-label {
    font-size: 18px;
    width: auto;
    margin-right: 1em;
  }
  .p-recruit__item-label::after {
    content: "/";
    display: inline-block;
    vertical-align: baseline;
    margin-left: 1em;
  }
  .p-recruit__item-label:last-of-type::after {
    display: none;
  }
}

.p-recruit__list-wrap {
  margin-top: 50px;
}
@media print, screen and (min-width: 600px) {
  .p-recruit__list-wrap {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-recruit__list-wrap {
    margin-top: 90px;
  }
}
.p-recruit__list-wrap .p-recruit__item-title {
  margin-top: 50px;
}
@media print, screen and (min-width: 1024px) {
  .p-recruit__list-wrap .p-recruit__item-title {
    margin-top: 90px;
  }
}

.p-recruit__btn {
  margin: 50px auto 0px;
  text-align: center;
}
@media print, screen and (min-width: 600px) {
  .p-recruit__btn {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-recruit__btn {
    margin-top: 90px;
  }
}
.p-recruit__btn button {
  text-align: center;
  padding: 10px 10px 11px;
  width: 274px;
}
@media print, screen and (min-width: 1024px) {
  .p-recruit__btn button {
    padding: 17px 20px 18px;
    width: 340px;
  }
}
.p-recruit__btn button:hover {
  cursor: pointer;
}

.p-aga__feature-img {
  width: 57px;
  height: 87px;
  overflow: hidden;
  bottom: 0;
  right: 14px;
}
@media print, screen and (min-width: 600px) {
  .p-aga__feature-img {
    width: 80px;
    height: 110px;
    right: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-aga__feature-img {
    width: 179px;
    height: 368px;
    right: 37px;
  }
}
.p-aga__feature-img img {
  object-fit: cover;
  object-position: 0 0;
}

@media print, screen and (min-width: 1024px) {
  .p-aga__feature {
    margin-top: 130px !important;
  }
}

.p-aga__treatment {
  margin-top: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-aga__treatment {
    margin-top: 123px !important;
  }
}

.p-aga__treatment__list {
  width: calc(100% - 60px);
  margin: 0 auto;
}
@media print, screen and (min-width: 600px) {
  .p-aga__treatment__list {
    width: calc(100% - 80px);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-aga__treatment__list {
    margin-top: 60px;
    width: 100%;
  }
}

.p-aga__treatment__num {
  position: relative;
  padding-left: 1.5em;
  line-height: 1;
  font-weight: 500;
  color: #8fc31f;
  margin-top: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-aga__treatment__num {
    margin-top: 30px;
    font-size: 20px;
    text-align: center;
    padding-left: 0;
  }
}
.p-aga__treatment__num::before {
  content: "";
  background-color: #8fc31f;
  width: 1.2em;
  height: 1.2em;
  border-radius: 100vw;
  position: absolute;
  left: 0;
  top: 0;
}
@media print, screen and (min-width: 1024px) {
  .p-aga__treatment__num::before {
    content: attr(data-num);
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    color: #fff;
    margin: 0 7px 0 0;
    line-height: 21px;
  }
}
.p-aga__treatment__num::after {
  content: attr(data-num);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0.4em;
  font-size: 0.95em;
}
@media print, screen and (min-width: 1024px) {
  .p-aga__treatment__num::after {
    display: none;
  }
}
.p-aga__treatment__num + .p-aga__treatment__text {
  margin-top: 10px;
  line-height: 1.76;
}
@media print, screen and (min-width: 1024px) {
  .p-aga__treatment__num + .p-aga__treatment__text {
    text-align: center;
    line-height: 2;
    width: calc(100% + 70px);
    margin-left: -35px;
  }
}

.p-aga__treatment-note {
  width: calc(100% - 60px);
  margin: 21px auto 0;
  background-color: #fff;
  padding: 20px 20px 20px 27px;
  color: #8fc31f;
  line-height: 2;
  position: relative;
}
@media print, screen and (min-width: 600px) {
  .p-aga__treatment-note {
    width: calc(100% - 80px);
    margin-top: 30px;
    text-align: center;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-aga__treatment-note {
    padding: 35px;
    font-size: 17px;
    font-weight: 500;
  }
}
.p-aga__treatment-note::before, .p-aga__treatment-note::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px; /* 3pxの高さの線を作る */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="3" viewBox="0 0 8 3"><circle cx="1.5" cy="1.5" r="1.5" fill="%238FC31F"/></svg>');
  background-repeat: repeat-x;
}
.p-aga__treatment-note::before {
  top: 0;
}
.p-aga__treatment-note {
  /* 上の線 */
}
.p-aga__treatment-note::after {
  bottom: 0;
}
.p-aga__treatment-note {
  /* 下の線 */
}

.p-aga__note {
  margin: 60px auto 0;
  width: calc(100% - 60px);
  padding-bottom: 60px;
}
@media print, screen and (min-width: 600px) {
  .p-aga__note {
    width: calc(100% - 80px);
    max-width: 800px;
  }
}
.p-aga__note .c-list {
  row-gap: 17px;
  margin-top: 10px;
}
@media print, screen and (min-width: 1024px) {
  .p-aga__note .c-list {
    padding: 0 60px;
  }
}
.p-aga__note .c-list__item {
  letter-spacing: -0.005em;
  font-size: 16px;
  line-height: 1.875;
}
@media print, screen and (min-width: 1024px) {
  .p-aga__note .c-list__item {
    font-size: 17px;
  }
}

.p-vaccination__intro-text {
  width: calc(100% - 50px);
  margin: 0 20px 0 30px;
  color: #96d2e8;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 500;
  font-size: clamp(17px, 4.76vw, 20px);
}
@media print, screen and (min-width: 600px) {
  .p-vaccination__intro-text {
    text-align: center;
    line-height: 2;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__intro-text {
    font-size: 25px;
    max-width: 918px;
    margin: 0 auto;
  }
}

.p-vaccination__intro-img {
  width: calc(100% - 30px);
  margin: 30px 0 0 auto;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
@media print, screen and (min-width: 600px) {
  .p-vaccination__intro-img {
    max-width: 1000px;
    border-radius: 30px;
    width: 90%;
    margin: 40px auto 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__intro-img {
    border-radius: 40px;
  }
}

.p-vaccination__type {
  background: #fcfaf4;
  margin-top: 76px;
  padding: 0 0 60px;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-vaccination__type {
    margin-top: 100px;
    margin-bottom: 40px;
    padding-bottom: 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__type {
    margin-top: 148px;
    margin-bottom: 60px;
    padding-bottom: 120px;
  }
}

.p-vaccination__btn {
  text-align: center;
  margin: 30px auto 0;
}
@media print, screen and (min-width: 600px) {
  .p-vaccination__btn {
    margin-top: 50px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__btn {
    margin-top: 60px;
  }
}

.p-vaccination__need {
  margin: 60px auto 0;
  background-color: #fff;
  border: 5px solid #96d2e8;
  border-radius: 20px;
  padding: 20px 20px 30px;
  width: calc(100% - 60px);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}
@media print, screen and (min-width: 600px) {
  .p-vaccination__need {
    margin-top: 70px;
    max-width: 1000px;
    width: calc(100% - 80px);
    padding: 30px 50px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__need {
    border-width: 8px;
    margin-top: 90px;
    border-radius: 50px;
    padding: 60px 100px;
  }
}

.p-vaccination__need-title,
.p-vaccination__name {
  color: #96d2e8;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
}

@media print, screen and (min-width: 600px) {
  .p-vaccination__need-title {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__need-title {
    font-size: 25px;
  }
}

.p-vaccination__name {
  margin-top: 0;
}
@media print, screen and (min-width: 600px) {
  .p-vaccination__name {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__name {
    font-size: 20px;
    margin-top: 12px;
  }
}

.p-vaccination__list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: center;
}
@media print, screen and (min-width: 600px) {
  .p-vaccination__list {
    gap: 14px;
    margin-top: 50px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__list {
    margin-top: 74px;
  }
}

.p-vaccination__item {
  width: 100%;
}
@media print, screen and (min-width: 600px) {
  .p-vaccination__item {
    width: 40%;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__item:nth-of-type(1) {
    width: 20.7%;
  }
  .p-vaccination__item:nth-of-type(2) {
    width: 38.58%;
  }
  .p-vaccination__item:nth-of-type(3) {
    width: 21.7%;
  }
}

@media print, screen and (min-width: 600px) {
  .p-vaccination__img {
    min-height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__img {
    min-height: 189px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.p-vaccination__img {
  text-align: center;
}
.p-vaccination__img img {
  display: inline-block;
}

.p-vaccination__explanation {
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.33;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__explanation {
    font-size: clamp(13px, 1.54vw, 17px);
    margin-top: 4px;
  }
}

.p-vaccination__note {
  margin-top: 30px;
  padding-bottom: 10px;
}
@media print, screen and (min-width: 600px) {
  .p-vaccination__note {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-vaccination__note {
    margin-top: 62px;
  }
}
.p-vaccination__note .c-note__heading::after {
  top: calc(50% + 2px);
}
.p-vaccination__note .c-note__heading--main {
  font-size: 15px;
}
@media print, screen and (min-width: 600px) {
  .p-vaccination__note .c-note__heading--main {
    font-size: clamp(20px, 2.08vw, 25px);
  }
}
.p-vaccination__note .c-note__text {
  font-size: 15px;
  font-weight: 500;
}
@media print, screen and (min-width: 600px) {
  .p-vaccination__note .c-note__text {
    font-size: clamp(15px, 1.54vw, 17px);
    font-weight: 400;
    line-height: 2;
    margin-top: 13px;
  }
}

.p-page-news__wrap {
  width: calc(100% - 82px);
  margin: 0 auto;
  max-width: 1000px;
}
@media print, screen and (min-width: 600px) {
  .p-page-news__wrap {
    width: calc(100% - 100px);
  }
}
.p-page-news__wrap .c-label {
  width: auto;
  font-size: 15px;
  min-width: 250px;
}
@media print, screen and (min-width: 1024px) {
  .p-page-news__wrap .c-label {
    width: 193px;
    min-width: 193px;
  }
}
.p-page-news__wrap .p-top-news__list-btn {
  bottom: 0;
  margin-top: 30px;
  text-align: center;
}
@media print, screen and (min-width: 600px) {
  .p-page-news__wrap .p-top-news__list-btn {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-page-news__wrap .p-top-news__list-btn {
    margin-top: 60px;
  }
}
.p-page-news__wrap .c-btn {
  position: relative;
  transform: none;
  left: 0;
}
@media print, screen and (min-width: 1024px) {
  .p-page-news__wrap .c-news__title {
    padding-top: 0;
  }
}

.p-support-center__intro .c-sub-title__main {
  color: #f29d79;
}

@media print, screen and (min-width: 1024px) {
  .p-support-center__for {
    margin-top: 163px !important;
  }
}

.p-support-center__btn {
  margin: 30px auto 0;
  text-align: center;
}
.p-support-center__btn .c-btn {
  padding: 10px 30px 11px 30px;
}
@media print, screen and (min-width: 1024px) {
  .p-support-center__btn .c-btn {
    padding: 16px 30px 15px 30px;
    width: 340px;
  }
}

.p-support-center__link {
  font-size: 14px;
  color: #5c5c5c;
  text-align: center;
  margin-top: 1em;
  font-weight: 500;
}
@media print, screen and (min-width: 600px) {
  .p-support-center__link {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-support-center__link {
    font-size: clamp(14px, 1.18vw, 17px);
  }
}

.c-response-time.c-response-time--chiiki {
  /* ここから */
}
.c-response-time.c-response-time--chiiki .c-response-time__contact {
  display: flex;
  justify-content: center;
  column-gap: 15px;
  align-items: flex-end;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time.c-response-time--chiiki .c-response-time__contact {
    margin-top: 33px;
    column-gap: 9.7%;
  }
}
.c-response-time.c-response-time--chiiki .c-response-time__contact-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: normal;
  color: #5c5c5c;
}
@media print, screen and (min-width: 600px) {
  .c-response-time.c-response-time--chiiki .c-response-time__contact-text {
    font-size: 18px;
    font-weight: 500;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-response-time.c-response-time--chiiki .c-response-time__contact-text {
    font-size: clamp(23px, 1.91vw, 27px);
  }
}
.c-response-time.c-response-time--chiiki .c-response-time__contact-num {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 0;
  line-height: 1.3;
}
@media print, screen and (min-width: 600px) {
  .c-response-time.c-response-time--chiiki .c-response-time__contact-num {
    font-size: 33px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-response-time.c-response-time--chiiki .c-response-time__contact-num {
    font-size: clamp(38px, 3.583vw, 43px);
  }
}

.p-support-center__feature {
  margin-top: 100px;
}
@media print, screen and (min-width: 600px) {
  .p-support-center__feature {
    margin-top: 140px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-support-center__feature {
    margin-top: 180px;
  }
}
.p-support-center__feature .c-section-title--overlap {
  margin-bottom: -5px;
}
@media print, screen and (min-width: 1024px) {
  .p-support-center__feature .c-section-title--overlap {
    margin-bottom: 30px;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-bleed-left__body--chiiki .p-bleed-left__text {
    padding-right: 2em;
    line-height: 2;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-bleed-right__body--chiiki .c-sub-title__main {
    letter-spacing: 0.04em;
  }
}

.p-news {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 600px) {
  .p-news {
    margin-top: 45px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news {
    margin-top: 84px;
  }
}
.p-news .c-section-title {
  width: 100%;
}

.p-news__wrap {
  border-top: 4px solid #f2f2f2;
  padding: 15px 0 60px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media print, screen and (min-width: 600px) {
  .p-news__wrap {
    width: calc(100% - 80px);
    padding: 20px 0 90px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news__wrap {
    display: flex;
    padding: 30px 0 120px;
    max-width: 1200px;
    width: calc(100% - 100px);
  }
}

.p-news__side {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 10px;
}
@media print, screen and (min-width: 600px) {
  .p-news__side {
    width: 480px;
    margin: 20px auto 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news__side {
    width: 193px;
    margin: 0;
    align-items: flex-start;
    align-content: flex-start;
  }
}

.p-news__side-title {
  text-align: center;
  width: 100%;
  color: #9f9e9e;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media print, screen and (min-width: 600px) {
  .p-news__side-title {
    margin-bottom: 15px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news__side-title {
    color: #414141;
  }
}

.p-news__main {
  margin: 60px auto 0;
  width: calc(100% - 26px);
}
@media print, screen and (min-width: 1024px) {
  .p-news__main {
    width: calc(100% - 193px);
    padding-left: 6.15%;
    margin: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news__main .c-news__list {
    margin-top: 0;
  }
}
.p-news__main .c-news__item {
  margin-top: 10px;
}
@media print, screen and (min-width: 1024px) {
  .p-news__main .c-news__item:nth-of-type(1) .c-news__link {
    margin-top: 0;
  }
}
.p-news__main .c-label {
  font-size: 15px;
}
@media print, screen and (min-width: 1024px) {
  .p-news__main .c-news__title {
    width: calc(100% - 306px);
  }
}

.p-news__pagination {
  margin-top: 60px;
}
@media print, screen and (min-width: 1024px) {
  .p-news__pagination {
    margin-top: 90px;
  }
}
.p-news__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.p-news__pagination .nav-links span,
.p-news__pagination .nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-news__pagination .nav-links .page-numbers {
  border: 1px solid #f092ae;
  background-color: #fff;
  color: #f092ae;
  font-size: 14px;
  min-width: 24px;
  min-height: 24px;
  border-radius: 100vw;
  line-height: 1;
  padding-bottom: 2px;
}
@media print, screen and (min-width: 600px) {
  .p-news__pagination .nav-links .page-numbers {
    font-size: 17px;
    min-width: 28px;
    min-height: 28px;
    padding-bottom: 3px;
  }
}
.p-news__pagination .nav-links .page-numbers.current {
  background-color: #f092ae;
  color: #fff;
}
.p-news__pagination .nav-links .page-numbers:hover {
  background-color: #f092ae;
  color: #fff;
}
.p-news__pagination .nav-links .page-numbers.next {
  border: none;
  color: #414141;
  margin-left: 10px;
  min-width: auto;
  min-height: auto;
  padding-bottom: 0;
  font-size: 14px;
}
@media print, screen and (min-width: 600px) {
  .p-news__pagination .nav-links .page-numbers.next {
    font-size: 17px;
  }
}
.p-news__pagination .nav-links .page-numbers.next:hover {
  background-color: #fff;
  color: #f092ae;
}
.p-news__pagination .nav-links .page-numbers.prev {
  border: none;
  color: #414141;
  margin-right: 10px;
  min-width: auto;
  min-height: auto;
  padding-bottom: 0;
  font-size: 14px;
}
@media print, screen and (min-width: 600px) {
  .p-news__pagination .nav-links .page-numbers.prev {
    font-size: 17px;
  }
}
.p-news__pagination .nav-links .page-numbers.prev:hover {
  background-color: #fff;
  color: #f092ae;
}
.p-news__pagination .nav-links .page-numbers__arrow {
  color: #f092ae;
  display: inline-block;
  margin-left: 10px;
  width: 7px;
}
.p-news__pagination .nav-links .page-numbers__arrow--prev {
  transform: scaleX(-1);
  margin-left: 0;
  margin-right: 10px;
}

.p-news__gap {
  width: 100%;
  background-color: #f2f2f2;
  height: 20px;
}

.p-news__body {
  width: calc(100% - 60px);
  margin: 31px auto 0;
  padding-bottom: 60px;
  font-size: 16px;
  line-height: 2.18;
}
@media print, screen and (min-width: 600px) {
  .p-news__body {
    padding-bottom: 90px;
    margin-top: 60px;
    width: calc(100% - 80px);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news__body {
    padding-bottom: 120px;
    margin-top: 120px;
    width: calc(100% - 100px);
    max-width: 1100px;
    font-size: 17px;
    line-height: 1.76;
  }
}
.p-news__body p {
  margin-top: 1.76em;
}
.p-news__body h2 {
  margin-top: 2em;
  font-weight: 600;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 0.1em;
  font-size: 1.2em;
  padding-left: 1em;
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .p-news__body h2 {
    padding-bottom: 0.2em;
    font-size: 22px;
    padding-left: 1.2em;
  }
}
.p-news__body h2::before {
  content: "";
  background-color: #f092ae;
  width: 0.3em;
  height: 1.1em;
  position: absolute;
  top: 0.6em;
  left: 4px;
  border-radius: 3px;
}
@media print, screen and (min-width: 1024px) {
  .p-news__body h2::before {
    top: 0.4em;
    left: 5px;
  }
}
.p-news__body h3,
.p-news__body h4 {
  margin-top: 2em;
  font-weight: 600;
}
.p-news__body h3 {
  font-size: 1.1em;
  background: rgba(240, 146, 174, 0.16);
  padding: 0.15em 1.5em 0.2em;
  border-radius: 100vw;
}
@media print, screen and (min-width: 1024px) {
  .p-news__body h3 {
    font-size: 19px;
    padding: 0.3em 1.5em 0.4em;
  }
}
.p-news__body h4 {
  font-size: 1em;
  position: relative;
  padding-left: 1.3em;
  padding-bottom: 0.1em;
  border-bottom: #e1e1e1 dashed 1px;
}
.p-news__body h4::before {
  content: "";
  background-color: #e3f6bf;
  border-radius: 100vw;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0.75em;
  left: 0;
}
@media print, screen and (min-width: 1024px) {
  .p-news__body h4::before {
    top: 0.55em;
  }
}
.p-news__body ul,
.p-news__body ol {
  margin-top: 1.8em;
  padding-left: 1.5em;
}
.p-news__body ul {
  list-style-type: disc;
}
.p-news__body ol {
  list-style-type: decimal;
}
.p-news__body > *:first-child {
  margin-top: 0;
}

@media print, screen and (min-width: 1024px) {
  .p-news__data {
    display: flex;
    align-items: center;
    column-gap: 20px;
  }
}
.p-news__data .c-label {
  min-width: 111px;
  min-height: 37px;
  width: auto;
}

.p-news__title {
  font-size: 17px;
  line-height: 1.76;
  border-bottom: 1px solid #9f9e9e;
  padding-bottom: 20px;
  margin-top: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-news__title {
    margin-top: 30px;
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding-bottom: 30px;
  }
}

.p-news__eyecatch {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
}
@media print, screen and (min-width: 1024px) {
  .p-news__eyecatch {
    border-radius: 30px;
  }
}
.p-news__eyecatch img {
  width: 100%;
  height: 100%;
}

.p-news__btn {
  margin: 60px auto 0;
  text-align: center;
}
.p-news__btn .c-btn {
  padding: 5px 30px 6px 10px;
}
@media print, screen and (min-width: 1024px) {
  .p-news__btn .c-btn {
    padding: 15px 30px 16px 20px;
  }
}

.p-about__greeting .l-inner.l-inner--bleed {
  max-width: 1460px;
}
.p-about__greeting .p-bleed-left__image {
  height: auto;
}
.p-about__greeting .p-bleed-left__body-text {
  text-align: justify;
}

.p-about__name {
  margin-top: 10px;
}
@media print, screen and (min-width: 600px) {
  .p-about__name {
    margin-top: 2em;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__name {
    margin-top: 60px;
  }
}

.p-about__overview {
  margin-top: 75px;
  background-image: linear-gradient(180deg, #fff, #fff7f7);
  padding-bottom: 60px;
}
@media print, screen and (min-width: 600px) {
  .p-about__overview {
    margin-top: 90px;
    padding-bottom: 120px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview {
    margin-top: 147px;
    padding-bottom: 120px;
  }
}
.p-about__overview .c-service-box__body .p-about__list--collabo {
  padding: 0 14px;
  justify-content: center;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .c-service-box__body .p-about__list--collabo {
    padding: 0;
    row-gap: 20px;
    margin-top: 5px;
  }
}
.p-about__overview .c-service-box__body .p-about__list--collabo .c-btn--collaboration {
  width: 100%;
  padding: 6px 30px;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .c-service-box__body .p-about__list--collabo .c-btn--collaboration {
    max-width: 170px;
    padding: 2px 22px;
  }
}
.p-about__overview .c-service-box__body .p-about__list--collabo .c-btn__blank {
  position: absolute;
  top: 10px;
  right: 22px;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .c-service-box__body .p-about__list--collabo .c-btn__blank {
    width: 16px;
    height: 13px;
    top: 8px;
    right: 20px;
  }
}
.p-about__overview .c-service-box__body .p-about__list--facility {
  padding: 0 7px;
  justify-content: center;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .c-service-box__body .p-about__list--facility {
    padding: 0;
    row-gap: 23px;
  }
}
.p-about__overview .c-service-box__body .p-about__list--facility .c-btn--facility {
  padding: 6px 33px 6px 17px;
  width: 100%;
  font-size: clamp(14px, 4.26vw, 16px);
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .c-service-box__body .p-about__list--facility .c-btn--facility {
    max-width: 138px;
    padding: 2px 19px;
  }
}
.p-about__overview .c-service-box__body .p-about__list--facility .c-btn--facility .c-btn--arrow {
  top: 12px;
  right: 17px;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .c-service-box__body .p-about__list--facility .c-btn--facility .c-btn--arrow {
    width: 5px;
    height: 8px;
    top: 10px;
    right: 20px;
  }
}
.p-about__overview .c-service-box__body .p-about__list--facility .c-btn--facility:hover {
  background-color: #fff;
  color: #8fc31f;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .c-service-box__body .p-about__list--facility .c-btn--facility:hover {
    background-color: #8fc31f;
    color: #fff;
  }
}
.p-about__overview .c-service-box__body .p-about__list--facility .c-btn--facility:hover .c-btn--arrow {
  right: 12px;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .c-service-box__body .p-about__list--facility .c-btn--facility:hover .c-btn--arrow {
    right: 15px;
  }
}
.p-about__overview .c-service-box__body .c-list__item {
  text-align: center;
}
@media print, screen and (min-width: 600px) {
  .p-about__overview .c-service-box__body .c-list__item {
    width: 49%;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .c-service-box__body .c-list__item {
    width: 100%;
    text-align: left;
    padding-left: 1em;
    position: relative;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .c-service-box__body .c-list__item::before {
    content: "";
    width: 3px;
    height: 3px;
    background-color: #414141;
    border-radius: 50%;
    position: absolute;
    top: 0.7em;
    left: 8px;
    box-shadow: 0 0 1px 0 rgba(65, 65, 65, 0.5);
  }
}
.p-about__overview .c-service-box__body .c-list__item:last-of-type {
  margin-bottom: 10px;
}
.p-about__overview .c-service-box__body .c-btn {
  font-size: 16px;
  width: 95%;
  max-width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .c-service-box__body .c-btn {
    margin-left: 20px;
    justify-content: flex-start;
  }
}
.p-about__overview .p-about__table {
  padding: 0 6px;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .p-about__table {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-about__overview .p-about__table dt,
.p-about__overview .p-about__table dd {
  font-size: 15px;
}
@media print, screen and (min-width: 600px) {
  .p-about__overview .p-about__table dt,
  .p-about__overview .p-about__table dd {
    font-size: 17px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .p-about__table dt,
  .p-about__overview .p-about__table dd {
    font-size: 20px;
  }
}
.p-about__overview .p-about__table dt {
  font-weight: 500;
  padding-bottom: 6px;
  margin-top: 8px;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .p-about__table dt {
    width: 120px;
    border-bottom: 3px solid #8fc31f;
    padding: 17px 0;
    margin-top: 0;
  }
  .p-about__overview .p-about__table dt:last-of-type {
    border-bottom: none;
  }
}
.p-about__overview .p-about__table dd {
  border-bottom: 1px solid #e3e3e3;
  position: relative;
  margin: 0;
  width: 100%;
  padding-bottom: 8px;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .p-about__table dd {
    width: calc(100% - 120px);
    padding: 17px 0 17px 40px;
    margin-top: 0;
  }
}
.p-about__overview .p-about__table dd::after {
  content: "";
  width: 56px;
  height: 2px;
  background: #8fc31f;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media print, screen and (min-width: 1024px) {
  .p-about__overview .p-about__table dd::after {
    display: none;
  }
}
.p-about__overview .p-about__table dd:last-of-type {
  border-bottom: none;
}
.p-about__overview .p-about__table dd:last-of-type::after {
  display: none;
}

.p-about__movie {
  margin-top: 30px;
  background-image: url(../../assets/images/about/about-movie-bg-03.png), url(../../assets/images/about/about-movie-bg-02.png), url(../../assets/images/about/about-movie-bg-01.png);
  background-position: 113.3% 14.1%, -13.8% 100%, 50% 0%;
  background-size: 53.3% auto, 60% auto, 100% auto;
  background-repeat: no-repeat;
  padding: 30px 20px 52px;
}
@media print, screen and (min-width: 600px) {
  .p-about__movie {
    margin-top: 40px;
    padding: 80px 40px 70px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__movie {
    margin-top: 60px;
    padding: 115px 50px 160px;
    background-position: right calc(50% - 550px) top 217px, left calc(50% - 534px) bottom 0, center top;
    background-size: 430px auto, 485px auto, 100% auto;
  }
}

.p-about__movie-text {
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-about__movie-text {
    margin-top: 60px;
  }
}

.p-about__movie-body {
  margin: 30px auto 0;
  max-width: 918px;
  position: relative;
  display: block;
  cursor: pointer;
}
.p-about__movie-body::before {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .p-about__movie-body::before {
    display: block;
  }
}
.p-about__movie-body::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  transition: opacity 0.3s;
}
@media print, screen and (min-width: 1024px) {
  .p-about__movie-body::before {
    width: 57px;
    height: 57px;
  }
}
.p-about__movie-body::after {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .p-about__movie-body::after {
    display: block;
  }
}
.p-about__movie-body::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%);
  z-index: 3;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #cecece;
}
@media print, screen and (min-width: 1024px) {
  .p-about__movie-body::after {
    left: 50.5%;
  }
}
.p-about__movie-body:hover::before {
  opacity: 0.7;
}
.p-about__movie-body.is-playing::before, .p-about__movie-body.is-playing::after {
  display: none;
}
.p-about__movie-body video {
  width: 100%;
  height: 100%;
  aspect-ratio: 328/185;
}

.p-top-access.p-about__access {
  padding-bottom: 60px;
  margin-top: 30px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-access.p-about__access {
    margin-top: 40px;
    padding-bottom: 90px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-access.p-about__access {
    margin-top: 60px;
    padding-bottom: 120px;
  }
}

.p-page-hero__img.is-doctor {
  object-fit: cover;
  object-position: 0 0;
  transform: scale(1.1) translateY(-1%);
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero__img.is-doctor {
    height: auto;
    transform: scale(1.01) translateY(-16%);
  }
}

.p-doctor__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
  justify-content: center;
  column-gap: 40px;
  align-content: flex-start;
}

.p-doctor__item {
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item {
    width: calc(50% - 20px);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    row-gap: 30px;
    justify-content: space-between;
  }
}

.p-doctor__position {
  background-color: #969696;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  padding: 3px 5px 2px;
  line-height: 1.47;
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__position {
    font-size: 20px;
    width: 100%;
    padding: 8px 1em;
  }
}

.p-doctor__img {
  border-radius: 10px;
  overflow: hidden;
  margin: 10px auto 0;
  aspect-ratio: 67/40;
  max-width: 363px;
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__img {
    aspect-ratio: 121/160;
    margin: 0;
    width: 46.5%;
    height: fit-content;
  }
}
.p-doctor__img img {
  object-fit: cover;
  object-position: 0 0;
}

@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-igarashi {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-igarashi {
    justify-content: center;
    width: 100%;
    column-gap: 6.5%;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-igarashi .p-doctor__img {
    width: 30.25%;
    margin-top: 30px;
  }
}
.p-doctor__item.is-igarashi .p-doctor__img img {
  transform: scale(1) translateY(-11.5%);
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-igarashi .p-doctor__img img {
    transform: none;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-igarashi .p-doctor__body {
    width: 29.91%;
    margin-top: 30px;
  }
}
.p-doctor__item.is-kaneko .p-doctor__img img {
  transform: scale(1) translateY(-11.5%);
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-kaneko .p-doctor__img img {
    transform: none;
  }
}
.p-doctor__item.is-aikawa .p-doctor__img img {
  transform: scale(1) translateY(-9.5%);
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-aikawa .p-doctor__img img {
    transform: none;
  }
}
.p-doctor__item.is-honda .p-doctor__img img {
  transform: scale(1) translateY(-10%);
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-honda .p-doctor__img img {
    transform: none;
  }
}
.p-doctor__item.is-saito .p-doctor__img img {
  transform: scale(1) translateY(-8%);
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-saito .p-doctor__img img {
    transform: none;
  }
}
.p-doctor__item.is-nihei .p-doctor__img img {
  transform: scale(1) translateY(-3%);
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-nihei .p-doctor__img img {
    transform: none;
  }
}
.p-doctor__item.is-abe .p-doctor__img img {
  transform: scale(1) translateY(-7.5%);
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-abe .p-doctor__img img {
    transform: none;
  }
}
.p-doctor__item.is-ando .p-doctor__img img {
  transform: scale(1) translateY(-3%);
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-ando .p-doctor__img img {
    transform: none;
  }
}
.p-doctor__item.is-muto .p-doctor__img img {
  transform: scale(1) translateY(-8%);
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-muto .p-doctor__img img {
    transform: none;
  }
}
.p-doctor__item.is-nakae .p-doctor__img img {
  transform: scale(1) translateY(-15.5%);
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__item.is-nakae .p-doctor__img img {
    transform: scale(1.12) translateY(-7.5%) translateX(-5.8%);
  }
}

@media print, screen and (min-width: 1024px) {
  .p-doctor__body {
    width: 48.1%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
  }
}

.p-doctor__name {
  margin-top: 20px;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #c3e2a5;
  font-weight: 500;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding: 12px 0px;
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__name {
    margin: 0;
    font-size: clamp(26px, 2.22vw, 32px);
    padding: 1.03em 0;
  }
}
.p-doctor__name::before, .p-doctor__name::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  /* 💡 SVGで「2pxの円を、7pxのキャンバスの端に置く」という命令 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='2'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23CECECE'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
}
.p-doctor__name::before {
  top: 0;
}
.p-doctor__name::after {
  bottom: 0;
}

.p-doctor__message {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.66;
  font-weight: 500;
  text-align: justify;
}
@media print, screen and (min-width: 1024px) {
  .p-doctor__message {
    padding-right: 0.5em;
  }
}

.p-page-hero__img.is-collaboration {
  object-fit: cover;
  object-position: 0 0;
  transform: scale(1.2) translateY(8%) translateX(6%);
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero__img.is-collaboration {
    width: 100%;
    height: auto;
    transform: scale(1.02) translateY(-8.5%) translateX(1%);
  }
}

.p-collaboration__list {
  background-image: linear-gradient(180deg, #fff, #ecf4fc);
  padding: 44px 30px 0;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__list {
    background: url(../../assets/images/collaboration/collaboration-list-bg.jpg) center no-repeat;
    background-size: cover;
    padding: 156px 50px 120px;
  }
}

.p-collaboration__title {
  text-align: center;
  color: #00437C;
  font-weight: 500;
  font-size: 20px;
}
@media print, screen and (min-width: 600px) {
  .p-collaboration__title {
    font-size: 25px;
  }
}
.p-collaboration__title:nth-of-type(1) {
  transform: translateY(-1em);
  margin-bottom: -1em;
}
@media print, screen and (min-width: 600px) {
  .p-collaboration__title:nth-of-type(1) {
    transform: none;
    margin-bottom: 0;
  }
}
.p-collaboration__title:last-of-type {
  margin-top: 60px;
}
@media print, screen and (min-width: 600px) {
  .p-collaboration__title:last-of-type {
    margin-top: 90px;
  }
}

.p-collaboration__btns {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 15px;
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-collaboration__btns {
    column-gap: 0.92%;
    row-gap: 20px;
    max-width: 1094px;
    margin: 30px auto 0;
  }
}
.p-collaboration__btns .c-btn--collabo {
  border-bottom: 2px solid #00437c;
  border-radius: 0;
  color: #00437c;
  font-size: 16px;
  text-align: center;
  line-height: 1.375;
  padding: 9px 10px 16px;
  width: calc(50% - 7.5px);
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__btns .c-btn--collabo {
    border: 1px solid #00437c;
    background-color: #fff;
    border-radius: 100vw;
    font-size: 18px;
    height: 61px;
    padding: 0 10px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24.31%;
  }
}
.p-collaboration__btns .c-btn--collabo:hover {
  opacity: 0.6;
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__btns .c-btn--collabo:hover {
    opacity: 1;
    background: #00437c;
    color: #fff;
  }
}

.p-collaboration__blank {
  position: absolute;
  width: 16px;
  height: 13px;
  top: calc(50% - 6px);
  right: 0;
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__blank {
    width: 18px;
    height: 14px;
    right: 27px;
    top: calc(50% - 8px);
  }
}

.p-collaboration__note {
  text-align: center;
  color: #00437c;
  margin-top: 30px;
  font-weight: 500;
}
@media print, screen and (min-width: 600px) {
  .p-collaboration__note {
    font-size: 17px;
  }
}

.p-collaboration__cards {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  margin: 30px auto 0;
  max-width: 500px;
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__cards {
    justify-content: space-between;
    max-width: 1200px;
    margin-top: 60px;
  }
}

.p-collaboration__card {
  padding-bottom: 20px;
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__card {
    width: 30%;
  }
}
.p-collaboration__card:nth-of-type(1) img {
  transform: scale(1) translateY(-15%);
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__card:nth-of-type(1) img {
    transform: scale(1.2) translateY(7%) translateX(1%);
  }
}
.p-collaboration__card:nth-of-type(2) img {
  transform: scale(1.04) translateY(-12%);
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__card:nth-of-type(2) img {
    transform: scale(1.2) translateY(7%) translateX(1%);
  }
}
.p-collaboration__card:nth-of-type(3) img {
  transform: scale(1.1) translateY(-22%);
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__card:nth-of-type(3) img {
    transform: scale(1.16) translateY(7.5%) translateX(-0.5%);
  }
}
.p-collaboration__card:nth-of-type(4) img {
  transform: scale(1.1) translateY(-14%);
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__card:nth-of-type(4) img {
    transform: scale(1.16) translateY(-5%) translateX(-0.5%);
  }
}
.p-collaboration__card:hover {
  opacity: 0.6;
}
.p-collaboration__card .c-btn {
  background: #00437c;
  width: 86%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: -19px;
  padding: 5px 10px 6px;
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__card .c-btn {
    width: clamp(240px, 19.4vw, 280px);
    min-height: 39px;
  }
}
.p-collaboration__card .p-collaboration__blank {
  right: 14px;
}

.p-collaboration__img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 63/25;
}
@media print, screen and (min-width: 1024px) {
  .p-collaboration__img {
    border-radius: 20px;
    aspect-ratio: 9/7;
  }
}

.p-collaboration__intro .p-bleed-left__body-text {
  text-align: justify;
}

.p-page-hero__img.is-access {
  width: auto;
  height: auto;
  transform: scale(1.01) translateY(0%) translateX(-1%);
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero__img.is-access {
    transform: scale(1) translateY(-25%) translateX(0%);
    width: 100%;
  }
}

.p-access {
  padding-bottom: 60px;
}
@media print, screen and (min-width: 600px) {
  .p-access {
    padding-bottom: 90px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-access {
    padding-bottom: 120px;
  }
}

.p-access__map {
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
}
@media print, screen and (min-width: 600px) {
  .p-access__map {
    border-radius: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-access__map {
    border-radius: 40px;
  }
}

.p-access__map-iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 335/303;
  border-radius: 10px;
}
@media print, screen and (min-width: 600px) {
  .p-access__map-iframe {
    aspect-ratio: 1200/511;
  }
}
.p-access__map-text {
  margin-top: 10px;
  line-height: 1.41;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media print, screen and (min-width: 600px) {
  .p-access__map-text {
    margin-top: 20px;
    text-align: center;
    line-height: 1.75;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-access__map-text {
    margin-top: 30px;
  }
}

.p-access__unit {
  margin-top: 30px;
}
@media print, screen and (min-width: 1024px) {
  .p-access__unit {
    margin: 60px auto 0;
    max-width: 800px;
  }
}

.p-access__unit-title {
  background-color: #eff3f9;
  border-radius: 100vw;
  text-align: center;
  padding: 3px 1em 2px;
  font-weight: 500;
}
@media print, screen and (min-width: 1024px) {
  .p-access__unit-title {
    font-size: 20px;
    line-height: 1.5;
    padding: 5px 1em 5px;
  }
}

.p-access__unit-text {
  margin-top: 10px;
}
@media print, screen and (min-width: 1024px) {
  .p-access__unit-text {
    padding-left: 21.5%;
    margin-top: 30px;
  }
}
.p-access__unit-text .c-list {
  row-gap: 0;
}

.p-access__unit-img {
  margin: 10px auto 0;
  max-width: 640px;
}
@media print, screen and (min-width: 1024px) {
  .p-access__unit-img {
    margin-top: 37px;
  }
}

.p-access__unit-parking {
  text-align: right;
  margin: 10px auto 0;
  max-width: 640px;
}

.p-page-hero__img.is-health-check {
  width: auto;
  height: auto;
  transform: scale(1) translateY(-14%);
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero__img.is-health-check {
    transform: scale(1) translateY(-29%);
    width: 100%;
  }
}

.p-health-check {
  background-color: #f2f2f2;
  margin-bottom: 60px;
}
@media print, screen and (min-width: 600px) {
  .p-health-check {
    margin-bottom: 100px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-health-check {
    margin-bottom: 205px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-health-check.is-top {
    margin-top: 120px;
  }
}

.p-health-check__list {
  padding: 28px 20px 60px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: space-between;
}
@media print, screen and (min-width: 600px) {
  .p-health-check__list {
    padding: 40px 40px 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-health-check__list {
    padding: 50px 50px 75px;
    max-width: 1365px;
    margin: 0 auto;
  }
}

.p-health-check__link {
  overflow: hidden;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  aspect-ratio: 67/34;
  position: relative;
}
@media print, screen and (min-width: 600px) {
  .p-health-check__link {
    width: 47.43%;
    aspect-ratio: 15/8;
  }
}
.p-health-check__link:hover .p-health-check__img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}

.p-health-check__img {
  transition: all 0.5s ease;
}

.p-health-check__label {
  background: rgba(151, 173, 216, 0.9);
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 1em 9px;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media print, screen and (min-width: 1024px) {
  .p-health-check__label {
    font-size: 32px;
    padding: 10px 1em 9px;
  }
}

.p-check__intro .c-sub-title__main {
  color: #97add8;
}

.p-check__diagnosis {
  margin-top: 76px;
  background-color: #eff3f9;
  padding: 0 20px 30px;
  margin-bottom: 90px;
}
@media print, screen and (min-width: 1024px) {
  .p-check__diagnosis {
    margin-bottom: 30px;
    padding: 0 50px 90px;
  }
}
.p-check__diagnosis .c-section-title--overlap {
  transform: translateY(-24%);
}
@media print, screen and (min-width: 600px) {
  .p-check__diagnosis {
    padding: 0 40px 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-check__diagnosis {
    margin-top: 175px;
    padding: 0 50px 120px;
  }
  .p-check__diagnosis .c-section-title--overlap {
    transform: translateY(-50%);
  }
}

.p-check__body {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  width: calc(100% - 20px);
  margin: 32px auto 0;
  padding: 30px 20px 60px;
}
@media print, screen and (min-width: 600px) {
  .p-check__body {
    padding: 50px 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-check__body {
    padding: 60px 12.5% 60px;
    max-width: 1200px;
    margin: 60px auto 0;
  }
}

.p-check__sub-heading {
  text-align: center;
  font-weight: 500;
  text-align: center;
  font-size: 16px;
  border-bottom: 2px solid #97add8;
  padding-bottom: 2px;
  color: #97add8;
  width: calc(100% - 48px);
  margin: 0 auto;
  margin-top: 60px;
}
@media print, screen and (min-width: 1024px) {
  .p-check__sub-heading {
    width: 352px;
    border-width: 4px;
    font-size: 20px;
    letter-spacing: 0.05em;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.p-check__sub-heading:first-of-type {
  margin-top: 0;
}

.p-check__text {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
}
@media print, screen and (min-width: 1024px) {
  .p-check__text {
    font-size: 17px;
    margin-top: 30px;
  }
}

.p-check__heading {
  background-color: #97add8;
  color: #fff;
  text-align: center;
  font-weight: 500;
  border-radius: 10px;
  padding: 3px 1em 4px;
  margin-top: 30px;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 1024px) {
  .p-check__heading {
    font-size: 25px;
    margin-top: 60px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.p-check__target {
  margin-top: 10px;
}
@media print, screen and (min-width: 1024px) {
  .p-check__target {
    margin-top: 16px;
    padding-left: 18.25%;
  }
}
.p-check__target li {
  padding-left: 1.4em;
  position: relative;
  font-size: clamp(15px, 4vw, 16px);
  line-height: 1.56;
  font-weight: 500;
}
@media print, screen and (min-width: 1024px) {
  .p-check__target li {
    font-size: 20px;
  }
}
.p-check__target li::before {
  content: "●";
  color: #97add8;
  position: absolute;
  left: 0;
  top: 0;
}

.p-check__target-note {
  font-weight: 500;
  display: block;
  text-align: center;
  margin-top: 30px;
}
.p-check__target-etc {
  display: inline-block;
  margin-left: 0.5em;
}
@media print, screen and (min-width: 1024px) {
  .p-check__target-etc {
    margin-left: 8em;
  }
}

.p-checkup__detail.kenshin01 .p-checkup__text {
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-checkup__detail.kenshin02 {
    margin-top: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-checkup__detail.kenshin02 .p-checkup__body {
    padding: 30px 13.5%;
  }
}
.p-checkup__detail.kenshin02 .c-list--ol {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
@media print, screen and (min-width: 1024px) {
  .p-checkup__detail.kenshin02 .c-list--ol {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-checkup__detail.kenshin03 {
    margin-top: 30px;
  }
}
.p-checkup__detail.kenshin03 .p-checkup__text {
  text-align: center;
  font-size: 18px;
  text-align: center;
}

.p-checkup__detail-note {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .p-checkup__detail-note {
    display: block;
    font-size: 17px;
    margin-top: 20px;
    width: 100%;
    margin-left: -1em;
  }
}

.p-check__btn {
  margin-top: 30px;
  text-align: center;
}

.p-check__text-consultation {
  margin-top: 30px;
  padding: 0 18px;
  text-align: center;
  line-height: 1.33;
  font-size: 15px;
}
@media print, screen and (min-width: 1024px) {
  .p-check__text-consultation {
    margin-top: 30px;
    font-size: 17px;
    line-height: 2;
  }
}

.c-note.p-check__reservation {
  margin-top: 30px;
  padding-bottom: 10px;
}
@media print, screen and (min-width: 1024px) {
  .c-note.p-check__reservation {
    margin-top: 60px;
    padding-bottom: 30px;
  }
}
.c-note.p-check__reservation .c-note__heading--main {
  font-size: clamp(16px, 4.61vw, 18px);
  padding: 0 0.7em;
}
@media print, screen and (min-width: 1024px) {
  .c-note.p-check__reservation .c-note__heading--main {
    font-size: 25px;
  }
}
.c-note.p-check__reservation .c-note__text {
  text-align: center;
  font-size: 13px;
}
@media print, screen and (min-width: 1024px) {
  .c-note.p-check__reservation .c-note__text {
    font-size: 17px;
    margin-top: 14px;
  }
}

.p-check__tel {
  color: #97add8;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.p-check__tel-text {
  font-size: 14px;
}
@media print, screen and (min-width: 1024px) {
  .p-check__tel-text {
    font-size: 18px;
  }
}

.p-check__tel-num {
  font-size: 34px;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width: 1024px) {
  .p-check__tel-num {
    font-size: 43px;
    line-height: 1.3;
  }
}

.p-consign__intro .c-sub-title__main {
  color: #97add8;
}

.p-consign {
  margin-top: 76px;
  background-color: #eff3f9;
  padding: 0 20px 30px;
}
.p-consign .c-section-title--overlap {
  transform: translateY(-24%);
}
@media print, screen and (min-width: 600px) {
  .p-consign {
    padding: 0 40px 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-consign {
    margin-top: 175px;
    padding: 0 50px 120px;
  }
  .p-consign .c-section-title--overlap {
    transform: translateY(-50%);
  }
}

.p-consign__heading {
  position: relative;
  text-align: center;
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-consign__heading {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-consign__heading {
    font-size: 25px;
    margin: 35px auto 0;
    max-width: 1268px;
  }
}
.p-consign__heading::after {
  content: "";
  background: #97add8;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
}
.p-consign__heading:last-of-type {
  margin-top: 60px;
}
@media print, screen and (min-width: 1024px) {
  .p-consign__heading:last-of-type {
    margin-top: 80px;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-consign__wrap {
    max-width: 1268px;
    margin: 0 auto;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-consign-tabs {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
}

.p-consign-tabs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 10px;
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-consign-tabs__list {
    max-width: 600px;
    margin: 30px auto 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-consign-tabs__list {
    width: 26.26%;
    margin: 0;
    align-content: flex-start;
    row-gap: 30px;
  }
}

.p-consign-tabs__item {
  width: calc(50% - 5px);
}
@media print, screen and (min-width: 1024px) {
  .p-consign-tabs__item {
    width: 100%;
  }
}

.p-consign-tabs__button {
  position: relative;
  border: 1px solid #97add8;
  background-color: #97add8;
  color: #fff;
  font-size: clamp(14px, 4.26vw, 16px);
  font-weight: 500;
  text-align: center;
  width: 100%;
  border-radius: 100vw;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 6px;
  min-height: 56px;
  transition: all 0.5s ease;
}
@media print, screen and (min-width: 1024px) {
  .p-consign-tabs__button {
    border-radius: 0 100vw 100vw 0;
    border: none;
    border-left: 5px solid #97add8;
    background-color: #eff3f9;
    color: #97add8;
    height: 68px;
    font-size: 20px;
  }
}
.p-consign-tabs__button:hover {
  cursor: pointer;
  background-color: #fff;
  color: #97add8;
  transition: all 0.5s ease;
}
@media print, screen and (min-width: 1024px) {
  .p-consign-tabs__button:hover {
    background-color: #97add8;
    color: #fff;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-consign-tabs__button:hover .c-btn--arrow {
    right: 14px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-consign-tabs__button.is-active {
    background-color: #97add8;
    color: #fff;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-consign-tabs__button.is-active .c-btn--arrow {
    right: 14px;
  }
}
.p-consign-tabs__button .c-btn--arrow {
  transform: rotate(90deg);
  top: calc(50% - 8px);
  right: 14px;
  width: 8px;
  height: 16px;
}
@media print, screen and (min-width: 1024px) {
  .p-consign-tabs__button .c-btn--arrow {
    transform: none;
    right: 24px;
  }
}

.p-consign__heading-main {
  display: inline-block;
  width: auto;
  padding: 0.2em 0.7em;
  background-color: #eff3f9;
  z-index: 1;
  font-weight: 500;
  color: #97add8;
  position: relative;
  letter-spacing: 0.05em;
}

.p-consign-tabs__content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  position: fixed;
  top: 62px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  padding: 35px 30px;
  background-color: rgba(237, 240, 246, 0.9);
  overflow-y: auto;
}
@media print, screen and (min-width: 1024px) {
  .p-consign-tabs__content {
    opacity: 1;
    width: 65.69%;
    position: static;
    visibility: visible;
    background-color: #fff;
    border-radius: 30px;
    padding: 60px 63px 60px 68px;
    height: stretch;
  }
}
.p-consign-tabs__content.is-modal-open {
  opacity: 1;
  visibility: visible;
  /* タブのパネルがデフォルトで見えないように制御する場合 */
}

.p-consign-tabs__panel-title {
  background-color: #97add8;
  border-radius: 8px;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  width: 81.9%;
  padding: 2px;
}
@media print, screen and (min-width: 1024px) {
  .p-consign-tabs__panel-title {
    width: 100%;
    font-size: 25px;
    padding: 4px;
  }
}

.p-consign-tabs__close-btn {
  position: absolute;
  top: 35px;
  right: 30px;
  width: 37px;
  height: 37px;
  color: #fff;
  font-size: 30px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background-color: #97add8;
  border: 1px solid #97add8;
  border-radius: 8px;
  cursor: pointer;
  z-index: 997;
}
@media print, screen and (min-width: 1024px) {
  .p-consign-tabs__close-btn {
    display: none;
  }
}
.p-consign-tabs__close-btn::after {
  content: "閉じる";
  color: #97add8;
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  top: 39px;
  right: 0px;
  white-space: nowrap;
}

.p-consign__body {
  margin-top: 25px;
}
@media print, screen and (min-width: 1024px) {
  .p-consign__body {
    margin-top: 30px;
    line-height: 2.05;
    font-size: 17px;
  }
}

.p-consign__list li {
  text-indent: -0.5em;
  margin-left: 1em;
}
.p-consign__list li::before {
  content: "●";
  display: inline-block;
  color: #97add8;
}

.p-consign__label {
  display: inline-block;
  background-color: #f092ae;
  color: #fff;
  font-weight: 700;
  padding: 0 43px;
  margin-bottom: 19px;
}
@media print, screen and (min-width: 1024px) {
  .p-consign__label {
    margin-bottom: 30px;
  }
}

.p-consign__note {
  margin-top: 60px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-consign__note {
    margin-top: 90px;
  }
}

.p-consign__note--link {
  color: #97add8;
  text-align: center;
  font-weight: 500;
  margin-top: 30px;
}
@media print, screen and (min-width: 1024px) {
  .p-consign__note--link {
    margin-top: 10px;
    font-size: 25px;
  }
}

.p-consign__btn {
  margin-top: 30px;
  text-align: center;
}
.p-consign__btn .c-btn {
  padding: 10px;
}
@media print, screen and (min-width: 1024px) {
  .p-consign__btn .c-btn {
    padding: 16px 1em 16px;
    width: 340px;
  }
}
.p-consign__btn .p-top-collaboration__blank {
  width: 18px;
  height: 14px;
  top: 16px;
  right: 26px;
}
@media print, screen and (min-width: 1024px) {
  .p-consign__btn .p-top-collaboration__blank {
    top: 22px;
  }
}

.p-consign__shika {
  margin-top: 30px;
}
.p-consign__shika .p-consign-tabs__panel-title {
  width: 100%;
}
.p-consign__shika .p-consign__body {
  background-color: #fff;
  padding: 30px 10px;
}
@media print, screen and (min-width: 600px) {
  .p-consign__shika .p-consign__body {
    padding: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-consign__shika .p-consign__body {
    border-radius: 30px;
    padding: 60px 66px 60px 65px;
    max-width: 833px;
    margin: 30px auto 0;
  }
}
.p-consign__shika .p-consign__list {
  margin-top: 30px;
}

.p-consign__attention {
  background-color: #f092ae;
  border-radius: 10px;
  color: #fff;
  padding: 10px;
  margin-top: 30px;
}
@media print, screen and (min-width: 1024px) {
  .p-consign__attention {
    max-width: 1268px;
    margin: 60px auto 0;
    text-align: center;
    font-weight: 500;
    font-size: clamp(18px, 1.75vw, 20px);
    padding: 13px 1em 13px;
  }
}

.p-consign__kokuho {
  margin-top: 60px;
}
@media print, screen and (min-width: 1024px) {
  .p-consign__kokuho {
    max-width: 900px;
    margin: 97px auto 0;
    padding: 0 50px;
  }
}
.p-consign__kokuho .p-checkup__detail {
  border-radius: 0;
  padding: 30px 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-consign__kokuho .p-checkup__detail {
    border-radius: 20px;
  }
}

.p-consign-tabs__text .p-consign-tabs__list {
  row-gap: 0;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}
.p-consign-tabs__text .p-consign-tabs__list li {
  width: 100%;
  text-indent: -0.5em;
  margin-left: 1em;
}
.p-consign-tabs__text .p-consign-tabs__list li::before {
  content: "◎";
  display: inline-block;
}

.p-checkup__detail {
  background-color: #eff3f9;
  border-radius: 15px;
  padding: 10px 20px;
  margin-top: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-checkup__detail {
    border-radius: 20px;
    padding: 13px 15px 14px;
  }
}
.p-checkup__detail:first-of-type {
  margin-top: 30px;
}

.p-checkup__heading {
  text-align: center;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.p-checkup__body {
  background-color: #fff;
  padding: 20px 17px;
  margin-top: 13px;
}
@media print, screen and (min-width: 1024px) {
  .p-checkup__body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.p-checkup__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.66;
}
.p-checkup__text p {
  margin-top: 0;
}

.c-note.p-consign__time {
  margin: 30px auto 0;
  width: calc(100% - 60px);
}
@media print, screen and (min-width: 1024px) {
  .c-note.p-consign__time {
    text-align: center;
    width: 100%;
    margin-top: 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-note.p-consign__time .c-note__text {
    margin-top: 20px;
    line-height: 2;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-checkup__list {
    display: flex;
  }
}
.p-checkup__list p {
  width: 4em;
}
.p-checkup__list ul li {
  color: #5c5c5c;
}
@media print, screen and (min-width: 1024px) {
  .p-checkup__list ul li {
    color: #414141;
  }
}
.p-checkup__list ul li::before {
  content: "●";
  margin-right: 0.1em;
  color: #414141;
}

@media print, screen and (min-width: 1024px) {
  .p-facility.is-top {
    margin-top: 130px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-facility.is-last {
    padding-bottom: 160px;
  }
}
.p-facility .c-facility-card {
  padding: 0 30px;
  margin: 60px auto 0;
}
@media print, screen and (min-width: 600px) {
  .p-facility .c-facility-card {
    padding: 0 40px;
    max-width: 680px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-facility .c-facility-card {
    margin-top: 130px;
  }
}
@media print, screen and (min-width: 600px) {
  .p-facility .c-facility-card__title {
    font-size: clamp(13px, 1.66vw, 17px);
  }
}

.p-page-hero__img.is-clinic {
  object-fit: cover;
  object-position: 0 0;
  transform: scale(1.2) translateY(-9%) translateX(6%);
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero__img.is-clinic {
    width: 100%;
    height: auto;
    transform: scale(1.02) translateY(-5%) translateX(1%);
  }
}

.p-clinic__intro .c-sub-title__main {
  color: #c9a2c5;
}
.p-clinic__intro .p-bleed-right__in-img {
  transform: scale(1.1) translateY(-5%) translateX(-3%);
}

.p-clinic__info {
  margin-top: 90px;
}
@media print, screen and (min-width: 1024px) {
  .p-clinic__info.is-last {
    padding-bottom: 160px;
  }
}

.p-dept-card {
  margin-top: 90px;
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card {
    max-width: 1300px;
    margin: 120px auto 0;
    padding: 0 50px;
  }
}
.p-dept-card::first-of-type {
  margin-top: 0;
}
.p-dept-card .c-response-time__table {
  margin: 20px auto 0;
  max-width: 700px;
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card .c-response-time__table {
    margin-top: 30px;
  }
}
.p-dept-card .c-response-time__table th {
  font-size: 18px;
  width: 10.88%;
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card .c-response-time__table th {
    font-size: 23px;
    width: 10.7%;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card .c-response-time__table td {
    font-size: 23px;
  }
}
.p-dept-card .c-response-time__table .c-response-time__heading {
  width: 23.8%;
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card .c-response-time__table .c-response-time__heading {
    font-size: 23px;
    width: 25.1%;
  }
}
.p-dept-card .c-response-time__table .is-active {
  font-size: 1.4em;
}
.p-dept-card .c-response-time__table .is-note {
  font-size: 14px;
  line-height: 1.2;
}

.p-dept-card__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 25/6;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 17px;
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card__img {
    aspect-ratio: 80/21;
    margin-bottom: 35px;
    border-radius: 20px;
  }
}

.p-dept-card__label {
  position: absolute;
  width: 315px;
  text-align: center;
  border-radius: 10px;
  padding: 4px 10px 5px 10px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  border: 2px solid;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -33px;
  z-index: 2;
  font-weight: 500;
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card__label {
    font-size: 32px;
    padding: 16px 10px 18px;
    width: 450px;
    border-radius: 16px;
    margin-top: -71px;
  }
}

.p-dept-card--naika .p-dept-card__in-img {
  transform: scale(1.1) translateY(-22%) translateX(-4%);
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card--naika .p-dept-card__in-img {
    transform: scale(1) translateY(-13%) translateX(0%);
  }
}
.p-dept-card--naika .p-dept-card__label {
  color: #c3e2a5;
  border-color: #c3e2a5;
}
.p-dept-card--naika .c-response-time__table .is-active {
  color: #c3e2a5;
}

.p-dept-card--nyusen .p-dept-card__in-img {
  transform: scale(1.1) translateY(-22%) translateX(4%);
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card--nyusen .p-dept-card__in-img {
    transform: scale(1) translateY(-26%) translateX(0%);
  }
}
.p-dept-card--nyusen .p-dept-card__label {
  color: #e6a7c7;
  border-color: #e6a7c7;
}
.p-dept-card--nyusen .c-response-time__table .is-active {
  color: #e6a7c7;
}

.p-dept-card--seikei .p-dept-card__in-img {
  transform: scale(1.03) translateY(-28%);
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card--seikei .p-dept-card__in-img {
    transform: scale(1.02) translateY(-24%) translateX(0%);
  }
}
.p-dept-card--seikei .p-dept-card__label {
  color: #99c4e3;
  border-color: #99c4e3;
}
.p-dept-card--seikei .c-response-time__table .is-active {
  color: #99c4e3;
}

.p-dept-card--shika .p-dept-card__in-img {
  transform: scale(1.02) translateY(-21%) translateX(-1%);
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card--shika .p-dept-card__in-img {
    transform: scale(1.02) translateY(-22%) translateX(0%);
  }
}
.p-dept-card--shika .p-dept-card__label {
  color: #97add8;
  border-color: #97add8;
}
.p-dept-card--shika .c-response-time__table .is-active {
  color: #97add8;
}

.p-dept-card--houmon .p-dept-card__in-img {
  transform: scale(1) translateY(-16%) translateX(0%);
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card--houmon .p-dept-card__in-img {
    transform: scale(1.02) translateY(-20%) translateX(0);
  }
}
.p-dept-card--houmon .p-dept-card__label {
  color: #eabd5a;
  border-color: #eabd5a;
}
.p-dept-card--houmon .c-response-time__table .is-active {
  color: #eabd5a;
}

.p-dept-card__detail {
  margin: 30px auto 0;
  width: calc(100% - 40px);
}
@media print, screen and (min-width: 600px) {
  .p-dept-card__detail {
    width: calc(100% - 80px);
    max-width: 1200px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card__detail {
    margin-top: 60px;
  }
}
.p-dept-card__detail + .p-dept-card__detail {
  margin-top: 60px;
}

.p-dept-card__type {
  padding: 0 1em;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card__type {
    font-size: 20px;
  }
}

.p-dept-card__note {
  font-size: 13px;
  margin: 8px auto 0;
  line-height: 1.38;
  max-width: 700px;
}
.p-dept-card__note.p-dept-card__note--large {
  font-size: 14px;
  font-weight: 500;
  max-width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card__note.p-dept-card__note--large {
    font-size: 15px;
  }
}

.p-dept-card__btn {
  margin-top: 60px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-dept-card__btn .c-btn {
    width: 340px;
  }
}

.c-response-time--naika .c-response-time__inner {
  margin-top: 60px;
  padding: 46px 15px 30px;
}
@media print, screen and (min-width: 600px) {
  .c-response-time--naika .c-response-time__inner {
    padding: 50px 30px 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-response-time--naika .c-response-time__inner {
    padding: 50px 50px 43px;
  }
}
.c-response-time--naika .c-response-time__type-name {
  position: absolute;
  background-color: #c3e2a5;
  color: #fff;
  text-align: center;
  padding: 4px 15px;
  line-height: 1.33;
  display: inline-block;
  min-width: 250px;
  min-height: 33px;
  border-radius: 100vw;
  left: 50%;
  transform: translateX(-50%) translateY(calc(180% - 20px));
}
@media print, screen and (min-width: 1024px) {
  .c-response-time--naika .c-response-time__type-name {
    transform: translateX(-50%) translateY(calc(200% - 30px));
  }
}
.c-response-time--naika .c-response-time__type-name:first-of-type {
  transform: translateX(-50%) translateY(-138%);
}
@media print, screen and (min-width: 600px) {
  .c-response-time--naika .c-response-time__type-name:first-of-type {
    transform: translateX(-50%) translateY(-4em);
  }
}
@media print, screen and (min-width: 1024px) {
  .c-response-time--naika .c-response-time__type-name:first-of-type {
    transform: translateX(-50%) translateY(-164%);
  }
}
@media print, screen and (min-width: 1024px) {
  .c-response-time--naika .c-response-time__type-name {
    font-size: 20px;
    width: 532px;
    padding-top: 7px;
    padding-bottom: 8px;
  }
}
.c-response-time--naika .c-response-time__detail:not(:nth-of-type(2)) {
  margin-top: 83px;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time--naika .c-response-time__detail:not(:nth-of-type(2)) {
    margin-top: 112px;
  }
}

.p-internal-medicine__details .c-service-box__body {
  padding: 30px 25px 30px 26px;
}
@media print, screen and (min-width: 1024px) {
  .p-internal-medicine__details .c-service-box__body {
    padding: 60px 13.211%;
  }
}
.p-internal-medicine__details .c-service-box__list li::after {
  background-image: radial-gradient(circle, #c3e2a5 1px, transparent 1px);
}
.p-internal-medicine__details .c-service-box__in-list li::before {
  color: #c3e2a5;
}
.p-internal-medicine__details .c-service-box__last-text {
  margin-top: 30px;
  color: #c3e2a5;
}
.p-internal-medicine__details .c-service-box__detail {
  max-width: 660px;
  margin: 0 auto;
}

.p-internal-medicine__transition {
  margin-bottom: 80px;
}
@media print, screen and (min-width: 600px) {
  .p-internal-medicine__transition {
    margin-bottom: 100px;
    margin-top: 100px;
  }
}
.p-internal-medicine__transition .p-internal-medicine__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-internal-medicine__transition .p-internal-medicine__btn {
    column-gap: 30px;
  }
}

.p-page-hero.is-breast {
  background-color: rgba(230, 167, 199, 0.35);
}
.p-page-hero.is-breast::before {
  display: none;
}

.p-page-hero__img.is-orthopedic-surgery {
  object-fit: cover;
  object-position: 0 0;
  transform: scale(1.2) translateY(6%) translateX(2%);
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero__img.is-orthopedic-surgery {
    width: 100%;
    height: auto;
    transform: scale(1) translateY(-8%) translateX(0%);
  }
}

.p-page-hero__img.is-dental {
  transform: scale(1.08) translateY(-2%) translateX(0%);
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero__img.is-dental {
    width: 100%;
    height: auto;
    transform: scale(1) translateY(-31%) translateX(0%);
  }
}

.c-media-box.p-dental__for {
  margin-top: 60px;
}
@media print, screen and (min-width: 600px) {
  .c-media-box.p-dental__for {
    margin-top: 90px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box.p-dental__for {
    margin-top: 120px;
  }
}
.c-media-box.p-dental__for .c-media-box__title::before {
  background: #97add8;
}
@media print, screen and (min-width: 600px) {
  .c-media-box.p-dental__for .c-media-box__list {
    width: 100%;
    max-width: 100%;
  }
}
.c-media-box.p-dental__for .c-media-box__item {
  color: #97add8;
}

.p-dental__cando {
  margin: 60px auto 0;
  background-color: rgba(151, 173, 216, 0.1);
}
@media print, screen and (min-width: 600px) {
  .p-dental__cando {
    margin: 90px auto 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-dental__cando {
    margin: 120px auto 0;
  }
}
.p-dental__cando .c-service-box__list {
  color: #97add8;
}
.p-dental__cando .c-service-box__list li::after {
  background-image: radial-gradient(circle, #97add8 1px, transparent 1px);
}

@media print, screen and (min-width: 1024px) {
  .p-dental__intro .c-sub-title__main {
    font-size: 25px;
  }
}

@media print, screen and (min-width: 1024px) {
  .c-response-time--shika .c-response-time__contact-name {
    text-align: center;
    padding-left: 0;
  }
}

.c-media-box--check.p-visit__for {
  margin-top: 60px;
}
@media print, screen and (min-width: 600px) {
  .c-media-box--check.p-visit__for {
    margin-top: 90px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box--check.p-visit__for {
    margin-top: 153px;
  }
}
.c-media-box--check.p-visit__for .c-media-box__title::before {
  background-color: #eabd5a;
}
@media print, screen and (min-width: 1024px) {
  .c-media-box--check.p-visit__for .c-media-box__list {
    width: 100%;
    max-width: 100%;
  }
}
.c-media-box--check.p-visit__for .c-media-box__item {
  color: #eabd5a;
}

.p-visit__for-img {
  width: 61px;
  height: 126px;
  right: 5px;
  bottom: 0;
}
@media print, screen and (min-width: 600px) {
  .p-visit__for-img {
    width: 90px;
    height: 186px;
    right: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-visit__for-img {
    width: 159px;
    height: 328px;
    right: 40px;
  }
}

.p-visit__cando {
  margin-top: 76px;
  background-color: rgba(234, 189, 90, 0.1);
}
@media print, screen and (min-width: 600px) {
  .p-visit__cando {
    margin-top: 100px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-visit__cando {
    margin-top: 174px;
  }
}
.p-visit__cando .c-service-box__list {
  color: #eabd5a;
}
.p-visit__cando .c-service-box__list li::after {
  background-image: radial-gradient(circle, #eabd5a 1px, transparent 1px);
}

@media print, screen and (min-width: 1024px) {
  .c-response-time--houmon .c-response-time__contact-name {
    text-align: center;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 1440px) {
  .p-visit__feature .p-bleed-left .c-sub-title {
    margin-right: -116px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-visit__feature .p-bleed-left .p-bleed-left__text {
    padding-right: 2em;
  }
}
.p-visit__feature .p-bleed-right__text {
  text-align: justify;
}

@media print, screen and (min-width: 1024px) {
  .p-nursing-care__intro .c-sub-title__main {
    font-size: clamp(24px, 2.22vw, 32px);
  }
}

.p-nursing-care__for {
  margin-top: 60px;
}
@media print, screen and (min-width: 600px) {
  .p-nursing-care__for {
    margin-top: 90px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-nursing-care__for {
    margin-top: 153px;
  }
}
.p-nursing-care__for .c-media-box__title::before {
  background: #d8889f;
}
.p-nursing-care__for .c-media-box--check .c-media-box__item {
  color: #d8889f;
}
@media print, screen and (min-width: 1024px) {
  .p-nursing-care__for .c-media-box__list {
    width: 100%;
    max-width: 100%;
  }
}

.p-nursing-care__for-img {
  width: 83px;
  height: 120px;
  right: 8px;
  bottom: 0;
}
@media print, screen and (min-width: 600px) {
  .p-nursing-care__for-img {
    width: 130px;
    height: 190px;
    right: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-nursing-care__for-img {
    width: 206px;
    height: 297px;
    right: 40px;
    bottom: 90px;
  }
}

.p-nursing-care__cando {
  margin-top: 76px;
  background-color: rgba(216, 136, 159, 0.1);
}
@media print, screen and (min-width: 600px) {
  .p-nursing-care__cando {
    margin-top: 100px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-nursing-care__cando {
    margin-top: 174px;
  }
}
.p-nursing-care__cando .c-section-title--overlap {
  transform: translateY(-25%);
}
@media print, screen and (min-width: 1024px) {
  .p-nursing-care__cando .c-section-title--overlap {
    transform: translateY(-50%);
  }
}
.p-nursing-care__cando .c-service-box__list {
  color: #d8889f;
}
.p-nursing-care__cando .c-service-box__list li::after {
  background-image: radial-gradient(circle, #d8889f 1px, transparent 1px);
}
.p-nursing-care__cando .c-service-box__detail {
  text-align: center;
}

.p-nursing-care__feature .c-sub-title__main {
  color: #d8889f;
}

.p-cta-nursing {
  margin-top: 15px;
}
@media print, screen and (min-width: 600px) {
  .p-cta-nursing {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing {
    margin-top: 70px;
  }
}

.p-cta-nursing__title {
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  color: #5c5c5c;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width: 600px) {
  .p-cta-nursing__title {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing__title {
    font-size: 32px;
    margin-bottom: 50px;
    margin-top: 80px;
  }
}
.p-cta-nursing__title:first-of-type {
  margin-top: 0;
}

@media print, screen and (min-width: 600px) {
  .p-cta-nursing__list {
    padding-left: 20%;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing__list {
    padding-left: 26.5%;
  }
}

.p-cta-nursing__item {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 600px) {
  .p-cta-nursing__item {
    font-size: 22px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing__item {
    font-size: 25px;
  }
}
.p-cta-nursing__item::before {
  content: "●";
  color: #f092ae;
}

.p-cta-nursing__guide {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 600px) {
  .p-cta-nursing__guide {
    max-width: 716px;
    margin: 0 auto;
    justify-content: space-between;
    row-gap: 58px;
    margin-bottom: 5px;
  }
}
.p-cta-nursing__guide dt {
  background: #969696;
  color: #fff;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing__guide dt {
    width: 138px;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }
}
.p-cta-nursing__guide dt:first-of-type {
  margin-top: 0;
}
.p-cta-nursing__guide dd {
  margin-left: 0;
  font-weight: 500;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing__guide dd {
    width: 555px;
  }
}

.p-cta-nursing__date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing__date {
    justify-content: flex-start;
    margin-top: 0;
  }
}

.p-cta-nursing__week {
  width: 93px;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing__week {
    width: 124px;
    font-size: 25px;
  }
}

.p-cta-nursing__time {
  margin-top: 0 !important;
  font-size: clamp(15px, 4.25vw, 17px);
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing__time {
    width: calc(100% - 124px);
    font-size: 25px;
  }
}

.p-cta-nursing__holiday {
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing__holiday {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 12px;
  }
}

.p-cta-nursing__when {
  text-align: center;
  width: 100%;
  margin-top: 10px;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing__when {
    font-size: 25px;
    width: auto;
    display: inline-block;
    margin-top: 0;
  }
}

.p-cta-nursing__note {
  text-align: center;
  width: 100%;
  margin-top: 10px !important;
  font-weight: 400;
  font-size: 14px;
}
@media print, screen and (min-width: 1024px) {
  .p-cta-nursing__note {
    width: auto;
    display: inline-block;
    margin-top: 0 !important;
  }
}

.p-page-hero.is-home-care-support .p-page-hero__img {
  width: 100%;
  height: auto;
  transform: scale(1) translateY(-22%) translateX(0%);
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero.is-home-care-support .p-page-hero__img {
    transform: scale(1) translateY(-45%) translateX(0%);
  }
}

.p-home-care-support__cando {
  margin-top: 76px;
  background-color: rgba(201, 162, 197, 0.1);
  margin-bottom: 60px;
}
@media print, screen and (min-width: 600px) {
  .p-home-care-support__cando {
    margin-top: 100px;
    margin-bottom: 90px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-home-care-support__cando {
    margin-top: 174px;
    margin-bottom: 120px;
  }
}
.p-home-care-support__cando .c-section-title--overlap {
  transform: translateY(-25%);
}
@media print, screen and (min-width: 1024px) {
  .p-home-care-support__cando .c-section-title--overlap {
    transform: translateY(-50%);
  }
}
.p-home-care-support__cando .c-service-box__list {
  color: #c9a2c5;
}
.p-home-care-support__cando .c-service-box__list li::after {
  background-image: radial-gradient(circle, #c9a2c5 1px, transparent 1px);
}
.p-home-care-support__cando .c-service-box__text {
  font-size: clamp(16px, 4.5vw, 18px);
}
.p-home-care-support__cando .c-service-box__detail {
  text-align: center;
  font-size: clamp(15px, 4.35vw, 17px);
}

.p-home-care-support__landscape {
  padding: 0 30px;
  margin: 60px auto 0;
}
@media print, screen and (min-width: 600px) {
  .p-home-care-support__landscape {
    margin-top: 90px;
    padding: 0 40px;
    max-width: 1100px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-home-care-support__landscape {
    padding: 0 50px;
    margin-top: 120px;
  }
}

.p-home-care-support__image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 303/206;
}
@media print, screen and (min-width: 600px) {
  .p-home-care-support__image {
    border-radius: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-home-care-support__image {
    border-radius: 40px;
    aspect-ratio: 100/51;
  }
}

.p-home-care-support__in-image {
  transform: scale(1.02) translateY(-3%) translateX(0%);
}
@media print, screen and (min-width: 1024px) {
  .p-home-care-support__in-image {
    transform: scale(1) translateY(-16%) translateX(0%);
  }
}

.p-home-care-support__flow {
  max-width: 700px;
  margin: 0 auto;
}

.p-home-care-support__item {
  font-size: clamp(17px, 4.76vw, 20px);
  line-height: 1.75;
  color: #2b2b2b;
  font-weight: 500;
  position: relative;
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 20px 10px 20px 30px;
  margin-bottom: 22px;
}
@media print, screen and (min-width: 1024px) {
  .p-home-care-support__item {
    padding-right: 15px;
  }
}
.p-home-care-support__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid #c9a2c5;
}
.p-home-care-support__item:last-of-type {
  margin-bottom: 0;
}
.p-home-care-support__item:last-of-type::after {
  display: none;
}

@media print, screen and (min-width: 1024px) {
  .c-service-box__body:has(.p-home-care-support__flow) {
    padding: 60px 50px;
  }
}

.p-search__body {
  width: calc(100% - 60px);
  margin: 31px auto 0;
  padding-bottom: 60px;
  font-size: 16px;
  line-height: 2.18;
}
@media print, screen and (min-width: 600px) {
  .p-search__body {
    padding-bottom: 90px;
    margin-top: 60px;
    width: calc(100% - 80px);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-search__body {
    padding-bottom: 120px;
    margin-top: 120px;
    width: calc(100% - 100px);
    max-width: 1100px;
    font-size: 17px;
    line-height: 1.76;
  }
}

.p-search__title {
  font-weight: 700;
  font-size: 2em;
  border-bottom: 1px solid #eee;
}

.p-search__result {
  margin-top: 2em;
  font-weight: 500;
  font-size: 1.2em;
}

.p-search__list {
  margin-top: 3em;
}

.p-search__item {
  margin: 1em 0 0 1em;
  padding-left: 1em;
  position: relative;
}
.p-search__item::before {
  content: "";
  background-color: #414141;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  position: absolute;
  top: 1em;
  left: 0;
  transform: translateY(-50%);
}
.p-search__item a {
  text-decoration: underline;
}
.p-search__item a:hover {
  color: #f092ae;
}

.p-search__snippet {
  margin-top: 0.4em;
  font-size: 0.88em;
  color: #888;
  line-height: 1.65;
}

.p-search__snippet-mark {
  background-color: rgba(240, 146, 174, 0.25);
  color: inherit;
}

.p-search__empty {
  margin-top: 3em;
}

.c-nav-list {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.c-nav-list li {
  line-height: 1;
  padding: 5px 0;
}

.u-display-sp .c-nav-list__link-wrap {
  display: flex;
  column-gap: 10px;
  margin-top: 25px;
}
.u-display-sp .c-nav-list__item {
  color: #414141;
}
.u-display-sp .c-nav-list__child,
.u-display-sp .c-nav-list__grandchild {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  transition: all 0.2s ease;
}
.u-display-sp .c-nav-list__grandchild {
  font-weight: 400;
}
.u-display-sp .c-nav-list__grandchild-sub {
  margin: 0.7em 0 0 0.5em;
  display: flex;
  column-gap: 1.5em;
}
.u-display-sp .c-nav-list__grandchild-sub-item {
  padding-left: 14px;
  font-size: 0.95em;
  position: relative;
}
.u-display-sp .c-nav-list__grandchild-sub-item::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #414141;
  position: absolute;
  top: 50%;
  left: 0;
}
.u-display-sp .c-nav-list__child-item {
  margin-top: 20px;
  margin-left: 18px;
}
.u-display-sp .c-nav-list__child-item .c-nav-list__link-wrap {
  margin-top: 10px;
}
.u-display-sp .c-nav-list__grandchild-item {
  margin-top: 20px;
  margin-left: 18px;
}
.u-display-sp .c-nav-list__item.is-open > .c-nav-list__child,
.u-display-sp .c-nav-list__child-item.is-open > .c-nav-list__grandchild {
  opacity: 1;
  max-height: 1000px;
  transition: all 0.4s ease;
}
.u-display-sp .c-nav-list__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
}
.u-display-sp .c-nav-list__toggle-icon {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.u-display-sp .c-nav-list__toggle-icon.--close {
  position: absolute;
  opacity: 0;
}
.u-display-sp .c-nav-list__toggle[aria-expanded=true] .c-nav-list__toggle-icon.--open {
  opacity: 0;
}
.u-display-sp .c-nav-list__toggle[aria-expanded=true] .c-nav-list__toggle-icon.--close {
  opacity: 1;
  transform: rotate(0);
}
.u-display-sp .c-nav-list__arrow {
  color: #8fc31f;
  display: inline-block;
  width: 9px;
}

.u-display-pc .c-nav-list {
  display: flex;
  align-items: center;
  column-gap: 24px;
  flex-wrap: nowrap;
}
.u-display-pc .c-nav-list__item {
  position: static;
}
.u-display-pc .c-nav-list__item .c-nav-list__link {
  position: relative;
  overflow: hidden;
  padding-bottom: 6px;
}
.u-display-pc .c-nav-list__item .c-nav-list__link::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #8fc31f;
  position: absolute;
  bottom: 0;
  left: -100%;
  transition: all 0.3s ease;
}
.u-display-pc .c-nav-list__item:hover .c-nav-list__link::before {
  left: 0;
  transition: all 0.3s ease;
}
.u-display-pc .c-nav-list__item:hover .c-nav-list__arrow {
  color: #8fc31f;
}
.u-display-pc .c-nav-list__item:hover .c-nav-list__child {
  opacity: 1;
  visibility: visible;
}
.u-display-pc .c-nav-list .c-nav-list__child-item:nth-of-type(1) {
  margin-left: 19px;
}
.u-display-pc .c-nav-list .c-nav-list__child-item.c-nav-list__child-item--chiiki {
  margin-top: 40px;
  margin-left: 19px;
}
@media print, screen and (min-width: 1369px) {
  .u-display-pc .c-nav-list .c-nav-list__child-item.c-nav-list__child-item--chiiki {
    margin-top: 0;
    margin-left: 0;
  }
}
.u-display-pc .c-nav-list .c-nav-list__child-item:hover::before {
  left: 0;
  transition: all 0.3s ease;
}
.u-display-pc .c-nav-list .c-nav-list__child-link:hover {
  color: #8fc31f;
}
.u-display-pc .c-nav-list__child {
  position: fixed;
  z-index: 1001;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #f2f2f2;
  padding: 35px 6vw 42px 9vw;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  /* アニメーション用設定 */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1680px) {
  .u-display-pc .c-nav-list__child {
    padding: 35px 11vw 42px 12.85%;
  }
}
.u-display-pc .c-nav-list__child-link {
  /* font-size: 14px;
  color: #666; */
  position: relative;
  overflow: hidden;
  padding-bottom: 4px;
}
.u-display-pc .c-nav-list__child-link::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #8fc31f;
  position: absolute;
  bottom: 0;
  left: -100%;
  transition: all 0.3s ease;
}
.u-display-pc .c-nav-list__child-link:hover::before {
  left: 0;
  transition: all 0.3s ease;
}
.u-display-pc .c-nav-list__child-item .c-nav-list__arrow {
  display: none;
}
.u-display-pc .c-nav-list__child .c-nav-list__grandchild {
  margin-top: 10px;
  padding-left: 15px;
}
.u-display-pc .c-nav-list__child .c-nav-list__grandchild-link {
  font-size: 14px;
  color: #666;
  position: relative;
  overflow: hidden;
  padding-bottom: 4px;
}
.u-display-pc .c-nav-list__child .c-nav-list__grandchild-link::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #8fc31f;
  position: absolute;
  bottom: 0;
  left: -100%;
  transition: all 0.3s ease;
}
.u-display-pc .c-nav-list__child .c-nav-list__grandchild-link:hover {
  color: #8fc31f;
}
.u-display-pc .c-nav-list__child .c-nav-list__grandchild-link:hover::before {
  left: 0;
  transition: all 0.3s ease;
}
.u-display-pc .c-nav-list__child .c-nav-list__grandchild-item {
  margin-top: 5px;
}
.u-display-pc .c-nav-list__child .c-nav-list__grandchild-item:hover {
  color: #8fc31f;
}
.u-display-pc .c-nav-list__child--title {
  gap: 8px;
  margin-bottom: 18px;
  width: 100%;
}
.u-display-pc .c-nav-list__child--title .c-nav-list__link {
  padding-bottom: 0;
}
.u-display-pc .c-nav-list__child--title .c-nav-list__link::before {
  display: none;
}
.u-display-pc .c-nav-list__child--title .c-nav-list__arrow {
  color: #8fc31f;
}
.u-display-pc .c-nav-list__child--title .c-nav-list__link:hover {
  opacity: 0.4;
}
.u-display-pc .c-nav-list__child::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: transparent;
}
.u-display-pc .c-nav-list__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-right: 5px;
  vertical-align: middle;
}
.u-display-pc .c-nav-list .c-nav-list__toggle {
  display: none;
}
.u-display-pc .c-nav-list__grandchild-sub {
  display: flex;
  column-gap: 1em;
  margin: 0 0 0 1.1em;
}
.u-display-pc .c-nav-list__grandchild-sub-item {
  padding-left: 10px;
  font-size: 14px;
  color: #666;
  position: relative;
}
.u-display-pc .c-nav-list__grandchild-sub-item::before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #888;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
}
.u-display-pc .c-nav-list__grandchild-sub-link {
  position: relative;
  overflow: hidden;
  padding-bottom: 3px;
}
.u-display-pc .c-nav-list__grandchild-sub-link::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #8fc31f;
  position: absolute;
  bottom: 0;
  left: -100%;
  transition: all 0.3s ease;
}
.u-display-pc .c-nav-list__grandchild-sub-link:hover {
  color: #8fc31f;
}
.u-display-pc .c-nav-list__grandchild-sub-link:hover::before {
  left: 0;
  transition: all 0.3s ease;
}

@media print, screen and (min-width: 1024px) {
  .l-header__nav .c-nav-list__arrow,
  .l-header__nav .c-nav-list__toggle {
    display: none;
  }
}
.l-header__nav .c-nav-list__child .c-nav-list__arrow {
  display: inline-block;
}
.l-header__nav .c-nav-list__child-item .c-nav-list__arrow {
  display: none;
}

.c-nav-list__item--tel {
  display: none;
  padding: 0 !important;
}
@media print, screen and (min-width: 1024px) {
  .c-nav-list__item--tel {
    display: block;
  }
}

.c-nav-list__tel {
  width: 20px;
  height: 22px;
}

.c-nav-list__link-tel {
  display: flex;
  align-items: center;
  color: #f092ae !important;
}

.c-nav-list__link-text-tel {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  padding-bottom: 5px;
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  margin-left: 5px;
}

@media print, screen and (min-width: 1024px) {
  .l-header:has(.p-search-form:hover) .c-nav-list {
    font-size: 14px;
  }
}

.c-search-box {
  background: #fff;
  width: 69.5%;
  border-radius: 100vw;
  margin: 0 auto;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  display: flex;
  max-width: 300px;
}
@media print, screen and (min-width: 1024px) {
  .c-search-box {
    background: #fff;
    width: auto;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    align-items: center;
    justify-content: flex-end;
  }
}

.c-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 997;
  background: rgba(242, 242, 242, 0.95);
  padding: 8px 20px;
  color: #f092ae;
}
@media print, screen and (min-width: 600px) {
  .c-cta-bar {
    display: none;
  }
}

.c-cta-bar__link {
  display: flex;
  width: 50%;
  align-items: center;
  font-size: min(3.733vw, 15px);
  font-weight: 500;
}
.c-cta-bar__link:last-of-type {
  padding-left: 14px;
  border-left: 1px solid #fff;
}

.c-cta-bar__icon-phone {
  width: 13px;
  display: inline-block;
  margin-right: 6px;
}

.c-cta-bar__icon-arrow {
  width: 6px;
  display: inline-block;
  margin-left: 5px;
}

.c-icon-line {
  width: 39px;
  display: inline-block;
  margin-left: 7px;
  padding-bottom: 11px;
}
@media print, screen and (min-width: 1024px) {
  .c-icon-line {
    width: 11.3%;
  }
}

.c-to-top {
  position: absolute;
  right: 9px;
  bottom: 50px;
  width: 45px;
  height: 45px;
  z-index: 996;
  transition: all 0.3s ease;
}
.c-to-top:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .c-to-top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 60px;
    bottom: 65px;
    z-index: 999;
    cursor: pointer;
    /* ふわっと消えるための設定 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease-out;
    /* クラスがついたら表示 */
  }
  .c-to-top.is-show {
    opacity: 0.7;
    visibility: visible;
    transform: translateY(0);
  }
  .c-to-top:hover {
    opacity: 1;
  }
}

.c-section-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  align-items: center;
  text-align: center;
}
@media print, screen and (min-width: 600px) {
  .c-section-title {
    column-gap: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-section-title--overlap {
    margin-top: -1.5em; /* 文字の高さの半分くらいをマイナスで上に飛ばす */
    position: relative;
    z-index: 10; /* 前のセクションより上に乗るように */
  }
}

.c-section-title__main {
  font-size: 20px;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #5c5c5c;
}
@media print, screen and (min-width: 600px) {
  .c-section-title__main {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-section-title__main {
    font-size: 32px;
  }
}

.c-section-title--en .c-section-title__sub {
  color: #f092ae;
  width: 100%;
  display: block;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.4;
  margin-top: -4px;
}
.c-section-title--line {
  margin-bottom: 29px;
}
@media print, screen and (min-width: 600px) {
  .c-section-title--line {
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-section-title--line {
    margin-bottom: 59px;
  }
}
.c-section-title--line .c-section-title__main {
  position: relative;
  padding-bottom: 8px;
}
.c-section-title--line .c-section-title__main::after {
  content: "";
  width: 65px;
  height: 2px;
  border-radius: 1px;
  background: #f092ae;
  position: absolute;
  bottom: 0;
  left: calc(50% - 32px);
}

.c-section-title__icon img {
  width: 100%;
}

@media print, screen and (min-width: 1024px) {
  .c-section-title__icon--contact {
    width: 32px;
  }
}

.c-section-title--overlap {
  position: relative;
  z-index: 20;
  transform: translateY(-50%);
  margin-bottom: -0.8em;
}

.c-btn {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: 17px;
  padding: 10px 30px 11px 10px;
}
@media print, screen and (min-width: 1024px) {
  .c-btn {
    padding: 16px 30px 15px 20px;
  }
}

.c-btn--pink {
  background-color: #f092ae;
}

.c-btn--pink-grad {
  background-color: #f092ae;
  width: 274px;
}
@media print, screen and (min-width: 1024px) {
  .c-btn--pink-grad {
    width: clamp(280px, 20.23vw, 340px);
    max-width: 340px;
  }
}
.c-btn--pink-grad::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(120deg, #ecfdc8, #fddbdb);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
@media print, screen and (min-width: 1024px) {
  .c-btn--pink-grad .c-btn--arrow {
    right: 21px;
  }
}
.c-btn--pink-grad:hover {
  color: #f092ae;
}
.c-btn--pink-grad:hover::before {
  opacity: 1;
}
.c-btn--pink-grad:hover .c-btn--arrow {
  right: 15px;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .c-btn--pink-grad:hover .c-btn--arrow {
    right: 11px;
  }
}

.c-btn--green {
  background-color: #8fc31f;
  color: #fff;
}

.c-btn--red {
  background-color: #f09292;
  color: #fff;
}

.c-btn--pill {
  border-radius: 100vw;
  color: #fff;
}

.c-btn--arrow {
  position: absolute;
  width: 7px;
  height: 14px;
  top: 18px;
  right: 26px;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .c-btn--arrow {
    top: 23px;
  }
}

.c-btn--pdf {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 13px;
  left: 17px;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .c-btn--pdf {
    top: 18px;
    left: 30px;
  }
}

.c-btn--collaboration {
  background-color: #00437C;
  border: 1px solid #00437C;
  color: #fff;
  border-radius: 100vw;
  width: 100%;
  text-align: center;
  position: relative;
  max-width: 266px;
}
@media print, screen and (min-width: 600px) {
  .c-btn--collaboration {
    width: calc(50% - 5px);
    font-size: clamp(16px, 1.07vw, 18px);
    background-color: #ffffff;
    color: #00437C;
  }
}
.c-btn--collaboration:hover {
  background-color: #ffffff;
  color: #00437C;
}
@media print, screen and (min-width: 600px) {
  .c-btn--collaboration:hover {
    background-color: #00437C;
    color: #ffffff;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-btn--collaboration.c-btn--multiple {
    padding: 4px 20px 8px;
    line-height: 1.23;
  }
}

.c-btn--cat {
  width: calc(50% - 7.5px);
  color: #fff;
  padding: 7px 23px 7px 13px;
  font-size: clamp(11px, 3.78vw, 15px);
  line-height: 1.33;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f2f2f2;
}
@media print, screen and (min-width: 1024px) {
  .c-btn--cat {
    width: 100%;
    min-height: 63px;
  }
}
.c-btn--cat .c-btn--arrow {
  width: 5px;
  height: 9px;
  top: calc(50% - 4px);
  right: 13px;
}
.c-btn--cat:hover, .c-btn--cat.is-active {
  color: #fff;
}
.c-btn--cat:hover .c-btn--arrow, .c-btn--cat.is-active .c-btn--arrow {
  right: 9px;
}

.c-btn--naika {
  color: #c3e2a5;
}
.c-btn--naika:hover, .c-btn--naika.is-active {
  background-color: #c3e2a5;
}
.c-btn--naika.is-wide {
  letter-spacing: 1em;
  padding-left: 2em;
}

.c-btn--nyusen {
  color: #e6a7c7;
}
.c-btn--nyusen:hover, .c-btn--nyusen.is-active {
  background-color: #e6a7c7;
}

.c-btn--seikei {
  color: #99c4e3;
}
.c-btn--seikei:hover, .c-btn--seikei.is-active {
  background-color: #99c4e3;
}

.c-btn--shika {
  color: #97add8;
}
.c-btn--shika:hover, .c-btn--shika.is-active {
  background-color: #97add8;
}

.c-btn--houmon {
  color: #eabd5a;
  padding-left: 24px;
}
.c-btn--houmon:hover, .c-btn--houmon.is-active {
  background-color: #eabd5a;
}

.c-btn--station {
  color: #d8889f;
}
.c-btn--station:hover, .c-btn--station.is-active {
  background-color: #d8889f;
}

.c-btn--kyotaku {
  color: #c9a2c5;
}
.c-btn--kyotaku:hover, .c-btn--kyotaku.is-active {
  background-color: #c9a2c5;
}

.c-btn--chiiki {
  color: #f29d79;
}
.c-btn--chiiki:hover, .c-btn--chiiki.is-active {
  background-color: #f29d79;
}

.c-btn--shisetsu {
  color: #d88888;
}
.c-btn--shisetsu:hover, .c-btn--shisetsu.is-active {
  background-color: #d88888;
}

.c-btn--other {
  color: #5c5c5c;
}
.c-btn--other:hover, .c-btn--other.is-active {
  background-color: #ccc;
}

.c-btn--facility {
  background-color: #8fc31f;
  border: 1px solid #8fc31f;
}
@media print, screen and (min-width: 1024px) {
  .c-btn--facility {
    background-color: #fff;
    color: #8fc31f;
  }
}

.c-btn--check {
  background-color: #97add8;
  border: 2px solid #e3e3e3;
  min-width: 242px;
  width: 76.8%;
  max-width: 270px;
}
@media print, screen and (min-width: 1024px) {
  .c-btn--check {
    border-color: #97add8;
    padding: 14px 30px 13px 20px;
  }
}
.c-btn--check:hover {
  background-color: #fff;
  color: #97add8;
}
@media print, screen and (min-width: 1024px) {
  .c-btn--check {
    background-color: #fff;
    color: #97add8;
  }
  .c-btn--check:hover {
    background-color: #97add8;
    color: #fff;
  }
}
.c-btn--check .c-btn--arrow {
  right: 24px;
}
@media print, screen and (min-width: 1024px) {
  .c-btn--check .c-btn--arrow {
    right: 32px;
    top: 21px;
  }
}
.c-btn--check:hover .c-btn--arrow {
  right: 19px;
}
@media print, screen and (min-width: 1024px) {
  .c-btn--check:hover .c-btn--arrow {
    right: 22px;
  }
}

@media print, screen and (min-width: 1024px) {
  .c-news__list {
    margin-top: 30px;
  }
}
.c-news__list--none {
  margin-bottom: 2em;
  text-align: center;
  font-size: 1.1em;
}
@media print, screen and (min-width: 1024px) {
  .c-news__list--none {
    font-size: 1.1em;
  }
}

.c-news__item {
  margin-top: 20px;
  border-bottom: 1px solid #9f9e9e;
}

.c-news__link {
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .c-news__link {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 21px;
    align-items: center;
    padding-bottom: 20px;
  }
}
.c-news__link:hover .c-news__date,
.c-news__link:hover .c-news__title,
.c-news__link:hover .c-label {
  opacity: 0.4;
  transition: all 0.3s ease;
}
.c-news__link:hover .c-news__title::after {
  right: 0;
  transition: all 0.3s ease;
}

.c-news__date {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
  color: #2b2b2b;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .c-news__date {
    margin-bottom: 0;
  }
}

.c-news__title {
  padding: 10px 39px 15px 0;
  font-size: 17px;
  line-height: 1.76;
  display: block;
  position: relative;
  color: #2b2b2b;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .c-news__title {
    width: 66.3%;
    padding: 10px 6.8% 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-news__title {
    width: 69%;
    padding-top: 0;
  }
}
.c-news__title::after {
  content: "";
  background: url(../../assets/images/common/arrow.svg) 0 0 no-repeat;
  background-size: contain;
  width: 8px;
  height: 16px;
  position: absolute;
  top: calc(50% - 8px);
  right: 10px;
  transition: all 0.3s ease;
}

.c-label {
  display: inline-block;
  width: 250px;
  border-radius: 100vw;
  line-height: 1;
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 15px;
}
@media print, screen and (min-width: 1024px) {
  .c-label {
    width: 193px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 35px;
    line-height: 1.33;
  }
}
.c-label.is-wide {
  letter-spacing: 1em;
  text-indent: 1em;
}

.c-label--naika {
  background-color: #c3e2a5;
}

.c-label--nyusen {
  background-color: #e6a7c7;
}

.c-label--seikei {
  background-color: #99c4e3;
}

.c-label--shika {
  background-color: #97add8;
}

.c-label--houmon {
  background-color: #eabd5a;
}
@media print, screen and (min-width: 1024px) {
  .c-label--houmon {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.c-label--station {
  background-color: #d8889f;
}
@media print, screen and (min-width: 1024px) {
  .c-label--station {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.c-label--reha {
  background-color: #a1d1c4;
}

.c-label--daycare {
  background-color: #96d2e8;
}

.c-label--kyotaku {
  background-color: #c9a2c5;
}
@media print, screen and (min-width: 1024px) {
  .c-label--kyotaku {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.c-label--chiiki {
  background-color: #f29d79;
}
@media print, screen and (min-width: 1024px) {
  .c-label--chiiki {
    padding: 10px 32px;
  }
}

.c-label--sisethu {
  background-color: #d88888;
}

.c-label--sonota {
  background-color: #dbdbdb;
}

.c-facility-card {
  display: flex;
  flex-wrap: wrap;
  row-gap: 22px;
  justify-content: center;
}
@media print, screen and (min-width: 600px) {
  .c-facility-card {
    column-gap: 4%;
    row-gap: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-facility-card {
    column-gap: 60px;
    row-gap: 50px;
  }
}

.c-facility-card__item {
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  width: 100%;
  padding: 15px 20px 18px;
  position: relative;
}
@media print, screen and (min-width: 600px) {
  .c-facility-card__item {
    border-radius: 20px;
    width: 48%;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-facility-card__item {
    width: 270px;
    padding: 18px;
  }
}
.c-facility-card__item::after {
  content: "";
  mask-image: url(../../assets/images/common/arrow.svg);
  width: 9px;
  height: 17px;
  background-size: contain;
  position: absolute;
  right: 20px;
  bottom: 24px;
  background-color: #8fc31f;
  transition: all 0.5s ease;
}
@media print, screen and (min-width: 1024px) {
  .c-facility-card__item::after {
    bottom: 38px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-facility-card__item:nth-of-type(2) .c-facility-card__title {
    padding-right: 0;
  }
}
.c-facility-card__item:hover {
  background-color: #f092ae;
  color: #fff;
}
.c-facility-card__item:hover::after {
  background-color: #fff;
  right: 15px;
  transition: all 0.5s ease;
}
.c-facility-card__item:hover .c-facility-card__icon {
  background-color: #fff; /* ホバー後の色 */
}
.c-facility-card__item:hover .c-facility-card__title {
  color: #fff;
}

.c-facility-card__icon {
  margin: 0 auto;
  display: block;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: #8fc31f;
  transition: background-color 0.3s;
}
.c-facility-card__icon.is-icon01 {
  width: 60px;
  height: 51px;
  mask-image: url("../../assets/images/common/icon-clinic.svg");
  margin: 6px auto 7px;
}
@media print, screen and (min-width: 1024px) {
  .c-facility-card__icon.is-icon01 {
    width: 84px;
    height: 71px;
    margin: 0 auto 15px;
  }
}
.c-facility-card__icon.is-icon02 {
  width: 90px;
  height: 56px;
  mask-image: url("../../assets/images/common/icon-dental.svg");
  padding-left: 18px;
  mask-position: center right;
  margin: 3px auto 2px;
}
@media print, screen and (min-width: 1024px) {
  .c-facility-card__icon.is-icon02 {
    width: 114px;
    height: 73px;
    padding-left: 20px;
    margin: 0 auto 30px;
  }
}
.c-facility-card__icon.is-icon03 {
  width: 38px;
  height: 54px;
  mask-image: url("../../assets/images/common/icon-human.svg");
  margin: 4px auto 6px;
}
@media print, screen and (min-width: 1024px) {
  .c-facility-card__icon.is-icon03 {
    width: 50px;
    height: 71px;
    margin: 0 auto 16px;
  }
}
.c-facility-card__icon.is-icon04 {
  width: 48px;
  height: 54px;
  mask-image: url("../../assets/images/common/icon-document.svg");
  margin: 3px auto 7px;
}
@media print, screen and (min-width: 1024px) {
  .c-facility-card__icon.is-icon04 {
    width: 66px;
    height: 75px;
    margin: 0 auto 12px;
  }
}
.c-facility-card__icon.is-icon05 {
  width: 48px;
  height: 52px;
  mask-image: url("../../assets/images/common/icon-support.svg");
  margin: 3px auto 7px;
}
@media print, screen and (min-width: 1024px) {
  .c-facility-card__icon.is-icon05 {
    width: 69px;
    height: 74px;
    margin: 0 auto 12px;
  }
}

.c-facility-card__title {
  color: #8fc31f;
  font-size: 17px;
  text-align: center;
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 1024px) {
  .c-facility-card__title {
    line-height: 1.5;
    font-size: 20px;
    padding-right: 1em;
  }
}

.c-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
  gap: 0.7em;
}
@media print, screen and (min-width: 1024px) {
  .c-list {
    gap: 0.5em;
  }
}

.c-list__item {
  width: 100%;
}

.c-list--disc .c-list__item {
  position: relative;
  padding-left: 1em;
}
.c-list--disc .c-list__item::before {
  content: "";
  background: #2b2b2b;
  width: 2px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  top: 0.8em;
  left: 0.4em;
}

.c-list--ol {
  gap: 0.3em;
}
.c-list--ol li {
  display: flex;
  width: 100%;
}
.c-list--ol span {
  display: block;
}
.c-list--ol .num {
  width: 1.5em;
}
.c-list--ol .text {
  width: calc(100% - 1.5em);
}

.c-breadcrumb {
  margin: 4px auto 0;
  width: calc(100% - 20px);
  padding-left: 28px;
}
@media print, screen and (min-width: 600px) {
  .c-breadcrumb {
    margin-top: 10px;
    width: calc(100% - 60px);
  }
}
@media print, screen and (min-width: 1024px) {
  .c-breadcrumb {
    margin-top: 15px;
    width: calc(100% - 120px);
  }
}
.c-breadcrumb:first-child {
  margin-top: 17px;
}
@media print, screen and (min-width: 1024px) {
  .c-breadcrumb:first-child {
    margin-top: 36px;
  }
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3px;
}

.c-breadcrumb__item {
  font-size: clamp(11px, 3.58vw, 14px);
  position: relative;
  padding-right: 12px;
  color: #969696;
}
.c-breadcrumb__item:has(a)::after {
  content: "〉";
  position: absolute;
  top: 0;
  right: -7px;
}
.c-breadcrumb__item.c-breadcrumb__item-top {
  padding-left: 28px;
  margin-left: -28px;
}
.c-breadcrumb__item.c-breadcrumb__item-top::before {
  content: "";
  background: url(../../assets/images/common/icon-home.svg) 0 0 no-repeat;
  background-size: contain;
  width: 22px;
  height: 18px;
  position: absolute;
  top: 1px;
  left: 0;
}

.c-breadcrumb__link {
  color: #969696;
  letter-spacing: 0.03em;
  line-height: 1.35;
  position: relative;
}
.c-breadcrumb__link:hover {
  color: #414141;
}

.c-sub-title__main {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #f092ae;
}
@media print, screen and (min-width: 600px) {
  .c-sub-title__main {
    font-size: 23px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-sub-title__main {
    font-size: clamp(18px, 1.736vw, 25px);
    line-height: 2;
  }
}

@media print, screen and (min-width: 1024px) {
  .c-sub-title__main-small {
    font-size: clamp(15px, 1.38vw, 19px);
  }
}

.c-text--center {
  text-align: center;
}

.c-text--pink {
  color: #f092ae;
}

.c-text--blue {
  color: #00437C;
}

.c-text--medium {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}
@media print, screen and (min-width: 600px) {
  .c-text--medium {
    font-size: clamp(20px, 2.99vw, 23px);
  }
}
@media print, screen and (min-width: 1024px) {
  .c-text--medium {
    font-size: clamp(21px, 1.48vw, 25px);
  }
}

.c-text--small {
  font-size: 0.95em;
}
@media print, screen and (min-width: 1024px) {
  .c-text--small {
    font-size: 0.8em;
    letter-spacing: -0.05em;
  }
}

.c-text--center {
  text-align: center !important;
}

@media print, screen and (min-width: 1024px) {
  .c-table--pink {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.c-table--pink dt,
.c-table--pink dd {
  font-size: 17px;
}
.c-table--pink dt {
  margin-top: 10px;
  color: #f092ae;
  font-weight: 500;
}
@media print, screen and (min-width: 1024px) {
  .c-table--pink dt {
    width: 150px;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 10px;
    margin-top: 0;
  }
}
@media print, screen and (min-width: 1024px) and (min-width: 1024px) {
  .c-table--pink dt:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.c-table--pink dd {
  margin: 3px 0 0;
  line-height: 1.4;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 10px;
}
@media print, screen and (min-width: 1024px) {
  .c-table--pink dd {
    width: calc(100% - 150px);
    margin-top: 0;
  }
}
.c-table--pink dd:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

@media print, screen and (min-width: 1024px) {
  .c-media-box {
    max-width: 1100px;
    padding: 0 50px;
    margin: 0 auto;
  }
}

.c-media-box__wrap {
  background: #f2f2f2;
  position: relative;
  padding-bottom: 20px;
}
@media print, screen and (min-width: 600px) {
  .c-media-box__wrap {
    padding-bottom: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box__wrap {
    border-radius: 50px;
    padding: 98px 60px 60px;
    margin-top: 34px;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-aga__treatment .c-media-box__wrap {
    padding: 98px 15.5% 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-aga__treatment .c-media-box__title {
    width: 115.944%;
    left: -7.9%;
  }
}

.c-media-box__title {
  position: relative;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.86;
  padding: 7px 1em;
  z-index: 2;
  letter-spacing: 0.05em;
  top: -20px;
  margin-bottom: -20px;
}
@media print, screen and (min-width: 1024px) {
  .c-media-box__title {
    margin-bottom: -66px;
    width: 90.91%;
    left: 4.545%;
    padding: 12px;
    top: -133px;
  }
}

.c-media-box__title-main {
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 600px) {
  .c-media-box__title-main {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box__title-main {
    font-size: 25px;
  }
}

.c-media-box--blue .c-media-box__title::before {
  content: "";
  background: #00437c;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.c-media-box--blue .c-media-box__title::after {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  height: 50%;
  top: 50%;
  left: 0;
  z-index: 1;
}
.c-media-box--blue .c-media-box__item {
  background: url(../../assets/images/common/aga-check.svg) 0 3px no-repeat;
  background-size: 17px 17px;
  color: #00437C;
}
@media print, screen and (min-width: 600px) {
  .c-media-box--blue .c-media-box__item {
    background-size: 30px 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box--blue .c-media-box__item {
    background-size: 40px 41px;
    background-position: 0 0;
  }
}

.c-media-box__list {
  background-color: #fff;
  border-radius: 20px;
  padding: 14px 10px 14px 15px;
  width: calc(100% - 30px);
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 3px;
}
@media print, screen and (min-width: 600px) {
  .c-media-box__list {
    padding: 24px 20px 24px 25px;
    max-width: 761px;
    width: calc(100% - 80px);
    margin: 40px auto 0;
    row-gap: 6px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box__list {
    padding: 30px 40px;
    border-radius: 30px 40px 30px 40px;
    row-gap: 15px;
    width: 86.5%;
    margin: 0;
  }
}

.c-media-box__item {
  padding-left: 25px;
}
@media print, screen and (min-width: 600px) {
  .c-media-box__item {
    padding-left: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box__item {
    padding-left: 54px;
  }
}
.c-media-box__item {
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.466;
  font-size: 15px;
  width: 100%;
}
@media print, screen and (min-width: 600px) {
  .c-media-box__item {
    font-size: clamp(22px, 3.38vw, 26px);
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box__item {
    background-position: 0 0;
    font-size: clamp(27px, 1.9vw, 32px);
  }
}

.c-media-box__title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.c-media-box__title::after {
  content: "";
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  width: 100%;
  height: 50%;
  top: 50%;
  left: 0;
  z-index: 1;
}

.c-media-box--green .c-media-box__title::before {
  content: "";
  background: #8fc31f;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.c-media-box--green .c-media-box__title::after {
  content: "";
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  width: 100%;
  height: 50%;
  top: 50%;
  left: 0;
  z-index: 1;
}
.c-media-box--green .c-media-box__type {
  border-radius: 20px;
  overflow: hidden;
  width: calc(100% - 60px);
  margin: 20px auto 0;
}
@media print, screen and (min-width: 600px) {
  .c-media-box--green .c-media-box__type {
    width: calc(100% - 80px);
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box--green .c-media-box__type {
    width: 100%;
    margin-top: 30px;
  }
}
.c-media-box--green .c-media-box__type .c-media-box__type-text {
  background: #8fc31f;
  text-align: center;
  padding: 14px;
  font-size: 17px;
  color: #fff;
  font-weight: 500;
}
@media print, screen and (min-width: 1024px) {
  .c-media-box--green .c-media-box__type .c-media-box__type-text {
    font-size: 20px;
    padding: 8px;
  }
}
.c-media-box--green .c-media-box__type-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 35/9;
  overflow: hidden;
}
@media print, screen and (min-width: 1024px) {
  .c-media-box--green .c-media-box__type-img {
    aspect-ratio: 345/113;
  }
}
.c-media-box--green .c-media-box__type-img img {
  object-fit: cover;
  transform: scale(1.01) translate(0, -31%);
}
@media print, screen and (min-width: 1024px) {
  .c-media-box--green .c-media-box__type-img img {
    transform: scale(1) translate(0, -45%);
  }
}

.c-media-box--chiiki {
  margin-bottom: 76px;
}
@media print, screen and (min-width: 1024px) {
  .c-media-box--chiiki .c-media-box__list {
    max-width: 880px;
    width: 100%;
  }
}
.c-media-box--chiiki .c-media-box__title::before {
  background: #f29d79;
}
.c-media-box--chiiki .c-media-box__title::after {
  background: rgba(0, 0, 0, 0.05);
}
.c-media-box--chiiki .c-media-box__item {
  background: url(../../assets/images/common/icon-check.svg) 0 3px no-repeat;
  background-size: 17px 17px;
  color: #f29d79;
}
@media print, screen and (min-width: 600px) {
  .c-media-box--chiiki .c-media-box__item {
    background-size: 30px 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box--chiiki .c-media-box__item {
    background-size: 40px 41px;
    background-position: 0 0;
  }
}
.c-media-box--chiiki .c-media-box__img {
  position: absolute;
  width: 73px;
  height: 104px;
  bottom: 0;
  right: 10px;
}
@media print, screen and (min-width: 600px) {
  .c-media-box--chiiki .c-media-box__img {
    width: 144px;
    height: 208px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box--chiiki .c-media-box__img {
    width: 200px;
    height: 287px;
    right: -13px;
  }
}

.c-media-box--check .c-media-box__item {
  background: url(../../assets/images/common/icon-check.svg) 0 3px no-repeat;
  background-size: 17px 17px;
  color: #f29d79;
}
@media print, screen and (min-width: 600px) {
  .c-media-box--check .c-media-box__item {
    background-size: 30px 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box--check .c-media-box__item {
    background-size: 40px 41px;
    background-position: 0 0;
  }
}

.c-media-box__img {
  position: absolute;
}

.c-media-box__text {
  text-align: center;
  font-size: 17px;
  margin-top: 17px;
}
@media print, screen and (min-width: 600px) {
  .c-media-box__text {
    margin-top: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-media-box__text {
    margin-top: 0px;
  }
}

.c-media-box__text-list {
  width: calc(100% - 30px);
  margin: 10px auto 0;
  padding-left: 3em;
}
@media print, screen and (min-width: 1024px) {
  .c-media-box__text-list {
    font-size: 17px;
    margin-top: 30px;
    padding-left: 30%;
  }
}
.c-media-box__text-list li {
  line-height: 1.35;
  padding-left: 1em;
  position: relative;
}
.c-media-box__text-list li::before {
  content: "";
  background: #2b2b2b;
  width: 2px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 0.5em;
  top: 50%;
}

.c-note {
  border-bottom: 3px solid #e3e3e3;
  padding: 0 0 35px;
}

.c-note__heading {
  position: relative;
  text-align: center;
  font-weight: 500;
}
.c-note__heading::after {
  content: "";
  background: #e3e3e3;
  width: 100%;
  height: 3px;
  position: absolute;
  z-index: 0;
  left: 0;
  top: calc(50% - 2px);
}

.c-note__heading--main {
  background-color: #fff;
  font-size: 20px;
  letter-spacing: 0.05em;
  padding: 0 1.5em;
  line-height: 2.5;
  position: relative;
  z-index: 1;
}

@media print, screen and (min-width: 600px) {
  .c-note__text {
    text-align: center;
  }
}

.c-service-box {
  margin-top: 0;
  padding-bottom: 60px;
}
@media print, screen and (min-width: 600px) {
  .c-service-box {
    padding-bottom: 90px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-service-box {
    padding-bottom: 120px;
  }
}
.c-service-box .c-section-title {
  /* 2番目以降の見出しだけに上余白を付ける */
}
.c-service-box .c-section-title:not(:first-child) {
  margin-top: 60px;
}
@media print, screen and (min-width: 1024px) {
  .c-service-box .c-section-title:not(:first-child) {
    margin-top: 90px;
    margin-bottom: 60px;
  }
}
.c-service-box--chiiki {
  margin-top: 60px;
  background-color: rgba(242, 157, 121, 0.1);
  color: #f29d79;
}
@media print, screen and (min-width: 1024px) {
  .c-service-box--chiiki {
    margin-top: 182px;
    padding-bottom: 90px;
  }
}
.c-service-box--chiiki .c-section-title--overlap {
  line-height: 1.5;
  transform: translateY(-22%);
  margin-bottom: -0.6em;
}
@media print, screen and (min-width: 1024px) {
  .c-service-box--chiiki .c-section-title--overlap {
    transform: translateY(-50%);
    margin-bottom: 0;
  }
}
.c-service-box--naika {
  background-color: #f3f9ed;
  color: #c3e2a5;
  margin-top: 74px;
}
@media print, screen and (min-width: 1024px) {
  .c-service-box--naika {
    margin-top: 146px;
  }
}
.c-service-box--nyusen {
  background-color: rgba(230, 167, 199, 0.1);
  color: #e6a7c7;
}
.c-service-box--seikei {
  background-color: rgba(153, 196, 227, 0.1);
  color: #99c4e3;
}
.c-service-box--shika {
  background-color: rgba(151, 173, 216, 0.1);
  color: #97add8;
}
.c-service-box--houmon {
  background-color: rgba(234, 189, 90, 0.1);
  color: #eabd5a;
}
.c-service-box--station {
  background-color: rgba(216, 136, 159, 0.1);
  color: #d8889f;
}
.c-service-box--kyotaku {
  background-color: rgba(201, 162, 197, 0.1);
  color: #c9a2c5;
}

.c-service-box__body {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  padding: 20px 12px;
  margin: 30px auto 0;
  width: calc(100% - 60px);
}
@media print, screen and (min-width: 600px) {
  .c-service-box__body {
    border-radius: 30px;
    padding: 30px 40px;
    width: calc(100% - 80px);
  }
}
@media print, screen and (min-width: 1024px) {
  .c-service-box__body {
    border-radius: 50px;
    padding: 57px;
    max-width: 1200px;
    width: calc(100% - 100px);
    margin-top: 50px;
  }
}

.c-service-box__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.c-service-box__list li {
  font-weight: 500;
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 1.66;
  padding-bottom: 22px;
  position: relative;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width: 600px) {
  .c-service-box__list li {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-service-box__list li {
    font-size: 25px;
    padding-bottom: 27px;
  }
}
.c-service-box__list li::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-image: radial-gradient(circle, #f29d79 1px, transparent 1px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left center;
}
.c-service-box__list li:last-of-type {
  padding-bottom: 0;
}
.c-service-box__list li:last-of-type::after {
  display: none;
}

.c-service-box__text {
  text-align: center;
  font-weight: 500;
}
@media print, screen and (min-width: 600px) {
  .c-service-box__text {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-service-box__text {
    font-size: 25px;
  }
}

.c-service-box__detail {
  color: #414141;
  font-size: 17px;
  line-height: 2;
  text-align: left;
  font-weight: 400;
  margin-top: 5px;
}
@media print, screen and (min-width: 1024px) {
  .c-service-box__detail {
    text-align: center;
    margin-top: 10px;
  }
}

.c-service-box__in-list li {
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  line-height: 2;
  padding-bottom: 0;
  position: relative;
  color: #414141;
}
@media print, screen and (min-width: 1024px) {
  .c-service-box__in-list li {
    text-align: center;
  }
}
.c-service-box__in-list li::before {
  content: "●";
  display: inline-block;
}
.c-service-box__in-list li::after {
  display: none;
}

.c-service-box__last-text {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .c-service-box__last-text {
    text-align: center;
    display: block;
    font-size: 25px;
    font-weight: 500;
  }
}

.c-response-time {
  margin: 60px auto 0;
  padding: 25px 20px 35px;
}
@media print, screen and (min-width: 600px) {
  .c-response-time {
    margin-top: 80px;
    padding: 30px 40px 40px;
    max-width: 920px;
    width: calc(100% - 80px);
    border-radius: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-response-time {
    margin-top: 120px;
    padding: 40px 60px 60px;
    border-radius: 50px;
  }
}
.c-response-time--chiiki {
  background-color: rgba(242, 157, 121, 0.2);
}
.c-response-time--chiiki .c-response-time__contact {
  align-items: flex-start !important;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time--chiiki .c-response-time__contact {
    column-gap: 7% !important;
  }
}
.c-response-time--chiiki .c-response-time__contact-text {
  padding-top: 1em;
}
@media print, screen and (min-width: 600px) {
  .c-response-time--chiiki .c-response-time__contact-text {
    padding-top: 0.5em;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-response-time--chiiki .c-response-time__contact-text {
    padding-left: 2em;
  }
}
.c-response-time--chiiki .c-response-time__table .is-active {
  color: #f29d79;
}
.c-response-time--chiiki .c-response-time__contact-num {
  color: #f29d79;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time--chiiki .c-response-time__contact-num {
    text-align: left;
  }
}
.c-response-time--chiiki .c-response-time__tel-charge {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  margin-top: 0.5em;
}
@media print, screen and (min-width: 600px) {
  .c-response-time--chiiki .c-response-time__tel-charge {
    display: block;
  }
}
.c-response-time--naika {
  background-color: rgba(195, 226, 165, 0.2);
}
@media print, screen and (min-width: 1024px) {
  .c-response-time--naika {
    margin-bottom: 60px;
  }
}
.c-response-time--naika .c-response-time__table .is-active {
  color: #c3e2a5;
}
.c-response-time--naika .c-response-time__contact-text,
.c-response-time--naika .c-response-time__contact-num {
  color: #c3e2a5;
}
.c-response-time--nyusen {
  background-color: rgba(230, 167, 199, 0.2);
}
.c-response-time--nyusen .c-response-time__table .is-active {
  color: #e6a7c7;
}
.c-response-time--nyusen .c-response-time__contact-text,
.c-response-time--nyusen .c-response-time__contact-num {
  color: #e6a7c7;
}
.c-response-time--seikei {
  background-color: rgba(153, 196, 227, 0.2);
}
.c-response-time--seikei .c-response-time__table .is-active {
  color: #99c4e3;
}
.c-response-time--seikei .c-response-time__contact-text,
.c-response-time--seikei .c-response-time__contact-num {
  color: #99c4e3;
}
.c-response-time--shika {
  background-color: rgba(151, 173, 216, 0.2);
}
.c-response-time--shika .c-response-time__table .is-active {
  color: #97add8;
}
.c-response-time--shika .c-response-time__contact-text,
.c-response-time--shika .c-response-time__contact-num {
  color: #97add8;
}
.c-response-time--houmon {
  background-color: rgba(234, 189, 90, 0.2);
}
.c-response-time--houmon .c-response-time__table .is-active {
  color: #eabd5a;
}
.c-response-time--houmon .c-response-time__contact-text,
.c-response-time--houmon .c-response-time__contact-num {
  color: #eabd5a;
}
.c-response-time--station {
  background-color: rgba(216, 136, 159, 0.2);
}
.c-response-time--station .c-response-time__table .is-active {
  color: #d8889f;
}
.c-response-time--station .c-response-time__contact-num {
  color: #d8889f;
}
.c-response-time--kyotaku {
  background-color: rgba(201, 162, 197, 0.2);
}
.c-response-time--kyotaku .c-response-time__table .is-active {
  color: #c9a2c5;
}
.c-response-time--kyotaku .c-response-time__contact-num {
  color: #c9a2c5;
}

.c-response-time__inner {
  margin: 22px auto 0;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  padding: 13px 10px 12px;
}
@media print, screen and (min-width: 600px) {
  .c-response-time__inner {
    border-radius: 30px;
    margin-top: 30px;
    padding: 20px 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__inner {
    border-radius: 50px;
    padding: 40px 50px;
  }
}

.c-response-time__table {
  border-collapse: collapse;
  width: 100%;
}
.c-response-time__table .c-response-time__border th,
.c-response-time__table .c-response-time__border td {
  color: #5c5c5c;
  border-bottom: 1px solid #e3e3e3;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__table .c-response-time__border th,
  .c-response-time__table .c-response-time__border td {
    color: #414141;
  }
}
.c-response-time__table th,
.c-response-time__table td {
  text-align: center;
  padding: 5px 0;
}
.c-response-time__table th.c-response-time__sun,
.c-response-time__table td.c-response-time__sun {
  width: 12%;
  text-align: left;
  padding-left: 0.5em;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__table th.c-response-time__sun,
  .c-response-time__table td.c-response-time__sun {
    padding-left: 0.7em;
    width: 11.3%;
  }
}
.c-response-time__table th {
  font-size: 16px;
  font-weight: 700;
  width: 9.3%;
}
@media print, screen and (min-width: 600px) {
  .c-response-time__table th {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__table th {
    font-size: 23px;
    width: 10.2%;
  }
}
.c-response-time__table td {
  font-size: 15px;
  font-weight: 500;
}
.c-response-time__table td.c-response-time__heading {
  width: 32.2%;
  color: #5c5c5c;
}
@media print, screen and (min-width: 600px) {
  .c-response-time__table td.c-response-time__heading {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__table td.c-response-time__heading {
    font-size: 23px;
    width: 28.5%;
    color: #414141;
  }
}
.c-response-time__table td.is-active {
  font-size: 1.5em;
}
.c-response-time__table.--compact th {
  font-size: 16px;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__table.--compact th {
    font-size: 23px;
  }
}
.c-response-time__table.--compact td {
  font-size: 15px;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__table.--compact td {
    font-size: 23px;
  }
}
.c-response-time__table.--compact .is-note {
  font-size: 12px;
  line-height: 1.25;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__table.--compact .is-note {
    font-size: 14px;
  }
}

.c-response-time__contact {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__contact {
    column-gap: 44px;
    align-items: end;
  }
}

.c-response-time__contact-heading {
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__contact-heading {
    font-size: 31px;
    font-weight: 700;
    width: auto;
  }
}

.c-response-time__contact-name {
  font-size: 15px;
  margin-top: 5px;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__contact-name {
    margin-top: 0;
    padding-left: 4.5em;
  }
}

.c-response-time__contact-tel {
  font-weight: 700;
  display: flex;
  justify-content: center;
  column-gap: 2px;
  align-items: baseline;
  margin-top: 2px;
}

.c-response-time__contact-text {
  font-size: 15px;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__contact-text {
    font-size: 18px;
  }
}

.c-response-time__contact-num {
  font-size: 27px;
}
@media print, screen and (min-width: 1024px) {
  .c-response-time__contact-num {
    font-size: 43px;
    line-height: 1;
    letter-spacing: 0.03em;
  }
}

.c-response-time__tel {
  font-size: 15px;
  letter-spacing: normal;
  display: inline-block;
  margin-right: -0.4em;
}
@media print, screen and (min-width: 600px) {
  .c-response-time__tel {
    font-size: 18px;
  }
}

.c-feature__num {
  margin-bottom: 20px;
}
.c-device-intro {
  margin: 60px auto 0;
  padding: 0 20px;
  max-width: 1300px;
}
@media print, screen and (min-width: 600px) {
  .c-device-intro {
    padding: 0 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro {
    padding: 0 50px;
    margin-top: 120px;
  }
}
.c-device-introis-last {
  padding-bottom: 160px;
}

.c-device-intro__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
  justify-content: center;
}
@media print, screen and (min-width: 600px) {
  .c-device-intro__list--col2 {
    column-gap: 3.33%;
  }
}
@media print, screen and (min-width: 600px) {
  .c-device-intro__list--col2 .c-device-intro__item {
    width: 40%;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__list--col2 .c-device-intro__img {
    aspect-ratio: 240/143;
  }
}
@media print, screen and (min-width: 600px) {
  .c-device-intro__list--col3 {
    column-gap: 6%;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__list--col3 {
    column-gap: 3.5%;
  }
}
@media print, screen and (min-width: 600px) {
  .c-device-intro__list--col3 .c-device-intro__item {
    width: 47%;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__list--col3 .c-device-intro__item {
    width: 31%;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__list--col3 .c-device-intro__img {
    aspect-ratio: 373/300;
  }
}
.c-device-intro__list.c-device-intro__list--left {
  justify-content: flex-start;
}

.c-device-intro__item {
  width: 100%;
}

.c-device-intro__img {
  aspect-ratio: 7/4;
  border-radius: 10px;
  overflow: hidden;
}

.c-device-intro__in-img {
  object-fit: cover;
}
.c-device-intro__in-img--naika01 {
  transform: scale(1.01) translateY(-6%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--naika01 {
    transform: scale(1.22) translateY(8%) translateX(0%);
  }
}
.c-device-intro__in-img--naika02 {
  transform: scale(1.01) translateY(-7%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--naika02 {
    transform: scale(1.2) translateY(8.5%) translateX(0%);
  }
}
.c-device-intro__in-img--naika03 {
  transform: scale(1) translateY(-4%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--naika03 {
    transform: scale(1.2) translateY(4%) translateX(0%);
  }
}
.c-device-intro__in-img--naika04 {
  transform: scale(1.1) translateY(-14%) translateX(1%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--naika04 {
    transform: scale(1.1) translateY(4%) translateX(0%);
  }
}
.c-device-intro__in-img--visit01 {
  transform: scale(1) translateY(-10%) translateX(1%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--visit01 {
    transform: scale(1.1) translateY(4%) translateX(0%);
  }
}
.c-device-intro__in-img--visit02 {
  transform: scale(1) translateY(-10%) translateX(1%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--visit02 {
    transform: scale(1.3) translateY(10%) translateX(0%);
  }
}
.c-device-intro__in-img--visit03 {
  transform: scale(1) translateY(-1) translateX(1%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--visit03 {
    transform: scale(1.25) translateY(10%) translateX(0%);
  }
}
.c-device-intro__in-img--nyusen01 {
  transform: scale(1.01) translateY(-4.5%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--nyusen01 {
    transform: scale(1.02) translateY(-4%) translateX(0%);
  }
}
.c-device-intro__in-img--nyusen02 {
  transform: scale(1) translateY(-7%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--nyusen02 {
    transform: scale(1.02) translateY(-4%) translateX(0%);
  }
}
.c-device-intro__in-img--seikei01 {
  transform: scale(1.01) translateY(-5%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--seikei01 {
    transform: scale(1.3) translateY(12%) translateX(0%);
  }
}
.c-device-intro__in-img--seikei02 {
  transform: scale(1) translateY(-7%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--seikei02 {
    transform: scale(1.25) translateY(9%) translateX(0%);
  }
}
.c-device-intro__in-img--seikei03 {
  transform: scale(1.01) translateY(-7%);
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__in-img--seikei03 {
    transform: scale(1.2) translateY(8.5%) translateX(0%);
  }
}

.c-device-intro__title {
  text-align: center;
  margin-top: 30px;
  font-weight: 500;
  color: #5c5c5c;
}
@media print, screen and (min-width: 1024px) {
  .c-device-intro__title {
    font-size: clamp(19px, 1.48vw, 23px);
    color: #414141;
    letter-spacing: 0.02em;
  }
}
.c-device-intro__title--tight {
  letter-spacing: -0.02em;
}

.c-device-intro__text {
  margin-top: 30px;
  line-height: 2;
  text-align: justify;
}
.c-device-intro__textc-text--center {
  text-align: center;
}

.c-device-intro__note {
  text-align: center;
  margin-top: 60px;
  line-height: 1.76;
}

@media print, screen and (min-width: 1024px) {
  .u-display-sp {
    display: none;
  }
}
.u-display-sp.u-display-sp--ib {
  display: inline-block;
}
@media print, screen and (min-width: 1024px) {
  .u-display-sp.u-display-sp--ib {
    display: none;
  }
}

.u-display-pc {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .u-display-pc {
    display: block;
  }
}
@media print, screen and (min-width: 1024px) {
  .u-display-pc.u-display-pc--ib {
    display: inline-block;
  }
}

.u-display-keep {
  display: inline-block !important;
  text-indent: 0 !important;
}
@media print, screen and (min-width: 1024px) {
  .u-display-keep {
    display: inline !important;
  }
}