@charset "UTF-8";
/*****************************************************************
コーポレートサイト ベースレイアウト設定ファイル（common.css）
    - Version: 1.0.0 (2017/09/04)
    - Create:  (2017/09/04)
    - Release: (yyyy/mm/dd)
*****************************************************************/
/*==========================================
/
/ 1■body
/ 2■common
/ 3■header
/ 4■breadcrumbs
/ 5■title
/ 6■footer
/ 7■slider(top)
/ 8■contents
/ 9■news
/ 10■faq
/ 11■free
/
==========================================*/
/******************************************************************
  1■body
*****************************************************************/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.78;
  letter-spacing: 0.075em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767.98px) {
  body {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.75;
  }
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

.main {
  padding-top: 104px;
}

/******************************************************************
  2■common
*****************************************************************/
a {
  color: #008571;
  text-decoration: underline;
  transition: opacity 0.25s linear;
}
a:link {
  color: #008571;
  text-decoration: underline;
}
@media (any-hover: hover) {
  a:hover {
    color: #008571;
    text-decoration: none;
  }
}
a:focus {
  color: #008571;
  outline: none;
  outline-offset: 0;
}
a.link-arrow {
  display: inline-block;
  padding-left: 16px;
  position: relative;
}
a.link-arrow::before, a.link-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
a.link-arrow::before {
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #008571;
  border-right: 1px solid #008571;
  transform: rotate(45deg);
}
a.blank::after {
  content: url("../img/common/icon-blank.png");
  margin-left: 6px;
}

@media (any-hover: hover) {
  section a:hover {
    opacity: 0.8;
  }
}
a[href^="tel:"] {
  cursor: default;
  text-decoration: none !important;
}
@media (any-hover: hover) {
  a[href^="tel:"]:hover {
    opacity: 1;
  }
}

.btn-01,
.btn-02 {
  margin: 32px auto 0;
  text-align: center;
}
.btn-01 a,
.btn-02 a {
  padding: 12px 40px 11px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 285px;
  height: 54px;
  border: 2px solid #008571;
  border-radius: 27px;
  background: #fff;
  color: #008571;
  font-size: 2.4rem;
  line-height: 1.75;
  font-weight: bold;
  letter-spacing: 0.075em;
  text-decoration: none;
  transition: 0.3s;
}
.btn-01 a::before,
.btn-02 a::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #008571;
}
@media (max-width: 767.98px) {
  .btn-01 a::before,
  .btn-02 a::before {
    width: 20px;
    height: 20px;
  }
}
.btn-01 a::after,
.btn-02 a::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 767.98px) {
  .btn-01 a::after,
  .btn-02 a::after {
    width: 6px;
    height: 6px;
    right: 23px;
  }
}
.btn-01 a:hover,
.btn-02 a:hover {
  background: #DFF2EF;
  opacity: 1;
}
@media (max-width: 767.98px) {
  .btn-01 a,
  .btn-02 a {
    width: 100%;
    padding: 10px 40px 10px;
    font-size: 2rem;
    border: 1px solid #008571;
    max-width: 268px;
    height: 46px;
  }
}

/******************************************************************
  3■header
*****************************************************************/
header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 104px;
  border-top: 4px solid #008571;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.9);
  transition: height 0.1s ease;
}
header .container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 1550px) {
  header .container {
    padding: 0 15px;
  }
}
header .header-logo {
  display: flex;
  align-items: center;
  height: 100px;
  margin: 0;
  font-size: 1.2rem;
  transition: height 0.2s ease;
}
@media (min-width: 992px) {
  header .header-logo img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  header .header-logo a:hover {
    opacity: 0.8;
  }
}
header .row {
  position: relative;
}
header .nav {
  display: flex;
  justify-content: right;
}
header .nav li {
  color: #333;
  padding: 0 25px;
}
@media screen and (max-width: 1550px) {
  header .nav li {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  header .nav li {
    padding: 0 10px;
    font-size: 1.6rem;
  }
}
header .nav li a {
  display: flex;
  align-items: center;
  height: 100px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
header .nav li a span.focus {
  border-bottom-color: #008571;
  color: #008571;
}
@media (any-hover: hover) {
  header .nav li a:hover {
    color: #008571;
  }
  header .nav li a:hover span {
    border-bottom-color: #008571;
  }
}
header .nav li.contact-btn {
  width: auto;
  text-align: right;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.875;
}
@media screen and (max-width: 1200px) {
  header .nav li.contact-btn {
    padding: 0 10px;
    font-size: 1.6rem;
    padding-right: 0;
  }
}
header .nav li.contact-btn .contact-btn-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 18px 0;
  border-radius: 4px;
  background-color: #008571;
  color: #fff;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  header .nav li.contact-btn a:hover {
    border-bottom: none;
  }
  header .nav li.contact-btn a:hover .contact-btn-bg {
    opacity: 0.8;
  }
}
header .nav .drawer-menu,
header .nav .drawer-menu span {
  display: none;
}
@media (min-width: 992px) {
  header.mini-header {
    height: 56px;
    transition: all 0.2s ease;
  }
  header.mini-header .header-logo {
    height: 52px;
  }
  header.mini-header .header-logo img {
    width: auto;
    height: 50px;
    transition: width 0.2s ease;
  }
  header.mini-header nav li a {
    height: 52px;
    padding: 15px 0 7px;
    transition: all 0.2s ease;
  }
  header.mini-header nav li.contact-btn a {
    height: 52px;
    padding: 7px 0;
    transition: all 0.2s ease;
  }
}

@media print {
  header {
    position: absolute;
  }
}
@media (max-width: 991.98px) {
  .main {
    padding-top: 54px;
  }
  header {
    height: 54px;
    transition: all 0.2s ease;
  }
  header .container {
    width: 100%;
    padding: 0;
  }
  .sm-header {
    width: 100%;
    padding: 0 24px;
    background-color: #fff;
  }
  header .header-logo {
    height: 50px;
  }
  .header-logo img {
    width: auto;
    height: 50px;
  }
  ul.nav {
    display: none;
    padding: 0 28px;
  }
  .drawer-menu {
    display: block;
    position: absolute;
    top: 16px;
    right: 24px;
    width: 24px;
    height: 17px;
    cursor: pointer;
  }
  .drawer-menu span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    box-sizing: border-box;
    background-color: #008571;
    transition: all 0.4s;
  }
  .drawer-menu span:nth-of-type(1) {
    top: 0;
  }
  .drawer-menu span:nth-of-type(2) {
    top: 8px;
  }
  .drawer-menu span:nth-of-type(3) {
    bottom: 0;
  }
  header.open {
    height: 100%;
    background-color: #DFF2EF;
    transition: all 0.2s ease;
  }
  header.open .drawer-menu span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  header.open .drawer-menu span:nth-of-type(2) {
    opacity: 0;
  }
  header.open .drawer-menu span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  header.open ul.nav {
    display: block;
  }
  header.open ul.nav li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #008571;
    padding: 0;
  }
  header.open ul.nav li a {
    position: relative;
    height: auto;
    padding: 16px 0;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #008571;
    font-weight: bold;
    text-align: left;
  }
  header.open ul.nav li a span {
    padding: 0;
  }
  header.open ul.nav li a::before {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 1px solid #008571;
    border-right: 1px solid #008571;
    content: "";
  }
  header.open ul.nav .contact-btn {
    border-bottom: none;
  }
  header.open ul.nav .contact-btn a {
    display: flex;
    justify-content: center;
    margin: 16px 0;
  }
  header.open ul.nav .contact-btn a::before {
    content: none;
  }
}
/******************************************************************
  4■breadcrumbs
*****************************************************************/
.breadcrumbs {
  padding: 4px 0;
  background-color: #f1f1f1;
}
.breadcrumbs li {
  display: inline-block;
  position: relative;
  margin-right: 16px;
  padding-right: 16px;
  font-size: 1.4rem;
  color: #999;
}
.breadcrumbs li::before {
  content: "";
  position: absolute;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  top: 50%;
  right: 0;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
}
.breadcrumbs li:last-child::before {
  content: none;
}
@media (max-width: 767.98px) {
  .breadcrumbs .container {
    overflow-x: scroll;
  }
  .breadcrumbs .container ul {
    overflow: hidden;
    display: table;
    width: initial;
    width: auto;
  }
  .breadcrumbs .container ul li {
    display: table-cell;
    white-space: nowrap;
    padding-left: 16px;
  }
  .breadcrumbs .container ul li:first-child {
    padding-left: 0;
  }
}

/******************************************************************
  5■title
*****************************************************************/
.main-img {
  height: 700px;
  position: relative;
}
@media (max-width: 767.98px) {
  .main-img {
    height: 432px;
  }
}
.main-img .kv-img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.img-text {
  color: #008571;
  width: 100%;
  text-align: center;
  font-size: 4vw;
}
@media (max-width: 767.98px) {
  .img-text {
    font-size: 8vw;
  }
}
.img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img-text.dark-color {
  color: #333;
  text-shadow: 0px 0px 3px #fff;
}
.img-text.bright-color {
  color: #fff;
  text-shadow: 0px 0px 3px #333;
}

.title-box {
  height: 344px;
  position: relative;
  overflow: hidden;
  background-color: #9f9894;
}
@media (max-width: 767.98px) {
  .title-box {
    height: 200px;
  }
}

