@charset "utf-8";
@font-face{font-family:YakuHanJPs;font-style:normal;font-weight:400;font-display:swap;src:url(../webfonts/YakuHanJPs-Regular.woff2) format("woff2");unicode-range:U+3008,U+3009,U+300a,U+300b,U+300c,U+300d,U+300e,U+300f,U+3010,U+3011,U+3014,U+3015,U+ff08,U+ff09,U+ff3b,U+ff3d,U+ff5b,U+ff5d}
@font-face{font-family:YakuHanJPs;font-style:normal;font-weight:700;font-display:swap;src:url(../webfonts/YakuHanJPs-Bold.woff2) format("woff2");unicode-range:U+3008,U+3009,U+300a,U+300b,U+300c,U+300d,U+300e,U+300f,U+3010,U+3011,U+3014,U+3015,U+ff08,U+ff09,U+ff3b,U+ff3d,U+ff5b,U+ff5d}

@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;
}
body {
  font-family: YakuHanJPs, 'noto-sans-jp', sans-serif !important;
}

/* title
---------------------------------------------------------------- */
/* トップページタイトル */
.ttl-top {
  font-size: var(--fs-ttl-top);
  text-align: center;
  margin-bottom: 1em;
}
.ttl-top span {
  display: block;
}
.ttl-top .sub {
  font-size: 0.35em;
}

/* 吹き出し */
.ttl-balloon-01 {
  position: relative;
  font-size: var(--fs-ttl-m);
  padding: 0.8em 1em;
  color: var(--white);
  border-radius: 10px;
  background: var(--cl-main);
  margin-bottom: 1.5em;
}
.ttl-balloon-01::after {
  position: absolute;
  bottom: -9px;
  left: 1.5em;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: var(--cl-main) transparent transparent transparent;
}
.ttl-balloon-02 {
  position: relative;
  font-size: var(--fs-ttl-m);
  padding: 0.8em 1em;
  border: 3px solid #d8d8d8;
  border-radius: 10px;
  background: #f9f9f9;
  margin-bottom: 1.5em;
}
.ttl-balloon-02::before,
.ttl-balloon-02::after {
  position: absolute;
  content: '';
  left: 1.5em;
  width: 0;
  height: 0;
  border-width: 14px 12px 0 12px;
  border-style: solid;
}
.ttl-balloon-02::before {
  bottom: -14px;
  border-color: #d8d8d8 transparent transparent transparent;
}
.ttl-balloon-02::after {
  bottom: -10px;
  border-color: #f9f9f9 transparent transparent transparent;
}

/* わいわい */
.ttl-waiwai {
  position: relative;
}
.ttl-waiwai::before {
  content: '＼';
  margin-right: 0.2em;
}
.ttl-waiwai::after {
  content: '／';
  margin-left: 0.2em;
}

/* ttl-01~ttl-08はcommon/style.cssに記載 */

/* text
---------------------------------------------------------------- */
.text-lead {
  font-size: var(--fs-ttl-s);
  font-weight: bold;
}

/* box
---------------------------------------------------------------- */
.box-basic {
  padding: 2em 1.5em;
  border: var(--gray03) 2px solid;
  background: var(--white);
}
.box-none {
  padding: 2em 1.5em;
  border: var(--l-gray) 4px solid;
  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 6 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-main);
  text-align: right;
}

/* 外部リンクアイコン */
.ex-link {
  position: relative;
  padding-right: 1.2em;
}
.ex-link::after {
  font-family: 'Font Awesome 6 Free';
  content: '\f35d';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 900;
  font-size: 0.8em;
}

/* header
---------------------------------------------------------------- */
.d-none {
  display: none;
}
.header {
  position: sticky;
  background: var(--white);
  border-bottom: 1px solid var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 0 0 10px;
  z-index: 10;
  top: 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.header-logo {
  text-indent: -9999px;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-logo a {
  display: block;
}
.header-logo a img {
  display: block;
  width: 400px;
  height: inherit;
  padding: 0.2em 0.5em;
}
.header-logo a:last-child img {
  border-left: 0px solid var(--gray03);
}
.header-contents-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.header-contents-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.header-menu-upper {
  height: 55%;
}
.nav-global {
  /* height: 45%; */
}
.header-contents-inner a {
  color: var(--black);
}
.header-cta {
  height: 100%;
}
.header-cta-btn {
  display: flex;
  align-items: center;
  height: 100%;
  background: var(--cl-accent);
  color: var(--white);
  padding: 1em 1.5em;
  font-weight: bold;
}
.header-menu-upper li {
  padding: 0 0.4em;
  display: inline-block;
}
.header-menu-upper li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: var(--fs-notes);
  position: relative;
}
/* .header-menu-upper li a:after {
  content:'';
  width:0;
  height:2px;
  background: var(--cl-accent);
  position: absolute;
  bottom:12px;
  transition: 0.3s ease-in-out;
} */
.header-menu-upper li a:hover:after {
  width:100%;
}
.header-sp-tel-btn-wrap {
  display: none;
}
.header-sp-tel-btn-wrap.is-active {
  display: flex;
}
.header-tel-btn {
  display: flex !important;
  align-items: center;
}
.header-tel-btn > div > a {
  padding: 0.15em 1.5em;
  background: var(--gray04);
  border: transparent 2px solid;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  font-weight: bold;
  color: var(--black);
}
.header-tel-btn > div > a:before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: var(--fs-ttl-xs);
  padding-right: 0.2em;
  color: var(--cl-main);
  line-height: 1.1;
}
.header-sp-tel-btn a:before {
  font-family: 'Font Awesome 6 Free';
  color: var(--cl-main);
  font-size: var(--fs-ttl-l);
  line-height: 1.1;
}
.header-tel-btn > div > a:before,
.header-sp-tel-btn a:before {
  content: '\f199';
}
.header-sp-tel-btn {
  color: var(--black);
  display: flex;
  padding-top: 0.2em;
}
.header-sp-tel-btn a {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 0.5em;
  font-size: var(--fs-notes);
  font-weight: bold;
  text-wrap: nowrap;
}
@media only screen and (max-width: 1024px) {
  .header {
    position: fixed;
  }
}
@media only screen and (max-width: 380px) {
  .header {
    padding: 0;
  }
  .header-logo a {
    width: 150px;
  }
  .header-logo a img {
    width: 180px;
    padding: 0.2em 0.3em;
  }
  .header-sp-tel-btn a {
    text-wrap: wrap;
  }
}

/* 閲覧支援・アクセシビリティ関連
---------------------------------------------------------------- */
/* アクセシビリティセッティングボタン */
.accessibility-set-btn {
  position: fixed;
  padding: 0.3em;
  border: 1px solid var(--black);
  background: var(--white);
  width: 420px;
  z-index: 10;
  right: 2rem;
  transition: 0.2s ease-in-out;
  display: none;
  top: 50px;
}
.accessibility-set-btn.accessibility-set-btn-height-sp {
  top: 80px;
}
.accessibility-set-btn.is-open {
  display: block;
  z-index: 120;
}
.accessibility-set-btn * {
  font-size: var(--fs-notes);
}
.accessibility-set-btn p {
  padding: 0 0.2em;
}
.accessibility-set-btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3em 0.55em;
  margin-inline: 0.3em;
  width: 30px;
  height: 30px;
  transition: 0.2s ease-in-out;
}
.accessibility-set-btn button:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 440px) {
  .accessibility-set-btn {
    width: 100%;
    height: calc(100vw - var(--header-height));
    right: 0;
    border: none;
  }
  .accessibility-set-btn.is-open {
    z-index: 9;
  }
  .accessibility-set-btn > div {
    flex-wrap: wrap;
    align-items: flex-start;
    height: auto;
  }
  .accessibility-set-btn p {
    width: 100%;
    font-weight: bold;
    margin-top: 1em;
    display: flex;
  }
}

.acc-box a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px min(32px, 8%);
  border: var(--gray03) 3px solid;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.acc-fixed-area {
  padding: 1em 1em 3em 1em;
  margin-top: 1.5em;
}
.acc-box .ttl-06 {
  margin: 0 0 0.5em 0;
}

/* 文字サイズ */
.acc-wrap-fs .acc-box.acc-s .ttl-06 {
  font-size: 16.5px;
}
.acc-wrap-fs .acc-box.acc-s .txt {
  font-size: 12px;
}
.acc-wrap-fs .acc-box.acc-m .ttl-06 {
  font-size: 22px;
}
.acc-wrap-fs .acc-box.acc-m .txt {
  font-size: 16px;
}
.acc-wrap-fs .acc-box.acc-l .ttl-06 {
  font-size: 27.5px;
}
.acc-wrap-fs .acc-box.acc-l .txt {
  font-size: 16px;
}

/* 色 */
.acc-wrap-cl .acc-box .acc-fixed-area,
.acc-wrap-cl .acc-box .acc-fixed-area * {
  background: var(--acc-fixed-color-bg) !important;
  color: var(--acc-fixed-color-font) !important;
}
.acc-wrap-cl .acc-box .btn {
  background: var(--acc-fixed-color-bg);
  color: var(--acc-fixed-color-link);
  border: var(--acc-fixed-color-font) 1px solid;
}
.acc-wrap-cl .acc-box .btn::before {
  color: var(--acc-fixed-color-font);
}
.acc-wrap-cl .acc-box .ttl-06::before {
  background: var(--acc-fixed-color-font) !important;
}
.acc-wrap-cl .acc-box.acc-w {
  --acc-fixed-color-bg: var(--white);
  --acc-fixed-color-font: var(--black);
  --acc-fixed-color-link: var(--black);
}
.acc-wrap-cl .acc-box.acc-w .btn {
  background: var(--cl-main);
  color: var(--white);
  border: transparent 1px solid;
}
.acc-wrap-cl .acc-box.acc-w .btn::before {
  color: var(--white);
}
.acc-wrap-cl .acc-box.acc-w .ttl-06::before {
  background: var(--cl-main);
}
.acc-wrap-cl .acc-box.acc-bl {
  --acc-fixed-color-bg: var(--ac-blue);
  --acc-fixed-color-font: var(--ac-yellow);
  --acc-fixed-color-link: var(--white);
}
.acc-wrap-cl .acc-box.acc-y {
  --acc-fixed-color-bg: var(--ac-yellow);
  --acc-fixed-color-font: var(--black);
  --acc-fixed-color-link: var(--ac-l-blue);
}
.acc-wrap-cl .acc-box.acc-bk {
  --acc-fixed-color-bg: var(--black);
  --acc-fixed-color-font: var(--ac-yellow);
  --acc-fixed-color-link: var(--white);
}

