@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Zen Maru Gothic", Noto Sans JP;
  font-weight: 500;
  counter-reset: number 0;
  color: #60574b;
  font-size: 16px;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-lessnote {
  display: block;
}
@media screen and (min-width: 1366px) {
  .u-lessnote {
    display: none;
  }
}

.u-note {
  display: none;
}
@media screen and (min-width: 1366px) {
  .u-note {
    display: block;
  }
}

.br-less520 {
  display: none;
}
@media screen and (max-width: 520px) {
  .br-less520 {
    display: block;
  }
}

.br-768 {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-768 {
    display: block;
  }
}

.br-1366 {
  display: block;
}
@media screen and (min-width: 1366px) {
  .br-1366 {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header.branch-header {
  width: 1254px;
  width: 78.375rem;
  height: 70px;
}

.branch-header .header__logo {
  width: 20.2%;
}

.branch-header .header__inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__nav-list.branch-header__nav-list {
  row-gap: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11%;
}

.branch-header .header__nav {
  width: 60%;
}

.branch-header .header__inner {
  padding-right: 27px;
  padding-right: 1.6875rem;
}

.breadcrumb {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-top: 1.25rem;
  }
}

.current-item {
  color: #eb9500;
}

.breadcrumb .home {
  background-color: transparent;
  background-color: initial;
}

.breadcrumbs {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 520px) {
  .breadcrumbs {
    font-size: 0.875rem;
  }
}

.button {
  width: 280px;
  width: 17.5rem;
  padding: 13px 0;
  padding: 0.8125rem 0;
  color: #eb9500;
  border: 3px solid #eb9500;
  background-color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  border-radius: 30px;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (max-width: 520px) {
  .button {
    width: 15.625rem;
  }
}

.button.button--red {
  color: #ec6b61;
  border: 3px solid #ec6b61;
}

.button.button--red:hover {
  background-color: #ec6b61;
  color: #fff;
}

.button:hover {
  background-color: #eb9500;
  color: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

/* 全体のスタイル */
.contact-banner {
  background-color: #eb9500; /* 背景色 */
  border-radius: 25px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid #eb9500;
  position: fixed;
  bottom: 20px;
  z-index: 10;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-banner {
    max-width: 500px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-banner {
    max-width: 600px;
  }
}

.contact-banner.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.contact-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左側 */
.contact-banner__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
  font-size: 16px;
  font-size: 1rem;
  padding: 10px 18px;
  padding: 0.625rem 1.125rem;
}
@media screen and (max-width: 520px) {
  .contact-banner__left {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-banner__left {
    padding: 0.625rem 1.875rem;
  }
}

.contact-banner__feature {
  display: block;
  font-weight: bold;
  background-color: #f6e995;
  width: 175px;
  width: 10.9375rem;
  border-radius: 20px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.contact-banner__note {
  display: block;
  color: #534615;
  margin-top: 5px;
  background-color: #76b743;
  width: 230px;
  width: 14.375rem;
  border-radius: 20px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .contact-banner__note {
    width: 10.9375rem;
    font-size: 0.75rem;
  }
}

/* 右側 */
.contact-banner__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fcf8df;
  padding: 10px 0 10px 10px;
  padding: 0.625rem 0 0.625rem 0.625rem;
  padding: 10px 33px 10px 10px;
  padding: 0.625rem 2.0625rem 0.625rem 0.625rem;
  position: relative;
}
@media screen and (max-width: 520px) {
  .contact-banner__right {
    padding: 0.625rem 0.625rem 0.625rem 0.4375rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-banner__right {
    padding: 0.625rem 2.0625rem 0.625rem 1.4375rem;
  }
}

.contact-banner__phone-link {
  text-decoration: none;
  color: #534615;
}

.contact-banner__phone-icon {
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.contact-banner__phone-number {
  font-weight: bold;
  color: #eb9500;
  font-size: clamp(20px, 15.631px + 1.1650485437vw, 38px);
  font-size: clamp(1.25rem, 0.9769417476rem + 1.1650485437vw, 2.375rem);
  line-height: 1;
}

.contact-banner__hours {
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
  color: #534615;
  margin-top: 5px;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 520px) {
  .contact-banner__hours {
    font-size: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-banner__hours {
    font-size: 0.8rem;
  }
}

body.active {
  height: 100%;
  overflow: hidden;
}

.drawer__icon {
  display: block;
  position: fixed;
  top: 34px;
  right: 22px;
  right: 1.375rem;
  width: 27px;
  width: 1.6875rem;
  height: 2px;
  height: 0.125rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  .drawer__icon {
    top: 1.9375rem;
  }
}
@media screen and (min-width: 1024px) {
  .drawer__icon {
    top: 42px;
    right: 29px;
  }
}
@media screen and (min-width: 1366px) {
  .drawer__icon {
    top: 0.875rem;
    width: 1.5625rem;
  }
}

.drawer__icon.is-open {
  z-index: 900;
}
.drawer__icon.is-open .drawer__icon-bar1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
  top: 0.4375rem;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer__icon.is-open .drawer__icon-bar2 {
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer__icon.is-open .drawer__icon-bar3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
  top: 0.4375rem;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__icon-bars {
  position: relative;
  width: 31px;
  width: 1.9375rem;
  height: 13px;
  height: 0.8125rem;
  cursor: pointer;
}
.drawer__icon-bar1,
.drawer__icon-bar2,
.drawer__icon-bar3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  background: #eb9500;
}

.drawer__icon-bar1 {
  top: 0;
  border-radius: 0.9375rem;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__icon-bar2 {
  top: 9px;
  top: 0.5625rem;
  border-radius: 0.9375rem;
  width: 100%;
  -webkit-transition: -webkit-transform 0.8s ease 0s;
  transition: -webkit-transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s, -webkit-transform 0.8s ease 0s;
}

.drawer__icon-bar3 {
  top: 19px;
  top: 1.1875rem;
  border-radius: 0.9375rem;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__content {
  overflow: scroll;
  color: #60574b;
  position: fixed;
  top: 0;
  right: 0;
  background: #f8f6ea;
  height: 100%;
  width: 300px;
  width: 18.75rem;
  z-index: 800;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  width: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .drawer__content {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .drawer__content {
    width: 30%;
    margin-top: 7.125rem;
  }
}
@media screen and (max-width: 520px) {
  .drawer__content {
    margin-top: 80px;
  }
}

.drawer__content.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__content-items {
  color: #60574b;
  line-height: 1.57;
  position: relative;
  list-style: none;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
.drawer__content-items a {
  position: relative;
}
.drawer__content-items a .drawer__content-items::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: #60574b;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.drawer__content-item {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Zen Maru Gothic", Noto Sans JP;
  font-weight: 600;
  position: relative;
  text-align: left;
  padding-left: 65px;
}

.drawer__content-item a {
  display: block;
  padding: 17px 0;
  padding: 1.0625rem 0;
}

.drawer__content-item::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  height: 1.25rem;
  width: 20px;
  width: 1.25rem;
}

.drawer__content-item::after {
  content: "";
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 10px;
  height: 0.625rem;
  width: 10px;
  width: 0.625rem;
  content: "";
  border-top: solid 2px #eb9500;
  border-right: solid 2px #eb9500;
  position: absolute;
}

.header__mail-icon {
  display: inline-block;
  width: 50px;
  width: 3.125rem;
  padding-top: 8px;
  padding-top: 0.5rem;
}
.drawer__content-button {
  width: 280px;
  width: 17.5rem;
  padding: 8px 0;
  padding: 0.5rem 0;
  color: #fff;
  border: 3px solid #eb9500;
  background-color: #eb9500;
  font-size: 20px;
  font-size: 1.25rem;
  display: inline-block;
  border-radius: 30px;
  text-align: center;
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 520px) {
  .drawer__content-button {
    width: 18.75rem;
    margin-top: 0;
  }
}

.drawer__content-button::before {
  content: "";
  position: absolute;
  right: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow-recruit.png);
  background-size: contain;
  height: 23px;
  height: 1.4375rem;
  width: 23px;
  width: 1.4375rem;
}

.drawer__content-button::after {
  content: "";
  position: absolute;
  left: 33px;
  left: 2.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_recruit.png);
  background-size: contain;
  height: 26px;
  height: 1.625rem;
  width: 26px;
  width: 1.625rem;
}

.footer {
  background-color: #fae4bf;
  position: relative;
  z-index: 1;
}

.footer:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/common/bg_service-filter.png);
  height: 100%;
  width: 100%;
  z-index: -1;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 29px;
  padding-top: 1.8125rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.5%;
    padding-top: 4.75rem;
  }
}

.footer__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__left {
    width: 27%;
  }
}

.footer__left p {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__left p {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer__left p {
    font-size: 1rem;
  }
}

.footer__tel-info {
  margin-top: 0 !important;
}

.footer__logo {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 70%;
}
.access__map-wrap {
  height: 400px;
  height: 25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 520px) {
  .access__map-wrap {
    height: 16rem;
  }
}
@media screen and (min-width: 768px) {
  .access__map-wrap {
    height: 15rem;
  }
}

.access__map {
  position: relative;
  overflow: hidden;
  height: inherit;
}

.access__map iframe {
  top: -63px;
  width: 100%;
  height: inherit;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .access__map iframe {
    width: inherit;
    height: inherit;
  }
}

.footer__nav {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    width: 75%;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 39px;
  margin-top: 2.4375rem;
  gap: 5%;
}
@media screen and (max-width: 520px) {
  .footer__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 0.8125rem;
    gap: 0;
  }
}

.footer__nav-itemWrap {
  width: 30%;
}

.footer__nav-itemWrap.left {
  width: 66%;
  margin-right: 0;
}
@media screen and (max-width: 520px) {
  .footer__nav-itemWrap.left {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav-itemWrap.left {
    width: 38.4%;
    margin-right: 2.75rem;
  }
}

.footer__nav-itemWrap.middle {
  width: 86%;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .footer__nav-itemWrap.middle {
    width: 22.5%;
    margin-right: 1.25rem;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav-itemWrap.middle {
    width: 1005;
  }
}

.footer__nav-itemWrap.right {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__nav-itemWrap.right {
    width: 35%;
  }
}

.footer__nav-item:not(:first-child) {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.footer__nav-link {
  display: inline-block;
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .footer__nav-link {
    margin-top: 0.4375rem;
  }
}

.footer__nav-link::after {
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-top: solid 2px #eb9500;
  border-top: solid 0.125rem #eb9500;
  border-right: solid 2px #eb9500;
  border-right: solid 0.125rem #eb9500;
  position: absolute;
  left: -21px;
  left: -1.3125rem;
  top: 8px;
  top: 0.5rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.footer__sub-link {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: inline-block;
  position: relative;
}

.footer__sub-link::after {
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 2px;
  height: 0.125rem;
  position: absolute;
  background-color: #eb9500;
  left: -21px;
  left: -1.3125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__sub-list {
  padding-left: 24px;
  padding-left: 1.5rem;
}

.footer__sub-link {
  font-size: 15px;
  font-size: 0.9375rem;
}

.footer__copyright {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
}

.header {
  background-color: #fff;
  height: 80px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
}
@media screen and (min-width: 1024px) {
  .header {
    height: 7.25rem;
  }
}
@media screen and (min-width: 1366px) {
  .header {
    width: 84.375rem;
    border-radius: 66px;
    top: 2rem;
    height: 116px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 16px;
  padding-left: 1rem;
  height: inherit;
  position: relative;
}
@media screen and (min-width: 1366px) {
  .header__inner {
    padding-left: 2.5rem;
  }
}

.header__logo {
  width: 23%;
  margin-right: 11px;
  margin-right: 0.6875rem;
}
@media screen and (max-width: 520px) {
  .header__logo {
    width: 62%;
  }
}
@media screen and (min-width: 1366px) {
  .header__logo {
    width: 21.2%;
  }
}

.header__facility {
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 81px;
  margin-right: 5.0625rem;
  width: 18.66%;
  font-weight: 300;
}
@media screen and (max-width: 520px) {
  .header__facility {
    position: absolute;
    top: 0.625rem;
    left: 0.875rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    line-height: 1.3;
  }
}

.header__nav {
  width: 48.59%;
}

.header__nav-list {
  row-gap: 17px;
  row-gap: 1.0625rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
}

.header__nav-link {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: -0.1em;
  position: relative;
}

.header__nav-link::before {
  content: "";
  position: absolute;
  left: -23px;
  left: -1.4375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 17px;
  width: 17px;
}

.inner {
  width: 100%;
  padding-right: 27px;
  padding-left: 27px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1300px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media screen and (max-width: 520px) {
  .layout-mv {
    margin-top: 80px;
  }
}

.layout-news {
  margin-top: 94px;
  margin-top: 5.875rem;
}
@media screen and (min-width: 1024px) {
  .layout-news {
    margin-top: 10.4375rem;
  }
}

.layout-introduction {
  margin-top: 174px;
  margin-top: 10.875rem;
}
@media screen and (max-width: 520px) {
  .layout-introduction {
    margin-top: 12.6875rem;
  }
}

.layout-feature {
  margin-top: 139px;
  margin-top: 8.6875rem;
}
@media screen and (min-width: 1440px) {
  .layout-feature {
    margin-top: 6.875rem;
  }
}

.layout-flow {
  margin-top: 140px;
  margin-top: 8.75rem;
}
@media screen and (min-width: 1440px) {
  .layout-flow {
    margin-top: 8.9375rem;
  }
}

.layout-service {
  margin-top: 138px;
  margin-top: 8.625rem;
}

.layout-faq {
  margin-top: 207px;
  margin-top: 12.9375rem;
}

.layout-content {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .layout-content {
    margin-top: 5.625rem;
  }
}

.layout-promise {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .layout-promise {
    margin-top: 34.375rem;
  }
}
@media screen and (min-width: 1366px) {
  .layout-promise {
    margin-top: 35rem;
  }
}

.layout-top {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .layout-top {
    margin-top: 5rem;
  }
}

.layout-section {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .layout-section {
    margin-top: 8.75rem;
  }
}

.layout-sec-title {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .layout-sec-title {
    margin-top: 3.75rem;
  }
}

.layout-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .layout-text {
    margin-top: 2.5rem;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .5);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

/* モーダル本体 */
.modal {
  background: #fff;
  border-radius: 8px;
  max-width: 1300px;
  width: 90%;
  height: 56%;
  max-height: 640px;
  overflow-y: scroll;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #eb9500;
}
@media screen and (max-width: 520px) {
  .modal-close {
    position: fixed;
    top: 5%;
    right: 4%;
  }
}

/* コンテンツのスタイル */
.modal__introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .modal__introduction {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.modal-image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal-image {
    width: 40%;
  }
}

.modal-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.modal-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal-details {
    width: 58%;
  }
}

.modal-details p {
  margin-top: 1em;
  font-size: 14, 16, 375, 1920;
  text-align: left;
}
.modal-title {
  font-size: 24px;
  font-size: 1.5rem;
}

.modal-subtitle {
  font-size: 16px;
  font-size: 1rem;
  color: gray;
  padding-bottom: 1em;
}

.modal__employment {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .modal__employment {
    margin-top: 0 !important;
  }
}

.modal-description {
  border-bottom: 1px solid #eb9500;
}

.modal__major {
  text-align: left;
  margin-top: 0 !important;
}

.modal-section-title {
  text-align: left;
  font-size: 19.2px;
  font-size: 1.2rem;
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.modal-qualifications {
  list-style: disc;
  text-align: left;
}

/* 表示用のボタン */
.open-modal {
  text-decoration: underline;
  margin-top: auto;
  font-size: 16px;
  font-size: 1rem;
  cursor: pointer;
  color: #60574b;
}
@media screen and (max-width: 520px) {
  .open-modal {
    font-size: 0.875rem;
  }
}

/* モーダル表示時 */
.modal-overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mv {
  background-image: url(../images/common/img_mv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 400px;
  height: 25rem;
  position: relative;
  z-index: 0;
  overflow-x: clip;
}
@media screen and (max-width: 520px) {
  .mv {
    background-image: url(../images/common/img_mv-sp.png);
    background-position: top center;
    background-size: auto auto;
    background-size: initial;
    height: 9.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .mv {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1366px) {
  .mv {
    margin-top: 0;
    height: 400px;
  }
}

.mv::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/common/bg_mv-filter.png);
  height: 100%;
  width: 100%;
  z-index: -1;
}

.mv__wrap {
  text-align: center;
  position: relative;
  z-index: 1;
  top: 90px;
}
@media screen and (max-width: 520px) {
  .mv__wrap {
    top: 0;
  }
}
@media screen and (min-width: 768px) {
  .mv__wrap {
    top: 27px;
  }
}
@media screen and (min-width: 1024px) {
  .mv__wrap {
    top: 45px;
  }
}
@media screen and (min-width: 1366px) {
  .mv__wrap {
    top: 153px;
  }
}

.mv__wrap::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
  background: url(../images/common/bg_mv-circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 117px;
  width: 449px;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .mv__wrap::after {
    height: 124px;
    width: 365px;
    top: 35%;
  }
}
@media screen and (min-width: 768px) {
  .mv__wrap::after {
    height: 146px;
    width: 571px;
  }
}
@media screen and (min-width: 1024px) {
  .mv__wrap::after {
    height: 230px;
    width: 749px;
  }
}
@media screen and (min-width: 1366px) {
  .mv__wrap::after {
    top: 50%;
  }
}

.mv__logo-icon {
  width: 3%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 520px) {
  .mv__logo-icon {
    width: 6%;
  }
}

.mv__left-tree {
  position: absolute;
  top: -25%;
  left: 13%;
  width: 17%;
  z-index: 1;
}
@media screen and (max-width: 520px) {
  .mv__left-tree {
    top: 0;
    left: 11%;
  }
}
@media screen and (min-width: 768px) {
  .mv__left-tree {
    top: -58%;
    left: 30%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 17%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__left-tree {
    top: -35%;
  }
}
@media screen and (min-width: 1366px) {
  .mv__left-tree {
    top: -25%;
  }
}

.mv__right-tree {
  position: absolute;
  top: -20%;
  right: 2%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 17%;
  z-index: 1;
}
@media screen and (max-width: 520px) {
  .mv__right-tree {
    top: 0;
  }
}
@media screen and (min-width: 768px) {
  .mv__right-tree {
    top: -39%;
    right: 17%;
    width: 14%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__right-tree {
    top: -20%;
  }
}

.recruit {
  background-image: url(../images/common/bg_recruit.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .recruit {
    background-size: cover;
    background-position-x: -189px;
  }
}
@media screen and (min-width: 1024px) {
  .recruit {
    background-position-x: -209px;
  }
}
@media screen and (min-width: 1920px) {
  .recruit {
    background-position-x: 0;
  }
}
@media screen and (max-width: 520px) {
  .recruit {
    background-image: url(../images/common/bg_sp-recruit.jpg);
    background-size: cover;
    background-size: contain;
    background-position-x: 0;
    background-position-x: initial;
  }
}

.recruit__inner {
  text-align: center;
  padding-top: 113px;
  padding-top: 7.0625rem;
  padding-bottom: 79px;
  padding-bottom: 4.9375rem;
}
@media screen and (max-width: 520px) {
  .recruit__inner {
    padding-top: 11.75rem;
  }
}

.recruit__title.title {
  text-align: center;
}

.recruit__message {
  font-size: clamp(30px, 26.359px + 0.9708737864vw, 45px);
  font-size: clamp(1.875rem, 1.6474514563rem + 0.9708737864vw, 2.8125rem);
  margin-top: 36px;
  margin-top: 2.25rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 520px) {
  .recruit__message {
    margin-top: 1.75rem;
    white-space: nowrap;
    letter-spacing: 0.03em;
  }
}

.recruit__text {
  font-size: clamp(14px, 13.514px + 0.1294498382vw, 16px);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  margin-top: 37px;
  margin-top: 2.3125rem;
  line-height: 1.7;
  font-weight: 400;
}
@media screen and (max-width: 520px) {
  .recruit__text {
    margin-top: 1.3125rem;
    text-align: left;
    text-align: initial;
    line-height: 1.9;
  }
}

.recruit__footer {
  margin-top: 47px;
  margin-top: 2.9375rem;
}
@media screen and (max-width: 520px) {
  .recruit__footer {
    margin-top: 0.1875rem;
    margin-top: 1.6875rem;
  }
}

.recruit__footer-link {
  padding: 23px 100px;
  padding: 1.4375rem 6.25rem;
  background-color: #eb9500;
  border: 3px solid #eb9500;
  color: #fff;
  font-size: clamp(17px, 15.786px + 0.3236245955vw, 22px);
  font-size: clamp(1.0625rem, 0.9866504854rem + 0.3236245955vw, 1.375rem);
  display: inline-block;
  border-radius: 40px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 520px) {
  .recruit__footer-link {
    width: 100%;
    padding: 23px 0;
    letter-spacing: 0.19em;
  }
}

.recruit__footer-link::after {
  content: "";
  position: absolute;
  right: 18px;
  right: 1.125rem;
  letter-spacing: 0.1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow-recruit.png);
  background-size: contain;
  height: 25px;
  height: 1.5625rem;
  width: 25px;
  width: 1.5625rem;
}

.syakuji .title {
  text-align: center;
}

.syakuji .title .en {
  color: #efb0a0 !important;
}

.syakuji .recruit__footer-link {
  background-color: #efb0a0;
  border: 1px solid #efb0a0;
}

.syakuji .recruit__footer-link::after {
  content: none;
}

.syakuji .recruit__footer-link span {
  position: relative;
  position: absolute;
  display: inline-block;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  right: 1.125rem;
  background-color: #efb0a0;
}

.syakuji .recruit__footer-link span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 5px;
}

.sec-title {
  font-size: clamp(26px, 23.087px + 0.7766990291vw, 38px);
  font-size: clamp(1.625rem, 1.442961165rem + 0.7766990291vw, 2.375rem);
  font-weight: 700;
  position: relative;
  padding-left: 2.3em;
}
@media screen and (min-width: 768px) {
  .sec-title {
    padding-left: 3.2em;
    letter-spacing: 0.14em;
  }
}

.sec-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_mv-logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 50px;
  height: 3.125rem;
  width: 50px;
  width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .sec-title::before {
    height: 5rem;
    width: 5rem;
  }
}

.en {
  color: #eb9500;
  font-size: 16px;
  font-size: 1rem;
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 520px) {
  .en {
    font-size: 0.8125rem;
  }
}

.sidebar {
  position: fixed;
  right: 0;
  top: 8.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .sidebar {
    top: 16.7%;
  }
}
@media screen and (min-width: 1920px) {
  .sidebar {
    top: 8.7%;
  }
}

.sidebar.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .sidebar.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sidebar-item--active.sidebar {
  width: 300px;
  width: 18.75rem;
}

.sidebar-item {
  font-size: 16px;
  font-size: 1rem;
  border-radius: 26px 0 0 26px;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.18em;
  padding: 58px 19px 15px;
  padding: 3.625rem 1.1875rem 0.9375rem;
}
.sidebar-item + .sidebar-item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.sidebar-item.sidebar-item--orange {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.sidebar-item.sidebar-item--orange span {
  display: block;
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
}

.sidebar__tel {
  background-color: red;
}

.sidebar-item--green {
  background-color: #76b743;
  position: relative;
  pointer-events: auto;
}

.sidebar-item--green::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  top: 0.9375rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/common/icon_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  height: 1.875rem;
  width: 30px;
  width: 1.875rem;
}

.sidebar-item--pink::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  top: 0.9375rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/common/icon_mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  height: 1.875rem;
  width: 30px;
  width: 1.875rem;
}

.sidebar-item--orange::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  top: 0.9375rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/common/icon_recruit.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  height: 1.875rem;
  width: 30px;
  width: 1.875rem;
}

.sidebar-item--pink {
  background-color: #efb0a0;
  position: relative;
}

.sidebar-item--orange {
  background-color: #eb9500;
  position: relative;
}

.sidebar-wrap {
  position: fixed;
  right: 0;
  top: 137px;
  z-index: 99;
  pointer-events: none;
}
@media screen and (min-width: 1366px) {
  .sidebar-wrap {
    top: 200px;
  }
}

.sidebar__content {
  -webkit-transform: translateX(81%);
          transform: translateX(81%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  pointer-events: auto;
}

.open.sidebar-item--active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.sidebar_item1 {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  background-color: #76b743;
  position: relative;
  border-radius: 26px 0 0 26px;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.18em;
  padding: 52px 19px 15px;
  padding: 3.25rem 1.1875rem 0.9375rem;
}

.sidebar__content:not(:first-child) {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.sidebar_item1.sidebar_item1--pink {
  background-color: #efb0a0;
}

.sidebar_item1.sidebar_item1--orange {
  background-color: #e6b229;
}

.sidebar_item1.sidebar_item1--orange span {
  background: url(../images/common/icon_recruit.png);
  background-size: contain;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sidebar_item1.sidebar_item1--pink span {
  background: url(../images/common/icon_mail.png);
  background-size: contain;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sidebar_item1 span {
  content: "";
  position: absolute;
  top: 17px;
  top: 1.0625rem;
  font-size: 14px;
  font-size: 0.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/common/icon_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  height: 1.875rem;
  width: 30px;
  width: 1.875rem;
}

.sidebar_item1-info {
  font-size: 34px;
  font-size: 2.125rem;
  background-color: #f8f6ea;
  padding: 10px 20px;
  color: #76b743;
  border: 2px solid #76b743;
  pointer-events: auto !important;
}

.sidebar_item1-info span {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  color: #60574b;
}

.sidebar_item1-info .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub-faq__list {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .sub-faq__list {
    max-width: 80%;
  }
}

.sub-faq__list.fix-section {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-faq__list.fix-section {
    margin-top: 2.5rem;
  }
}

.sub-faq-list__item {
  background-color: #fff;
  -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, .05);
          box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, .05);
  border-radius: 50px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .sub-faq-list__item {
    border-radius: 30px;
  }
}

.sub-faq-list__item + .sub-faq-list__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-faq-list__item + .sub-faq-list__item {
    margin-top: 2.5rem;
  }
}

.sub-faq-list__item.fix {
  margin-top: 20px;
  margin-top: 1.25rem;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .sub-faq-list__item.fix {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .sub-faq-list__item.fix {
    max-width: 80%;
  }
}

.sub-faq-list__item-question {
  padding: 12px 40px 12px 60px;
  padding: 0.75rem 2.5rem 0.75rem 3.75rem;
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
  text-indent: -20px;
  text-indent: -1.25rem;
  cursor: pointer;
  background-color: #c8e2b4;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-indent: 0;
}
@media screen and (max-width: 520px) {
  .sub-faq-list__item-question {
    padding: 0.75rem 2.5rem 0.75rem 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-faq-list__item-question {
    padding: 0.875rem 3.75rem 0.875rem 2.5rem;
    font-size: 1.125rem;
  }
}

.sub-faq-list__item-question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-image: url(../images/common/icon_q-triangle.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .sub-faq-list__item-question::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.sub-faq-list__item-question.is-open::before {
  -webkit-transform: translateY(-50%) rotate(360deg);
          transform: translateY(-50%) rotate(360deg);
}

.sub-faq-list__item-question span {
  margin-right: 12px;
  margin-right: 0.75rem;
  display: inline-block;
  background-image: url(../images/common/icon_q.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .sub-faq-list__item-question span {
    margin-right: 2.875rem;
  }
}

.sub-faq-list__item-answer {
  padding: 15px 30px 15px 60px;
  padding: 0.9375rem 1.875rem 0.9375rem 3.75rem;
  display: none;
  font-size: 15px;
  font-size: 0.9375rem;
  text-indent: -20px;
  text-indent: -1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-faq-list__item-answer {
    padding: 1.25rem 2.5rem 0.9375rem 5rem;
    font-size: 1.125rem;
  }
}

.sub-faq-list__item-answer span {
  margin-right: 20px;
  margin-right: 1.25rem;
  display: inline-block;
  color: #c8e2b4;
}

.faq__img {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.sub-page__sub-title {
  font-weight: 700;
  font-size: clamp(20px, 17.572px + 0.6472491909vw, 30px);
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.2em;
}

.sub-page__sub-title span {
  background-image: url(../images/common/icon_sub-title.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  margin-right: 20px;
  margin-right: 1.25rem;
}

.sub-page-title {
  font-size: clamp(24px, 20.601px + 0.9061488673vw, 38px);
  font-size: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #60574B;
  text-align: center;
}
.sub-page-title .en {
  font-weight: 500;
  color: #eb9500;
  font-size: 16px;
  font-size: 1rem;
  display: block;
}
@media screen and (max-width: 520px) {
  .sub-page-title .en {
    letter-spacing: 0.1em;
  }
}

.sub-page {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .sub-page {
    padding-bottom: 12.5rem;
  }
}
@media screen and (min-width: 1366px) {
  .sub-page {
    padding-bottom: 15.625rem;
  }
}

.sub-title {
  color: #eb9500;
  font-weight: 700;
  font-size: clamp(20px, 17.572px + 0.6472491909vw, 30px);
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.2em;
}

.sub-title span {
  background-image: url(../images/common/icon_sub-title.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  margin-right: 20px;
  margin-right: 1.25rem;
}

.table__list {
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.3;
  letter-spacing: 0.08em;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
  background-image: linear-gradient(90deg, #eb9500 0 134px, #dedede 22.5%);
}
@media screen and (min-width: 768px) {
  .table__list {
    padding-bottom: 1.875rem;
    padding-left: 1.25rem;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #eb9500), color-stop(25.5%, #dedede));
    background-image: linear-gradient(90deg, #eb9500 0 25.5%, #dedede 25.5%);
  }
}
@media screen and (max-width: 520px) {
  .table__list {
    background-image: linear-gradient(90deg, #eb9500 0 130px, #dedede 25.5%);
  }
}

.table__list + .table__list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .table__list + .table__list {
    margin-top: 1rem;
  }
}

.table__term {
  max-width: 165px;
  max-width: 10.3125rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 520px) {
  .table__term {
    max-width: 7.5rem;
  }
}
@media screen and (min-width: 768px) {
  .table__term {
    max-width: 11.25rem;
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .table__description {
    font-size: 16px;
  }
}

.table__description li {
  list-style: none;
  text-indent: -3em;
  padding-left: 3em;
}

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

.table__description li:not(:first-child) {
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.table__description p {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.test {
  font-size: 100px;
  font-size: 6.25rem;
  background-color: #60574b;
  color: #fff;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #f8f6ea;
  overflow: hidden;
}

/*鳥*/
.bird-left-to-right {
  position: absolute;
  top: 30%;
  width: 40%;
  -webkit-animation: flyLeftToRight 10s infinite linear;
          animation: flyLeftToRight 10s infinite linear;
}
@media screen and (max-width: 520px) {
  .bird-left-to-right {
    width: 28%;
  }
}

.bird-right-to-left {
  position: absolute;
  top: 60%;
  -webkit-animation: flyRightToLeft 8s infinite linear;
          animation: flyRightToLeft 8s infinite linear;
}

@-webkit-keyframes flyLeftToRight {
  0% {
    -webkit-transform: translateX(-100px) translateY(0px);
            transform: translateX(-100px) translateY(0px);
  }
  25% {
    -webkit-transform: translateX(25vw) translateY(50px);
            transform: translateX(25vw) translateY(50px);
  }
  50% {
    -webkit-transform: translateX(50vw) translateY(0px);
            transform: translateX(50vw) translateY(0px);
  }
  75% {
    -webkit-transform: translateX(75vw) translateY(50px);
            transform: translateX(75vw) translateY(50px);
  }
  100% {
    -webkit-transform: translateX(100vw) translateY(0px);
            transform: translateX(100vw) translateY(0px);
  }
}

@keyframes flyLeftToRight {
  0% {
    -webkit-transform: translateX(-100px) translateY(0px);
            transform: translateX(-100px) translateY(0px);
  }
  25% {
    -webkit-transform: translateX(25vw) translateY(50px);
            transform: translateX(25vw) translateY(50px);
  }
  50% {
    -webkit-transform: translateX(50vw) translateY(0px);
            transform: translateX(50vw) translateY(0px);
  }
  75% {
    -webkit-transform: translateX(75vw) translateY(50px);
            transform: translateX(75vw) translateY(50px);
  }
  100% {
    -webkit-transform: translateX(100vw) translateY(0px);
            transform: translateX(100vw) translateY(0px);
  }
}
@-webkit-keyframes flyRightToLeft {
  0% {
    -webkit-transform: translateX(100vw) translateY(0px);
            transform: translateX(100vw) translateY(0px);
  }
  25% {
    -webkit-transform: translateX(75vw) translateY(50px);
            transform: translateX(75vw) translateY(50px);
  }
  50% {
    -webkit-transform: translateX(50vw) translateY(0px);
            transform: translateX(50vw) translateY(0px);
  }
  75% {
    -webkit-transform: translateX(25vw) translateY(50px);
            transform: translateX(25vw) translateY(50px);
  }
  100% {
    -webkit-transform: translateX(-100px) translateY(0px);
            transform: translateX(-100px) translateY(0px);
  }
}
@keyframes flyRightToLeft {
  0% {
    -webkit-transform: translateX(100vw) translateY(0px);
            transform: translateX(100vw) translateY(0px);
  }
  25% {
    -webkit-transform: translateX(75vw) translateY(50px);
            transform: translateX(75vw) translateY(50px);
  }
  50% {
    -webkit-transform: translateX(50vw) translateY(0px);
            transform: translateX(50vw) translateY(0px);
  }
  75% {
    -webkit-transform: translateX(25vw) translateY(50px);
            transform: translateX(25vw) translateY(50px);
  }
  100% {
    -webkit-transform: translateX(-100px) translateY(0px);
            transform: translateX(-100px) translateY(0px);
  }
}
/*揺れる木*/
.move-branch {
  /*      width: 300px;*/
  -webkit-transform-origin: 90% 0%;
          transform-origin: 90% 0%;
  -webkit-animation: swayBranch 1s ease-in-out infinite alternate;
          animation: swayBranch 1s ease-in-out infinite alternate;
}

@-webkit-keyframes swayBranch {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
}

@keyframes swayBranch {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
}
.leaf {
  -webkit-animation: swayLeaves 3s ease-in-out infinite alternate;
          animation: swayLeaves 3s ease-in-out infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes swayLeaves {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}

@keyframes swayLeaves {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}
/* CSSアニメーションの指定 */
.Headline {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  white-space: nowrap;
  -webkit-animation: SlideIn 8s forwards;
          animation: SlideIn 8s forwards;
}

/* スライドイン */
@-webkit-keyframes SlideIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  20% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /* 5秒間停止 (20%から82.5%まで) */
  82.5% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes SlideIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  20% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /* 5秒間停止 (20%から82.5%まで) */
  82.5% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.p-price-list {
  width: 100%;
  line-height: 1;
  text-align: center;
  border-collapse: collapse;
}

.p-price-list tr:nth-of-type(2n + 3) {
  background-color: #f7f7f7;
}

.p-price-list__head {
  padding: 15px 0;
  padding: 0.9375rem 0;
  width: 33.333%;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  border: 1px solid pink;
  color: pink;
}
@media screen and (min-width: 768px) {
  .p-price-list__head {
    padding: 1.25rem 0;
    font-size: 1.5rem;
  }
}

.p-price-list__data {
  padding: 10px 0;
  padding: 0.625rem 0;
  font-size: 12px;
  font-size: 0.75rem;
  width: 33.333%;
  border: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .p-price-list__data {
    padding: 0.9375rem 0;
    font-size: 1.125rem;
  }
}

.p-price-list__data span {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  position: relative;
  display: block;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
}

.title {
  font-size: clamp(28px, 25.572px + 0.6472491909vw, 38px);
  font-size: clamp(1.75rem, 1.5983009709rem + 0.6472491909vw, 2.375rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #60574B;
}
@media screen and (min-width: 768px) {
  .title {
    text-align: left;
    text-align: initial;
  }
}

.title .en {
  font-weight: 500;
  color: #eb9500;
  font-size: 16px;
  font-size: 1rem;
  display: block;
}
@media screen and (max-width: 520px) {
  .title .en {
    letter-spacing: 0.1em;
  }
}

.under-page {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .under-page {
    padding-bottom: 7.5rem;
  }
}

.page.page-id-71 {
  background-color: #f8f6ea;
}

.sub-about__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sub-about__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.sub-about__block-img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  .sub-about__block-img {
    overflow-x: clip;
  }
}
@media screen and (min-width: 768px) {
  .sub-about__block-img {
    width: 100%;
    border-radius: 0 40px 40px 0;
    overflow: hidden;
    -webkit-transform: translateX(-62px);
            transform: translateX(-62px);
  }
}
@media screen and (min-width: 1024px) {
  .sub-about__block-img {
    width: 90%;
  }
}

.sub-about__block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 520px) {
  .sub-about__block-img img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.sub-about__block-content {
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  opacity: 0.9;
  padding: 20px;
  padding: 1.25rem;
  margin-top: -35px;
  margin-top: -2.1875rem;
}
@media screen and (min-width: 768px) {
  .sub-about__block-content {
    position: absolute;
    right: -1.375rem;
    width: 63%;
    margin-top: 2.5rem;
    padding: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .sub-about__block-content {
    right: 0;
  }
}
@media screen and (min-width: 1920px) {
  .sub-about__block-content {
    right: 0;
  }
}

.sub-about__block-title {
  font-size: clamp(30px, 26.359px + 0.9708737864vw, 45px);
  font-size: clamp(1.875rem, 1.6474514563rem + 0.9708737864vw, 2.8125rem);
  text-indent: -0.5em;
}

.sub-about__block-icon {
  position: absolute;
  width: 34%;
  right: 0;
  right: -9px;
  right: -0.5625rem;
  top: -38px;
  top: -2.375rem;
}
@media screen and (min-width: 768px) {
  .sub-about__block-icon {
    width: 32%;
    top: -7%;
    right: 2%;
  }
}

.sub-about__block-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .sub-about__block-text {
    line-height: 1.9;
    margin-top: 1.25rem;
  }
}

.promise__list {
  margin-top: 384px;
  margin-top: 24rem;
}
@media screen and (max-width: 520px) {
  .promise__list {
    margin-top: 16rem;
  }
}
@media screen and (min-width: 768px) {
  .promise__list {
    margin-top: 22.5rem;
  }
}

.promise__list-item {
  position: relative;
  scroll-margin-top: 400px;
}
@media screen and (max-width: 520px) {
  .promise__list-item {
    scroll-margin-top: 300px;
  }
}
@media screen and (min-width: 768px) {
  .promise__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.promise__list-item:nth-of-type(odd) .number {
  left: 12%;
}
@media screen and (min-width: 768px) {
  .promise__list-item:nth-of-type(odd) .number {
    left: 34%;
  }
}

.promise__list-item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.promise__list-item + .promise__list-item {
  margin-top: 380px;
  margin-top: 23.75rem;
}
@media screen and (max-width: 520px) {
  .promise__list-item + .promise__list-item {
    margin-top: 15.75rem;
  }
}
@media screen and (min-width: 768px) {
  .promise__list-item + .promise__list-item {
    margin-top: 25.75rem;
  }
}

@media screen and (min-width: 768px) {
  .promise__list-item:nth-of-type(even) .promise__list-content {
    margin-right: auto;
    margin-left: 0;
  }
}

.promise__list-item:nth-of-type(even) .promise__list-itemImg {
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .promise__list-item:nth-of-type(even) .promise__list-itemImg {
    z-index: 0;
  }
}

.promise__list-itemImg {
  position: absolute;
  z-index: -1;
  aspect-ratio: 600/400;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  top: -333px;
  top: -20.8125rem;
}
@media screen and (max-width: 520px) {
  .promise__list-itemImg {
    top: -12.5rem;
  }
}
@media screen and (min-width: 768px) {
  .promise__list-itemImg {
    width: 49%;
    top: -18.75rem;
  }
}
@media screen and (min-width: 1366px) {
  .promise__list-itemImg {
    top: -19.9375rem;
  }
}

.promise__list-content {
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  z-index: -1;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .promise__list-content {
    padding: 2.875rem 4.75rem;
    width: 76%;
    margin-left: auto;
    position: static;
    position: initial;
  }
}

.number {
  position: absolute;
  left: 12%;
  z-index: -1;
  top: -44px;
  top: -2.75rem;
}
@media screen and (min-width: 768px) {
  .number {
    top: -3.75rem;
  }
}

.number::before {
  counter-increment: number 1;
  content: " 0" counter(number) "";
  font-size: clamp(40px, 32.718px + 1.9417475728vw, 70px);
  font-size: clamp(2.5rem, 2.0449029126rem + 1.9417475728vw, 4.375rem);
  color: #eb9500;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  transform: translateX(-50%);
  background: url(../images/common/icon_promise.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 120px;
  height: 7.5rem;
  width: 120px;
  width: 7.5rem;
  line-height: 88px;
  line-height: 5.5rem;
}
@media screen and (min-width: 768px) {
  .number::before {
    height: 12.5rem;
    width: 12.5rem;
    line-height: 8.125rem;
  }
}

.promise__list-contentTitle {
  font-size: clamp(20px, 17.572px + 0.6472491909vw, 30px);
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .promise__list-contentTitle {
    padding-left: 0;
  }
}

.promise__list-contentHighlight {
  font-size: clamp(18px, 16.786px + 0.3236245955vw, 23px);
  font-size: clamp(1.125rem, 1.0491504854rem + 0.3236245955vw, 1.4375rem);
  margin-top: 44px;
  margin-top: 2.75rem;
  line-height: 1.7;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .promise__list-contentHighlight {
    padding-left: 0;
  }
}

.promise__list-contentHighlight span {
  background-color: #eb9500;
  color: #fff;
  padding: 0 7px;
  padding: 0 0.4375rem;
}
@media screen and (max-width: 520px) {
  .promise__list-contentHighlight span {
    padding: 0 0.3125rem;
  }
}

.promise__list-contentText {
  padding: 20px;
  padding: 1.25rem;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .promise__list-contentText {
    margin-top: 1.8125rem;
    line-height: 1.85;
    font-size: 16px;
  }
}

.president__block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .president__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2%;
  }
}

.president__img {
  width: 100%;
  height: 50%;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .president__img {
    width: 38%;
  }
}

.president__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.president__history-table {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .president__history-table {
    width: 60%;
  }
}

@media screen and (max-width: 520px) {
  .president__history-table .table__list {
    background-image: linear-gradient(90deg, #eb9500 0 80px, #dedede 25.5%);
  }
}

@media screen and (max-width: 520px) {
  .president__history-table .table__term {
    width: 5.5rem;
  }
}

.collaborative__description {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .collaborative__description {
    line-height: 1.8;
  }
}

.collaborate-hospital__list {
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #000;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .collaborate-hospital__list {
    padding-bottom: 1.5625rem;
    font-size: 16px;
  }
}

.collaborate-hospital__list:first-child {
  border-top: 1px solid #000;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .collaborate-hospital__list:first-child {
    padding-top: 1.5625rem;
  }
}

.collaborate-hospital__list + .collaborate-hospital__list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .collaborate-hospital__list + .collaborate-hospital__list {
    margin-top: 1.5625rem;
  }
}

.collaborate-hospital__term {
  max-width: 120px;
  max-width: 7.5rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .collaborate-hospital__term {
    max-width: 8.75rem;
  }
}

.collaborate-hospital__description {
  line-height: 1.6;
}

.collaborate-hospital__attention {
  margin-top: 7px;
  margin-top: 0.4375rem;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .collaborate-hospital__attention {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.program__description {
  line-height: 1.8;
}

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

.program__list-item + .program__list-item {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .program__list-item + .program__list-item {
    margin-top: 0.5rem;
  }
}

.data__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3%;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 520px) {
  .data__wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .data__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.data__wrapper-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  row-gap: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .data__wrapper-left {
    width: 45%;
  }
}

.data__card {
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 0 rgba(186, 219, 161, .7);
          box-shadow: 2px 2px 0 rgba(186, 219, 161, .7);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
  padding: 1.25rem;
  font-weight: 400;
}

.data__card .data-note {
  font-size: clamp(16px, 15.514px + 0.1294498382vw, 18px);
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  display: block;
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 400;
}
@media screen and (max-width: 520px) {
  .data__card .data-note {
    margin-top: 0;
  }
}

.data__card-title {
  text-align: center;
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 500;
}

.data__card-text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .data__card-text {
    font-size: 1.6875rem;
    margin-top: 1.875rem;
  }
}

.data__card-text span {
  text-align: center;
  color: #eb9500;
  font-size: clamp(24px, 22.058px + 0.5177993528vw, 32px);
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .data__card-text span {
    margin-top: 0.625rem;
  }
}

.data__wrapper-right {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .data__wrapper-right {
    width: 94%;
  }
}

.data__card-big {
  margin-top: 30px;
  margin-top: 1.875rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .data__card-big {
    margin-top: 0;
  }
}

.data__card-big img {
  height: 100%;
}

.archive-staff__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1%;
  row-gap: 10px;
}

.archive-staff__filter + .archive-staff__filter {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .archive-staff__filter + .archive-staff__filter {
    margin-top: 1.25rem;
  }
}

.archive-staff__button {
  display: inline-block;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
  background-color: #eb9500;
  color: #fff;
  border-radius: 20px;
}

.archive-staff-wrapper__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4%;
  row-gap: 40px;
  row-gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 520px) {
  .archive-staff-wrapper__inner {
    gap: 10%;
    row-gap: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .archive-staff-wrapper__inner {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.archive-staff-wrapper__content {
  width: 30%;
  text-align: center;
  list-style: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 520px) {
  .archive-staff-wrapper__content {
    width: 44%;
  }
}
@media screen and (min-width: 768px) {
  .archive-staff-wrapper__content {
    width: 20%;
  }
}

.archive-staff-wrapper__img {
  border-radius: 50%;
  overflow: hidden;
}

.archive-staff-wrapper__img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.archive-staff-wrapper__name {
  font-size: 16px;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 520px) {
  .archive-staff-wrapper__name {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .archive-staff-wrapper__name {
    font-size: 1.125rem;
  }
}

.archive-staff-wrapper__position {
  font-size: 14px;
}
@media screen and (max-width: 520px) {
  .archive-staff-wrapper__position {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .archive-staff-wrapper__position {
    font-size: 1rem;
  }
}

.archive-staff-wrapper__department {
  font-size: 16px;
}
@media screen and (max-width: 520px) {
  .archive-staff-wrapper__department {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .archive-staff-wrapper__department {
    font-size: 1.125rem;
  }
}

.no-post {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.page-id-23 {
  background-color: #f8f6ea;
}

.header.branch-header {
  top: 16px;
  top: 1rem;
}

.l-branch-contact {
  margin-top: 200px;
  margin-top: 12.5rem;
  margin-bottom: 200px;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 520px) {
  .l-branch-contact {
    padding-top: 0;
    margin-top: 1.875rem;
  }
}

.l-branch-area {
  margin-top: 120px;
  margin-top: 7.5rem;
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (max-width: 520px) {
  .l-branch-area {
    padding-top: 1.875rem;
    margin-top: 7.6875rem;
  }
}

.l-branch-clinic {
  margin-top: 160px;
  margin-top: 10rem;
}
@media screen and (max-width: 520px) {
  .l-branch-clinic {
    padding-top: 1.875rem;
    margin-top: 2.375rem;
  }
}

.l-branch-medical {
  margin-top: -60px;
  margin-top: -3.75rem;
}
@media screen and (max-width: 520px) {
  .l-branch-medical {
    margin-top: 0;
  }
}

.l-branch-staff {
  margin-top: 170px;
  margin-top: 10.625rem;
}
@media screen and (max-width: 520px) {
  .l-branch-staff {
    margin-top: 6.875rem;
  }
}

.branch-layout-news {
  margin-top: 260px;
  margin-top: 16.25rem;
}

.branch__link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9999;
}

.branch__link:hover {
  opacity: 0.5;
}

.branch-branch-mv__link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  z-index: 9999;
  font-size: 16px;
  font-size: 1rem;
}

.branch-branch-mv__link:hover {
  opacity: 0.5;
}

.branch-area {
  background-color: #fbf6d5;
  border-top-left-radius: 1000px 200px;
  border-top-left-radius: 62.5rem 12.5rem;
  border-top-right-radius: 1000px 200px;
  border-top-right-radius: 62.5rem 12.5rem;
  position: relative;
  overflow-x: clip;
}

.branch-area__inner {
  width: 100%;
  max-width: 1740px;
  max-width: 108.75rem;
}
@media screen and (max-width: 520px) {
  .branch-area__inner {
    max-width: 33.75rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .branch-area__inner {
    max-width: 108.75rem;
    padding-right: 4.6875rem;
    padding-right: 4.6875rem;
  }
}

.branch-area__title {
  text-align: center;
  position: relative;
}

.branch-area__title::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 140px;
  width: 8.75rem;
  height: 140px;
  height: 8.75rem;
  background-image: url(../images/common/branch-area/branch-area_before_img.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: -27px;
  left: -1.6875rem;
  bottom: -10px;
  bottom: -0.625rem;
}
@media screen and (max-width: 520px) {
  .branch-area__title::before {
    width: 4.625rem;
    height: 4.625rem;
    left: -1.6875rem;
    bottom: 2.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .branch-area__title::before {
    width: 14.625rem;
    height: 14.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .branch-area__title::before {
    left: 21.5%;
    bottom: -1rem;
  }
}

.branch-area__title::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 140px;
  width: 8.75rem;
  height: 140px;
  height: 8.75rem;
  background-image: url(../images/common/branch-area/branch-area_after_img.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -34px;
  bottom: -2.125rem;
  right: 0;
}
@media screen and (max-width: 520px) {
  .branch-area__title::after {
    width: 4.375rem;
    height: 4.375rem;
    right: -0.9375rem;
    bottom: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .branch-area__title::after {
    width: 13.875rem;
    height: 13.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .branch-area__title::after {
    right: 21.5%;
    bottom: -2.125rem;
  }
}

.branch-area__container {
  margin-top: 160px;
  margin-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .branch-area__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 520px) {
  .branch-area__container {
    margin-top: 3.75rem;
    padding-bottom: 6.25rem;
  }
}

.branch-area__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .branch-area__img {
    width: 80%;
  }
}
@media screen and (max-width: 520px) {
  .branch-area__img {
    margin: -2px calc(50% - 50vw);
    width: 115vw;
  }
}

@media screen and (max-width: 520px) {
  .branch-area__img img {
    margin: 10px calc(38% - 50vw);
    width: 115vw;
  }
}

.branch-area__wrap {
  margin-left: 0;
  width: 100%;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .branch-area__wrap {
    width: 47%;
    margin-left: -1.875rem;
  }
}
@media screen and (max-width: 520px) {
  .branch-area__wrap {
    margin-left: 0;
    margin-left: initial;
    width: auto;
    width: initial;
    margin-top: 3.75rem;
  }
}

.branch-area__body:not(:first-child) {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .branch-area__body:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.branch-area__body-title {
  width: 100%;
  font-size: 25px;
  font-size: 1.5625rem;
  background-color: #ec6b61;
  letter-spacing: 0;
  color: #fff;
  padding: 2px 5px;
  padding: 0.125rem 0.3125rem;
}
@media screen and (max-width: 520px) {
  .branch-area__body-title {
    font-size: 1.25rem;
    width: auto;
    width: initial;
  }
}
@media screen and (min-width: 768px) {
  .branch-area__body-title {
    width: 27.5rem;
  }
}

.branch-area__body-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #60574b;
  padding: 10px 0 0 5px;
  padding: 0.625rem 0 0 0.3125rem;
  letter-spacing: -0.05em;
  word-break: keep-all;
}
@media screen and (max-width: 520px) {
  .branch-area__body-text {
    font-size: 1rem;
    letter-spacing: -0.1em;
    padding-top: 0.625rem;
    padding-left: 0.5625rem;
    line-height: 1.75;
  }
}

.branch-area__right-leaf-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 17%;
}
@media screen and (max-width: 520px) {
  .branch-area__right-leaf-img {
    top: -6%;
    right: -1.4375rem;
    z-index: 10;
    width: 41%;
  }
}

.branch-button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.branch-button:hover {
  opacity: 0.5;
}

.branch-clinic {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .branch-clinic {
    margin-bottom: 5.25rem;
  }
}

.branch-clinic__inner {
  max-width: 1130px;
  max-width: 70.625rem;
  margin-inline: auto;
  padding-right: 25px;
  padding-right: 1.5625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 520px) {
  .branch-clinic__inner {
    padding: 0;
  }
}

.branch-clinic__container {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 520px) {
  .branch-clinic__container {
    margin-top: 2.5rem;
  }
}

.branch-clinic__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px dashed #ec6b61;
  font-size: 20px;
  font-size: 1.25rem;
  color: #60574b;
}
@media screen and (max-width: 520px) {
  .branch-clinic__wrap {
    font-size: 0.875rem;
  }
}

.branch-clinic__wrap:last-child {
  border-bottom: none;
}

.branch-clinic__dt {
  width: 190px;
  width: 11.875rem;
  background-color: #f9d1ce;
  padding: 26px;
  padding: 1.625rem;
}
@media screen and (max-width: 520px) {
  .branch-clinic__dt {
    width: 7.375rem;
    padding: 0.625rem 1.375rem;
  }
}

@media screen and (max-width: 520px) {
  .branch-clinic__dt.branch-clinic__dt--wide,
  .branch-clinic__dd.branch-clinic__dd--wide {
    padding: 1.25rem 1.375rem;
  }
}

@media screen and (max-width: 520px) {
  .branch-clinic__dt.branch-clinic__dt--wider,
  .branch-clinic__dd.branch-clinic__dd--wider {
    padding: 1.875rem 1.375rem;
  }
}

.branch-clinic__dd {
  width: 890px;
  width: 55.625rem;
  padding: 26px;
  padding: 1.625rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 520px) {
  .branch-clinic__dd {
    width: 16.0625rem;
    padding: 0.25rem 1.25rem 0.625rem 0.6875rem;
    letter-spacing: 0.2em;
  }
}

.branch-clinic__dd-title:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: block;
}

.branch-clinic__dd-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 520px) {
  .branch-clinic__dd-text {
    margin-top: 0.625rem;
  }
}

.branch-contact__inner {
  max-width: 1366px;
  max-width: 85.375rem;
  margin-inline: auto;
  padding-right: 25px;
  padding-right: 1.5625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  width: 100%;
}

.branch-contact__container {
  background-color: #fff;
  border: 1px solid transparent;
  position: relative;
  border-radius: 38px;
  padding: 0 10px 17px;
  padding: 0 0.625rem 1.0625rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__container {
    border-radius: 15.625rem;
  }
}

.branch-contact {
  position: relative;
}

@media screen and (max-width: 520px) {
  .branch-contact__title {
    margin-top: 1.5625rem;
  }
}

.branch-contact__title img {
  width: 256px;
  width: 16rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__title img {
    width: 55.3125rem;
    margin-inline: auto;
  }
}

.branch-contact__about {
  color: #60574b;
  font-weight: 500;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  width: 256px;
  width: 16rem;
  margin-inline: auto;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__about {
    margin-top: 1.5625rem;
    font-size: 1.625rem;
    border-bottom: 3px dotted #ec6b61;
    width: 55.3125rem;
    margin-inline: auto;
  }
}

.branch-contact__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3.125rem;
    gap: 2.5rem;
  }
}

.branch-contact__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.branch-contact__phone-img {
  padding-right: 10px;
  padding-right: 0.625rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__phone-img {
    padding-top: 1.5625rem;
  }
}

.branch-contact__phone-img img {
  width: 50px;
  width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__phone-img img {
    width: 4.125rem;
  }
}

.branch-contact__phone-body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.branch-contact__phone-name {
  color: #ec6b61;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-left: -18px;
  margin-left: -1.125rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .branch-contact__phone-name {
    font-size: 1.125rem;
  }
}

.branch-contact__phone-number {
  color: #ec6b61;
  font-weight: bold;
  line-height: 1;
  font-size: 34px;
  font-size: 2.125rem;
  text-align: left;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .branch-contact__phone-number {
    font-size: 3.1875rem;
    letter-spacing: 0.15em;
  }
}

.branch-contact__phone-about {
  color: #60574b;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  display: block;
  padding-top: 19px;
  padding-top: 1.1875rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .branch-contact__phone-about {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    padding-top: 0;
  }
}

.branch-contact__mail {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__mail {
    margin-top: 0.625rem;
  }
}

.branch-contact__mail img {
  margin-right: 10px;
  margin-right: 0.625rem;
  width: 300px;
  width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__mail img {
    width: 24.125rem;
  }
}

.branch-contact__button {
  color: #ec6b61;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  padding: 0.625rem;
  border: 3px solid #ec6b61;
  border-radius: 6.25rem;
  letter-spacing: 0.1em;
  width: 300px;
  width: 18.75rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__button {
    font-size: 1.75rem;
    width: 24.125rem;
  }
}

.branch-contact__button img {
  width: 50px;
  width: 3.125rem;
  margin-left: -30px;
  margin-left: -1.875rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__button img {
    width: 4.125rem;
    margin-left: 0;
  }
}

.branch-contact__request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__request {
    margin-top: 1rem;
    margin-bottom: 1.5625rem;
  }
}

.branch-contact__request img {
  width: 450px;
  width: 28.125rem;
}
@media screen and (min-width: 768px) {
  .branch-contact__request img {
    width: 55.625rem;
  }
}

.branch-medical {
  position: relative;
  background-image: url(../images/common/branch-medical/branch-medical_top_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-y: 56px;
  background-position-y: 3.5rem;
  padding-top: 149px;
  padding-top: 9.3125rem;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 520px) {
  .branch-medical {
    padding-top: 2.625rem;
    background-position-y: -0.5rem;
  }
}

.branch-medical__left-tree {
  position: absolute;
  top: 13%;
  width: 18.5%;
}
@media screen and (max-width: 520px) {
  .branch-medical__left-tree {
    top: 0;
    width: 27.5%;
  }
}

.branch-medical__inner {
  max-width: 1366px;
  max-width: 85.375rem;
  margin-inline: auto;
  padding-right: 25px;
  padding-right: 1.5625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  width: 100%;
}

.branch-medical__about {
  max-width: 510px;
  max-width: 31.875rem;
  margin-inline: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 520px) {
  .branch-medical__about {
    margin-top: 1.25rem;
    margin-top: 1rem;
    line-height: 1.7;
  }
}

.branch-medical__about-text {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.11em;
  font-weight: 400;
}
@media screen and (max-width: 520px) {
  .branch-medical__about-text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.branch-medical__contents {
  max-width: 1090px;
  max-width: 68.125rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  margin-inline: auto;
  width: 100%;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 520px) {
  .branch-medical__contents {
    padding: 0;
    margin-top: 1.25rem;
  }
}

.branch-medical__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
  gap: 3.4375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 520px) {
  .branch-medical__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: initial;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 1.9375rem;
  }
}

.branch-medical__list:not(:first-child) {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 520px) {
  .branch-medical__list:not(:first-child) {
    margin-top: 1.9375rem;
  }
}

.branch-medical__list-item {
  position: relative;
}
@media screen and (max-width: 520px) {
  .branch-medical__list-item {
    width: 50%;
    margin-right: auto;
  }
}

.branch-medical__list-item img {
  width: 162px;
  width: 10.125rem;
}
@media screen and (max-width: 520px) {
  .branch-medical__list-item img {
    width: 7.0625rem;
    margin-inline: auto;
  }
}

.branch-medical__list-item span {
  display: inline-block;
  text-align: center;
  padding-top: 10px;
  padding-top: 0.625rem;
  letter-spacing: 0.11em;
  position: relative;
}

.arrow {
  position: relative;
  display: inline-block;
  padding: 20px 0px 0 60px;
  padding: 1.25rem 0rem 0 3.75rem;
  color: #60574b;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 520px) {
  .arrow {
    font-size: 0.875rem;
  }
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 20px;
  top: 1.25rem;
  bottom: 0;
  left: 20px;
  left: 1.25rem;
  margin: auto;
  content: "";
}

@media screen and (max-width: 520px) {
  .branch-medical__contents .introduction__list {
    gap: 14%;
    row-gap: 3.5rem;
  }
}

.branch-medical__contents .introduction__list-name span {
  background-color: #f4a6a0;
  left: 3px;
  padding: 11px;
  margin-left: -13px;
  margin-left: -0.8125rem;
}

.branch-medical__contents .introduction__list-name span::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  width: 9px;
  height: 9px;
  top: 45%;
}
@media screen and (min-width: 768px) {
  .branch-medical__contents .introduction__list-name span::after {
    left: 2px;
  }
}
@media screen and (min-width: 1366px) {
  .branch-medical__contents .introduction__list-name span::after {
    left: 2px;
  }
}
@media screen and (min-width: 1920px) {
  .branch-medical__contents .introduction__list-name span::after {
    left: 2px;
  }
}

.sample5-6::before {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background-color: #f4a6a0;
  border-radius: 3.125rem;
}

.sample5-6::after {
  left: 28px;
  left: 1.75rem;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  top: 20px;
  top: 1.25rem;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.branch-medical__link {
  text-align: center;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 520px) {
  .branch-medical__link {
    margin-top: 3.125rem;
  }
}

.branch-medical__button {
  border: 3px solid #ec6b61;
  border-radius: 1.5625rem;
  display: inline-block;
  padding: 10px;
  padding: 0.625rem;
  width: 280px;
  width: 17.5rem;
  background-color: #fff;
  color: #ec6b61;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 520px) {
  .branch-medical__button {
    width: 14rem;
  }
}

.branch-medical__button:hover {
  opacity: 0.3;
}

.branch-section__title {
  text-align: center;
  font-weight: bold;
}

.branch-section__ja-title {
  letter-spacing: 0.05em;
  color: #60574b;
  font-size: clamp(30px, 28.058px + 0.5177993528vw, 38px);
  font-size: clamp(1.875rem, 1.7536407767rem + 0.5177993528vw, 2.375rem);
  text-align: center;
}

.branch-section__en-title {
  font-size: 16px;
  font-size: 1rem;
  color: #ec6b61;
  letter-spacing: 0.13em;
  text-align: center;
  display: block;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .branch-section__en-title {
    font-size: 0.875rem;
  }
}

.branch-staff__title {
  position: absolute;
  text-align: center;
  top: 50px;
  top: 3.125rem;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .branch-staff__title {
    top: -1.25rem;
  }
}

.branch-staff {
  background-image: url(../images/common/branch-staff_img-pc.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  overflow-x: clip;
  position: relative;
}
@media screen and (max-width: 520px) {
  .branch-staff {
    background-image: url(../images/common/branch-staff_img-sp.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: 21px;
  }
}

.branch-staff__inner {
  padding-top: 4px;
  padding-top: 0.25rem;
}
@media screen and (max-width: 520px) {
  .branch-staff__inner {
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .branch-staff__inner {
    padding-top: 3.625rem;
  }
}

.branch-clinic__ja-title {
  text-align: center;
}

.branch-clinic__en-title {
  text-align: center;
  display: block;
}

.branch-staff__container {
  position: relative;
}

.branch-staff__wrapper {
  max-width: 613px;
  max-width: 38.3125rem;
  margin-left: auto;
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (max-width: 520px) {
  .branch-staff__wrapper {
    margin-top: 6.75rem;
  }
}

@media screen and (max-width: 520px) {
  .branch-staff__wrapper .about__message {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .branch-staff__wrapper .about__message {
    padding-left: 5.875rem;
  }
}

.branch-about__content.about__content {
  border-radius: 332px 0 0 332px;
  padding-left: 141px;
  padding-left: 8.8125rem;
  padding-top: 181px;
  padding-top: 11.3125rem;
  padding-bottom: 202px;
  padding-bottom: 12.625rem;
}
@media screen and (max-width: 520px) {
  .branch-about__content.about__content {
    padding-left: 0;
    padding-top: 10.25rem;
    margin: 0 calc(50% - 67vw);
    padding-bottom: 6.125rem;
  }
}

.branch-about__content .about__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
  line-height: 1.9;
  font-weight: 400;
}
@media screen and (max-width: 520px) {
  .branch-about__content .about__text {
    padding-left: 5.75rem;
    padding-right: 2.9375rem;
    margin-top: 1rem;
    line-height: 1.76;
  }
}

.branch-about__content .about__btn {
  margin-top: 44px;
  margin-top: 2.75rem;
  padding-left: 0;
}
@media screen and (max-width: 520px) {
  .branch-about__content .about__btn {
    margin-top: 1.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .branch-about__content .about__btn {
    padding-left: 8.375rem;
  }
}

@media screen and (max-width: 520px) {
  .branch-about__btn.about__btn {
    text-align: center;
  }
}

.branch-staff__img {
  position: relative;
}

@media screen and (max-width: 520px) {
  .branch-staff__leaf-img {
    position: absolute;
    right: 0;
    top: 7.5rem;
    z-index: 1;
  }
}

.branch-staff__leaf-img img {
  width: 210px;
  width: 13.125rem;
}

.branch-staff__bg-img {
  position: absolute;
  bottom: -100px;
  bottom: -6.25rem;
  right: 20px;
  right: 1.25rem;
}
@media screen and (max-width: 520px) {
  .branch-staff__bg-img {
    bottom: -23.75rem;
    margin-left: -3.125rem;
    right: 0;
  }
}

.branch-staff__bg-img img {
  width: 1013px;
  width: 63.3125rem;
}
.branch-staff__wrap {
  position: absolute;
  width: 505px;
  width: 31.5625rem;
  right: 375px;
  right: 23.4375rem;
  bottom: 90px;
  bottom: 5.625rem;
  text-align: left;
  font-weight: bold;
}
@media screen and (max-width: 520px) {
  .branch-staff__wrap {
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -19.375rem;
    width: 20rem;
  }
}

.branch-staff__wrap-title {
  font-size: 45px;
  font-size: 2.8125rem;
  color: #60574b;
}
@media screen and (max-width: 520px) {
  .branch-staff__wrap-title {
    font-size: 2rem;
  }
}

.branch-staff__wrap-text {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  color: #60574b;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 520px) {
  .branch-staff__wrap-text {
    font-size: 0.875rem;
    margin-top: 1.25rem;
    letter-spacing: -0.05em;
    line-height: 2;
  }
}

.branch-staff__link {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 520px) {
  .branch-staff__link {
    margin-top: 1.875rem;
    text-align: center;
  }
}

.branch-staff__button {
  text-align: center;
  display: inline-block;
  width: 280px;
  width: 17.5rem;
  border: 3px solid #ec6b61;
  color: #ec6b61;
  padding: 16px;
  padding: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 3.125rem;
}
@media screen and (max-width: 520px) {
  .branch-staff__button {
    width: 14rem;
    font-size: 0.875rem;
  }
}

.branch-mv {
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .branch-mv {
    margin-top: 6.875rem;
    height: 58.125rem;
  }
}
@media screen and (min-width: 1366px) {
  .branch-mv {
    margin-top: 0;
  }
}
.branch-mv__inner {
  height: inherit;
}

.branch-mv__img {
  position: relative;
  height: inherit;
}

.branch-mv__img picture {
  height: inherit;
  display: block;
}

.branch-mv__img picture img {
  height: inherit;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.branch-mv__bg-img {
  position: absolute;
  bottom: -1px;
  bottom: -0.0625rem;
  height: inherit;
  z-index: 1;
  height: auto;
}
@media screen and (max-width: 520px) {
  .branch-mv__bg-img {
    bottom: -16%;
    height: auto;
  }
}
@media screen and (min-width: 1366px) {
  .branch-mv__bg-img {
    height: auto;
  }
}

.branch-mv__right-tree {
  position: absolute;
  top: 49%;
  right: 0;
  width: 15%;
  z-index: 10;
}
@media screen and (max-width: 520px) {
  .branch-mv__right-tree {
    top: 65%;
    right: 0;
    width: 37%;
  }
}

.branch-mv__title {
  color: #60574b;
  position: absolute;
  font-weight: bold;
  z-index: 10;
  bottom: -130px;
  bottom: -8.125rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .branch-mv__title {
    font-size: 2.5rem;
    bottom: 4.375rem;
    right: 11.625rem;
  }
}

.branch-mv__small-title {
  font-size: 22px;
  font-size: 1.375rem;
  background-color: #fff;
  letter-spacing: 0.1em;
  color: #ec6b61;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .branch-mv__small-title {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
  }
}

.branch-mv__main-title {
  letter-spacing: 0.2em;
  line-height: 1.7;
  font-weight: 500;
  font-size: clamp(24px, 20.116px + 1.0355987055vw, 40px);
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
}
@media screen and (max-width: 520px) {
  .branch-mv__main-title {
    letter-spacing: 0.2em;
  }
}

.branch-mv__main-title span {
  color: #ec6b61;
}

.branch-mv__leaf_img,
.branch-mv__icon_img {
  position: absolute;
}
@media screen and (max-width: 520px) {
  .branch-mv__leaf_img,
  .branch-mv__icon_img {
    display: none;
  }
}

.branch-mv__left-top_img {
  width: 17%;
  z-index: 20;
  top: 19%;
}
@media screen and (min-width: 768px) {
  .branch-mv__left-top_img {
    top: 0;
  }
}
@media screen and (min-width: 1366px) {
  .branch-mv__left-top_img {
    top: 19%;
  }
}
@media screen and (min-width: 1440px) {
  .branch-mv__left-top_img {
    top: 11%;
  }
}

.branch-mv__left-bottom_img {
  width: 320px;
  width: 20rem;
  height: 260px;
  height: 16.25rem;
  bottom: -190px;
  bottom: -11.875rem;
  z-index: 999;
}

.branch-mv__right_img {
  width: 270px;
  width: 16.875rem;
  height: 232px;
  height: 14.5rem;
  right: 0;
  bottom: 210px;
  bottom: 13.125rem;
  z-index: 999;
  position: absolute;
}

.branch-mv__icon_img {
  width: 64px;
  width: 4rem;
}

.branch-mv__icon_img img {
  width: 27px;
  width: 1.6875rem;
  z-index: 9999;
}

.branch-mv__phone_img {
  top: 170px;
  top: 10.625rem;
  right: 0;
}

.branch-mv__mail_img {
  top: 320px;
  top: 20rem;
  right: 0;
}

.branch-mv__sp_leaf_img {
  width: 140px;
  width: 8.75rem;
  height: 172px;
  height: 10.75rem;
  bottom: -220px;
  bottom: -13.75rem;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 520px) {
  .branch-mv__sp_leaf_img {
    display: block;
  }
}

/*======================================
            news
=======================================*/
.branch-news.news {
  position: relative;
  margin-top: 290px;
  margin-top: 18.125rem;
}
@media screen and (max-width: 520px) {
  .branch-news.news {
    margin-top: 17.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .branch-news.news {
    padding-bottom: 2.1875rem;
    margin-top: 16.4375rem;
  }
}

.branch-news__content {
  position: relative;
}

.branch-news__content::after {
  content: "";
  position: absolute;
  right: 5%;
  top: -40px;
  top: -2.5rem;
  background-image: url(../images/common/branch-mv/icon_branch-news.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 105px;
  width: 69%;
}
@media screen and (max-width: 520px) {
  .branch-news__content::after {
    width: 76%;
    right: 0;
    top: -1.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .branch-news__content::after {
    right: -5%;
    top: -4.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .branch-news__content::after {
    right: -7%;
    top: -3.75rem;
    height: 105px;
    width: 69%;
  }
}
@media screen and (min-width: 1366px) {
  .branch-news__content::after {
    top: -5.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .branch-news__content::after {
    top: -5.625rem;
  }
}
@media screen and (min-width: 1920px) {
  .branch-news__content::after {
    right: -6%;
  }
}

.branch-news .news__inner {
  padding-bottom: 0;
}

.branch-news .news__link span::after {
  border-top: solid 2px #ec6b61;
  border-right: solid 2px #ec6b61;
}

.news__wrap.branch-news__wrap {
  position: relative;
}

.news__category.branch-news__category--green {
  background-color: #b5cd89;
}

.news__category.branch-news__category--red {
  background-color: #ec6b61;
}

.news__link.branch-news__link {
  border-top: solid 2px #ec6b61;
  border-right: solid 2px #ec6b61;
  border: none;
}

.branchーnews__left-decor {
  position: absolute;
  top: -28%;
  width: 30%;
  z-index: 10;
}
@media screen and (min-width: 1440px) {
  .branchーnews__left-decor {
    top: -64%;
  }
}

.branch-news .news__left-decor {
  position: absolute;
  left: 0;
  z-index: 20;
  width: 43%;
  top: -22%;
}
@media screen and (max-width: 520px) {
  .branch-news .news__left-decor {
    width: 77%;
  }
}
@media screen and (min-width: 768px) {
  .branch-news .news__left-decor {
    top: -53%;
    width: 30%;
  }
}

.branch-staff__tree {
  position: absolute;
  top: 10%;
  right: 0;
  width: 20%;
  z-index: 10;
}
@media screen and (max-width: 520px) {
  .branch-staff__tree {
    top: 18%;
    right: 0;
    width: 59%;
  }
}

.branch-staff__bird {
  top: 14%;
  width: 6%;
  z-index: 10;
}
@media screen and (max-width: 520px) {
  .branch-staff__bird {
    width: 9%;
    top: 35%;
  }
}
@media screen and (min-width: 768px) {
  .branch-staff__bird {
    top: 21%;
  }
}

.branch-news__left-decor {
  position: absolute;
  top: -42%;
  width: 20%;
  z-index: 10;
}
@media screen and (max-width: 520px) {
  .branch-news__left-decor {
    top: -17%;
    width: 47%;
  }
}
@media screen and (min-width: 768px) {
  .branch-news__left-decor {
    top: -60%;
  }
}

.branch-news__bird {
  width: 6%;
  top: -43%;
  z-index: 10;
}
@media screen and (max-width: 520px) {
  .branch-news__bird {
    width: 11%;
    top: -17%;
  }
}
@media screen and (min-width: 768px) {
  .branch-news__bird {
    top: -50%;
  }
}

.footer.branch-footer {
  background-color: #fbe1df;
  position: relative;
}

.footer.branch-footer::after {
  content: "";
  position: absolute;
  left: 0;
  top: -42px;
  background-image: url(../images/common/bg_footer.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  height: 44px;
  width: 100%;
}
@media screen and (max-width: 520px) {
  .footer.branch-footer::after {
    top: -6.5%;
  }
}
@media screen and (min-width: 768px) {
  .footer.branch-footer::after {
    top: -79px;
    height: 80px;
  }
}
@media screen and (min-width: 1920px) {
  .footer.branch-footer::after {
    top: -82px;
  }
}

.branch-footer .footer__inner {
  padding-left: 139px;
  padding-left: 8.6875rem;
  padding-right: 36px;
  padding-right: 2.25rem;
  gap: 0;
}
@media screen and (max-width: 520px) {
  .branch-footer .footer__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}

@media screen and (max-width: 520px) {
  .branch-footer .footer__nav-list {
    margin-top: 3.0625rem;
    padding-left: 6rem;
  }
}

.branch-footer .footer__nav-link {
  margin-top: 0;
}
@media screen and (max-width: 520px) {
  .branch-footer .footer__nav-link {
    margin-top: 1rem;
  }
}

.branch-footer .footer__nav-link::after {
  border-top: solid 2px #ec6b61;
  border-right: solid 2px #ec6b61;
  border-right: solid 0.125rem #ec6b61;
}

@media screen and (max-width: 520px) {
  .branch-footer .footer__copyright {
    margin-top: 4.6875rem;
    font-size: 0.875rem;
  }
}

.branch-footer .footer__logo {
  width: 71%;
}
@media screen and (min-width: 768px) {
  .branch-footer .footer__logo {
    margin-right: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .branch-footer .footer__nav-itemWrap.left {
    margin-right: 2.125rem;
    width: 18.4%;
  }
}

@media screen and (min-width: 768px) {
  .branch-footer .footer__nav-itemWrap.middle {
    width: 40.5%;
    margin-right: 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .branch-footer .footer__nav-itemWrap.right {
    width: 35%;
  }
}

@media screen and (min-width: 768px) {
  .branch-footer .footer__nav-item:not(:first-child) {
    margin-top: 1.625rem;
  }
}

.branch-news .news__date {
  color: #ec6b61;
}

.branch-news .news__category {
  color: #fff;
}

.branch-drawer .drawer__icon-bar1,
.branch-drawer .drawer__icon-bar2,
.branch-drawer .drawer__icon-bar3 {
  background-color: #ec6b61;
}

.branch-drawer .drawer__content-item::after {
  border-top: solid 2px #ec6b61;
  border-right: solid 2px #ec6b61;
}

.page.page-id-83 {
  background-color: #f8f6ea;
}

.care-taxi-service__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3%;
}
@media screen and (min-width: 768px) {
  .care-taxi-service__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16%;
  }
}

.care-taxi-service__content {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .care-taxi-service__content {
    width: 38%;
  }
}
@media screen and (min-width: 1920px) {
  .care-taxi-service__content {
    width: 45%;
  }
}

.care-taxi-service__content + .care-taxi-service__content {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .care-taxi-service__content + .care-taxi-service__content {
    margin-top: 0;
  }
}

.care-taxi-service__sub-title {
  letter-spacing: 0.1em;
}

.care-taxi-service__contentImg {
  border-radius: 20px;
  overflow: hidden;
}

.care-taxi-service__contentText {
  background-color: #fff;
  border-radius: 20px;
  padding: 95px 36px 60px;
  padding: 5.9375rem 2.25rem 3.75rem;
  width: 100%;
  margin-top: -50px;
  margin-top: -3.125rem;
}
@media screen and (max-width: 520px) {
  .care-taxi-service__contentText {
    padding: 5.125rem 1.5rem 2.875rem;
  }
}
@media screen and (min-width: 768px) {
  .care-taxi-service__contentText {
    margin-top: -4.25rem;
    position: absolute;
    right: -25%;
    z-index: -1;
    min-height: 19.4375rem;
  }
}

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

.care-taxi-service__contentList + .care-taxi-service__contentList {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .care-taxi-service__contentList + .care-taxi-service__contentList {
    margin-top: 1.25rem;
  }
}

.care-taxi-target__sub-title {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .care-taxi-target__sub-title {
    margin-top: 28.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .care-taxi-target__sub-title {
    margin-top: 18.75rem;
  }
}

.care-taxi-target__list {
  width: 450px;
  width: 28.125rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3%;
  row-gap: 14px;
  row-gap: 0.875rem;
}
@media screen and (max-width: 520px) {
  .care-taxi-target__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 15rem;
    width: 25rem;
  }
}
@media screen and (min-width: 768px) {
  .care-taxi-target__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 1.25rem;
    width: 90%;
    max-width: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .care-taxi-target__list {
    -ms-flex-wrap: initial;
        flex-wrap: initial;
  }
}

.care-taxi-target__listItem {
  list-style: disc outside none;
  list-style: initial;
  width: 47%;
}
@media screen and (max-width: 520px) {
  .care-taxi-target__listItem {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .care-taxi-target__listItem {
    width: 47%;
  }
}
@media screen and (min-width: 1024px) {
  .care-taxi-target__listItem {
    width: 40%;
  }
}

.care-taxi-goal__title {
  background-color: #c8e2b4;
  padding: 15px 40px;
  padding: 0.9375rem 2.5rem;
  border-radius: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  font-size: clamp(20px, 17.572px + 0.6472491909vw, 30px);
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
}
@media screen and (max-width: 520px) {
  .care-taxi-goal__title {
    padding: 0.9375rem 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .care-taxi-goal__title {
    padding: 1.25rem 2.5rem;
  }
}

.care-taxi-goal__wrapper {
  background-color: #fff;
  padding: 35px 0;
  padding: 2.1875rem 0;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -1.5em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 520px) {
  .care-taxi-goal__wrapper {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding: 2.1875rem 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .care-taxi-goal__wrapper {
    padding: 2.8125rem;
  }
}

.care-taxi-goal__wrapper-item {
  padding: 0 15px;
  padding: 0 0.9375rem;
  width: 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 520px) {
  .care-taxi-goal__wrapper-item {
    padding-bottom: 1.25rem;
    width: 100%;
    padding-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .care-taxi-goal__wrapper-item {
    width: 16%;
  }
}

.care-taxi-goal__wrapper-item:not(:last-child) {
  border-right: dotted 2px #60574b;
}
@media screen and (max-width: 520px) {
  .care-taxi-goal__wrapper-item:not(:last-child) {
    border-bottom: dotted 2px #60574b;
    border-right: none;
  }
}
.care-taxi-goal__wrapper-itemImg {
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5px;
}
@media screen and (max-width: 520px) {
  .care-taxi-goal__wrapper-itemImg {
    width: 30%;
  }
}

.care-taxi-goal__wrapper-name {
  text-align: center;
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 520px) {
  .care-taxi-goal__wrapper-name {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .care-taxi-goal__wrapper-name {
    margin-top: auto;
  }
}

@media screen and (min-width: 768px) {
  .care-taxi-goal__wrapper-name.kaigo {
    font-size: 0.75rem;
  }
}

.form-notice__container {
  background-color: #fff;
  padding: 40px 15px;
  padding: 2.5rem 0.9375rem;
  border-radius: 30px;
  border: 1px solid;
  padding: 40px 15px 40px 40px;
  padding: 2.5rem 0.9375rem 2.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .form-notice__container {
    padding: 2.5rem 3.75rem;
  }
}

.form-notice__title {
  font-size: clamp(24px, 22.058px + 0.5177993528vw, 32px);
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  text-align: center;
}

.form-notice__list {
  max-width: 900px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .form-notice__list {
    width: 56.25rem;
  }
}

.form-notice__item {
  list-style: disc outside none;
  list-style: initial;
}

.form-notice__item + .form-notice__item {
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .form-notice__item + .form-notice__item {
    margin-top: 1.25rem;
  }
}

.sub-contact__privacy {
  background-color: #fff;
}
.sub-contact__privacy__title {
  background-color: #60574b;
  color: #fff;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 20px;
}

.form {
  max-width: 1110px;
  margin: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .form {
    margin-top: 3.75rem;
  }
}

.form__item {
  padding: 20px 0 10px 0;
}
@media screen and (min-width: 768px) {
  .form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
  }
}

.form__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .form__title {
    padding: 0 10px;
    width: 29%;
  }
}
.form__title span {
  display: inline-block;
  padding: 7px;
  color: #fff;
  font-size: 12px;
  background-color: #d00000;
  border-radius: 20px;
}

.form__title p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .form__title p {
    width: 100%;
  }
}

.form__title p span {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .form__title p span {
    margin-left: auto;
  }
}

.form__title--type02 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .form__title--type02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form__item.form__title--aiStart .form__title {
  padding-top: 10px;
  padding-top: 0.625rem;
}

.form__title--aiStart {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .form__input {
    width: 100%;
    margin-top: 10px;
    padding: 0 10px;
  }
}

.form__input input {
  border-radius: 30px;
}

.formInput input::-webkit-input-placeholder,
.formTextarea textarea::-webkit-input-placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input::-moz-placeholder,
.formTextarea textarea::-moz-placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input::-ms-input-placeholder,
.formTextarea textarea::-ms-input-placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input::placeholder,
.formTextarea textarea::placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input {
  width: 100%;
  height: 40px;
  padding-left: 20px;
  border: 1px solid #b5b5b5;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .formInput input {
    width: 100%;
    height: 50px;
    margin-left: 0;
    padding-left: 15px;
  }
}

.formInput input:focus,
.formTextarea textarea:focus {
  outline: 2px solid #b5b5b5;
}

.formInput--sm input {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .formInput--sm input {
    width: 100%;
  }
}

.formInput--tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.formInput--tel > * {
  min-width: 0;
}

.formInput--tel input {
  width: 150px;
  max-width: 100%;
}

.formSelect select {
  width: 100%;
  max-width: 100%;
  height: 60px;
  padding-left: 20px;
  border: 1px solid #b5b5b5;
  border-radius: 0;
  color: #60574b;
  font-size: 16px;
  background: url(../images/common/pulldown.svg) right 10px center/10px no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 768px) {
  .formSelect select {
    width: 100%;
    height: 50px;
  }
}

.formSelect select:focus {
  outline: 2px solid #b5b5b5;
  color: black;
}

.formSelect select option:checked {
  color: black; /* 選択後の文字色を黒に */
}

.formSelect select.selected {
  color: black; /* 選択されたときの色を黒に */
}

@-moz-document url-prefix() {
  .formCalendar input {
    background: none;
  }
  .formCalendar::after {
    position: absolute;
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="M13.5 2H13V1c0-.6-.4-1-1-1s-1 .4-1 1v1H5V1c0-.6-.4-1-1-1S3 .4 3 1v1h-.5C1.1 2 0 3.1 0 4.5v9C0 14.9 1.1 16 2.5 16h11c1.4 0 2.5-1.1 2.5-2.5v-9C16 3.1 14.9 2 13.5 2zm0 12.5h-11c-.6 0-1-.4-1-1V6h13v7.5c0 .6-.4 1-1 1z"></path></svg>') no-repeat center center/contain;
    top: 50%;
    right: 10px;
    transform: translateY(-55%);
    pointer-events: none;
  }
}
.formCalendar input::-webkit-date-and-time-value {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .Android .formCalendar input {
    padding-left: 15px;
  }
}

.formCalendar input:focus {
  outline: 2px solid #b5b5b5;
}

@media screen and (min-width: 768px) {
  .form__dataBlockSelect {
    width: 100%;
  }
}

.form__dataBlockDate input:not(.formDate__default) {
  color: #333;
}

.formNumber__txt {
  font-size: 16px;
}

.formNumber__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .formNumber__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.formNumber__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.formNumber__blockLabel01 {
  margin-right: 30px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .formNumber__blockLabel01 {
    width: 55px;
  }
}

.formNumber__blockLabel01 {
  font-size: 16px;
}

.formNumber__blockInput {
  width: 150px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .formNumber__blockInput {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 20px;
  }
}

.formCheckbox input {
  display: none;
}

.formCheckbox .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.formCheckbox .wpcf7-list-item {
  margin-left: 0;
}

.formCheckbox--vertical .wpcf7-checkbox {
  display: block;
}

.formCheckbox--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}

.formCheckbox--vertical .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 20px;
}

.formCheckbox input + span {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0 0 0 35px;
  font-size: 16px;
  cursor: pointer;
}

.formCheckbox input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #b5b5b5;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.formCheckbox input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  display: block;
  width: 8px;
  height: 13px;
  margin-top: -8px;
  border-right: 3px solid #eb9500;
  border-bottom: 3px solid #eb9500;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.formCheckbox input:checked + span::after {
  opacity: 1;
}

.formRadio .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  gap: 3.75rem;
}

.formRadio--vertical .wpcf7-radio {
  display: block;
}

.formRadio .wpcf7-list-item {
  margin: 0;
}

.formRadio--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}

.formRadio--vertical .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 20px;
}

.formRadio input + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  cursor: pointer;
}

.formRadio input[type=radio] {
  display: none;
}

.formRadio input + span::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: auto;
  margin-right: 0.5em;
  margin-bottom: auto;
  border: 1px solid #b5b5b5;
  border-radius: 100%;
  background: #fff;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.formRadio input:checked + span::before {
  background-color: blue;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff;
}

.formTextarea textarea {
  width: 100%;
  min-height: 350px;
  padding-top: 10px;
  padding-left: 20px;
  border: 1px solid #b5b5b5;
  border-radius: 30px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .formTextarea textarea {
    width: 100%;
    min-height: 300px;
    margin-left: 0;
    padding-left: 15px;
  }
}

.form__privacy {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .form__privacy {
    text-align: left;
  }
}

.form__privacy a {
  line-height: 1;
  text-decoration: underline;
}

.form__acceptance {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form__acceptance {
    text-align: left;
  }
}

.form__acceptance.formCheckbox {
  text-align: center;
}

.form__acceptance.formCheckbox a {
  text-decoration: underline;
}

.form__submit {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form__submit {
    margin-top: 30px;
  }
}

.formBtn input {
  width: 300px;
  padding: 20px 0;
  border: none;
  color: #fff;
  font-size: 18px;
  text-align: center;
  border-radius: 0;
  background-color: #313d58;
  cursor: pointer;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
.formBtn input:disabled {
  color: #fff;
  background-color: #eee;
  border-color: #eee;
}
@media screen and (min-width: 768px) {
  .formBtn input:disabled:hover {
    cursor: not-allowed;
  }
}
@media screen and (min-width: 768px) {
  .formBtn input:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
}

.p-formBtn__wrapper {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-formBtn__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.form__submit.p-formBtn input {
  background: #eb9500;
  color: #fff;
  padding: 10px;
  border-radius: 40px;
  width: 300px;
  max-width: 100%;
  margin: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.form__submit.p-formBtn.return input {
  margin-left: 0;
}

.form__submit.p-formBtn.return input {
  width: 200px;
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 15px 10px;
  border-color: #2c94de;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .wpcf7 form.sent .wpcf7-response-output {
    font-size: 16px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  padding: 15px 10px;
  border-color: red;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 16px;
  }
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  color: red;
  font-size: 16px;
  font-weight: normal;
}

.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
  display: none;
}

.formValidation .wpcf7-not-valid-tip {
  display: none;
}

.formValidation__error {
  display: none;
  margin-top: 10px;
  color: red;
  font-size: 16px;
  font-weight: normal;
}

.wpcf7-form:not(.hide_error_message) .formValidation:has(.wpcf7-not-valid-tip) .formValidation__error {
  display: block;
}

.detail__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .detail__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.detail__inner .archive-news__sidebar {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .detail__inner .archive-news__sidebar {
    width: 25%;
  }
}

.detail__wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .detail__wrap {
    width: 70%;
  }
}

.detail__title {
  font-size: clamp(20px, 18.058px + 0.5177993528vw, 28px);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
}

.detail__content {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .detail__content {
    margin-top: 2.5rem;
  }
}

.detail__content img {
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .detail__content img {
    margin-bottom: 1.875rem;
    margin-bottom: 0.625rem;
  }
}

.detail__content h3 {
  margin-top: 18px;
  margin-top: 1.125rem;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .detail__content h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

.detail__content h4 {
  margin-top: 18px;
  margin-top: 1.125rem;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .detail__content h4 {
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

.page.page-id-81 {
  background-color: #f8f6ea;
}

.sub-rehabilitation__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation__block {
    gap: 3%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.sub-rehabilitation__blockText {
  width: 100%;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation__blockText {
    width: 50%;
  }
}

.sub-rehabilitation__blockImg {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation__blockImg {
    width: 50%;
  }
}

.sub-rehabilitation-item {
  margin-top: 12px;
  margin-top: 0.75rem;
  text-indent: -2em;
  padding-left: 2em;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation-item {
    margin-top: 1.25rem;
  }
}

.sub-rehabilitation-item span::before {
  counter-increment: number 1;
  content: " ( " counter(number) "  )";
  padding-right: 1em;
}
@media screen and (max-width: 520px) {
  .sub-rehabilitation-item span::before {
    padding-right: 0.5em;
  }
}

.sub-rehabilitation-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3%;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation-feature__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sub-rehabilitation-feature__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation-feature__item {
    width: 46%;
  }
}

.sub-rehabilitation-feature__item + .sub-rehabilitation-feature__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation-feature__item + .sub-rehabilitation-feature__item {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .sub-rehabilitation-feature__item:nth-child(2n) {
    margin-top: 24.625rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-rehabilitation-feature__item:nth-child(2n+3) {
    margin-top: -9.75rem;
  }
}

.sub-rehabilitation-feature__itemImg {
  border-radius: 20px;
  overflow: hidden;
}

.sub-rehabilitation-feature__itemImg img {
  aspect-ratio: 600/453;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-rehabilitation-feature__itemTitle {
  font-size: clamp(18px, 17.029px + 0.2588996764vw, 22px);
  font-size: clamp(1.125rem, 1.0643203883rem + 0.2588996764vw, 1.375rem);
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation-feature__itemTitle {
    margin-top: 1.25rem;
  }
}

.sub-rehabilitation-feature__itemText {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation-feature__itemText {
    margin-top: 0.875rem;
  }
}

.sub-rehabilitation-content__title {
  margin-right: auto;
  margin-left: auto;
  border-bottom: dotted 4px #eb9500;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

.sub-rehabilitation-content__title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/common/icon_flowr-orang.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 80px;
  height: 5rem;
  width: 80px;
  width: 5rem;
  z-index: -1;
}

.sub-rehabilitation-contentList {
  display: grid;
  gap: 5%;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 520px) {
  .sub-rehabilitation-contentList {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation-contentList {
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
    row-gap: 3.75rem;
    margin-top: 5.625rem;
  }
}

.sub-rehabilitation-contentItem {
  background-color: #fff;
  border-radius: 40px;
  padding: 35px 20px 20px;
  padding: 2.1875rem 1.25rem 1.25rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation-contentItem {
    width: 80%;
  }
}

.sub-rehabilitation-contentItem span {
  color: #eb9500;
  font-size: clamp(38px, 35.087px + 0.7766990291vw, 50px);
  font-size: clamp(2.375rem, 2.192961165rem + 0.7766990291vw, 3.125rem);
  position: absolute;
  top: -0.8em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .sub-rehabilitation-contentItemImg {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
}

.sub-rehabilitation-contentItemTitle {
  text-align: center;
  margin-top: 14px;
  margin-top: 0.875rem;
  font-size: clamp(18px, 17.514px + 0.1294498382vw, 20px);
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation-contentItemTitle {
    margin-top: 1.25rem;
  }
}

.page.page-id-79 {
  background-color: #f8f6ea;
}

.home-visit {
  overflow-x: clip;
}

.home-visit__description {
  line-height: 1.8;
}

.home-visit__description-listItem {
  margin-top: 7px;
  margin-top: 0.4375rem;
  text-indent: -2.2em;
  padding-left: 2em;
}
@media screen and (min-width: 768px) {
  .home-visit__description-listItem {
    margin-top: 0.625rem;
  }
}

.home-visit__description-listItem span::before {
  counter-increment: number 1;
  content: " ( " counter(number) "  )";
  padding-right: 1em;
}
@media screen and (max-width: 520px) {
  .home-visit__description-listItem span::before {
    padding-right: 0.5em;
  }
}

.home-visit__description-listItem + .home-visit__description-listItem {
  margin-top: 9px;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .home-visit__description-listItem + .home-visit__description-listItem {
    margin-top: 0.75rem;
  }
}

.home-visitExample__text {
  line-height: 1.8;
}

.home-visitExample__wrapper {
  max-width: 1069px;
  max-width: 66.8125rem;
  margin-left: auto;
  margin-top: -36px;
  margin-top: -2.25rem;
  position: relative;
}
@media screen and (max-width: 520px) {
  .home-visitExample__wrapper {
    margin-top: -0.9375rem;
  }
}

.home-visitExample__img {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home-visitExample__img {
    width: 56%;
  }
}

.home-visitExample__img img {
  aspect-ratio: 380/280;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.home-visitExample__content {
  position: relative;
  padding-top: 61px;
  padding-top: 3.8125rem;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  background-color: #fff;
  padding-left: 111px;
  padding-left: 6.9375rem;
  padding-bottom: 84px;
  padding-bottom: 5.25rem;
  border-radius: 57px 0 0 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6%;
}
@media screen and (max-width: 520px) {
  .home-visitExample__content {
    padding-left: 2.0625rem;
    padding-top: 2.1875rem;
    padding-bottom: 1.9375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.home-visitExample__list {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home-visitExample__list {
    width: 50%;
  }
}

.home-visitExample__listItem {
  list-style: disc outside none;
  list-style: initial;
}

.home-visitExample__listItem + .home-visitExample__listItem {
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .home-visitExample__listItem + .home-visitExample__listItem {
    margin-top: 0.625rem;
  }
}

.about__wrapper {
  max-width: 613px;
  max-width: 38.3125rem;
  margin-left: auto;
  margin-top: 174px;
  margin-top: 10.875rem;
}
@media screen and (max-width: 520px) {
  .about__wrapper {
    margin-top: 12.0625rem;
  }
}

.about__content {
  position: relative;
  padding-top: 61px;
  padding-top: 3.8125rem;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  background-color: #fff;
  padding-left: 111px;
  padding-left: 6.9375rem;
  padding-bottom: 84px;
  padding-bottom: 5.25rem;
  border-radius: 57px 0 0 57px;
}
@media screen and (max-width: 520px) {
  .about__content {
    padding-left: 2.0625rem;
    padding-top: 2.1875rem;
    padding-bottom: 1.9375rem;
  }
}

.fee__card-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 20px 20px;
  padding: 0.625rem 1.25rem 1.25rem;
  -webkit-box-shadow: 0.4375rem 0.4375rem 0 rgba(235, 149, 0, .75);
          box-shadow: 0.4375rem 0.4375rem 0 rgba(235, 149, 0, .75);
}

.fee__card-item.fee__card-item--green {
  -webkit-box-shadow: 0.4375rem 0.4375rem 0 rgba(118, 183, 67, .75);
          box-shadow: 0.4375rem 0.4375rem 0 rgba(118, 183, 67, .75);
}

.fee__card-itemTitle {
  font-size: clamp(20px, 17.572px + 0.6472491909vw, 30px);
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  color: #fff;
  text-align: center;
  background-color: #eb9500;
  border-radius: 50px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .fee__card-itemTitle {
    padding: 0.625rem 0;
  }
}

.fee__card-itemTitle.fee__card-itemTitle--green {
  background-color: #76b743;
  color: #fff;
}

.fee__card-itemText {
  text-align: center;
  font-size: clamp(16px, 14.058px + 0.5177993528vw, 24px);
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  padding: 8px 0;
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .fee__card-itemText {
    letter-spacing: 0.1em;
  }
}

.orange-circle {
  color: #eb9500;
}

.fee__card-itemText:not(:last-child) {
  border-bottom: 1px solid #eb9500;
}

.fee__card-itemText .orange {
  font-size: clamp(30px, 25.873px + 1.1003236246vw, 47px);
  font-size: clamp(1.875rem, 1.6171116505rem + 1.1003236246vw, 2.9375rem);
  font-weight: 700;
  line-height: 1;
}

.fee__card-itemAttention {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .fee__card-itemAttention {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .fee__card-itemAttention {
    font-size: 1.125rem;
  }
}

.fee__card-item--green .fee__card-itemText:not(:last-child) {
  border-bottom: 1px solid #76b743;
}

.fee__card-itemText.first {
  border-bottom: dotted 4px #eb9500;
}
@media screen and (min-width: 768px) {
  .fee__card-itemText.first {
    padding: 0.8125rem 0;
  }
}

.border-none.fee__card-itemText {
  border: none !important;
  margin-top: 41px;
  margin-top: 2.5625rem;
  margin-bottom: 51px;
  margin-bottom: 3.1875rem;
}
@media screen and (max-width: 520px) {
  .border-none.fee__card-itemText {
    margin-top: 1.625rem;
    margin-bottom: 2.25rem;
  }
}

.fee__card-item--green .fee__card-itemText.first {
  border-bottom: dotted 4px #76b743;
}

.plus {
  display: block;
  text-align: center;
  font-size: clamp(40px, 28.349px + 3.1067961165vw, 88px);
  font-size: clamp(2.5rem, 1.7718446602rem + 3.1067961165vw, 5.5rem);
}

@media screen and (min-width: 768px) {
  .fee__card-item--green {
    width: 50%;
  }
}

.fee__card-item--green .fee__card-itemText.first {
  font-size: clamp(18px, 17.271px + 0.1941747573vw, 21px);
  font-size: clamp(1.125rem, 1.0794902913rem + 0.1941747573vw, 1.3125rem);
}

.fee__card-item--green .fee__card-itemText {
  font-size: clamp(16px, 15.514px + 0.1294498382vw, 18px);
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
}

.fee__card-item--green .fee__card-itemText .orange {
  font-size: clamp(30px, 28.058px + 0.5177993528vw, 38px);
  font-size: clamp(1.875rem, 1.7536407767rem + 0.5177993528vw, 2.375rem);
}

.fee__card-itemText .small {
  font-size: clamp(12px, 11.514px + 0.1294498382vw, 14px);
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
}

.fee__card-itemGreen-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  row-gap: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .fee__card-itemGreen-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
  }
}

.fee__card-itemAnnotation {
  margin-top: 12px;
  margin-top: 0.75rem;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 14px;
}
@media screen and (max-width: 520px) {
  .fee__card-itemAnnotation {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .fee__card-itemAnnotation {
    margin-top: 0.875rem;
  }
}

.machine__list {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 520px) {
  .machine__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .machine__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
  }
}

.machine__list-item + .machine__list-item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .machine__list-item + .machine__list-item {
    margin-top: 0;
  }
}

.machine__list-itemName {
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .machine__list-itemName {
    margin-top: 0.9375rem;
  }
}

.sub-rehabilitation-fee {
  margin-top: 118px;
  margin-top: 7.375rem;
}
@media screen and (max-width: 520px) {
  .sub-rehabilitation-fee {
    margin-top: 30.375rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation-fee {
    margin-top: 8.75rem;
  }
}

.sub-rehabilitation__priceTableList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 30px;
  row-gap: 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation__priceTableList {
    gap: 3%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 1.875rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sub-rehabilitation__priceTable {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  padding: 20px 20px 10px;
  padding: 1.25rem 1.25rem 0.625rem;
  border-radius: 20px;
  -webkit-box-shadow: 0.4375rem 0.4375rem 0 rgba(235, 149, 0, .75);
          box-shadow: 0.4375rem 0.4375rem 0 rgba(235, 149, 0, .75);
}
@media screen and (max-width: 520px) {
  .sub-rehabilitation__priceTable {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation__priceTable {
    width: 46%;
    margin-right: 0;
    margin-left: 0;
  }
}

.sub-rehabilitation__priceTableTitle {
  text-align: center;
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
}

.sub-rehabilitation__priceTable dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  padding: 0.625rem;
}

.sub-rehabilitation__priceTable dl:first-child {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.sub-rehabilitation__priceTable dl:not(:last-child) {
  border-bottom: 1px solid;
}

.sub-rehabilitation__priceTable dd {
  text-align: center;
}

.sub-rehabilitation__priceTable dd span {
  display: block;
}

.sub-rehabilitation-feeAttention {
  margin-top: 14px;
  margin-top: 0.875rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .sub-rehabilitation-feeAttention {
    margin-top: 1.25rem;
  }
}

.page.page-id-87 {
  background-color: #f8f6ea;
}

@media screen and (max-width: 520px) {
  .order-flow__title .en {
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.order-flow__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .order-flow__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.order-flow__content + .order-flow__content {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .order-flow__content + .order-flow__content {
    margin-top: 6.25rem;
  }
}

.order-flow__contentImg {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .order-flow__contentImg {
    width: 50%;
  }
}

.order-flow__contentImg img {
  aspect-ratio: 660/453;
  -o-object-fit: cover;
     object-fit: cover;
}

.order-flow__contentText {
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .order-flow__contentText {
    width: 50%;
    margin-top: 2.5rem;
  }
}

.order-flow__contentStep {
  font-size: clamp(22px, 19.572px + 0.6472491909vw, 32px);
  font-size: clamp(1.375rem, 1.2233009709rem + 0.6472491909vw, 2rem);
}

.order-flow__contentStep span {
  text-transform: uppercase;
  display: block;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .order-flow__contentStep span {
    margin-bottom: 0.625rem;
  }
}

.order-flow__contentDescription {
  border-radius: 20px;
  background-color: #fff;
  line-height: 1.8;
  padding: 20px;
  padding: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, .2);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, .2);
}
@media screen and (min-width: 768px) {
  .order-flow__contentDescription {
    margin-left: -6.25rem;
    margin-top: 7.5rem;
    padding: 2.5rem 1.875rem;
  }
}

.order-flow__contentBtn {
  text-align: center;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .order-flow__contentBtn {
    margin-top: 1.875rem;
  }
}

.order-flow__contentBtn .button {
  background-color: #eb9500;
  color: #fff;
}
@media screen and (max-width: 520px) {
  .order-flow__contentBtn .button {
    padding: 0.375rem 1.25rem;
  }
}

.order-flow__contentCall {
  text-align: center;
  margin-top: 14px;
  margin-top: 0.875rem;
  font-size: clamp(20px, 18.058px + 0.5177993528vw, 28px);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
}
@media screen and (min-width: 768px) {
  .order-flow__contentCall {
    margin-top: 1.25rem;
  }
}

.order-flow__contentFooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10%;
}
@media screen and (max-width: 520px) {
  .order-flow__contentFooter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.order-flow__contentFooter .call-number {
  font-size: clamp(20px, 19.029px + 0.2588996764vw, 24px);
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
}

.page.page-id-85 {
  background-color: #f8f6ea;
}

.hospise-care__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .hospise-care__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
  }
}

.hospise-care__blockText {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hospise-care__blockText {
    width: 50%;
  }
}

.hospise-care__blockImg {
  width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .hospise-care__blockImg {
    width: 50%;
    margin-top: 0;
  }
}

.hospise-care__blockImg img {
  aspect-ratio: 660/453;
  -o-object-fit: cover;
     object-fit: cover;
}

.hospise-care__role__itemText {
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .hospise-care__role__itemText {
    margin-top: 0.625rem;
  }
}

.hospise-care__achievements__imgWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3%;
}
@media screen and (min-width: 768px) {
  .hospise-care__achievements__imgWrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.hospise-care__achievements__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hospise-care__achievements__img {
    width: 30%;
  }
}

.hospise-care-date__table {
  letter-spacing: 0.13em;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .hospise-care-date__table {
    width: 62.5rem;
    max-width: 62.5rem;
  }
}

.hospise-care-date__table th {
  background-color: #eb9500;
  color: #fff;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  border-bottom: 2px solid #60574b;
}
@media screen and (max-width: 520px) {
  .hospise-care-date__table th {
    padding: 0.625rem 0;
  }
}

.hospise-care-date__table td {
  color: #eb9500;
  background-color: #fff;
  text-align: center;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 520px) {
  .hospise-care-date__table td {
    padding: 0.625rem 0.625rem;
  }
}

.hospise-care-date__table tr {
  color: #eb9500;
  background-color: #fff;
  text-align: center;
}

.hospise-care-date__table tbody tr:nth-child(1) {
  border-bottom: 2px solid #60574b;
}

.hospise-care-date__table th:not(:last-child) {
  border-right: dotted 2px #fff; /* 縦線のスタイル */
}

.hospise-care-date__table td:not(:last-child) {
  border-right: dotted 2px #60574b; /* 縦線のスタイル */
}

.hospise-care-period__table {
  border-radius: 20px;
  overflow: hidden;
  border-collapse: collapse;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .hospise-care-period__table {
    max-width: 62.5rem;
    width: 62.5rem;
  }
}

.hospise-care-period__table tr:last-child td {
  border-bottom: none;
}

.hospise-care-period__table td {
  background-color: #fff;
  text-align: center;
}

.hospise-care-period__table td:last-child {
  border-bottom: dotted 2px #60574b;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}

.hospise-care-period__table td:first-child {
  background-color: #eb9500;
  color: #fff;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  border-bottom: dotted 2px;
  width: 250px;
  width: 15.625rem;
  text-align: left;
}
@media screen and (max-width: 520px) {
  .hospise-care-period__table td:first-child {
    width: 11.25rem;
  }
}
@media screen and (min-width: 768px) {
  .hospise-care-period__table td:first-child {
    width: 18.75rem;
  }
}

.hospise-care-linkWrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3%;
  row-gap: 20px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 520px) {
  .hospise-care-linkWrapper {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .hospise-care-linkWrapper {
    grid-template-columns: repeat(2, 1fr);
    width: 62.5rem;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}

.hospise-care-linkBtn {
  padding: 20px;
  padding: 1.25rem;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0.4375rem 0.4375rem 0 rgba(235, 149, 0, .75);
          box-shadow: 0.4375rem 0.4375rem 0 rgba(235, 149, 0, .75);
  position: relative;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.hospise-care-linkBtn:hover {
  -webkit-transform: translateY(0.1875rem);
          transform: translateY(0.1875rem); /* 押し込んだように下に移動 */
  -webkit-box-shadow: 0.25rem 0.25rem 0 rgba(235, 149, 0, .75);
          box-shadow: 0.25rem 0.25rem 0 rgba(235, 149, 0, .75); /* 影を薄くする */
}

.hospise-care-linkBtn::after {
  content: "";
  position: absolute;
  right: 30px;
  right: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow-recruit.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  height: 1.875rem;
  width: 30px;
  width: 1.875rem;
}

.hospise-care-linkBtn span {
  display: block;
}

@media screen and (min-width: 768px) {
  .neighborhood-hospital__table .collaborate-hospital__list {
    width: 62.5rem;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .neighborhood-hospital__table .collaborate-hospital__term {
    max-width: 12.5rem;
  }
}

.archive-news__inner {
  margin: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .archive-news__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.archive-news__list {
  border-top: 1px solid rgba(35, 79, 94, .2);
}
@media screen and (min-width: 768px) {
  .archive-news__list {
    width: 65%;
    border-top: none;
  }
}

.archive-news-list__item {
  list-style: none;
}

.archive-news-list__item a {
  padding: 20px 0;
  padding: 1.25rem 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .archive-news-list__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.archive-news-list__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .archive-news-list__item-meta {
    min-width: 16rem;
  }
}

.archive-news-list__item-date {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

.archive-news-list__item-category {
  margin-left: 30px;
  margin-left: 1.875rem;
  min-width: 100px;
  min-width: 6.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  background-color: #a9dae5;
  border-radius: 20px;
  display: inline-block;
}

.archive-news-list__item-title {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .archive-news-list__item-title {
    margin-top: 0;
    margin-left: 3.75rem;
  }
}

.archive-news__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .archive-news__content {
    margin-top: 1rem;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

.archive-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .archive-news__meta {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.archive-news__date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}

.archive-news__category {
  margin-left: 24px;
  margin-left: 1.5rem;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff;
  background-color: #73b2c8;
}

.archive-news__title {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.archive-news__img {
  margin-left: 20px;
  margin-left: 1.25rem;
  max-width: 100px;
  max-width: 6.25rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .archive-news__img {
    margin-left: 0;
    max-width: none;
    max-width: initial;
  }
}

.archive-news__img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .archive-news__img img {
    aspect-ratio: 320/180;
  }
}

.archive-news__sidebar {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .archive-news__sidebar {
    margin-top: 0;
    margin-left: 4rem;
    width: 35%;
  }
}

.archive-news__sidebar-item {
  padding-top: 24px;
  padding-top: 1.5rem;
  position: relative;
  border-top: 1px solid rgba(35, 79, 94, .2);
}

.archive-news__sidebar-item + .archive-news__sidebar-item {
  margin-top: 64px;
  margin-top: 4rem;
}

.archive-news__sidebar-item::before {
  content: "";
  position: absolute;
  top: -1px;
  top: -0.0625rem;
  left: 0;
  width: 80px;
  width: 5rem;
  height: 1px;
  background-color: #eb9500;
}

.archive-news__sidebar-title {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid rgba(35, 79, 94, .2);
}

.archive-news__ranking-link {
  padding: 24px 0;
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(35, 79, 94, .2);
}

.archive-news__ranking-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}

.archive-news__ranking-img-wrap {
  margin-left: 16px;
  margin-left: 1rem;
  position: relative;
  max-width: 64px;
  max-width: 4rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.archive-news__ranking-img {
  width: 100%;
}

.archive-news__ranking-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive-news__ranking-number {
  position: absolute;
  top: -15px;
  top: -0.9375rem;
  right: -8px;
  right: -0.5rem;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  border-radius: 50%;
}

.archive-news__ranking-item:nth-of-type(1) .archive-news__ranking-number {
  background-color: #52bcde;
}

.archive-news__ranking-item:nth-of-type(2) .archive-news__ranking-number {
  background-color: #73b2a0;
}

.archive-news__ranking-item:nth-of-type(3) .archive-news__ranking-number {
  background-color: #a4b4b9;
}

.archive-news__ranking-item:nth-of-type(4) .archive-news__ranking-number {
  background-color: #5c7279;
}

.archive-news__category-link {
  padding: 24px 30px 24px 0;
  padding: 1.5rem 1.875rem 1.5rem 0;
  position: relative;
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  border-bottom: 1px solid #f0ecf4;
}

.archive-news__category-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: 2px solid #eb9500;
  border-top: 0.125rem solid #eb9500;
  border-right: 2px solid #eb9500;
  border-right: 0.125rem solid #eb9500;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.archive-news__category-link:hover::before {
  right: 10px;
  right: 0.625rem;
}

.archive-news__tag-list {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
}

.archive-news__tag-link {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}

.page-id-263,
.page-id-256 {
  background-color: #f8f6ea;
}

body.page-id-256 .branch-drawer .drawer__icon-bar1,
body.page-id-256 .branch-drawer .drawer__icon-bar2,
body.page-id-256 .branch-drawer .drawer__icon-bar3 {
  background-color: #76b743;
}

body.page-id-256 footer {
  background-color: #e4f1d9 !important;
}

body.page-id-256 .branch-footer .footer__nav-link::after {
  border-top: solid 2px #76b743;
  border-top: solid 0.125rem #76b743;
  border-right: solid 2px #76b743;
  border-right: solid 0.125rem #76b743;
}

body.page-id-256 .footer.branch-footer::after {
  background-image: url(../images/common/bg_footer-green.png);
}

.branch-mv__small-title.branch-mv__small-title--green {
  color: #76b743;
}

.branch-mv__main-title--green.branch-mv__main-title span {
  color: #76b743;
}

.news__title--green.news__title .en {
  color: #76b743 !important;
}

.branch-news .news__link.news__link--green span::after {
  border-top: solid 2px #76b743;
  border-right: solid 2px #76b743;
}

.branch-section__title--green.branch-section__title .branch-section__en-title {
  color: #76b743;
}

.branch-area__body-title--green.branch-area__body-title {
  background-color: #76b743;
}

.introduction__list-name--green.introduction__list-name span {
  background-color: #76b743;
}

.branch__button--green.branch__button {
  color: #76b743;
  border: 3px solid #76b743;
}

.branch-clinic__en-title.branch-clinic__en-title--green {
  color: #76b743;
}

.button--green.button {
  color: #76b743;
  border: 3px solid #76b743;
}

.button--green.button:hover {
  background-color: #76b743;
  color: #fff;
}

.recruit.hibarigaoka .title .en {
  color: #76b743;
}

.recruit__footer-link.recruit__footer-link--green {
  background-color: #76b743;
  border: 3px solid #76b743;
}

.recruit__footer-link.recruit__footer-link--green::after {
  background: url(../images/common/icon_arrow-recruit-green.png);
  background-size: contain;
}

.branch-clinic__dt.branch-clinic__dt--green {
  background-color: #d5e9c5;
}

.branch-clinic__wrap.branch-clinic__wrap--green:not(:last-child) {
  border-bottom: 2px dashed #76b743;
}

.branch-contact__about.branch-contact__about--green {
  border-bottom: 3px dotted #76b743;
}

.branch-contact__button--green.branch-contact__button {
  border: 3px solid #76b743;
  color: #76b743;
}

.branch-contact__phone-name.branch-contact__phone-name--green {
  color: #76b743;
}

.branch-contact__phone-number.branch-contact__phone-number--green {
  color: #76b743;
}

.page-id-258,
.page-id-265 {
  background-color: #f8f6ea;
}

body.page-id-258 .branch-drawer .drawer__icon-bar1,
body.page-id-258 .branch-drawer .drawer__icon-bar2,
body.page-id-258 .branch-drawer .drawer__icon-bar3 {
  background-color: #76bbc9;
}

body.page-id-265 .branch-drawer .drawer__icon-bar2,
body.page-id-265 .branch-drawer .drawer__icon-bar1,
body.page-id-265 .branch-drawer .drawer__icon-bar3 {
  background-color: #76bbc9;
}

.page-id-258 .branch-drawer .drawer__content-item::after {
  border-top: solid 2px #76bbc9;
  border-right: solid 2px #76bbc9;
}

body.page-id-258 footer,
body.page-id-265 footer {
  background-color: #e4f1f4 !important;
}

body.page-id-258 .footer.branch-footer::after {
  background-image: url(../images/common/bg_footer-blue.png);
}

body.page-id-265 .footer.branch-footer::after {
  background-image: url(../images/common/bg_footer-blue.png);
}

.branch-mv__small-title.branch-mv__small-title--blue {
  color: #76bbc9;
}

.branch-mv__main-title--blue.branch-mv__main-title span {
  color: #76bbc9;
}

.news__title--blue.news__title .en {
  color: #76bbc9 !important;
}

.branch-news--blue.branch-news .news__link span::after {
  border-top: solid 2px #76bbc9;
  border-right: solid 2px #76bbc9;
}

.branch-section__title--blue.branch-section__title .branch-section__en-title {
  color: #76bbc9;
}

.branch-area__body-title--blue.branch-area__body-title {
  background-color: #76bbc9;
}

.introduction__list-name--blue.introduction__list-name span {
  background-color: #76bbc9;
}

.branch__button--blue.branch__button {
  color: #76bbc9;
  border: 3px solid #76bbc9;
}

.branch-clinic__en-title.branch-clinic__en-title--blue {
  color: #76bbc9;
}

.button--blue.button {
  color: #76bbc9;
  border: 3px solid #76bbc9;
}

.button--blue.button:hover {
  background-color: #76bbc9;
  color: #fff;
}

.recruit__footer-link.recruit__footer-link--blue {
  background-color: #76bbc9;
  border: 3px solid #76bbc9;
}

.recruit__footer-link.recruit__footer-link--blue::after {
  background: url(../images/common/icon_arrow-recruit-blue.png);
  background-size: contain;
}

.branch-clinic__wrap.branch-clinic__wrap--blue:not(:last-child) {
  border-bottom: 2px dashed #76bbc9;
}

.branch-clinic__dt.branch-clinic__dt--blue {
  background-color: #d5eaee;
}

.recruit__title--blue.recruit__title .en {
  color: #76bbc9 !important;
}

.branch-contact__about.branch-contact__about--blue {
  border-bottom: 3px dotted #76bbc9;
}

.branch-contact__button--blue.branch-contact__button {
  border: 3px solid #76b743;
  color: #76b743;
}

.branch-contact__phone-name.branch-contact__phone-name--blue {
  color: #76bbc9;
}

.branch-contact__phone-number.branch-contact__phone-number--blue {
  color: #76bbc9;
}

.branch-contact__button.branch-contact__button--blue {
  border: 3px solid #76bbc9;
  color: #76bbc9;
}

.page-id-261 {
  background-color: #f8f6ea;
}

.page-id-261 .current-item {
  color: #ec6b61;
}

.sub-page__title.syakujii {
  color: #ec6b61;
}

.sub-staff-introduction__title.syakujii {
  color: #ec6b61;
}

.sub-staff-introduction__title.syakujii span {
  background-image: url(../images/common/icon_sub-title-red.png);
}

.sub-page__title.shakujii {
  color: #ec6b61;
}

body.category-syakujii .current-item {
  color: #ec6b61;
}

.page-stanndby {
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-bottom: 160px;
  margin-bottom: 10rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-stanndby {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

.page-stanndby__title {
  font-size: clamp(30px, 25.145px + 1.2944983819vw, 50px);
  font-size: clamp(1.875rem, 1.5716019417rem + 1.2944983819vw, 3.125rem);
}

.page-stanndby__text {
  font-size: clamp(18px, 14.601px + 0.9061488673vw, 32px);
  font-size: clamp(1.125rem, 0.9126213592rem + 0.9061488673vw, 2rem);
  line-height: 1.7;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-stanndby__text {
    margin-top: 2.5rem;
  }
}

.page-stanndby__footer {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .page-stanndby__footer {
    margin-top: 5rem;
  }
}

.privacy-policy__section-title {
  font-size: clamp(20px, 18.058px + 0.5177993528vw, 28px);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
}

.privacy-policy__section ul {
  margin-top: 14px;
  margin-top: 0.875rem;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .privacy-policy__section ul {
    margin-top: 1.25rem;
  }
}

.privacy-policy__section li {
  list-style: disc outside none;
  list-style: initial;
}

.page-id-256 .branch-drawer .drawer__content-item::after {
  border-top: solid 2px #76b743;
  border-right: solid 2px #76b743;
}

.sub-page__title.hibarigaoka span {
  color: #76b743;
}

.page-id-263 .current-item {
  color: #76b743;
}

.sub-staff-introduction__title {
  color: #76b743;
}

.sub-staff-introduction__title.hibarigaoka span {
  background-image: url(../images/common/icon_sub-title-green.png);
}

.sub-page__title.hibarigaoka {
  color: #76b743;
}

.sub-staff-introduction__title.hibarigaoka {
  color: #76b743;
}

body.page-id-263 footer {
  background-color: #e4f1d9 !important;
}

.page-id-263 .footer.branch-footer::after {
  background-image: url(../images/common/bg_footer-green.png);
}

.page-id-263 .branch-footer .footer__nav-link::after {
  border-top: solid 2px #76b743;
  border-top: solid 0.125rem #76b743;
  border-right: solid 2px #76b743;
  border-right: solid 0.125rem #76b743;
}

body.category-hibarigaoka .current-item {
  color: #76b743;
}

.sub-mv {
  position: relative;
}
@media screen and (min-width: 768px) {
  .sub-mv {
    width: 100%;
  }
}

.sub-mv::after {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateXY(-50%, -50%);
          transform: translateXY(-50%, -50%);
  background-image: url(../images/common/sub-mv_treat.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 394px;
  height: 24.625rem;
  width: 100%;
}

.sub-mv__img {
  margin: 0 calc(50% - 50vw);
  height: inherit;
  margin-top: 80px;
}
@media screen and (min-width: 1024px) {
  .sub-mv__img {
    margin-top: 6.875rem;
  }
}
@media screen and (min-width: 1366px) {
  .sub-mv__img {
    margin-top: 0;
  }
}

.sub-mv__inner {
  position: relative;
  height: inherit;
}

.sub-page__title {
  position: absolute;
  left: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  font-size: clamp(18px, 13.145px + 1.2944983819vw, 38px);
  font-size: clamp(1.125rem, 0.8216019417rem + 1.2944983819vw, 2.375rem);
}

.sub-page__title span {
  display: block;
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.page-id-265 .current-item {
  color: #76bbc9;
}

.sub-page__title.narimasu {
  color: #76bbc9;
}

.sub-staff-introduction__title.narimasu {
  color: #76bbc9;
}

.sub-staff-introduction__title.narimasu span {
  background-image: url(../images/common/icon_sub-title-blue.png);
}

.page-id-258 .branch-footer .footer__nav-link::after,
.page-id-265 .branch-footer .footer__nav-link::after {
  border-top: solid 2px #76bbc9;
  border-top: solid 0.125rem #76bbc9;
  border-right: solid 2px #76bbc9;
  border-right: solid 0.125rem #76bbc9;
}

body.category-narimasu .current-item {
  color: #76bbc9;
}

.home {
  background-color: #f8f6ea;
}

.fv {
  position: relative;
  overflow: hidden;
}

.fv__map {
  display: block;
  width: 100%;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 520px) {
  .fv__map {
    width: 120%;
    margin-top: 1.125rem;
    -webkit-transform: translateX(-39px);
            transform: translateX(-39px);
  }
}
@media screen and (min-width: 768px) {
  .fv__map {
    position: absolute;
    top: 11% !important;
    left: 17%;
    width: 34% !important;
    margin-top: 0;
  }
}

.fv__img {
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 520px) {
  .fv__img {
    margin-top: 5rem;
    width: 105%;
  }
}

.fv__inner.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16.53%;
}
@media screen and (min-width: 768px) {
  .fv__inner.inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 16.53%;
    max-width: 1600px;
  }
}
@media screen and (min-width: 1024px) {
  .fv__inner.inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.fv__facility {
  position: absolute;
  top: 93px;
  top: 5.8125rem;
  left: 1.5em;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .fv__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 8.53%;
  }
}

.fv__test.Headline {
  position: relative;
}

.fv__message {
  font-size: clamp(24px, 20.601px + 0.9061488673vw, 38px);
  font-size: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
  width: 100%;
  margin-top: 22px;
  margin-top: 1.375rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__message {
    width: 45.15%;
  }
}
@media screen and (min-width: 1024px) {
  .fv__message {
    text-align: left;
    text-align: initial;
  }
}
@media screen and (max-width: 520px) {
  .fv__message {
    width: 100%;
    margin-top: 1.125rem;
    line-height: 1.75;
  }
}

.fv__message .orange {
  color: #eb9500;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .fv__message .orange {
    padding-left: 6.25rem;
  }
}

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

.fv__message-footer {
  text-align: center;
}

.fv__message-new {
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: clamp(20px, 15.631px + 1.1650485437vw, 38px);
  font-size: clamp(1.25rem, 0.9769417476rem + 1.1650485437vw, 2.375rem);
  font-weight: 600;
  text-align: center !important;
}
@media screen and (min-width: 768px) {
  .fv__message-new {
    text-align: left;
    text-align: initial;
  }
}

.fv__wrapper .fv__message-new {
  display: block;
}

.fv__message-footer .button {
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 180px;
  width: 11.25rem;
  padding: 5px 0;
  padding: 0.3125rem 0;
  border: 2px solid #eb9500;
}

.fv__wrapper {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__wrapper {
    text-align: left;
    text-align: initial;
  }
}

.fv__wrapper p {
  display: inline-block;
  text-align: left;
}

.orange {
  color: #eb9500;
}

.fv__textBlock {
  width: 100%;
  margin-top: 13px;
  margin-top: 0.8125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 520px) {
  .fv__textBlock {
    width: 100%;
    margin-top: -0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .fv__textBlock {
    width: 47.15%;
  }
}

.fv__textBlock .text {
  display: block;
  margin-top: 11px;
  margin-top: 0.6875rem;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 520px) {
  .fv__textBlock .text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 1.8;
  }
}

.fv__add-text {
  font-size: clamp(24px, 20.601px + 0.9061488673vw, 38px);
  font-size: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
  color: #eb9500;
}
.fv__add-text span {
  display: block;
  text-align: center;
  margin-top: 15px;
  margin-top: 0.9375rem;
  color: #60574b;
}

.fv__add-button.button {
  display: block;
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 180px;
  width: 11.25rem;
  padding: 5px 0;
  padding: 0.3125rem 0;
  border: 2px solid #eb9500;
}

.fv__description {
  font-size: clamp(24px, 20.601px + 0.9061488673vw, 38px);
  font-size: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
  letter-spacing: 0.02em;
  color: #eb9500;
  display: inline-block;
  -webit-box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 0px 5px;
  padding: 0rem 0.3125rem;
  letter-spacing: 0.06em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 520px) {
  .fv__description {
    letter-spacing: 0.15em;
    line-height: 1.7;
  }
}

.yellow {
  color: #eb9500;
}

.fv__description .text {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
}

.fv__left-decor {
  position: absolute;
  width: 17%;
}
@media screen and (max-width: 520px) {
  .fv__left-decor {
    width: 40%;
  }
}

.fv__left-decor.left {
  top: 13%;
  left: 0;
  width: 28%;
}
@media screen and (max-width: 520px) {
  .fv__left-decor.left {
    top: 9.5%;
  }
}
@media screen and (min-width: 768px) {
  .fv__left-decor.left {
    top: 14%;
    left: 0;
    width: 18%;
  }
}

.fv__left-decor.right {
  bottom: 47%;
  right: 0;
  width: 30%;
}
@media screen and (min-width: 768px) {
  .fv__left-decor.right {
    bottom: 16%;
    width: 22%;
  }
}
@media screen and (min-width: 1366px) {
  .fv__left-decor.right {
    width: 21%;
  }
}
@media screen and (min-width: 1440px) {
  .fv__left-decor.right {
    bottom: 2%;
    width: 13%;
  }
}
@media screen and (max-width: 520px) {
  .fv__left-decor.right {
    bottom: 57%;
    width: 35%;
    z-index: 10;
    right: -4px;
  }
}

.news {
  position: relative;
  padding-bottom: 93px;
  padding-bottom: 5.8125rem;
}
@media screen and (min-width: 768px) {
  .news {
    padding-bottom: 4.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .news {
    padding-bottom: 12.5rem;
  }
}

.news__inner {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1920px) {
  .news__inner {
    width: 1200px;
  }
}
@media screen and (min-width: 1024px) {
  .news__inner {
    padding-bottom: 12.1875rem;
  }
}
@media screen and (max-width: 520px) {
  .news__inner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .news__inner {
    width: 80%;
    padding-bottom: 0;
  }
}

.news__content {
  background-color: #fff;
  border-radius: 30px;
  position: relative;
  padding: 30px 30px;
  padding: 1.875rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .news__content {
    padding: 3.4375rem 4.375rem 3.125rem 3rem;
  }
}
@media screen and (max-width: 520px) {
  .news__content {
    padding: 1.4375rem 0.9375rem;
  }
}

.news__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6%;
}
@media screen and (min-width: 768px) {
  .news__wrap {
    gap: 6%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.news__textBlock {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__textBlock {
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .news__textBlock {
    width: 20%;
    padding-top: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1366px) {
  .news__textBlock {
    width: 17%;
  }
}

.branch-news .news__title .en {
  color: #ec6b61;
}

.news__list {
  width: 100%;
  margin-top: 29px;
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .news__list {
    width: 78%;
    margin-top: 0;
  }
}

.news__item {
  background-color: #fcf8df;
  padding: 30px 36px;
  padding: 1.875rem 2.25rem;
  border-radius: 20px;
}
@media screen and (max-width: 520px) {
  .news__item {
    padding: 0.9375rem 0.9375rem 2.8125rem;
  }
}

.news__item + .news__item {
  margin-top: 21px;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 520px) {
  .news__item + .news__item {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .news__item + .news__item {
    margin-top: 0.4375rem;
  }
}

.news__date {
  font-size: 16px;
  font-size: 1rem;
  color: #eb9500;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .news__date {
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .news__date {
    margin-right: 2.9375rem;
  }
}

.news__category {
  padding: 0 26px;
  padding: 0 1.625rem;
  background-color: #a9dae5;
  color: #fff;
  border-radius: 20px;
  display: inline-block;
}
@media screen and (max-width: 520px) {
  .news__category {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 0.8125rem;
    font-size: 0.875rem;
    margin-top: 0.3125rem;
  }
}

.news__text {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: clamp(16px, 15.029px + 0.2588996764vw, 20px);
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.8;
}
@media screen and (max-width: 520px) {
  .news__text {
    margin-top: 0.3125rem;
    letter-spacing: 0.15em;
  }
}

.news__category--orange {
  background-color: #eb9500;
  color: #fff;
  padding: 0 23px;
  padding: 0 1.4375rem;
}

.news__category--green {
  background-color: #cbdbb7;
}

.news__btn {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .news__link {
    margin-bottom: 3.125rem;
    display: inline-block;
  }
}

.news__link span {
  position: relative;
  display: inline-block;
  padding: 12px;
  border: 1px solid #5070e3;
  border-radius: 50%;
  top: 5px;
  background-color: #60574b;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .news__link span {
    padding: 10px;
  }
}

.news__link span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #eb9500;
  border-right: solid 2px #eb9500;
  position: absolute;
  left: 5px;
  top: 48%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  left: 5px;
}
@media screen and (min-width: 768px) {
  .news__link span::after {
    left: 2px;
  }
}

.news__banner {
  margin-top: 32px;
  margin-top: 2rem;
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .news__banner {
    width: 43%;
    margin-inline: auto;
    margin-top: 3.375rem;
  }
}

.news__footer {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .news__footer {
    margin-top: 1.0625rem;
  }
}
@media screen and (min-width: 1024px) {
  .news__footer {
    margin-top: 3.625rem;
  }
}
@media screen and (min-width: 1366px) {
  .news__footer {
    margin-top: 5rem;
  }
}

.news__footer img {
  width: 87%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .news__footer img {
    width: 42%;
  }
}

.news__left-decor {
  position: absolute;
  top: -9%;
  left: 0;
  width: 43%;
}
@media screen and (max-width: 520px) {
  .news__left-decor {
    top: -9%;
    left: 0;
    width: 45%;
  }
}
@media screen and (min-width: 768px) {
  .news__left-decor {
    top: -14%;
    left: 0;
    width: 20%;
  }
}

.about {
  position: relative;
  overflow-x: clip;
  background-repeat: no-repeat; /* すべての背景を繰り返しなし */
  background-image: url(../images/common/bg_about01-sp.png), url(../images/common/bg_wave-sp.png), -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgb(255, 255, 255)), to(rgb(246, 233, 149)));
  background-image: url(../images/common/bg_about01-sp.png), url(../images/common/bg_wave-sp.png), linear-gradient(0deg, rgb(255, 255, 255) 10%, rgb(246, 233, 149) 100%);
  background-position: top left;
  background-size: 86%;
  background-position: top -9em left, bottom left, top left; /* 画像とグラデーションの位置 */
  background-size: 103%, 100%; /* 画像とグラデーションのサイズ */
}
@media screen and (max-width: 520px) {
  .about {
    background-position: top -5em left, bottom left, top left; /* 画像とグラデーションの位置 */
  }
}
@media screen and (min-width: 768px) {
  .about {
    background-repeat: no-repeat; /* すべての背景を繰り返しなし */
    background-image: url(../images/common/bg_about01.png), url(../images/common/bg_wave.png), -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgb(255, 255, 255)), to(rgb(244, 234, 162)));
    background-image: url(../images/common/bg_about01.png), url(../images/common/bg_wave.png), linear-gradient(0deg, rgb(255, 255, 255) 10%, rgb(244, 234, 162) 100%);
    background-position: top left;
    background-position: top -5em left, bottom 0 left, top left; /* 画像とグラデーションの位置 */
    background-size: 86%, 100%, 100%; /* 画像とグラデーションのサイズ */
    background-repeat: no-repeat, repeat no-repeat, no-repeat;
  }
}

.about::after {
  content: "";
  position: absolute;
  right: 9%;
  top: -4%;
  background-image: url(../images/common/bg_about02.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 400px;
  height: 25rem;
  width: 30%;
}

.about__inner {
  padding-top: 6em;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-bottom: 8.25rem;
  }
}
@media screen and (min-width: 1366px) {
  .about__inner {
    padding-bottom: 7.25rem;
  }
}
@media screen and (max-width: 520px) {
  .about__inner {
    padding-top: 3.5em;
  }
}

.about__title {
  color: #60574b;
}

.about__wrapper {
  max-width: 613px;
  max-width: 38.3125rem;
  margin-left: auto;
  margin-top: 174px;
  margin-top: 10.875rem;
}
@media screen and (max-width: 520px) {
  .about__wrapper {
    margin-top: 12.0625rem;
  }
}

.about__content {
  position: relative;
  padding-top: 61px;
  padding-top: 3.8125rem;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  background-color: #fff;
  padding-left: 111px;
  padding-left: 6.9375rem;
  padding-bottom: 84px;
  padding-bottom: 5.25rem;
  border-radius: 57px 0 0 57px;
}
@media screen and (max-width: 520px) {
  .about__content {
    padding-left: 2.0625rem;
    padding-top: 2.1875rem;
    padding-bottom: 1.9375rem;
  }
}

.orange {
  color: #eb9500;
}

.about__message {
  font-size: clamp(32px, 28.844px + 0.8414239482vw, 45px);
  font-size: clamp(2rem, 1.8027912621rem + 0.8414239482vw, 2.8125rem);
  font-weight: 500;
  line-height: 1.7;
}

.about__text {
  font-size: clamp(14px, 13.514px + 0.1294498382vw, 16px);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  margin-top: 33px;
  margin-top: 2.0625rem;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 520px) {
  .about__text {
    margin-top: 1.125rem;
    line-height: 1.76;
    padding-left: 0.5625rem;
  }
}

.about__btn {
  margin-top: 64px;
  margin-top: 4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 520px) {
  .about__btn {
    margin-top: 2.6875rem;
  }
}

.about__area {
  position: relative;
}

.about__title {
  text-align: center;
  text-shadow: 3px 3px 3px #fff, -3px 3px 3px #fff, 3px -3px 3px #fff, -3px -3px 3px #fff;
}
@media screen and (max-width: 520px) {
  .about__title {
    letter-spacing: 0.2em;
  }
}

.about__areaTitle span {
  position: absolute;
  bottom: 0;
  right: -1em;
  font-size: clamp(14px, 13.514px + 0.1294498382vw, 16px);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  color: #eb9500;
}

@media screen and (min-width: 768px) {
  .about__mapContent {
    margin-left: 6.9375rem;
    margin-top: -8.375rem;
  }
}

.about__area-title {
  font-size: clamp(28px, 25.572px + 0.6472491909vw, 38px);
  font-size: clamp(1.75rem, 1.5983009709rem + 0.6472491909vw, 2.375rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  position: static;
  position: initial;
  margin-top: 57px;
  margin-top: 3.5625rem;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .about__area-title {
    position: absolute;
    left: -2.4375rem;
    top: 17.375rem;
    letter-spacing: 0.2em;
    width: 5%;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    position: relative;
    font-size: clamp(1.875rem, 1.7536407767rem + 0.5177993528vw, 2.375rem);
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    letter-spacing: 0.2em;
  }
}

.about__map {
  width: 104%;
}
@media screen and (max-width: 520px) {
  .about__map {
    width: 142%;
    -webkit-transform: translateX(-64px);
            transform: translateX(-64px);
    margin-top: 1.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .about__areaWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2.875rem;
  }
}

@media screen and (min-width: 768px) {
  .about__areaContent {
    width: 40%;
    margin-top: 0;
  }
}
@media screen and (max-width: 520px) {
  .about__areaContent {
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 520px) {
  .about__areaContent + .about__areaContent {
    margin-top: 4.0625rem;
  }
}

.about__areaContent p {
  font-size: clamp(17px, 15.786px + 0.3236245955vw, 22px);
  font-size: clamp(1.0625rem, 0.9866504854rem + 0.3236245955vw, 1.375rem);
  margin-top: 0.7em;
  padding-left: 1.3em;
  line-height: 1.8;
}
@media screen and (max-width: 520px) {
  .about__areaContent p {
    padding-left: 0;
    margin-top: 1em;
    letter-spacing: 0.1em;
    word-break: keep-all;
  }
}

.about__areaDetail {
  background: #eb9500;
  color: #fff;
  font-weight: 500;
  font-size: clamp(24px, 22.543px + 0.3883495146vw, 30px);
  font-size: clamp(1.5rem, 1.4089805825rem + 0.3883495146vw, 1.875rem);
  padding: 4px 21px;
  padding: 0.25rem 1.3125rem;
  letter-spacing: 0.1em;
}

.clinic {
  position: relative;
}

.clinic__inner {
  padding-top: 67px;
  padding-top: 4.1875rem;
}
@media screen and (min-width: 768px) {
  .clinic__inner {
    padding-top: 8.0625rem;
  }
}

.clinic__title {
  text-align: center;
}

.clinic__archive {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .clinic__archive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5625rem;
    margin-top: 0.8125rem;
    max-width: 1300px;
  }
}

.clinic__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-top: 29px;
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .clinic__item {
    width: calc(33.3% - 1.04167rem);
  }
}

@media screen and (max-width: 520px) {
  .clinic__item + .clinic__item {
    margin-top: 4.5rem;
  }
}

.clinic__img img {
  border: 2px solid;
  border-radius: 33px;
  aspect-ratio: 380/280;
  -o-object-fit: cover;
     object-fit: cover;
}

.clinic__img.pink img {
  border: 7px solid #ec6b61;
}

.clinic__img.green img {
  border: 7px solid #76b743;
}

.clinic__img.blue img {
  border: 7px solid #76bbc9;
}

.clinic__name {
  font-size: clamp(22.5px, 21.165px + 0.355987055vw, 28px);
  font-size: clamp(1.40625rem, 1.322815534rem + 0.355987055vw, 1.75rem);
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .clinic__name {
    margin-top: 0.625rem;
  }
}

.pink {
  color: #ec6b61;
}

.blue {
  color: #76bbc9;
}

.green {
  color: #76b743;
}

.clinic-info {
  font-size: clamp(16px, 15.514px + 0.1294498382vw, 18px);
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.7;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 29px;
  margin-bottom: 1.8125rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .clinic-info {
    margin-top: 0.5rem;
  }
}

.clinic-address {
  text-align: left;
  display: inline-block;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 520px) {
  .clinic-address {
    line-height: 1.9;
  }
}

.clinic-tel {
  display: inline-block;
  text-align: left;
}

.clinic__button {
  text-align: center;
  margin-top: auto;
}

.clinic__button.pink .clinic__link {
  color: #ec6b61;
  border: 3px solid #ec6b61;
}

.clinic__button.pink .clinic__link:hover {
  color: #fff;
  background-color: #ec6b61;
}

.clinic__button.green .clinic__link {
  color: #76b743;
  border: 3px solid #76b743;
}

.clinic__button.green .clinic__link:hover {
  color: #fff;
  background-color: #76b743;
}

.clinic__button.blue .clinic__link {
  color: #76bbc9;
  border: 3px solid #76bbc9;
}

.clinic__button.blue .clinic__link:hover {
  background-color: #76bbc9;
  color: #fff;
}

.introduction {
  position: relative;
  overflow-x: clip;
}

.introduction__content {
  background-color: #fff;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 20px;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .introduction__content {
    padding: 0 9.1875rem 1.6875rem;
  }
}
@media screen and (max-width: 520px) {
  .introduction__content {
    padding-top: 4rem;
  }
}

.introduction__tree-left {
  position: absolute;
  top: -5%;
  left: 0;
  width: 22%;
}
@media screen and (max-width: 520px) {
  .introduction__tree-left {
    top: -11.5%;
    left: -9%;
    width: 57%;
  }
}

.introduction__decor {
  position: absolute;
  bottom: -17%;
  right: 0;
  width: 100%;
  z-index: 99;
}
@media screen and (max-width: 520px) {
  .introduction__decor {
    bottom: -7%;
    right: 0;
    width: 100%;
  }
}

.introduction__tree-right {
  position: absolute;
  right: 0;
  width: 21%;
  bottom: 17%;
}
@media screen and (max-width: 520px) {
  .introduction__tree-right {
    width: 56%;
  }
}

.introduction__bird {
  position: absolute;
  top: 60%;
  z-index: 100;
  width: 8%;
}
@media screen and (max-width: 520px) {
  .introduction__bird {
    width: 11%;
  }
}

.introduction__title {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .introduction__title {
    position: absolute;
    top: -2.6%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    letter-spacing: 0.3em;
  }
}

@media screen and (max-width: 520px) {
  .introduction__title .en {
    white-space: nowrap;
  }
}

.introduction__title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -75%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../images/common/bg_introduction.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 183px;
  width: 474px;
  width: 29.625rem;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .introduction__title::after {
    width: 17.625rem;
    top: -15%;
  }
}
@media screen and (min-width: 768px) {
  .introduction__title::after {
    width: 45.625rem;
  }
}

.introduction__text {
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .introduction__text {
    width: 50%;
    margin-top: 2.625rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 520px) {
  .introduction__text {
    width: 100%;
    margin-top: 1.4375rem;
  }
}

.introduction__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6%;
  row-gap: 48px;
  row-gap: 3rem;
  margin-top: 74px;
  margin-top: 4.625rem;
}
@media screen and (max-width: 520px) {
  .introduction__list {
    gap: 10%;
    row-gap: 3.1875rem;
    margin-top: 1.625rem;
  }
}
@media screen and (min-width: 768px) {
  .introduction__list {
    row-gap: 5rem;
  }
}

.introduction__list.lower {
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  gap: 5%;
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (max-width: 520px) {
  .introduction__list.lower {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3.1875rem;
    row-gap: 3.1875rem;
    -webkit-column-gap: 14%;
       -moz-column-gap: 14%;
            column-gap: 14%;
  }
}
@media screen and (min-width: 768px) {
  .introduction__list.lower {
    margin-top: 5rem;
  }
}

.introduction__list-item {
  width: 16%;
}
@media screen and (max-width: 520px) {
  .introduction__list-item {
    width: 33%;
  }
}

.introduction__list-name {
  text-align: center;
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
  text-indent: -1em;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (max-width: 520px) {
  .introduction__list-name {
    margin-top: 0;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .introduction__list-name {
    font-size: 1rem;
  }
}

.introduction__list-name span {
  position: relative;
  display: inline-block;
  padding: 9px;
  padding: 0.5625rem;
  border-radius: 50%;
  top: 5px;
  background-color: #eb9500;
  margin-left: 0;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .introduction__list-name span {
    margin-left: 1.5rem;
    margin-right: 0.875rem;
    padding: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .introduction__list-name span {
    padding: 0.9375rem;
  }
}
@media screen and (max-width: 520px) {
  .introduction__list-name span {
    margin-left: 0;
    margin-right: 0.625rem;
  }
}

.introduction__list-name span::after {
  content: "";
  width: 7px;
  width: 0.4375rem;
  height: 7px;
  height: 0.4375rem;
  border-top: solid 2px #60574b;
  border-right: solid 2px #60574b;
  position: absolute;
  left: 2px;
  left: 0.125rem;
  top: 43%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  left: 2px;
  left: 0.125rem;
}
@media screen and (min-width: 768px) {
  .introduction__list-name span::after {
    left: 5px;
    width: 7px;
    height: 7px;
    top: 45%;
    left: 3px;
  }
}
@media screen and (min-width: 1024px) {
  .introduction__list-name span::after {
    left: 0.3125rem;
    width: 9px;
    height: 9px;
  }
}
@media screen and (min-width: 1366px) {
  .introduction__list-name span::after {
    left: 5px;
  }
}
@media screen and (max-width: 520px) {
  .introduction__list-name span::after {
    left: 2px;
  }
}

.introduction__list-name.indent {
  text-indent: -4em;
  padding-left: 0;
}
@media screen and (max-width: 520px) {
  .introduction__list-name.indent {
    text-indent: -2em;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .introduction__list-name.indent {
    padding-left: 2em;
  }
}

.introduction__footer {
  margin-top: 76px;
  margin-top: 4.75rem;
  text-align: center;
}

.feature {
  position: relative;
}

.feature__title {
  text-align: center;
}
@media screen and (max-width: 520px) {
  .feature__title {
    line-height: 1.7;
  }
}

.feature__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 39px;
  margin-top: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .feature__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3%;
    row-gap: 2%;
    margin-top: 5.6875rem;
  }
}

.feature__list-item {
  position: relative;
}

.feature__list-item + .feature__list-item {
  margin-top: 108px;
  margin-top: 6.75rem;
}
@media screen and (min-width: 768px) {
  .feature__list-item + .feature__list-item {
    margin-top: 0;
  }
}

.feature__list-item:nth-child(2n) {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .feature__list-item:nth-child(2n) {
    padding-top: 7.8125rem;
  }
}

.feature__list-number {
  position: relative;
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: clamp(48px, 40.233px + 2.071197411vw, 80px);
  font-size: clamp(3rem, 2.5145631068rem + 2.071197411vw, 5rem);
  color: #fff;
  font-weight: 700;
  left: 11%;
  top: 4%;
  z-index: 1;
}

.feature__list-number::before {
  background-image: url(../images/common/icon_flower.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 134px;
  width: 8.375rem;
  height: 134px;
  height: 8.375rem;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .feature__list-number::before {
    width: 5.1875rem;
    height: 5.1875rem;
  }
}

.feature__list-number:after {
  counter-increment: number 1;
  content: "0" counter(number) "";
}

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

.feature__list-img img {
  border-radius: 309px 300px 42px 42px;
  aspect-ratio: 580/490;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 520px) {
  .feature__list-img img {
    aspect-ratio: 581/534;
  }
}

.feature__list-title {
  font-size: clamp(24px, 22.543px + 0.3883495146vw, 30px);
  font-size: clamp(1.5rem, 1.4089805825rem + 0.3883495146vw, 1.875rem);
  font-weight: 500;
  text-align: center;
  margin-top: 18px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 520px) {
  .feature__list-title {
    margin-top: 1.75rem;
  }
}

.feature__list-text {
  font-size: clamp(14.4px, 13.526px + 0.2330097087vw, 18px);
  font-size: clamp(0.9rem, 0.8453883495rem + 0.2330097087vw, 1.125rem);
  font-weight: 500;
  margin-top: 29px;
  margin-top: 1.8125rem;
  max-width: 300px;
  max-width: 18.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 520px) {
  .feature__list-text {
    max-width: none;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}

.feature__list-text p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feature__list-text:not(:first-child) p {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.feature__list-text p span {
  background-image: url(../images/common/icon_check.png);
  background-repeat: no-repeat;
  width: 26px;
  height: 25px;
  background-size: cover;
  display: inline-block;
  margin-right: 12px;
  margin-right: 0.75rem;
}
@media screen and (max-width: 520px) {
  .feature__list-text p span {
    width: 18px;
    height: 18px;
  }
}

.feature__list-footer {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.feature__tree-left {
  position: absolute;
  top: 56%;
  left: 0;
  width: 16%;
}
@media screen and (min-width: 768px) {
  .feature__tree-left {
    top: 47%;
  }
}
@media screen and (min-width: 1024px) {
  .feature__tree-left {
    top: 48%;
  }
}
@media screen and (max-width: 520px) {
  .feature__tree-left {
    width: 38%;
    top: 50%;
    left: -5%;
  }
}

.staff {
  position: relative;
  overflow-x: clip;
}

.layout-staff {
  margin-top: 175px;
  margin-top: 10.9375rem;
}
@media screen and (min-width: 768px) {
  .layout-staff {
    margin-top: 21.25rem;
  }
}

.staff__title {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: static;
  position: initial;
  letter-spacing: 0.35em;
}
@media screen and (min-width: 768px) {
  .staff__title {
    letter-spacing: 0.2em;
    position: absolute;
    white-space: nowrap;
    z-index: 1;
    left: 4%;
  }
}

.staff__title::after {
  content: "";
  position: absolute;
  right: -29px;
  left: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/img_border.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 8px;
  width: 0.5rem;
  height: 29%;
  top: 13%;
}
@media screen and (min-width: 768px) {
  .staff__title::after {
    top: 50%;
    height: 116%;
    width: 0.625rem;
  }
}

.staff__title .en {
  position: absolute;
  bottom: -37px;
  right: -58px;
}

.staff__wrapper {
  position: relative;
}

.staff__content {
  padding-left: 0;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  margin-left: calc(50% - 66vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 35%);
  background-color: #fff;
  border-radius: 280px 0 0 280px;
  margin-top: 186px;
  margin-top: 11.625rem;
}
@media screen and (min-width: 768px) {
  .staff__content {
    padding-left: 43.8125rem;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    border-radius: 430px 0 0 430px;
    padding-top: 12.3125rem;
    margin-top: 0;
    margin-left: 0;
  }
}

.staff__message {
  font-size: clamp(32px, 28.844px + 0.8414239482vw, 45px);
  font-size: clamp(2rem, 1.8027912621rem + 0.8414239482vw, 2.8125rem);
  font-weight: 500;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .staff__message {
    text-align: left;
    text-align: initial;
  }
}
@media screen and (min-width: 768px) {
  .staff__message {
    text-align: left;
    text-align: initial;
  }
}

.staff__text {
  font-weight: 400;
  letter-spacing: 0.16em;
  margin-top: 45px;
  margin-top: 2.8125rem;
  line-height: 1.8;
}

.staff__footer {
  margin-top: 91px;
  margin-top: 5.6875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .staff__footer {
    text-align: left;
    text-align: initial;
  }
}

.staff__img {
  width: 43%;
}
@media screen and (max-width: 520px) {
  .staff__img {
    width: 75%;
  }
}
@media screen and (min-width: 768px) {
  .staff__img {
    width: 35%;
  }
}

.staff__icon {
  width: 39%;
  position: absolute;
  top: 40%;
  right: auto;
  left: 10%;
}
@media screen and (max-width: 520px) {
  .staff__icon {
    width: 54%;
    top: 38%;
  }
}
@media screen and (min-width: 768px) {
  .staff__icon {
    width: 26%;
    top: -8%;
    right: 0;
    left: auto;
  }
}

.staff__img--upper {
  position: absolute;
  top: -2%;
  left: 17%;
}
@media screen and (min-width: 768px) {
  .staff__img--upper {
    top: -19%;
    left: 29%;
  }
}

.staff__img--lower {
  position: absolute;
  top: 19%;
  right: 0;
}
@media screen and (max-width: 520px) {
  .staff__img--lower {
    left: auto;
    right: -14%;
  }
}
@media screen and (min-width: 768px) {
  .staff__img--lower {
    top: 45%;
    left: 10%;
  }
}

.feature__title {
  text-align: center;
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  counter-reset: step;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 142px;
  margin-top: 8.875rem;
}
@media screen and (min-width: 768px) {
  .flow__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1%;
    margin-top: 8.75rem;
  }
}

.flow__item {
  width: 60%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 159px;
  margin-top: 9.9375rem;
  height: 148px;
}
@media screen and (max-width: 520px) {
  .flow__item {
    width: 100%;
    margin-top: 10.25rem;
  }
}
@media screen and (min-width: 768px) {
  .flow__item {
    width: 25%;
    margin-top: 0;
    height: 148px;
  }
}

.flow__item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/common/bg_white-flower.png);
  height: 279px;
  height: 17.4375rem;
  width: 279px;
  width: 17.4375rem;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.flow__item.first {
  margin-top: 0;
}

.flow__number {
  counter-reset: step;
  text-align: center;
  line-height: 1;
  background: #a7c28b;
  color: #f9e33b;
  border-radius: 50%;
  padding: 9px 18px;
  padding: 0.5625rem 1.125rem;
  position: absolute;
  top: -57%;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .flow__number {
    top: -38%;
  }
}
@media screen and (min-width: 1366px) {
  .flow__number {
    top: -59%;
  }
}
.flow__number span {
  font-size: clamp(30px, 29.029px + 0.2588996764vw, 34px);
  font-size: clamp(1.875rem, 1.8143203883rem + 0.2588996764vw, 2.125rem);
  line-height: 1;
  display: block;
}

.flow__icon {
  width: 30%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flow__title {
  font-size: 23px;
  font-size: 1.4375rem;
  text-align: center;
  margin-top: 0;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .flow__title {
    margin-top: 0.4375rem;
  }
}

.flow__title span {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 14px solid transparent;
  border-right: 0.875rem solid transparent;
  border-left: 14px solid transparent;
  border-left: 0.875rem solid transparent;
  border-top: 16px solid #eb9500;
  border-bottom: 0;
  position: relative;
  top: 73px;
  top: 4.5625rem;
}
@media screen and (min-width: 768px) {
  .triangle {
    border-top: 0.9375rem solid transparent;
    border-bottom: 0.9375rem solid transparent;
    border-left: 0.9375rem solid #eb9500;
    position: static;
    position: initial;
    margin-left: 0.625rem;
  }
}
@media screen and (max-width: 520px) {
  .triangle {
    top: 4.6875rem;
  }
}

.flow__footer {
  margin-top: 112px;
  margin-top: 7rem;
  text-align: center;
}

.service {
  position: relative;
  background-color: #fae4bf;
  z-index: 1;
  overflow-x: clip;
}

.service::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/common/bg_service-filter.png);
  height: 100%;
  width: 100%;
  z-index: -1;
}

.service__tree-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 60;
  width: 33%;
}
@media screen and (max-width: 520px) {
  .service__tree-right {
    top: 0.8125rem;
    right: -4.4375rem;
    width: 48%;
    z-index: 50;
  }
}
@media screen and (min-width: 768px) {
  .service__tree-right {
    top: -17%;
    width: 18%;
  }
}

.service__inner {
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .service__inner {
    padding-bottom: 7.1875rem;
    padding-top: 1.9375rem;
  }
}

.service__title {
  text-align: center;
  letter-spacing: 0.26em;
  position: relative;
  z-index: 10;
}

.service__title:after {
  content: "";
  position: absolute;
  width: 622px;
  width: 38.875rem;
  height: 181px;
  height: 11.3125rem;
  border-radius: 49%/0 0 96% 99%;
  background: #f8f6ea;
  left: 49%;
  top: -80%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .service__title:after {
    width: 98%;
    height: 9.25rem;
    width: 114%;
  }
}

.service__message {
  text-align: center;
  font-size: clamp(32px, 28.844px + 0.8414239482vw, 45px);
  font-size: clamp(2rem, 1.8027912621rem + 0.8414239482vw, 2.8125rem);
  font-weight: 500;
  margin-top: 93px;
  margin-top: 5.8125rem;
  letter-spacing: 0.018em;
}
@media screen and (min-width: 768px) {
  .service__message {
    margin-top: 3.75rem;
  }
}

.service__text {
  margin-top: 33px;
  margin-top: 2.0625rem;
  line-height: 1.9;
  text-align: center;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (max-width: 520px) {
  .service__text {
    margin-top: 1.3125rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}

.service__list {
  margin-top: 76px;
  margin-top: 4.75rem;
}
@media screen and (min-width: 768px) {
  .service__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3%;
    margin-top: 4.5625rem;
  }
}

.service__list-item + .service__list-item {
  margin-top: 0;
}
@media screen and (max-width: 520px) {
  .service__list-item + .service__list-item {
    margin-top: 4.25rem;
  }
}

.service__list-number {
  text-align: center;
  color: #eb9500;
  font-size: clamp(13px, 12.029px + 0.2588996764vw, 17px);
  font-size: clamp(0.8125rem, 0.7518203883rem + 0.2588996764vw, 1.0625rem);
  letter-spacing: 0.19em;
  position: relative;
  z-index: 10;
}

.service__list-number span {
  font-size: clamp(36px, 33.572px + 0.6472491909vw, 46px);
  font-size: clamp(2.25rem, 2.0983009709rem + 0.6472491909vw, 2.875rem);
  display: block;
  line-height: 1;
}

.service__list-img {
  margin-top: -15px;
  margin-top: -0.9375rem;
  position: relative;
  z-index: 0;
  width: 71%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .service__list-img {
    width: 100%;
  }
}

.service__list-text {
  text-align: center;
  font-size: clamp(24px, 22.543px + 0.3883495146vw, 30px);
  font-size: clamp(1.5rem, 1.4089805825rem + 0.3883495146vw, 1.875rem);
  font-weight: 500;
  margin-top: 14px;
  margin-top: 0.875rem;
  letter-spacing: 0.17em;
}
@media screen and (max-width: 520px) {
  .service__list-text {
    margin-top: 1.3125rem;
  }
}

.service__list-footer {
  margin-top: 77px;
  margin-top: 4.8125rem;
  text-align: center;
}

.service__tree-left {
  position: absolute;
  bottom: -17%;
  left: 0;
  width: 22%;
}
@media screen and (max-width: 520px) {
  .service__tree-left {
    bottom: -8.5%;
    width: 57%;
    bottom: -1%;
    width: 23%;
  }
}

.voice__inner {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .voice__inner {
    padding-top: 9.25rem;
  }
}

.voice__title {
  text-align: center;
}
@media screen and (max-width: 520px) {
  .voice__title {
    line-height: 1.8;
  }
}

.voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .voice__list {
    width: 77%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10%;
    margin-top: 2.25rem;
  }
}

.voice__item {
  text-align: center;
}

.voice__item span {
  margin-top: 2px;
  display: block;
}
@media screen and (min-width: 768px) {
  .voice__item span {
    margin-top: 9px;
  }
}

.voice__img {
  background: white;
  border-radius: 50%;
  border: 6px solid orange;
  width: 41%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .voice__img {
    width: 37%;
    margin-right: auto;
    margin-left: auto;
  }
}

.voice__item-name {
  font-size: clamp(18px, 16.786px + 0.3236245955vw, 23px);
  font-size: clamp(1.125rem, 1.0491504854rem + 0.3236245955vw, 1.4375rem);
}

.voice__wrapper {
  background-color: #fff;
  position: relative;
  display: inline-block;
  margin-top: 26px;
  padding: 24px 9px;
  padding: 1.5rem 0.5625rem;
  border-radius: 16px;
  text-align: center;
  -webkit-box-shadow: 0.4375rem 0.4375rem 0.3125rem rgba(235, 149, 0, .75);
          box-shadow: 0.4375rem 0.4375rem 0.3125rem rgba(235, 149, 0, .75);
}
@media screen and (max-width: 520px) {
  .voice__wrapper {
    -webkit-box-shadow: 0.1875rem 0.1875rem 0.1875rem rgba(235, 149, 0, .75);
            box-shadow: 0.1875rem 0.1875rem 0.1875rem rgba(235, 149, 0, .75);
  }
}
@media screen and (min-width: 768px) {
  .voice__wrapper {
    padding: 2.4375rem 1.8125rem;
    border-radius: 46px;
  }
}

.voice__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff;
  translate: -50% -100%;
}

.voice__wrapper-title {
  border-bottom: dotted 4px #eb9500;
  color: #eb9500;
  font-weight: 500;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .voice__wrapper-title {
    font-size: 1.5625rem;
    padding-bottom: 1.25rem;
    border-bottom: dotted 5px #eb9500;
  }
}

.voice__wrapper-text {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .voice__wrapper-text {
    font-size: 1.0625rem;
    margin-top: 0.9375rem;
    line-height: 1.7;
  }
}

.faq__inner {
  padding-bottom: 85px;
  padding-bottom: 5.3125rem;
}

.faq__title {
  text-align: center;
  letter-spacing: 0.08em;
}

.faq-list {
  max-width: 70%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 62px;
  margin-top: 3.875rem;
}
@media screen and (max-width: 520px) {
  .faq-list {
    max-width: 100%;
  }
}
@media screen and (min-width: 1366px) {
  .faq-list {
    max-width: 846px;
  }
}

.faq-item {
  background-color: #c8e2b4;
  border-radius: 60px;
  padding: 10px 60px 10px 17px;
  padding: 0.625rem 3.75rem 0.625rem 1.0625rem;
  font-size: clamp(18.4px, 17.283px + 0.2977346278vw, 23px);
  font-size: clamp(1.15rem, 1.0802184466rem + 0.2977346278vw, 1.4375rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 520px) {
  .faq-item {
    border-radius: 20px;
    padding: 20px 60px 20px 17px;
    padding: 1.25rem 3.75rem 0.625rem 1.0625rem;
  }
}

.faq-item::after {
  content: "";
  position: absolute;
  right: 14px;
  right: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 31px;
  width: 1.9375rem;
  height: 31px;
  height: 1.9375rem;
}

.faq-item + .faq-item {
  margin-top: 41px;
  margin-top: 2.5625rem;
}
@media screen and (max-width: 520px) {
  .faq-item + .faq-item {
    margin-top: 0.75rem;
  }
}

.faq-icon {
  background-color: #f8f6ea;
  color: #76b743;
  border-radius: 50%;
  padding: 10px 16px 12px;
  padding: 0.625rem 1rem 0.75rem;
  line-height: 1;
  font-size: clamp(24px, 22.3px + 0.4530744337vw, 31px);
  font-size: clamp(1.5rem, 1.3938106796rem + 0.4530744337vw, 1.9375rem);
  margin-right: 70px;
  margin-right: 4.375rem;
}
@media screen and (max-width: 520px) {
  .faq-icon {
    margin-right: 1rem;
  }
}

.faq-question {
  letter-spacing: 0.08em;
}

.faq__footer {
  text-align: center;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 1024px) {
  .faq__footer {
    margin-top: 5.5625rem;
  }
}

.page-id-73 {
  background-color: #f8f6ea;
}

.sub-departments-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .sub-departments-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.sub-departments-item + .sub-departments-item {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .sub-departments-item + .sub-departments-item {
    margin-top: 3.75rem;
  }
}

.sub-departments-itemImg {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .sub-departments-itemImg {
    width: 20%;
    margin-top: 0;
    z-index: -2;
  }
}

.sub-departments-item-content {
  scroll-margin-top: 200px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .sub-departments-item-content {
    width: 73%;
    margin-top: 3.125rem;
  }
}

.sub-departments-name {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 2px solid;
}

.sub-departments-item-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 520px) {
  .sub-departments-item-text {
    margin-top: 0.625rem;
  }
}

.page.page-id-75 {
  background-color: #f8f6ea;
}

.care-taxi__text {
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.sub-service__description {
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.sub-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3%;
  padding-bottom: 120px;
}
@media screen and (max-width: 520px) {
  .sub-service__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2%;
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 768px) {
  .sub-service__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
    row-gap: 4%;
    padding-bottom: 0;
  }
}

.sub-service__list-card {
  background-color: #fff;
  position: relative;
  display: inline-block;
  padding: 24px 9px;
  padding: 1.5rem 0.5625rem;
  border-radius: 16px;
  text-align: center;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0 rgba(235, 149, 0, .75);
          box-shadow: 0.3125rem 0.3125rem 0 rgba(235, 149, 0, .75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 520px) {
  .sub-service__list-card {
    -webkit-box-shadow: 0.1875rem 0.1875rem 0.1875rem rgba(235, 149, 0, .75);
            box-shadow: 0.1875rem 0.1875rem 0.1875rem rgba(235, 149, 0, .75);
  }
}
@media screen and (min-width: 768px) {
  .sub-service__list-card {
    padding: 2.4375rem 1.8125rem;
  }
}

.sub-service__list-cardTitle {
  border-bottom: dotted 4px #eb9500;
  font-weight: 500;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .sub-service__list-cardTitle {
    font-size: 1.5625rem;
    padding-bottom: 1.25rem;
    border-bottom: dotted 5px #eb9500;
  }
}

.sub-service__list-cardText {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  line-height: 1.9;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  text-align: left;
  text-align: initial;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .sub-service__list-cardText {
    margin-top: 0.9375rem;
    line-height: 1.7;
  }
}

.sub-service__list-cardFooter {
  margin-top: auto;
}
.sub-service__list-cardLink.button {
  padding: 8px 0;
  padding: 0.5rem 0;
  width: 200px;
  width: 12.5rem;
  background-color: #eb9500;
  color: #fff;
  font-weight: 500;
}
/*# sourceMappingURL=styles.css.map */
