@charset "UTF-8";
@font-face {
  font-family: "fontello";
  font-weight: normal;
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: 100%;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.22em;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}

:where(button) {
  background: transparent;
  border: none;
}

:where(em) {
  font-style: normal;
  font-weight: bold;
}

:where(i) {
  font-style: normal;
}

:where(iframe) {
  max-width: 100%;
  height: 100%;
  border: none;
}

:where(img) {
  height: auto;
  border: none;
  object-fit: contain;
}

:where(p) {
  margin: 0 0 1em;
}

:root {
  --sp-header-height: 8.0rem;
  --pc-header-height: 100px;
  --sp-font-size: 1.5rem;
  --sp-l-height: 1.6;
  --pc-font-size: 1.8rem;
  --pc-l-height: 1.8;
  --color-base-txt: #548e23;
  --color-base-txt-rgb: 84 142 35;
  --color-base-bg: #fcfbf6;
  --color-base-bg-rgb: 252 251 246;
  --color-main: #aac19f;
  --color-main-rgb: 170 193 159;
  --color-main-hover: #baccb0;
  --color-main-vivid: #86a876;
  --color-main-lite: #cad9c4;
  --color-main-pale: #e9f0e7;
  --color-main-dot: #f6f8f4;
  --color-main-bk: #f9f4f0;
  --color-sub: #bbc167;
  --color-sub-rgb: 187 193 103;
  --color-sub-dark: #948b7e;
  --color-sub-smoke: #edebe6;
  --color-sub-light: #f4f1c2;
  --color-sub-pale: #f4f9d6;
  --color-border: #d1cbc1;
  --color-border2: #e8e5e0;
  --color-attention: #ee1b1b;
  --color-highlight: #fff899;
  --color-shadow: rgb(0 0 0/0.16);
  --color-black: #000;
  --color-black-rgb: 0 0 0;
  --color-gray: #808080;
  --color-gray-rgb: 128 128 128;
  --color-ghost: #f5f5f5;
  --color-ghost-rgb: 245 245 245;
  --color-white: #fff;
  --color-white-rgb: 255 255 255;
}

html {
  scroll-padding-top: var(--sp-header-height, 0);
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: var(--font-weight, normal);
  font-size: 2.7777777778vw;
}

body {
  color: var(--color-base-txt);
  background-color: var(--color-base-bg);
  word-wrap: break-word;
}
body.spnav_modal {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

main {
  font-size: var(--sp-font-size, 1.4rem);
  line-height: var(--sp-l-height, 1.5);
}

@media screen and (min-width: 48em), print {
  :where(*) {
    letter-spacing: var(--letter-spacing, normal);
  }
  :where(*):before, :where(*)::after {
    letter-spacing: normal;
  }
  html {
    scroll-padding-top: var(--pc-header-height, 0);
    font-size: 62.5%;
  }
  body {
    min-width: 1240px;
  }
  a, button {
    transition: 0.3s;
  }
  a:before, a::after, button:before, button::after {
    transition: 0.3s;
  }
  main {
    font-size: var(--pc-font-size, 1.6rem);
    line-height: var(--pc-l-height, 1.5);
  }
}
#global_header .header_wrap {
  padding-top: 6.4rem;
}
#global_header .header_wrap .logo {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1;
  height: 6.4rem;
  padding: 1.6rem 7.4rem 0 1rem;
  background-color: var(--color-base-bg);
}
#global_header .header_wrap .logo a {
  display: block;
}
#global_header .header_wrap .ctc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 1rem 1rem;
}
#global_header .header_wrap .ctc dl {
  display: grid;
  grid-template-columns: auto 9rem;
  align-items: center;
  padding: 0.4rem;
  line-height: 1;
  border-radius: 0.5rem;
}
#global_header .header_wrap .ctc dl dt {
  padding-inline: 0.2rem;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-white);
}
#global_header .header_wrap .ctc dl dd {
  padding-block: 0.5rem;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 0.3rem;
}
#global_header .header_wrap .ctc dl:nth-child(odd) {
  width: 47.5%;
  background-color: var(--color-main);
}
#global_header .header_wrap .ctc dl:nth-child(even) {
  width: 50.5%;
  background-color: var(--color-sub);
}

