@charset "UTF-8";

:root {
  --header-h: 60px;
  --fixed-h: 60px;
}

@media screen and (min-width: 1024px) {
  :root {
    --header-h: 134px;
    --fixed-h: 80px;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
  background-repeat: no-repeat;
}

* {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--fixed-h);
}

body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
}

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

:where(a:any-link) {
  color: inherit;
  text-decoration: unset;
}

:where(a:any-link):has(> img) {
  display: block;
}

:where(img) {
  display: block;
  max-width: 100%;
  height: auto;
}

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

:where(table) {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid var(--border, currentColor);
}

:where(th,
  td) {
  padding: 5px;
  border: 1px solid var(--border, currentColor);
}

:where(button) {
  display: block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  background: none;
  background-repeat: no-repeat;
  border: none;
  border-radius: unset;
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
}

.ff-zm {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
}

.site {
  margin-top: var(--header-h);
}

div[class^="inner"] {
  width: calc(100% - 40px);
  margin-inline: auto;
}

.inner {
  max-width: 900px;
}

.inner-lg {
  max-width: 1000px;
}

.link-btn {
  width: 100%;
  border: 1px solid #707070;
  border-radius: 45px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
  overflow: hidden;
  isolation: isolate;
}

.link-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 44px;
  color: var(--link-txt, currentcolor);
  font-weight: bold;
  text-decoration: none;
  background-color: var(--link-bg, #fff);
}

.link-btn.news {
  --link-txt: #4e4e4e;
  --link-bg: #edfaf5;
  max-width: 269px;
  margin-inline: auto;
}

.link-btn.news a {
  padding: 5px 45px;
  background-image: url("../img/link_arrow.svg");
  background-position: center right 16px;
  background-size: 10px auto;
}

.link-btn.news.back a {
  background-image: url("../img/link_back.svg");
  background-position: center left 24px;
}

.link-btn.pdf a {
  justify-content: unset;
  background-image: url("../img/top/icon_pdf.svg");
}

@media (any-hover: hover) {
  .link-btn a {
    transition: opacity 0.3s ease;
  }

  .link-btn a:hover {
    opacity: 0.6;
  }
}

/* header */
.site-header {
  width: 100%;
  padding: 0 10px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  height: 60px;
}

.header--right {
  display: none;
}

.site-title {
  max-width: 256px;
}

.site-description {
  display: none;
}

.menu--btn {
  flex-shrink: 0;
}

@media screen and (min-width: 1024px) {
  .site-header {
    padding: 16px 28px;
    position: absolute;
  }

  .site-title {
    max-width: 474px;
  }

  .site-description {
    display: revert;
  }

  .site-description span {
    display: inline-block;
  }

  .header--inner {
    max-width: 1344px;
    height: 102px;
    padding: 5px 45px 5px 27px;
    margin-inline: auto;
  }

  .header--left {
    display: flex;
    align-items: center;
    column-gap: 36px;
  }

  .header--right {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    column-gap: 15px;
  }

  .header--right .qr--img {
    max-width: 72px;
    margin-inline: auto;
  }

  .header--right .qr--label {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
  }

  .header--right .tel {
    display: grid;
    row-gap: 7px;
    justify-content: center;
    font-weight: bold;
  }

  .header--right .tel .item {
    display: grid;
    grid-template-columns: 81px auto;
    column-gap: 9px;
    align-items: baseline;
  }

  .header--right .tel dt {
    padding: 1px 5px 3px;
    color: #fff;
    font-size: 17px;
    letter-spacing: 0.2em;
    text-align: center;
    background-color: #70c6a9;
    border-radius: 17px;
  }

  .header--right .tel dd {
    font-size: 24px;
    line-height: 1.458;
  }

  .header--right .tel dd .label {
    font-size: 18px;
  }
}

@media (any-hover: hover) {
  .site-header a {
    transition: opacity 0.3s ease;
  }

  .site-header a:hover {
    opacity: 0.6;
  }
}

/* gnav */
.gnav {
  --gnav-1: #edfaf5;
  --gnav-2: #70c6a9;
  display: none;
  background-color: var(--gnav-1);
}

.gnav--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: var(--gnav-2);
}

.gnav--list .item {
  padding: 18px 5px;
  background-color: var(--gnav-1);
}

.gnav--list a {
  display: inline-block;
  padding: 1px 5px;
}