.title-bg {
  opacity: 0.7;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.title-text {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.title-text > span {
  display: block;
}
.title-text-upper {
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .title-text-upper {
    font-size: 3rem;
  }
}
.title-text-lower {
  font-size: 2.4rem;
  padding-top: 24px;
}
@media (max-width: 767.98px) {
  .title-text-lower {
    font-size: 2rem;
  }
}

.contents-ttl {
  text-align: center;
  margin-bottom: 48px;
  color: #333;
}
@media (max-width: 767.98px) {
  .contents-ttl {
    margin-bottom: 32px;
  }
}
.contents-ttl img {
  width: auto;
  height: 85px;
}
@media (max-width: 767.98px) {
  .contents-ttl img {
    height: 36px;
    margin-top: 16px;
  }
}
@media (max-width: 767.98px) {
  .contents-ttl.sp-scale {
    height: 80px;
    overflow: hidden;
  }
  .contents-ttl.sp-scale img {
    display: inline-block;
    transform: scale(1.8);
    transform-origin: top center;
  }
}
.contents-ttl.sub-page img {
  width: auto;
  height: 63px;
}
.contents-ttl .ttl-img-lg {
  width: auto;
  height: 130px;
}
@media (max-width: 767.98px) {
  .contents-ttl .ttl-img-lg {
    height: 80px;
  }
}
.contents-ttl-sub {
  position: relative;
  font-weight: bold;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.25;
  padding-bottom: 16px;
  margin-bottom: 48px;
  color: #333;
}
.contents-ttl-sub::before {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  background-color: #008571;
  width: 104px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .contents-ttl-sub {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}
.contents-ttl-sub-page img {
  height: 63px;
  width: auto;
}
@media (max-width: 767.98px) {
  .contents-ttl-sub-page img {
    height: 40px;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .contents-ttl.ttl-left {
    text-align: left;
  }
  .contents-ttl.ttl-left::after {
    left: 0;
    transform: translateX(0);
  }
}
/******************************************************************
  6■footer
*****************************************************************/
footer section {
  padding: 0;
  background-color: #DFF2EF;
  margin: 0;
  color: #FFF;
}
footer section a:link, footer section a:visited {
  text-decoration: none;
}
footer .footer-top {
  padding: 64px 15px 60px;
}
@media (max-width: 767.98px) {
  footer .footer-top {
    padding: 32px 15px 56px;
  }
}
footer .footer-top a:link, footer .footer-top a:visited {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.875;
}
@media (any-hover: hover) {
  footer .footer-top a:hover {
    color: #008571;
    opacity: 1;
  }
}
footer .footer-bottom {
  padding: 40px 0;
  background-color: #008571;
}
@media (max-width: 767.98px) {
  footer .footer-bottom {
    padding: 15px 0;
  }
}

.footer-nav-title {
  border-bottom: 1px solid #333;
  font-size: 1.6rem;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.footer-nav-title .ic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-nav-title .ic::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: currentColor;
  -webkit-mask: url("../img/top/icon-blank.svg") no-repeat center;
  mask: url("../img/top/icon-blank.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .footer-nav-title {
    font-size: 1.5rem;
    padding: 16px 32px 16px 0;
    margin-bottom: 0;
    position: relative;
  }
  .footer-nav-title a::after {
    content: "";
    position: absolute;
    inset: 0;
  }
  .footer-nav-title a:has(+ .trigger)::after {
    inset: 0 64px 0 0;
  }
  .footer-nav-title .trigger {
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    right: 18px;
    top: 18px;
    cursor: pointer;
  }
  .footer-nav-title .trigger span::after {
    content: "";
    position: absolute;
    inset: -18px -18px -20px;
  }
  .footer-nav-title .trigger::before, .footer-nav-title .trigger::after {
    content: "";
    position: absolute;
    display: block;
    background-color: #333;
    width: 15px;
    height: 1px;
    top: 7px;
    right: 0;
  }
  .footer-nav-title .trigger::after {
    transition: all 0.4s;
    width: 1px;
    height: 15px;
    top: 0;
    right: 7px;
  }
  .footer-nav-title .trigger.op::after {
    transform: rotate(-90deg);
  }
  .footer-nav-title > a.ic {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .footer-nav-title > a.ic::after {
    margin-left: auto;
  }
}

@media (max-width: 767.98px) {
  .footer-nav-title {
    padding: 0;
    margin-bottom: 0;
  }
  .footer-nav-title > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 17px 0 15px;
    text-decoration: none;
    padding-right: 18px;
  }
}
.footer-sub-menu li {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .footer-sub-menu li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767.98px) {
  .footer-sub-menu {
    display: none;
    padding-top: 8px;
    padding-left: 16px;
    padding-bottom: 8px;
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .footer-sub-menu li a {
    position: relative;
  }
  .footer-sub-menu li a::after {
    content: "";
    position: absolute;
    inset: -4px -16px;
  }
}

@media (max-width: 767.98px) {
  footer dl {
    border-bottom: 1px solid #333;
  }
  footer dl .footer-nav-title {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  dd.footer-sub-menu {
    display: block !important;
  }
}
.copyright {
  text-align: center;
}

footer .ga-pdf {
  padding: 16px 0 0 0;
}
@media (max-width: 767.98px) {
  footer .ga-pdf {
    padding-top: 15px;
  }
}
footer .ga-pdf a {
  color: #fff;
}

.footer-logo {
  margin: 0 auto 16px;
  text-align: center;
}
.footer-logo img {
  width: auto;
  height: 35px;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 60px;
  z-index: 100;
  display: none;
}
.pagetop a {
  display: block;
  position: relative;
  right: 0;
  background: #008571;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}
.pagetop a::before {
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 16px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  transform: rotate(315deg);
}

.sns-box {
  display: flex;
  align-items: center;
  font-size: 0;
}
.sns-box li {
  width: 40px;
  display: block;
  margin-right: 26px;
  height: 40px;
}
.sns-box li a {
  display: block;
}
.sns-box li img {
  width: 100%;
}
.sns-box .x-logo {
  width: 34px;
  height: auto;
}
@media (max-width: 767.98px) {
  .sns-box {
    margin-top: 40px;
    text-align: center;
  }
  .sns-box li {
    margin: 0 13px;
  }
}

/******************************************************************
  7■slider(top)
*****************************************************************/
.mainimg {
  position: relative;
}
.mainimg .no-link {
  cursor: default;
}
.mainimg img {
  width: 100%;
}
.mainimg img.object-fit-img {
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media (max-width: 767px) {
  .mainimg img.object-fit-img {
    height: auto;
  }
}
.mainimg .slick-dotted.slick-slider {
  margin-bottom: -2px;
}
@media (max-width: 767.98px) {
  .mainimg .slick-dotted.slick-slider {
    margin-bottom: 18px;
  }
}
.mainimg .slick-dots {
  bottom: 10px;
}
@media (max-width: 767.98px) {
  .mainimg .slick-dots {
    background: url(../img/top/bg-001.jpg);
    bottom: -18px;
  }
}
.mainimg .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 5px;
}
@media (max-width: 767.98px) {
  .mainimg .slick-dots li {
    width: 8px;
    height: 8px;
  }
}
.mainimg .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}
.mainimg .slick-dots li button::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  opacity: 1;
}
@media (max-width: 767.98px) {
  .mainimg .slick-dots li button::before {
    width: 8px;
    height: 8px;
  }
}
.mainimg .slick-dots li.slick-active button::before {
  background: #008571;
  opacity: 1;
}

/******************************************************************
  8■contents
*****************************************************************/
section {
  padding: 96px 0 96px;
}
@media (max-width: 767.98px) {
  section {
    padding: 56px 0 56px;
  }
}
section p {
  line-height: 1.78;
}
section.section-colored {
  background: url(../img/top/bg-001.jpg);
}
section.section-colored-pink {
  background: url(../img/top/bg-002.jpg);
}
section.section-image, section.section-image-dark {
  background-position: center center;
  background-size: cover;
  position: relative;
}
section.section-image::before, section.section-image-dark::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: #DFF2EF;
  opacity: 0.8;
  z-index: 1;
}
section.section-image .container, section.section-image-dark .container {
  position: relative;
  z-index: 10;
}
section.recruit {
  color: #fff;
}
section.recruit::before {
  background-color: #333;
}
section.recruit .contents-ttl {
  color: #fff;
}
section.recruit .contents-ttl::after {
  background-color: #fff;
}
section.recruit .contents-ttl-sub {
  color: #fff;
}
section.recruit .lead {
  text-align: center;
}
@media (max-width: 767.98px) {
  section.recruit .lead {
    text-align: left;
  }
}
section.contact {
  background-color: #333;
  position: relative;
  color: #fff;
}
section.contact::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: #008571;
  opacity: 0.4;
  z-index: 0;
}
section.contact .contents-ttl {
  color: #fff;
}
section.contact .contents-ttl::after {
  background-color: #fff;
}
section.contact .tel-number {
  font-size: 2.8rem;
  font-weight: normal;
  vertical-align: middle;
}
section.contact .contact-info {
  margin: 8px auto;
}
section.contact a, section.recruit a {
  color: #fff;
}
section.contact a:link, section.contact a:visited, section.recruit a:link, section.recruit a:visited {
  text-decoration: underline;
  color: #fff;
}
@media (any-hover: hover) {
  section.contact a:hover, section.recruit a:hover {
    text-decoration: none;
  }
}
section.contact .btn-02 a, section.recruit .btn-02 a {
  position: relative;
  letter-spacing: 1px;
  border-radius: 0;
  padding-left: 4px;
  background-color: transparent;
  border: 2px solid #fff;
  font-weight: normal;
  color: #fff;
}
section.contact .btn-02 a:link, section.contact .btn-02 a:visited, section.recruit .btn-02 a:link, section.recruit .btn-02 a:visited {
  text-decoration: none;
}
@media (any-hover: hover) {
  section.contact .btn-02 a:hover, section.recruit .btn-02 a:hover {
    background-color: #fff;
    color: #008571;
    opacity: 1;
  }
  section.contact .btn-02 a:hover::before, section.recruit .btn-02 a:hover::before {
    border-color: #008571;
  }
}
section.contact .btn-02 a::before, section.contact .btn-02 a::after, section.recruit .btn-02 a::before, section.recruit .btn-02 a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
section.contact .btn-02 a::before, section.recruit .btn-02 a::before {
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.row.flx .flx-box {
  background-clip: content-box;
}
.row.flx .flx-box .flx-box-inner {
  padding: 32px 16px;
}

@media (min-width: 768px) {
  .row.flx {
    display: flex;
  }
}
.m-b-sm {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .m-b-sm {
    margin-bottom: 8px;
  }
}

.m-b-md {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .m-b-md {
    margin-bottom: 16px;
  }
}

.m-b-lg {
  margin-bottom: 64px;
}
@media (max-width: 767.98px) {
  .m-b-lg {
    margin-bottom: 32px;
  }
}

@media (max-width: 767.98px) {
  .sp-m-b-xs {
    margin-bottom: 8px;
  }
  .sp-m-b-sm {
    margin-bottom: 16px;
  }
  .sp-m-b-md {
    margin-bottom: 24px;
  }
  .sp-m-b-lg {
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .sm-right-space {
    padding-right: 3%;
  }
  .sm-left-space {
    padding-left: 3%;
  }
}
.font-size-xs {
  font-size: 1.2rem;
}
@media (max-width: 767.98px) {
  .font-size-xs {
    font-size: 1rem;
  }
}

.font-size-sm {
  font-size: 1.4rem;
}
@media (max-width: 767.98px) {
  .font-size-sm {
    font-size: 1rem;
  }
}

.font-size-md {
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .font-size-md {
    font-size: 1.2rem;
  }
}

.font-size-lg {
  font-size: 2.4rem;
}
@media (max-width: 767.98px) {
  .font-size-lg {
    font-size: 1.6rem;
  }
}

.font-size-xl {
  font-size: 5rem;
}
@media (max-width: 767.98px) {
  .font-size-xl {
    font-size: 3rem;
  }
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.lead {
  line-height: 2;
}

.article {
  line-height: 2;
}

.valign-m {
  vertical-align: middle;
}

.emphasis {
  font-weight: bold;
}
.emphasis-colored {
  color: #008571;
}
.emphasis-boldcolored {
  font-weight: bold;
  color: #008571;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.h-line {
  border-left: 4px solid #008571;
  padding-left: 8px;
}

.label {
  color: #fff;
  background-color: #008571;
  padding: 4px 8px;
}

.blockquote {
  position: relative;
  margin: 0 0 16px;
  padding: 0;
  z-index: 1;
}
.blockquote p {
  position: relative;
  z-index: 3;
  padding: 16px;
  font-size: 2.4rem;
  color: #008571;
}
.blockquote::before, .blockquote::after {
  content: "“";
  font-size: 60px;
  line-height: 0.8em;
  font-family: "Times New Roman", "ＭＳ Ｐゴシック", sans-serif;
  color: #008571;
  position: absolute;
  z-index: 2;
  opacity: 0.5;
}
.blockquote::before {
  left: 0;
  top: 0;
}
.blockquote::after {
  content: "”";
  line-height: 0em;
  right: 0;
  bottom: 0;
}

.colored-box {
  background-color: #DFF2EF;
  border: 1px solid #008571;
  padding: 16px;
}

.bg-gray {
  background-color: #ccc;
}

.bg-white {
  background-color: #fff;
}

.bg-colored {
  background-color: #DFF2EF;
}

.no-wrap {
  white-space: nowrap;
}

.inline-block {
  display: inline-block;
}

/* リスト関連 */
.dot-list li {
  position: relative;
  padding-left: 15px;
  margin: 16px 0;
}
.dot-list li::after {
  color: #333;
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}
.dot-list.lh-sm li {
  margin: 8px 0;
}

.check-list li {
  margin: 16px 0 16px 24px;
  position: relative;
  padding-left: 4px;
}
@media (max-width: 767.98px) {
  .check-list li {
    margin: 8px 0 8px 24px;
  }
}
.check-list li::after {
  opacity: 0.8;
  display: block;
  content: "";
  position: absolute;
  top: 0.2em;
  left: -1.4em;
  width: 16px;
  height: 10px;
  border-left: 4px solid #008571;
  border-bottom: 4px solid #008571;
  transform: rotate(-45deg);
}
.check-list.lh-sm li {
  margin: 8px 0 8px 24px;
}

/* 画像関連 */
.img-fluid {
  width: 100%;
  height: auto;
}

.img-radius {
  border-radius: 4px;
}

.img-radius-round {
  border-radius: 50%;
}

.img-cadre {
  border: 1px solid #ccc;
  padding: 8px;
}

.img-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  opacity: 1;
}
.img-link figure {
  top: 0;
  left: 0;
  background-color: #333;
}
.img-link figure img {
  width: 100%;
  opacity: 0.4;
  transition: transform 0.2s ease;
}
@media (any-hover: hover) {
  .img-link:hover figure img {
    transform: scale(1.08);
  }
}
.img-link .img-link-text {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
}
.img-link .img-link-text-ttl {
  font-size: 2.8rem;
}
.img-link .box-arrow::before, .img-link .box-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
.img-link .box-arrow::before {
  right: 24px;
  width: 16px;
  height: 16px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.fukidashi-top {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 8px;
  margin: 16px 0 0;
  border: 1px solid #999;
}
.fukidashi-top::before, .fukidashi-top::after {
  border: 10px solid transparent;
  border-bottom-color: #fff;
  border-top-width: 0;
  position: absolute;
  top: -9px;
  content: " ";
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  z-index: 1;
}
.fukidashi-top::after {
  border-bottom-color: #999;
  top: -10px;
  z-index: 0;
}

/* aspect-ratio */
.aspect-ratio-1x1 {
  --aspect-ratio-sp: 1/1;
  --aspect-ratio-pc: 1/1;
}

.aspect-ratio-2x1 {
  --aspect-ratio-sp: 2/1;
  --aspect-ratio-pc: 2/1;
}

.aspect-ratio-3x2 {
  --aspect-ratio-sp: 3/2;
  --aspect-ratio-pc: 3/2;
}

.aspect-ratio-3x4 {
  --aspect-ratio-sp: 3/4;
  --aspect-ratio-pc: 3/4;
}

.aspect-ratio-4x3 {
  --aspect-ratio-sp: 4/3;
  --aspect-ratio-pc: 4/3;
}

.aspect-ratio-16x9 {
  --aspect-ratio-sp: 16/9;
  --aspect-ratio-pc: 16/9;
}

.aspect-ratio-364x485 {
  --aspect-ratio-sp: 364/485;
  --aspect-ratio-pc: 364/485;
}

.aspect-ratio-13x2 {
  --aspect-ratio-sp: 13/2;
  --aspect-ratio-pc: 13/2;
}

.aspect-ratio-mv {
  --aspect-ratio-sp: 750/1100;
  --aspect-ratio-pc: 12/5;
}

.aspect-ratio-original {
  --aspect-ratio-sp: 1;
  --aspect-ratio-pc: 2/1;
}

.aspect-ratio img {
  aspect-ratio: var(--aspect-ratio-sp);
}
@media (min-width: 768px) {
  .aspect-ratio img {
    aspect-ratio: var(--aspect-ratio-pc);
  }
}

/* テーブル関連 */
@media (min-width: 768px) {
  .table-list dl {
    display: table;
    width: 100%;
  }
  .table-list dt,
  .table-list dd {
    display: table-cell;
    vertical-align: middle;
    border-right: 1px solid #bbb;
    border-top: 1px solid #bbb;
    padding: 24px;
  }
  .table-list dt {
    width: 25%;
    text-align: center;
    position: relative;
  }
  .table-list dd {
    display: table-cell;
    width: auto;
    border-right: none;
  }
  .table-list dl:first-child dt,
  .table-list dl:first-child dd {
    border-top: none;
  }
  .table-list.no-v-line dt,
  .table-list.no-v-line dd {
    border-right: none;
  }
  .table-list.time-line dt {
    color: #008571;
  }
  .table-list.time-line dt,
  .table-list.time-line dd {
    vertical-align: top;
    border-top: none;
  }
  .table-list.time-line dt::after {
    content: "";
    height: 8px;
    width: 8px;
    background-color: #008571;
    position: absolute;
    right: -5px;
    top: 32px;
    border-radius: 4px;
  }
  .table-list.time-line dd p {
    margin-top: 8px;
  }
}
@media (max-width: 767.98px) {
  .table-list dt,
  .table-list dd {
    padding: 8px;
  }
  .table-list dt {
    background-color: #DFF2EF;
  }
  .table-list dd {
    padding-bottom: 16px;
  }
  .table-list dl:first-child dt,
  .table-list dl:first-child dd {
    border-top: none;
  }
  .table-list.time-line dt {
    color: #008571;
    background-color: transparent;
    position: relative;
    font-weight: bold;
  }
  .table-list.time-line dt,
  .table-list.time-line dd {
    vertical-align: top;
    border-top: none;
    border-left: 1px solid #bbb;
    padding-left: 16px;
  }
  .table-list.time-line dt::after {
    content: "";
    height: 7px;
    width: 7px;
    background-color: #008571;
    position: absolute;
    left: -4px;
    top: 13px;
    border-radius: 4px;
  }
  .table-list.time-line dd {
    padding-top: 0;
  }
  .table-list.time-line dd p {
    margin: 8px 0 0 8px;
  }
}
/* タイムスケジュール
------------------------------*/
@media (min-width: 992px) {
  .list-schedule-wrap {
    padding: 0 48px;
  }
}
@media (max-width: 767.98px) {
  .list-schedule-wrap {
    padding: 0 10px;
  }
}

.list-schedule {
  --timeWidth: 3em;
  --timePadding: 1em;
  --circleWitdh: 1em;
  --circleborder: 4px;
  --lineWitdh: 2px;
  position: relative;
}
@media (min-width: 768px) {
  .list-schedule {
    --timePadding: 1.5em;
    font-size: 1.6rem;
  }
}
.list-schedule::before {
  content: "";
  display: block;
  width: var(--lineWitdh);
  height: calc(100% - (var(--circleWitdh) + var(--circleborder)) / 2 + 1px);
  background: #008571;
  position: absolute;
  left: 0;
  top: 0.5em;
}
@media (min-width: 768px) {
  .list-schedule::before {
    left: calc(var(--timeWidth) + var(--timePadding));
  }
}
.list-schedule dt {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5em;
  position: relative;
  letter-spacing: 1px;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .list-schedule dt {
    margin-left: calc(var(--circleWitdh) + var(--circleborder) + 0.5em);
  }
}
.list-schedule dt::before {
  content: "";
  display: block;
  width: calc(var(--circleWitdh) + var(--circleborder));
  height: calc(var(--circleWitdh) + var(--circleborder));
  background: #FFFFFF;
  position: absolute;
  left: calc(-1px - (var(--circleWitdh) + var(--circleborder) + 1em));
  top: 1px;
  border-radius: 100%;
  border: var(--circleborder) solid #222;
}
@media (min-width: 768px) {
  .list-schedule dt::before {
    left: calc(var(--timeWidth) + var(--timePadding) + var(--lineWitdh) - (var(--circleWitdh) + var(--circleborder)) / 2 - 1px);
  }
}
@media (min-width: 768px) {
  .list-schedule dt::after {
    position: absolute;
    top: calc(0.5em + var(--circleborder) / 2);
    left: calc(var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder));
    display: inline-block;
    content: "";
    width: 37px;
    height: 1px;
    border-top: 2px dashed #3c3f3f;
  }
}
.list-schedule dt .workstyle-time {
  min-width: var(--timeWidth);
  text-align: right;
}
.list-schedule dt .workstyle-tit {
  width: calc(100% - (var(--timeWidth) + var(--timePadding)));
  font-weight: bold;
}
@media (min-width: 768px) {
  .list-schedule dt .workstyle-tit {
    width: calc(100% - (var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder) + 47px));
  }
}
.list-schedule dd {
  padding-bottom: 2em;
}
@media (max-width: 767.98px) {
  .list-schedule dd {
    margin-left: calc(var(--circleWitdh) + var(--circleborder) + 0.5em);
  }
}
@media (min-width: 768px) {
  .list-schedule dd {
    margin-left: calc(var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder) + 47px);
    width: calc(100% - (var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder) + 47px));
  }
}
.list-schedule dd p {
  font-size: 1.6rem;
}

/* その他 */
a.map-link {
  display: inline-block;
  margin-top: 14px;
  padding: 11.5px 37px;
  background-color: #008571;
  vertical-align: middle;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
}
a.map-link::after {
  content: url(../img/common/icon-blank-white.png);
  margin-left: 10px;
}

.g-map {
  border: 0;
  width: 100%;
  height: 320px;
}

.map-responsive {
  position: relative;
  width: 100%;
}
.map-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media (max-width: 767.98px) {
  .map-responsive::before {
    padding-top: 100%;
  }
}
.map #map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
}

.image-box .image-box-area {
  width: 100%;
  height: 330px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767.98px) {
  .image-box .image-box-area {
    height: 200px;
    background-attachment: scroll;
  }
}
.image-box .image-box-area.n-01 {
  background-image: url(../img/top/bg-ph-001.jpg);
}
.image-box .image-box-area.n-02 {
  background-image: url(../img/top/bg-ph-002.jpg);
}

.sliding-box {
  overflow: hidden;
}
.sliding-box .sliding {
  height: 328px;
  animation: slide 80s linear infinite;
  -webkit-animation: slide 80s linear infinite;
  -moz-animation: slide 80s linear infinite;
  background-repeat: repeat-x;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .sliding-box .sliding {
    height: 200px;
  }
}
.sliding-box .sliding.n-01 {
  background-image: url(../img/top/sliding-ph-001.jpg);
}

@keyframes slide {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 2952px 0;
  }
}
.anchor {
  margin-top: -152px;
  padding-top: 152px;
}
@media (max-width: 991.98px) {
  .anchor {
    margin-top: -150px;
    padding-top: 150px;
  }
}
@media (max-width: 767.98px) {
  .anchor {
    margin-top: -110px;
    padding-top: 110px;
  }
}

