/*--------------------------------------
	VW Unit System for Responsive Design
	PC (768px+): calc(px * 100vw / 1440px)
	SP (767px-): calc(px * 100vw / 375px)
--------------------------------------*/
/* --------------------------------------
	font-family
--------------------------------------*/
html {
  font-family: "Zen Maru Gothic", sans-serif;
}
/* --------------------------------------
	information
--------------------------------------*/
.information__info {
  padding: calc(37 * 100vw / 1440);
  background-color: #fff;
  border: calc(3 * 100vw / 1440) solid #dee7f0;
  border-radius: calc(20 * 100vw / 1440);
}

.information__table {
  width: 100%;
  max-width: calc(680 * 100vw / 1440);
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: calc(4 * 100vw / 1440) 0;
}

.information__table > thead {
  border-bottom: calc(2 * 100vw / 1440) solid #dee7f0;
  position: relative;
}
.information__table > thead::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(3 * 100vw / 1440);
  background-color: #dee7f0;
  position: absolute;
  bottom: calc(-3 * 100vw / 1440);
  left: 0;
}

.information__table th,
.information__table td {
  text-align: center;
}

.information__table th {
  padding-bottom: calc(10 * 100vw / 1440);
  font-size: calc(16 * 100vw / 1440);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  width: 9%;
}

.information__table th:first-child {
  width: 23%;
}

.information__table th:last-child {
  width: 12%;
}

th.information__time-col {
  padding-bottom: calc(10 * 100vw / 1440);
}

td.information__time-col {
  padding-block: calc(10 * 100vw / 1440);
  font-size: calc(16 * 100vw / 1440);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.information__table tbody tr:nth-child(2) td {
  padding-top: calc(10 * 100vw / 1440);
  padding-bottom: initial;
}

.information__symbol--star {
  display: inline-block;
  width: calc(16 * 100vw / 1440);
  height: calc(16 * 100vw / 1440);
  background: url(../images/common/star.svg) no-repeat center / contain;
}

.information__symbol--circle {
  display: inline-block;
  width: calc(13 * 100vw / 1440);
  height: calc(13 * 100vw / 1440);
  background-color: #15558a;
  border-radius: 50%;
}

.information__symbol--dash {
  display: inline-block;
  width: calc(10 * 100vw / 1440);
  height: calc(2 * 100vw / 1440);
  background-color: #15558a;
  vertical-align: super;
}

.information__notes {
  font-size: calc(14 * 100vw / 1440);
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  white-space: nowrap;
}
/*--------------------------------------
  web-link
--------------------------------------*/
.web-link {
  padding: calc(29 * 100vw / 1440) calc(10 * 100vw / 1440);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 * 100vw / 1440);
  width: 100%;
  font-size: calc(20 * 100vw / 1440);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background-color: #e06965;
  border-radius: calc(10 * 100vw / 1440);
  text-align: center;
}
.web-link:after {
  display: block;
  content: "";
  width: calc(31.5 * 100vw / 1440);
  height: calc(3 * 100vw / 1440);
  background: url(../images/common/arrow-white.svg) no-repeat center / cover;
  transition: translate 0.3s ease-out;
}
@media (any-hover: hover) {
  .web-link:hover::after {
    translate: calc(8 * 100vw / 1440) 0;
  }
}
/*--------------------------------------
  tel-link
--------------------------------------*/
.tel-link {
  padding: calc(11 * 100vw / 1440) calc(10 * 100vw / 1440);
  display: inline-block;
  width: 100%;
  color: #fff;
  background-color: #257bc2;
  border-radius: calc(10 * 100vw / 1440);
  text-align: center;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .tel-link:hover {
    opacity: 0.8;
  }
}

.tel-link__title {
  font-size: calc(16 * 100vw / 1440);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}

.tel-link__phone {
  margin-top: calc(4 * 100vw / 1440);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: calc(4 * 100vw / 1440);
  font-size: calc(24 * 100vw / 1440);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}
