@charset "utf-8";

/* font設定 (NotoSansJP,サブセット化済 YakuHanJPはfunction.phpで読み込み)
---------------------------------------------------------------- */
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Regular.woff) format('woff');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Bold.woff) format('woff');
  font-weight: bold;
  font-display: swap;
}

/* 以下不必要なら削除すること */
/* @font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Light.woff) format('woff');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Medium.woff) format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-SemiBold.woff) format('woff');
  font-weight: 600;
  font-display: swap;
} */
body {
  font-family: YakuHanJP, 'noto-sans-jp', sans-serif;
}

/* title
---------------------------------------------------------------- */
/* 汎用見出し */
.ttl-01 {
  font-size: var(--fs-ttl-l);
  background: var(--cl-base);
  color: var(--black);
  border-radius: 8px;
  padding: 0.5em 1em;
  margin-bottom: 1.5em;
}
.ttl-02 {
  position: relative;
  font-size: var(--fs-ttl-m);
  padding-left: 0.8em;
  margin: 0.5em 0 1.5em;
}
.ttl-02::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 4px;
  height: 150%;
  background: var(--cl-main);
  border-radius: 8px;
  transform: translateY(-50%);
}
.ttl-03 {
  position: relative;
  font-size: var(--fs-ttl-m);
  padding: 0 0 0.5em;
  margin-bottom: 1.5em;
}
.ttl-03::before {
  position: absolute;
  content: '';
  display: block;
  background: var(--gray);
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  border-radius: 8px;
}
.ttl-03::after {
  position: absolute;
  content: '';
  display: block;
  background: var(--cl-main);
  left: 0;
  bottom: -4px;
  width: 25%;
  height: 4px;
  border-radius: 8px 0 0 8px;
}
.ttl-04 {
  font-size: var(--fs-ttl-s);
  border-bottom: solid 2px var(--cl-main);
  padding-bottom: 0.2em;
  margin-bottom: 1em;
}
.ttl-05 {
  font-size: var(--fs-ttl-xs);
  color: var(--cl-main);
  margin-bottom: 1em;
}

/* text
---------------------------------------------------------------- */
.text-lead {
  font-size: var(--fs-ttl-s);
  font-weight: bold;
}

/* btn
---------------------------------------------------------------- */
.btn {
  display: inline-block;
  position: relative;
  color: #333;
  font-weight: bold;
  text-align: center;
  padding: 1em;
  width: 100%;
  border-radius: var(--btn-br);
}
/* メインボタン */
/* .btn-main {
  background: var(--cl-main);
  color: var(--white);
} */
.btn-main {
  display: flex;
}
.wp-block-buttons.btn-main > div :where(a,div){
  max-width: none;

}
.btn-main > div :where(a,div){
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  font-size: var(--fs-default);
  font-weight: bold;
  background-color: var(--cl-main);
  color: var(--white)!important;
  min-width: 200px!important;
  border-radius: var(--btn-br);
  text-decoration: none!important;
}
.btn-main > div :where(a,div):after{
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 10px;
  background: url(../images/block/block-arrow.svg) center center / contain no-repeat;
}
.btn-main.back > div :where(a,div):after{
  content: none;
}
.btn-main.back > div :where(a,div)::before{
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  background: url(../images/block/block-arrow.svg) center center / contain no-repeat;
  transform: rotate(180deg);
}
@media only screen and (max-width: 400px){
  .btn-main > div{
    width: 100%;
  }
}

/* お問い合わせボタン */
.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cl-btn02);
  color: var(--white);
  transition: 0.3s all;
  padding: 0.8em;
  width: 100%;
  height: fit-content;
  text-wrap: nowrap;
  font-size: var(--fs-notes);
}
/* .btn-contact:hover {
  opacity: 1;
  background: var(--cl-main);
  color: var(--white);
} */
/* 左矢印 */
.btn-back::before {
  content: '';
  position: absolute;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  width: 0.5em;
  height: 0.5em;
  top: 0;
  bottom: 0;
  left: 1.5em;
  margin: auto;
  transition: 0.3s;
  transform: rotate(-135deg);
}
.btn-back:hover::before {
  left: 1em;
}
/* 右矢印 */
.btn-next::after {
  content: '';
  position: absolute;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  width: 0.5em;
  height: 0.5em;
  top: 0;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  transition: 0.3s;
  transform: rotate(45deg);
}
.btn-next:hover::after {
  right: 1em;
}

/* box
---------------------------------------------------------------- */
.box-basic {
  padding: 2em 1.5em;
  border: var(--l-gray) 4px solid;
  border-radius: var(--box-br);
  background: var(--white);
}

/* icon
---------------------------------------------------------------- */
.icon,
.fa-icon {
  display: flex;
  align-items: center;
}
/* 画像 */
.icon::before {
  content: '';
  display: inline-block;
  margin-right: 0.5em;
}
.icon-mail::before {
  background: url(../images/common/icon-mail.svg) center center no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1em;
}
/* font-awesome */
.fa-icon::before {
  font-family: 'Font Awesome 7 Free';
  margin-right: 0.3em;
}
.fa-icon-tel::before {
  content: '\f095';
  font-weight: 900;
}
.fa-icon-arrow::before {
  content: '\f054';
  font-weight: 900;
  font-size: 1em;
  color: var(--cl-accent);
  text-align: right;
}

/* 外部リンクアイコン */
.ex-link {
  position: relative;
  padding-right: 1.2em;
}
.ex-link::after {
  font-family: 'Font Awesome 7 Free';
  content: '\f35d';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 900;
  font-size: 0.8em;
}

