/* =============================================
  media query
============================================= */
/* =============================================
  px vw
============================================= */
/* =============================================
  default settings
============================================= */
:root {
  --color-primary: #82AA8D;
  --color-secondary: #815D32;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  overflow-y: hidden;
  overflow-x: hidden;
  font-size: 1.6rem;
  background: #F5F5F4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body.is-active {
  overflow: hidden !important;
}
body.page {
  background-color: #fff;
  overflow: auto;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #000;
}

ul, ol {
  list-style: none;
}

area {
  cursor: pointer;
}

.main {
  overflow: hidden;
}

.inner {
  max-width: calc(1100px + 8rem);
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
}
@media screen and (max-width: 450px) {
  .inner {
    padding: 0 2.5rem;
  }
}

.pc {
  display: inline-block !important;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

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

.section__title {
  text-align: center;
}
.section__title h1, .section__title h2 {
  font-size: 5rem;
  font-weight: normal;
  color: #343434;
  position: relative;
  margin-bottom: 4rem;
  font-family: "Marcellus", serif;
  letter-spacing: 10px;
}
@media screen and (max-width: 768px) {
  .section__title h1, .section__title h2 {
    font-size: 3rem;
    letter-spacing: 5px;
  }
}
.section__title h1::after, .section__title h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: no-repeat url(../img/section_title_acc.svg) center center/contain;
  width: 61px;
  height: 8.5px;
}
.section__title span {
  font-size: 1.8rem;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 768px) {
  .section__title span {
    font-size: 1.5rem;
  }
}

.access__map {
  position: absolute;
  top: 0;
  left: 0;
}
.access__map.is-show {
  display: none;
}
.access__map--show {
  display: none;
}
.access__map--show.is-show {
  display: inline-block;
}
.access__map--pc {
  display: block;
  position: relative;
  width: 670px;
  height: 533px;
}
@media screen and (max-width: 768px) {
  .access__map--pc {
    display: none;
  }
}
.access__map--sp {
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .access__map--sp {
    width: 100%;
    height: auto;
    aspect-ratio: 293/233;
    display: block;
  }
}

.fadeIn {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.03);
  transition: transform ease 0.8s, filter ease 0.8s, opacity ease 0.8s;
}
.fadeIn.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  overflow: auto;
  z-index: 10001;
  text-align: center;
  transition: all ease 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .modal {
    padding: 15px;
  }
}
.modal.is-show {
  opacity: 1;
  visibility: visible;
}
.modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal__body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 6rem 4rem;
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 3rem;
}
@media screen and (max-width: 768px) {
  .modal__body {
    padding: 4rem 2rem;
  }
}
.modal__close {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  transition: filter ease 0.3s;
}
@media screen and (max-width: 768px) {
  .modal__close {
    width: 4rem;
    height: 4rem;
    top: -1.5rem;
    right: -1.5rem;
  }
}
.modal__close:hover {
  filter: brightness(1.1);
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1.5px;
  width: 2.5rem;
  background-color: #fff;
}
.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__btn {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .modal__btn {
    margin-top: 2.5rem;
  }
}

.wp-pagenavi {
  margin-top: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    margin-top: 0;
  }
}
.wp-pagenavi .page {
  font-size: 1.5rem;
  color: #6C6C6C;
  background-color: transparent;
  transition: color ease 0.3s;
}
.wp-pagenavi .page:hover {
  color: var(--color-primary);
}
.wp-pagenavi .current {
  position: relative;
  font-size: 1.5rem;
  color: var(--color-primary);
}
.wp-pagenavi .current::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  height: 1px;
  width: 15px;
}
.wp-pagenavi .previouspostslink {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  color: transparent;
  background: no-repeat url(../img/page_navi_left.svg) center center/contain;
  transition: opacity ease 0.3s;
}
.wp-pagenavi .previouspostslink:hover {
  opacity: 0.7;
}
.wp-pagenavi .nextpostslink {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  color: transparent;
  background: no-repeat url(../img/page_navi_right.svg) center center/contain;
  transition: opacity ease 0.3s;
}
.wp-pagenavi .nextpostslink:hover {
  opacity: 0.7;
}

#breadcrumbs {
  margin-top: 7.5rem;
  margin-bottom: 0.5rem;
  padding-right: 13rem;
}
@media screen and (max-width: 768px) {
  #breadcrumbs {
    margin-top: 6.5rem;
    padding-right: 0;
  }
}
#breadcrumbs a {
  transition: color ease 0.3s;
}
#breadcrumbs a:hover {
  color: var(--color-primary);
}