.tel-link__phone:before {
  display: block;
  content: "";
  width: calc(15.3 * 100vw / 1440);
  height: calc(20 * 100vw / 1440);
  background: url(../images/common/tel.svg) no-repeat center / cover;
}

.tel-link__note {
  margin-top: calc(4 * 100vw / 1440);
  font-size: calc(12 * 100vw / 1440);
  font-weight: 500;
  line-height: 1.5;
}
/* --------------------------------------
	header
--------------------------------------*/
.header {
  width: 100%;
  height: calc(100 * 100vw / 1440);
  position: fixed;
  inset: 0;
  transition: background-color 0.3s ease-out;
  z-index: 15;
}
/*
body:not(.home) .header {
  position: relative;
}
*/

.header.is-scrolled {
  background-color: #eef2f6;
}

.header__inner {
  padding-inline: calc(60 * 100vw / 1440);
  display: flex;
  align-items: center;
  height: inherit;
  transition: padding-left 0.3s ease-out;
}

.header__title {
  color: #333;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .header__title:hover {
    opacity: 0.8;
  }
}

.header__head-title-read {
  display: block;
  font-size: calc(14 * 100vw / 1440);
  font-weight: 700;
  line-height: 1.5;
}

.header__head-title-main {
  display: block;
  font-size: calc(32 * 100vw / 1440);
  font-weight: 700;
  line-height: 1.5;
}

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: calc(50 * 100vw / 1440);
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__link {
  padding-inline: calc(12 * 100vw / 1440);
  display: inline-flex;
  align-items: center;
  height: inherit;
  font-size: calc(16 * 100vw / 1440);
  font-weight: 700;
  line-height: 2;
  text-transform: uppercase;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .header__item:hover .header__link {
    color: #15558a;
  }
}

.header__button {
  display: flex;
  align-items: center;
  gap: calc(20 * 100vw / 1440);
}

.header__tel-link {
  padding: calc(8 * 100vw / 1440) calc(13 * 100vw / 1440);
  display: inline-block;
  width: 100%;
  color: #fff;
  background-color: #257bc2;
  border-radius: calc(10 * 100vw / 1440);
  text-align: center;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .header__tel-link:hover {
    opacity: 0.8;
  }
}

.header__tel-title {
  font-size: calc(12 * 100vw / 1440);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

.header__tel-phone {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: calc(4 * 100vw / 1440);
  font-size: calc(24 * 100vw / 1440);
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}
.header__tel-phone:before {
  display: block;
  content: "";
  width: calc(15.3 * 100vw / 1440);
  height: calc(20 * 100vw / 1440);
  background: url(../images/common/tel.svg) no-repeat center / cover;
}

.header__tel-note {
  font-size: calc(11 * 100vw / 1440);
  font-weight: 500;
  line-height: calc(18 / 11);
}

.header__web-link {
  padding: calc(20 * 100vw / 1440) calc(10 * 100vw / 1440);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 * 100vw / 1440);
  width: calc(181 * 100vw / 1440);
  font-size: calc(17 * 100vw / 1440);
  font-weight: 700;
  line-height: calc(36 / 17);
  color: #fff;
  background-color: #e06965;
  border-radius: calc(10 * 100vw / 1440);
  text-align: center;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .header__web-link:hover {
    opacity: 0.8;
  }
}

.hamburger {
  display: none;
}

.drawer {
  display: none;
}

/* --------------------------------------
	footer
--------------------------------------*/
.footer {
  padding-top: calc(60 * 100vw / 1440);
  padding-bottom: calc(20 * 100vw / 1440);
  background-color: #eef2f6;
  position: relative;
}
.footer:before {
  content: "";
  width: calc(720 * 100vw / 1440);
  height: calc(720 * 100vw / 1440);
  background-color: #dee7f0;
  border-radius: 50%;
  clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 50% 100%);
  position: absolute;
  top: calc(-360 * 100vw / 1440);
  left: calc(-360 * 100vw / 1440);
}

.footer__inner {
  margin-inline: auto;
  padding-inline: calc(25 * 100vw / 1440);
  max-width: calc(1130 * 100vw / 1440);
  position: relative;
}