.guide-link {
  padding: 24px 15px;
}
@media (min-width: 768px) {
  .guide-link {
    padding: 48px 0;
  }
}
.guide-link .link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 0;
}
.guide-link .link-list > li {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #bbb;
}
.guide-link .link-list > li:last-child {
  border-right: 1px solid #bbb;
}
@media (max-width: 767.98px) {
  .guide-link .link-list > li:nth-child(even):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
.guide-link .link-list > li a {
  position: relative;
  width: 100%;
  padding: 17px 26px 17px 17px;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
}
.guide-link .link-list > li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
}
@media (min-width: 768px) {
  .guide-link .link-list > li a::before {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .guide-link .link-list.col-02 > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 992px) {
  .guide-link .link-list.col-02 > li {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .guide-link .link-list.col-03 > li {
    width: 33.3333333333%;
  }
  .guide-link .link-list.col-03 > li:nth-child(3n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
@media (min-width: 992px) {
  .guide-link .link-list.col-03 > li {
    width: 25%;
  }
  .guide-link .link-list.col-03:has(> li:nth-child(5)) > li {
    width: calc(25% + 1px);
  }
}
@media (min-width: 768px) {
  .guide-link .link-list.col-04 > li {
    width: 25%;
  }
  .guide-link .link-list.col-04 > li:nth-child(4n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .guide-link .link-list.col-05 > li {
    width: 33.3333333333%;
  }
  .guide-link .link-list.col-05 > li:nth-child(3n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .guide-link .link-list.col-05 > li {
    width: 20%;
  }
  .guide-link .link-list.col-05 > li:nth-child(5n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}

/******************************************************************
  9■news
*****************************************************************/
.news-list .news-content {
  padding: 56px 15px;
}
@media (max-width: 767.98px) {
  .news-list .news-content {
    padding: 40px 20px;
  }
}
.news-list ul {
  margin-bottom: 32px;
}
.news-list ul li {
  border-bottom: 1px solid #bbb;
}
.news-list ul li a {
  display: table;
  text-decoration: none !important;
  width: 100%;
  padding: 8px 0;
}
@media (min-width: 768px) {
  .news-list ul li a {
    font-size: 1.8rem;
    height: 96px;
  }
}
@media (max-width: 767.98px) {
  .news-list ul li a {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
@media (any-hover: hover) {
  .news-list ul li a:hover {
    background-color: #DFF2EF;
  }
}
.news-list ul li a .news-date,
.news-list ul li a .news-category,
.news-list ul li a .news-title {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  .news-list ul li a .news-date,
  .news-list ul li a .news-category,
  .news-list ul li a .news-title {
    display: inline-block;
    margin: 4px 0;
  }
}
@media (min-width: 768px) {
  .news-list ul li a .news-date {
    width: 162px;
  }
  .news-list ul li a .news-category {
    width: 168px;
    padding-right: 24px;
  }
  .news-list ul li a .news-category .category-frame {
    width: 100%;
    text-align: center;
  }
}
.news-list ul li a .news-date {
  color: #333;
  text-align: center;
}
@media (max-width: 767.98px) {
  .news-list ul li a .news-date {
    text-align: left;
    margin-right: 24px;
  }
}
.news-list ul li a .news-category {
  margin: 4px 0;
}
.news-list ul li a .news-category .category-frame {
  padding: 0px 8px;
  background-color: #008571;
  color: #fff;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .news-list ul li a .news-title {
    display: block;
  }
}
.news-list ul li a .news-text {
  width: 100%;
  color: #333;
}
@media (min-width: 768px) {
  .news-list ul li a .news-text {
    position: relative;
    display: inline-block;
    padding-right: 56px;
  }
  .news-list ul li a .news-text::before, .news-list ul li a .news-text::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    margin: auto;
    margin-right: 0;
    content: "";
    vertical-align: middle;
    opacity: 1;
  }
  .news-list ul li a .news-text::before {
    right: 24px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #008571;
    border-right: 1px solid #008571;
    transform: rotate(45deg);
  }
}
@media (max-width: 767.98px) {
  .news-list ul li a {
    position: relative;
    display: inline-block;
    padding-right: 24px;
  }
  .news-list ul li a::before, .news-list ul li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
    margin-right: 0;
    content: "";
    vertical-align: middle;
    opacity: 1;
  }
  .news-list ul li a::before {
    right: 8px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #008571;
    border-right: 1px solid #008571;
    transform: rotate(45deg);
  }
}

.table-news-list .news-box {
  width: 100%;
  border-top: 1px solid #bbb;
}
.table-news-list .news-box a {
  display: block;
  padding: 24px 16px;
  text-decoration: none;
  color: #333;
}
@media (max-width: 767.98px) {
  .table-news-list .news-box a {
    padding: 16px 0;
  }
}
.table-news-list .news-box a h3 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 16px;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .table-news-list .news-box a h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.table-news-list .news-box:first-child {
  border-top: none;
}

@media (max-width: 767.98px) {
  .news-info {
    margin-bottom: 8px;
    font-size: 1.6rem;
  }
}
.news-info .news-date {
  color: #333;
  margin-right: 16px;
}
.news-info .category-frame {
  border: 1px solid #008571;
  padding: 0 8px;
  background-color: #008571;
  display: inline-block;
  text-align: center;
  min-width: 8em;
  color: #fff;
}

.news-img {
  max-width: 500px;
}

/******************************************************************
10■faq
*****************************************************************/
.faq-container {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.faq-q {
  display: block;
  position: relative;
  margin: 0;
  padding: 16px 60px 15px;
  background: #DFF2EF;
  cursor: pointer;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .faq-q {
    padding: 8px 35px;
  }
}
.faq-q:not(:first-child) {
  margin-top: 20px;
}
.faq-q:before {
  color: #008571;
  content: "Q";
  top: 18px;
}
@media (max-width: 767.98px) {
  .faq-q:before {
    top: 15px;
  }
}
.faq-q:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #008571;
  border-right: solid 2px #008571;
  transform: rotate(135deg);
}
.faq-q.open {
  color: #333;
  border-radius: 20px 20px 0 0;
}
.faq-q.open::after {
  transform: rotate(-45deg);
  top: 45%;
}
.faq-q.open i {
  color: #333;
}
.faq-q.active {
  background-color: #008571;
  color: white;
}
@media (any-hover: hover) {
  .faq-q:hover i::before, .faq-q:hover i:active {
    color: #333;
  }
  .faq-q:hover {
    color: #008571;
  }
}

.faq-a {
  display: none;
  padding: 30px 20px 30px 60px;
  position: relative;
  background-color: #fff;
  color: #008571;
  border-radius: 0 0 20px 20px;
  border: 1px solid #DFF2EF;
}
@media (max-width: 767.98px) {
  .faq-a {
    padding: 20px 10px 20px 35px;
  }
}
.faq-a:before {
  color: #008571;
  content: "A";
  top: 28px;
}
@media (max-width: 767.98px) {
  .faq-a:before {
    top: 20px;
  }
}

.faq-q:before,
.faq-a:before {
  position: absolute;
  left: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .faq-q:before,
  .faq-a:before {
    left: 10px;
    font-size: 1.8rem;
  }
}

/******************************************************************
  11■free(その他、独自のスタイルは以下に記述してください)
*****************************************************************/
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-pc-40 {
  margin-bottom: 40px;
}

@media (max-width: 767.98px) {
  .mb-sp-0 {
    margin-bottom: 0;
  }
}

.bd-radius {
  border-radius: 20px;
}

@media (max-width: 767.98px) {
  .news-list {
    padding-top: 74px;
  }
}

.local-ttl {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
  color: #008571;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.075em;
}
.local-ttl img {
  height: 30px;
  width: auto;
}
@media (max-width: 767.98px) {
  .local-ttl img {
    height: 22px;
  }
}
@media (max-width: 767.98px) {
  .local-ttl {
    font-size: 2rem;
    padding-left: 10px;
    margin-bottom: 24px;
  }
}
.local-ttl::before, .local-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  height: 2px;
}
@media (max-width: 767.98px) {
  .local-ttl::before, .local-ttl::after {
    bottom: -10px;
  }
}
.local-ttl::before {
  width: 100%;
  background-color: #bbb;
}
.local-ttl::after {
  width: 300px;
  background-color: #008571;
}
@media (max-width: 767.98px) {
  .local-ttl::after {
    width: 100px;
  }
}
@media (max-width: 767.98px) {
  .local-ttl {
    font-size: 2rem;
  }
}

.arrow-circle {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #008571;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .arrow-circle {
    width: 20px;
    height: 20px;
  }
}
.arrow-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-60%, -50%) rotate(45deg);
}
@media (max-width: 767.98px) {
  .arrow-circle::before {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 767.98px) {
  .section-care-manage .contents-ttl img {
    height: 44px;
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .section-care .card-name span {
    letter-spacing: 0;
  }
}

.card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.card-wrap .card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .card-wrap .card-list {
    flex-direction: column;
  }
}
.card-wrap .card {
  flex: 1 1 329px;
  max-width: 329px;
  padding: 32px 24px;
  background: #DFF2EF;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
}
.card-wrap .card:hover {
  color: #008571;
}
@media (max-width: 767.98px) {
  .card-wrap .card {
    flex: 0 0 100%;
  }
}
.card-wrap .card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.card-wrap .card-icon img {
  max-width: 120px;
  height: auto;
}
.card-wrap .card-name {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid #bbb;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-weight: bold;
}
.card-wrap .card-name .arrow-circle {
  position: absolute;
  top: 72%;
  right: 0;
  transform: translateY(-50%);
}
.card-wrap .card-wide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1035px;
  max-width: 100%;
  padding: 32px 24px;
  background: #DFF2EF;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .card-wrap .card-wide {
    width: 682px;
  }
}
@media (max-width: 767.98px) {
  .card-wrap .card-wide {
    display: flex;
    flex-direction: column;
  }
}
.card-wrap .card-wide .card-ph {
  flex-shrink: 0;
  padding-right: 120px;
}
@media (max-width: 1200px) {
  .card-wrap .card-wide .card-ph {
    padding-right: 30px;
  }
}
@media (max-width: 767.98px) {
  .card-wrap .card-wide .card-ph {
    padding-right: 0;
    margin-bottom: 16px;
  }
}
.card-wrap .card-wide .card-ph img {
  display: block;
  width: 333px;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .card-wrap .card-wide .card-ph img {
    width: 100%;
  }
}
.card-wrap .card-wide .card-name {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .card-wrap .card-wide .card-name {
    font-size: 2rem;
  }
}
.card-wrap .card-wide .card-name .txt {
  padding-right: 64px;
}
.card-wrap .card-wide .card-name .arrow-circle {
  top: 50%;
}
@media (max-width: 767.98px) {
  .card-wrap .card-list {
    gap: 20px;
  }
  .card-wrap .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    padding: 16px 15px;
  }
  .card-wrap .card.card-wide {
    flex-direction: column;
  }
  .card-wrap .card-icon {
    flex-shrink: 0;
    margin: 0 8px 0 0;
  }
  .card-wrap .card-icon img {
    width: 50px;
    height: 50px;
  }
  .card-wrap .card-name {
    flex: 1;
    margin: 0;
    padding: 0 36px 0 0;
    border-top: 0;
    text-align: left;
    font-size: 2rem;
  }
  .card-wrap .card-name .arrow-circle {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

.text-lg {
  font-size: 2.4rem;
  line-height: 1.75;
  font-weight: bold;
  letter-spacing: 0.075em;
}
@media (max-width: 767.98px) {
  .text-lg {
    font-size: 2rem;
  }
}

.section-guide {
  position: relative;
  background: #fff;
}
.section-guide .container {
  position: relative;
  z-index: 2;
}
.section-guide .side-deco {
  position: absolute;
  top: -166px;
  z-index: 1;
  width: clamp(150px, 26vw, 500px);
  line-height: 0;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .section-guide .side-deco {
    top: -77px;
  }
}
.section-guide .side-deco img {
  display: block;
  width: 100%;
  height: auto;
}
.section-guide .side-deco.side-deco-left {
  left: 0;
}
.section-guide .side-deco.side-deco-right {
  right: 0;
}
.section-guide .pdf-link-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .section-guide .pdf-link-list {
    flex-direction: column;
    gap: 20px;
  }
}
.section-guide .pdf-link-list .btn-01 {
  margin: 0;
}
.section-guide .pdf-link-list .btn-01 a {
  width: 300px;
  height: 54px;
}
@media (max-width: 767.98px) {
  .section-guide .pdf-link-list .btn-01 a {
    width: 325px;
    max-width: 100%;
    height: 46px;
  }
}
.section-guide .pdf-link-list .btn-01 a::before {
  content: none;
}
.section-guide .pdf-link-list .btn-01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 22px;
  height: 29px;
  background: url("../img/top/icon-pdf.svg") no-repeat center;
  background-size: contain;
}
.section-guide .pdf-link-list .btn-01:last-child a {
  width: 326px;
}
@media (max-width: 767.98px) {
  .section-guide .pdf-link-list .btn-01:last-child a {
    height: 46px;
  }
}
.section-schedule .schedule-table-wrap {
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .section-schedule .schedule-table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-right: -15px;
    padding-right: 15px;
  }
}
.section-schedule .schedule-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
@media (max-width: 1200px) {
  .section-schedule .schedule-table {
    min-width: 1142px;
  }
}
.section-schedule .schedule-table th,
.section-schedule .schedule-table td {
  padding: 24px 0;
  text-align: center;
  background: #fafafa;
}
@media (max-width: 767.98px) {
  .section-schedule .schedule-table th,
  .section-schedule .schedule-table td {
    padding: 20px 0;
  }
}
.section-schedule .schedule-table thead th {
  padding: 20px 0;
  background: #DFF2EF;
  color: #008571;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #bbb;
}
@media (max-width: 767.98px) {
  .section-schedule .schedule-table thead th {
    font-size: 2.4rem;
  }
}
.section-schedule .schedule-table thead th:last-child {
  border-top-right-radius: 20px;
}
.section-schedule .schedule-table thead .schedule-head {
  width: 358px;
  border-top-left-radius: 20px;
}
@media (max-width: 1200px) {
  .section-schedule .schedule-table thead .schedule-head {
    left: 0;
    z-index: 20;
    background: #DFF2EF;
  }
}
@media (max-width: 767.98px) {
  .section-schedule .schedule-table thead .schedule-head {
    width: 264px;
  }
}
.section-schedule .schedule-table tbody tr + tr th,
.section-schedule .schedule-table tbody tr + tr td {
  border-top: 1px solid #bbb;
}
.section-schedule .schedule-table tbody tr:last-child .schedule-time {
  border-bottom-left-radius: 20px;
}
.section-schedule .schedule-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}
.section-schedule .schedule-table tbody .schedule-time {
  width: 358px;
  color: #333;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.075em;
  white-space: nowrap;
  border-right: 1px solid #bbb;
}
@media (max-width: 1200px) {
  .section-schedule .schedule-table tbody .schedule-time {
    width: 245px;
    left: 0;
    z-index: 10;
    background: #fafafa;
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .section-schedule .schedule-table tbody .schedule-time {
    width: 264px;
  }
}
.section-schedule .schedule-table tbody .schedule-time .schedule-uketsuke {
  display: block;
  margin-top: 8px;
  color: #008571;
  font-size: 2rem;
  font-weight: normal;
}
@media (max-width: 767.98px) {
  .section-schedule .schedule-table tbody .schedule-time .schedule-uketsuke {
    font-size: 1.6rem;
    margin-top: 0;
  }
}
.section-schedule .schedule-table tbody td {
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.075em;
}
@media (max-width: 767.98px) {
  .section-schedule .schedule-table tbody td {
    font-size: 1.6rem;
  }
}
.section-schedule .schedule-note {
  padding: 0 30px;
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .section-schedule .schedule-note {
    padding: 0 10px;
    font-size: 1.6rem;
    margin-bottom: 32px;
    letter-spacing: 0.8px;
  }
}
.section-schedule .top-request .request-item {
  padding-left: 30px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .section-schedule .top-request .request-item {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }
}
.section-schedule .top-request .request-item-ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.075em;
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .section-schedule .top-request .request-item-ttl {
    font-size: 1.8rem;
  }
}
.section-schedule .top-request .request-item:last-child {
  margin-bottom: 0;
}
.section-medical {
  padding: 120px 0;
  background: url("../img/top/top-deco-top.png") no-repeat top center, url("../img/top/top-deco-bottom.png") no-repeat bottom center;
  background-size: 100% 15.36vw, 100% 15.36vw;
}
@media (max-width: 767.98px) {
  .section-medical {
    padding: 56px 0;
  }
}
.section-about .about-content .about-lead {
  padding: 0 30px;
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .section-about .about-content .about-lead {
    padding: 0 10px;
    margin-bottom: 32px;
  }
}
.section-about .about-content .about-card-list {
  display: flex;
  gap: 32px;
}
@media (max-width: 991.98px) {
  .section-about .about-content .about-card-list {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .section-about .about-content .about-card-list {
    flex-direction: column;
    gap: 32px;
  }
}
.section-about .about-content .about-card-list > li {
  flex: 1;
  min-width: 0;
}
.section-about .about-content .about-card-list a {
  text-decoration: none;
}
.section-about .about-content .about-card-list .about-card {
  display: flex;
  height: 100%;
  color: #333;
}
.section-about .about-content .about-card-list .about-card:hover {
  color: #008571;
}
@media (max-width: 767.98px) {
  .section-about .about-content .about-card-list .about-card {
    flex-direction: column;
  }
}
.section-about .about-content .about-card-list .about-card .about-card-ph {
  flex: 0 0 60%;
}
@media (max-width: 767.98px) {
  .section-about .about-content .about-card-list .about-card .about-card-ph {
    flex: none;
  }
}
.section-about .about-content .about-card-list .about-card .about-card-ph img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 767.98px) {
  .section-about .about-content .about-card-list .about-card .about-card-ph img {
    border-radius: 20px 20px 0 0;
  }
}
.section-about .about-content .about-card-list .about-card .about-card-name {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  margin: 0;
  background: #fafafa;
  border-radius: 0 20px 20px 0;
  font-size: 2.4rem;
  font-weight: bold;
  transition: color 0.2s;
}
@media screen and (max-width: 1200px) {
  .section-about .about-content .about-card-list .about-card .about-card-name {
    font-size: 2rem;
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .section-about .about-content .about-card-list .about-card .about-card-name {
    border-radius: 0 0 20px 20px;
    padding: 32px 20px;
  }
}
.section-partner {
  padding: 0;
}
.section-partner .wrap {
  background: url(../img/top/medical-deco-left.png) top left no-repeat, url(../img/top/medical-deco-right.png) top right no-repeat;
  background-size: 30vw auto;
  padding: 96px 0 96px;
}
@media (max-width: 767.98px) {
  .section-partner .wrap {
    padding: 56px 0;
  }
}
.section-partner .partner-lead {
  padding: 0 30px;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .section-partner .partner-lead {
    padding: 0 10px;
    text-align: left;
    margin-bottom: 16px;
  }
}
.section-partner .partner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 16px;
  padding: 0 30px;
  margin-bottom: 48px;
  color: #008571;
}
.section-partner .partner-list.partner-list-col {
  grid-template-columns: repeat(1, 1fr);
}
.section-partner .partner-list:not(.partner-list-col) {
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
}
@media (max-width: 767.98px) {
  .section-partner .partner-list:not(.partner-list-col) {
    grid-template-rows: auto;
    grid-auto-flow: row;
  }
}
@media (max-width: 767.98px) {
  .section-partner .partner-list {
    padding: 0 10px;
    margin-bottom: 32px;
  }
}
.section-partner .partner-list li {
  position: relative;
  padding-left: 16px;
  font-size: 2rem;
  line-height: 1.5;
}
.section-partner .partner-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #008571;
  transform: translateY(-50%);
}
.section-partner .partner-list li a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media (max-width: 767.98px) {
  .section-partner .partner-list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 10px;
  }
  .section-partner .partner-list li {
    font-size: 1.8rem;
  }
}
.section-care .card {
  background: #fff;
}
@media (max-width: 767.98px) {
  .section-care .card-name {
    font-size: 1.8rem;
  }
}
.section-care-manage .bg-white {
  padding: 56px 15px;
}
.section-care-manage .card {
  background: #F2DAE0;
}
.section-care-manage .card:hover {
  color: #333;
}
.section-care-manage .arrow-circle {
  background: #E65378;
}
.section-care-manage h3 {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .section-care-manage h3 {
    font-size: 1.8rem;
  }
}
.section-care-manage .card-name {
  text-align: center;
}
@media (max-width: 767.98px) {
  .section-care-manage .card-name {
    font-size: 1.8rem;
  }
}
.section-access {
  background: url(../img/top/access-deco.png) bottom center/contain no-repeat, url(../img/top/access-bg-001.jpg) center top/cover no-repeat;
  padding: 80px 0;
}
@media (max-width: 767.98px) {
  .section-access {
    padding: 40px 0;
  }
}
.section-access .access-content {
  display: flex;
  gap: 66px;
  margin-top: 44px;
}
@media (max-width: 991.98px) {
  .section-access .access-content {
    gap: 8px;
    flex-direction: column;
    margin-top: 34px;
  }
}
.section-access .access-info {
  flex: 1;
  padding: 0 20px;
}
@media (max-width: 767.98px) {
  .section-access .access-info {
    padding: 0 10px;
  }
}
.section-access .access-info .access-addr {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .section-access .access-info .access-addr {
    margin-bottom: 8px;
  }
}
.section-access .access-info .access-tel {
  color: #008571;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .section-access .access-info .access-tel {
    margin-bottom: 24px;
  }
}
.section-access .access-info h3 {
  margin-bottom: 16px;
}
.section-access .access-map-img {
  width: 460px;
}
@media (max-width: 991.98px) {
  .section-access .access-map-img {
    width: 100%;
  }
}
.section-access .access-way {
  margin-bottom: 16px;
}
.section-access .access-way-ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .section-access .access-way-ttl {
    font-size: 1.8rem;
  }
}
.section-access .access-way-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #008571;
}
.section-access .btn-01 {
  margin-top: 24px;
}
.section-access .btn-01 a {
  width: 403px;
}
@media (max-width: 767.98px) {
  .section-access .btn-01 a {
    width: calc(100% - 20px);
    max-width: 100%;
  }
}
.section-access .btn-01 a::after {
  width: 10px;
  height: 10px;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: #fff;
  -webkit-mask: url("../img/top/icon-blank.svg") no-repeat center;
  mask: url("../img/top/icon-blank.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media (max-width: 767.98px) {
  .section-access .btn-01 a::after {
    width: 8px;
    height: 8px;
    right: 20px;
  }
}

.guide-link .link-list > li a {
  color: #000;
  font-size: 1.4rem;
  letter-spacing: 0;
  transition: color 0.2s;
}
.guide-link .link-list > li a::before {
  border-top-color: #008571;
  border-right-color: #008571;
}
@media (any-hover: hover) {
  .guide-link .link-list > li a:hover {
    color: #008571;
  }
}

.title-text {
  line-height: 1.4285;
}

.breadcrumbs {
  line-height: 1.4285;
}
.breadcrumbs ul {
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .breadcrumbs .container {
    scrollbar-width: none;
  }
  .breadcrumbs .container::-webkit-scrollbar {
    display: none;
  }
}

.about-list > li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 20px;
  font-size: 2rem;
  line-height: 1.7;
}
.about-list > li:last-child {
  margin-bottom: 0;
}
.about-list > li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #008571;
  border-radius: 50%;
}