.pageTop {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  width: 6rem;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .pageTop {
    right: 2.5rem;
    width: 4.5rem;
  }
}
.pageTop img {
  transition: opacity ease 0.3s;
}
.pageTop img:hover {
  opacity: 0.7;
}

/* =============================================
  btn
============================================= */
.btn {
  width: 11.6rem;
  height: 3.9rem;
  line-height: 3.9rem;
  border-radius: 2rem;
  background: #2B3B2F;
  border: 1px solid #2B3B2F;
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  transition: color ease 0.3s, background ease 0.3s;
}
.btn:hover {
  background: #fff;
  color: #2B3B2F;
}
.btn--instagram {
  transition: opacity ease 0.3s;
}
.btn--instagram:hover {
  opacity: 0.7;
}
.btn--arrow {
  width: 22.4rem;
  height: 6rem;
  line-height: 6rem;
  border-radius: 3rem;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fff;
  padding-left: 2.5rem;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 400;
  transition: color ease 0.3s, background ease 0.3s;
  position: relative;
}
.btn--arrow::before, .btn--arrow::after {
  content: "";
  position: absolute;
  right: 25px;
  background: #fff;
  height: 1px;
  transition: background ease 0.3s, right ease 0.3s;
}
.btn--arrow::before {
  width: 7px;
  transform: rotate(45deg);
  transform-origin: bottom right;
  top: 30px;
}
.btn--arrow::after {
  width: 23px;
  top: 30px;
}
.btn--arrow:hover {
  background: #fff;
  color: var(--color-primary);
}
.btn--arrow:hover::before, .btn--arrow:hover::after {
  background: var(--color-primary);
  right: 20px;
}
.btn--arrowCenter {
  padding-left: 0;
  text-align: center;
}
.btn--large {
  width: 34.6rem;
  height: 6rem;
  line-height: 6rem;
  border-radius: 3rem;
  background: #6A6565;
  border: 1px solid #6A6565;
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 400;
  transition: color ease 0.3s, background ease 0.3s;
}
.btn--large:hover {
  background: #fff;
  color: #6A6565;
}
.btn--modal {
  width: 22.4rem;
  height: 5rem;
  line-height: 5rem;
  border-radius: 2.5rem;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fff;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 400;
  transition: color ease 0.3s, background ease 0.3s;
  position: relative;
}
.btn--modal:hover {
  background: #fff;
  color: var(--color-primary);
}

/* =============================================
  header
============================================= */
.header {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-50px);
}
@media screen and (max-width: 1000px) {
  .header {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0px);
  }
}
.header__inner {
  padding: 0 7.3rem;
  height: 10rem;
}
@media screen and (max-width: 1000px) {
  .header__inner {
    padding: 0 3rem;
    height: 8rem;
  }
}
.header__inner--fix {
  display: flex;
  align-items: center;
}
.header__inner--fix > a {
  transition: opacity ease 0.3s;
}
.header__inner--fix > a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1000px) {
  .header__inner--fix > a img {
    width: 5rem;
  }
}
.header__logo {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 23.3rem;
  height: 23.3rem;
  line-height: 23.3rem;
  border-radius: 0 0 3rem 0;
  text-align: center;
  transition: opacity ease 0.3s;
}
.header__logo:hover {
  opacity: 0.7;
}
.header__logo img {
  margin-left: -6px;
}
.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .header__nav {
    display: none;
  }
}
.header__navLinks {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header__navLinks li a {
  position: relative;
}
.header__navLinks li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  height: 1px;
  width: 100%;
  background: var(--color-primary);
  transition: transform ease 0.3s;
  transform-origin: top right;
}
.header__navLinks li a:hover::after {
  transform-origin: top left;
  transform: scaleX(100%);
}
.header__navBtns {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header--fix {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 1000;
  transform: translateY(-10rem);
  transition: transform ease 0.3s;
}
@media screen and (max-width: 1000px) {
  .header--fix {
    transform: translateY(0);
  }
}
.header--fix.is-show {
  transform: translateY(0);
}

/* =============================================
  hamburger
============================================= */
.hamburger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: scroll;
  z-index: 1000;
  padding: 7.5rem 3rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease 0.3s, visibility ease 0.3s;
}
.hamburger.is-active {
  opacity: 1;
  visibility: visible;
}
.hamburger__btn {
  display: none;
}
@media screen and (max-width: 1000px) {
  .hamburger__btn {
    position: fixed;
    top: 3.2rem;
    right: 3rem;
    z-index: 1001;
    display: block;
    width: 2rem;
    height: 1.4rem;
  }
}
.hamburger__btn span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #4D3323;
  left: 0;
  transition: transform ease 0.3s, opacity ease 0.3s;
}
.hamburger__btn span:nth-child(1) {
  top: 0;
}
.hamburger__btn span:nth-child(1).is-active {
  top: 50%;
  transform: rotate(45deg);
}
.hamburger__btn span:nth-child(2) {
  top: 50%;
}
.hamburger__btn span:nth-child(2).is-active {
  opacity: 0;
}
.hamburger__btn span:nth-child(3) {
  top: 100%;
}
.hamburger__btn span:nth-child(3).is-active {
  top: 50%;
  transform: rotate(-45deg);
}
.hamburger__logo {
  transition: opacity ease 0.3s;
}
.hamburger__logo:hover {
  opacity: 0.7;
}
.hamburger__nav {
  margin: 2.7rem auto 0;
  max-width: 230px;
}
.hamburger__nav ul li {
  padding: 2.8rem 0;
  border-bottom: 1px solid #707070;
}
.hamburger__nav ul li a {
  transition: color ease 0.3s;
}
.hamburger__nav ul li a:hover {
  color: var(--color-primary);
}
.hamburger__btnList {
  margin-top: 4rem;
}
.hamburger__snsList {
  margin-top: 3.5rem;
}
.hamburger__snsItem a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  transition: opacity ease 0.3s;
}
.hamburger__snsItem a:hover {
  opacity: 0.7;
}