/* global nav */
.nav-global {
}
.nav-global-list {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: flex-end;
}
.nav-global-list li {
  height: inherit;
}
.nav-global-list .menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  padding: 0.6em 0.75em;
  height: 100%;
}
a.menu-item{
  position: relative;
}
/* a.menu-item:before{
  content:'';
  display: inline-block;
  position: absolute;
  width:0;
  height:1px;
  background: var(--black);
  border-bottom:2px solid var(--cl-accent);
  transition: 0.3s ease-in-out;
  bottom:5px;
} */
a.menu-item:hover:before{
  width:100%;
}
/* button.menu-item:before{
  content:'';
  display: inline-block;
  width:8px;
  height:8px;
  border-radius: 50%;
  background: var(--cl-accent);
  position: absolute;
  bottom:-10px;
  opacity:0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
} */
button.menu-item:has(+ .nav-global-dropdown-area.is-open):before{
  bottom:2px;
  opacity:1;
  visibility: visible;
}
.nav-global-list > li > a > span {
  position: relative;
  display: inline-block;
}
.nav-global-list .menu-item:hover {
  opacity: 1;
  color: var(--cl-main);
}
.nav-global-dropdown-area {
  visibility: hidden;
  position: absolute;
  top: calc(var(--header-height));
  left: 0;
  right: 0;
  margin: auto;
  background:var(--cl-accent);
  border-bottom: transparent 2px solid;
  color: var(--white);
  width: 100%;
  height: auto;
  min-height: 40vh;
  padding: 5em min(3em, 3%) 9em;
  opacity: 0;
  overflow-y: auto;
  transition: 0.3s all;
}
.nav-global-dropdown-area.is-open {
  visibility: visible;
  opacity: 1;
}
.nav-global-dropdown-area a {
  color: var(--white);
}
.dropdown-menu-ttl {
  position: relative;
  font-size: var(--fs-ttl-l);
  font-weight: bold;
  text-align: center;
  padding: 0 0 1em 0;
  margin: 0 0 2em 0;
}
.dropdown-menu-ttl::after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: var(--white);
  width: 40px;
  height: 1px;
  transform: translateX(-50%);
}
.nav-global-dropdown-area .dropdown-menu .dropdown-menu-item {
  position: relative;
  font-size: var(--fs-lead);
  font-weight: bold;
  background: transparent !important;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.76em 1.5em 0.76em 2.5em;
  border-bottom: 1px solid var(--white);
  text-align: left;
  box-shadow: none;
}
.nav-global-dropdown-area .dropdown-menu .dropdown-menu-item::before {
  position: absolute;
  font-family: 'Font Awesome 6 Free';
  content: '\f054';
  font-weight: 900;
  font-size: 0.8em;
  top: 50%;
  left: 1em;
  margin-left: 0.1em;
  transform: translateY(-50%);
  transition: 0.3s all;
}

/* ハンバーガーボタン */
.btn-hamburger {
  width: var(--hamburger-width);
  height: var(--hamburger-width);
  z-index: 99;
  padding: 5px;
  margin-top: -1px;
}
.btn-hamburger button {
  position: relative;
  width: 100%;
  height: 100%;
}
.btn-hamburger button::after {
  position: absolute;
  content: 'メニュー';
  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: '閉じる';
}
.btn-hamburger button span {
  background-color: var(--cl-main);
  content: '';
  display: block;
  width: 70%;
  height: 2px;
  left: calc(50%);
  position: absolute;
  top: 40%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 50% 50%;
  transition: all 0.4s;
}
.btn-hamburger button span:before,
.btn-hamburger button span:after {
  background-color: var(--cl-main);
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  transition: all 0.4s;
}
.btn-hamburger button span:before {
  top: 10px;
  width: 50%;
}
.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);
  width: 100%;
}
.btn-hamburger button.is-active span:after {
  top: 0;
  transform: rotate(-45deg);
}

@media only screen and (max-width: 1024px) {
  .btn-hamburger {
    right: 1em;
  }
  .btn-hamburger button::after{
    bottom: -0.1em
  }
  .btn-hamburger button span{
    width: 60%;
  }
}

/* mobile nav
---------------------------------------------------------------- */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  overflow: auto;
  opacity: 0;
  z-index: -999;
  margin-top: var(--header-height);
  padding-top: .5em;
  padding-bottom: 5em;
}
.nav-mobile.is-open {
  opacity: 1;
  z-index: 110;
}
.nav-mobile > div {
  padding-bottom: 5em;
}
.nav-mobile-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 99;
}
.nav-mobile-search {
  margin-top: 60px;
  padding: 1em 0;
}
.nav-mobile-inner {
  background: var(--white);
  padding: 1.5em 0 3em;
}
.nav-mobile-list > li {
  border-bottom: var(--gray03) 1px solid;
}
.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: .8em 2.5em .8em 1em;
  width: 100%;
  text-align: left;
}
.nav-mobile-list li.dropdown {
  display: flex;
  flex-wrap: wrap;
}
.nav-mobile-list li.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%;
  /*top:30px;*/
  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: 0.5em;
}
.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;
}
.nav-mobile-list .dropdown-menu li a::before {
  content: '';
  border-top: 1px solid var(--cl-main);
  border-right: 1px solid var(--cl-main);
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  transition: 0.3s;
  transform: rotate(45deg);
}

/* footer
---------------------------------------------------------------- */
.footer {
  width: 100%;
  padding-bottom: 2em;
}
.footer-upper dl dt {
  margin: 0 1em;
}
.footer-upper-logo-links > * {
  margin-left: 1em;
}
.footer-upper-l a {
  display: inline-block;
  text-decoration: underline;
}
.footer-upper-l-add {
  margin: 0 1em 0 2em;
}
.footer-upper-l a[target='_blank']::after {
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  margin-left: 0.3em;
  content: '\f08e';
  font-weight: 900;
  color: var(--cl-main);
}
.footer-logo a {
  display: inline-block;
  width: 200px;
  height: inherit;
}
.footer-under {
  border-top: 1px solid var(--gray03);
}
.footer-under-links {
  margin-left: 3rem;
}
.footer-under-logo img{
  width:180px;
}
.footer-copyright {
  font-size: 1.2rem;
  padding: 1em 0;
}
.footer-under-links li {
  margin-left: 1em;
}
.footer-under-links a {
  padding: 0.5em;
  text-decoration: underline;
  display: inline-block;
  font-size: var(--fs-default);
}
.footer-under-links a::before {
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  margin-right: 0.3em;
  content: '\f054';
  font-weight: 900;
  color: var(--cl-main);
}
.footer-under-links a[target='_blank']::after {
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  margin-left: 0.3em;
  content: '\f08e';
  font-weight: 900;
  color: var(--cl-main);
}
.footer-under-links a[target='_blank']::before {
  display: none;
}

/*sns*/
.sns-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 3em;
}
.sns-link-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding: 1em 0.5em;
}
.sns-link-item a img {
  width: 4rem;
}
@media only screen and (max-width: 768px) {
  .sns-link-list {
    gap: 1em;
  }
  .sns-link-item {
    width: calc((100% - 1em) / 2);
  }
  .sns-link-item a {
    max-width: 200px;
  }
  .sns-link-list .sns-link-item:nth-of-type(2n-1) a {
    margin-left: auto;
  }
  .sns-link-list .sns-link-item:nth-of-type(2n-1):last-child a {
    margin-right: auto;
  }
}

@media only screen and (max-width: 1024px) {
  .footer-logo {
    text-align: center;
  }
  .footer-under-wrap {
    display: block;
  }
  .footer-under-links {
    margin-left: 0;
  }
  .footer-under-links li {
    margin-left: 0.1em;
  }
}
@media only screen and (max-width: 699px) {
  .footer {
    padding: 1em !important;
    margin-top: 0 !important;
  }
  .footer-upper .b-wrapper {
    padding: 0;
  }
  .footer-upper-logo-links > * {
    margin-left: 0;
  }
  .footer-upper-l {
    display: block;
  }
  .footer-upper-l-add {
    margin-top: 1em;
  }
  .footer-upper-r {
    display: block;
  }
  .footer-upper-r dl {
    justify-content: flex-end;
  }
  .footer-under {
    margin-top: 1em !important;
  }
  .footer-under-logo {
    padding-top: 1em;
    text-align: center;
  }
  .footer-under-wrap {
    margin-top: 0 !important;
  }
  .footer-under-wrap > div {
    display: block;
  }
  .footer-copyright{
    text-align: center;
  }
  .footer-under-links a {
    font-size:var(--fs-notes);
  }
}
@media only screen and (max-width: 480px) {
  .footer-upper dl dt{
    font-size:var(--fs-notes);
  }
}
@media only screen and (max-width: 420px) {
  .footer-upper-r dl {
    display: block;
  }
  .footer-upper-r dl dt {
    margin: 0;
  }
  .footer-upper-l-add {
    text-align: center;
  }
}