@media screen and (min-width: 48em), print {
  #global_header {
    padding-top: 0;
    background-image: url(../img/bg_deco_lt.webp), url(../img/bg_deco_rt.webp);
    background-repeat: no-repeat;
    background-position: left calc(50% - 880px) bottom 0, right calc(50% - 880px) bottom 0;
    background-size: auto;
  }
  #global_header .header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    height: 100px;
    margin-inline: auto;
    padding: 0;
  }
  #global_header .header_wrap .logo {
    position: static;
    width: 412px;
    height: auto;
    padding: 0;
  }
  #global_header .header_wrap .ctc {
    gap: 5px;
    width: 550px;
    padding: 0;
  }
  #global_header .header_wrap .ctc dl {
    grid-template-columns: auto 140px;
    padding: 5px;
    border-radius: 10px;
  }
  #global_header .header_wrap .ctc dl dt {
    padding-inline: 7px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
  #global_header .header_wrap .ctc dl dd {
    padding: 5px 3px 7px 10px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    text-align: left;
    border-radius: 5px;
  }
  #global_header .header_wrap .ctc dl:nth-child(odd) {
    width: 262px;
  }
  #global_header .header_wrap .ctc dl:nth-child(even) {
    width: 278px;
  }
}
@media screen and (min-width: 2001px) {
  #global_header {
    background-position: left top, right top;
  }
}
@media print {
  #global_header .header_wrap {
    margin-bottom: 0 !important;
  }
}
#global_nav .js-menu_box {
  display: none;
}

@media screen and (max-width: 47.99em) {
  .js-sp_modal {
    position: fixed;
    top: 0;
    z-index: 2;
  }
  .js-sp_modal::before {
    position: fixed;
    inset: 6.4rem 0 0;
    z-index: -10;
    width: 100vw;
    height: calc(100dvh - 6.4rem);
    transition: all 0.5s;
  }
  .js-sp_modal.is_overlay::before {
    z-index: 0;
    background: linear-gradient(rgb(var(--color-base-bg-rgb)/1) 10%, rgb(var(--color-base-bg-rgb)/0.6));
    backdrop-filter: blur(0.6rem);
    content: "";
  }
  .js-sp_box {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3rem);
    transition: 0.5s ease;
  }
  .js-sp_box.is_open {
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (min-width: 48em), print {
  .js-pc_sticky {
    position: relative;
  }
  .js-pc_sticky.is_sticky {
    position: fixed;
    inset: 0 0 auto;
    z-index: 5;
    width: 100%;
  }
}
@media print {
  .js-pc_sticky.is_sticky {
    position: relative !important;
  }
}
#global_nav .gnav {
  font-weight: 500;
}
#global_nav .gnav > li > a.is_current, #global_nav .gnav > li button.is_current {
  background-color: var(--color-sub-smoke);
}
@media screen and (min-width: 48em), print {
  #global_nav .gnav > li > a:hover, #global_nav .gnav > li > a:focus, #global_nav .gnav > li button:hover, #global_nav .gnav > li button:focus {
    background-color: var(--color-sub-smoke);
  }
}
#global_nav .sub_btn::after {
  font-family: "fontello";
  font-weight: normal;
  content: '\e811';
  color: var(--color-main);
}
#global_nav .sub_btn.is_open::after {
  transform: rotate(180deg);
}
#global_nav .subnav {
  color: var(--color-white);
  background-color: var(--color-base-txt);
}
#global_nav .subnav a {
  display: block;
  text-align: center;
}

