html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #7f7c82;
}
img {
  width: 100%;
  max-width: 100%;
}
p {
  color: #f3f1f5;
}

.sp {
  display: none !important;
}
.c-logo {
  color: #5f5c61;
  text-align: center;
}
.c-logo h1 {
  font-size: 40px;
  font-weight: 400;
  color: #5f5c61;
}
.c-green {
  color: #9dc237;
  font-size: 13px;
  font-style: italic;
  font-family: "EB Garamond", serif;
}

.c-ttl {
  background: url(/wp-content/themes/kisaya_theme/img/top_dec_wh.png);
  background-size: cover;
  display: flex;
  justify-content: center;
  padding: 22px 0;
  flex-direction: row-reverse;
}
.c-ttl h3 {
  font-size: 24px;
  font-weight: 400;
  writing-mode: vertical-rl;
  color: #7f7c82;
  letter-spacing: 0.4rem;
  line-height: 1;
}
.c-ttl__sub {
  color: #6c9300;
  writing-mode: sideways-rl;
  font-size: 13px;
  font-style: italic;
  font-family: "EB Garamond", serif;
}
.pageTop {
  background-color: #6c9300;
  border-radius: 50px;
  width: 54px;
  height: 54px;
  position: fixed;
  bottom: 150px;
  right: 121px;
}
.pageTop a {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pageTop img {
  width: 23px;
  height: 12px;
}
/* ----header ------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* 最前面に */
  background: #fff;
  opacity: 0.9;
}

.l-header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  height: 90px;
}
.l-header__contact ul {
  display: flex;
  gap: 10px;
}
.l-header__contact--tel {
  border: solid 1px;
  padding: 10px;
  font-size: 20px;
}
.l-header__contact--tel span {
  font-family: "EB Garamond", serif;
  font-size: 15px;
  padding-right: 5px;
  font-style: italic;
}
.l-header__contact--mail {
  background-color: #9dc237;
  padding: 13px 18px;
}
.l-header__contact--mail a {
  color: #fff;
}
.l-header__contact--mail a img {
  width: 13.5px;
  vertical-align: middle;
  padding-right: 12.25px;
}
.l-nav ul {
  display: flex;
  color: #7f7c82;
  margin: 0 0 0 auto;
  justify-content: flex-end;
}
.l-nav ul li {
  border-left: solid 1px #7f7c82;
  height: 39px;
  padding: 0 21px;
}
.l-nav ul li:last-of-type {
  border-right: solid 1px #7f7c82;
}
.l-nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ------footer --------- */
.l-footer {
  background: url(/wp-content/themes/kisaya_theme/img/footer_dec.png);
  background-size: cover;
  padding: 20px 0;
}
.l-footer__inner {
  max-width: 1210px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
.l-footer .c-logo {
  color: #f3f1f5;
  text-align: center;
}
.l-footer .c-logo h1 {
  color: #f3f1f5;
  font-size: 32px;
}
.l-footer__link a {
  display: block;
  text-align: right;
  margin-bottom: 25px;
}
.l-footer__link img {
  width: 17px;
}
.l-footer__link p a {
  font-size: 15px;
  font-weight: 500;
  color: #f3f1f5;
}
.l-footer__link p a:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .c-ttl {
    padding: 17px 0 13px;
  }
  .c-ttl h3 {
    font-size: 20px;
  }
  header {
    background-color: unset;
    opacity: 1;
  }
  .l-header {
    display: block;
    height: auto;
  }
  .c-logo {
    background-color: #222222;
    width: 245px;
    color: #fff;
    font-size: 13px;
    padding: 11px 0;
  }
  .c-logo h1 {
    color: #fff;
    font-size: 20px;
  }
  .menu-btn {
    display: block;
    pointer-events: all;
    position: absolute;
    top: 21px;
    right: 19px;
    width: 46px;
    height: 46px;
    text-align: center;
    cursor: pointer;
    z-index: 1001;
    background-color: #fff;
  }
  .menu-btn .bar {
    display: block;
    position: absolute;
    width: 22px;
    height: 2px;
    left: 12px;
    background: #000;
  }
  .menu-btn .bar:nth-of-type(1) {
    top: 15px;
    transition: 0.3s;
  }
  .menu-btn .bar:nth-of-type(2) {
    top: 22px;
  }
  .menu-btn .bar:nth-of-type(3) {
    top: 29px;
    transition: 0.3s;
  }
  .menu-btn.active .bar:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  .menu-btn.active .bar:nth-child(2) {
    top: 22px;
    opacity: 0;
  }
  .menu-btn.active .bar:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
    transition: 0.3s;
  }
  .l-nav {
    background-color: #f5f5f5f5;
    padding: 25px 31px 104px 40px;
    display: none;
  }
  .l-nav ul {
    display: block;
  }
  .l-nav ul li {
    border-bottom: solid 1px #d9d9d9;
    border-left: unset;
    padding: 18px 0 9px;
  }
  .l-nav ul li:first-of-type {
    padding-top: 0;
  }
  .l-nav ul li:last-of-type {
    border-right: unset;
    border-bottom: unset;
  }
  .l-nav ul li a {
    align-items: flex-start;
  }

  /* ------footer-------- */
  .l-footer {
    padding: 13px 0 23px;
  }
  .l-footer__inner {
    justify-content: space-around;
    align-items: flex-start;
  }
  .l-footer .c-logo {
    font-size: 14px;
    text-align: left !important;
  }
  .l-footer .c-logo h1 {
    font-size: 20px;
  }
  .l-footer__link {
    margin-right: 6px;
  }
  .l-footer__link p a {
    font-size: 12px;
    margin-bottom: 32px;
  }
  .pageTop {
    bottom: 100px ;
    right: 18px;
    width: 36px;
    height: 36px;
  }
  .pageTop a {
    top: 30%;
  }
  .pageTop img {
    width: 16px;
    height: 8px;
  }
}