/* sitemap
---------------------------------------------------------------- */
.sitemap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
  background: var(--cl-base);
  overflow-y: auto;
  margin-top: var(--header-height);
}
.sitemap.chg-header-margin-no-exist-menu {
  margin-top: 60px;
}
.sitemap.is-open {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
.sitemap-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 0 15px;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.sitemap-inner {
  padding: 3em 0 10em;
}
.sitemap-section a {
  color: var(--black);
}
.sitemap-ttl {
  font-size: var(--fs-lead);
  padding: 0.3em 0;
  border-bottom: var(--cl-main) 1px solid;
}
.sitemap-ttl::before {
  font-family: 'Font Awesome 6 Free';
  margin-right: 0.8em;
  content: '\f054';
  font-weight: 900;
  font-size: 0.8em;
  color: var(--cl-main);
  text-align: right;
}
.sitemap-list li a::before {
  content: '';
  border-top: 2px solid var(--black);
  width: 0.6em;
  margin-right: 0.5em;
}
.sitemap-children-list {
  margin: 1em 0 0 0;
  padding-left: 0.5em;
}
.sitemap-children-list li a {
  position: relative;
  display: inline-block;
  padding: 0.5em 1em 0.5em 0;
  font-size: var(--fs-default);
}
.sitemap-children-list li a::before {
  font-family: 'Font Awesome 6 Free';
  margin-right: 0.8em;
  content: '\f054';
  font-weight: 900;
  font-size: 0.8em;
  color: var(--cl-main);
  text-align: right;
}

@media only screen and (max-width: 1024px) {
  .sitemap-header {
    padding: 10px 5px;
  }
  .col-4-2-1.col-sitemap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
  }
}
@media only screen and (max-width: 599px) {
  .sitemap-inner {
    padding: 4em 0;
  }
}

/* 波紋のアニメーション
#sitemap.is-open .sitemap-inner{
  position: relative;
  overflow-x: hidden;
}
#sitemap.is-open .sitemap-inner:before{
  content:'';
  display: block;
  position: fixed;
  bottom:0;
  right:-2em;
  opacity: 1;
  border: 1px solid var(--cl-main);
  background: var(--cl-accent);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  animation:15s circleanime2 infinite;
}

#sitemap.is-open .sitemap-inner:after{
  content:'';
  display: block;
  position: fixed;
  bottom:0;
  right:0;
  opacity: 1;
  border: 1px solid var(--cl-main);
  background: var(--cl-main);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  animation:10s circleanime2 infinite;
}
@keyframes circleanime2{
0%{
  transform: scale(0);
}
50%{
  transform: scale(0);
}
100%{
  transform:scale(2);
  opacity: 0;
}
}*/

/* 検索フォーム
---------------------------------------------------------------- */
.form-search {
  position: relative;
  width: 100%;
  background: var(--gray05);
  border-radius: 100vh;
  padding-left: 2.5em;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  border: transparent 2px solid;
}
.form-search form {
  background-color: transparent !important;
  border-radius: 0 100vh 100vh 0;
}
.form-search::before {
  content: '\f002';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2rem;
  color: var(--cl-main);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.form-search input[type='text'] {
  width: 72%;
  padding: 0.5em;
  font-size: var(--fs-default);
  border: none !important;
}
.form-search input[type='text']:focus-visible {
  outline: 0;
}
.form-search input[type='submit'] {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 20%;
  font-size: var(--fs-notes);
  color: var(--white);
  background: var(--cl-main);
  border: var(--cl-main) 2px solid;
  border-radius: 100vh;
  padding: 0 0.8em;
}

/* PC (modal) ------------------------------------- */
.modal-search.is-open {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.modal-search .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7) !important;
  overscroll-behavior: contain;
  overflow-y: auto;
  transition: opacity 0.5s, transform 0s 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  cursor: pointer;
}
.modal-search.is-open .overlay {
  opacity: 1;
  transition: opacity 0.5s;
  visibility: visible;
}
.btn-search-close {
  position: absolute;
  top: 1em;
  right: 1em;
  width: var(--hamburger-width);
  height: var(--hamburger-width);
  z-index: 99;
  padding: 5px;
  margin-top: -1px;
  display: none;
}
.btn-search-close.is-active {
  display: block;
}
.btn-search-close button {
  position: relative;
  width: 100%;
  height: 100%;
}
.btn-search-close button::after {
  position: absolute;
  content: '閉じる';
  font-size: 1rem;
  font-weight: bold;
  color: var(--black);
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
}
.btn-search-close button span {
  background-color: transparent;
  content: '';
  display: block;
  width: 70%;
  height: 2px;
  left: calc(50%);
  position: absolute;
  top: 40%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 50% 50%;
  transition: all 0.4s;
}
.btn-search-close button span:before,
.btn-search-close button span:after {
  background-color: var(--cl-main);
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  transition: all 0.4s;
}
.btn-search-close button span:before {
  top: 0;
  transform: rotate(45deg);
  width: 100%;
}
.btn-search-close button span:after {
  top: 0;
  transform: rotate(-45deg);
}
.modal-search-box {
  position: relative;
  background: var(--white);
  width: 96%;
  max-width: 768px;
  border-radius: 10px;
  transition: 0.5s;
  align-self: flex-start;
  padding: 2em 2em 4em 2em;
  margin-top: 10%;
  cursor: default;
  border: transparent 1px solid;
}
.modal-search.is-open .overlay .modal-search-box {
  transform: translateY(20px);
}
.modal-search-ttl {
  font-size: var(--fs-ttl-s);
  text-align: center;
}

/* SP ------------------------------------- */
.mobile-form-search-area {
  display: none;
  padding: 1.5em 0 1em;
}

/* 検索結果
---------------------------------------------------------------- */
.search-results .form-search {
  max-width: 1000px;
  padding: 10px 0 10px 45px;
}
.search-results .form-search input[type='text'] {
  font-size: var(--fs-lead);
}
.search-results .form-search input[type='submit'] {
  font-size: var(--fs-lead);
  padding: 0.2em 0.8em;
}
.search-results .form-search::before {
  font-size: 2.5rem;
}
.search-results-ttl {
  margin-bottom: 1.5em;
}
.search-results-ttl .small {
  display: inline-block;
  font-size: 0.7em;
  margin-left: 0.5em;
}
.search-results-area {
  padding: var(--wrap-pd-s) 0;
  border-top: var(--gray03) 3px solid;
  border-bottom: var(--gray03) 2px solid;
}
.search-results-content {
  padding: 35px 0;
}
.search-results-content + .search-results-content {
  border-top: var(--gray03) 1px solid;
}
.search-results-content a {
  text-decoration: underline;
  color: var(--cl-main);
}
.search-results-content a:hover {
  opacity: 1;
}
.search-results-content p {
  font-size: var(--fs-notes);
  margin-top: 10px;
}
.search-results-content p strong {
  color: var(--cl-main);
  background: var(--l-red2);
  padding: 0.3em 0.5em;
}
.search-results-url {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.search-results-icon {
  display: inline-block;
  padding: 0 1em;
  font-size: 1.4rem;
  border: 1px var(--black) solid;
  border-radius: 4px;
}

/* ページャー */
.search-results-pagination {
  margin-top: var(--wrap-pd-s);
}
.search-results-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.search-results-pagination ul li :where(a, span) {
  border: 1px solid var(--gray03);
  padding: 0.3em 0.7em;
  margin: 0.2em;
  border-radius: 4px;
  display: inline-block;
}
.search-results-pagination ul li span {
  font-weight: bold;
  background: var(--cl-main);
  color: var(--white);
  border: 1px solid var(--cl-main);
}
.search-results-pagination ul :where(li.prev, li.next) a {
  background: var(--gray04);
  border: transparent 1px solid;
}
.search-results-pagination ul :where(li.prev, li.next) a::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: block;
  width: 1em;
}
.search-results-pagination ul li.prev a::before {
  content: '\f053';
}
.search-results-pagination ul li.next a::before {
  content: '\f054';
}

/* サイド固定ボタン
---------------------------------------------------------------- */
.side-btn-list {
  text-align: center;
  list-style-type: none;
}
.side-btn-list li {
  min-width: 97px;
}
.side-btn-list li p {
  line-height: 1.3;
}
.side-btn-list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 10px;
  min-height: 110px;
  /* padding: 0.6em 0.4em; */
  padding: 0.4em 0.2em;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-sizing: border-box;
  gap: 5px;
}
.side-btn-list .item:hover {
  opacity: 1;
}
.side-btn-list .item-01 {
  background: var(--green01);
  border: 1px solid var(--green01);
}
.side-btn-list .item-02 {
  background: var(--green02);
  border: 1px solid var(--green02);
}

/* PC ------------------------------------- */
.side-btn-wrap .side-btn-list {
  position: fixed;
  /*top: calc((100vh - var(--header-height)) / 2 - 1em);*/
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 8;
  margin-block-start: 0;
  margin-block-end: 0;
  background: transparent !important;
  animation: sideBtnDisplay 1s ease-in-out forwards;
  transition: all 0.3s;
  opacity:0;
}

@keyframes sideBtnDisplay {
  0% {
    opacity:0;
  }
  80% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
.side-btn-wrap .side-btn-list li {
  border-radius: 6px;
}
.side-btn-wrap .side-btn-list .item {
  border-radius: 6px;
  width: 100%;
}
.side-btn-wrap .btn-search-icon {
  background: transparent !important;
}
.side-btn-wrap .side-btn-list .item p {
  font-size: 1.3rem;
}
.side-btn-wrap .side-btn-list .item img {
  max-width: 40px;
}
/* SP ------------------------------------- */
.side-btn-wrap-mobile .side-btn-list {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: auto;
  gap: 1em;
}
.side-btn-wrap-mobile .side-btn-list li {
  flex: 1;
  max-width: 120px;
}
.side-btn-wrap-mobile .side-btn-list .item {
  width: 100%;
  height: 100%;
}
.side-btn-wrap-mobile .side-btn-list .item p {
  font-size: var(--fs-default);
  margin-top: 0.4em;
}
.side-btn-wrap-mobile .side-btn-list .item img {
  max-width: 40%;
}
@media only screen and (max-width: 599px) {
  .side-btn-list .item{
    min-height: 90px;
  }
  .side-btn-wrap-mobile .side-btn-list li{
    max-width: 110px;
  }
  .side-btn-wrap-mobile .side-btn-list {
    gap: 0.5em;
  }
  .side-btn-wrap-mobile .side-btn-list .item img {
    max-width: 35%;
  }
  .side-btn-wrap-mobile .side-btn-list .item p {
    font-size: var(--fs-notes);
    margin-top: 0;
  }
  .side-btn-wrap-mobile .side-btn-list .item p span{
    font-size: 1rem;
  }
}

/* メインコンテンツ
---------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .main-contents {
    margin-top: var(--header-height);
  }
}

/* トップページ Top
---------------------------------------------------------------- */
/* トップ動画 ------------------------------------- */
#top-video-area {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height) + 1px);
  overflow: hidden;
  border-bottom: 1px solid var(--white);
}
/* #top-video-area.sp-height {
  height: calc(100vh - 60px);
} */
@media only screen and (max-width: 1024px) {
  #top-video-area.sp-height {
    margin-top: var(--header-height);
  }
}
#top-video-area video,
#top-video-area iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; 
  height: 56.25vw; 
  min-height: 100vh;
  min-width: 177.78vh;
}
#top-video-area:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  background-position:center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: backgroundChange 2s ease-in-out forwards;
  transition: all 0.3s;
}

