@charset "UTF-8";
/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 62.5%;
}

html * {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  background: transparent;
  color: #000;
  width: 100%;
}

ul,
ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em,
strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table,
th,
td {
  table-layout: fixed;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
select,
option {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  appearance: none;
  appearance: none;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

button::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=reset]:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

button {
  font: inherit;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

/* IE
-----------------------------------------------------------------*/
main {
  display: block;
}

.c-fadein {
  opacity: 0;
  transition: transform ease 1s, opacity ease 1s;
}

.c-fadein.to-top {
  transform: translateY(50px);
}

.c-fadein.to-bottom {
  transform: translateY(-50px);
}

.c-fadein.to-right {
  transform: translateX(-50px);
}

.c-fadein.to-left {
  transform: translateX(50px);
}

.c-fadein.to-rt {
  transform: translate(-50px, 50px);
}

.c-fadein.to-rb {
  transform: translate(-50px, -50px);
}

.c-fadein.to-lt {
  transform: translate(50px, 50px);
}

.c-fadein.to-lb {
  transform: translate(50px, -50px);
}

.c-fadein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-slidein {
  opacity: 0;
  transition: transform ease-out 0.5s, opacity ease-out 0.5s;
}

.c-slidein.to-top {
  transform: translateY(100vh);
}

.c-slidein.to-bottom {
  transform: translateY(-100vh);
}

.c-slidein.to-right {
  transform: translateX(-100vw);
}

.c-slidein.to-left {
  transform: translateX(100vw);
}

.c-slidein.to-rt {
  transform: translate(-100vw, 100vh);
}

.c-slidein.to-rb {
  transform: translate(-100vw, -100vh);
}

.c-slidein.to-lt {
  transform: translate(100vw, 100vh);
}

.c-slidein.to-lb {
  transform: translate(100vw, -100vh);
}

.c-slidein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-reveal {
  opacity: 0;
  transition: clip-path 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.c-reveal.to-right {
  clip-path: inset(0 100% 0 0);
}

.c-reveal.to-left {
  clip-path: inset(0 0 0 100%);
}

.c-reveal.to-top {
  clip-path: inset(100% 0 0 0);
}

.c-reveal.to-bottom {
  clip-path: inset(0 0 100% 0);
}

.c-reveal.inview {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.ease-in {
  transition-timing-function: ease-in;
}

.ease-out {
  transition-timing-function: ease-out;
}

.ease-in-out {
  transition-timing-function: ease-in-out;
}

/* c-ttl
-----------------------------------------------------------------*/
.c-ttl {
  font: 400 72px "Shippori Mincho", serif;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: center;
}
.c-ttl__sub {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 36px;
  letter-spacing: 0.1em;
}
.c-ttl__sub::before, .c-ttl__sub::after {
  content: "";
  width: 0.5277777778em;
  height: 0.9722222222em;
  display: block;
  background: url(../img/common/c-ttl-dot.png) center/cover no-repeat;
}
.c-ttl__sub::after {
  left: auto;
  right: 0;
  transform: scale(-1, 1);
}
.c-ttl__txt {
  background: linear-gradient(to bottom, #d3b05c 50%, #ae9459 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-contact {
  display: flex;
}
.c-contact__bnr {
  width: -moz-fit-content;
  width: fit-content;
  height: 85px;
  transition: opacity 0.2s ease;
}
.c-contact__bnr:hover {
  opacity: 0.7;
}

.c-contact-bnr {
  outline: 1px solid #fff;
  outline-offset: -10px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.c-contact-bnr--tel {
  background: #ae9459;
}
.c-contact-bnr--web {
  background: #a9c538;
}
.c-contact-bnr a {
  width: 230px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s ease;
}
.c-contact-bnr a:hover {
  opacity: 0.7;
}
.c-contact-bnr__num {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
}
.c-contact-bnr__num::before {
  content: "";
  width: 21px;
  height: 21px;
  display: block;
  margin-top: 4px;
  background: url(../img/common/icon/tel-icon.png) center/cover no-repeat;
}
.c-contact-bnr__txt {
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.c-balloon {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: block;
  margin: 0 auto 0.6388888889em;
  padding: 0.8055555556em 2.3888888889em;
  border-radius: 100px;
  background: #a9c538;
  font: 500 36px "Shippori Mincho", serif;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
  position: relative;
}
.c-balloon::before {
  content: "";
  display: block;
  border-left: 0.3888888889em solid rgba(0, 0, 0, 0);
  border-right: 0.3888888889em solid rgba(0, 0, 0, 0);
  border-top: 0.6666666667em solid #a9c538;
  position: absolute;
  top: auto;
  left: 49.8%;
  bottom: -0.6666666667em;
  transform: translateX(-50%);
}

.c-txt-dot {
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 1.1em 0.3em;
  background-image: radial-gradient(0.078125em 0.078125em at center center, #fef561, #fef561 100%, transparent, transparent);
  padding-top: 0.1em;
  font-weight: 600;	
}

.c-merit {
  width: 100%;
  max-width: 1570px;
  margin: 54px auto 0;
}
.c-merit__head {
  line-height: 1.35;
  text-align: center;
  color: #403315;
}
.c-merit__sub {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.875em;
       column-gap: 0.875em;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
}
.c-merit__sub::before, .c-merit__sub::after {
  content: "";
  aspect-ratio: 8/22;
  width: 0.375em;
  height: 0.9166666667em;
  display: block;
  background: url(../img/common/c-merit-dot.png) center/contain no-repeat;
}
.c-merit__sub::after {
  left: auto;
  right: 0;
  transform: scale(-1, 1);
}
.c-merit__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font: 400 60px "Shippori Mincho", serif;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: center;
  color: #403315;
}
.c-merit__ttl::before, .c-merit__ttl::after {
  content: "";
  flex: 1;
  width: 100%;
  max-width: 155px;
  height: 2px;
  display: block;
  background: #403315;
}
.c-merit__ttl::before {
  margin-right: 40px;
}
.c-merit__ttl::after {
  margin-left: 20px;
}
.c-merit__ttl:not(:first-child) {
  margin-top: 10px;
}
.c-merit__body {
  display: flex;
  gap: 30px clamp(30px, 4.6354166667vw, 89px);
  margin-top: 91px;
}
.c-merit__list {
  counter-reset: c-merit-num;
  margin-top: 23px;
}
.c-merit__item {
  counter-increment: c-merit-num;
  font-weight: 500;
  font-size: clamp(15px, 1.5625vw, 30px);
  line-height: 2;
  letter-spacing: 0.1em;
  position: relative;
}
.c-merit__item:not(:first-child) {
  margin-top: 1.7em;
}
.c-merit__item::before {
  content: counter(c-merit-num, decimal-leading-zero);
  font: 400 2em "Shippori Mincho", serif;
  letter-spacing: 0.075em;
  line-height: 1;
  color: #403315;
  position: absolute;
  top: -0.5666666667em;
  left: -0.1em;
}
.c-merit__item span {
  display: inline-block;
  padding: 1em 0.3em 1em 2.4666666667em;
  background: linear-gradient(to right, #a9c538, rgba(0, 0, 0, 0));
  color: #333333;
  font-weight: 600;	
}
.c-merit__detail {
  margin-top: 1.1111111111em;
  padding-left: 4.2222222222em;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.c-point-mark {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 120px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: rgb(169, 197, 56);
}
.c-point-mark__en {
  display: inline-block;
  padding: 0 0.3em 0.125em 0.375em;
  background: #a9c538;
  font-size: 80px;
  color: rgb(247, 244, 234);
  letter-spacing: 0.1em;
  line-height: 1;
}
.c-point-mark__num {
  display: block;
  margin: 0 0 0.0833333333em 17px;
}

body {
  color: #4d4d4d;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 16px;
  letter-spacing: 0.025em;
  line-height: 2;
  min-width: 375px;
  scroll-behavior: auto !important;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: visible;
}
body.fixed .header-nav {
  z-index: 100;
}

.inner {
  width: 100%;
  max-width: calc(1920px + 40px);
  margin: 0 auto;
  padding: 0 20px;
}

/******************************************************************
 * ヘッダー
******************************************************************/
.header.fixed .header-nav {
  z-index: 100;
}

.header-nav {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: flex-end;
  padding: 0 100px 0 40px;
  transition: all 0.5s ease;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

@keyframes fadeleft {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.navToggle {
  cursor: pointer;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d5c7b8;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10000;
}
.navToggle::after {
  content: "MENU";
  margin: auto;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s ease-in-out;
}
.navToggle span {
  cursor: pointer;
  width: 66%;
  display: block;
  margin-inline: auto;
  border-bottom: solid 1px #fff;
  position: absolute;
  left: 0;
  right: 0;
  transition: 0.4s ease-in-out;
}
.navToggle span:nth-child(1) {
  top: 28%;
}
.navToggle span:nth-child(2) {
  top: 73%;
}
.navToggle.active::after {
  opacity: 0;
}
.navToggle.active span:nth-child(1) {
  top: 50%;
  transform: rotate(-45deg);
}
.navToggle.active span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg);
}
.navToggle.active + .globalMenu {
  opacity: 1;
  right: 0;
  pointer-events: all;
}
.navToggle.active + .globalMenu .globalMenu__list {
  animation-name: fadeleft;
  animation-duration: 0.6s;
}

.globalMenu {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  width: 90%;
  max-width: 790px;
  height: 100%;
  line-height: 1.45;
  padding: 160px 3vw 6vw;
  transition: all 0.6s;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  pointer-events: none;
}
.globalMenu__list {
  border-top: 1px solid #333333;
}
.globalMenu__list li {
  font-size: 22px;
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}
.globalMenu__list li a {
  position: relative;
  display: block;
  border-bottom: 1px solid #333333;
  padding: 11.5px 40px 11.25px 20px;
  transition: opacity 0.2s ease;
}
.globalMenu__list li a::after {
  content: "";
  width: 15px;
  height: 10px;
  margin: auto;
  background: #a9c538;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.globalMenu__list li a:hover {
  opacity: 0.7;
}

/******************************************************************
 * フッター
******************************************************************/
/* footer
-----------------------------------------------------------------*/
.footer {
  margin-top: 147px;
  font-size: clamp(14px, 0.9375vw, 18px);
  line-height: 1.5;
  color: #fff;
}
.footer__content {
  padding: 64px 0 93px;
  background: #cbb180;
}
.footer__logo {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: block;
  margin-inline: auto;
}
.footer__logo a {
  display: block;
  transition: opacity 0.2s ease;
}
.footer__logo a:hover {
  opacity: 0.7;
}
.footer__info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: 135px;
       column-gap: 135px;
  margin-top: 48px;
}
.footer__time {
  width: 100%;
}
.footer__time-note {
  margin-top: 11px;
  padding: 0 30px;
  font-weight: 500;
}
.footer__address {
  width: 100%;
  margin-top: 25px;
}
.footer__parking {
  margin-top: 68px;
}
.footer__map {
  width: 100%;
  height: 457px;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
}
.footer__copy {
  background: #a2966f;
  padding: 19px 0 23px;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.085em;
  text-align: center;
}

.footer-time {
  width: 100%;
  line-height: 2;
  table-layout: auto;
}
.footer-time th, .footer-time td {
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #fff;
}
.footer-time th {
  width: 31.5%;
}

.footer-address {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 25px;
  align-items: center;
}
.footer-address__ttl {
  letter-spacing: 0.15em;
}
.footer-address__txt {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.footer-address__txt a {
  display: inline-block;
  margin-left: 9px;
  padding-bottom: 12px;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #fff;
}

.footer-parking {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 30px;
}
.footer-parking__img {
  width: 100%;
  max-width: 623px;
  position: relative;
}
.footer-parking__img img {
  width: 100%;
  height: 100%;
}
.footer-parking__txt {
  width: 100%;
}
.footer-parking__ttl {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.footer-parking__detail {
  margin-top: 35px;
  line-height: 2.6666666667;
}
@media screen and (min-width: 751px){
  .sp {
    display: none !important;
  }
  .footer-time th, .footer-time td {
    padding: 6px 15px;
  }
  .footer-time th {
    padding-left: 22px;
  }
  .footer-time td {
    padding: 6px 15px;
  }
  .footer-time td:last-child {
    padding-right: 32px;
  }
  .footer-time tbody tr:last-child th {
    padding-top: 19px;
    padding-bottom: 21px;
  }
  .footer-time tbody tr:last-child td {
    padding-top: 13px;
  }
  .footer-time tbody th, .footer-time tbody td {
    padding: 22px 15px 23px;
  }
  .footer-time tbody td {
    padding: 20px 15px 16px;
    font-size: 22px;
  }
}
@media screen and (min-width: 960px){
  .pc-none {
    display: none !important;
  }
  .c-fadein.sp-only,
  .c-slidein.sp-only,
  .c-reveal.sp-only {
    opacity: 1;
    transform: none;
  }
  .c-contact-bnr--web .c-contact-bnr__ttl {
    margin-left: 3px;
  }
  .c-contact-bnr__num {
    margin-left: 9px;
  }
  .c-contact-bnr__txt {
    margin-left: 6px;
  }
  .c-merit__head {
    padding-left: 19px;
  }
  .c-merit__sub {
    padding-left: 5px;
  }
  .footer__ttl .c-ttl {
    padding-left: 6px;
  }
  .footer__content .inner {
    max-width: 1393px;
  }
  .footer__logo {
    transform: translateX(1px);
  }
  .footer__time {
    max-width: 671px;
  }
  .footer__address {
    max-width: 547px;
  }
  .footer-address__ttl:last-of-type {
    padding-top: 10px;
  }
  .footer-parking__img {
    width: 46.1482%;
    transform: translateX(-7px);
  }
  .footer-parking__txt {
    width: 43%;
    padding-top: 25px;
    padding-left: 7px;
  }
  .footer-parking__ttl {
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateX(7px);
  }
  .footer-parking__ttl::before {
    content: "";
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 100px;
    display: block;
    background: url(../img/common/footer-car.png) center/100% no-repeat;
  }
}
@media screen and (max-width: 959px){
  .c-ttl {
    font-size: 35px;
  }
  .c-ttl__sub {
    font-size: 18px;
  }
  .c-contact-bnr {
    font-size: 14px;
  }
  .c-contact-bnr a {
    width: 200px;
    height: 80px;
  }
  .c-contact-bnr__num {
    font-size: 16px;
  }
  .c-contact-bnr__txt {
    font-size: 18px;
  }
  .c-balloon {
    padding: 0.8em 1.3em;
    font-size: 18px;
  }
  .c-merit__head {
    font-size: 30px;
  }
  .c-merit__sub {
    font-size: 14px;
  }
  .c-merit__ttl {
    font-size: 30px;
  }
  .c-merit__ttl::before {
    margin-right: 20px;
  }
  .c-merit__body {
    margin-top: 30px;
  }
  .c-merit__detail {
    font-size: 16px;
  }
  .c-point-mark {
    font-size: 40px;
  }
  .c-point-mark__en {
    font-size: 30px;
  }
  .c-point-mark__num {
    margin-left: 17px;
  }
  .header-nav {
    height: 80px;
    padding-right: 80px;
  }
  .navToggle {
    width: 80px;
    height: 80px;
  }
  .navToggle::after {
    font-size: 16px;
  }
  .globalMenu {
    padding-top: 100px;
  }
  .globalMenu__list li {
    font-size: 16px;
  }
  .footer {
    margin-top: 100px;
  }
  .footer__copy {
    font-size: 18px;
  }
  .footer-address {
    max-width: 650px;
    margin-inline: auto;
  }
  .footer-parking__img {
    max-width: 80%;
    margin-inline: auto;
    position: relative;
  }
  .footer-parking__img::before {
    content: "";
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 90px;
    display: block;
    background: url(../img/common/footer-car.png) center/100% no-repeat;
    position: absolute;
    top: -20px;
    left: auto;
    right: -10px;
  }
  .footer-parking__ttl {
    text-align: center;
  }
}
@media screen and (max-width: 959px) and (min-width: 751px){
  .tb-none {
    display: none !important;
  }
}
@media screen and (max-width: 750px){
  .sp-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .c-slidein {
    transition-duration: 0.4s;
  }
  .c-reveal {
    transition-duration: 0.4s;
  }
  .c-fadein.pc-only,
  .c-slidein.pc-only,
  .c-reveal.pc-only {
    opacity: 1;
    transform: none;
  }
  .c-txt-dot {
    background-image: radial-gradient(2.8px 2.8px at center center, #fef561, #fef561 100%, transparent, transparent);
  }
  .c-merit {
    margin-top: 30px;
  }
  .c-merit__ttl {
    font-size: 24px;
  }
  .c-merit__ttl::before, .c-merit__ttl::after {
    height: 1px;
  }
  .c-merit__ttl::before {
    margin-right: 15px;
  }
  .c-merit__ttl::after {
    margin-left: 10px;
  }
  .c-merit__body {
    display: block;
  }
  .c-merit__item {
    line-height: 1.5;
  }
  .c-merit__detail {
    padding: 0 1em;
    font-size: 14px;
  }
  .c-point-mark__num {
    margin-left: 8px;
  }
	.c-merit__item span {
		font-size: 15px;
		font-weight: 600;
	}	
  body {
    font-size: 15px;
  }
  .header-nav {
    height: 50px;
    padding-right: 67px;
    z-index: 100;
  }
  .header-nav__contact .c-contact {
    width: 100%;
    position: fixed;
    top: auto;
    left: 0;
    bottom: 0;
  }
  .header-nav__contact .c-contact-bnr {
    flex: 0 0 50%;
  }
  .header-nav__contact .c-contact-bnr a {
    width: 100%;
  }
  #js-header-nav {
    transition: 0.3s;
  }
  #js-header-nav:not(.active) {
    opacity: 0;
    pointer-events: none;
  }
  .navToggle {
    width: 50px;
    height: 50px;
  }
  .navToggle::after {
    font-size: 10px;
  }
  .globalMenu {
    padding-top: 75px;
  }
  .globalMenu__list li {
    font-size: 15px;
  }
  .globalMenu__list li a {
    padding: 1em 20px 1em 0;
  }
  .globalMenu__list li a::after {
    right: 0;
  }
  .footer {
    margin-top: 80px;
  }
  .footer__content {
    padding: 40px 0 60px;
  }
  .footer__logo {
    max-width: 80%;
  }
  .footer__info {
    margin-top: 30px;
  }
  .footer__time-note {
    margin-top: 0.5em;
    padding: 0 5px;
  }
  .footer__parking {
    margin-top: 50px;
  }
  .footer__map {
    height: 200px;
  }
  .footer__copy {
    padding: 20px 0;
    font-size: 12px;
  }
  .footer-time th, .footer-time td {
    padding: 0.5em 0;
  }
  .footer-time th {
    width: 35%;
  }
  .footer-time tbody th, .footer-time tbody td {
    padding: 1em 0;
  }
  .footer-address {
    grid-template-columns: 26% 1fr;
    gap: 20px;
  }
  .footer-address__txt {
    font-size: 16px;
  }
  .footer-address__txt a {
    margin-left: 0;
    padding-bottom: 6px;
    font-size: 18px;
  }
  .footer-parking__img {
    max-width: 100%;
  }
  .footer-parking__ttl {
    font-size: 20px;
  }
  .footer-parking__detail {
    margin-top: 18px;
    line-height: 2;
  }
}


/*------------------------------------------------ c-pagetop-------------------------------------------------*/
.c-pagetop {
  position: fixed;
  right: 45px;
  bottom: 0px;
  width: 98px;
  height: 98px;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  z-index: 1000;
}
.c-pagetop.active {
  opacity: 1;
  visibility: visible;
}
.c-pagetop a {
  transition: opacity 0.2s ease;
}
.c-pagetop a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 959px){
  .c-pagetop {
    right: 5px;
    width: 60px;
    height: 50px;
	bottom: 90px;  
  }
}



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