@media screen and (max-width: 47.99em) {
  #global_nav {
    width: 100%;
  }
  #global_nav #sp_btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 4.6rem;
    height: 4.6rem;
    margin: 0;
    padding: 0 0 0.2rem;
    line-height: 0.8;
    text-align: center;
    color: var(--color-main);
    background: var(--color-white);
    border: 1px solid var(--color-main);
    border-radius: 0.8rem;
  }
  #global_nav #sp_btn::before {
    display: block;
    font-family: "fontello";
    font-weight: normal;
    content: '\e802';
    font-size: 3.6rem;
  }
  #global_nav #sp_btn::after {
    font-size: 1rem;
    content: "MENU";
  }
  #global_nav #sp_btn.close::before {
    content: "\e806";
  }
  #global_nav #sp_btn.close::after {
    content: "CLOSE";
  }
  #global_nav #sp_btn span {
    display: none;
  }
  #global_nav .gnav {
    position: absolute;
    top: 6.6rem;
    left: 3vw;
    overflow-y: auto;
    width: 94vw;
    max-height: 75vh;
    padding: 1.6rem;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--color-base-txt);
    background: var(--color-base-bg);
    border-radius: 1.6rem;
    box-shadow: 0 0.4rem 0.6rem 0.2rem var(--color-shadow);
  }
  #global_nav .gnav > li > a, #global_nav .gnav > li button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1.6rem;
    border-radius: 1rem;
  }
  #global_nav .gnav > li.sub .sub_btn {
    justify-content: space-between;
  }
  #global_nav .gnav > li.sub .subnav {
    display: flex;
    flex-wrap: wrap;
  }
  #global_nav .gnav > li.sub .subnav li {
    width: 50%;
    border-bottom: 1px solid rgb(var(--color-white-rgb)/0.4);
  }
  #global_nav .gnav > li.sub .subnav li:nth-child(even) {
    border-left: 1px solid rgb(var(--color-white-rgb)/0.4);
  }
  #global_nav .gnav > li.sub .subnav li a {
    padding-block: 1rem;
  }
}
@media screen and (min-width: 48em), print {
  #global_nav {
    width: 100%;
    height: 60px;
  }
  #global_nav #sp_btn {
    display: none;
  }
  #global_nav .gnav {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin-inline: auto;
    font-size: 2rem;
    line-height: 1;
  }
  #global_nav .gnav > li {
    display: flex;
    align-items: center;
    flex: 1;
  }
  #global_nav .gnav > li ~ li::before {
    flex: none;
    width: 1px;
    height: 30px;
    background-image: repeating-linear-gradient(transparent 0px, transparent 1px, var(--color-border) 1px, var(--color-border) 2px);
    background-repeat: no-repeat;
    background-position: left top;
    content: "";
  }
  #global_nav .gnav > li > a, #global_nav .gnav > li button {
    flex-grow: 1;
    display: block;
    height: 60px;
    padding-block: 20px;
    text-align: center;
    border-radius: 15px 15px 0 0;
  }
  #global_nav .gnav > li.sub {
    position: relative;
  }
  #global_nav .gnav > li.sub .sub_btn::after {
    margin-left: 7px;
  }
  #global_nav .gnav > li.sub .sub_box {
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 1;
    min-width: 100%;
  }
  #global_nav .gnav > li.sub .sub_box .subnav {
    border-radius: 0 0 15px 15px;
  }
  #global_nav .gnav > li.sub .sub_box .subnav li ~ li {
    border-top: 1px solid rgb(var(--color-white-rgb)/0.4);
  }
  #global_nav .gnav > li.sub .sub_box .subnav li a {
    padding-block: 20px;
  }
  #global_nav .gnav > li.sub .sub_box .subnav li a:hover, #global_nav .gnav > li.sub .sub_box .subnav li a:focus {
    color: var(--color-main);
  }
  #global_nav.js-pc_sticky {
    background-color: transparent;
    transition: background 0.5s;
  }
  #global_nav.js-pc_sticky.is_sticky {
    background-color: var(--color-base-bg);
    box-shadow: 0 2px 2px var(--color-shadow);
  }
}
.overview {
  padding: 4rem 4%;
  font-size: 1.4rem;
  background-color: var(--color-main);
}
.overview .wrap {
  padding: 4rem 1rem 2rem;
  background-color: var(--color-white);
  border-radius: 3rem;
}
.overview .logo {
  width: 88%;
  margin: 0 auto 1.6rem;
}
.overview .chairman {
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
.overview .chairman span {
  font-size: 1.8rem;
}
.overview .group .branch {
  padding: 0.5rem;
}
@media screen and (max-width: 47.99em) {
  .overview .group .branch {
    border-top: 5px solid var(--color-main-lite);
  }
  .overview .group .branch ~ .branch {
    margin-top: 3rem;
  }
}
.overview .group .branch .outline {
  display: grid;
  grid-template-columns: 25% auto;
}
.overview .group .branch .outline dt {
  display: grid;
  align-items: center;
  padding-block: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-main);
  border-bottom: 1px dotted var(--color-border2);
}
.overview .group .branch .outline dd {
  padding-block: 1rem;
  padding-left: 1rem;
  word-break: auto-phrase;
  border-bottom: 1px dotted var(--color-border2);
}
.overview .group .branch .timetable {
  margin-top: 2rem;
  font-size: 1.3rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 60px 0 80px;
    font-size: 1.8rem;
  }
  .overview .wrap {
    padding: 80px 0;
    border-radius: 60px;
  }
  .overview .logo {
    width: 412px;
    margin: 0 auto 20px;
  }
  .overview .chairman {
    margin-bottom: 50px;
  }
  .overview .chairman span {
    font-size: 2.4rem;
  }
  .overview .group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .overview .group .branch {
    width: 560px;
  }
  .overview .group .branch:nth-of-type(-n + 2) {
    padding-bottom: 50px;
  }
  .overview .group .branch:nth-last-of-type(-n + 2) {
    padding-top: 40px;
    border-top: 2px solid var(--color-main-lite);
  }
  .overview .group .branch:nth-of-type(odd) {
    padding-right: 40px;
  }
  .overview .group .branch:nth-of-type(even) {
    padding-left: 40px;
    border-left: 2px solid var(--color-main-lite);
  }
  .overview .group .branch .outline {
    grid-template-columns: 135px auto;
  }
  .overview .group .branch .outline dt {
    align-items: start;
    padding-block: 12px;
    border-bottom-width: 2px;
  }
  .overview .group .branch .outline dt:first-of-type {
    padding-top: 0;
  }
  .overview .group .branch .outline dd {
    padding-block: 12px;
    border-bottom-width: 2px;
  }
  .overview .group .branch .outline dd:first-of-type {
    padding-top: 0;
  }
  .overview .group .branch .timetable {
    margin-top: 30px;
    font-size: 1.8rem;
  }
}
#global_footer {
  line-height: 1;
  text-align: center;
  background-image: url(../img/bg_deco_lb.webp), url(../img/bg_deco_rb.webp);
  background-repeat: no-repeat;
  background-position: left bottom, right bottom;
  background-size: 20vw auto;
}
#global_footer .footer_wrap {
  display: none;
}
#global_footer .copyright {
  display: block;
  padding: 1.5rem 0;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--color-main);
}

