@charset "UTF-8";
/*
Theme Name: underscore child
Version: 20240426
Template: underscore
*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
body,
button,
input,
select,
optgroup,
textarea {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  height: -webkit-fill-available;
  color: #333;
}

.number-font {
  font-family: "Roboto Condensed", serif !important;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.en-font {
  font-family: "Oswald", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

a {
  color: #000;
}

a:visited {
  color: #000;
}

a:hover {
  opacity: 0.5; /* 透過率50% */
  transition: 0.5s; /* 0.2秒アニメーション */
  -webkit-transition: 0.5s;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 4000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 175px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}
/* --- inner --- */
.inner {
  width: 86%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.top-h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}

.fixed-baner {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 60px;
  z-index: 5000;
}
.fixed-baner .fix-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  width: 100%;
  height: 200px;
  background-color: #32AB98;
  font-size: 0.9rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  letter-spacing: 2.5px;
  border-radius: 5px 0px 0px 5px;
}
.fixed-baner .fix-item a i {
  margin-bottom: 5px;
}
.fixed-baner .catarog-baner {
  margin-bottom: 20px;
}
.fixed-baner .catarog-baner a {
  background-color: #32AB98;
}
.fixed-baner .calendar-baner a {
  background-color: #32AB98;
}

.btn {
  display: block;
  width: 260px;
  padding: 12px 10px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #24858a !important;
  border: 1px solid #24858a;
  transition: 0.3s;
  position: relative;
  border-radius: 40px;
  z-index: 10;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: 2px solid #32ad9b;
  border-right: 2px solid #32ad9b;
}

@media screen and (max-width: 767px) {
  /* --- inner --- */
  .inner {
    width: 86%;
    max-width: 86%;
  }
  section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .top-h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
}
.pc-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  background-color: transparent;
  z-index: 6000;
  transition: all 0.3s ease-out;
  transition: var(--transit-default, all 0.3s ease-out);
  width: 100%;
}
.pc-header .pc-navigation {
  display: flex;
  flex-wrap: nowrap;
}
.pc-header .pc-navigation .header-logo {
  width: 230px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 35px;
}
.pc-header .pc-navigation .header-logo img {
  display: block;
}
.pc-header .pc-navigation .header-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding-right: 80px;
}
.pc-header .pc-navigation .header-nav ul {
  -webkit-padding-start: 0px;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 15px 30px;
  padding-right: 40px;
}
.pc-header .pc-navigation .header-nav ul li {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
}
.pc-header .pc-navigation .header-nav ul li a {
  color: #000;
}
.pc-header .pc-navigation .header-nav ul li a i {
  margin-right: 7px;
}

