@charset "UTF-8";
/* ------------------------------ */
/* リセットCSS */
/* ------------------------------ */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  *font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
  /* ヘッダー分高さ調整 */
  /* padding-top: 72px; */
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}
/* ------------------------------ */
/* 全体のCSS */
/* ------------------------------ */
html {
  color: #333333;
  background: #fff;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333333;
}
.main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 72px 73px 0;
  box-sizing: content-box; /* ← padding込みでmax-widthを守る */
}
@media (max-width: 768px) {
  .main {
    padding: 48px 18px 0;
  }
}

/* h2 */
.title-h2 {
  text-align: left;
}
.title-h2 h2 {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #007e5b;
  font-size: 45px;
  letter-spacing: 0.02em;
  line-height: 1.51;
}
.title-h2 span {
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .title-h2 h2 {
    font-size: 30px;
  }
  .title-h2 span {
    font-size: 16px;
  }
}
/* h3 下線 */
.title-h3 {
  padding-bottom: 10px;
  border-bottom: 2px solid #e9f4f1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .title-h3 {
    padding-bottom: 5px;
  }
}
.title-h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #007e5b;
}
.title-h3 h3 {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .title-h3 h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0px;
  }
}

/* button green */
.button-view {
  background-color: #007e5b;
  color: #fff;
  height: 62px;
  width: 335px;
  border-radius: 80px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.777;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 45px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .button-view {
    width: 262px;
    height: 50px;
    font-size: 16px;
  }
}
.button-view:hover {
  background-color: #fff;
  border: 1px solid #007e5b;
  color: #007e5b;
}
.button-view p {
  width: 100%;
}
.button-view-chevron-wrap {
  position: absolute;
  right: 18px;
}
.button-view-chevron-wrap.reverse {
  left: 18px;
  right: initial;
}
.button-view-chevron-wrap.reverse .chevron {
  transform: rotate(180deg);
}
.button-view-chevron {
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.button-view-chevron svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 2px;
  margin: auto;
}
.button-view:hover .button-view-chevron {
  background-color: #007e5b;
}
.button-view:hover path {
  fill: #fff;
}

/* chevron */
.chevron-wrap {
  position: absolute;
  right: 18px;
}
@media screen and (max-width: 768px) {
  .chevron-wrap {
    right: 12px;
  }
}
.chevron {
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.chevron svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 2px;
  margin: auto;
}

/* breadcrumbs */
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}
.currentlocation {
  color: #007e5b;
}

/* 下層ページ */
.inner {
  max-width: 1220px;
  margin: 0 auto;
}
.pagetitlearea {
  max-width: 1220px;
  margin: 0 auto;
}
.pagetitle {
  text-align: left;
  padding: 30px 0;
  border-bottom: solid 2px #e9f4f1;
}
@media screen and (max-width: 768px) {
  .pagetitle {
    padding: 20px 0;
  }
}
.page-inner {
  max-width: 900px;
  margin: 52px auto 120px;
}
@media screen and (max-width: 768px) {
  .page-inner {
    margin: 30px auto 100px;
  }
}
/* ------------------------------ */
/* HEADER */
/* ------------------------------ */

.header {
  background-color: #ffffff;
  border-bottom: solid 2px #007e5b;
  position: fixed;
  z-index: 999999;
  width: 100vw;
}
.header-inner {
  padding: 0 26px 0 40px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header-inner {
    height: 46px;
  }
}
.header-nav {
  height: inherit;
}
.header-logo {
  width: auto;
  height: 26px;
  object-fit: contain;
}
.header-logo img {
  object-fit: contain;
  width: auto;
}
@media (max-width: 768px) {
  .header-logo {
    height: 20px;
  }
}
.header-list {
  display: flex;
  align-items: center;
  font-weight: 500;
  height: 100%;
}
.header-item {
  height: 100%;
  width: 100%;
  color: #333333;
  text-decoration: none;
  position: relative; /* ← これが重要！ */
}
@media (max-width: 768px) {
  .header-item {
    border-bottom: 1px solid #eee;
    height: auto;
    background-color: #fff;
  }
}
.header-item.home {
  display: none;
}
@media (max-width: 768px) {
  .header-item.home {
    display: block;
  }
}
.header-healthcare-wrap {
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}
.header-item.healthcare a {
  display: flex;
/*
  flex-direction: column;
*/
  text-align: center;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header-item.healthcare a {
    align-items: flex-start;
    width: 100%;
  }
}
.header-item.healthcare span {
  font-size: 10px;
  margin-top: -4px;
}
@media (max-width: 768px) {
  .header-item.healthcare span {
    margin-top: -8px;
  }
}
.header-item.healthcare p {
  font-size: 14px;
  line-height: 1.785;
}
.header-item.healthcare div {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .header-item.healthcare div {
    justify-content: flex-start;
  }
}
.header-item:hover {
  background-color: #007e5b;
  color: #fff;
}
@media (max-width: 768px) {
  .header-item:hover {
    color: #333;
  }
}
.header-item a {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 100%;
  width: max-content;
  padding: 0 15px;
}
.header-item.healthcare:hover path {
  fill: #fff;
}
@media (max-width: 768px) {
  .header-item.healthcare:hover path {
    fill: #333;
  }
}
.megaMenu {
  background-color: #007e5b;
  border-radius: 5px;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: calc(100% + 10px); /* ← 見た目の隙間（10px） */
  visibility: hidden;
  z-index: 9999; /* ← クリックできない場合の保険 */
}
.megaMenu-list {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.megaMenu-list a {
  padding: 6px 14px;
  width: 156px;
}
.megaMenu-list a:hover {
  background-color: rgba(
    255,
    255,
    255,
    0.15
  ); /* フィルターを15%の透明度で重ねる */
}
.megaMenu-item {
  display: flex;
  justify-content: left;
  line-height: 2;
}
/* 👇 この「透明ブリッジ」がポイント！ */
.header-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px; /* ← メガメニューまでの隙間と同じ距離 */
  background: transparent;
}