/* =============================================
  loader
============================================= */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100svh;
  width: 100%;
  background: #fff;
  z-index: 10000;
}
.loader.is-active {
  position: relative;
}
.loader__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

/* =============================================
  mv
============================================= */
.mv {
  padding: 0 7.3rem;
}
@media screen and (max-width: 1000px) {
  .mv {
    padding: 0;
  }
}
.mv__bg {
  position: relative;
  background: no-repeat url(../img/mv.jpg) center center/cover;
  width: 100%;
  aspect-ratio: 1220/684;
  min-height: 684px;
  max-height: calc(100svh - 10rem);
  border-radius: 3rem;
  overflow-x: hidden;
  opacity: 0;
  transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
  .mv__bg {
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .mv__bg {
    background: no-repeat url(../img/mv_sp.jpg) center center/cover;
    aspect-ratio: 375/375;
    min-height: auto;
  }
}
.mv__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 300;
  font-size: 2.3rem;
  line-height: 2;
  position: absolute;
  top: 211px;
  left: 112px;
  color: #4D3323;
  transform: translateX(-50px);
  opacity: 0;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .mv__title {
    top: 34px;
    left: 26px;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 1.5rem;
  }
}

/* =============================================
  top
============================================= */
.top-about {
  padding: 16rem 0 17.3rem;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: 2rem 0 3rem;
  }
}
.top-about__title {
  color: #815D32;
  text-align: center;
  position: relative;
}
.top-about__title::before {
  content: "";
  width: 8.5rem;
  height: 4.9rem;
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  background: no-repeat url(../img/about_title_acc.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .top-about__title::before {
    width: 5.2rem;
    height: 2.4rem;
    top: -3rem;
  }
}
.top-about__title h2 {
  font-family: "Marcellus", serif;
  font-size: 5.5rem;
  font-weight: normal;
  letter-spacing: 10px;
}
@media screen and (max-width: 768px) {
  .top-about__title h2 {
    letter-spacing: 5px;
    font-size: 3.4rem;
  }
}
.top-about__title h2 span {
  font-family: sans-serif;
  letter-spacing: 5px;
  margin-left: 1rem;
  font-size: 4.5rem;
}
@media screen and (max-width: 768px) {
  .top-about__title h2 span {
    font-size: 3rem;
    margin-left: 0.5rem;
  }
}
.top-about__title > span {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top-about__title > span {
    font-size: 1rem;
    display: block;
  }
}
.top-about__title p {
  font-size: 2.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .top-about__title p {
    font-size: 1.5rem;
  }
}
.top-about__sentence {
  margin-top: 6.5rem;
  text-align: center;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .top-about__sentence {
    margin: 3rem auto 0;
    text-align: left;
    max-width: 280px;
    font-size: 1.5rem;
  }
}
.top-about__img {
  max-width: 627px;
  margin: 16rem auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-about__img {
    margin: 5rem auto 0;
    max-width: 293px;
  }
}
.top-about__img::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  height: 125px;
  width: 1px;
  background: #707070;
}
@media screen and (max-width: 768px) {
  .top-about__img::before {
    height: 58px;
    top: -35px;
  }
}
.top-about__img::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -160px;
  width: 242px;
  height: 186px;
  border-radius: 3rem;
  background: no-repeat url(../img/about_img02.jpg) center center/contain;
}
@media screen and (max-width: 768px) {
  .top-about__img::after {
    width: 60%;
    height: auto;
    aspect-ratio: 176/136;
    top: -45%;
    right: -30%;
  }
}
.top-about__img img {
  border-radius: 3rem;
  aspect-ratio: 627/482;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
}
.top-about .acc {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .top-about .acc {
    position: static;
    display: block;
  }
}
.top-about .acc01 {
  top: -60px;
  right: 100px;
  width: 18.5%;
}
@media screen and (max-width: 768px) {
  .top-about .acc01 {
    margin: 0 auto 4rem;
    width: 13rem;
  }
}
.top-about .acc02 {
  top: 250px;
  right: 220px;
  width: 4.9%;
}
@media screen and (max-width: 768px) {
  .top-about .acc02 {
    width: 3.7rem;
    margin: 3rem auto 0;
  }
}
.top-about .acc03 {
  top: 90px;
  left: -20px;
  width: 28%;
}
@media screen and (max-width: 768px) {
  .top-about .acc03 {
    display: none;
  }
}
.top-about .acc03--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-about .acc03--sp {
    display: block;
    margin: 5.2rem auto 0;
    width: 100%;
    max-width: 292px;
  }
}
.top-about .acc04 {
  top: 900px;
  left: 0;
  width: 18.5%;
}
@media screen and (max-width: 768px) {
  .top-about .acc04 {
    width: 13.9rem;
    margin-top: 3rem;
  }
}
.top-about .acc05 {
  top: 1200px;
  right: 100px;
  width: 4.6%;
}
@media screen and (max-width: 768px) {
  .top-about .acc05 {
    width: 5.1rem;
    margin-top: -2rem;
    margin-left: auto;
  }
}
.top-map {
  padding-bottom: 14.6rem;
}
@media screen and (max-width: 768px) {
  .top-map {
    padding-bottom: 9rem;
  }
}
.top-map__title {
  text-align: center;
  font-size: 3rem;
  color: var(--color-secondary);
  position: relative;
  font-family: "Marcellus", serif;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .top-map__title {
    font-size: 2rem;
  }
}
.top-map__title::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: no-repeat url(../img/map_title.svg) center center/contain;
  width: 302px;
  height: 64px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-map__title::after {
    width: 218px;
    height: 46px;
    bottom: -20px;
  }
}
.top-map__img {
  max-width: 910px;
  margin: 6rem auto 0;
}
@media screen and (max-width: 768px) {
  .top-map__img {
    margin: 4rem auto 0;
  }
}
.top-map__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .top-map__btn {
    margin-top: 3rem;
  }
}
.top-shop {
  padding: 14rem 0 26rem;
  background: #fff;
  border-radius: 5rem 5rem 0 0;
}
@media screen and (max-width: 768px) {
  .top-shop {
    padding: 8.7rem 0 20rem;
  }
}
.top-shop__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.top-shop__title::before {
  content: "";
  position: absolute;
  width: 204px;
  height: 168px;
  background: no-repeat url(../img/shop_acc.svg) center center/contain;
  top: -30px;
  left: -300px;
}
@media screen and (max-width: 768px) {
  .top-shop__title::before {
    width: 103px;
    left: 50%;
    transform: translateX(-50%);
    top: -170px;
  }
}
.top-news {
  padding: 10rem 0 18rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 5rem 0 15rem;
  }
}
.top-news::before {
  content: "";
  width: 100%;
  height: 5rem;
  background: #F5F5F4;
  position: absolute;
  top: -5rem;
  left: 0;
  border-radius: 5rem 5rem 0 0;
}
.top-news__title {
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .top-news__title {
    margin-bottom: 4.2rem;
  }
}
.top-news .acc {
  position: absolute;
}
.top-news .acc01 {
  right: 100px;
  top: -190px;
}
@media screen and (max-width: 768px) {
  .top-news .acc01 {
    width: 73px;
    right: 50%;
    transform: translateX(50%);
    top: -140px;
  }
}
.top-news .acc02 {
  left: 100px;
  top: -20px;
}
@media screen and (max-width: 768px) {
  .top-news .acc02 {
    width: 51px;
    left: 40px;
    top: -200px;
  }
}
.top-access {
  background: #fff;
  position: relative;
  padding-top: 7rem;
}
@media screen and (max-width: 768px) {
  .top-access {
    padding-top: 4rem;
  }
}
.top-access::before {
  content: "";
  width: 100%;
  height: 5rem;
  background: #fff;
  position: absolute;
  top: -5rem;
  left: 0;
  border-radius: 5rem 5rem 0 0;
}
.top-access__map {
  margin: 6.5rem auto 0;
  max-width: 670px;
}
@media screen and (max-width: 768px) {
  .top-access__map img {
    width: 100%;
  }
}
.top-access__mapBtn {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-access__mapInfo {
  max-width: 316px;
  margin: 3rem auto 0;
  line-height: 1.8;
}
.top-access__kinds {
  border: 1px solid #E3E3E3;
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .top-access__kinds {
    display: block;
  }
}
.top-access__kinds li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #6C6C6C;
}
.top-access__kinds li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
}
.top-access__kinds li:nth-child(1)::before {
  background-color: #FF9191;
}
.top-access__kinds li:nth-child(2)::before {
  background-color: #59C176;
}
.top-access__kinds li:last-child {
  margin-bottom: 0;
}
.top-access__kinds li:last-child::before {
  background-color: #3ACBC4;
}
.top-access__notes {
  font-size: 1.3rem;
  color: #FF0080;
  text-align: center;
  margin-top: 4.5rem;
  line-height: 1.6;
  display: none;
}
.top-access__notes.is-show {
  display: block;
}
.top-access__notes span {
  margin-left: 1rem;
  color: #343434;
}
.top-access__notes span:nth-child(1), .top-access__notes span:nth-child(3) {
  background: #6C6C6C;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
}
.top-photo {
  background: #fff;
  padding: 19rem 0;
}
@media screen and (max-width: 768px) {
  .top-photo {
    padding: 17rem 0;
  }
}
.top-photo__title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.top-photo__title::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 72px;
  background: no-repeat url(../img/photo_acc01.svg) center center/contain;
  top: 30px;
  left: -120px;
}
@media screen and (max-width: 768px) {
  .top-photo__title::before {
    content: none;
  }
}
.top-photo__title::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 90px;
  background: no-repeat url(../img/photo_acc02.svg) center center/contain;
  top: 25px;
  right: -120px;
}
@media screen and (max-width: 768px) {
  .top-photo__title::after {
    content: none;
  }
}

