@charset "UTF-8";
h1,
h2,
h3,
h4 {
  font-family: "Zen Old Mincho", serif;
}

p,
input,
textarea,
li,
span {
  font-family: "Zen Old Mincho", serif;
}

a {
  font-family: "Zen Old Mincho", serif;
  color: #333;
  text-decoration: none;
}

.lazyload-img {
  opacity: 0;
  transition: 0.3s opacity;
}
.lazyload-img.lazyloaded {
  opacity: 1;
}

.section {
  width: 100%;
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.m-section {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.s-section {
  width: 100%;
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .s-section {
    padding-top: 80px;
  }
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.breadcrumb__wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.breadcrumb {
  position: absolute;
  top: 12px;
  left: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.breadcrumb__item a {
  display: block;
  position: relative;
}
.breadcrumb__item a::after {
  display: block;
  content: "";
  width: 90%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.breadcrumb__arrow {
  margin: 2px 8px;
}

.breadcrumb__item {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item {
    font-size: 12px;
  }
}
.breadcrumb__item span {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.1em;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item span {
    font-size: 12px;
  }
}

.breadcrumb span:first-child {
  margin-left: 0;
}

.breadcrumb span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 320px;
}
@media screen and (max-width: 768px) {
  .breadcrumb span:last-child {
    max-width: 240px;
  }
}

.is-nav {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-nav {
    display: none;
  }
}

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

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

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

.js-fadeUp {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s;
}

.inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0.5s;
  /* フェード開始を0.5秒遅らせる */
}

.top__btn {
  position: fixed;
  bottom: 38px;
  right: 38px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .top__btn {
    bottom: 10px;
    right: 10px;
  }
}

.top__btn__link {
  opacity: 0;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #26693d;
  border: solid 2px #26693d;
  position: relative;
}
@media (any-hover: hover) {
  .top__btn__link:hover {
    background-color: #fff;
  }
  .top__btn__link:hover:before {
    border-right: 2px solid #26693d;
    border-bottom: 2px solid #26693d;
  }
}
@media screen and (max-width: 768px) {
  .top__btn__link {
    width: 40px;
    height: 40px;
  }
}
.top__btn__link:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .top__btn__link:before {
    width: 8px;
    height: 8px;
  }
}

.grecaptcha-badge {
  right: -300px !important;
}

.notfound {
  padding-top: 280px;
  padding-bottom: 180px;
  text-align: center;
}

.notfound__title span {
  display: block;
  line-height: 2;
  letter-spacing: 0.1em;
}
.notfound__title span:nth-of-type(1) {
  font-size: 36px;
  font-weight: 900;
}
.notfound__title span:nth-of-type(2) {
  font-size: 16px;
  font-weight: 500;
}

.notfound__text {
  margin-top: 24px;
  display: block;
  font-weight: 400;
  line-height: 2; /* 28px */
  letter-spacing: 0.1em;
}

.side__menu {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: 62px;
  width: 100%;
  z-index: 10001;
}
@media screen and (max-width: 768px) {
  .side__menu {
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }
}

.side__list:nth-of-type(1) .side__icon {
  max-width: 24px;
  margin-inline: auto;
}
.side__list:nth-of-type(1) .side__link {
  border-radius: 10px 0 0 0;
}
.side__list:nth-of-type(2) .side__link {
  border-radius: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
  .side__list:nth-of-type(2) .side__link {
    border-radius: 0;
  }
}

.side__link {
  display: block;
  padding: 17px;
  background: #333;
}
@media (any-hover: hover) {
  .side__link:hover {
    background-color: #fff;
  }
  .side__link:hover .svg-path {
    fill: #333; /* SVGの色を変更 */
  }
  .side__link:hover p {
    color: #333;
  }
}
.side__link .svg-path {
  transition: all 0.3s;
  fill: #fff; /* SVGの色を変更 */
}

/*=======
# ヘッダー
======================================================*/
.header6 {
  position: relative;
}

.header6__position {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .header6__position {
    height: 75px;
  }
}

.header6__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background-color: unset;
  height: unset;
  padding: 0px 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .header6__inner {
    background-color: none;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.header6__logo {
  width: 71px;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .header6__logo {
    width: 60px;
  }
}
.header6__logo img {
  width: 100%;
  object-fit: contain;
}
.header6__logo:hover {
  opacity: 0.7;
}

.header6__nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header6__nav {
    position: fixed;
    top: 0;
    right: 0;
    flex-flow: column;
    justify-content: unset;
    color: #fff;
    width: 90%;
    height: 100dvh;
    max-width: 400px;
    padding: 30px 0 0;
    z-index: 999;
    overflow-y: scroll;
    transition: transform 0.7s, -webkit-transform 0.7s;
    background-color: #86796d;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
}

.header6__nav.open {
  transform: translateX(0);
}

.header6__nav__list {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
@media screen and (max-width: 1024px) {
  .header6__nav__list {
    flex-flow: column;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.header6__nav__item--has-dropdown {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header6__nav__item--has-dropdown {
    display: none;
  }
}
.header6__nav__item--has-dropdown .header6__nav__link {
  position: relative;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .header6__nav__item--has-dropdown .header6__nav__link {
    padding-right: 0px;
  }
}
.header6__nav__item--has-dropdown .header6__nav__link::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 44%;
  right: 0px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .header6__nav__item--has-dropdown .header6__nav__link::before {
    display: none;
  }
}
.header6__nav__item--has-dropdown .header6__nav__dropdown {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  top: 110%;
  left: -27%;
  background-color: rgba(134, 121, 109, 0.9);
  list-style: none;
  min-width: 108px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header6__nav__item--has-dropdown .header6__nav__dropdown {
    display: none;
  }
}
.header6__nav__item--has-dropdown .header6__nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
  color: #fff;
  text-decoration: none;
  text-align: left;
  white-space: nowrap;
  transition: all 0.3s;
}
.header6__nav__item--has-dropdown:hover .header6__nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header6__nav__item {
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 10px;
}
@media screen and (max-width: 1024px) {
  .header6__nav__item {
    font-size: 18px;
    margin: 0 auto 22px;
  }
}
.header6__nav__item a {
  position: relative;
  padding: 10px 5px;
  transition: color 0.3s;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .header6__nav__item a {
    color: #fff;
    justify-content: unset;
    font-size: 14px;
  }
}
.header6__nav__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 70%;
  height: 2px;
  background-color: #86796d;
  transform: scale(0, 1);
  transition: transform 0.2s ease-out;
}
.header6__nav__item a:hover {
  color: #aaa;
}
.header6__nav__item a:hover::after {
  transform: scale(1, 1);
}

.header6 .header6__nav__contact {
  width: 134px;
  max-width: 100%;
  color: #000;
  background: #fff;
  border-radius: 50px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .header6 .header6__nav__contact {
    width: 274px;
  }
}
.header6 .header6__nav__contact:hover {
  background-color: #86796d;
  color: #fff;
}

.header6__nav__instagram {
  width: 100%;
  margin-top: 10px;
  max-width: 20px;
  margin-right: 24px;
}
.header6__nav__instagram img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .header6__nav__instagram {
    width: 274px;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.header6__nav__instagram:hover {
  opacity: 0.7;
}

.header6__nav__tel,
.header6__nav__mail {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  border: 2px solid #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.06em;
  height: unset;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: unset;
}
.header6__nav__tel img,
.header6__nav__mail img {
  margin-right: 5px;
  padding-top: 3px;
  width: 14px;
}
.header6__nav__tel:hover,
.header6__nav__mail:hover {
  background-color: #86796d;
}

.header6__menu-btn {
  display: none;
  background: #86796d;
  border: none;
}
@media screen and (max-width: 1024px) {
  .header6__menu-btn {
    display: block;
    width: 34px;
    height: 34px;
    background-color: unset;
    position: absolute;
    right: 20px;
  }
}

.header6__menu-btn span {
  display: block;
  width: 34px;
  height: 1px;
  position: absolute;
  top: 16px;
  right: 0;
  background-color: #fff;
}
.header6__menu-btn span::before, .header6__menu-btn span::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .header6__menu-btn span::before, .header6__menu-btn span::after {
    background-color: #fff;
    height: 1px;
  }
}
@media screen and (max-width: 1024px) {
  .header6__menu-btn span::before {
    top: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .header6__menu-btn span::after {
    bottom: 12px;
  }
}

.header6__close-btn {
  display: none;
  border: none;
}
@media screen and (max-width: 1024px) {
  .header6__close-btn {
    display: block;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    position: relative;
  }
  .header6__close-btn::before, .header6__close-btn::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
  }
  .header6__close-btn::before {
    top: 19px;
    transform: rotate(45deg);
  }
  .header6__close-btn::after {
    bottom: 19px;
    transform: rotate(-45deg);
  }
}

.header6__bg {
  position: absolute;
  width: 100%;
  transition: background-color 0.3s ease;
  background-color: #9F9489;
}
.header6__bg.is-scrolled {
  background-color: rgba(134, 121, 109, 0.7);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.header6__bg.is-scrolled .header6__nav__tel,
.header6__bg.is-scrolled .header6__nav__mail {
  color: #333;
  border: 2px solid #333;
}
@media screen and (max-width: 1024px) {
  .header6__bg.is-scrolled .header6__nav__tel,
  .header6__bg.is-scrolled .header6__nav__mail {
    color: #fff;
    border: 2px solid #fff;
  }
}
.header6__bg.is-scrolled .header6__nav__tel img,
.header6__bg.is-scrolled .header6__nav__mail img {
  filter: invert(1);
}
@media screen and (max-width: 1024px) {
  .header6__bg.is-scrolled .header6__nav__tel img,
  .header6__bg.is-scrolled .header6__nav__mail img {
    filter: invert(0);
  }
}

@media screen and (max-width: 1024px) {
  .header6__bg.is-scrolled .header6__nav__item a {
    color: #fff;
  }
}

@media screen and (max-width: 1024px) {
  .header6 .header6__nav__item a:hover {
    color: #fff;
  }
}

.header6__nav__item a,
.header6__nav__tel,
.header6__nav__mail {
  color: white;
  transition: color 0.3s ease;
}

.header6__nav__tel img,
.header6__nav__mail img {
  transition: filter 0.3s ease;
}

/*# sourceMappingURL=single-style.css.map */