@keyframes backgroundChange {
  from {
    background: rgba(0, 0, 0, 0.4), url(../images/common/main-thum.jpg);
  }
  to {
    background: rgba(0, 0, 0, 0.1);
  }
}
#top-video-area > div > p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--white);
  font-size: 4.4rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
#top-video-area > div > p span {
  display: inline;
  border-bottom: 0px solid var(--white);
}
.ttl-link-block {
  position: relative;
}
.ttl-link-block .btn-text-link {
  position: absolute;
  right: 0;
  top: 0.5em;
}
@media only screen and (max-width: 599px) {
  .ttl-link-block .btn-text-link {
    top: .3em;
    font-size:var(--fs-notes);
}

  
}
@media only screen and (max-width: 1024px) {
  #top-video-area > div > p {
    font-size: 4rem;
    top: 40%;
  }
}
@media only screen and (max-width: 599px) {
  #top-video-area > div > p {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 480px) {
  #top-video-area > div > p {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 340px) {
  #top-video-area > div > p {
    font-size: 1.6rem;
  }
} 
/* トップメインスライダー ------------------------------------- */
.top-hero-splide-wrap {
  height: fit-content;
}
.splide-top{
  width: 100%;
  border-bottom: 1px solid var(--white);
  /* height: calc(100vh - var(--header-height) + 1px); */
  height: auto;
}
/* .splide-top .splide__track, 
.splide-top .splide__list, 
.splide-top .splide__slide,
.splide-top .splide__slide a{
  height: 100%!important;
} */
.splide-top .splide__slide a{
  display: block;
  text-align: center;
}
.splide-top .splide__slide img {
  /* height: 100%;
  width: auto;
  min-width: 100%;
  min-height: 100%; */
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.slide-btm-mb {
  margin-bottom: 120px;
}
.splide-top .splide-option {
  left: 50%;
  bottom: -80px;
}
.splide-top .splide__arrows {
  right: 51%;
  left: auto;
  bottom: -78px;
}

@media only screen and (max-width: 1024px) {
  .top-hero-splide-wrap {
    margin-top: var(--header-height);
  }
  .splide-top .splide-option {
    left: 48%;
  }
  .splide-top .splide__arrows {
    right: 54%;
  }
}
@media only screen and (max-width: 480px) {
  .slide-btm-mb {
    margin-bottom: 100px;
  }
  .splide-top .splide-option {
    left: 44%;
    bottom: -68px;
  }
  .splide-top .splide__arrows {
    bottom: -66px;
    right: 58%;
  }
}

/* top-hero ------------------------------------- */
.top-hero {
  width: 100%;
  line-height: 1.4;
  background-size: cover;
  padding-top: 36%;
  background: url(https://placehold.jp/2000x720.png) center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
@media only screen and (max-width: 1024px) {
  .top-hero {
    padding-top: 80%;
    min-height: unset;
  }
}
@media only screen and (max-width: 599px) {
  .top-hero {
    padding-top: 100%;
  }
}

/* トップページ、メインコンテンツ
---------------------------------------------------------------- */
.index-page{
  margin-top:0;
}
.index-page .pd-tb-s:first-child{
  /* padding-top:0; */
}

/* 重要なお知らせ
---------------------------------------------------------------- */
.news-block-wrap .news-block {
  display: block;
  position: relative;
}
.news-block-wrap dl {
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-bottom: 1px solid var(--gray03);
}
.news-block-wrap dl dt time {
  font-size: var(--fs-notes);
}
.news-block-wrap dl dd {
  padding-left: 30px;
}
.news-block-wrap dl dd h3 {
  font-weight: normal;
  font-size: var(--fs-default);
}
.news-block-wrap .cat-label {
  position: relative;
  top: 0;
  left: 0;
  font-size: var(--fs-notes);
  color: var(--white);
  padding: 0.2em;
  min-width: 100px;
  text-align: center;
  display: block;
  background: var(--cl-main);
  margin-right: 10px;
}
@media only screen and (max-width: 1024px) {
  .news-block-wrap dl {
    display: block;
  }
  .news-block-wrap dl dd {
    margin-top: 0.5em;
    padding-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  .news-block-wrap .cat-label {
    margin-left: 0;
    padding: 0.3em 0.3em;
    min-width: 80px;
  }
}
.news-imp-block {
  padding: 2em 1em;
  background: var(--l-red);
  border: 2px solid var(--red);
  border-radius: 6px;
}
.news-imp-block .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1024px;
}
.news-imp-ttl {
  position: relative;
  font-size: var(--fs-default);
  padding: 0.5em 1em;
  border-radius: 100vh;
  background: var(--red);
  color: var(--white);
  display: inline-block;
}
.news-imp-block .news-block-wrap {
  width: 80%;
  border-radius: 8px;
}
.news-imp-block .news-block-wrap dt {
  font-weight: normal;
}
.news-imp-block .news-block:before {
  display: none;
}
.news-imp-block .cat-label {
  background: var(--red);
  border: 1px solid var(--red);
}
@media only screen and (max-width: 1024px) {
  .news-imp-block {
    padding: 1em;
  }
  .news-imp-block .inner {
    display: block;
    max-width: 768px;
  }
  .news-imp-block h2 {
    display: block;
    text-align: center;
    width:180px;
    margin-inline: auto;
  }
  .news-imp-block .news-block-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .news-imp-block .cat-label {
    min-width: 60px;
  }
}
/* 6つの写真リンク ------------------------------------- */
[class*='top-col01-bnr-'] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 6em 0;
  text-align: center;
}
[class*='top-col01-bnr-'] img {
  width: 20%;
  max-width: 126px;
}
.top-col01-bnr-01 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/top/top_photo01.jpg);
}
.top-col01-bnr-02 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/top/top_photo02.jpg);
}
.top-col01-bnr-03 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/top/top_photo03.jpg);
}
.top-col01-bnr-04 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/top/top_photo04.jpg);
}
.top-col01-bnr-05 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/top/top_photo05.jpg);
}
.top-col01-bnr-06 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/top/top_photo06.jpg);
}
.top-col01 {
  row-gap: 6rem;
  column-gap: 0;
}
.top-col01-btn {
  position: relative;
  width: 90%;
  padding: 0.7em 1.7em 0.7em 0.7em;
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  margin-top: -1.6em;
  background: var(--white);
  border: 1px solid var(--white);
  margin-left: auto;
  margin-right: auto;
  font-size: var(--fs-lead);
  box-shadow: var(--shadow2);
}
.top-col01-btn:after {
  font-family: 'Font Awesome 6 Free';
  content: '\f138';
  font-weight: 900;
  position: absolute;
  right: 0.7em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cl-main);
  font-size: var(--fs-lead);
}
@media only screen and (max-width:1024px) {
  .top-col01-btn {
    font-size:var(--fs-default);
  }
  [class*='top-col01-bnr-']{
    padding: 4em 0;
  }
}
@media only screen and (max-width:700px) {
  .top-col01-btn {
    font-size:var(--fs-notes);
  }
}
@media only screen and (max-width: 599px) {
  .top-col01{
    row-gap: 0;
  }
  .top-col01-btn {
    margin-bottom: 1.5em;
    padding: 0.5em 1.5em 0.5em 0.5em;
  }
  .top-col01-btn:after{
    right: 0.2em;
    font-size:var(--fs-default);
  }
  [class*='top-col01-bnr-']{
    padding: 2em 0;
  }
  [class*='top-col01-bnr-'] img{
    width: 25%;
  }
}
/* ご来院の方へ ------------------------------------- */
/*時間を表す2カラム*/
.top-guide-wrap{
  background-color: var(--white);
  padding: 1em;
  box-shadow: var(--shadow2);
}
.top-guide :where(h3,h4){
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  min-width: 6em;
  height: auto;
  padding: 2em 0.5em;
}
.top-guide h3{
  background-color: var(--cl-base);
  color: var(--cl-main);
}
.top-guide h4{
  background-color: var(--gray05);
  font-size: var(--fs-lead);
}
.top-guide div{
  width: 100%;
  height: auto;
  display: flex;
  gap:10px;
  flex-direction: row;
}
.top-guide .guide-heading > div{
  height: 100%;
}
.top-guide > div + div{
  margin-top: 10px;
}
.top-guide .guide-heading,
.top-guide .guide-info,
.top-guide .guide-info > div{
  flex-direction: column;
}
.top-guide .guide-info > div{
  width: 100%;
  height: 100%;
  gap: 0;
  border: 1px solid var(--gray03);
  padding: 0.5em 1em;
  justify-content: center;
}
.top-guide-wrap .free-text a{
  text-decoration: underline;
}

.top-guide-wrap .free-text ol{
  list-style: none;
  counter-reset: number;
}
.top-guide-wrap .free-text ul li {
  padding-left: 1.1em;
}
.top-guide-wrap .free-text :where(ul, ol) li {
  position: relative;
  list-style-type: none;
  padding-left: 1.7em;
  line-height: 1.7;
  font-size: var(--fs-default);
}
.top-guide-wrap .free-text :where(ol, ul) li:before{
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
}
.top-guide-wrap .free-text ol li:before {
  counter-increment: number;
  content: counter(number) '. ';
  color: var(--cl-main);
  font-weight: bold;
  min-width: 20px;
}
.top-guide-wrap .free-text ul li:before {
  top: 1rem;
  background: var(--cl-main);
  width: 7px;
  height: 7px;
  border-radius: 100vh;
}