.footer__head {
  display: flex;
  gap: calc(50 * 100vw / 1440);
}

.footer__head-info {
  width: 100%;
  max-width: calc(520 * 100vw / 1440);
  color: #333;
}

.footer__head-title {
  display: block;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .footer__head-title:hover {
    opacity: 0.8;
  }
}

.footer__head-title-read {
  display: block;
  font-size: calc(14 * 100vw / 1440);
  font-weight: 700;
  line-height: 1.5;
}

.footer__head-title-main {
  font-size: calc(32 * 100vw / 1440);
  font-weight: 700;
  line-height: 1.5;
}

.footer__head-address {
  margin-top: calc(15 * 100vw / 1440);
}

.footer__head-text {
  font-size: calc(20 * 100vw / 1440);
  font-weight: 400;
  line-height: calc(35 / 20);
}

.footer__item + .footer__item {
  margin-top: calc(10 * 100vw / 1440);
}

.footer__link {
  display: flex;
  align-items: center;
  gap: calc(10 * 100vw / 1440);
  font-size: calc(17 * 100vw / 1440);
  font-weight: 700;
  line-height: calc(36 / 17);
  color: #000;
  text-transform: uppercase;
  transition: color 0.3s ease-out;
}
.footer__link:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: calc(10 * 100vw / 1440) solid transparent;
  border-bottom: calc(10 * 100vw / 1440) solid transparent;
  border-left: calc(10 * 100vw / 1440) solid #15558a;
  border-right: 0;
}
@media (any-hover: hover) {
  .footer__link:hover {
    color: #15558a;
  }
}

.footer__bottom {
  margin-top: calc(40 * 100vw / 1440);
  display: flex;
  gap: calc(50 * 100vw / 1440);
}

.footer__bottom-info {
  width: 100%;
  max-width: calc(520 * 100vw / 1440);
}

.footer-information__notes {
  margin-top: calc(10 * 100vw / 1440);
}

.footer__bottom-button {
  margin-top: calc(3 * 100vw / 1440);
  width: calc(480 * 100vw / 1440);
}

.footer__tel-button {
  margin-top: calc(10 * 100vw / 1440);
}

.footer__copy {
  margin-top: calc(20 * 100vw / 1440);
  text-align: center;
}

