@charset "UTF-8";
/* CSS Document */

/* --共通------------------------ */

/* variables */
:root {
  /* color */
  /* color */
  --color-blue: "";
  --color-green: "";
  --color-white: "#fff";
  --color-gray: "";
  --color-black: "";
  /* spacing */
  --spacing-xs: 0.25em;
  --spacing-sm: 0.5em;
  --spacing-md: 1em;
  --spacing-lg: 1.5em;
  --spacing-xl: 2.25em;
  --spacing-2xl: 4em;
  --spacing-3xl: 6.5em;
  --spacing-4xl: 10.5em;
  /* font-size */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 18px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 42px;
  --text-4xl: 64px;
  --text-5xl: 128px;

  /*  */
  --max-content-width: 1200px;
}

/* base-style */
:root {
  /* font-family: ; */
  color: #333333;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: var(--text-base);
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a{
  text-decoration: none;
  color: currentColor;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--text-base);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

header {
  width: 100%;
}
footer {
  position: sticky;
  top: 100%;
}
@media screen and (max-width: 768px) {
  footer {
    margin-bottom:48px;
  }

}


/* utility */
.container,.inner {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 16px;
}

.justify-center {
  display: flex;
  justify-content: center;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 640px) {
  .sp-only {
    display: initial;
  }
}

.sp {
  display: none;
}
.pc {
  display: block;
}

/* components */
/* title */
.primary-title {
  width: 100%;
  font-size: var(--text-4xl);
  font-weight: bold;
  padding: 0.5em;
  text-align: center;

  color: var(--color-white);
  background-color: var(--color-green);
  border-radius: 8px;
}
.secondaly-title {
  width: 100%;
  font-size: var(--text-3xl);
  font-weight: bold;
  padding: 0.5em;
  text-align: center;

  color: var(--color-white);
  background-color: var(--color-green);
  border-radius: 8px;
}
.tertiary-title {
  width: 100%;
  font-size: var(--text-2xl);
  font-weight: bold;
  padding: 0.5em;
  text-align: center;

  color: var(--color-white);
  background-color: var(--color-green);
  border-radius: 8px;
}

.underline { text-decoration: underline; }

/* button */
.primary-button {
  width: 100%;
  font-size: var(--text-4xl);
  font-weight: bold;
  padding: 0.5em;
  text-align: center;

  color: var(--color-white);
  background-color: var(--color-green);
  border-radius: 8px;
}
.secondaly-button {
}
.pdf-button {
}
.guarantee {
}

.page-heading {
  display: grid;
  place-items: center;
  text-align: center;
  background-color: rgb(235, 242, 255);
  padding-block: var(--spacing-xl);
}
@media screen and (max-width: 768px) {
  .page-heading {
    padding-block: 0.75em;
  }

}

.page-heading__title {
  display: grid;
  gap: var(--spacing-xs);
  font-size: var(--text-2xl);
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .page-heading__title {
    font-size: var(--text-md);
  }

}
.page-heading__title::after {
  content: attr(data-txt);
  display: block;
  font-size: var(--text-lg);
}
@media screen and (max-width: 768px) {
  .page-heading__title::after {
    font-size: var(--text-sm);
  }

}

.page__section-title--left {
  display: flex;
  align-items: center;
  letter-spacing: 0.07em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page__section-title--left {
    text-align: center;
    font-size: var(--text-xl);
  }
}

.page__section-title--left::after {
  content: "";
  height: 2px;
  flex-grow: 1;
  background-color: #d1d1d1;
}
.page__section-title--left::before {
  margin-right: var(--spacing-md);
}
.page__section-title--left::after {
  margin-left: var(--spacing-md);
}

.page__section-title--center {
  display: flex;
  align-items: center;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page__section-title--center {
    text-align: center;
    font-size: var(--text-xl);
  }
}

.page__section-title--center::after,
.page__section-title--center::before {
  content: "";
  height: 2px;
  flex-grow: 1;
  background-color: #d1d1d1;
}
.page__section-title--center::before {
  margin-right: var(--spacing-md);
}
.page__section-title--center::after {
  margin-left: var(--spacing-md);
}

.tag {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: var(--text-md);
  font-weight: bold;
  color: #fff;
  border-radius: 8px;
}
.bg-blue {
  background-color: #2a68b9;
}
.underline-blue {
  width: fit-content;
  background: linear-gradient(transparent 70%, #bcd9ff 70%);
}

.center{
  margin-left: auto;
  margin-right: auto;
}
.right{
  margin-inline: 0;
  margin-inline-start: auto;
}
.left{
  margin-inline: 0;
  margin-inline-end: auto;
}
/* --header------------------------ */
.header {
  width: 100%;
  p {margin: 0;}
}

.header__contact-phone-primary-img {
  width: 40px;
  height: auto;
  object-fit: contain;
}
.header__top-contents{
    background-color: #fff;
  width: 100%;
  padding-inline: var(--spacing-md);
  padding-block: var(--spacing-sm);
}
.header__top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
}
.header__contact {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
@media screen and (max-width: 1024px) {
  .header__contact {
    display: none;
  }
}
.header__contact-phone-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.header__contact-phone-primary {
  font-size: var(--text-2xl);
  font-weight: 900;
}
.header__contact-phone-sub {
  display: flex;
  gap: var(--spacing-xs);
}
.header__contact-phone-sub img {
  width: 14px;
  height: auto;
  object-fit: contain;
  margin-top: 2px;
}
.header__contact-phone-sub-number {
  font-size: var(--text-md);
  font-weight: 900;
}
.header__contact-web-link {
  display: flex;
  gap: var(--spacing-md);
  background-color: #cc3333;
  padding: 1em 1em;
  font-weight: bold;
  color: #fff;
  border-radius: 8px;
}
.header__contact-web-link img {
  width: 48px;
  height: auto;
  object-fit: contain;
}
.header__contact-web-link p {
  font-size: var(--text-lg);
}
.header__contact-web{
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.header__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #023f99;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .header__bottom {
    display: none;
  }
}
.sitename a{
  display: grid;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--text-xs);
}
.header__menu {
  display: flex;
  gap: var(--spacing-md);.
}
.header__nav {
  width: 100%;
}
.header__nav-items {
  display: flex;
  justify-content: center;
  padding-block: var(--spacing-md);
}
.header__nav-items li {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.header__nav-items li + li {
  border-left: 0;
  border-right: 1px solid #fff;
}

.header__nav-item {
  flex: 1 1 auto;
  padding-inline: var(--spacing-sm);
  text-align: center;
}
.header__nav-link {
  height: 100%;
  display: grid;
  place-items: center;
  gap: var(--spacing-xs);
  color: white;
}
.header__nav-link img {
  width: 60px;
  aspect-ratio: 2/1;
  display: block;
  color: white;
}
.header__nav-link p {
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: var(--text-md);
}

/* header */

/* --gNav------------------------ */
#gNav {
  display: none;
}
#gNav .inner {
  max-width: 1200px;
  width: 100%;
}
#gNav .cNav ul {
  width: 100%;
}
#gNav .cNav li {
  display: block;
  margin: 15px 0;
}
#gNav .cNav li a {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 10px 0 5px;
  letter-spacing: 1px;
  line-height: 110%;
  text-align: center;
  color: #fff;
  font-weight: 500;
}
#gNav .cNav li a span {
  display: block;
  font-size: 0.7em;
}
#gNav .cNav li a:hover {
  transition: transform 0.2s;
  background: #d1d1d1;
}

