@charset "UTF-8";
html {
  font-size: 10px;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 0.933vw;
  }
}
@media screen and (max-width: 540px) {
  html {
    font-size: 1.333vw;
  }
}
:root {
  --var-side-padding: 60px;
  --var-side-padding-sp: 4rem;
  --var-translate-val: 15px;
  --var-translate-negative-val: -15px;
  --var-animation-timing-function: cubic-bezier(.18,.52,.33,1);
  --var-opacity-timing-function: cubic-bezier(.2,.15,.38,.87);
  --var-size-correct-val: 0.7;
}

@media screen and (max-width: 1024px) {
  body,
  html {
    min-width: 0;
  }
}

body {
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  font-stretch: 95%;
  line-height: 2;
  color: #333;
  font-weight: 400;
  word-break: break-all;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 2.8rem;
  }
}
body.open-menu, body.modal {
  position: fixed;
  width: 100%;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.main{
  padding-bottom: calc(13rem * var(--var-size-correct-val));
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .main{
    padding-bottom: 5.5rem;
  }
}

.header {
  width: 100%;
  height: 13vw;
  max-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .header {
    width: 100%;
    height: 15rem;
  }
}
.headerMask{
  position: absolute;
  z-index: 0;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 5.4rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .headerMask{
    height: 1.8rem;
  }
}
.headerMaskImg{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .headerMaskImg{
    object-fit: initial;
  }
}

.header__logo {
  width: calc(15.104vw * 0.8);
  max-width: 290px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 15rem;
    max-width: 150px;
  }
}
.header__logo img {
  width: 100%;
}

.header__nav {
  position: fixed;
  width: 100%;
  max-width: calc(850px * var(--var-size-correct-val));
  max-height: 100vh;
  top: 0;
  right: 0;
  z-index: 90;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #116739;
  transition: opacity 0.2s 0s var(--var-opacity-timing-function), transform 0s 0.3s;
  -ms-overflow-style: none;
  scrollbar-width: none;
  opacity: 0;
  transform: translateX(100%);
}
.header__nav::-webkit-scrollbar {
  display: none;
}
.is-drawerActive .header__nav {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.2s 0s var(--var-opacity-timing-function), transform 0s 0s;
}