.footer__copy small {
  font-size: calc(14 * 100vw / 1440);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
/* --------------------------------------
	フローティングバナー
--------------------------------------*/
.floating-banner {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: calc(10 * 100vw / 1440);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.floating-banner.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* --------------------------------------
	ドロワーメニュー用のボディスクロール制御
--------------------------------------*/
body.hidden {
  overflow: hidden;
}

.floating-banner__tel,
.floating-banner__web {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(64 * 100vw / 1440);
  height: calc(219 * 100vw / 1440);
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: 0 0 calc(5 * 100vw / 1440) rgba(236, 236, 236, 1);
  border-radius: calc(20 * 100vw / 1440) 0 0 calc(20 * 100vw / 1440);
  transition: opacity 0.3s ease-out;
}

.floating-banner__tel {
  background-color: #15558a;
}

.floating-banner__tel-text,
.floating-banner__web-text {
  font-size: calc(16 * 100vw / 1440);
  font-weight: 700;
  line-height: calc(18 / 16);
  letter-spacing: 0.1em;
  text-align: center;
}

.floating-banner__web {
  background-color: #e06965;
  text-orientation: upright;
}
@media (any-hover: hover) {
  .floating-banner__tel:hover,
  .floating-banner__web:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 767px) {
  /* --------------------------------------
    information
  --------------------------------------*/
  .information__info {
    padding: calc(12 * 100vw / 375) calc(8.5 * 100vw / 375);
    border: calc(3 * 100vw / 375) solid #dee7f0;
    border-radius: calc(20 * 100vw / 375);
  }

  .information__table {
    max-width: initial;
    border-spacing: 0;
  }

  .information__table > thead {
    border-bottom: calc(2 * 100vw / 375) solid #dee7f0;
  }
  .information__table > thead::after {
    height: calc(2 * 100vw / 375);
    bottom: calc(-3 * 100vw / 375);
    left: 0;
  }

  .information__table th {
    padding-bottom: calc(10 * 100vw / 375);
    font-size: calc(14 * 100vw / 375);
    line-height: calc(25 / 14);
    width: 9%;
  }

  .information__table th:first-child {
    width: 23%;
  }

  .information__table th:last-child {
    width: 12%;
  }

  td.information__time-col {
    padding-block: calc(10 * 100vw / 375);
    font-size: calc(14 * 100vw / 375);
    line-height: calc(24 / 14);
    white-space: nowrap;
  }

  .information__table tbody tr:nth-child(2) td {
    padding-top: calc(10 * 100vw / 375);
  }

  .information__symbol--star {
    width: calc(16 * 100vw / 375);
    height: calc(16 * 100vw / 375);
  }

  .information__symbol--circle {
    width: calc(13 * 100vw / 375);
    height: calc(13 * 100vw / 375);
  }

  .information__symbol--dash {
    width: calc(10 * 100vw / 375);
    height: calc(2 * 100vw / 375);
  }

  .information__notes {
    font-size: calc(14 * 100vw / 375);
    white-space: initial;
  }
  /* --------------------------------------
    web-link 
  --------------------------------------*/
  .web-link {
    padding: calc(29 * 100vw / 375) calc(10 * 100vw / 375);
    gap: calc(10 * 100vw / 375);
    font-size: calc(20 * 100vw / 375);
    border-radius: calc(10 * 100vw / 375);
  }
  .web-link:after {
    width: calc(31.5 * 100vw / 375);
    height: calc(3 * 100vw / 375);
  }
  @media (any-hover: hover) {
    .web-link:hover::after {
      translate: calc(8 * 100vw / 375) 0;
    }
  }
  /* --------------------------------------
    tel-link
  --------------------------------------*/
  .tel-link {
    padding: calc(11 * 100vw / 375) calc(10 * 100vw / 375);
    border-radius: calc(10 * 100vw / 375);
  }

  .tel-link__title {
    font-size: calc(16 * 100vw / 375);
  }

  .tel-link__phone {
    margin-top: calc(4 * 100vw / 375);
    gap: calc(4 * 100vw / 375);
    font-size: calc(24 * 100vw / 375);
  }
  .tel-link__phone:before {
    width: calc(15.3 * 100vw / 375);
    height: calc(20 * 100vw / 375);
  }

  .tel-link__note {
    margin-top: calc(4 * 100vw / 375);
    font-size: calc(12 * 100vw / 375);
  }
  /* --------------------------------------
    header
  --------------------------------------*/
  .header {
    height: calc(83 * 100vw / 375);
  }

  .header__inner {
    padding-inline: calc(16 * 100vw / 375);
  }

  .header__head-title-read {
    font-size: calc(12 * 100vw / 375);
  }

  .header__head-title-main {
    font-size: calc(20 * 100vw / 375);
  }

  .header__nav {
    display: none;
  }

  .hamburger {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 51;
    width: calc(23 * 100vw / 375);
    height: calc(23 * 100vw / 375);
    cursor: pointer;
    transition: 0.3s;
    position: absolute;
    top: calc(29 * 100vw / 375);
    right: calc(16 * 100vw / 375);
  }

  .hamburger.is-open {
    background-color: transparent;
  }

  .hamburger span {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: calc(23 * 100vw / 375);
    height: calc(2 * 100vw / 375);
    background-color: #15558a;
    transition: 0.5s;
  }

  .hamburger span:nth-of-type(1) {
    top: calc(-6 * 100vw / 375);
  }

  .hamburger span:nth-of-type(2) {
    top: 0px;
  }

  .hamburger span:nth-of-type(3) {
    top: calc(6 * 100vw / 375);
  }

  .hamburger.is-open span:nth-of-type(1) {
    top: calc(2 * 100vw / 375);
    transform: translateX(-50%) rotate(45deg);
  }

  .hamburger.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .hamburger.is-open span:nth-of-type(3) {
    top: calc(-2 * 100vw / 375);
    transform: translateX(-50%) rotate(-45deg);
  }

  .drawer {
    background-color: #eef2f6;
    position: absolute;
    z-index: 50;
    inset: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
  }

  .drawer__items {
    padding-top: calc(100 * 100vw / 375);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .drawer__item {
    width: 100%;
  }

  .drawer__link {
    padding-block: calc(10 * 100vw / 375);
    display: block;
    font-size: calc(16 * 100vw / 375);
    font-weight: 700;
    line-height: calc(36 / 17);
    color: #333;
    text-transform: uppercase;
    transition: color 0.3s ease-out;
  }
  @media (any-hover: hover) {
    .drawer__link:hover {
      color: #15558a;
    }
  }

  .drawer__button {
    margin-top: calc(60 * 100vw / 375);
    padding-inline: calc(16 * 100vw / 375);
  }

  .drawer__web-button {
    margin-top: calc(10 * 100vw / 375);
  }

  /* --------------------------------------
    footer
  --------------------------------------*/
  .footer {
    padding-top: calc(40 * 100vw / 375);
    padding-bottom: calc(10 * 100vw / 375);
  }
  .footer:before {
    width: calc(360 * 100vw / 375);
    height: calc(360 * 100vw / 375);
    top: calc(-180 * 100vw / 375);
    left: calc(-180 * 100vw / 375);
  }

  .footer__inner {
    padding-inline: calc(16 * 100vw / 375);
    max-width: initial;
  }

  .footer__head {
    flex-direction: column;
    gap: calc(20 * 100vw / 375);
  }

  .footer__head-info {
    max-width: initial;
  }

  .footer__head-title-read {
    font-size: calc(12 * 100vw / 375);
  }

  .footer__head-title-main {
    font-size: calc(32 * 100vw / 375);
  }

  .footer__head-address {
    margin-top: calc(5 * 100vw / 375);
  }

  .footer__head-text {
    font-size: calc(16 * 100vw / 375);
    line-height: 1.5;
  }

  .footer__item + .footer__item {
    margin-top: calc(5 * 100vw / 375);
  }

  .footer__link {
    gap: calc(10 * 100vw / 375);
    font-size: calc(17 * 100vw / 375);
    line-height: calc(36 / 17);
  }
  .footer__link:before {
    border-top: calc(10 * 100vw / 375) solid transparent;
    border-bottom: calc(10 * 100vw / 375) solid transparent;
    border-left: calc(10 * 100vw / 375) solid #15558a;
  }

  .footer__bottom {
    margin-top: calc(20 * 100vw / 375);
    flex-direction: column;
    gap: calc(10 * 100vw / 375);
  }

  .footer__bottom-info {
    max-width: initial;
  }

  .footer-information__notes {
    margin-top: calc(10 * 100vw / 375);
  }

  .indent {
    text-indent: -1em;
    padding-left: 1em;
  }

  .footer__bottom-button {
    margin-top: initial;
    width: initial;
  }

  .footer__tel-button {
    margin-top: calc(10 * 100vw / 375);
  }

  .footer__copy {
    margin-top: calc(10 * 100vw / 375);
  }

  .footer__copy small {
    font-size: calc(16 * 100vw / 375);
  }
  /* --------------------------------------
	フローティングバナー
  --------------------------------------*/
  .floating-banner {
    top: initial;
    bottom: 0;
    left: 0;
    transform: initial;
    flex-direction: row;
    gap: initial;
  }

  .floating-banner__tel,
  .floating-banner__web {
    width: 50%;
    height: calc(60 * 100vw / 375);
    writing-mode: initial;
    border-radius: calc(10 * 100vw / 375) calc(10 * 100vw / 375) 0 0;
  }

  .floating-banner__tel-text,
  .floating-banner__web-text {
    font-size: calc(14 * 100vw / 375);
    line-height: calc(16 / 14);
    letter-spacing: initial;
  }
}