/*リンクの3カラム*/
.top-visitor {
  background: var(--white);
  font-weight: bold;
  padding-right: 2em;
  position: relative;
  border-radius: 6px;
  box-shadow: var(--shadow2);
}
.top-visitor:after {
  font-family: 'Font Awesome 6 Free';
  content: '\f138';
  font-weight: 900;
  position: absolute;
  right: 0.7em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cl-main);
  font-size: var(--fs-lead);
}
.top-visitor img {
  border-radius: 4px 0 0 4px;
  width: 38%;
}
.top-visitor p {
  padding-left: 1em;
}
@media only screen and (max-width: 599px) {
  .top-guide > div{
    flex-direction: column;
  }
  .top-guide h3{
    width: 100%;
    padding: 0.5em;
  }
  .top-guide h4{
    min-width: 4.5em;
  }
  .top-guide .guide-info > div{
    padding: 0.5em;
  }
}
/* 診療科を探す ------------------------------------- */
.mokuji-btn-col.grid-col {
  --row-gap: max(1em, 20px);
  --col-gap: max(1em, 20px);
}
/* ピックアップ ------------------------------------- */
.pickup-blocks a{
  padding:1em;
  border-radius: 6px;
  box-shadow: var(--shadow2);
}
@media only screen and (max-width: 599px) {
  .pickup-blocks a p{
    font-size:var(--fs-notes);
  }
}

/* 採用情報 ------------------------------------- */
.top-col03-btn {
  position: relative;
  width: 90%;
  padding: 0.5em 1.7em 0.5em 0.7em;
  font-weight: bold;
  margin-top: -1.6em;
  background: var(--white);
  margin-left: auto;
  margin-right: auto;
  font-size: var(--fs-lead);
  box-shadow: var(--shadow2);
  border: 1px solid var(--white);
}
.top-col03-btn:after {
  font-family: 'Font Awesome 6 Free';
  content: '\f138';
  font-weight: 900;
  position: absolute;
  right: 0.7em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cl-main);
  font-size: var(--fs-lead);
  transition: all 0.3s;
}
.top-recruit-block {
  margin-top: -280px;
}
.top-recruit-block a:hover {
  opacity: 1;
}
.top-recruit-block a:hover .top-col03-btn {
  border: 1px solid var(--cl-main);
}
.top-recruit-block a:hover .top-col03-btn:after {
  right: 0.2em;
}
.top-recruit-none {
  width: 100%;
  max-width: 1000px;
  min-height: 200px;
  margin: auto;
  background: rgba(333, 333, 333, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
  border-radius: 8px;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 599px) {
  .top-splide-block.b-wrapper {
    padding: 0;
  }
  .top-col03-btn{
    font-size: var(--fs-default);
    /* padding: .3em 1.5em .3em .5em;
    text-align: center; */
  }
  .top-col03-btn:after{
    right: 0.7em;
    font-size: var(--fs-notes);
    top: 55%;
  }
}
/* トップスライダー（splide） ------------------------------------- */
.splide01 {
  padding-bottom: 4em;
}
.splide02 {
  padding-bottom: 3em;
}
.splide:not(.is-overflow) {
  padding-bottom: 0 !important;
}
.splide-option {
  position: absolute;
  bottom: 0;
  left: 6.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.splide__slide a p{
  font-size: var(--fs-ttl-s);
  line-height: 1.2;
  color: var(--cl-main);
  font-weight: bold;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splide01 .splide__slide a{
  display: block;
  aspect-ratio: 100/30;
}
/* ページネーション */
.splide-pagination {
  color: var(--cl-main);
  font-weight: bold;
}
/* 再生・停止ボタン */
.splide__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray04);
  width: 6em;
  border-radius: 100vh;
  border: transparent 2px solid;
  padding: 0.3em;
}
.splide__toggle span {
  align-items: center;
  position: relative;
  color: var(--black);
  border-radius: 50%;
  gap: 0.5em;
}
.splide__toggle span i {
  font-size: 1.4em;
}
.splide__toggle__play,
.splide__toggle.is-active .splide__toggle__pause {
  display: flex;
}
.splide:not(.is-overflow) .splide__toggle,
.splide:not(.is-overflow) .splide-pagination {
  display: none;
}
/* 矢印 */
.splide__arrows {
  position: absolute;
  bottom: 2px;
  left: 0;
  /* height: 3em; */
  display: flex;
  align-items: flex-end;
  gap: 1em;
}
.splide__arrow {
  position: relative;
  background: var(--cl-main);
  border: transparent 2px solid;
  width: 2.4em;
  height: 2.4em;
  opacity: 1;
  transform: none;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
.splide__arrow svg {
  fill: var(--white);
  width: 1.6em;
  height: 1.6em;
}
@media only screen and (max-width: 599px) {
  .splide__arrows {
    left: 3%;
    /* bottom: 4px; */
  }
  .splide-option {
    left: calc(3% + 6.8em);
  }
}
@media only screen and (max-width: 480px) {
  .splide__arrows {
    gap: 0.5em;
    left: 2%;
  }
  .splide__arrow {
    width: 2em;
    height: 2em;
  }
  .splide__arrow svg {
    fill: var(--white);
    width: 1.2em;
    height: 1.2em;
  }
  .splide-option {
    left: calc(3% + 5.2em);
    gap: 0.5em;
    font-size:var(--fs-notes);
  }
}





/* サブページ（共通） Sub-common
---------------------------------------------------------------- */
.sub-hero {
  padding: 80px min(1em, 3%);
  width: 100%;
  line-height: 1.4;
  background: var(--cl-base);
  background-size: cover;
}
.sub-hero h1,
.sub-hero p {
  font-size: var(--fs-ttl-m);
  font-weight: bold;
}

/* 投稿（共通）archive common
---------------------------------------------------------------- */
/* カテゴリーラベル */
.cat-label {
  position: relative;
  display: inline-block;
  text-align: center;
  background: var(--cl-main);
  color: var(--white);
  border-radius: 100vh;
  border: transparent 2px solid;
  padding: 0.1em 1.5em;
  font-size: var(--fs-default);
  font-weight: normal;
}
.cat-label.cat-important {
  border: var(--red) 2px solid;
  background: var(--red);
  color: var(--white);
}
.date-label {
  min-width: 100px;
  line-height: 1.5;
}

/* 記事カラム */
.col-archive {
  gap: 25px 15px;
}
.col-archive .col-item {
  position: relative;
}
.col-archive .cat-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--fs-notes);
  color: var(--white);
  background: var(--cl-cat);
  border-radius: 0;
  padding: 0.2em 0.5em;
}
.col-archive .thumb-img {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.col-archive .thumb-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 記事リスト */
.article-list {
  border-top: var(--gray03) 1px solid;
}
.article-list li {
  border-bottom: var(--gray03) 1px solid;
  transition: 0.3s all;
}
.article-list li a {
  display: block;
  color: var(--black);
  padding: 1em 0;
}
/*記事投稿が空の時の処理*/
.news_blank_area {
  text-align: center;
  padding: 3em 1em;
  border: 1px solid var(--gray03);
}
@media only screen and (max-width: 599px) {
  .news_blank_area {
    padding: 2em 1em;
  }
}

/* 記事日付 */
.article-date {
  position: relative;
  display: inline-block;
  color: var(--black);
  font-size: var(--fs-notes);
  font-weight: bold;
}
.article-date.update {
  margin-left: 0.5em;
}
/* 記事タイトル */
.article-ttl {
  color: var(--black);
}
.article-ttl .fa-icon {
  align-items: flex-start;
}
.article-ttl p {
  text-decoration: underline;
}
.article-ttl .topics-ttl {
  margin-left: 0.3em;
}
.article-list .article-date {
  margin-left: 0.3em;
}

/* カテゴリー、タームリスト */
.se-cat-list {
  margin-bottom: 2em;
}
.cat-list-wrap {
  position: relative;
  width: 100%;
}
.cat-list {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--fs-notes);
  padding-right: 3em;
  gap: 0.5em;
}
.cat-list li {
  text-align: center;
}
.cat-list li a {
  background: var(--gray04);
  border: 2px solid var(--gray04);
  color: var(--black);
  padding: 0.3em 2em;
  border-radius: 20px;
}
.cat-list li.current a {
  position: relative;
  background: var(--cl-main);
  border: 2px solid var(--cl-main);
  color: var(--white);
  padding: 0.3em 2em 0.3em 2.4em;
}
.cat-list li.current a span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 100vh;
  background: var(--white);
  display: inline-block;
  position: absolute;
  left: 0.7em;
  top: 40%;
}
.cat-list li.cat-important a {
  background: var(--red);
  border: 2px solid var(--red);
  color: var(--white);
}
.cat-area {
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .cat-area {
    position: relative;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .cat-area::before,
  .cat-area::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
  }
  .cat-area::before {
    width: 5%;
    left: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0) 100%);
  }
  .cat-area::after {
    width: 20%;
    right: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 85%);
  }
  .cat-list-wrap {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 1em 0 1em 1.5em;
  }
  .cat-list-wrap::-webkit-scrollbar {
    display: none;
  }
  .cat-list {
    width: max-content;
    flex-wrap: nowrap;
  }
}
@media only screen and (max-width: 599px) {
  .se-cat-list {
    margin-bottom: 1em;
  }
}

/* タグリスト */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  background: var(--l-gray);
  margin-top: 0.3em;
  border-radius: 5px;
  padding: 0.5em;
}
.tag-list li {
  padding: 0.25em;
}
.tag-list li a {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1em;
  border-bottom: var(--black) 1px solid;
  font-size: var(--fs-notes);
  color: var(--black);
}
.tag-list a::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Font Awesome 6 Free';
  font-size: 1em;
  content: '\23';
  font-weight: 900;
  color: var(--cl-main);
}