.pc-header nav {
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
}
@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
.pc-header #overlay-button {
  position: absolute;
  right: 25px;
  top: 25px;
  padding: 26px 11px;
  z-index: 2000;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #004BB1;
  width: 57px;
  height: 57px;
}
.pc-header #overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: rgb(255, 255, 255);
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;
}
.pc-header #overlay-button span:before {
  top: -10px;
  visibility: visible;
}
.pc-header #overlay-button span:after {
  top: 10px;
}
.pc-header #overlay-button span:before, .pc-header #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;
}
.pc-header #overlay-button:hover span, .pc-header #overlay-button:hover span:before, .pc-header #overlay-button:hover span:after {
  background-color: rgb(255, 255, 255);
}
.pc-header input[type=checkbox] {
  display: none;
}
.pc-header input[type=checkbox]:checked ~ #overlay {
  visibility: visible;
}
.pc-header input[type=checkbox]:checked ~ #overlay-button:hover span, .pc-header input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}
.pc-header input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
}
.pc-header input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}
.pc-header #overlay {
  height: 100vh;
  width: 100%;
  z-index: 700;
  visibility: hidden;
  position: fixed;
  background-color: #000;
  top: 0;
}
.pc-header #overlay .pc-navwrap {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
}
.pc-header #overlay .pc-navwrap .nav-left {
  width: 50%;
  height: 100%;
  background-color: #FFF;
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pc-header #overlay .pc-navwrap .nav-left .n-logo {
  display: block;
  width: 100px;
  margin-bottom: 60px;
}
.pc-header #overlay .pc-navwrap .nav-left .n-tel {
  display: block;
  width: 40px;
  margin-bottom: 5px;
}
.pc-header #overlay .pc-navwrap .nav-left .tel-link {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.pc-header #overlay .pc-navwrap .nav-left .n-time {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 50px;
}
.pc-header #overlay .pc-navwrap .nav-left h1 {
  font-size: 1.2rem;
  font-weight: bold;
}
.pc-header #overlay .pc-navwrap .nav-left .n-add {
  font-size: 0.8rem;
  margin-bottom: 40px;
}
.pc-header #overlay .pc-navwrap .nav-left .map-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #000;
  width: 200px;
  height: 45px;
  font-size: 0.8rem;
  margin-bottom: 40px;
}
.pc-header #overlay .pc-navwrap .nav-left .sns-list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.pc-header #overlay .pc-navwrap .nav-left .sns-list li {
  width: 25px;
}
.pc-header #overlay .pc-navwrap .nav-right {
  width: 50%;
  height: 100%;
  background-color: #000;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pc-header #overlay .pc-navwrap .nav-right ul {
  width: 50%;
  min-width: 300px;
}
.pc-header #overlay .pc-navwrap .nav-right ul li {
  margin-bottom: 1.2rem;
  font-weight: bold;
}
.pc-header #overlay .pc-navwrap .nav-right ul li a {
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .sp-header {
    position: fixed;
    width: 100%;
    height: 60px;
    z-index: 5000;
    background-color: #FFF;
  }
  .sp-header .sp-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 60px;
    padding-left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sp-header .sp-logo img {
    width: 100%;
    height: auto;
  }
  .sp-header nav {
    animation: bugfix infinite 1s;
    -webkit-animation: bugfix infinite 1s;
  }
  @keyframes bugfix {
    from {
      padding: 0;
    }
    to {
      padding: 0;
    }
  }
  .sp-header #overlay-button {
    position: absolute;
    right: 0px;
    top: 5px;
    padding: 26px 11px;
    z-index: 5001;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .sp-header #overlay-button span {
    height: 1px;
    width: 35px;
    border-radius: 0px;
    background-color: rgb(41, 40, 40);
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
  }
  .sp-header #overlay-button span:before {
    top: -10px;
    visibility: visible;
  }
  .sp-header #overlay-button span:after {
    top: 10px;
  }
  .sp-header #overlay-button span:before, .sp-header #overlay-button span:after {
    height: 1px;
    width: 35px;
    border-radius: 0px;
    background-color: rgb(41, 40, 40);
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
  }
  .sp-header #overlay-button:hover span, .sp-header #overlay-button:hover span:before, .sp-header #overlay-button:hover span:after {
    background-color: rgb(41, 40, 40);
  }
  .sp-header input[type=checkbox] {
    display: none;
  }
  .sp-header input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
  }
  .sp-header input[type=checkbox]:checked ~ #overlay-button:hover span, .sp-header input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
  }
  .sp-header input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .sp-header input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .sp-header #overlay {
    height: 100vh;
    width: 100%;
    background: #000000;
    z-index: 2;
    visibility: hidden;
    position: fixed;
    overflow-y: scroll;
  }
  .sp-header #overlay .sp-navwrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner {
    width: 65%;
    height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner ul {
    margin-bottom: 15px;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner ul li {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner ul li a:hover {
    color: #000 !important;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner ul li a .en {
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    margin-right: 10px;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner ul li a .ja {
    font-size: 0.7rem;
    display: inline-block;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner .spnav-info .head-tel {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner .spnav-info .head-tel .n-tel {
    width: 25px;
    height: 25px;
    margin-right: 20px;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner .spnav-info .head-tel .tel-link {
    color: #FFF;
    font-size: 2.1rem;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner .spnav-info .n-time {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: #FFF;
    margin-bottom: 15px;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner .spnav-info h1 {
    font-size: 1rem;
    color: #FFF;
    text-align: center;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner .spnav-info .n-add {
    font-size: 0.8rem;
    color: #FFF;
    display: block;
    text-align: center;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner .spnav-info .sns-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner .spnav-info .sns-list li {
    border-bottom: none;
  }
  .sp-header #overlay .sp-navwrap .spnav-inner .spnav-info .sns-list a img {
    width: 30px;
  }
  .sp-header #overlay #overlay.active {
    list-style: disc;
  }
}
/* ページヘッダー */
.page-wrapper {
  padding-top: 100px;
}
.page-wrapper .page-header {
  width: 100%;
  height: 250px;
  background-image: url("../img/page/page-header-back.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-wrapper .page-header h1 {
  color: #000;
  font-size: 1.9rem;
}
.page-wrapper .page-header span {
  color: #000;
  font-size: 0.9rem;
}

/* パンくずリスト */
.pankuzu {
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}
.pankuzu ul {
  list-style: none;
  font-size: 0.8rem;
}
.pankuzu ul li {
  display: inline;
  color: #8c8f9a;
}
.pankuzu ul li a {
  color: #8c8f9a;
  text-decoration: none;
}

.pankuzu li + li:before {
  content: ">";
  margin: 0.5em;
}

/* 2カラム */
.column-wrap {
  display: flex;
  flex-wrap: nowrap;
}
.column-wrap .left-column {
  width: 70%;
  margin-right: 5%;
}
.column-wrap .right-column {
  width: 25%;
}

/*   404 notfound   */
main .nf404-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .nf404-wrap h2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
main .nf404-wrap p {
  font-size: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}
main .nf404-wrap a {
  color: #000;
  text-decoration: underline;
}

/* サイドバー */
.sidebar .sidebar-section {
  margin-bottom: 2rem;
}
.sidebar .sidebar-section h2 {
  font-size: 1.1rem;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #666;
  margin-bottom: 1rem;
}
.sidebar .sidebar-section ul li {
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.selectbox-2 {
  position: relative;
}

.selectbox-2::before,
.selectbox-2::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.selectbox-2::before {
  right: 0;
  display: inline-block;
  width: 2.8em;
  height: 2.8em;
  border-radius: 0 3px 3px 0;
  background-color: #5b957f;
  content: "";
}

.selectbox-2::after {
  position: absolute;
  top: 50%;
  right: 1.4em;
  transform: translate(50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
}

.selectbox-2 select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: 0.4em 3.6em 0.4em 0.8em;
  border: 2px solid #5b957f;
  border-radius: 3px;
  color: #696969;
  font-size: 1em;
  cursor: pointer;
}

.selectbox-2 select:focus {
  outline: 1px solid #5b957f;
}

#wp-calendar caption {
  font-size: 1.1rem;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #666;
  margin-bottom: 1rem;
}

/*ウィジェットカレンダーの背景と枠線を消す*/
#wp-calendar th,
#wp-calendar td {
  width: 14%;
  padding: 5px;
  font-size: 12px;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  vertical-align: middle;
}

.wp-calendar-table {
  border-top-width: 0;
  border-right-width: 0;
}

/*日付の背景（色や形を変更）*/
#wp-calendar tbody td a {
  background: #32AB98;
  border-radius: 14px 14px 14px 14px;
  color: #fff;
  display: inline-block;
  height: 28px;
  line-height: 28px;
  margin: 1px;
  width: 28px;
  text-decoration: none;
}

/*今日の更新のみ色を変える*/
#wp-calendar tbody td#today a {
  color: #333;
}

/*マウスを上に置いたとき色を変える*/
#wp-calendar tbody td a:hover {
  background-color: #bbbcde;
  color: #000;
}

/*マウスオーバー時の動き*/
#wp-calendar tbody td a:hover {
  cursor: pointer;
  transform: scale(1.1, 1.1);
  transition: 1s;
}

/*カレンダーナビ*/
.wp-calendar-nav {
  text-align: center;
  font-size: 90%;
  -moz-text-align-last: justify;
       text-align-last: justify; /*両端ぞろえ*/
}

/*カレンダーナビ　リンク文字色*/
.wp-calendar-nav a {
  color: #333;
}

/*先月のナビ*/
.wp-calendar-nav-prev {
  display: inline-flex;
  text-align: left;
}

/*来月のナビ*/
.wp-calendar-nav-next a {
  display: inline-flex;
  text-align: right;
}

/*マウスオーバー時の変化（先月）*/
.wp-calendar-nav-prev a {
  transition: all 1s linear 0s;
  cursor: pointer;
}

.wp-calendar-nav-prev a:hover {
  transform: rotateY(360deg);
}

/*マウスオーバー時の変化（来月）*/
.wp-calendar-nav-next a {
  transition: all 1s linear 0s;
  cursor: pointer;
}

.wp-calendar-nav-next a:hover {
  transform: rotateY(360deg);
}

/* 検索フォーム */
.search-form {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 3px;
}
.search-form label {
  width: 100%;
}
.search-form label input {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border: none;
  border-radius: 3px 0 0 3px;
  box-sizing: border-box;
  background-color: #f2f2f2;
  font-size: 1em;
  outline: none;
}
.search-form label input::-moz-placeholder {
  color: #777777;
}
.search-form label input::placeholder {
  color: #777777;
}
.search-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  border-radius: 0 3px 3px 0;
  background-color: #6aaf82;
  cursor: pointer;
}
.search-form button::after {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
}

/* footer */
.site-footer {
  margin-top: 0px;
}
.site-footer .foot-cta {
  padding-top: 7rem;
  padding-bottom: 7rem;
  margin-bottom: 70px;
  background-size: cover;
  background-image: url("../img/footer/footer-back.jpg");
}
.site-footer .foot-cta .inner .foot-reserve h2 {
  color: #FFF;
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 45px;
}
.site-footer .foot-cta .inner .foot-reserve h2::before {
  content: "Contact";
  display: block;
  font-size: 2.8rem;
  color: #ffffff;
}
.site-footer .foot-cta .inner .foot-reserve .btns-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.site-footer .foot-cta .inner .foot-reserve .btns-wrap .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.site-footer .foot-cta .inner .foot-reserve .btns-wrap .left .tel-link {
  font-size: 3.2rem;
  color: #FFF;
}
.site-footer .foot-cta .inner .foot-reserve .btns-wrap .left .f-time {
  color: #FFF;
  font-size: 0.9rem;
}
.site-footer .foot-cta .inner .foot-reserve .btns-wrap .right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer .foot-cta .inner .foot-reserve .btns-wrap .right .rs-btn {
  width: 300px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #FFF;
  border-radius: 30px;
  color: #000;
}
.site-footer .foot-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer .foot-credit img {
  width: 100px;
  margin-bottom: 30px;
}
.site-footer .foot-credit h2 {
  font-size: 1rem;
}
.site-footer .foot-credit span {
  font-size: 0.8rem;
}
.site-footer .site-info {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

/* pagination */
.pagination {
  margin-top: 3rem;
  text-align: center;
}
.pagination .nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .nav-links .page-numbers a.page-numbers, .pagination .nav-links .page-numbers .current, .pagination .nav-links .page-numbers a.prev, .pagination .nav-links .page-numbers a.next, .pagination .nav-links .page-numbers .dots {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #25917f;
  border-radius: 50%;
  margin-right: 25px;
  font-size: 1rem;
  font-weight: bold;
  border: 1px solid #25917f;
}
.pagination .nav-links a.page-numbers:hover {
  color: #FFF;
  background-color: #999;
  border-color: #999;
  border-radius: 50%;
}
.pagination .nav-links .page-numbers.current {
  background: #25917f;
  color: #FFFFFF;
  padding: 0;
}
.pagination .nav-links a.prev, .pagination .nav-links a.next {
  border: 1px solid #25917f;
  color: #25917f;
  position: relative;
}
.pagination .nav-links .next::before, .pagination .nav-links .prev::after {
  content: "";
  display: inline-block;
  width: 0.5px;
  height: 40px;
  background-color: rgb(224, 215, 215);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pagination .nav-links .next::before {
  left: -15px;
}
.pagination .nav-links .prev::after {
  right: -15px;
}
.pagination .nav-links .dots {
  background: transparent;
  border: none;
}

@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }
  .page-wrapper {
    padding-top: 60px;
  }
  .page-wrapper .page-header {
    width: 100%;
    height: 200px;
    background-image: url("../img/page/page-header-back.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .page-wrapper .page-header h1 {
    color: #000;
    font-size: 1.5rem;
  }
  .page-wrapper .page-header span {
    color: #000;
    font-size: 0.8rem;
  }
  .page-wrapper main {
    background-color: #F7F7F7;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  /* 2カラム */
  .column-wrap {
    display: block;
    margin-bottom: 3rem;
  }
  .column-wrap .left-column {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 3rem;
  }
  .column-wrap .right-column {
    width: 100%;
  }
  /* pagination */
  .pagination {
    margin-top: 3rem;
    text-align: center;
  }
  .pagination .nav-links .page-numbers a.page-numbers, .pagination .nav-links .page-numbers .current, .pagination .nav-links .page-numbers a.prev, .pagination .nav-links .page-numbers a.next, .pagination .nav-links .page-numbers .dots {
    width: 30px;
    height: 30px;
    margin-right: 25px;
    font-size: 0.8rem;
  }
  .pagination .nav-links .next::before, .pagination .nav-links .prev::after {
    content: "";
    display: inline-block;
    width: 0.5px;
    height: 40px;
    background-color: rgb(224, 215, 215);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .pagination .nav-links .next::before {
    left: -15px;
  }
  .pagination .nav-links .prev::after {
    right: -15px;
  }
  .pagination .nav-links .dots {
    background: transparent;
    border: none;
  }
  .site-footer {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .site-footer .foot-cta {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-bottom: 70px;
    background-size: cover;
    background-image: url("../img/footer/footer-back.jpg");
  }
  .site-footer .foot-cta .inner .foot-reserve h2 {
    color: #FFF;
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .site-footer .foot-cta .inner .foot-reserve h2::before {
    font-size: 2rem;
    color: #ffffff;
  }
  .site-footer .foot-cta .inner .foot-reserve .btns-wrap {
    display: block;
  }
  .site-footer .foot-cta .inner .foot-reserve .btns-wrap .left {
    width: 100%;
    margin-bottom: 35px;
  }
  .site-footer .foot-cta .inner .foot-reserve .btns-wrap .left .tel-link {
    font-size: 2.2rem;
  }
  .site-footer .foot-cta .inner .foot-reserve .btns-wrap .left .f-time {
    font-size: 0.9rem;
  }
  .site-footer .foot-cta .inner .foot-reserve .btns-wrap .right {
    width: 100%;
  }
  .site-footer .foot-cta .inner .foot-reserve .btns-wrap .right .rs-btn {
    width: 80%;
    height: 50px;
    font-size: 0.9rem;
    color: #000;
  }
  .site-footer .foot-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .site-footer .foot-credit img {
    width: 75px;
    margin-bottom: 30px;
  }
  .site-footer .foot-credit h1 {
    font-size: 0.9rem;
  }
  .site-footer .foot-credit span {
    font-size: 0.7rem;
  }
  .site-footer .site-info {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
  }
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}/*# sourceMappingURL=main.css.map */