/* header
---------------------------------------------------------------- */
.header-wrap {
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  top: var(--header-top-height);
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--header-max-width) + 6%);
  padding-right: 1%;
  padding-left: 1%;
  width: 100%;
  transition: 0.3s ease-in-out;
}
.header {
  position: relative;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  z-index: 2;
  padding-left: 1.5%;
  padding-right: 1.5%;
  border-radius: var(--box-br);
  background: var(--white);
  box-shadow: var(--shadow);
}
.header-logo-wrap {
  height: 100%;
  padding: 1.2em 0;
}
.header-logo {
  text-indent: -9999px;
  height: 100%;
}
.header-logo a {
  display: block;
  background: url(../images/common/logo.svg) center left no-repeat;
  background-size: contain;
  height: 100%;
  aspect-ratio: 3.55;
}
.header-contents-wrap {
  display: flex;
  margin-left: auto;
  height: 100%;
}
.header-cta{
  display: flex;
  align-items: center;
  height: inherit;
  margin-left: 10px;
}
@media only screen and (max-width: 1160px){
  .header {
    padding-right: calc(var(--hamburger-width) + 20px);
  }
}
@media only screen and (max-width: 1024px){
  .header {
    padding-left: 3%;
  }
  .header-logo-wrap {
    padding: 0.6em 0;
  }
}
@media only screen and (max-width: 599px) {
  .header-cta{
    display: none;
  }
}

/* global nav */
.nav-global {
  height: inherit;
}
.nav-global-list {
  display: flex;
  flex-wrap: nowrap;
  height: inherit;
  justify-content: end;
}
.nav-global-list li {
  height: inherit;
}
.nav-global-list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* font-weight: bold; */
  padding: 0.5em 0.5em;
  color: var(--black);
  height: 100%;
}
.nav-global-list > li > a > span {
  position: relative;
  display: inline-block;
}
.nav-global-list > li > a:hover {
  opacity: 1;
  color: var(--cl-main);
}
.nav-global-list > li.dropdown-trigger > a {
  padding: 0.5em 1.5em 0.5em 0.5em;
}
.dropdown-trigger > a::before{
  content: "";
  background: url(../images/common/arrow.svg) center center / contain no-repeat;
  position: absolute;
  top: 44%;
  right: 0.3em;
  width: 0.95em;
  height: 0.65em;
  transition: 0.3s ease-in-out;
}
/* .dropdown-trigger.is-open > a::before{
  transform: translateY(10px);
} */
.nav-global-dropdown-area {
  visibility: hidden;
  position: absolute;
  top: calc(var(--header-height));
  left: 0;
  right: 0;
  margin: auto;
  width: 90vw;
  max-width: 1200px;
  height: auto;
  min-height: 40vh;
  opacity: 0;
  transition: 0.3s all;
}
.nav-global-dropdown-area .inner{
  margin-top: 15px;
  min-height: 40vh;
  background-color: var(--white);
  padding: 3em min(3em, 3%);
  border-radius: var(--box-br);
  box-shadow: var(--shadow);
}
.dropdown-trigger.is-open .nav-global-dropdown-area {
  visibility: visible;
  opacity: 1;
}
.dropdown-menu-ttl {
  padding-bottom: 0.5em;
  font-size: var(--fs-ttl-xs);
  font-weight: bold;
  border-bottom: 1px solid var(--cl-main);
}
.menu-wrap {
  display: flex;
  color: var(--black);
  text-wrap: nowrap;
  height: 100%;
}

.menu-wrap > a{
  position: relative;
  height: fit-content;
  color: var(--black);
  margin-right: 4em;
  padding: 0.7em 0;
  padding-left: 1em;
}
.menu-wrap > a:before{
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 7 Free';
  font-weight: bold;
  display: block;
  color: var(--cl-main);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-global-dropdown-area .dropdown-menu {
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3,1fr);
}
.nav-global-dropdown-area .dropdown-menu a{
  position: relative;
  font-size: var(--fs-default);
  display: flex;
  align-items: center;
  color: var(--black);
  border-bottom: 1px solid var(--gray);
  width: 100%;
  height: 100%;
  padding: 0.7em 0;
  padding-left: 1.4em;
  text-wrap: wrap;
}
.nav-global-dropdown-area .dropdown-menu a::before{
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  width: 1em;
  height: 1em;
  background: url(../images/common/arrow-circle.svg) center center / contain no-repeat;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1160px){
  .nav-global {
    display: none;
  }
}

/* ハンバーガーボタン */
.btn-hamburger {
  position: absolute;
  top: calc(var(--header-height) / 2);
  transform: translateY(-50%);
  right: 10px;
  width: var(--hamburger-width);
  height: var(--hamburger-width);
  z-index: 99;
  border-radius: 50%;
  padding: 5px;
}
.btn-hamburger button {
  position: relative;
  width: 100%;
  height: 100%;
}
.btn-hamburger button::after {
  position: absolute;
  content: 'MENU';
  font-size: 1rem;
  font-weight: bold;
  color: var(--black);
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
}
.btn-hamburger button.is-active::after {
  content: 'CLOSE';
}
.btn-hamburger button span,
.btn-hamburger button span:before,
.btn-hamburger button span:after {
  position: absolute;
  background-color: var(--cl-main);
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  transition: all 0.4s;
}
.btn-hamburger button span {
  width: 60%;
  left: calc(50%);
  top: 40%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 50% 50%;
}
.btn-hamburger button span:before {
  top: 10px;
}
.btn-hamburger button span:after {
  top: -10px;
}
.btn-hamburger button.is-active {
  background: transparent;
}
.btn-hamburger button.is-active span {
  background-color: transparent;
}
.btn-hamburger button.is-active span:before {
  top: 0;
  transform: rotate(45deg);
}
.btn-hamburger button.is-active span:after {
  top: 0;
  transform: rotate(-45deg);
}

@media only screen and (min-width: 1161px) {
  .btn-hamburger {
    display: none;
  }
}