#about .about-sec.section-colored:has(+ .about-sec.section-colored) {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  #about .about-sec > .container > .greeting,
  #about .about-sec > .container > .about-lead,
  #about .about-sec > .container > p,
  #about .about-sec > .container > .about-list,
  #about .about-sec > .container > .about-intro,
  #about .about-sec > .container > .facility-map,
  #about .about-sec > .container > .ph-grid {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 767.98px) {
  #about .about-sec > .container > .greeting,
  #about .about-sec > .container > .about-lead,
  #about .about-sec > .container > p,
  #about .about-sec > .container > .about-list,
  #about .about-sec > .container > .about-intro,
  #about .about-sec > .container > .facility-map,
  #about .about-sec > .container > .ph-grid {
    margin-left: 10px;
    margin-right: 10px;
  }
}
#about .breadcrumbs a,
#about .table-list a[href^="tel:"] {
  color: #333;
}
#about .map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 47px;
  padding: 0;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 1.2px;
}
@media (min-width: 992px) {
  #about .guide-link .link-list.col-05 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 801px;
    max-width: 100%;
    margin: 0 auto;
    gap: 10px 0;
  }
  #about .guide-link .link-list.col-05 > li {
    width: auto;
  }
  #about .guide-link .link-list.col-05 > li:nth-child(1) {
    grid-column: 2/span 2;
  }
  #about .guide-link .link-list.col-05 > li:nth-child(2) {
    grid-column: 4/span 2;
    border-right: 1px solid #bbb;
  }
  #about .guide-link .link-list.col-05 > li:nth-child(3) {
    grid-column: 1/span 2;
    grid-row: 2;
  }
  #about .guide-link .link-list.col-05 > li:nth-child(4) {
    grid-column: 3/span 2;
    grid-row: 2;
  }
  #about .guide-link .link-list.col-05 > li:nth-child(5) {
    grid-column: 5/span 2;
    grid-row: 2;
    border-right: 1px solid #bbb;
  }
}
@media (max-width: 767.98px) {
  #about .contents-ttl img {
    width: auto;
    height: 40px;
  }
}
#about .local-ttl {
  margin-top: 48px;
}
@media (max-width: 767.98px) {
  #about .local-ttl {
    margin-top: 32px;
  }
}
#about .local-ttl:first-child {
  margin-top: 0;
}
#about .greeting {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  #about .greeting {
    display: flex;
    align-items: flex-start;
    gap: 48px;
  }
}
@media (max-width: 767.98px) {
  #about .greeting {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
  }
}
#about .greeting-body {
  flex: 1;
}
#about .greeting-msg {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  #about .greeting-msg {
    margin-bottom: 24px;
    line-height: 1.5;
  }
}
#about .greeting-sign img {
  height: 55px;
  width: auto;
}
@media (max-width: 767.98px) {
  #about .greeting-sign img {
    height: 40px;
  }
}
#about .greeting-ph {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  #about .greeting-ph {
    width: 40%;
    max-width: 364px;
  }
}
@media (max-width: 767.98px) {
  #about .greeting-ph {
    order: -1;
    margin-bottom: 24px;
    text-align: center;
  }
}
#about .greeting-ph img {
  border-radius: 20px;
}
@media (min-width: 768px) {
  #about .greeting-ph img {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  #about .about-list > li {
    margin-bottom: 8px;
    font-size: 1.8rem;
  }
}
#about .profile-box {
  padding: 32px 30px;
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  #about .profile-box {
    padding: 20px;
  }
}
@media (min-width: 768px) {
  #about .profile-box > .about-list {
    margin-left: 30px;
  }
}
#about .profile-cols {
  margin-top: 48px;
}
@media (min-width: 768px) {
  #about .profile-cols {
    display: flex;
    gap: 40px;
  }
  #about .profile-cols > .profile-box {
    flex: 1;
  }
}
@media (max-width: 991.98px) {
  #about .profile-cols .local-ttl::after {
    width: 100px;
  }
}
@media (max-width: 767.98px) {
  #about .profile-cols > .profile-box + .profile-box {
    margin-top: 24px;
  }
}
#about .about-lead {
  margin-bottom: 24px;
  color: #008571;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 767.98px) {
  #about .about-lead {
    margin-bottom: 24px;
    font-size: 2rem;
    text-align: left;
  }
}
#about .about-box {
  padding: 32px 30px;
  margin-bottom: 40px;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  #about .about-box {
    padding: 20px;
    margin-bottom: 24px;
  }
}
#about .about-box > p {
  margin-bottom: 16px;
}
#about .about-box > p:last-child {
  margin-bottom: 0;
}
#about .about-box .about-list {
  margin: 32px 0;
}
#about .about-box-beige {
  background: #f5f5ee;
}
#about .about-box-teal {
  margin-top: 24px;
  background: #DFF2EF;
}
#about .about-box-ttl {
  position: relative;
  padding-left: 28px;
  color: #008571;
  font-size: 1.8rem;
  font-weight: bold;
}
#about .about-box-ttl::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 20px;
  height: 23px;
  background: url("../img/common/icon-point.svg") center/contain no-repeat;
}
#about .facility-map {
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 767.98px) {
  #about .facility-map {
    margin-bottom: 24px;
  }
}
#about .facility-map img {
  width: 100%;
  aspect-ratio: 1082/721;
  border-radius: 20px;
}
#about .about-intro {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  #about .about-intro {
    margin-bottom: 24px;
  }
}
#about .ph-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 768px) {
  #about .ph-grid > .ph-item {
    width: calc((100% - 48px) / 3);
  }
}
@media (max-width: 767.98px) {
  #about .ph-grid {
    gap: 20px;
  }
  #about .ph-grid > .ph-item {
    width: 100%;
  }
}
#about .ph-item-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
#about .ph-item-cap {
  margin-top: 16px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767.98px) {
  #about .ph-item-cap {
    font-size: 1.6rem;
  }
}
#about .table-list {
  font-size: 1.6rem;
  line-height: 1.875;
}
#about .table-list p {
  line-height: inherit;
}
@media (min-width: 768px) {
  #about .equip-list {
    -moz-column-count: 3;
         column-count: 3;
  }
}
#about .equip-list > li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