/* 投稿（共通）single common
---------------------------------------------------------------- */
.type-single .l-primary .article-inner {
  margin: auto;
}
.article-head {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.article-content {
  margin: 3em 0;
}
.article-pages {
  margin: 0 0 3em;
}

/* 投稿サイドバー（共通）sidebar common
---------------------------------------------------------------- */
.sidebar-section {
  background: var(--l-gray);
  padding: 32px 18px;
  border-radius: 8px;
  background: var(--cl-base);
}
.sidebar-follow {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.l-secondary .sidebar-section + .sidebar-section {
  margin-top: 1.5em;
}
.sidebar-section-ttl {
  font-size: var(--fs-lead);
  position: relative;
}
.sidebar-section ul li {
  list-style: none;
  margin-left: 0;
}
.sidebar-section ul li a {
  display: flex;
  align-items: flex-start;
  font-size: var(--fs-default);
  color: var(--black);
  padding: 0.8em 0;
  border-bottom: var(--gray03) 1px solid;
}
.sidebar-section ul li a span {
  padding-right: 0.1em;
  line-height: 1.8;
}
.sidebar-tag-list a {
  display: inline-block;
  color: var(--black);
  position: relative;
  padding: 0 0 0 1em;
  border-bottom: var(--black) 1px solid;
  margin-top: 10px;
}
.sidebar-tag-list a::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Font Awesome 6 Free';
  font-size: 1em;
  content: '\23';
  font-weight: 900;
  color: var(--cl-main);
}
.sidebar-section > ul > li {
  border-bottom: var(--gray03) 1px solid;
  padding: 0.4em 0;
}
.sidebar-section ul li a {
  border-bottom: none;
  padding: 0.4em 0;
}
.side-link-current {
  font-weight: normal;
}
.side-link-current a {
  color: var(--black) !important;
}
.sidebar-section ul li ul li a {
  font-size: var(--fs-notes);
  border-bottom: 0;
  padding: 0.4em 0 0.4em 1em;
}
@media only screen and (max-width: 1024px) {
  .sidebar-follow {
    position: static;
  }
}

/* news
---------------------------------------------------------------- */
.news-archives{
  border-top:1px solid var(--cl-main);
}
.news-archives .list-table dl dt {
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.news-archives .list-table dl dd {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 1em;
  height: 100%;
  justify-content: center;
}
.cat-label-wrap,
.post-date-wrap,
.news-icon-wrap,
.rec-type-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
}
.news-icon-wrap:has(span) {
  margin-bottom: 0.3em;
}
.news-archives .list-table:last-of-type dl {
  border-bottom: var(--gray03) 1px solid;
}
.category-archive-block + .category-archive-block {
  margin-top: var(--wrap-pd-s);
}

@media only screen and (max-width: 1024px) {
  .top-news-col > div {
    width: 100%;
    padding: 1em;
    position: relative;
  }
}
@media only screen and (max-width: 599px) {
  .news-archives .list-table dl dt {
    padding: 0.8em 0 0.3em 0;
    flex-direction: row;
    align-items: center;
  }
  .news-archives .list-table dl dd {
    padding: 0 0 0.8em 0;
  }
}

.post-date {
  color: var(--gray01);
  font-weight: normal;
  font-size: var(--fs-notes);
}
.new-icon {
  display: inline-block;
  padding: 0 0.5em 0 0;
  border-radius: 3px;
  color: var(--red);
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.7;
}
.section-icon {
  display: inline-block;
  padding: 0 0.5em;
  font-size: 1.3rem;
  border: 1px solid var(--cl-main);
  border-radius: 3px;
  color: var(--cl-main);
  line-height: 1.7;
  background: var(--white);
}
/*代診・休診*/
.schedule-substitute,
.schedule-closed {
  display: inline-block;
  padding: 0 0.5em;
  /* font-size: 1.3rem; */
  /* font-weight: bold; */
  font-size: var(--fs-notes);
  line-height: 1.7;
  border-radius: 3px;
}
.schedule-substitute {
  border: 1px solid transparent;
  color: var(--white);
  /* background: var(--cl-accent); */
  background: #006db0;
}
.schedule-closed {
  border: 1px solid transparent;
  color: var(--white);
  background: var(--red);
}

/* ナビゲーション
---------------------------------------------------------------- */

.wp-pagenavi a, .wp-pagenavi span {
  border: 1px solid var(--gray03);
  padding: 0.3em 0.7em;
  margin: 0.2em;
  border-radius: 4px;
  display: inline-block;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	border-color: #000;
}

.wp-pagenavi span.current {
  font-weight: bold;
  background: var(--cl-main);
  color: var(--white);
  border: 1px solid var(--cl-main);
  padding: 0.3em 0.7em;
  margin: 0.2em;
  border-radius: 4px;
  display: inline-block;
}


/* ポップアップ (TOP)
---------------------------------------------------------------- */
body.open_popup {
  overflow: hidden;
}
.bg_onetime_popup {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
body.open_popup .bg_onetime_popup {
  opacity: 1;
  visibility: visible;
}
.onetime_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50%;
  min-width: 500px;
  max-width: 640px;
  background-color: var(--white);
  padding: 3em 3.5em;
  border-radius: 6px;
  border: 1px solid var(--red);
}
.onetime_popup_title {
  position: relative;
  padding: 0.4em 1em;
  border-radius: 50px;
  margin: 0px;
  background-color: var(--red);
  border: 1px solid transparent;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
  font-size: var(--fs-ttl-s);
}
.onetime_popup_title_close {
  position: absolute;
  top: -2em;
  right: -2em;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  cursor: pointer;
}
.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 4px;
  background-color: var(--white);
  content: '';
}
.onetime_popup_title_close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.onetime_popup_title_close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.onetime_popup_content {
  padding: 2em 0 0;
  text-align: left;
}
.onetime_popup_content a {
  text-decoration: underline;
}
.onetime_popup_content a[target='_blank']:after {
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  padding-left: 0.5em;
  content: '\f08e';
  font-weight: 900;
}
.bg_onetime_popup .btn-main {
  background: var(--red);
  border: 1px solid var(--red);
  text-decoration: none;
}
.bg_onetime_popup .btn-main.btn-next::after {
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
}
@media only screen and (max-width: 1200px) {
  .onetime_popup_content {
    text-align: left;
  }
}
@media only screen and (max-width: 599px) {
  .onetime_popup {
    min-width: 95%;
    padding: 1em;
  }
  .onetime_popup_title {
    padding: 0.5em;
  }
  .onetime_popup_content {
    padding: 2em 0;
  }
  .onetime_popup_title_close {
    top: -20px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
}

/* スライダー（3カラムカード型）
---------------------------------------------------------------- */
.card-item {
  border-radius: 15px;
  padding: 0;
  margin: 15px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.card-item:hover {
  transform: scale(1.05);
  transition-duration: 0.2s;
  opacity: 0.7;
  box-shadow: none;
}
.card-item > div {
  height: 50%;
}
.card-item > div:nth-of-type(1) img {
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.card-item > div:nth-of-type(2) {
  padding: 1em;
}
.card-item > div:nth-of-type(2) p {
  font-size: 1.4rem;
  margin-top: 0.2em;
}

/* column-03（トップの左右ブロック・サンプル） */
.column-03 {
  box-sizing: border-box;
  position: relative;
  margin: 3em 0;
  overflow: hidden;
}
.column-03-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--contents-max-width) + 6%);
  padding: 0 3%;
  width: 100%;
  box-sizing: border-box;
}
.column-03-box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  box-sizing: border-box;
  padding-top: 60px;
}
.column-03-box > div {
  width: 50%;
}
.column-03-box01 {
  flex-direction: row-reverse;
}
.column-03-box h4 {
  font-size: 28px;
  margin: 0;
}
.column-03-img {
  text-align: center;
}
.column-03-img img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}
.column-03-txt {
  padding: 30px;
  box-sizing: border-box;
}
.column-03-bk01,
.column-03-bk02 {
  background: var(--cl-base);
  opacity: 0.6;
  position: absolute;
  z-index: 0;
  top: 0;
  height: 640px;
  width: 0;
}
.column-03-bk02 {
  right: 0;
}
@keyframes column_03_slidebk {
  0% {
    width: 0;
  }
  100% {
    width: 1080px;
  }
}
.column-03-slidebk {
  animation-name: column_03_slidebk;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 767px) {
  .column-03-box {
    display: block;
  }
  .column-03-box > div {
    width: 100%;
  }
  .column-03-bk01,
  .column-03-bk02 {
    bottom: 0;
    top: auto;
  }
  .column-03-bk01 {
    left: -20px;
  }
  .column-03-bk02 {
    right: -20px;
  }
  .column-03-txt {
    padding: 15px 10px;
  }
  .column-03-box h4 {
    font-size: 22px;
  }
}

/* editor-style
---------------------------------------------------------------- */
/* エディタの出力先ブロック（ウィジビグ） 

/* ブロックパーツのcss。本来はプラグインのb-block-pattern01に書く必要あり。
/*診療所WPはパーミッションの関係からプラグインファイルを触れないためこちらに記載。
---------------------------------------------------------------- */
.outpatient.bg-white table tr:nth-of-type(2) {
  background-color: var(--white);
  font-weight: bold;
}
.block-box-03{
  padding: 0!important;
}
.block-box-03 p{
  margin-top: 0!important;
}
.block-box-03 h3 {
  margin-bottom: 10px;
}

.block-box-04{
  padding: 0!important;
}
.block-box-04 h3 {
  margin-bottom: 10px;
}
.block-box-04 p{
  margin-top: 0!important;
}