/* mobile nav
---------------------------------------------------------------- */
.nav-mobile {
  position: fixed;
  background: linear-gradient(to right, var(--white), var(--cl-base), var(--white));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  opacity: 0;
  z-index: -999;
}
.nav-mobile.is-open {
  opacity: 1;
  z-index: 110;
}
.nav-mobile-inner {
  padding:3em 0 6em;
  margin-top: calc(var(--header-top-height) + var(--header-height));
}
.nav-mobile-list > li {
  border-bottom: var(--gray) 1px solid;
  position: relative;
}
.nav-mobile-list > li::before {
  position: absolute;
  content: '';
  border-top: 2px solid var(--cl-main);
  border-right: 2px solid var(--cl-main);
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5em;
  transition: 0.3s;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 0.5em;
}
.nav-mobile-list > li.dropdown::before {
  content: none;
}
.nav-mobile-list > li > a,
.nav-mobile-list > li .btn-dropdown {
  display: block;
  color: var(--black);
  font-size: var(--fs-default);
  font-weight: bold;
  padding: 1em;
  width: 100%;
  text-align: left;
}
.nav-mobile-list .dropdown {
  display: flex;
  flex-wrap: wrap;
}
.nav-mobile-list .dropdown > a {
  width: 85%;
}
.nav-mobile-list .btn-dropdown {
  width: 15%;
  position: relative;
}
.nav-mobile-list .btn-dropdown:before,
.nav-mobile-list .btn-dropdown:after {
  position: absolute;
  content: '';
  display: block;
  transition: all 0.4s;
  background: var(--cl-main);
  right: 0;
  top: 50%;
  width: 1em;
  height: 2px;
  transform: translate(-50%, -50%);
}
.nav-mobile-list .btn-dropdown:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.nav-mobile-list .btn-dropdown.is-open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.nav-mobile-list .btn-dropdown.is-open:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.nav-mobile-list .dropdown-menu {
  display: none;
  width: 100%;
  padding-bottom: 1em;
}
.nav-mobile-list .dropdown-menu li {
  padding: 0 1em;
}
.nav-mobile-list .dropdown-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--black);
  padding: 0.5em 0;
  padding-left: 1.5em;
  font-weight: bold;
}
.nav-mobile-list .dropdown-menu li a::before {
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  width: 1em;
  height: 1em;
  background: url(../images/common/arrow-circle.svg) center center / contain no-repeat;
  transform: translateY(-50%);
}

/* SP版追従
---------------------------------------------------------------- */
.mobile-follow{
  width: 100%;
  height: var(--mobile-follow-height);
  display: grid;
  grid-template-columns: repeat(2,1fr);
  position: fixed;
  bottom: 0;
  background-color: var(--cl-base03);
  z-index: 999;
  padding: 1em 1em;
  gap: 1em;
}
.mobile-follow-tel,
.mobile-follow-contact{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 0.2em;
  color: var(--white);
  font-weight: bold;
  font-size: var(--fs-ttl-xs);
  border-radius: var(--btn-br);
  text-align: center;
  gap: 5px;
}
.mobile-follow-tel{
  background-color: var(--cl-main);
}
.mobile-follow-contact{
  background-color: var(--cl-btn02);
}
.mobile-follow-tel::before,
.mobile-follow-contact::before{
  display: inline-block;
  content: "";
  width: 1.4em;
  height: 1.4em;
}
.mobile-follow-tel::before{
  background: url(../images/common/tel_icon.svg) center center / contain no-repeat;
}
.mobile-follow-contact::before{
  background: url(../images/common/mail_icon.svg) center center / contain no-repeat;
}
@media only screen and (min-width: 600px){
  .mobile-follow{
    display: none;
  }
}
@media only screen and (max-width: 450px){
  .mobile-follow-tel::before,
  .mobile-follow-contact::before{
    content: none;
  }
}
@media only screen and (max-width: 380px){
  .mobile-follow{
    gap: 0.5em;
    padding: 0.7em 0.5em;
  }
}



/* sitemap
---------------------------------------------------------------- */
.sitemap {
  width: 100%;
}
.sitemap .sitemap-top{
  position: relative;
  height: fit-content;
  font-size: var(--fs-ttl-xs);
  font-weight: bold;
  color: var(--black);
  padding: 0.7em 0;
  padding-left: 0.8em;
}
.sitemap .sitemap-top:before {
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 7 Free';
  display: block;
  color: var(--cl-main);
  left: 0;
  margin-top: 1.5px;
  top: 50%;
  transform: translateY(-50%);
}
.sitemap > div{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}
.sitemap-ttl,
.sitemap .page_item a{
  color: var(--black);
  height: fit-content;
  font-weight: bold;
  display: block;
  position: relative;
  padding: 0.3em 0;
  padding-left: 1.3em;
}
.sitemap-ttl {
  font-size: var(--fs-ttl-xs);
  font-weight: bold;
  border-bottom: var(--cl-main) 1px solid;
}
.sitemap-ttl::before,
.sitemap .page_item a::before {
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  width: 1em;
  height: 1em;
  background: url(../images/common/arrow-circle.svg) center center / contain no-repeat;
  transform: translateY(-45%);
}
.sitemap  ul > li.page_item:nth-of-type(2){
  margin-top: var(--space-ss);
}
.sitemap .page_item a{
  font-size: var(--fs-default);
  margin-left: 15px;
}
.sitemap hr{
  color: var(--gray);
}