@media screen and (min-width: 1024px) {
  .gnav {
    display: revert;
    padding-top: 19px;
    padding-bottom: 18px;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .gnav--list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    max-width: 1000px;
    margin-inline: auto;
    padding: 0 1px;
  }

  .gnav--list .item {
    width: 100%;
    padding: 5px 10px 6px;
  }
}

@media (any-hover: hover) {
  .gnav--list a {
    transition: opacity 0.3s ease;
  }

  .gnav--list a:hover {
    opacity: 0.6;
  }
}

/* menu */
.menu--btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 3px;
  padding: 8px 0 3px;
}

.menu--btn .icon {
  display: block;
  width: 29px;
  height: 13px;
  color: #2478b6;
  border-style: solid;
  border-width: 3px 0;
  position: relative;
}

.menu--btn .icon::before,
.menu--btn .icon::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.menu--btn .label {
  font-size: 11px;
}

.menu--btn[aria-expanded="true"] .icon {
  border-color: transparent;
}

.menu--btn[aria-expanded="true"] .icon::before,
.menu--btn[aria-expanded="true"] .icon::after {
  background-color: currentcolor;
  transition: rotate 0.3s ease;
}

.menu--btn[aria-expanded="true"] .icon::before {
  rotate: 33deg;
}

.menu--btn[aria-expanded="true"] .icon::after {
  rotate: -33deg;
}

.menu {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
}

.menu[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
}

.menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.menu--content {
  height: 100%;
  padding: 86px 20px 70px;
  color: #fff;
  background: linear-gradient(270deg, #2478b6 0%, #4195b1 31%, #70c6a9 100%);
  overflow-y: auto;
  position: relative;
}

.menu--inner {
  max-width: 430px;
  margin-inline: auto;
}

.menu--list {
  display: grid;
  row-gap: 33px;
  margin-bottom: 49px;
  letter-spacing: 0.05em;
  text-align: center;
}

.menu--name {
  margin-top: 34px;
  text-align: center;
}

.menu--address {
  margin-top: 12px;
  line-height: 1.875;
  text-align: center;
}

.menu--tel {
  display: grid;
  row-gap: 7px;
  justify-content: center;
  margin-top: 28px;
  font-weight: bold;
}

.menu--tel .item {
  display: grid;
  grid-template-columns: 81px auto;
  column-gap: 9px;
  align-items: baseline;
}

.menu--tel dt {
  padding: 1px 5px 3px;
  color: #70c6a9;
  font-size: 17px;
  letter-spacing: 0.2em;
  text-align: center;
  background-color: #fff;
  border-radius: 17px;
}

.menu--tel dd {
  font-size: 24px;
  line-height: 1.458;
}

.menu--tel dd .label {
  font-size: 18px;
}

@media screen and (min-width: 1024px) {

  .menu--btn,
  .menu {
    display: none;
  }
}

/* main */
.schedule table {
  --border: #a7a7a7;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  color: #4e4e4e;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.schedule th,
.schedule td {
  font-weight: 400;
  text-align: center;
  border-width: 0;
}

.schedule thead th {
  padding: 10px 1px;
}

.schedule thead th:not(:last-child) {
  border-right-width: 1px;
}

.schedule tbody th {
  background-color: var(--color-1, #fff);
  border-width: 1px 1px 0 0;
}

.schedule tbody th[rowspan] {
  padding: 11px 5px;
  font-size: 14px;
}

.schedule tbody th:not([rowspan]) {
  padding: 6px 3px;
  font-size: 15px;
}

.schedule tbody td {
  padding: 5px 1px;
  font-size: 20px;
  background-color: var(--color-2, #fff);
  border-top-width: 1px;
}

.schedule tbody td:not(:last-child) {
  border-right-width: 1px;
}

.schedule tbody td em {
  color: var(--color-3, currentcolor);
}

.schedule .r1 {
  --color-1: #d8ebe4;
  --color-2: #e4f5ef;
  --color-3: #3da71a;
}

.schedule .r2 {
  --color-1: #d7e6f0;
  --color-2: #e3eef6;
  --color-3: #2478b6;
}

.schedule .c1 {
  width: 9.3%;
}

.schedule .c2 {
  width: 22.1%;
}

.schedule .c4 {
  width: 14.6%;
}

.schedule .sat {
  color: #009ee2;
}

.schedule .sun {
  color: #f00;
  letter-spacing: -0.3em;
  text-indent: -0.3em;
}

.schedule .time {
  display: inline-flex;
  flex-direction: column;
}

.schedule .time .t1,
.schedule .time .t3 {
  text-align: left;
}

.schedule .time .t2,
.schedule .time .t4 {
  text-align: right;
}

@media screen and (min-width: 375px) {

  .schedule .time .t2,
  .schedule .time .t4 {
    padding-left: 0.5em;
  }
}

@media screen and (min-width: 650px) {
  .schedule .c4 {
    width: auto;
  }

  .schedule .sun {
    letter-spacing: 0;
    text-indent: 0;
  }

  .schedule .time {
    display: revert;
  }

  .schedule .time .t1 {
    padding-left: 0.5em;
  }

  .schedule .time .t2,
  .schedule .time .t4 {
    padding-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .schedule {
    max-width: 752px;
    margin-inline: auto;
  }

  .schedule .c1,
  .schedule .c2 {
    width: 134px;
  }
}

.heading-lv1 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}

.heading-lv1::after {
  content: '';
  display: block;
  width: 71px;
  height: 6px;
  margin-top: 16px;
  margin-inline: auto;
  background: linear-gradient(270deg, #70c6a9 0%, #2478b6 100%);
  border-radius: 3px;
}

/* お知らせ */
.news--list {
  display: grid;
  row-gap: 16px;
}

.news--list .item {
  display: grid;
  row-gap: 5px;
}

.news--list .item:not(:last-child) {
  padding-bottom: 8px;
  border-bottom: 1px solid #a7a7a7;
}

@media screen and (min-width: 768px) {
  .news--list .item {
    grid-template-columns: 6.2em 1fr;
    column-gap: 40px;
  }

  .news--list .item:not(:last-child) {
    padding-bottom: 15px;
  }
}

.post--date {
  color: #2478b6;
  letter-spacing: 0.12em;
}

.post--title {
  color: #4e4e4e;
  letter-spacing: 0.12em;
}

.sec-news {
  padding-top: 54px;
  padding-bottom: 35px;
}

.sec-news .heading-lv1 {
  margin-bottom: 35px;
}

.sec-news .news--error {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.sec-single {
  padding-top: 54px;
  padding-bottom: 80px;
}

.sec-single .heading-lv1 {
  margin-bottom: 43px;
}

.sec-single .single--title {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.sec-single .single--content {
  margin-top: 16px;
  line-height: 1.875;
  letter-spacing: 0.1em;
}

.sec-single .single--content > * {
  margin-bottom: 20px;
}

.sec-single .single--content a {
  text-decoration: underline;
}

.sec-single .single--content img {
  display: inline-block;
}

.sec-single .single--content ul,
.sec-single .single--content ol {
  list-style: revert;
  padding-left: 2em;
}

.sec-single .link-btn {
  margin-top: 63px;
}

@media (any-hover: hover) {
  .sec-single .single--content a {
    transition: opacity 0.3s ease;
  }

  .sec-single .single--content a:hover {
    opacity: 0.6;
  }
}

/* footer */
.site-footer {
  margin-top: 50px;
}

.footer--scroll {
  display: none;
}

.footer--top {
  padding-top: 64px;
  padding-bottom: 55px;
  color: #fff;
  background: linear-gradient(270deg, #2478b6 0%, #4195b1 31%, #70c6a9 100%);
}

.footer--top .logo {
  max-width: 361px;
  margin-inline: auto;
}

.footer--top .list {
  display: grid;
  row-gap: 50px;
  margin-top: 45px;
  text-align: center;
}

.footer--top .item {
  display: grid;
  row-gap: 12px;
}

.footer--top .item-name {
  font-weight: bold;
}

.footer--top .item-address {
  line-height: 1.875;
}

.footer--top .item-tel {
  font-size: 24px;
  font-weight: bold;
}

.footer--top .item-tel .label {
  font-size: 18px;
}

.footer--bottom {
  padding-top: 26px;
  padding-bottom: 26px;
}

.footer--bottom .copy {
  font-size: 14px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .site-footer {
    position: relative;
  }

  .footer--scroll {
    display: revert;
    position: absolute;
    top: -66px;
    right: 32px;
    z-index: 1;
  }

  .footer--top {
    padding-top: 67px;
    padding-bottom: 65px;
  }

  .footer--top .list {
    grid-template-columns: repeat(2, max-content);
    column-gap: 100px;
    justify-content: center;
  }

  .footer--bottom {
    padding-bottom: 32px;
  }
}

/* フェードイン効果 */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    transition: none;
    transform: none;
    opacity: 1;
  }
}