.flow-table-block.flow-arrow .flow-table-col {
  gap: 0!important;
}
.flow-table-block .flow-table-col .flow-table-description {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.list-table-block .list-table-col{
  gap: 0!important;
}
.list-table-block .list-table-col .list-table-description{
  padding: 0!important;
}
.list-table-block .list-table-col > div:nth-of-type(2){
  padding: 1em;
  padding-right: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/*---------------------------------------------------------------- */

/*ブロック定義のエディタ系パーツの注目色*/
.col-bg-att {
  padding: 2em;
  background: var(--cl-accent2);
  border: 2px transparent solid;
  border-radius: 6px;
}
/*背景をつけるかどうかのクラス*/
.col-bg-base {
  padding: 2em;
  background: var(--cl-base);
  border-radius: 6px;
}
.col-bg-white {
  padding: 2em;
  background: var(--white);
  border-radius: 6px;
}
.editor-area.col-bg-att h5 {
  margin-bottom: 0.8em;
}
.editor-area.col-6to4,
.editor-area.col-4to6{
  flex-wrap: nowrap;
}
@media only screen and (max-width: 767px) {
  .col-bg-att {
    padding: 2em 1em;
  }
  .col-bg-base {
    padding: 1em;
  }
  .col-bg-white {
    padding: 1em;
  }
}
.block-col-wrap .col-item:where(.col-bg-base, .col-bg-white) {
  padding: 1em;
}
.editor-area a {
  text-decoration: underline;
}
.editor-area
  a:where(
    [target='_blank'],
    [href$='.pdf'],
    [href$='.xls'],
    [href$='.xlsx'],
    [href$='.xlsm'],
    [href$='.xlsb'],
    [href$='.xltx'],
    [href$='.xltm'],
    [href$='.xlt'],
    [href$='.xml'],
    [href$='.xlam'],
    [href$='.xla'],
    [href$='.xlw'],
    [href$='.csv'],
    [href$='.doc'],
    [href$='.docm'],
    [href$='.docx'],
    [href$='.dotm'],
    [href$='.dotx']
  ) {
  display: inline-block;
  padding-right: 0.5em;
}

.editor-area
  a:where(
    [target='_blank'],
    [href$='.pdf'],
    [href$='.xls'],
    [href$='.xlsx'],
    [href$='.xlsm'],
    [href$='.xlsb'],
    [href$='.xltx'],
    [href$='.xltm'],
    [href$='.xlt'],
    [href$='.xml'],
    [href$='.xlam'],
    [href$='.xla'],
    [href$='.xlw'],
    [href$='.csv'],
    [href$='.doc'],
    [href$='.docm'],
    [href$='.docx'],
    [href$='.dotm'],
    [href$='.dotx']
  )::after {
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  margin-left: 0.2em;
  content: '\f08e';
  font-weight: 900;
  color: var(--cl-main);
}

.editor-area a:where([href$='.pdf'])::after {
  content: '\f1c1';
  font-weight: 400;
}
.editor-area
  a:where(
    [href$='.xls'],
    [href$='.xlsx'],
    [href$='.xlsm'],
    [href$='.xlsb'],
    [href$='.xltx'],
    [href$='.xltm'],
    [href$='.xlt'],
    [href$='.xml'],
    [href$='.xlam'],
    [href$='.xla'],
    [href$='.xlw'],
    [href$='.csv']
  )::after {
  content: '\f1c3';
  font-weight: 400;
}
.editor-area a:where([href$='.doc'], [href$='.docm'], [href$='.docx'], [href$='.dotm'], [href$='.dotx'])::after {
  content: '\f1c2';
  font-weight: 400;
}
.editor-area a:where([href*='youtube'], [href*='vimeo'])::after {
  content: '\f03d';
}
.editor-area p + p {
  margin-top: 0.5em;
}

.editor-area table {
  width: 100% !important;
}
.table-scroll-on,
.table-scroll-on > .col-item {
  overflow: hidden !important;
}
.js-scrollable {
  overflow-y: hidden !important;
}
@media only screen and (max-width: 800px) {
  .js-scrollable table {
    width: 800px!important;
    max-width: none!important;
  }
}
.editor-area table th {
  background: var(--cl-base);
}

.editor-area table :where(tr, th, td) {
  border-style: solid;
  border-width: 1px;
}
/*エディタ内のリストの字下げ*/
.editor-area :where(ul, ol) li {
  position: relative;
  list-style-type: none;
  padding-left: 1.7em;
  line-height: 1.7;
  font-size: var(--fs-default);
}
.editor-area.col-bg-att :where(ul, ol) {
  margin: 1em 0;
}
.editor-area :where(ul, ol) li + li {
  margin-top: 0.3em;
}
.editor-area ul li {
  padding-left: 1.1em;
}
.editor-area ul li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1rem;
  background: var(--cl-main);
  width: 7px;
  height: 7px;
  border-radius: 100vh;
  font-size: var(--fs-ttl-m);
}
.editor-area ol {
  list-style: none;
  counter-reset: number;
}
.editor-area ol li:before {
  counter-increment: number;
  content: counter(number) '. ';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cl-main);
  font-size: var(--fs-default);
  vertical-align: bottom;
  font-weight: bold;
  min-width: 20px;
}
.editor-area figcaption {
  margin-top: 8px;
  font-size: var(--fs-notes);
  text-align: center;
}

/*アコーディオン*/
.acc {
  border: 1px solid var(--cl-main);
  margin-bottom: 0.5em;
}
.acc .acc-ttl {
  font-size: var(--fs-lead);
  padding: 1em 3em 1em 1em;
  position: relative;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  border-bottom: none;
}
.acc .acc-ttl:hover {
  opacity: 0.6;
}
.acc .acc-ttl:after {
  font-family: 'Font Awesome 6 Free';
  content: '\f055';
  font-weight: 900;
  display: inline-block;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cl-main);
  font-size: var(--fs-ttl-s);
}
.acc.acc-qa .acc-ttl {
  position: relative;
  display: flex;
}
.acc.acc-qa .acc-ttl:before {
  content: 'Q';
  display: block;
  padding-right: 1em;
  font-size: var(--fs-ttl-s);
  color: var(--black);
  line-height: var(--fs-ttl-s);
  margin-top: 0.1em;
}
.acc .acc-txt {
  position: relative;
  padding: 0 1.5em;
  padding-bottom: 0;
  transition: 0.3s ease-in-out;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  height: 0;
  color: var(--white);
  overflow-y: hidden;
}
.acc.acc-qa .acc-txt {
  position: relative;
  display: flex;
}
.acc.acc-qa .acc-txt:before {
  content: 'A';
  display: block;
  padding-right: 1em;
  font-size: var(--fs-ttl-s);
  color: var(--gray01);
  line-height: var(--fs-ttl-s);
  margin-top: 0.1em;
  font-weight: bold;
}
.acc .acc-txt > *:first-child {
  margin-top: 0 !important;
}
.acc .acc-ttl.acc-ttl-after {
  border-bottom: 1px solid var(--cl-main);
}
.acc .acc-ttl.acc-ttl-after:after {
  content: '\f056';
}
.acc-d-block {
  padding: 1.5em 1.2em !important;
  line-height: 1.5 !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  color: var(--black) !important;
}

@media only screen and (max-width: 599px) {
  .acc .acc-ttl:hover {
    opacity: 1;
  }
  .acc.acc-qa .acc-ttl:before {
    margin-top: 0.2em;
  }
}

/*リストテーブル（時間表記部分など）とフロー・流れ*/
.list-table {
  border-bottom: 1px solid var(--gray03);
}
.list-table > dl {
  display: grid;
  border-top: 1px solid var(--gray03);
  padding: 1em 16px;
  align-items: center;
}
.news-archives .list-table:first-child > dl {
  border-top:none;
}
.list-table > dl > :where(dt, dd) {
  padding: 1em;
}
.list-table > dl > dt {
  border-right: 1px solid var(--gray03);
  color: var(--cl-main);
  padding-left: 0;
  height: 100%;
}
.list-table > dl > dt {
  display: flex;
  align-items: center;
  line-height: var(--fs-ttl-ll);
}
.list-table > dl > dd {
  padding-right: 0;
}
/*フロー・流れ用*/
.flow-table {
  border-bottom: none;
}
.flow-table > dl {
  border: 1px solid var(--cl-main);
  padding: 0;
  margin-bottom: 1em;
  position: relative;
}
.flow-table.flow-arrow > dl {
  margin-bottom: 3em;
}
.flow-table.flow-arrow > dl::after {
  content: '';
  display: inline-block;
  width: 3em;
  background: var(--cl-main);
  height: calc(tan(60deg) * 1.5em / 2);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: -2.3em;
  left: calc(50% - 3em);
  transform: rotate(180deg) translateX(-50%);
}
.flow-table.flow-arrow > dl:last-child::after {
  display: none;
}
.flow-table.flow-arrow > dl:last-child{
  margin-bottom: 0;
}
.flow-table > dl > dt {
  background: var(--cl-main);
  color: var(--white);
  padding: 1em;
  text-align: center;
  justify-content: center;
}
.flow-table > dl > dd {
  padding: 1em;
}
/*左右の比率*/
.list-table-1to9 > dl {
  grid-template-columns: 1fr 9fr;
}
.list-table-2to8 > dl {
  grid-template-columns: 1fr 4fr;
}
.list-table-3to7 > dl {
  grid-template-columns: 1fr 2.3fr;
}
.list-table-4to6 > dl {
  grid-template-columns: 1fr 1.5fr;
}
.list-table-5to5 > dl {
  grid-template-columns: 1fr 1fr;
}
.list-table-6to4 > dl {
  grid-template-columns: 1.5fr 1fr;
}
.list-table-7to3 > dl {
  grid-template-columns: 2.3fr 1fr;
}
/*dtのフォントサイズ変更*/
.list-table.list-table-fs-ll > dl > dt {
  font-size: var(--fs-ttl-l);
  line-height: calc(var(--fs-ttl-l) + 0.2);
}
.list-table.list-table-fs-l > dl > dt {
  font-size: var(--fs-ttl-m);
  line-height: calc(var(--fs-ttl-m) + 0.2);
}
.list-table.list-table-fs-m > dl > dt {
  font-size: var(--fs-ttl-s);
  line-height: calc(var(--fs-ttl-s) + 0.2);
}
.list-table.list-table-fs-default > dl > dt {
  font-size: var(--fs-default);
  line-height: calc(var(--fs-default) + 0.2);
}
@media only screen and (max-width: 599px) {
  .list-table > dl {
    display: block;
    padding: 0.3em;
  }
  .flow-table > dl {
    padding: 0;
  }
  .list-table > dl > dt {
    border-right: none;
    padding-bottom: 0;
    justify-content: flex-start;
  }
  .flow-table > dl > dt {
    justify-content: center;
  }
  .flow-table > dl > dt {
    padding: 0.5em;
  }
  .list-table > dl > dd {
    padding-left: 0.5em;
  }
}