/* =============================================
  shop
============================================= */
.shop__list {
  margin-top: 12rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18rem 5rem;
}
@media screen and (max-width: 1000px) {
  .shop__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .shop__list {
    margin-top: 4rem;
    grid-template-columns: 1fr;
    gap: 8.6rem;
  }
}
.shop__item {
  position: relative;
  padding-bottom: 28rem;
}
@media screen and (max-width: 768px) {
  .shop__item {
    padding-bottom: 0;
  }
}
.shop__itemImg {
  border-radius: 3rem;
  width: 100%;
}
.shop__itemHead {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.shop__itemTitle span {
  font-size: 1.4rem;
}
.shop__itemTitle h3 {
  font-size: 2rem;
  font-weight: 400;
}
.shop__itemTitle h3 span {
  font-size: 1.4rem;
}
.shop__itemText {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #6C6C6C;
  text-align: justify;
}
.shop__itemInfo {
  border-top: 0.5px solid #707070;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 215px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .shop__itemInfo {
    position: static;
    height: auto;
    margin-top: 2rem;
    border-top: none;
  }
}
.shop__itemList--space {
  position: absolute;
  top: 21px;
}
@media screen and (max-width: 768px) {
  .shop__itemList--space {
    position: static;
    top: auto;
  }
}
.shop__itemList div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.shop__itemList div:last-child {
  margin-bottom: 0;
}
.shop__itemList div.space {
  height: 1em;
}
@media screen and (max-width: 768px) {
  .shop__itemList div.space {
    display: none;
  }
}
.shop__itemList div dt {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.shop__itemList div dd {
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.shop__itemLink {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  transition: opacity ease 0.3s;
}
.shop__itemLink:hover {
  opacity: 0.7;
}
.shop__itemLink span {
  font-size: 1.5rem;
  padding-bottom: 9px;
  border-bottom: 1px solid #707070;
}

/* =============================================
  route
============================================= */
.route {
  margin-top: 11rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .route {
    display: none;
  }
}
.route .route__input {
  display: none;
}
.route .route__input01:checked + .route__tab {
  background: #FF9191;
}
.route .route__input02:checked + .route__tab {
  background: #59C176;
}
.route .route__input03:checked + .route__tab {
  background: #3ACBC4;
}
.route__tab {
  width: 19.5rem;
  height: 7.5rem;
  border-radius: 3rem 3rem 0 0;
  background: #D1D1D1;
  color: #fff;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: color ease 0.3s, background ease 0.3s;
  transform: translateX(50px);
  z-index: 2;
  position: relative;
  font-weight: bold;
  cursor: pointer;
}
.route__tab01:hover {
  background: #FF9191;
}
.route__tab02:hover {
  background: #59C176;
}
.route__tab03:hover {
  background: #3ACBC4;
}
.route #route01:checked ~ #route_content01,
.route #route02:checked ~ #route_content02,
.route #route03:checked ~ #route_content03 {
  display: block;
}
.route__content {
  display: none;
  clear: both;
  border-radius: 5rem;
  background: #f8f8f8;
  padding: 10rem 6.5rem;
  position: relative;
  z-index: 1;
}
.route__content::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -30px;
  background: no-repeat url(../img/route_acc01.svg) center center/contain;
  width: 60px;
  height: 170px;
}
.route__stepWrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .route__stepWrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .route__stepWrap {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.route__stepImg {
  position: relative;
  z-index: 1;
}
.route__stepImg img {
  border-radius: 3rem;
}
.route__stepNumber {
  text-align: center;
  display: block;
  background: #FF9191;
  color: #fff;
  width: 3.3rem;
  height: 3.3rem;
  line-height: 3.3rem;
  border-radius: 1rem;
  margin: -1.6rem auto 0;
  position: relative;
  z-index: 2;
  font-weight: 600;
}
.route__stepNumber--green {
  background: #59C176;
}
.route__stepNumber--blue {
  background: #3ACBC4;
}
.route__stepText {
  margin-top: 2.5rem;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .route__stepText {
    margin-top: 1.5rem;
  }
}
.route__stepText span {
  font-weight: 600;
}
.route__car {
  position: absolute;
  top: 31px;
  right: 200px;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .route__car {
    display: none;
  }
}

/* =============================================
  route02
============================================= */
.route02 {
  margin-top: 9rem;
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .route02 {
    display: block;
  }
}
.route02::after {
  content: "";
  position: absolute;
  bottom: -13rem;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 92px;
  background: no-repeat url(../img/route_acc01.svg) center center/contain;
}
.route02__item {
  margin-bottom: 1.2rem;
  position: relative;
}
.route02__item:nth-child(1)::before {
  content: "";
  position: absolute;
  top: -31px;
  right: 0px;
  background: no-repeat url(../img/route_acc02.svg) center center/contain;
  width: 86px;
  height: 31px;
  z-index: 1;
}
.route02__item:nth-child(2) .route02__itemTitle {
  background: #59C176;
}
.route02__item:nth-child(3) .route02__itemTitle {
  background: #3ACBC4;
}
.route02__item:last-child {
  margin-bottom: 0;
}
.route02__itemTitle {
  width: 100%;
  height: 5.4rem;
  line-height: 5.4rem;
  border-radius: 2.77rem;
  background: #FF9191;
  cursor: pointer;
  padding: 0 3rem 0 1.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  z-index: 2;
  position: relative;
}
.route02__itemTitle span {
  font-size: 1.2rem;
}
.route02__itemTitle::before, .route02__itemTitle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  background-color: #fff;
  height: 2px;
  width: 12px;
  transition: transform ease 0.3s;
}
.route02__itemTitle::after {
  transform: rotate(-90deg);
}
.route02__itemTitle.is-show::after {
  transform: rotate(0deg);
}
.route02__itemBody {
  background-color: #F8F8F8;
  border-radius: 0 0 3rem 3rem;
  padding: 8rem 4rem 5rem;
  display: none;
  transform: translateY(-3rem);
}
.route02__itemBody.is-show {
  display: block;
}