.other-link {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.other-link > a{
  color: var(--black);
  font-size: var(--fs-default);
}
.other-link > a.outer:after{
  color: var(--cl-main);
  content: "\f08e";
  margin-left: 5px;
  font-family: 'Font Awesome 7 Free';
  font-weight: bold;
}




@media only screen and (max-width: 1024px){
  .sitemap > div{
    grid-template-columns: 1fr 1fr;
    
  }
}
@media only screen and (max-width: 500px){
  .sitemap > div{
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}











/* footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  background: linear-gradient(to right, var(--cl-accent), var(--cl-accent02));
  color: var(--white);
  width: 100%;
  padding-top: 2em;
}
.footer a {
  color: var(--white);
}
.footer-logo a {
  display: inline-block;
  width: 200px;
  height: inherit;
}
.footer-content{
  display: flex;
  gap: 40px;
}
.footer-link-list{
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  column-gap: 30px;
  font-size: var(--fs-default);
}
.footer-link-list a{
  display: block;
  padding: 0.3em 0;
}
/* footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
  padding-top: 1em;
  padding-bottom: 1em;
  margin-top: 8em;
}
.footer-bottom ul{
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  column-gap: 20px;
  row-gap: 10px;
  font-size: var(--fs-default);
}
.footer-bottom ul a::after{
  content: "\f35d";
  font-family: 'Font Awesome 7 Free';
  font-weight: bold;
  margin-left: 7px;
}
/* .footer-link-list .footer-link-item + .footer-link-item {
  margin-left: 2em;
}
.footer-link-item a {
  display: flex;
  align-items: center;
  font-size: var(--fs-notes);
} */
.footer-copyright {
  font-size: 1.4rem;
  padding: 0.5em 0;
  text-align: center;
}
@media only screen and (max-width: 800px){
  .footer-content{
    gap: 20px;
  }
  .footer-link-list{
    column-gap: 10px;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
}
@media only screen and (max-width: 599px){
  .footer-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    margin-top: 4em;
    padding-bottom: calc(var(--mobile-follow-height) + 20px);
  }
  .footer-copyright {
    text-align: start;
  }
}



/* トップページ Top
---------------------------------------------------------------- */
.top-hero {
  position: relative;
  height: 880px;
  background: linear-gradient(to right, var(--white), var(--cl-base), var(--white));
  overflow: hidden;
}
/* タイトル */
.top-hero-ttl-wrap{
  width: 100%;
  height: 100%;
}
.top-hero-ttl-wrap > div{
  width: 100%;
  height: 100%;
  position: relative;
}
.top-hero-ttl img{
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  max-width: 600px;
  height: 340px;
}
/* 装飾画像 */
.top-hero .img-set{
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
}
.top-hero #set-b.img-set{
  transform: translateX(100%);
}
.top-hero .img-set .img-list{
  width: 100%;
  height: 100%;
  position: relative;
}
.top-hero .img-list img{
  position: absolute;
  display: block;
  aspect-ratio: 3 / 2;
  min-height: 0;
  z-index: 2;
}
.top-hero .img-list{
  --base-size: 40px;
}
/* 画像の個別設定 */
.top-hero .img-list img.top-hero-img01{
  width: calc(var(--base-size) * 6.5);
  top: 13%;
  left: 21%;
}
.top-hero .img-list img.top-hero-img02{
  width: calc(var(--base-size) * 8.0);
  top: 13%;
  left: 47%;
}
.top-hero .img-list img.top-hero-img03{
  width: calc(var(--base-size) * 9.0);
  top: 29.5%;
  left: -3%;
}
.top-hero .img-list img.top-hero-img04{
  width: calc(var(--base-size) * 6.0);
  top: 42%;
  left: 14.6%;
  z-index: 1;
}
.top-hero .img-list img.top-hero-img05{
  width: calc(var(--base-size) * 7.0);
  top: 49.5%;
  left: 35.8%;
}
.top-hero .img-list img.top-hero-img06{
  width: calc(var(--base-size) * 8.0);
  top: 59.7%;
  left: 57.6%;
}
.top-hero .img-list img.top-hero-img07{
  width: calc(var(--base-size) * 8.0);
  top: 69.4%;
  left: 9.6%;
}
.top-hero .img-list img.top-hero-img08{
  width: calc(var(--base-size) * 9.0);
  top: 78.4%;
  left: 31.8%;
}
.top-hero .img-list img.top-hero-img09{
  width: calc(var(--base-size) * 9.0);
  top: 21.8%;
  left: 69.3%;
}
.top-hero .img-list img.top-hero-img10{
  width: calc(var(--base-size) * 8.0);
  top: 49%;
  left: 85.8%;
}
.top-hero .img-list img.top-hero-img11{
  width: calc(var(--base-size) * 7.0);
  top: 76.4%;
  left: 72.8%;
  z-index: 1;
}
/* ここまで共通 */
/* 2セット目のみの個別設定 */
.top-hero .img-list img.top-hero-img12{
  width: calc(var(--base-size) * 9.0);
  top: 17.5%;
  left: -3%;
}
.top-hero .img-list img.top-hero-img13{
  width: calc(var(--base-size) * 8.0);
  top: 60%;
  left: 85.8%;
}

@media only screen and (max-width: 1024px){
  /* .top-hero .img-list img.top-hero-img03, */
  .top-hero .img-list img.top-hero-img04,
  .top-hero .img-list img.top-hero-img08,
  .top-hero .img-list img.top-hero-img09,
  .top-hero .img-list img.top-hero-img11
  {
    display: none;
  }
  .top-hero .img-list img.top-hero-img03{
    left: -10%;
  }
  .top-hero .img-list img.top-hero-img12{
    left: -10%;
  }
  .top-hero .img-list img.top-hero-img07{
    left: 15%;
  }
}
@media only screen and (max-width: 768px){
  .top-hero .img-list{
    --base-size: 30px;
  }
  .top-hero {
    height: 700px;
  }
  .top-hero .img-list img.top-hero-img10{
    top: 74%;
  }
  .top-hero .img-list img.top-hero-img13{
    top: 75%;
  }
}
@media only screen and (max-width: 599px){
  .top-hero {
    width: 100%;
    height: auto;
    aspect-ratio: 0.681;
    min-height: 0;
  }
  .top-hero .img-list{
    --base-size: 5vw;
  }
}
/* テンプレート */
/* .top-hero .img-list img.top-hero-img{
  width: px;
  top: %;
  left: %;
} */

/* top-se-important ----------------------------- */
.important-wrap{
  display: grid;
  grid-template-columns: auto 1fr;
  border: 2px solid var(--red);
  border-radius: var(--box-br);
  overflow: hidden;
  gap: 20px;
}
.important-wrap h2{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--red);
  background-color: var(--pink);
  font-size: var(--fs-default);
  width: 216px;
  padding: 2em 0;
}
.important-wrap h2::before{
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  min-height: 0;
  margin-right: 5px;
  background: url(../images/top/important_alart.svg) center center / contain no-repeat;
}
.important-list {
    padding: 1em 1em 1em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.important-list li a{
  display: flex;
  column-gap: 20px;
  row-gap: 0;
  color: var(--black);
}
.important-list li a p:first-of-type{
  color: var(--red);
  font-weight: bold;
}
.important-list li + li{
  margin-top: 10px;
}
@media only screen and (max-width: 1024px){
  .important-wrap h2{
    width: 170px;
  }
}
@media only screen and (max-width: 768px){
  .important-list li a{
    flex-direction: column;
  }
}
@media only screen and (max-width: 599px){
  .important-wrap{
    display: block;
  }
  .important-wrap h2{
    width: 100%;
  }
  .important-list {
    padding: 1em;
  }
  .important-list li a{
    flex-direction: row;
  }
}
@media only screen and (max-width: 500px){
  .important-list li a{
    flex-direction: column;
  }
}

/* top-se-menu ----------------------------- */
.top-se-menu{
  position: relative;
}
.top-se-menu::after{
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 65%;
  top: 0;
  left: 0;
  border-radius: 40px 40px 0 0;
  z-index: -1;
  background: linear-gradient(to right, var(--cl-accent), var(--cl-accent02));;
}
/*スライダー（splide）*/
#menu-slider {
  margin-left: max(calc((100% - (var(--contents-inner-width) + 6%)) / 2), 0px);
  padding-left: 3%;
  padding-bottom: 4em;
}
#menu-slider li.splide__slide {
  border-radius: 30px;
  background-color: var(--white);
}
#menu-slider li.splide__slide a{
  color: var(--black);
}
#menu-slider li.splide__slide a:hover{
  opacity: 1;
}
#menu-slider li.splide__slide a:hover img{
  transform: scale(1.1);
}
#menu-slider .menu-img{
  position: relative;
  border-radius: 30px 30px 30px 0;
  overflow: hidden;
}
#menu-slider .menu-img h3{
  background-color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--black);
  width: 60%;
  padding: 1em 0.2em;
  line-height: 1;
  font-size: var(--fs-ttl-s);
  border-radius: 0 30px 0 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#menu-slider  .menu-img h3::after{
  content: "";
  display: block;
  width: 24px;
  min-width: 24px;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  background: url(../images/common/arrow-circle.svg) center center / contain no-repeat;
}
#menu-slider li.splide__slide a p{
  padding: 0.5em 1em;
}
#menu-slider li.splide__slide a img{
  width: 100%;
  aspect-ratio: 0.75;
  min-height: 0;
}