/* メニューをhoverした時のスタイル */
.header-item:hover .megaMenu {
  opacity: 1;
  visibility: visible;
}

/* ハンバーガーメニュー */
/* ハンバーガー初期非表示（PC用） */
.hamburger {
  display: none;
  padding: initial;
  margin: initial;
}

/* --- スマホ（768px以下） --- */
@media (max-width: 768px) {
  .header-inner {
    height: 46px;
    padding: 0 18px;
  }

  .hamburger {
    display: block;
    width: 21px;
    height: 12px;
    position: relative;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #666;
    transition: 0.3s;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 5px;
  }
  .hamburger span:nth-child(3) {
    bottom: 0;
  }

  /* ×に変形 */
  .hamburger.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  /* ナビゲーション非表示 */
  .header-nav {
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    height: calc(100vh - 48px);
    /* background: #333333; */
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  /* 開いたとき */
  .header-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header-list {
    flex-direction: column;
    align-items: flex-start;
    background-color: rgb(51, 51, 51, 0.3);
  }

  .header-item a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    line-height: 2;
    background-color: #fff;
  }

  /* PC時のhover効果などをOFF */
  .header-item:hover {
    background: #fff;
  }
  .megaMenu {
    display: none;
  }
}

.header-list details {
  display: none;
  background-color: #fff;
}
@media (max-width: 768px) {
  .header-list details {
    display: block;
    padding: 16px 20px;
  }
  .header-item.about {
    display: none;
  }
}

/* ------------------------------ */
/* 別ウィンドウリンク */
/* ------------------------------ */
.tou-link {
  align-items: center;
  white-space: nowrap;
  display: inline-flex;

  text-decoration: underline;
}
.tou-link img {
  width: 10px;
  height: 10px;
  margin-left: 5px;
  /* 外部ファイルsvg カラー変更 */
  filter: invert(34%) sepia(65%) saturate(947%) hue-rotate(124deg)
    brightness(90%) contrast(103%);
}
.tou-link svg {
  margin-left: 5px;
}

.tou-link a {
  display: inline-flex;
  align-items: center;
}
/* ------------------------------ */
/* お問い合わせフォーム */
/* ------------------------------ */
/* ステップナビゲーション */
.step-nav {
  display: flex;
  gap: 100px;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .step-nav {
    gap: 58px;
  }
}
.step-nav-01,
.step-nav-02,
.step-nav-03 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  color: #007e5b;
  z-index: 1;
}
.step-nav-no {
  font-size: 22px;
  line-height: 2;
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .step-nav-no {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
}
.step-nav-no p {
  text-align: center;
}
.step-nav-statement {
  font-weight: 500;
  line-height: 1.5;
  color: #6f6f6f;
}
@media screen and (max-width: 768px) {
  .step-nav-statement {
    font-size: 14px;
    width: max-content;
  }
}

/* 点線 */
.step-nav-02 {
  position: relative;
}
.step-nav-02::after {
  content: "";
  position: absolute;
  border-bottom: 2px dotted #6f6f6f;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .step-nav-02::after {
    width: 192px;
    top: 20px;
  }
}
/* ------------------------------ */
/* FOOTER */
/* ------------------------------ */
.footer {
  background-color: #ffffff;
  border-top: solid 2px #f8f8f8;
  position: relative;
}
.footer-nav {
  border-left: solid 2px #f8f8f8;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .footer-nav {
    border-left: none;
    padding-left: 0;
    margin-bottom: 20px;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 73px 35px;
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-inner {
    display: block;
    padding: 0 18px 20px;
  }
}

.footer-logo img {
  width: auto;
  height: 26px;
  object-fit: contain;
}

.footer-list {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 500;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .footer-list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}