/* =============================================
  gallery
============================================= */
.gallery {
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .gallery {
    margin-top: 4rem;
  }
}
.gallery__wrap {
  position: relative;
}
@media screen and (max-width: 768px) {
  .gallery__wrap {
    max-width: 235px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .gallery__wrap .swiper-button-prev,
  .gallery__wrap .swiper-button-next {
    top: 50%;
    transform: translateY(-10px);
  }
}
.gallery__wrap .swiper-button-prev::after,
.gallery__wrap .swiper-button-next::after {
  color: #333;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .gallery__wrap .swiper-button-prev::after,
  .gallery__wrap .swiper-button-next::after {
    font-size: 1.8rem;
  }
}
.gallery__wrap .swiper-button-prev {
  left: -6rem;
}
@media screen and (max-width: 768px) {
  .gallery__wrap .swiper-button-prev {
    left: -4rem;
  }
}
.gallery__wrap .swiper-button-next {
  right: -6rem;
}
@media screen and (max-width: 768px) {
  .gallery__wrap .swiper-button-next {
    right: -4rem;
  }
}
.gallery__slide img {
  border-radius: 3rem;
}
.gallery__slide p {
  margin-top: 1.8rem;
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .gallery__slide p {
    font-size: 1.3rem;
    margin-top: 1.5rem;
  }
}

/* =============================================
  footer
============================================= */
.footer {
  background: #667266;
  padding: 6rem 0 3.5rem;
}
.footer--top {
  position: relative;
}
.footer--top::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 166px;
  background: no-repeat url(../img/footer_acc.svg) center center/contain;
  right: 150px;
  top: -130px;
}
@media screen and (max-width: 768px) {
  .footer--top::after {
    right: 50%;
    transform: translateX(50%);
    width: 34px;
    height: 101px;
    top: -75px;
  }
}
.footer__inner {
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 4rem;
  }
}
.footer__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__flex {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }
}
.footer__logo {
  transition: opacity ease 0.3s;
}
.footer__logo:hover {
  opacity: 0.7;
}
.footer__copyright {
  margin-top: 7.5rem;
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 5rem;
    text-align: center;
  }
}
.footer__nav ul {
  display: flex;
  gap: 3.5rem;
}
@media screen and (max-width: 768px) {
  .footer__nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.footer__nav ul li a {
  color: #fff;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__nav ul li a {
    font-size: 1.4rem;
  }
}
.footer__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  height: 1px;
  width: 100%;
  background: #fff;
  transition: transform ease 0.3s;
  transform-origin: top right;
}
.footer__nav ul li a:hover::after {
  transform-origin: top left;
  transform: scaleX(100%);
}
.footer__btn {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .footer__btn {
    margin-top: 4rem;
  }
}
.footer__btn a {
  transition: opacity ease 0.3s;
}
.footer__btn a:hover {
  opacity: 0.7;
}