@media screen and (min-width: 48em), print {
  #global_footer {
    padding: 20px 0 0;
    background-position: left calc(50% - 880px) bottom 0, right calc(50% - 880px) bottom 0;
    background-size: auto;
  }
  #global_footer .footer_wrap {
    display: block;
    padding-block: 40px;
    font-size: 1.8rem;
  }
  #global_footer .footer_wrap ul {
    text-align: center;
    letter-spacing: -0.4em;
  }
  #global_footer .footer_wrap ul li {
    display: inline-block;
    padding: 0 0.5em;
    letter-spacing: 0;
  }
  #global_footer .footer_wrap ul li ~ li {
    border-left: 1px solid currentColor;
  }
  #global_footer .footer_wrap ul li a:hover {
    text-decoration: underline;
  }
  #global_footer .footer_wrap ul.gnav {
    margin-bottom: 1em;
  }
  #global_footer .footer_wrap ul.gnav .sub {
    display: none;
  }
  #global_footer .copyright {
    padding: 20px 0;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 2001px) {
  #global_footer {
    background-position: left bottom, right bottom;
  }
}
.js-pageup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
  transition: 0.5s;
}
.js-pageup.is_active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 48em), print {
  .js-pageup {
    bottom: 30px;
    right: 30px;
  }
}

#pageup {
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  line-height: 1;
  text-align: center;
  color: var(--color-main);
  background: var(--color-white);
  border: 1px solid var(--color-main);
  border-radius: 50%;
}
#pageup::before {
  font-size: 1.6rem;
  font-family: "fontello";
  font-weight: normal;
  content: '\e812';
}
#pageup span {
  display: none;
}
@media screen and (min-width: 48em), print {
  #pageup {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }
  #pageup::before {
    font-size: 2.4rem;
    transition: 0s;
  }
  #pageup:hover {
    color: var(--color-white);
    background: var(--color-main);
  }
}
@media print {
  #pageup {
    display: none !important;
  }
}

.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.cf::after {
  clear: both;
  display: block;
  content: "";
}

.l-cf, .l-intro {
  display: flow-root;
}

@media screen and (min-width: 48em), print {
  .wrap {
    width: 1200px;
    margin-inline: auto;
  }
}
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

.txt_c {
  text-align: center !important;
}

.img_c {
  max-width: 80%;
  margin: 0 auto 1.4rem;
  border-radius: 2rem;
}
.img_c.w100 {
  max-width: 100%;
}

.img_l, .img_r {
  max-width: 80%;
  margin: 0 auto 1.4rem;
  border-radius: 2rem;
}

@media screen and (max-width: 47.99em) {
  .img_c.sp_w100 {
    max-width: 100%;
  }
  .img_c.mb0, .img_l.mb0, .img_r.mb0 {
    margin-bottom: 1.4rem;
  }
}
@media screen and (min-width: 48em), print {
  .img_c {
    max-width: 750px;
    margin: 0 auto 20px;
    border-radius: 40px;
  }
  .img_c.pc_w100 {
    max-width: 100%;
  }
  .img_l {
    float: left;
    max-width: 480px;
    margin-top: calc((1lh - 1em) * 0.5);
    margin-right: 50px;
    margin-bottom: 0.5em;
    margin-left: 0;
    border-radius: 40px;
  }
  .img_r {
    float: right;
    max-width: 480px;
    margin-top: calc((1lh - 1em) * 0.5);
    margin-right: 0;
    margin-bottom: 0.5em;
    margin-left: 50px;
    border-radius: 40px;
  }
}
.mb40 {
  margin-bottom: 4rem;
}

.mb0 {
  margin-bottom: 0;
}

.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.mt5 {
  margin-top: 0.5rem;
}

.mt0 {
  margin-top: 0;
}

@media screen and (min-width: 48em), print {
  .mb40 {
    margin-bottom: 80px;
  }
  .mt40 {
    margin-top: 80px;
  }
  .mt30 {
    margin-top: 60px;
  }
  .mt20 {
    margin-top: 40px;
  }
  .mt10 {
    margin-top: 20px;
  }
  .mt5 {
    margin-top: 10px;
  }
}
:where(section):has(> .img_r, > .img_l) {
  display: flow-root;
}
:where(section):has(> .img_r, > .img_l) > section:first-of-type {
  clear: both;
}
:where(section) > :last-child {
  margin-bottom: 0;
}