/* --footer------------------------ */

/* footer */
.footer {
  display: grid;
  color: #fff;
  background-color: #fff;
  width: 100%;
  border-top: 1px solid #d1d1d1;
  margin-top: var(--spacing-2xl);
  p {margin: 0;}
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-top: var(--spacing-xl);
  }

}
.footer__wrapper {
  display: grid;
  place-items: center;
  gap: var(--spacing-2xl);
  color: #000;
  padding-block: var(--spacing-2xl);
  text-align: center;
}
.footer__logo-wrapper {
  display: grid;
  justify-content: center;
  text-align: start;
  gap: var(--spacing-md);
}
.footer__logo {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
}
.footer__nav ul{
  display: flex;
  max-width: 730px;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}
.footer__copyright {
  display: block;
  text-align: center;
  font-size: var(--text-xs);
  padding-block: var(--spacing-md);
  color: #fff;
  background-color: #023f99;

}
@media screen and (max-width: 768px) {
  .footer__copyright{
    border-bottom: 1px solid #fff;
  }
}

.fixed-menu{
  display: block;
  position: fixed;
  bottom: 32px;
  right: 0;
  z-index: 1000;
}
.fixed-menu a {
  display: grid;
  place-items: center;
  border-radius: 16px 0px 0px 16px;
  color: #fff;
  width: 80px;
  height: 64px;
  font-size: var(--text-sm);
  border: 2px solid #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .fixed-menu {
    display: none !important;

  }
}
@media screen and (min-width: 769px) {
  .fixed-menu2 {
    display: none !important;
  }

}
  .fixed-menu2 {
    display: block ;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .fixed-menu2__contents{
    width: 100%;
    display: grid;
    grid-template-columns: 3fr 3fr 2fr;
  }
  .fixed-menu2__contents a{

  }





.fixed-menu2 a {
  display: grid;
  place-items: center;
  color: #fff;
  height: 48px;
  font-size: var(--text-sm);
  font-weight: bold;
}
.fixed-menu-blue{
  background-color: #023f99;
}
.fixed-menu-orange{
  background-color: #EA5513;
}
.fixed-menu-green{
  background-color: #016D49;
}
.fixed-menu-light-green{
  background-color: #66C164;
}

.sp-br{
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-br {
    display: block;
  }
}

/* reserve */
.reserve__wrapper {
  max-width: 600px;
  display: grid;
  place-items: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl);
  background-color: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .reserve__wrapper {
    padding: var(--spacing-lg);
    gap: var(--spacing-lg);
  }
}
.reserve__contents {
  width: 100%;
  display: grid;
  gap: var(--spacing-xl);
  place-items: center;
}
.reserve-contact {
  display: grid;
  gap: var(--spacing-sm);
  text-align: center;
  place-items: center;
  border: 3px solid #6a92d0;
  width: 100%;
  border-radius: 8px;
}
.reserve-contact__contents {
  display: grid;
  gap: var(--spacing-md);
  font-weight: bold;
  padding: var(--spacing-md);
}
.reserve-contact__title {
  font-size: var(--text-lg);
  font-weight: 900;
  background-color: #6a92d0;
  border-radius: 4px;
  padding: 0.4em 0.8em;
  margin-top: -1em;
  color: #fff;
}