#guide .guide-sec:not(.section-colored):has(+ .guide-sec:not(.section-colored)),
#care .guide-sec:not(.section-colored):has(+ .guide-sec:not(.section-colored)) {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  #guide .guide-sec > .container > p,
  #guide .guide-sec > .container > .guide-label,
  #guide .guide-sec > .container > .care-lead,
  #guide .guide-sec > .container > .exam-imgs,
  #guide .guide-sec > .container > .program,
  #guide .guide-sec > .container > .about-list,
  #guide .guide-sec > .container > .item-card-list,
  #guide .guide-sec > .container > .def-list,
  #care .guide-sec > .container > p,
  #care .guide-sec > .container > .guide-label,
  #care .guide-sec > .container > .care-lead,
  #care .guide-sec > .container > .exam-imgs,
  #care .guide-sec > .container > .program,
  #care .guide-sec > .container > .about-list,
  #care .guide-sec > .container > .item-card-list,
  #care .guide-sec > .container > .def-list {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 767.98px) {
  #guide .guide-sec > .container > p,
  #guide .guide-sec > .container > .guide-label,
  #guide .guide-sec > .container > .care-lead,
  #guide .guide-sec > .container > .exam-imgs,
  #guide .guide-sec > .container > .program,
  #guide .guide-sec > .container > .about-list,
  #guide .guide-sec > .container > .item-card-list,
  #guide .guide-sec > .container > .def-list,
  #care .guide-sec > .container > p,
  #care .guide-sec > .container > .guide-label,
  #care .guide-sec > .container > .care-lead,
  #care .guide-sec > .container > .exam-imgs,
  #care .guide-sec > .container > .program,
  #care .guide-sec > .container > .about-list,
  #care .guide-sec > .container > .item-card-list,
  #care .guide-sec > .container > .def-list {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (min-width: 768px) {
  #guide .guide-sec > .container > .flow-list,
  #care .guide-sec > .container > .flow-list {
    margin-left: 36px;
    margin-right: 36px;
  }
}
@media (max-width: 767.98px) {
  #guide .guide-sec > .container > .flow-list,
  #care .guide-sec > .container > .flow-list {
    margin-left: 10px;
    margin-right: 10px;
  }
}
#guide .breadcrumbs a,
#care .breadcrumbs a {
  color: #333;
}
@media (max-width: 991.98px) {
  #guide .guide-link .link-list.col-07 > li:nth-child(even):not(:last-child),
  #care .guide-link .link-list.col-07 > li:nth-child(even):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
@media (min-width: 992px) {
  #guide .guide-link .link-list.col-07,
  #care .guide-link .link-list.col-07 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    width: 1068px;
    max-width: 100%;
    margin: 0 auto;
    gap: 10px 0;
  }
  #guide .guide-link .link-list.col-07 > li,
  #care .guide-link .link-list.col-07 > li {
    width: auto;
  }
  #guide .guide-link .link-list.col-07 > li:nth-child(1),
  #care .guide-link .link-list.col-07 > li:nth-child(1) {
    grid-column: 2/span 2;
  }
  #guide .guide-link .link-list.col-07 > li:nth-child(2),
  #care .guide-link .link-list.col-07 > li:nth-child(2) {
    grid-column: 4/span 2;
  }
  #guide .guide-link .link-list.col-07 > li:nth-child(3),
  #care .guide-link .link-list.col-07 > li:nth-child(3) {
    grid-column: 6/span 2;
    border-right: 1px solid #bbb;
  }
  #guide .guide-link .link-list.col-07 > li:nth-child(4),
  #care .guide-link .link-list.col-07 > li:nth-child(4) {
    grid-column: 1/span 2;
    grid-row: 2;
  }
  #guide .guide-link .link-list.col-07 > li:nth-child(5),
  #care .guide-link .link-list.col-07 > li:nth-child(5) {
    grid-column: 3/span 2;
    grid-row: 2;
  }
  #guide .guide-link .link-list.col-07 > li:nth-child(6),
  #care .guide-link .link-list.col-07 > li:nth-child(6) {
    grid-column: 5/span 2;
    grid-row: 2;
  }
  #guide .guide-link .link-list.col-07 > li:nth-child(7),
  #care .guide-link .link-list.col-07 > li:nth-child(7) {
    grid-column: 7/span 2;
    grid-row: 2;
    border-right: 1px solid #bbb;
  }
}
#guide .guide-ttl,
#care .guide-ttl {
  margin-bottom: 48px;
  text-align: center;
}
@media (max-width: 767.98px) {
  #guide .guide-ttl,
  #care .guide-ttl {
    margin-bottom: 32px;
  }
}
#guide .guide-ttl img,
#care .guide-ttl img {
  width: auto;
  height: 63px;
}
@media (max-width: 767.98px) {
  #guide .guide-ttl img,
  #care .guide-ttl img {
    height: 40px;
    max-width: 100%;
  }
}
#guide .local-ttl,
#care .local-ttl {
  margin-top: 48px;
  margin-bottom: 38px;
}
#guide .local-ttl:first-child,
#care .local-ttl:first-child {
  margin-top: 0;
}
@media (max-width: 767.98px) {
  #guide .local-ttl,
  #care .local-ttl {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
#guide .guide-intro,
#care .guide-intro {
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  #guide .guide-intro,
  #care .guide-intro {
    margin-bottom: 32px;
  }
}
#guide .guide-sec p,
#care .guide-sec p {
  line-height: 1.78;
}
#guide .guide-sec .guide-label,
#care .guide-sec .guide-label {
  margin-top: 24px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  #guide .guide-sec .guide-label,
  #care .guide-sec .guide-label {
    margin-top: 16px;
    font-size: 1.7rem;
  }
}
#guide .guide-label-note,
#care .guide-label-note {
  font-weight: 500;
}
#guide .local-ttl + .guide-label,
#care .local-ttl + .guide-label {
  margin-top: 0;
}
#guide .guide-sec .guide-label-thin,
#care .guide-sec .guide-label-thin {
  position: relative;
  margin-top: 16px;
  padding-left: 16px;
  font-weight: 500;
  line-height: 1.7;
}
#guide .guide-sec .guide-label-thin::before,
#care .guide-sec .guide-label-thin::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #008571;
}
@media (max-width: 767.98px) {
  #guide .about-list > li,
  #care .about-list > li {
    margin-bottom: 8px;
    font-size: 1.8rem;
  }
}
#guide .flow-list .flow-item,
#care .flow-list .flow-item {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: 20px;
}
#guide .flow-list .flow-item + .flow-item,
#care .flow-list .flow-item + .flow-item {
  margin-top: 55px;
}
#guide .flow-list .flow-item:not(:last-child)::after,
#care .flow-list .flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 160.5px;
  bottom: -35px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #008571;
}
@media (max-width: 767.98px) {
  #guide .flow-list .flow-item,
  #care .flow-list .flow-item {
    flex-direction: column;
  }
  #guide .flow-list .flow-item + .flow-item,
  #care .flow-list .flow-item + .flow-item {
    margin-top: 32px;
  }
  #guide .flow-list .flow-item:not(:last-child)::after,
  #care .flow-list .flow-item:not(:last-child)::after {
    left: 50%;
    bottom: -24px;
  }
}
#guide .flow-list .flow-num,
#care .flow-list .flow-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 321px;
  padding: 20px 15px;
  background: #008571;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 767.98px) {
  #guide .flow-list .flow-num,
  #care .flow-list .flow-num {
    width: 100%;
    padding: 10px 20px;
    font-size: 1.8rem;
    border-radius: 20px 20px 0 0;
  }
}
#guide .flow-list .flow-txt,
#care .flow-list .flow-txt {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 20px 15px;
  background: #fff;
  font-size: 1.8rem;
  line-height: 1.6;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767.98px) {
  #guide .flow-list .flow-txt,
  #care .flow-list .flow-txt {
    padding: 16px 20px;
    font-size: 1.6rem;
    border-radius: 0 0 20px 20px;
  }
}
#guide .exam-imgs,
#care .exam-imgs {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
@media (max-width: 767.98px) {
  #guide .exam-imgs,
  #care .exam-imgs {
    flex-direction: column;
    gap: 16px;
  }
}
#guide .exam-imgs > li,
#care .exam-imgs > li {
  width: calc((100% - 40px) / 2);
}
@media (max-width: 767.98px) {
  #guide .exam-imgs > li,
  #care .exam-imgs > li {
    width: 100%;
  }
}
#guide .exam-imgs img,
#care .exam-imgs img {
  width: 100%;
  aspect-ratio: 521/347;
  border-radius: 20px;
}
#guide .program,
#care .program {
  margin-top: 24px;
}
@media (min-width: 992px) {
  #guide .program,
  #care .program {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }
}
#guide .program .program-ph,
#care .program .program-ph {
  flex-shrink: 0;
}
@media (min-width: 992px) {
  #guide .program .program-ph,
  #care .program .program-ph {
    width: 40%;
    max-width: 364px;
  }
}
@media (max-width: 991.98px) {
  #guide .program .program-ph,
  #care .program .program-ph {
    margin-bottom: 16px;
    text-align: center;
  }
}
#guide .program .program-ph img,
#care .program .program-ph img {
  width: 100%;
  aspect-ratio: 364/243;
  border-radius: 20px;
}
#guide .program .program-txt,
#care .program .program-txt {
  flex: 1;
}
#guide .info-box,
#care .info-box {
  padding: 32px 30px;
  margin-top: 48px;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  #guide .info-box,
  #care .info-box {
    padding: 20px;
  }
}
#guide .info-box + .info-box,
#care .info-box + .info-box {
  margin-top: 48px;
}
#guide .info-box-beige,
#care .info-box-beige {
  background: #f5f5ee;
  text-align: center;
}
#guide .info-box-teal,
#care .info-box-teal {
  background: #DFF2EF;
}
#guide .guide-sec .info-box-txt,
#care .guide-sec .info-box-txt {
  font-size: 2rem;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  #guide .guide-sec .info-box-txt,
  #care .guide-sec .info-box-txt {
    font-size: 1.6rem;
  }
}
#guide .info-box-teal .info-box-txt,
#care .info-box-teal .info-box-txt {
  text-align: center;
}
#guide .info-box-tel,
#care .info-box-tel {
  margin-top: 32px;
  color: #008571;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767.98px) {
  #guide .info-box-tel,
  #care .info-box-tel {
    font-size: 2rem;
  }
}
#guide .info-box-tel a,
#care .info-box-tel a {
  text-decoration: none;
}
#guide .rehab-btns,
#care .rehab-btns {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
@media (max-width: 767.98px) {
  #guide .rehab-btns,
  #care .rehab-btns {
    flex-direction: column;
    gap: 12px;
  }
}
#guide .rehab-btns > li,
#care .rehab-btns > li {
  flex: 1;
}
#guide .rehab-btns a,
#care .rehab-btns a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 4px 48px;
  background: #fff;
  border: 2px solid #008571;
  border-radius: 27px;
  color: #008571;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 1.8px;
  text-align: center;
  text-decoration: none;
  line-height: 1.75;
}
#guide .rehab-btns a:hover,
#care .rehab-btns a:hover {
  background: #DFF2EF;
  opacity: 1;
}
@media (max-width: 767.98px) {
  #guide .rehab-btns a,
  #care .rehab-btns a {
    padding: 12px 44px;
    font-size: 2rem;
  }
}
#guide .rehab-btns .arrow-circle,
#care .rehab-btns .arrow-circle {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
#guide .item-card-list,
#care .item-card-list {
  margin-top: 24px;
}
#guide .item-card-list .item-card,
#care .item-card-list .item-card {
  display: flex;
  align-items: center;
  padding: 32px 46px;
  background: #DFF2EF;
  border-radius: 20px;
}
#guide .item-card-list .item-card + .item-card,
#care .item-card-list .item-card + .item-card {
  margin-top: 32px;
}
@media (max-width: 767.98px) {
  #guide .item-card-list .item-card,
  #care .item-card-list .item-card {
    padding: 20px;
  }
}
#guide .item-card-list .item-card-icon,
#care .item-card-list .item-card-icon {
  flex-shrink: 0;
  width: 120px;
  margin-right: 30px;
}
@media (max-width: 767.98px) {
  #guide .item-card-list .item-card-icon,
  #care .item-card-list .item-card-icon {
    width: 64px;
    margin-right: 16px;
  }
}
#guide .item-card-list .item-card-icon img,
#care .item-card-list .item-card-icon img {
  width: 100%;
}
#guide .item-card-list .item-card-ttl,
#care .item-card-list .item-card-ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  #guide .item-card-list .item-card-ttl,
  #care .item-card-list .item-card-ttl {
    font-size: 1.7rem;
  }
}
#guide .item-card-list .item-card-txt,
#care .item-card-list .item-card-txt {
  margin-top: 8px;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  #guide .item-card-list .item-card-txt,
  #care .item-card-list .item-card-txt {
    font-size: 1.6rem;
  }
}
#guide .def-list,
#care .def-list {
  margin-top: 8px;
}
#guide .def-list dt,
#care .def-list dt {
  position: relative;
  padding-left: 16px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767.98px) {
  #guide .def-list dt,
  #care .def-list dt {
    font-size: 1.7rem;
  }
}
#guide .def-list dt::before,
#care .def-list dt::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #008571;
  border-radius: 50%;
}
#guide .def-list dd,
#care .def-list dd {
  margin: 0 0 16px;
  font-size: 1.8rem;
  line-height: 1.6;
}
#guide .def-list dd:last-child,
#care .def-list dd:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #guide .def-list dd,
  #care .def-list dd {
    font-size: 1.6rem;
  }
}