.l-intro > :last-child {
  margin-bottom: 0;
}

article > .l-intro {
  margin-bottom: 4.5rem;
}
article > .l-intro ~ :where(section) {
  margin-top: 3.5rem;
}
article > .l-intro ~ :where(section) :where(section) {
  margin-top: 2.5rem;
}
article > .l-intro ~ :where(section) :where(section) :where(section) {
  margin-top: 2rem;
}
article > :where(section) ~ :where(section) {
  margin-top: 4.5rem;
}
article > :where(section) :where(section) {
  margin-top: 3.5rem;
}
article > :where(section) :where(section) :where(section) {
  margin-top: 2.5rem;
}
article > :where(section) :where(section) :where(section) :where(section) {
  margin-top: 2rem;
}
article :is(h2, h3, h4, h5, h6) + section {
  margin-top: 0;
}
article :is(h2, h3, h4, h5, h6) + p {
  margin-top: calc((1em - 1lh) * 0.5);
}

@media screen and (min-width: 48em), print {
  article > .l-intro {
    margin-bottom: 80px;
  }
  article > .l-intro ~ :where(section) {
    margin-top: 60px;
  }
  article > .l-intro ~ :where(section) :where(section) {
    margin-top: 40px;
  }
  article > .l-intro ~ :where(section) :where(section) :where(section) {
    margin-top: 30px;
  }
  article > :where(section) ~ :where(section) {
    margin-top: 80px;
  }
  article > :where(section) :where(section) {
    margin-top: 60px;
  }
  article > :where(section) :where(section) :where(section) {
    margin-top: 40px;
  }
  article > :where(section) :where(section) :where(section) :where(section) {
    margin-top: 30px;
  }
}
.tit_01 {
  padding: 1rem 5%;
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--color-main);
  background-color: var(--color-main-pale);
}

.tit_02 {
  margin-bottom: 2rem;
  padding-top: 1.2rem;
  font-weight: 500;
  font-size: 2.3rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  background-image: url(../img/tit_02.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 3.4rem auto;
}

.tit_03 {
  width: fit-content;
  margin-bottom: 2rem;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--color-white);
  background-color: var(--color-main);
  border-radius: 1.4rem 1.4rem 1.4rem 0;
}

.tit_04 {
  margin-bottom: 1.4rem;
  padding: 0.4rem 1rem;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  border-left: 3px solid var(--color-main);
}

.tit_05 {
  margin-bottom: 1.4rem;
  padding-bottom: 0.4rem;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--color-main);
  border-bottom: 2px dashed currentColor;
}

.tit_06 {
  margin-bottom: 1.2rem;
  padding-left: 1em;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
}
.tit_06::before {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-left: -1em;
  margin-right: 0.3em;
  border-radius: 50%;
  border: 2px solid var(--color-main);
  content: "";
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 4.8rem;
  }
  .tit_02 {
    margin-bottom: 40px;
    padding-top: 18px;
    font-size: 4rem;
    background-size: 50px auto;
  }
  .tit_03 {
    margin-bottom: 30px;
    padding: 15px 30px;
    font-size: 3.2rem;
    border-radius: 30px 30px 30px 0;
  }
  .tit_04 {
    margin-bottom: 25px;
    padding: 9px 0 9px 17px;
    font-size: 2.6rem;
  }
  .tit_05 {
    margin-bottom: 22px;
    padding: 0 0 8px 10px;
    font-size: 2.2rem;
  }
  .tit_06 {
    margin-bottom: 15px;
    font-size: 2rem;
  }
}
:where(.contents) :where(li) {
  line-height: 1.5;
}

.lst_ul > li {
  padding-left: 1.4em;
}
.lst_ul > li::before {
  display: inline-block;
  margin-left: -1.4em;
  margin-right: 0.2em;
  color: var(--color-main);
  transform: scale(0.6);
  content: "●";
}

.lst_ul {
  margin-bottom: 1em;
}
.lst_ul > li ~ li {
  margin-top: 0.5em;
}
.lst_ul > li.etc {
  padding-left: 0;
}
.lst_ul > li.etc::before {
  display: none;
}
.lst_ul.cols {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.5em;
}
.lst_ul.cols > li ~ li {
  margin-top: 0;
}

.lst_ol {
  margin-bottom: 1em;
}
.lst_ol > li {
  margin-left: 1.4em;
  list-style-type: decimal;
}
.lst_ol > li ~ li {
  margin-top: 0.5em;
}
.lst_ol > li::marker {
  font-weight: bold;
  color: var(--color-base-txt);
}
.lst_ol > li.none {
  margin-left: 0;
  list-style-type: none;
}