.reserve-contact__main-phone {
  display: grid;
  gap: var(--spacing-xs);
  align-items: center;
  justify-content: center;
  grid-template-columns: 40px auto;
  text-align: center;
}
.reserve-contact__main-phone img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.reserve-contact__main-phone p {
  font-size: var(--text-xl);
  font-weight: 900;
  color: #e43a47;
  line-height: 1;
}
.reserve-contact__sub-phone {
  display: grid;
  grid-template-columns: auto auto;
  gap: var(--spacing-xs);
}
@media screen and (max-width: 768px) {
  .reserve-contact__sub-phone {
    grid-template-columns: 1fr;
    row-gap: var(--spacing-sm);
  }
}
.reserve-contact__sub-phone-contents {
  display: grid;
  gap: var(--spacing-xs);
  grid-template-columns: 14px auto;
  justify-content: center;
}
.reserve-contact__sub-phone p {
  line-height: 1;
}
.reserve-contact__sub-phone img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.reserve-contact__sub-phone-number {
  font-size: var(--text-md);
  font-weight: 900;
  margin-top: -1px;
  width: fit-content;
}
.reserve-contact__business-hours {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .reserve-contact__business-hours {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

}
.reserve-contact__tag {
  background-color: #6a92d0;
  color: #fff;
  padding: 0.2em 0.8em;
  width: fit-content;
  border-radius: 4px;
}

.reserve-description__title {
  display: block;
  font-size: var(--text-2xl);
  font-weight: bold;
  padding-block: var(--spacing-xl);
  text-align: center;
  color: #fff;
  background-color: #023f99;
}
.reserve-description__title h2 {
  margin-inline: var(--spacing-md);
}
@media screen and (max-width: 768px) {
  .reserve-description__title {
    font-size: var(--text-lg);
    padding-block: var(--spacing-lg);
  }
}

.reserve-contact__business-hours-text {
  font-weight: bold;
}
.reserve-description__wrapper {
  display: grid;
  gap: var(--spacing-xl);
  padding-block: var(--spacing-xl);
  padding-inline: var(--spacing-md);
}

.reserve-description__items {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
}
@media screen and (max-width: 1024px) {
  .reserve-description__items {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.reserve-description__item {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 4fr;
  place-items: center;
  gap: var(--spacing-sm);
  border: 4px solid #023f99;
  border-radius: 8px;
  padding: var(--spacing-md);
  max-width: 480px;
  background-color: #fff;
}
.reserve-description__item img {
  aspect-ratio: 1/1;
  object-fit: contain !important;
  margin-inline: auto;
}

.reserve-description__texts {
  display: grid;
  gap: var(--spacing-xs);
}
.reserve-description__primary-text {
  display: grid;
  font-size: var(--text-md);
  font-weight: bold;
  height: 2lh;
  align-items: center;
  color: #023f99;
  font-weight: 900;
}
.reserve-description__sub-text {
  display: grid;
  height: 2lh;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: bold;
  text-align: left;
}


.dli-caret-circle-fill-right {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 36px;
  height: 36px;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

@media screen and (max-width: 768px) {
  .dli-caret-circle-fill-right, .dli-caret-circle-fill-right2, .dli-caret-circle-fill-right3 {
    width: 24px !important;
    height: 24px !important;
  }

}
.dli-caret-circle-fill-right::before {
  content: "";
  color: #023f99;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 8px 14px;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.dli-caret-circle-fill-right2 {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 36px;
  height: 36px;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}
.dli-caret-circle-fill-right2::before {
  content: "";
  color: #59a0d3;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 8px 14px;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.dli-caret-circle-fill-right3 {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 36px;
  height: 36px;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}
.dli-caret-circle-fill-right3::before {
  content: "";
  color: #016d49;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 8px 14px;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.btn-text-sm{
  font-size: var(--text-sm);
  font-weight: bold;
}

.btn {
  display: grid;
  grid-template-columns: 5fr 1fr;
  place-items: center;
  text-align: center;
  padding-block: var(--spacing-md);
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  font-weight: bold;
  color: #fff;
  background-color: currentColor;
}


.no-btn {
  display: grid;
  grid-template-columns: 5fr 1fr;
  place-items: center;
  text-align: center;
  padding-block: var(--spacing-md);
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  font-weight: bold;
  color: #fff;
  background-color: currentColor;
  font-size: var(--text-lg);
}

.bg-blue1 {
  background-color: #59a0d3;
}
.bg-blue2 {
  background-color: #023f99;
}
.bg-green {
  background-color: #016d49;
}

.guarantee {
  display: grid;
  gap: var(--spacing-md);
  padding-block: var(--spacing-xl);
  padding-inline: var(--spacing-xl);
  text-align: center;
  background-color: #FFFDC9;
}
@media screen and (max-width: 768px) {
  .guarantee {
    padding-block: var(--spacing-md);
    padding-inline: var(--spacing-md);
  }

}
.guarantee__title {
  font-size: var(--text-xl);
  font-weight: bold;
  color: #CC3333;
}
@media screen and (max-width: 768px) {
  .guarantee__title {
    font-size: var(--text-lg);
  }

}


  .guarantee__text {
    display: grid;
    gap: var(--spacing-md);
  }
@media screen and (max-width: 768px) {
  .guarantee__text {
    gap: var(--spacing-sm);
  }

}

.guarantee__text span{
  display: block;
  font-size: var(--text-lg);
  font-weight: bold;
  color: #333;
}
.guarantee__text {
  font-size: var(--text-md);
  font-weight: 400;
  color: #333;
}

@media screen and (max-width: 768px) {
  .guarantee__text span{
    font-size: var(--text-sm);
    text-align: center;
  }
  .guarantee__text {
    font-size: var(--text-sm);
    text-align: left;

  }
}

/* footer */



/*cookie policy*/
.alert-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.3em 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
}
.alert-cookie .msg {
  flex: 1;
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
}

.alert-cookie a {
  color: #fa4802;
}

/* menuボタン */
header.scroll .menu-button {
  top: 10px;
  right: 0;
}
.menu-button {
  display: grid;
  gap: var(--spacing-sm);
  place-items: center;
  position: absolute;
  top: 10px;
  right: 16px;
  z-index: 9999;
  /* background: #fff; */
  height: 60px;
  width: 56px;
  padding: 4px;
  background-color: #023F99;
  border-radius: 6px;
}
.menu-button::before {
  content: "MENU";
  display: block;
  width: 100%;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
header.active .menu-button {
  position: fixed;
}
.menu-button,
.menu-button span {
  display: inline-block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  box-sizing: border-box;
}
.menu-button .menu {
  position: relative;
  width: 46px;
  height: 26px;
}
.menu-button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  /* background-color: #fa4802; */
  background-color: #fff;
}

.menu-button span:nth-of-type(1) {
  top: 0;
}
.menu-button span:nth-of-type(2) {
  top: 12px;
}
.menu-button span:nth-of-type(3) {
  bottom: 0;
}

.menu-button.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
  /* background-color: #fa4802; */
}
.menu-button.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-button.active span:nth-of-type(3) {
  -webkit-transform: translateY(-112px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
  /* background-color: #fa4802; */
}

.menu-button .label {
  width: 100%;
  height: auto;
  margin: 0 0 6px;
  /* color: #fa4802; */
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 1;
}
.menu-button.active .label {
  /* color: #fa4802; */
  color: #fff;
}

/* ---- ページ送り ---- */
.pagination {
  clear: both;
  margin: 30px 0 0;
  text-align: center;
}
.pagination a,
.pagination span {
  display: inline-block;
  margin: 3px;
  padding: 5px 12px;
  background-color: #fa4802;
}
.pagination a {
  text-decoration: none;
  background-color: #fa4802;
}
.pagination a:hover,
.pagination span.current {
  color: #fff;
  background-color: #313131;
}
.pagination span.disabled {
  border: 1px solid #fff;
  color: #fff;
}

.submit input {
  width: 100%;
  max-width: 300px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  background-color: #0c1c65;
  font-size: 17px;
  -webkit-appearance: none;
}
.submit input:hover {
  background-color: #f9920c;
}

/* table*/
.tbl {
  max-width: 960px;
  table-layout: fixed;
  margin: 0 auto 30px;
}
.tbl th {
  width: 25%;
  padding: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.tbl td {
  width: 75%;
  padding: 10px 20px;
}
.tbl.tbl1,
.tbl.tbl2 {
  border-collapse: separate;
  border-spacing: 20px 10px 15px;
}
.tbl.tbl1 th,
.tbl.tbl2 th {
  padding: 20px;
}
.tbl.tbl1 td,
.tbl.tbl2 td {
  border-bottom: 1px solid #ddd;
  padding: 20px;
}
.tbl.tbl1 tr:first-child td,
.tbl.tbl2 tr:first-child td {
  border-top: 1px solid #ddd;
}
.tbl.tbl1 th {
  background-color: #eee;
}
.tbl.tbl2 th {
  background-color: #eee;
}

/* .link_btn------------------------ */
.link_btn {
  padding: 70px 0 50px;
}
.link_btn ul li {
  margin: 0 auto 5px;
  width: 48%;
  max-width: 560px;
  min-width: 500px;
  font-weight: 500;
  border: 2px solid #fff;
  box-shadow: 4px 4px 0 #777;
  margin-bottom: 20px;
}
.link_btn ul li a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 3rem;
  padding: 27px 0 20px 130px;
  position: relative;
}
.link_btn ul li a span {
  font-size: 2rem;
  display: block;
  line-height: 100%;
}
.reserve_btn {
  background: #fa4802;
  border-radius: 10px;
}
.reserve_btn a::before {
  content: "";
  display: block;
  position: absolute;
  left: 6%;
  top: 25%;
  background: url(../img/reserve.svg) no-repeat;
  width: 12%;
  height: 73px;
  background-size: 100%;
}
.estimate_btn {
  background: #22ac38;
  border-radius: 10px;
}

@media screen and (min-width: 1023px) {
  .menu-button {
    display: none;
  }
}
/* gnav */
#gNav {
  position: fixed;
  top: 70px;
  right: 0;
  z-index: 9999;
  display: none;
  max-width: 420px;
  width: 100%;
  margin-top: 0;
  padding: 0;
  text-align: center;
  background: #fff;
}
#gNav .cNav {
  border: none;
  display: block;
}
#gNav .cNav > li {
  width: 100%;
  border-bottom: 1px solid #ccc;
  text-align: center;
  height: auto;
  border-radius: 0;
  margin: 0;
  background: #fff;
}
#gNav .cNav > li a {
  display: block;
  text-align: center;
  color: #313131;
  margin: 0;
  line-height: 20px;
  padding: 14px 10px;
  font-size: var(--text-md);
  font-weight: 500;
  border-radius: 0;
  margin: 0;
  background: #fff;
}
#gNav .cNav li a::after {
  display: none;
}
#gNav .cNav > li:not(:first-child)::after {
  display: none;
}
header.active #gNav {
  display: inherit;
}