/* 矢印 */
#menu-slider .splide__arrows {
  padding-left: 3%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 1em;
}
#menu-slider .splide__arrow {
  position: relative;
  background: url(../images/top/slide_arrow.svg) center center no-repeat;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  opacity: 1;
  transform: none;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
#menu-slider .splide__arrow:hover {
  opacity: 0.7;
}
#menu-slider .splide__arrow.splide__arrow--next{
  transform: rotate(180deg);
}
#menu-slider .splide__pagination{
  position: static;
  width: 200px;
  max-width: 200px;
  padding: 0;
}
#menu-slider .splide__pagination li{
  width: 20%;
}
#menu-slider .splide__pagination__page {
  background: var(--l-gray);
  border: 0;
  border-radius: 0;
  width: 100%;
  height: 4px;
  display: inline-block;
  margin: 0;
  opacity: 1;
  padding: 0;
  transition: transform .3s linear;
}
#menu-slider .splide__pagination__page.is-active{
  background: var(--cl-main);
}
@media only screen and (max-width: 1024px){
  #menu-slider  .menu-img h3::after{
    margin-top: 0;
  }
}
@media only screen and (max-width: 599px){
  #menu-slider .splide__arrow:hover {
    opacity: 1;
  }
  #menu-slider .menu-img h3{
    font-size: var(--fs-lead);
  }
  #menu-slider  .menu-img h3::after{
    width: 20px;
    min-width: 20px;
    margin-top: 0;
  }
  #menu-slider .splide__arrows {
    justify-content: center;
  }
  #menu-slider {
    padding-bottom: 5em;
  }
  #menu-slider li.splide__slide a p{
    padding: 0.5em;
  }
}
@media only screen and (max-width: 480px) {
  .splide {
    padding-bottom: 3em;
  }
  .splide__arrows {
    height: 3em;
  }
  .splide__arrow {
    width: 3.2rem;
    height: 3.2rem;
  }
  .splide__arrow svg {
    width: 1.9rem;
    height: 1.9rem;
  }
  .splide__toggle {
    height: 3.2rem;
  }
}

/* top-se-feature ----------------------------- */
.feature-list{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
}
.feature-list li{
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2em 0.5em;
  border: 1px solid var(--gray);
  border-radius: var(--box-br);
  font-weight: bold;
}

.feature-list li img{
  display: block;
  width: 100px;
}
@media only screen and (max-width: 1024px){
  .feature-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .feature-list li{
    width: calc(100% / 3 - 20px);
  }
}
@media only screen and (max-width: 599px){
  .feature-list li{
    width: calc(100% / 2 - 10px);
    padding: 1em 0.5em;
  }
}
@media only screen and (max-width: 450px){
  .feature-list li{
    width: calc(100% / 2 - 5px);
  }
  .feature-list li img{
    display: block;
    width: 80px;
  }
  .feature-list{
    gap: 10px;
  }
}