.box_02, .box_01 {
  margin-bottom: 1em;
  padding: 1em;
  border-radius: 2rem;
}
.box_02 > :last-child, .box_01 > :last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .box_02, .box_01 {
    padding: 30px;
    border-radius: 40px;
  }
}

.box_01 {
  background: var(--color-main-pale);
}

.box_02 {
  background: var(--color-sub-pale);
}

:where(.contents) :where(a) {
  color: var(--color-main);
  text-decoration: underline;
}
@media screen and (min-width: 48em), print {
  :where(.contents) :where(a):hover {
    text-decoration: none;
  }
}

.lnk_pdf::before {
  display: inline-block;
  margin-right: 0.5em;
  font-family: "fontello";
  font-weight: normal;
  content: '\f1c1';
}

.lnkp_btns ul li ~ li {
  margin-top: 0.5em;
}
.lnkp_btns ul li a {
  display: block;
  position: relative;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  border-radius: 10em;
  padding: 0.8em 2.5em 0.8em 1.2em;
  font-weight: 500;
  text-align: left;
  color: var(--color-base-txt);
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  box-shadow: 0 0.2rem 0 var(--color-shadow);
}
.lnkp_btns ul li a::after {
  position: absolute;
  right: 1em;
  top: 50%;
  display: inline-block;
  margin-left: 1em;
  transform: translateY(-0.5em);
}
.lnkp_btns ul li a::after {
  font-family: "fontello";
  font-weight: normal;
  content: '\e4a2';
  color: var(--color-main);
}
.lnkp_btns ul li a[href$=".pdf"]::after {
  font-family: "fontello";
  font-weight: normal;
  content: '\f1c1';
}
@media screen and (min-width: 48em), print {
  .lnkp_btns ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1em;
  }
  .lnkp_btns ul li ~ li {
    margin-top: 0;
  }
  .lnkp_btns ul li a:hover {
    border-color: var(--color-main-lite);
    background-color: var(--color-main-pale);
    box-shadow: 0 0.2rem 0 var(--color-main-hover);
  }
  .lnkp_btns ul li a:hover::after {
    color: var(--color-base-txt);
  }
}

.lnkp_anchor {
  margin-bottom: 3rem;
}
.lnkp_anchor ul li {
  margin-bottom: 0.6rem;
}
.lnkp_anchor ul li a {
  display: block;
  position: relative;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  border-radius: 10em;
  padding: 0.8em 2.5em;
  font-weight: 500;
  text-align: left;
  color: var(--color-base-txt);
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  box-shadow: 0 0.2rem 0 var(--color-shadow);
}
.lnkp_anchor ul li a::before {
  position: absolute;
  left: 1em;
  top: 50%;
  display: inline-block;
  margin-right: 1em;
  transform: translateY(-0.5em);
}
.lnkp_anchor ul li a::before {
  font-family: "fontello";
  font-weight: normal;
  content: '\e80c';
  color: var(--color-main);
}
@media screen and (min-width: 48em), print {
  .lnkp_anchor {
    margin-bottom: 60px;
  }
  .lnkp_anchor ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .lnkp_anchor ul li {
    flex: 1 0 22%;
    margin-bottom: 0;
  }
  .lnkp_anchor ul li a:hover {
    background-color: var(--color-main-dot);
  }
}

.btn_detail, .btn_back {
  display: inline-block;
  position: relative;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  border-radius: 10em;
  padding: 0.7em 2.2em 0.8em;
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-main);
  border: 2px solid var(--color-white);
  box-shadow: 0.2rem 0.2rem 0.4rem var(--color-shadow);
}
.btn_detail::after, .btn_back::after {
  position: absolute;
  right: 1em;
  top: 50%;
  display: inline-block;
  margin-left: 1em;
  transform: translateY(-0.5em);
}
.btn_detail::after, .btn_back::after {
  font-family: "fontello";
  font-weight: normal;
  content: '\e80d';
}
@media screen and (min-width: 48em), print {
  .btn_detail, .btn_back {
    padding: 0.9em 2.5em;
  }
  .btn_detail:hover, .btn_back:hover {
    background-color: var(--color-main-hover);
    border-color: transparent;
    box-shadow: none;
  }
}

mark {
  color: inherit;
  background: linear-gradient(transparent 60%, var(--color-highlight, mark) 60%);
}

.em {
  font-weight: bold;
}