/* wordpress導入箇所 */
.prices_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}
@media screen and (max-width: 896px) {
  .prices_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.prices {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0.5lh;
  padding: 0.5lh; */
  border: #22ac38 3px solid;
}
.prices_contents {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: var(--spacing-sm);
}
.prices_thumbnail {
  display: block;
  aspect-ratio: 4 / 3;
  /* margin-block-start: calc(0.5lh * -1);
  margin-inline: calc(0.5lh * -1); */
}
.prices_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prices_title_wrapper {
  display: flex;
  align-items: center;
  height: 1.5lh;
}
.prices_title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
}
.prices_texts {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.prices_tag {
  display: inline-block;
  padding: 1px 4px;
  background-color: #22ac38;
  font-weight: bold;
  color: white;
  border-radius: 4px;
}
.prices_text {
  color: var(--color-red);
  font-size: 0.9em;
}
.prices_text span {
  font-size: 1.3em;
  font-weight: 900;
  color: #fa4802;
  margin-bottom: 0.5em;
}

.date-holiday .ui-state-default, .holiday { color:#f55 !important; }
.date-saturday .ui-state-default, .saturday { color:#0af !important; }

/*----------------------------------------------------
タブレット
-----------------------------------------------------*/
@media screen and (max-width: 896px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

/*----------------------------------------------------
スマホ
-----------------------------------------------------*/
@media screen and (max-width: 480px) {
  /*cookie policy*/
  .alert-cookie .msg {
    flex: unset;
  }
  #agree-cookie {
    margin: 1em auto 0;
  }
}