#care .guide-sec .care-lead {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 767.98px) {
  #care .guide-sec .care-lead {
    font-size: 2rem;
  }
}
#care .care-lead + .local-ttl {
  margin-top: 24px;
}
#care .guide-label + p {
  margin-top: 8px;
}
#care .guide-sec .care-time {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  #care .guide-sec .care-time {
    font-size: 1.8rem;
  }
}
#care .care-time + .care-time {
  margin-top: 24px;
}
@media (max-width: 767.98px) {
  #care .care-time + .care-time {
    margin-top: 16px;
  }
}
#care .care-list-lead {
  margin-bottom: 24px;
}
#care .care-list-lead-sm {
  margin-bottom: 8px;
}
#care .care-list-lead-lg {
  margin-bottom: 32px;
}
#care .care-def-list .care-def-key {
  font-weight: bold;
}
#care .program-ph img {
  -o-object-fit: cover;
     object-fit: cover;
}
#care .care-pdf-list {
  margin-top: 16px;
}
#care .care-pdf-list a {
  color: #008571;
  text-decoration: underline;
}
#care .care-contact {
  margin-top: 32px;
  margin-bottom: 40px;
  padding: 32px 30px;
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  #care .care-contact {
    padding: 24px 20px;
  }
}
#care .care-contact .local-ttl {
  margin-top: 0;
}
#care .care-contact .care-contact-item + .care-contact-item {
  margin-top: 16px;
}
#care .care-contact .care-contact-item > p {
  margin: 0;
}
#care .care-contact .care-contact-item > p + p {
  margin-top: 8px;
}
#care .care-contact .care-contact-label {
  position: relative;
  padding-left: 16px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}
#care .care-contact .care-contact-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #008571;
}
@media (max-width: 767.98px) {
  #care .care-contact .care-contact-label {
    font-size: 1.7rem;
  }
}
#care .care-contact .care-contact-row {
  font-size: 1.8rem;
  line-height: 1.78;
}
@media (max-width: 767.98px) {
  #care .care-contact .care-contact-row {
    font-size: 1.6rem;
  }
}
#care .care-contact .care-contact-row a {
  color: #333;
  text-decoration: none;
}
#care .care-contact .care-contact-key {
  font-weight: bold;
}
#care .care-photo-band {
  height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  #care .care-photo-band {
    background-attachment: fixed;
  }
}
@media (max-width: 767.98px) {
  #care .care-photo-band {
    height: 160px;
  }
}
#care .care-flow {
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 767.98px) {
  #care .care-flow {
    margin-top: 24px;
  }
}
#care .care-flow img {
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
}/*# sourceMappingURL=common.css.map */