/*ページナビ（ページャー）*/
.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pager li a,
.pager li span {
  border: 1px solid var(--gray03);
  padding: 0.3em 0.7em;
  margin: 0.2em;
  border-radius: 4px;
  display: inline-block;
}
.pager li.current span {
  background: var(--cl-main);
  color: var(--white);
  border: 1px solid var(--cl-main);
}
.pager li.ellipsis span {
  margin: 0.2em 0;
  padding: 0.3em 0.1em;
  border: 1px solid transparent;
}
.pager li.prev a,
.pager li.next a {
  background: var(--gray04);
  border: 1px solid var(--gray04);
}
.pager li.prev a:before {
  font-family: 'Font Awesome 6 Free';
  content: '\f053';
  font-weight: 900;
}
.pager li.next a:before {
  font-family: 'Font Awesome 6 Free';
  content: '\f054';
  font-weight: 900;
}
.pager li.prev span,
.pager li.next span {
  display: none;
}
@media only screen and (max-width: 599px) {
  .pager li a,
  .pager li span {
    padding: 0.3em;
  }
}

/*募集要項*/
.requirements-archive {
  border: 2px solid var(--gray03);
  padding: 2em;
  border-radius: 6px;
  position: relative;
}
.requirements-archive h2 {
  position: relative;
  font-size: var(--fs-ttl-s);
  padding-left: 1em;
}
.requirements-archive h2:before {
  font-family: 'Font Awesome 6 Free';
  content: '\f138';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cl-main);
  font-size: var(--fs-lead);
}
.rec-type {
  padding: 0em 0.5em;
  display: inline-block;
  border-radius: 3px;
  border: var(--cl-main) 1px solid;
  color: var(--cl-main);
  line-height: 1.7;
}
.rec-red {
  background: var(--red);
  color: var(--white);
  border: transparent 1px solid;
  font-weight: normal;
}
@media only screen and (max-width: 599px) {
  .requirements-archive {
    padding: 1em;
  }
}

/*target blankの処理*/
/*固定ページサイドバー*/
.sidebar-section a[target='_blank']::after {
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  padding-left: 0.5em;
  content: '\f08e';
  font-weight: 900;
  color: var(--cl-main);
}

/*ハンバーガーメニュー内、サイトマップ*/
.sitemap-children-list li a[target='_blank']::after {
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  padding-left: 0.5em;
  content: '\f08e';
  font-weight: 900;
  color: var(--cl-main);
}
/*サイトマップ*/
.entry-content .sitemap-inner {
  padding: 0 0 10em;
}
.sitemap-ttl::before {
  display: none;
}

/*spハンバーガーメニュー内*/
.nav-mobile-list .dropdown-menu li a[target='_blank']::after {
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  padding-left: 0.5em;
  content: '\f08e';
  font-weight: 900;
  color: var(--cl-main);
}

/*ページ順序関連の表（admin iframe）*/
.admin-numbering-table {
  width: 100%;
}
.admin-numbering-table th,
.admin-numbering-table td {
  text-align: center;
}
.admin-numbering-table th {
  background: var(--gray05);
}
.admin-numbering-table-ttl {
  background: var(--gray03) !important;
}
.ex-link::after {
  color: var(--cl-main);
}

/*404*/
.page-404 {
  border: 3px solid var(--gray03);
  padding-left: 3%;
  padding-right: 3%;
}

/* --------「クッキーポリシーポップアップ」-------- */
.cookie-consent {
  position: fixed;
  bottom: -3em;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  font-size: var(--fs-default);
  border-top: 1px solid var(--white);
  background: var(--white);
  padding: 1.8em 0;
  box-sizing: border-box;
  transition: 0.5s;
  z-index: 9999;
  box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.1);
}
.cookie-consent > div {
  gap: var(--gap-m);
}
.cookie-consent.is-show {
  bottom: -2px;
  opacity: 1;
  visibility: visible;
}
.cookie-text {
  font-size: var(--fs-default);
}
.cookie-text a[target='_blank']::after {
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  margin-left: 0.3em;
  content: '\f08e';
  font-weight: 900;
  color: var(--cl-main);
}
.cookie-agree {
  color: var(--white);
  background: var(--cl-main);
  padding: 0.76em 1.3em;
  border: 1px solid var(--cl-main);
  border-radius: 4px;
  width: 150px;
  transition: 0.3s ease-in-out;
  display: block;
}
.cookie-agree:hover {
  cursor: pointer;
  opacity: 0.7;
}
.cc-hide {
  display: none;
}
@media screen and (max-width: 1024px) {
  .cookie-consent {
    padding: 0.8em 0;
  }
  .cookie-consent > div {
    display: block;
  }
  .cookie-text {
    font-size: var(--fs-notes);
  }
  .cookie-agree {
    margin-top: 0.5em;
    margin-inline: auto;
    padding: 0.3em 0.5em;
  }
}

/*閲覧支援*/
/*青*/
body.acc-select-blue {
  --acc-bk-color: var(--ac-blue);
  --acc-font-color: var(--ac-yellow);
  --acc-link-color: var(--white);
}
/*黄色*/
body.acc-select-yellow {
  --acc-bk-color: var(--ac-yellow);
  --acc-font-color: var(--black);
  --acc-link-color: var(--ac-l-blue);
}
/*黒*/
body.acc-select-black {
  --acc-bk-color: var(--black);
  --acc-font-color: var(--ac-yellow);
  --acc-link-color: var(--white);
}

body[class^='acc-select-'],
body[class^='acc-select-'] *,
body[class^='acc-select-'] *:before,
body[class^='acc-select-'] *:after {
  background-color: var(--acc-bk-color) !important;
  border-color: var(--acc-font-color) !important;
  color: var(--acc-font-color) !important;
}
body[class^='acc-select-'] a,
body[class^='acc-select-'] a *,
body[class^='acc-select-'] button,
body[class^='acc-select-'] button * {
  color: var(--acc-link-color) !important;
}
body[class^='acc-select-'] i {
  color: var(--acc-link-color) !important;
}
/*個別で設定が必要なもの*/
body[class^='acc-select-'] #top-video-area:before {
  background-color: transparent !important;
}
body[class^='acc-select-'] .top-visitor02 {
  border: 1px solid var(--acc-font-color) !important;
}
body[class^='acc-select-'] .btn-hamburger button span,
body[class^='acc-select-'] .btn-hamburger button span:before,
body[class^='acc-select-'] .btn-hamburger button span:after,
body[class^='acc-select-'] .nav-mobile-list .dropdown button:before,
body[class^='acc-select-'] .nav-mobile-list .dropdown button:after {
  background-color: var(--acc-link-color) !important;
}
body[class^='acc-select-'] .btn-hamburger button.is-active span {
  background-color: transparent !important;
}
body[class^='acc-select-'] .ttl-01,
body[class^='acc-select-'] .ttl-02 {
  background: linear-gradient(27deg, var(--acc-bk-color) 0%, var(--acc-bk-color) 100%) !important;
}
body[class^='acc-select-'] .ttl-01 > div:after,
body[class^='acc-select-'] .ttl-02 > div:before,
body[class^='acc-select-'] .ttl-03::before,
body[class^='acc-select-'] .ttl-03::after,
body[class^='acc-select-'] .ttl-04::before,
body[class^='acc-select-'] .ttl-05::before,
body[class^='acc-select-'] .ttl-05::after,
body[class^='acc-select-'] .ttl-06::before,
body[class^='acc-select-'] .ttl-07::before,
body[class^='acc-select-'] .ttl-08.chg-red::before {
  background: var(--acc-font-color) !important;
}
body[class^='acc-select-'] [class^='top-col01-bnr-'] img {
  background-color: transparent !important;
}
body[class^='acc-select-'] .scroll-hint-icon-wrap,
body[class^='acc-select-'] .scroll-hint-icon-wrap *,
body[class^='acc-select-'] .scroll-hint-icon-wrap *:before,
body[class^='acc-select-'] .scroll-hint-icon-wrap *:after {
  background-color: transparent !important;
}
body[class^='acc-select-'] .scroll-hint-icon {
  background: rgba(0, 0, 0, 0.7) !important;
}
body[class^='acc-select-'] .onetime_popup_title_close::before,
body[class^='acc-select-'] .onetime_popup_title_close::after {
  background: var(--acc-font-color) !important;
}
body[class^='acc-select-'] .sns-link-item a span {
  text-decoration: underline;
}
body[class^='acc-select-'] .sns-link-item img {
  display: none;
}
body[class^='acc-select-'] .select-styled::after {
  border-color: var(--acc-font-color) transparent transparent transparent !important;
}
body[class^='acc-select-'] .btn-search-close button span::before,
body[class^='acc-select-'] .btn-search-close button span::after {
  background-color: var(--acc-font-color) !important;
}
body[class^='acc-select-'] .btn-hamburger button::after {
  background: transparent !important;
}
body[class^='acc-select-'] .cat-list li.current a span::before {
  background-color: var(--acc-font-color) !important;
}
body[class^='acc-select-'] .search-results-content p strong {
  border-bottom: var(--acc-font-color) 1px solid;
  padding-bottom: 0.15em;
}
body[class^='acc-select-'] .form-search > div,
body[class^='acc-select-'] .form-search form,
body[class^='acc-select-'] .form-search form > div,
body[class^='acc-select-'] .form-search .form-inline {
  background: transparent !important;
}
body[class^='acc-select-'] .editor-area ul li::before {
  background-color: var(--acc-font-color) !important;
}
body[class^='acc-select-'] .header-menu-upper li a:after,
body[class^='acc-select-'] a.menu-item:before,
body[class^='acc-select-'] button.menu-item:before {
  background-color: var(--acc-font-color) !important;
}