/* =============================================
  news
============================================= */
.news {
  margin: 0 auto;
  max-width: 850px;
}
.news__item {
  background: #fff;
  border-radius: 10rem;
  margin-bottom: 3.4rem;
  height: 10rem;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 768px) {
  .news__item {
    border-radius: 1rem;
    height: auto;
    padding: 4rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.news__item:last-child {
  margin-bottom: 0;
}
.news__itemLink {
  position: relative;
  display: block;
  padding-right: 60px;
  transition: color ease 0.3s;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .news__itemLink {
    grid-column: 1/3;
    padding-right: 0;
    padding-bottom: 2.5rem;
  }
}
.news__itemLink::before, .news__itemLink::after {
  content: "";
  position: absolute;
  right: 0;
  background: #404040;
  height: 1px;
  transition: right ease 0.3s, background ease 0.3s;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .news__itemLink::before, .news__itemLink::after {
    top: auto;
    bottom: 0;
  }
}
.news__itemLink::before {
  width: 7px;
  transform: rotate(45deg);
  transform-origin: bottom right;
}
.news__itemLink::after {
  width: 35px;
}
.news__itemLink:hover {
  color: var(--color-primary);
}
.news__itemLink:hover::before, .news__itemLink:hover::after {
  background: var(--color-primary);
  right: -10px;
}
.news__itemCategory {
  color: #86CB7D;
  position: relative;
  padding-left: 1.7rem;
  word-break: keep-all;
}
.news__itemCategory::before {
  content: "";
  height: 9px;
  width: 9px;
  background: #86CB7D;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
.news__itemDate {
  font-size: 1.5rem;
  color: #aaa;
}
@media screen and (max-width: 768px) {
  .news__itemDate {
    text-align: right;
  }
}
.news__itemTitle {
  font-weight: 400;
}
.news__btn {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .news__btn {
    margin-top: 4rem;
  }
}
.news__categories {
  margin-bottom: 4rem;
}
.news__categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
@media screen and (max-width: 768px) {
  .news__categories ul {
    gap: 1.5rem 1rem;
  }
}
.news__categories ul li a {
  border: 1px solid #2B3B2F;
  display: inline-block;
  padding: 0 1.5rem;
  height: 3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  color: #2B3B2F;
  transition: color ease 0.3s, background-color ease 0.3s;
}
@media screen and (max-width: 768px) {
  .news__categories ul li a {
    font-size: 1.4rem;
    padding: 0 1rem;
    height: 3rem;
  }
}
.news__categories ul li a:hover {
  background: #2B3B2F;
  color: #fff;
}
.news__categories ul li a.is-current {
  background: #2B3B2F;
  color: #fff;
}

/* =============================================
  page
============================================= */
.page {
  background-color: #fff;
}
.page__head {
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .page__head {
    padding-top: 3.8rem;
  }
}
.page__headInner {
  max-width: calc(850px + 8rem);
  position: relative;
}
.page__headInner::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 72px;
  background: no-repeat url(../img/news_acc02.svg) center center/contain;
  top: 0;
  left: 4.5rem;
}
@media screen and (max-width: 768px) {
  .page__headInner::before {
    content: none;
  }
}
.page__headInner::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 150px;
  background: no-repeat url(../img/news_acc01.svg) center center/contain;
  bottom: -5.5rem;
  right: 5rem;
}
@media screen and (max-width: 768px) {
  .page__headInner::after {
    content: none;
  }
}
.page__body {
  padding: 12rem 0;
  background-color: #F5F5F4;
  border-radius: 5rem 5rem 0 0;
}
@media screen and (max-width: 768px) {
  .page__body {
    padding: 7rem 0;
  }
}

/* =============================================
  entry
============================================= */
.entry {
  max-width: 850px;
  margin: 0 auto;
}
.entry__head {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .entry__head {
    gap: 1.8rem;
  }
}
.entry__category {
  color: #59C176;
  position: relative;
  padding-left: 1.5rem;
}
.entry__category::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: 9px;
  left: 0;
  background-color: #59C176;
  border-radius: 50%;
}
.entry__date {
  font-size: 1.5rem;
  color: #aaa;
}
.entry__title {
  margin-top: 3.3rem;
  font-size: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #B1B1B1;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .entry__title {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
}
.entry__body h2, .entry__body h3, .entry__body h4, .entry__body h5, .entry__body h6, .entry__body p, .entry__body ul, .entry__body ol, .entry__body dl, .entry__body img, .entry__body video, .entry__body iframe {
  margin-top: 3rem;
}
.entry__body h2, .entry__body h3, .entry__body h4, .entry__body h5, .entry__body h6 {
  margin-bottom: -2rem;
  font-weight: 500;
}
.entry__body p, .entry__body ul, .entry__body ol {
  font-size: 1.4rem;
  line-height: 1.8;
}
.entry__body a {
  color: #3079D6;
  transition: opacity ease 0.3s;
}
.entry__body a:hover {
  opacity: 0.7;
}