/* top-se-news ----------------------------- */
.top-se-news-list{
  border: 1px solid var(--cl-main);
  padding: 4em 2em;
  border-radius: 20px;
}
@media only screen and (max-width: 768px){
  .top-se-news-list{
    border: 1px solid var(--cl-main);
    padding: 4em 1em;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 599px){
  .top-se-news-list{
    padding: 2em 1em;
  }
}

/* top-se-access ----------------------------- */
.top-se-access{
  position: relative;
  background: url(../images/top/access_bg.jpg) center center / cover no-repeat;
}
.top-se-access:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.top-se-access > div{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}
.top-se-access iframe{
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
}
.access-googlemap-link{
  display: flex;
  column-gap: 20px;
  row-gap: 5px;
  flex-wrap: wrap;
}
.access-googlemap-link a{
  border: 1px solid var(--white);
  border-radius: 4px;
  color: var(--white);
  padding: 0 1em;
}
.access-googlemap-link a:before{
  content: "\f3c5";
  display: inline-block;
  font-family: 'Font Awesome 7 Free';
  font-weight: bold;
  margin-right: 5px;
}
.top-se-access h3{
  display: flex;
  align-items: center;
  font-size: var(--fs-default);
}
.top-se-access h3::before{
  content: "";
  width: 40px;
  aspect-ratio: 1/1;
  min-height: 0;
  margin-right: 10px;
}
.top-se-access h3.access-train::before{
  background: url(../images/top/access_train_icon.svg) center center / contain no-repeat;
}
.top-se-access h3.access-bus::before{
  background: url(../images/top/access_bus_icon.svg) center center / contain no-repeat;
}
.top-se-access h3.access-car::before{
  background: url(../images/top/access_car_icon.svg) center center / contain no-repeat;
}
@media only screen and (max-width: 1024px){
  .top-se-access > div{
    gap: 30px;
  }
}
@media only screen and (max-width: 599px){
  .top-se-access > div{
    display: block;
  }
  .top-se-access > div > div + div{
    margin-top: var(--space-ls);
  }
}

/* top-se-contact ----------------------------- */

.contact-wrap{
  border: 2px solid var(--cl-main);
  border-radius: 20px;
  padding: 3em 2em;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.contact-wrap > p{
  font-size: var(--fs-ttl-s);
  font-weight: bold;
  color: var(--cl-main);
}
.contact-wrap a{
  color: var(--white);
  border-radius: var(--box-br);
  text-decoration: none;
  text-align: center;
  padding: 1.5em 1em;
  font-size: var(--fs-default);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-wrap a .contact-ttl{
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 100%;
}
.contact-wrap a .contact-ttl::before{
  content: "";
  display: block;
  margin-right: 10px;
  width: 40px;
  min-width: 40px;
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.contact-wrap a:first-of-type{
  background-color: var(--cl-btn);
}
.contact-wrap a:first-of-type .contact-ttl{
  font-size: var(--fs-ttl-l);
  line-height: 1.3;
}
.contact-wrap a:first-of-type .contact-ttl::before{
  background: url(../images/block/tel.svg) center center / contain no-repeat;
}

.contact-wrap a:last-of-type{
  background-color: var(--cl-btn02);
}
.contact-wrap a:last-of-type .contact-ttl{
  font-size: var(--fs-ttl-s);
}
.contact-wrap a:last-of-type .contact-ttl::before{
  background: url(../images/block/mail.svg) center center / contain no-repeat;
}
@media only screen and (max-width: 1024px){
  .contact-wrap{
    padding: 3em 1em;
  }
}
@media only screen and (max-width: 768px){
  .contact-wrap{
    padding: 3em 2em;
    display: block;
  }
  .contact-wrap > a:first-of-type{
    display: block;
    margin-top: 30px;
  }
  .contact-wrap > a:last-of-type{
    display: block;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 450px){
    .contact-wrap{
    padding: 2em 1em;
    display: block;
  }
}


/* サブページ（共通） Sub-common
---------------------------------------------------------------- */
.sub-hero {
  padding-top: calc(var(--header-height) + 40px);
  width: 100%;
  line-height: 1.4;
  background-color: var(--cl-base);
  position: relative;
}
.sub-hero::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background-color: var(--white);
  top: 0;
  left: 0;
  border-radius: 0 0 999px 0;
}
.sub-hero > div{
  padding-top: 80px;
  padding-bottom: 80px;
}
.sub-hero h1,
.sub-hero p {
  font-size: var(--fs-ttl-ll);
  padding: 0.7em 0;
  font-weight: bold;
  position: relative;
}
.sub-hero h1::before,
.sub-hero p::before{
  content: "";
  position: absolute;
  display: block;
  width: 2em;
  height: 3px;
  background-color: var(--cl-main);
  bottom: 0em;
}
@media only screen and (max-width: 1024px){
  .sub-hero > div{
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 768px){
  .sub-hero {
    padding-top: calc(var(--header-height) + 10px);
  }
}
@media only screen and (max-width: 599px){
  .sub-hero > div{
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

/* 投稿（共通）archive common
---------------------------------------------------------------- */
/* 記事リスト */
.article-list li {
  border-bottom: var(--gray) 1px solid;
  transition: 0.3s all;
}
.article-list li:first-of-type {
  border-top: var(--gray) 1px solid;
}
.article-list li a {
  display: block;
  color: var(--black);
  padding: 0.8em 0;
  display: flex;
  gap: 20px;
}
.article-list li:hover {
  background: var(--cl-base);
}
.article-list li:hover a {
  opacity: 1;
}
.article-list a.zoom-out:hover {
  transform: scale(0.98);
}
@media only screen and (max-width: 500px){
  .article-list li a{
    display: block;
  }
}

/* 記事日付 */
.article-date {
  font-weight: bold;
  color: var(--cl-main);
  text-wrap: nowrap;
}
.article-date.update {
  margin-left: 0.5em;
}
.article-date.update::before {
  display: inline-block;
  font-family: 'Font Awesome 7 Free';
  font-size: 1em;
  content: '\f2f1';
  font-weight: 900;
  color: var(--d-gray);
}
/* 記事タイトル */
.article-ttl {
  font-weight: bold;
  color: var(--black);
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--cl-main);
  margin-bottom: var(--space-ms);
}

/* 投稿（共通）single common
---------------------------------------------------------------- */
.type-single .l-primary .single-article {
  padding: 0 1em 1.5em;
  border-radius: var(--box-br);
}
.type-single .l-primary .article-inner {
  max-width: 850px;
  margin: auto;
}
.article-content {
  margin: 3em 0;
}


/* archive news
---------------------------------------------------------------- */

/* single news
---------------------------------------------------------------- */

/* editor-style
---------------------------------------------------------------- */


/* ページ個別css */
/* 初めての方へ */
.first-renewal{
  border-radius:20px ;
  background-color: var(--cl-base03);
  overflow: hidden;
}
.first-renewal h2{
  padding: 0 0.5em;
}
.first-renewal-point{
  padding: 2em;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.first-renewal-point > div{
  max-width: 220px;
  margin: 0 auto;
}
.first-renewal-point img{
  max-width: 220px;
  width: 100%;
}

.first-about{
  position: relative;
}
.first-about::before{
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  left: calc((100vw - 100%) / 2 * -1);
  background-color: var(--cl-base02);
  z-index: -1;
}
.first-qa li{
  margin-left: 0!important;
  list-style-type: none!important;
}


@media only screen and (max-width: 768px){
  .first-renewal-point{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .first-renewal-point > div{
    width: calc(100% / 2 - 20px);
  }
}
@media only screen and (max-width: 560px){
  .first-renewal-point > div:first-of-type br{
    display: none;
  }
}
@media only screen and (max-width: 500px){
  .first-renewal-point > div br{
    display: none;
  }
  .first-renewal-point{
    padding: 2em 1em;
    gap: 10px;
  }
}

/* 当センターについて */
.about-hospital{
  position: relative;
}
.about-hospital::before{
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  left: calc((100vw - 100%) / 2 * -1);
  background-color: var(--cl-base02);
  z-index: -1;
}

/* よくあるご質問 */
.qa-gotop{
  text-align: left;
  color: var(--black);
  font-weight: bold;
  font-size: var(--fs-lead);
  display: flex;
  align-items: center;
  justify-content: end;
}
.qa-gotop::after{
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.23em;
  background: url(../images/common/arrow-circle.svg) center center / contain no-repeat;
  transform: rotate(-90deg);
  margin-left: 5px;
}



/* 健診メニュー */
.price-list{
  width: 100%;
}
.checkup-menu-price{
  width: 100%;
  background-color: var(--cl-base03);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 1.5em 2em;
  gap: 20px;
  justify-content: space-between;
  --title-witdh: 70%;
}
.checkup-menu-price .price-wrap{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkup-menu-price h3{
  margin-right: auto;
  width: calc(var(--title-witdh) - 5px);
}
.checkup-menu-price p{
  font-weight: bold;
  line-height: 1.1;
  width: calc(100% - var(--title-witdh) - 5px);
}
.checkup-menu-price p br{
  display: none;
}
.checkup-menu-price p span{
  display: inline-block;
  margin-right: 5px;
}
.checkup-menu-price p span:last-of-type{
  margin-right: 0;
}
.checkup-menu-price + .checkup-menu-price{
  margin-top: var(--space-ms);
}


@media only screen and (max-width: 1200px){
  .checkup-menu-price{
    --title-witdh: 60%;
  }
}
@media only screen and (max-width: 920px){
  .checkup-menu-price{
    --title-witdh: 70%;
  }
  .checkup-menu-price p br{
    display: block;
  }
}
@media only screen and (max-width: 850px){
  .checkup-menu-price{
    --title-witdh: 65%;
  }
  .checkup-menu-price{
    padding: 1.5em 1em;
  }
}
@media only screen and (max-width: 768px){
  .checkup-menu-price p br{
    display: none;
  }
  .price-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
  }
  .checkup-menu-price{
    flex-direction: column;
    gap: 30px;
  }
  .checkup-menu-price + .checkup-menu-price{
    margin-top: 0;
  }
  .checkup-menu-price .price-wrap{
    flex-direction: column;
    text-align: center;
    justify-content: end;
    gap: 10px;
    height: 100%;
  }
  .checkup-menu-price .btn-main{
    justify-content: center;
  }
  .checkup-menu-price h3,
  .checkup-menu-price p{
    width: 100%;
  }
}
@media only screen and (max-width: 599px){
  .price-list{
    display: block;
  }
  .checkup-menu-price + .checkup-menu-price{
    margin-top: var(--space-ms);
  }
}


/* 特定健康診査・特定保健指導 */
/* リストスタイルの削除---------------- */
.specifiedcare-flow li {
  list-style-type: none!important;
  margin-left: 0!important;
}
/* ステップ共通 */
.specifiedcare-flow-item {
  position: relative;
  border-radius: 10px;
  border: 2px solid var(--cl-main);
}
.specifiedcare-flow-item + li{
  margin-top: 75px;
}
.specifiedcare-flow-item + li::before{
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 2 / 1;
  min-height: 0;
  background: url(../images/block/arrow-flow.svg) center center / contain no-repeat;
}
.specifiedcare-flow-header{
  background-color: var(--cl-main);
  color: var(--white);
  padding: 1em;
  display: flex;
  column-gap: 15px;
}
.specifiedcare-flow-content{
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
:where(.item-01,.item-02) .specifiedcare-flow-content li{
  border: 1px solid var(--gray);
  display: grid;
  grid-template-columns: 2fr 8fr;
}
.specifiedcare-flow-content li h5{
  background-color: var(--l-gray);
  display: flex;
  align-items: center;
  padding: 0 1em;
  height: 100%;
}
.specifiedcare-flow-content li > div{
  padding: 1em;
  height: 100%;
}
/* Step3 */
.item-03 .specifiedcare-flow-content > div{
  border: 1px solid var(--gray);
}
.item-03 .specifiedcare-flow-content p{
  padding: 0.5em 1em;
  font-size: var(--fs-lead);
}
.item-03 .specifiedcare-flow-content p + p{
  border-top: 1px solid var(--gray);
}
.item-03 .specifiedcare-flow-content .result{
  font-size: var(--fs-ttl-xs);
  text-align: center;
}
/* Step4 */
.item-04 .specifiedcare-flow-content li{
  padding-left: 15px;
  position: relative;
}
.item-04 .specifiedcare-flow-content li::before{
  position: absolute;
  left: 0;
  content: "・";
  display: inline-block;
}
/* レスポンシブ */
@media only screen and (max-width: 768px){
  :where(.item-01,.item-02) .specifiedcare-flow-content li{
    border: 1px solid var(--gray);
    display: grid;
    grid-template-columns: 2.5fr 7.5fr;
  }
  .specifiedcare-flow-content{
    padding: 1em;
    gap: 20px;
  }
}
@media only screen and (max-width: 599px){
  .specifiedcare-flow-header {
    flex-direction: column;
  }
  :where(.item-01,.item-02) .specifiedcare-flow-content li{
    display: block;
  }
  .specifiedcare-flow-content li h5,
  .specifiedcare-flow-content li > div,
  .item-03 .specifiedcare-flow-content p {
    padding: 0.5em 18px;
  }
}
@media only screen and (max-width: 450px){
  .specifiedcare-flow-content li h5,
  .specifiedcare-flow-content li > div,
  .item-03 .specifiedcare-flow-content p {
    padding: 0.5em 10px;
  }
}
/* 404ページ */
.page-404{
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 6px solid var(--l-gray);
  padding-left: 1em;
  padding-right: 1em;
}
.page-404 > p{
  display: block;
  width: fit-content;
}

/* テーブル */
/* スクロールヒントの調整 */
.scroll-hint-icon {
  width: 130px!important;
  z-index: 2;
  top: calc(50%)!important;
  transform: translateY(-50%)!important;
}
.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before, .scroll-hint-shadow-wrap.is-left-scrollable::before {
  content: none!important;
}
/* デフォルトcss打消し */
.block-table th, 
.block-table td {
  border: none;
}
/* フォントサイズの調整 */
.block-table{
  font-size: 16px;
  overflow-y: hidden!important;
}
@media only screen and (max-width: 768px){
  .block-table{
    font-size: max(12px,2.08vw);
  }
}
.block-table table{
  overflow: hidden;
  overflow-y: hidden;
  width: 100%;
  border: 1px solid var(--gray);
  border-radius: 20px;
  background-color: var(--white);
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
}
@media only screen and (max-width: 599px){
  .block-table.col-3 table{
    min-width: 600px;
  }
}
.block-table td{
  border-top: 1px solid var(--gray);
}
.block-table td,
.block-table th{
  border-right: 1px solid var(--gray);
}
.block-table td:first-of-type{
  font-weight: bold;
}
.block-table th:last-of-type{
  border-right: none;
}
.block-table td:last-of-type{
  border-right: none;
  font-weight: normal;
}
.block-table th{
  background-color: var(--cl-accent);
  color: var(--white);
}
/* パディング、ボーダーラディアス設定 */
.block-table th:first-of-type{
  border-radius: 20px 0 0 0;
}
.block-table th:last-of-type{
  border-radius: 0 20px 0 0;
}
.block-table td,
.block-table th{
  padding: 1em;
}

/* カラムサイズ設定 */
/* 2カラムの場合 */
.block-table th:first-of-type{
  width: 30%;
}
.block-table th:nth-of-type(2){
  width: 70%;
}
/* 3カラムの場合 */
.block-table.col-3 th:first-of-type{
  width: 25%;
}
.block-table.col-3 th:nth-of-type(2){
  width: 55%;
}
.block-table.col-3 th:nth-of-type(3){
  width: 20%;
}
/* 金額の場合 */
.block-table.col-price table{
  min-width: 0;
}
.block-table.col-price th:first-of-type{
  width: 70%;
}
.block-table.col-price th:nth-of-type(2){
  width: 30%;
}
/* 長い表の場合 */
.block-table.col-long thead{
  position: sticky;
  top:0;
  z-index: 2;
}
@media only screen and (max-width: 768px){
  .block-table.col-long table{
    border-radius: 0px;
    overflow: auto;
  }
  .block-table.col-long{
    max-height: 600px;
  }
  .block-table.col-long{
    overflow-y: auto!important;
  }
  .block-table.col-long th{
    border-radius: 0;
  }
}
@media only screen and (max-width: 500px){
  .block-table.col-long{
    max-height: 500px;
  }
  .block-table.col-long th:first-of-type{
    width: 20%;
  }
  .block-table.col-long th:nth-of-type(2){
    width: 80%;
  }
}

/* 健康診断、区民健診ページの場合 */
/* 共通設定 */
.block-table.col-checkup > table{
  min-width: 900px;
  height: 100%;
}
.block-table.col-checkup thead{
  position: sticky;
  top:0;
  z-index: 2;
}
.block-table.col-checkup .stik{
  position: sticky;
  left: var(--sticky-left-offset, 0px); 
  z-index: 1;
}
.block-table.col-checkup td{
  font-weight: normal;
  min-width: 60px;
}
.block-table.col-checkup th:first-of-type{
  width: 40%;
}
.block-table.col-checkup th:nth-of-type(n+2) {
  width: 15%;
}
/* 区民健診 */
.block-table.col-checkup.col-resident th:first-of-type{
  width: 40%;
}
.block-table.col-checkup.col-resident th:nth-of-type(n+2) {
  width: 20%;
}

@media only screen and (max-width: 768px){
  .block-table.col-checkup{
    overflow-y: auto!important;
  }
  .block-table.col-checkup th{
    border-radius: 0;
  }
  .block-table.col-checkup{
    max-height: 650px;
  }
  .block-table.col-checkup table{
    min-width: 700px;
    border-radius: 0px;
    overflow: auto;
  }
  .block-table.col-checkup td,
  .block-table.col-checkup th{
    padding: 0.5em;
    text-wrap: wrap;
  }
}
@media only screen and (max-width: 599px){
  .block-table.col-checkup {
    max-height: 500px;
  }
  .block-table.col-checkup > table{
    min-width: 600px;
  }
  .block-table.col-checkup td{
    min-width: 0;
  }
  /* 区民健診 */
  .block-table.col-checkup.col-resident > table{
    min-width: 550px;
  }
  .block-table.col-checkup.col-resident th:first-of-type{
    width: 40%;
  }
  .block-table.col-checkup.col-resident th:nth-of-type(n+2) {
    width: 20%;
  }
}
@media only screen and (max-width: 450px){
  .block-table.col-checkup > table,
  .block-table.col-checkup.col-resident > table
  {
    min-width: 400px;
  }
}
@media only screen and (max-width: 380px){
  .block-table.col-checkup th:first-of-type{
    width: 30%;
  }
  .block-table.col-checkup th:nth-of-type(n+2) {
    width: calc(70% / 4);
  }
  .block-table.col-checkup.col-resident th:first-of-type{
    width: 30%;
  }
  .block-table.col-checkup.col-resident th:nth-of-type(n+2) {
    width: calc(70% / 3);
  }
}

/* オプションページ */
.block-table.table-option td,
.block-table.table-option th{
  border-right: none;
  border-left: 1px solid var(--gray);
}
.block-table.table-option td:first-of-type,
.block-table.table-option th:first-of-type{
  border-left: none;
}

/* 脳ドックページ */
.block-table.col-braindock table{
  min-width: 0;
}
.block-table.col-braindock th{
  border-radius: 20px 20px 0 0;
}
.block-table.col-braindock td{
  font-weight: normal;
}
.block-table.col-braindock th:first-of-type,
.block-table.col-braindock th:nth-of-type(2){
  width: auto;
}
.block-table.col-braindock td.brain-colsize{
  width: 40%;
}
@media only screen and (max-width: 400px){
  .block-table.col-braindock table{
    min-width: 350px;
  }
}