.attn, .notification {
  color: var(--color-attention, #f00);
}

.f-smaller {
  font-size: 0.85em;
}

.f-larger {
  font-size: 1.15em;
}

.f-fpm {
  font-feature-settings: "palt";
}

.notification, ul.remarks > li, dl.remarks > dt, :not(dl, ul).remarks {
  padding-left: 1em;
  text-indent: -1em;
}
.notification > *, ul.remarks > li > *, dl.remarks > dt > *, :not(dl, ul).remarks > * {
  text-indent: 0;
}

span:not(dl, ul).remarks {
  display: inline-block;
}

dl.remarks > dt ~ dt {
  margin-top: 0.8em;
}

.notification {
  line-height: 1.5;
}

.js-tel {
  white-space: nowrap;
}
@media screen and (max-width: 47.99em) {
  .js-tel a {
    color: inherit;
    text-decoration: none !important;
  }
}

.phone:has(> a) a::before, .phone::before {
  display: inline-block;
  font-family: "fontello";
  font-weight: normal;
  content: '\e801';
  transform: scale(0.8) translateX(-0.1em);
  line-height: 1;
}

.phone:has(> a)::before {
  display: none;
}
.phone:has(> a) a {
  display: inline-block;
}
.timetable_tbl {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  line-height: 1;
}
.timetable_tbl thead th {
  padding: 0.8rem 0;
  font-weight: 500;
  text-align: left;
  background-color: var(--color-main-lite);
}
.timetable_tbl thead th:first-child {
  width: 33%;
  text-align: center;
  border-top-left-radius: 1rem;
}
.timetable_tbl thead th:last-child {
  width: 12%;
  border-top-right-radius: 1rem;
}
.timetable_tbl tbody th {
  padding: 1.6rem 0;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-border2);
}
.timetable_tbl tbody td {
  padding: 1.6rem 0;
  font-weight: 700;
  font-family: monospace;
  color: var(--color-main);
  border-bottom: 1px solid var(--color-border2);
}
.timetable_tbl tbody td:last-child {
  padding-left: 2%;
}
.timetable_note {
  padding-top: 0.7em;
  line-height: 1.5;
}
.timetable_note .closed {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.7em;
}
.timetable_note .closed dt {
  padding-inline: 1em;
  font-weight: 500;
  color: var(--color-main);
  border: 1px solid currentColor;
  border-radius: 0.5em;
}
.timetable_note .closed dd {
  flex-grow: 1;
}

@media screen and (min-width: 48em), print {
  .timetable_tbl thead th {
    padding: 0.63em 0;
  }
  .timetable_tbl thead th:first-child {
    width: 32%;
    border-top-left-radius: 20px;
  }
  .timetable_tbl thead th:last-child {
    width: 11.8%;
    border-top-right-radius: 20px;
  }
  .timetable_tbl tbody th {
    padding: 0.85em 0;
    border-bottom-width: 2px;
  }
  .timetable_tbl tbody td {
    padding: 0.85em 0;
    border-bottom-width: 2px;
  }
  .timetable_note {
    padding-top: 0.8em;
  }
  .timetable_note .closed {
    gap: 0.6em;
  }
  .timetable_note .closed dt {
    padding-inline: 1.3em;
  }
}
body#page_index .tit_02::after {
  display: block;
  margin-top: 0.8rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-main);
  content: attr(data-en);
}
@media screen and (min-width: 48em), print {
  body#page_index .tit_02::after {
    margin-top: 12px;
    font-size: 1.8rem;
  }
}

.keyvsl {
  position: relative;
  height: 24rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 3rem 1rem;
  background-image: url(../img/index_keyvsl.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.keyvsl em {
  display: inline-block;
  font-weight: 700;
  font-size: 2.3rem;
  letter-spacing: 0.03em;
  word-spacing: 0.3em;
  text-align: center;
  text-shadow: rgb(var(--color-white-rgb)/0.5) 2px 0px 0px, rgb(var(--color-white-rgb)/0.5) 1.75517px 0.958851px 0px, rgb(var(--color-white-rgb)/0.5) 1.0806px 1.68294px 0px, rgb(var(--color-white-rgb)/0.5) 0.141474px 1.99499px 0px, rgb(var(--color-white-rgb)/0.5) -0.832294px 1.81859px 0px, rgb(var(--color-white-rgb)/0.5) -1.60229px 1.19694px 0px, rgb(var(--color-white-rgb)/0.5) -1.97998px 0.28224px 0px, rgb(var(--color-white-rgb)/0.5) -1.87291px -0.701566px 0px, rgb(var(--color-white-rgb)/0.5) -1.30729px -1.5136px 0px, rgb(var(--color-white-rgb)/0.5) -0.421592px -1.95506px 0px, rgb(var(--color-white-rgb)/0.5) 0.567324px -1.91785px 0px, rgb(var(--color-white-rgb)/0.5) 1.41734px -1.41108px 0px, rgb(var(--color-white-rgb)/0.5) 1.92034px -0.558831px 0px;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    width: clamp(1200px, 100%, 1800px);
    height: 700px;
    padding: 60px 0;
    margin-inline: auto;
  }
  .keyvsl em {
    font-weight: 500;
    font-size: 4.8rem;
    letter-spacing: 0.05em;
    word-spacing: 0.5em;
  }
}
.js-accordion > dt {
  cursor: pointer;
}
.js-accordion > dd {
  word-wrap: break-word;
}
.js-accordion > dd a {
  text-decoration: underline;
}
.js-accordion > dd a:hover {
  text-decoration: none;
}
.js-accordion > dd:not(:nth-of-type(-n+3)) {
  display: none;
}

.news {
  padding: 6rem 5% 4rem;
}
.news .box dt {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--color-main);
}
.news .box dt::before {
  display: inline-block;
  margin-right: 0.5rem;
  font-family: "fontello";
  font-weight: normal;
  content: '\e800';
  font-size: 90%;
  vertical-align: 0.05em;
}
.news .box dt.is_open::before {
  content: "\e803";
}
.news .box dt ~ dt {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--color-border);
}