.header__nav__inner{
  padding: calc(5rem * var(--var-size-correct-val));
}
@media screen and (max-width: 1024px) {
  .header__nav__inner{
    padding: 7.8rem 5rem 5rem;
  }
}
.logoWhite{
  padding-bottom: 2.8rem;
  border-bottom: 1px solid #fff;
}
.logoWhite img{
  width: calc(21.9rem * var(--var-size-correct-val));
}
@media screen and (max-width: 1024px) {
  .logoWhite{
    padding-bottom: 4.4rem;
    display: flex;
    justify-content: center;
  }
  .logoWhite img{
    width: 18rem;
  }
}
.header__nav__list{
  padding: calc(4.4rem * var(--var-size-correct-val)) 0 0;
  display: flex;
  flex-direction: column;
}
.header__nav__item{
  width: 100%;
  height: calc(9rem * var(--var-size-correct-val));
  border-bottom: 1px solid #fff;
}
.header__nav__link{
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 0 calc(3.0rem * var(--var-size-correct-val));
  background-color: rgba(65,133,97,0);
  color: #fff;
  line-height: 1;
  font-size: calc(3rem * var(--var-size-correct-val));
  position: relative;
}
@media (hover: hover) {
  .header__nav__link:hover{
    background-color: rgba(65,133,97,0.7);
  }
}
.header__nav__link::after{
  content: "";
  display: block;
  width: calc(2rem * var(--var-size-correct-val));
  height: calc(3rem * var(--var-size-correct-val));
  background-image: url(../img/common/arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: calc(3.0rem * var(--var-size-correct-val));
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .header__nav__list{
    padding: 4.4rem 0 0;
  }
  .header__nav__item{
    height: 10rem;
  }
  .header__nav__link{
    padding: 0 3rem;
    font-size: 3rem;
  }
}

.header__nav__banner{
  margin-top: calc(10rem * var(--var-size-correct-val));
}
@media (hover: hover) {
  .header__nav__bannerLink{
    opacity: 1;
    transition: opacity 0.3s var(--var-opacity-timing-function);
  }
  .header__nav__bannerLink:hover{
    opacity: 0.8;
  }
}

.header__nav__bg{
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}
.is-drawerActive .header__nav__bg{
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s var(--var-opacity-timing-function);
}

.p-hamburger {
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 6.8rem;
  right: 6.8rem;
  z-index: 100;
  width: 8rem;
  height: 8rem;
  background-color: transparent;
  margin: auto;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem 0;
  background-color: #fff;
  border: 0.3rem solid #333333;
  border-radius: 100%;
}
@media screen and (max-width: 1920px) {
  .p-hamburger {
    top: 2.542vw;
  }
}
@media screen and (max-width: 1024px) {
  .p-hamburger {
    top: 2.0rem;
    right: 2.0rem;
    width: 9.5rem;
    height: 9.5rem;
    border-width: 2px;
    gap: 1.0rem 0;
  }
}

.p-hamburger__line{
  display: block;
  width: 3.8rem;
  height: 1.6rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-hamburger__line{
    width: 5.5rem;
    height: 2.0rem;
  }
}
.p-hamburger__line .line {
  display: block;
  width: 100%;
  height: 0.4rem;
  background-color: #333;
  position: absolute;
  left: 0;
  transition: all 0.5s ease-out;
}
.p-hamburger__line .line:nth-child(1) {
  top: 0px;
  animation: menu07-bar01 0.5s forwards;
}
.p-hamburger__line .line:nth-child(2) {
  top: 1.2rem;
  animation: menu07-bar03 0.5s forwards;
}
.p-hamburger[aria-expanded=true] .p-hamburger__line .line:nth-child(1) {
  animation: active-menu07-bar01 0.5s forwards;
}
.p-hamburger[aria-expanded=true] .p-hamburger__line .line:nth-child(2) {
  animation: active-menu07-bar03 0.5s forwards;
}
@media screen and (max-width: 1024px) {
  .p-hamburger__line .line:nth-child(1) {
    animation: sp-menu07-bar01 0.5s forwards;
  }
  .p-hamburger__line .line:nth-child(2) {
    top: 1.6rem;
    animation: sp-menu07-bar03 0.5s forwards;
  }
  .p-hamburger[aria-expanded=true] .p-hamburger__line .line:nth-child(1) {
    animation: sp-active-menu07-bar01 0.5s forwards;
  }
  .p-hamburger[aria-expanded=true] .p-hamburger__line .line:nth-child(2) {
    animation: sp-active-menu07-bar03 0.5s forwards;
  }
}

.p-hamburger__text{
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .p-hamburger__text{
    letter-spacing: 0;
    font-size: 2.0rem;
  }
}

.is-drawerActive .p-hamburger{
  right: calc(5rem * var(--var-size-correct-val));
  background-color: #116739;
  border: 0.3rem solid #fff;
}
.is-drawerActive .p-hamburger__line .line{
  background-color: #fff;
}
.is-drawerActive .p-hamburger__text{
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .is-drawerActive .p-hamburger{
    top: 2rem;
    right: 2rem;
  }
}

@keyframes menu07-bar01 {
  0% {
    transform: translateY(0.6rem) rotate(15deg);
  }
  30% {
    transform: translateY(0.6rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu07-bar03 {
  0% {
    transform: translateY(-0.6rem) rotate(-15deg);
  }
  30% {
    transform: translateY(-0.6rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(0.6rem) rotate(0);
  }
  100% {
    transform: translateY(0.6rem) rotate(15deg);
  }
}
@keyframes active-menu07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(-0.6rem) rotate(0);
  }
  100% {
    transform: translateY(-0.6rem) rotate(-15deg);
  }
}

@keyframes sp-menu07-bar01 {
  0% {
    transform: translateY(0.8rem) rotate(15deg);
  }
  30% {
    transform: translateY(0.8rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes sp-menu07-bar03 {
  0% {
    transform: translateY(-0.8rem) rotate(-15deg);
  }
  30% {
    transform: translateY(-0.8rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes sp-active-menu07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(0.8rem) rotate(0);
  }
  100% {
    transform: translateY(0.8rem) rotate(15deg);
  }
}
@keyframes sp-active-menu07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(-0.8rem) rotate(0);
  }
  100% {
    transform: translateY(-0.8rem) rotate(-15deg);
  }
}

.footer{
  background-color: #333;
  text-align: center;
  color: #fff;
  padding: 2.8rem 0;
}
.footer .copyright{
  font-size: 1.4rem;
}

/* banner */
.bannerBox01{
  margin-top: calc(11.5rem * var(--var-size-correct-val));
}
@media screen and (max-width: 1024px) {
  .bannerBox01{
    margin-top: 16.0rem;
  }
}

@media (hover: hover) {
  .bannerBox01_link{
    opacity: 1;
    transition: opacity 0.3s var(--var-opacity-timing-function);
  }
  .bannerBox01_link:hover{
    opacity: 0.8;
  }
}

/* shop data */
.shopDataBlock{
  margin: calc(24rem * var(--var-size-correct-val)) auto 0;
  display: flex;
  justify-content: center;
}
.shopDataBlock.twoShopData{
  gap: 0 2rem;
}
.shopDataBlock_inner{
  background-color: #f3f6f5;
  padding: calc(4.5rem * var(--var-size-correct-val)) calc(9rem * var(--var-size-correct-val));
  display: inline-block;
}
.shopDataBlock.twoShopData .shopDataBlock_inner{
  width: calc((100% - 2rem) / 2);
  padding: calc(4.5rem * var(--var-size-correct-val)) calc(7.5rem * var(--var-size-correct-val));
}
.shopName{
  font-size: 3rem;
  line-height: 1.5;
}
.shopDataBlock.twoShopData .shopName{
  font-size: 2.4rem;
}
.shopData{
  margin-top: calc(2rem * var(--var-size-correct-val));
  line-height: 1.5;
}
.shopData_item{
  font-size: 2rem;
  text-align-last: justify;
  text-justify: inter-character;
  font-weight: 400;
  padding-bottom: 0.5em;
  width: 9rem;
}
.shopDataBlock.twoShopData .shopData_item{
  font-size: 1.6rem;
  width: 7rem;
}
.shopData_text{
  padding-left: calc(1rem * var(--var-size-correct-val));
  font-size: 2rem;
}
.shopDataBlock.twoShopData .shopData_text{
  font-size: 1.6rem;
}
.shopData_ps{
  margin-top: 1rem;
  line-height: 1.75;
}
.shopName .small{
  font-size: 70%;
}
@media screen and (max-width: 1024px) {
  .shopDataBlock{
    margin: 13rem auto 0;
  }
  .shopDataBlock.twoShopData{
    flex-direction: column;
    gap: 4rem 0;
  }
  .shopDataBlock.shop02{
    margin-top: 17rem;
  }
  .shopDataBlock_inner{
    padding: 5rem 5rem;
    max-width: 60rem;
    width: 100%;
    margin: 0 auto;
  }
  .shopDataBlock.twoShopData .shopDataBlock_inner{
    width: 84%;
    max-width: 480px;
    margin: 0 auto;
    padding: 5rem 5rem;
  }
  .shopDataBlock.twoShopData .shopName,
  .shopName{
    font-size: 2.5rem;
  }
  .shopData{
    margin-top: 3rem;
    line-height: 1.3;
  }
  .shopDataBlock.twoShopData .shopData_item{
    font-size: 2rem;
    width: 10rem;
  }
    .shopData_item{
    font-size: 2rem;
    width: 10.8rem;
    position: relative;
  }
  .shopData_item::after{
    content: "";
    width: 1px;
    height: 1em;
    margin-left: 0.8rem;
    background-color: #333;
  }
  .shopDataBlock.twoShopData .shopData_text{
    font-size: 2rem;
  }
  .shopData_text{
    padding-left: 0.5rem;
    font-size: 2rem;
    display: inline;
  }
  .shopData_ps{
    font-size: 1.8rem;
  }
}

.footCredit{
  margin-top: calc(24.5rem * var(--var-size-correct-val));
}
.footCredit_text{
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .footCredit{
    margin-top: 10.5rem;
  }
}

/* page nav */
.pageNav{
  margin-top: calc(2rem * var(--var-size-correct-val));
}
.pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 calc(10rem * var(--var-size-correct-val));
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  padding: calc(9rem * var(--var-size-correct-val)) 0;
}
.link-prev,
.link-next{
  fill: none;
  stroke: #333;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3px;
  fill-rule: evenodd;

}
.pagination_item01{
  width: calc(20.2rem * var(--var-size-correct-val));
}
.pagination_link02{
  font-size: 2.5rem;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .pagination{
    gap: 0 5rem;
    padding: 4.5rem 0;
  }
  .pagination_item01{
    width: 9.5rem;
  }
  .pagination_link02{
    font-size: 2.4rem;
  }
  .link-prev,
  .link-next{
    stroke-width: 6px;
  }
}

.relatedPosts_wrapper{
  overflow: hidden;
  padding: 0 5rem;
}
.relatedTitle{
  text-align: center;
  margin-top: calc(16rem * var(--var-size-correct-val));
  font-size: 3.2rem;
  line-height: 1;
}
.relatedPosts{
  display: flex;
  justify-content: center;
  gap: 0 3rem;
  margin-top: 5rem;
}
.relatedPosts_item{
  width: calc((100% - 6rem) / 3);
  visibility: hidden;
}
.relatedPosts_title{
  margin-top: calc(2.5rem * var(--var-size-correct-val));
  line-height: 1.3;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0;
}
.relatedPosts_location{
  margin-top: calc(1rem * var(--var-size-correct-val));
  line-height: 1.3;
  font-size: 2.0rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .relatedTitle{
    margin-top: 7rem;
    font-size: 2.5rem;
  }
  .relatedPosts{
    gap: 0 2rem;
    margin-top: 2.5rem;
  }
  .relatedPosts_item{
    width: 25rem;
  }
  .relatedPosts_title{
    margin-top: 1.5rem;
    font-size: 2.2rem;
  }
  .relatedPosts_location{
    margin-top: 1rem;
    font-size: 2.0rem;
  }
}

.relatedPosts_item.item01{
  order: 1;
  visibility: visible;
}
.relatedPosts_item.item02{
  order: 2;
  visibility: visible;
}
.relatedPosts_item.item03{
  order: 3;
  visibility: visible;
}
.relatedPosts_item.item04{
  order: 4;
  display: none;
}
.relatedPosts_item.item05{
  order: 5;
  display: none;
}

.relatedPosts_title{
  margin-top: calc(2.5rem * var(--var-size-correct-val));
  line-height: 1.3;
  font-size: calc(3rem * var(--var-size-correct-val));
  font-weight: 500;
  letter-spacing: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.relatedPosts_location{
  margin-top: calc(1rem * var(--var-size-correct-val));
  line-height: 1.3;
  font-size: calc(2.5rem * var(--var-size-correct-val));
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .relatedPosts_wrapper{
    padding: 3rem 7rem;
  }
  .relatedTitle{
    font-size: 2.5rem;
  }
  .relatedPosts{
    gap: 0 2rem;
    margin-top: 3rem;
  }
  .relatedPosts_item{
    width: calc((100% - 2rem) / 2);
  }
  .relatedPosts_item.item03{
    display: none;
  }
  .relatedPosts_title{
    margin-top: 1.5rem;
    font-size: 2.2rem;
  }
  .relatedPosts_location{
    margin-top: 1rem;
    font-size: 2.0rem;
  }
}