/* =============================================
  404
============================================= */
.nf404__text {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .nf404__text {
    font-size: 1.6rem;
  }
}
.nf404__btn {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .nf404__btn {
    margin-top: 4rem;
  }
}

/* =============================================
  animation
============================================= */
@keyframes carAnim {
  0% {
    right: 0;
    opacity: 0;
  }
  5% {
    opacity: 1;
    transform: scale(1.03) rotate(0.3deg);
  }
  10% {
    transform: scale(1) rotate(-0.3deg);
  }
  15% {
    transform: scale(1.03) rotate(0.3deg);
  }
  20% {
    transform: scale(1) rotate(-0.3deg);
  }
  25% {
    transform: scale(1.03) rotate(0.3deg);
  }
  30% {
    transform: scale(1) rotate(-0.3deg);
  }
  35% {
    transform: scale(1.03) rotate(0.3deg);
  }
  40% {
    transform: scale(1) rotate(-0.3deg);
  }
  45% {
    transform: scale(1.03) rotate(0.3deg);
  }
  50% {
    transform: scale(1) rotate(-0.3deg);
  }
  55% {
    transform: scale(1.03) rotate(0.3deg);
  }
  60% {
    transform: scale(1) rotate(-0.3deg);
  }
  65% {
    transform: scale(1.03) rotate(0.3deg);
  }
  70% {
    transform: scale(1) rotate(-0.3deg);
  }
  75% {
    transform: scale(1.03) rotate(0.3deg);
  }
  80% {
    right: 500px;
  }
  100% {
    right: 500px;
  }
}
@keyframes tireAnim {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-4000deg);
  }
}