@media screen and (min-width: 48em), print {
  .news {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin-inline: auto;
    padding: 80px 0;
  }
  .news .tit_02 {
    flex: none;
    width: 400px;
  }
  .news .box {
    width: 800px;
  }
  .news .box dt {
    font-size: 2.2rem;
  }
  .news .box dt::before {
    margin-right: 10px;
  }
  .news .box dd {
    padding-left: 30px;
  }
}
.infobox {
  padding: 6rem 5%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.infobox .btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 1rem;
  margin-top: 3rem;
}
.infobox .btns li {
  width: 48%;
}
.infobox .btns li a {
  display: grid;
  place-content: center;
  gap: 0.3rem;
  min-height: 7rem;
  padding-block: 0.3em;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  border: 2px solid var(--color-white);
  border-radius: 5em;
  box-shadow: 0.2rem 0.2rem 0.4rem var(--color-shadow);
}
.infobox .btns li a::after {
  display: block;
  font-family: "fontello";
  font-weight: normal;
  content: '\e80d';
  font-size: 90%;
}
.infobox .btns li:nth-child(odd) a {
  color: var(--color-white);
  background-color: var(--color-main);
}
.infobox .btns li:nth-child(even) a {
  color: var(--color-white);
  background-color: var(--color-sub);
}
.infobox[data-cont=clinics] {
  background-image: url(../img/index_clinics_bg.webp);
}
@media screen and (max-width: 47.99em) {
  .infobox[data-cont=clinics] .btns li {
    width: 85%;
  }
}
.infobox[data-cont=clinics] .btns li a {
  gap: 0;
  padding-top: 0.5em;
  line-height: 1.2;
}
.infobox[data-cont=clinics] .btns li a::after {
  margin-top: 0.5em;
}
.infobox[data-cont=housecall] {
  background-image: url(../img/index_housecall_bg.webp);
}

@media screen and (min-width: 48em), print {
  .infobox {
    padding: 80px 0 72px;
  }
  .infobox .btns {
    gap: 20px;
    width: 1200px;
    margin-top: 60px;
    margin-inline: auto;
  }
  .infobox .btns li {
    width: 285px;
  }
  .infobox .btns li a {
    gap: 8px;
    min-height: 100px;
    padding-top: 0.5em;
    font-size: 2.2rem;
  }
  .infobox .btns li a:hover {
    border-color: transparent;
    box-shadow: none;
  }
  .infobox[data-cont=clinics] .btns li a span {
    font-size: 90%;
  }
}
.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 10rem;
  padding: 1rem 5%;
  color: var(--color-main);
  background-color: var(--color-main-pale);
}
.heading h1 {
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  word-break: keep-all;
  text-indent: 0.2em;
  text-align: center;
}
@media screen and (min-width: 48em), print {
  .heading {
    min-height: 260px;
    padding: 0 calc(50% - 600px);
  }
  .heading h1 {
    font-size: 4.8rem;
    word-break: normal;
  }
}

.breadcrumbs {
  padding: 1.5rem 5%;
  font-size: 1.3rem;
  line-height: 1.3;
}
.breadcrumbs li {
  display: inline-block;
}
.breadcrumbs li:not(:first-child)::before {
  display: inline-block;
  margin: 0 0.2em;
  content: "＞";
}
.breadcrumbs li a {
  color: var(--color-main);
  text-decoration: underline;
}
@media screen and (min-width: 48em), print {
  .breadcrumbs {
    padding: 30px 0;
    font-size: 1.8rem;
  }
  .breadcrumbs ol {
    width: 1200px;
    margin-inline: auto;
  }
  .breadcrumbs ol a:hover {
    text-decoration: none;
  }
}

.contents {
  padding: 6rem 5%;
}
@media screen and (min-width: 48em), print {
  .contents {
    width: 1200px;
    margin-inline: auto;
    padding: 40px 0 80px;
  }
}

.mapimg {
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 48em), print {
  .mapimg {
    max-width: 750px;
  }
}

.notfound {
  padding: 3rem 1rem;
  text-align: center;
}
.notfound .btn_back {
  margin-top: 2em;
}

/*# sourceMappingURL=style.css.map */