.footer-item {
  color: #333333;
  text-decoration: none;
  line-height: 26px;
  width: max-content;
}
@media (max-width: 768px) {
  .footer-item {
    line-height: 2;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid #e3e3e3;
  }
}

.copyright {
  background-color: #6f6f6f;
  color: #fff;
  font-size: 12px;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 13px;
    line-height: 1.538;
  }
}

.copyright-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 10px 73px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .copyright-inner {
    padding: 16px 18px;
    display: grid;
    gap: 16px;
  }
}
.copyright-nav {
  display: flex;
  gap: 20px;
}

.footer-address {
  font-size: 14px;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer address {
  line-height: 1.78;
}
.footer-address-ttl {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6f6f6f;
  font-weight: 500;
  margin-bottom: 2px;
}
.footer-address-ttl span {
  font-size: 12px;
  background-color: #e9f4f1;
  line-height: 18px;
  border-radius: 40px;
  padding: 0 8px;
  font-weight: initial;
}

.footernav-about-li {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 14px;
  gap: 12px;
  margin-top: 12px;
  font-weight: initial;
}

.footer-banner {
  width: 120px;
  position: absolute;
  bottom: 0;
  right: 73px;
  bottom: 35px;
}
@media (max-width: 768px) {
  .footer-banner {
    position: initial;
  }
  .footer-banner img {
    width: 120px;
  }
}

/* .footer-chevron-outer {
  position: absolute;
  right: 30px;
  top: -25px;
}
.footer-chevron-wrap {
  width: 50px;
  height: 50px;
  background-color: #007e5b;
  border-radius: 50%;
  position: relative;
}
.footer-chevron {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
} */

@media (max-width: 768px) {
  .footer-info {
    display: none;
  }
}

/* アコーディオン */
/* PC 非表示 */
@media (min-width: 769px) {
  .accordion_title svg {
    display: none;
  }
  .accordion {
    display: none;
  }
}
/* SP 表示 */
@media (max-width: 768px) {
  .footer-about {
    display: none;
  }
  .accordion {
    margin-inline: 0;
    display: block;
  }
  .accordion_title {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  summary.accordion_title::-webkit-details-marker {
    display: none;
  }
  .accordion::details-content {
    opacity: 0;
    block-size: 0;
    transition: 0.3s;
    transition-property: display, opacity, block-size, padding;
    transition-behavior: allow-discrete;
    line-height: 1.6em;
  }
  .accordion[open]::details-content {
    opacity: 1;
    block-size: auto;
    block-size: calc-size(auto, size);
  }
  .accordion[open] .footer-accordion-cvrnbg {
    fill: #007e5b;
  }
  .accordion[open] .accordion_title svg {
    transform: rotate(180deg);
  }
}

@media (max-width: 768px) {
}
/* ------------------------------ */
/* PAGETOP BUTTON */
/* ------------------------------ */
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  cursor: pointer;
  transition: 0.3s;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 15px;
    bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .pagetop svg {
    width: 40px;
    height: 40px;
  }
}

/*このクラスが付与されると表示する*/
.active {
  opacity: 1;
  visibility: visible;
}
/*このクラスが付与されると表示する*/
.absolute {
  position: absolute;
  top: -25px;
  bottom: auto;
}
@media screen and (max-width: 768px) {
  .absolute {
    top: -20px !important;
  }
}

.box {
  opacity: 0; /* 初期値は透明にしておく */
  transition: 0.8s; /* 動くスピードを0.5秒に指定 */
  position: relative; /* 相対位置の設定 */
  top: 50px; /* 事前に下に50pxずらしておく */
}

/* ------------------------------ */
/* ABOUT CTA */
/* ------------------------------ */
.cta {
  padding: 60px 0 83px;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (max-width: 768px) {
  .cta {
    flex-direction: column;
    padding: 30px 18px 50px;
    gap: 10px;
  }
}

.cta-about,
.cta-company {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 900px;
  width: 435px;
  height: 180px;
  background-size: cover;
  background-position: center;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .cta-about,
  .cta-company {
    width: 100%;
    height: 100px;
    border-radius: 10px;
  }
}

.cta-about p,
.cta-company p {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .cta-about p,
  .cta-company p {
    font-size: 20px;
    line-height: 2;
  }
}
.cta-about {
  background-image: url(../../assets/images/index/cta-about.png);
  position: relative;
}
.cta-company {
  background-image: url(../../assets/images/index/cta-company.png);
  position: relative;
}
.cta-about::before,
.cta-company::before {
  content: ""; /* 必須 */
  position: absolute; /* 親要素内で絶対配置 */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 9px;
  background-color: rgba(
    255,
    255,
    255,
    0.7
  ); /* フィルターを50%の透明度で重ねる */
}
.cta-about:hover:before,
.cta-company:hover:before {
  background-color: rgba(255, 255, 255, 0.9);
}

.cta p,
.cta svg {
  z-index: 0;
}

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