@charset "UTF-8";
/* 共通 */
*{
  padding:0;
  margin:0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
img,
video{
  width:100%;
  vertical-align: bottom;
}
canvas{
  width: auto;
  height: auto;
  vertical-align:bottom;
}
ul,
li{
  list-style-type: none;
}
a{
  text-decoration: none;
  color:#231815;
}
.sp{
  display: none;
}
.relative{
  position: relative;
}
.absolute{
  position: absolute;
  top: 0;
  left: 0;
}
.under1024{
  display: none;
}
@media (max-width:1320px){
  *{
      font-size:15px;
  }
}
@media (max-width:1024px){
  .under1024{
    display: block;
  }
}
@media (max-width:768px){
  .pc{
      display:none;
  }
  .sp{
      display:block;
  }
  *{
      font-size:14px;
  }
}

/* header */
.moveHeader{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 997;
  transition: background-color 0.5s ease;
  background-color: transparent; /* 初期状態 */
}
.moveHeader.scrolled{
  background-color: rgba(73,79,63,0.75); /* スクロール後の色 */
  backdrop-filter: blur(6px); /* ぼかし効果を足したい場合（任意） */
  -webkit-backdrop-filter: blur(6px); /* Safari用 */
}
header{
  padding: 5px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
header>.headerWrap{
  width: 98%;
  margin:0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header>.headerWrap>h1{
  max-width: 280px;
  width:30%;
}
header>.headerWrap>h1>a{
  transition: 0.5s all;
}
header>.headerWrap>h1>a:hover,
header>.headerWrap>h1>a:active{
  opacity: 0.5;
  transition: 0.5s all;
}
header>.headerWrap>.h_btnBox{
  max-width: 800px;
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header>.headerWrap>.h_btnBox>ul.firstBox{
  max-width:200px;
  width: 38%;
}
header>.headerWrap>.h_btnBox>ul.firstBox>li>a{
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7em;
  color: #fff;
  transition: 0.5s all;
}
header>.headerWrap>.h_btnBox>ul.firstBox>li>a:hover,
header>.headerWrap>.h_btnBox>ul.firstBox>li>a:active{
  opacity: 0.5;
  transition: 0.5s all;
}
header>.headerWrap>.h_btnBox>ul.secondBox{
  max-width: 600px;
  width: 70%;
  display: flex;
  justify-content: space-between;
}
header>.headerWrap>.h_btnBox>ul.secondBox>li{
  width: 33.33%;
}
header>.headerWrap>.h_btnBox>ul.secondBox>li>a{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7em;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  padding: 0.5em 0;
  box-sizing: border-box;
  transition: 0.5s all;
}
header>.headerWrap>.h_btnBox>ul.secondBox>li>a:hover,
header>.headerWrap>.h_btnBox>ul.secondBox>li>a:active{
  opacity: 0.5;
  transition: 0.5s all;
}
header>.headerWrap>.h_btnBox>ul.secondBox>li:nth-child(1)>a{
  color: #d7cdba;
  background-color: #494f3f;
}
header>.headerWrap>.h_btnBox>ul.secondBox>li:nth-child(2)>a{
  color: #494f3f;
  background-color: #d7cdba;
}
header>.headerWrap>.h_btnBox>ul.secondBox>li:nth-child(3)>a{
  color: #333435;
  background-color: #e8e8e6;
}
.shineBtn{
  position: relative;
  overflow: hidden;
}
.shineBtn::after{
  content: '';
  position: absolute;
  top: 0;
  left: -75%;        /* ボタン左外から開始 */
  width: 100%;
  height: 100%;
  background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shiny {
  0% {
      transform: scale(0) rotate(45deg);
      opacity: 0;
  }
  80% {
      transform: scale(0) rotate(45deg);
      opacity: 0.5;
  }
  81% {
      transform: scale(4) rotate(45deg);
      opacity: 1;
  }
  100% {
      transform: scale(50) rotate(45deg);
      opacity: 0;
  }
}
@media (max-width:1024px){
  header{
    padding: 0px 0;
  }
  header>.headerWrap{
      height: 66px;
  }
  header>.headerWrap>.h_btnBox{
      display: none;
  }
}
@media (max-width:768px){
  header>.headerWrap>h1{
      max-width: 200px;
      width:50%;
  }
}

/* nav */
.navWrap{
  max-width:1320px;
  width: 95%;
  margin: 0 auto;
}
.mainNav{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.mainNav>li{
  width: 11.11%;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}
.mainNav>li:nth-child(1){
  border-left: 1px solid #fff;
}
.mainNav>li>a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;            
}
.mainNav>li>a>span:nth-child(1){
  font-family: "Oswald", sans-serif;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  color: #fff;
}
.mainNav>li>a>span:nth-child(2){
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6em;
  letter-spacing: 0.1em;
  color: #fff;
}
.subNav{
  display: none;
}
.mainNav>li>a:hover,
.mainNav>li>a:active,
.subNav>li>a:hover,
.subNav>li>a:active{ 
  opacity: 0.5;
  transition: 0.5s all;
}
.noEvent{
  pointer-events: none;
  opacity: 0.5;
}
@media (max-width:1024px){
  nav{
      position: fixed;
      z-index: 998;
      top: 0;
      right: -768px;
      max-width: 768px;
      width: 100%;
      height: 100vh;                    
      background-color: #596350;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.5s all;
  }
  nav.open{
      right: 0;
      transition: 0.5s all;
  }
  .mainNav{
      margin-bottom: 30px;
  }
  .mainNav>li{
      width: 48%;
      margin-bottom: 10px;
      border-right: 1px solid #fff;
      box-sizing: border-box;
  }
  .mainNav>li:last-child{
      margin-bottom: 0px;
  }
  .mainNav>li:nth-child(odd){
      border-left: 1px solid #fff;
  }
  .mainNav>li>a>span:nth-child(1){
      font-size: 1em;
  }
  .mainNav>li>a>span:nth-child(2){
      font-size: 0.7em;
  }
  .subNav{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }
  .subNav>li{
      width: 48%;
      margin-bottom: 10px;
  }
  .subNav>li>a{
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 0.9em;
      font-weight: 600;
      line-height: 1.2;
      text-align: center;
      padding: 0.75em 0;
      box-sizing: border-box;
  }
  .subNav>li:nth-child(1)>a{
      color: #d7cdba;
      background-color: #494f3f;
  }
  .subNav>li:nth-child(2)>a{
      color: #494f3f;
      background-color: #d7cdba;
  }
  .subNav>li:nth-child(3)>a{
      color: #333435;
      background-color: #e8e8e6;
  }
}

/* nav_outerWrap */
.nav_outerWrap{
  position: fixed;
  top: 0;
  right: 0%;
  z-index: 997;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.25);
  display: none;
}
.nav_outerWrap.open{
  display: none;
}
@media (max-width:1024px){
  .nav_outerWrap.open{
      display: block;
  }
}

/* menuTrigger */
.menuTrigger{
  display: none;
}
@media (max-width:1024px){
  .menuTrigger{
      position: fixed;
      top: 0;
      right: 0;
      z-index: 999;
      width: 70px;
      height: 66px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #596350;
  }
  .menuTrigger>span{
      position: absolute;
      width: 80%;
      height: 2px;
      background-color: #d7cdba;
      transition: 0.5s all;
  }
  .menuTrigger>span:nth-child(1){
      transform: translateY(-10px);
  }
  .menuTrigger>span:nth-child(2){
      transform: translateY(0px);
  }
  .menuTrigger>span:nth-child(3){
      transform: translateY(10px);
  }
  .menuTrigger.open>span:nth-child(1){
      transform: rotate(15deg);
  }
  .menuTrigger.open>span:nth-child(2){
      opacity: 0;
  }
  .menuTrigger.open>span:nth-child(3){
      transform: rotate(-15deg);
  }
}

/* limitedNotice */
.limitedNotice{
  padding-bottom: 80px;
}
.limitedNotice_wrap{
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;            
}
.pageNotice_wrap{
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  text-align: center;          
}
.limitedNotice_wrap>h2{
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  letter-spacing: 0.25em;
  font-weight: 500;
  border: 1px solid #000;
  padding: 0.5em 1em;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.limitedNotice_wrap>p,
.pageNotice_wrap>p{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75em;
  line-height: 1.8;
  font-weight: 400;
}
@media (max-width:768px){
  .limitedNotice{
      padding-bottom: 50px;
  }
  .limitedNotice_wrap>p,
  .pageNotice_wrap>p{
      text-align: left;
  }
  .over768{
      display: none;
  }
}
@media (max-width:500px){
  .limitedNotice_wrap>h2{
      font-size: 0.9em;
  }          
  .limitedNotice_wrap>p,
  .pageNotice_wrap>p{
      font-size: 0.65em;
  }
}
@media (max-width:430px){
  .limitedNotice_wrap>h2{
      font-size: 0.8em;
  } 
  .limitedNotice_wrap>p,
  .pageNotice_wrap>p{
      font-size: 0.55em;
  }   
}

/* footer */
footer{
  background-color: #363838;
  padding-top: 50px;            
}
.footerWrap{
  max-width: 1320px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
  position: relative;           
}
.footerWrap>h2{
  text-align: center;
  margin-bottom: 20px;
}
.footerWrap>h2>a{
  max-width: 180px;
  width: 90%;
  display: inline-block;
  transition: 0.5s all;
}
.footerWrap>h2>a:hover,
.footerWrap>h2>a:active{
  opacity: 0.5;
  transition: 0.5s all;
}
.footerWrap>.contentRow{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.footerWrap>.contentRow>.contentBox:nth-child(1){
  margin-right: 50px;
}
.footerWrap>.contentRow>.contentBox>.contentBox_inner>h3{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
.footerWrap>.contentRow>.contentBox>.contentBox_inner>p{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7em;
  line-height: 1.8;
  color: #fff;
}
.footerWrap>.contactBox{
  text-align: center;
}
.footerWrap>.contactBox>h3{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.footerWrap>.contactBox>.contentRow{
  display: flex;            
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.footerWrap>.contactBox>.contentRow>h4{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8em;
  line-height: 1.6;
  font-weight: 400;
  color: #fff;
  text-align: left;
  margin-right: 30px;
}
.footerWrap>.contactBox>.contentRow>p{
  max-width:350px;
  width: 70%;
}
.footerWrap>.contactBox>.contentRow>p>a{
  transition: 0.5s all;
}
.footerWrap>.contactBox>.contentRow>p>a:hover,
.footerWrap>.contactBox>.contentRow>p>a:active{
  opacity: 0.5;
  transition: 0.5s all;
}
.footerWrap>.contactBox>p{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8em;
  color: #fff;
}
.snsBox{
  position: absolute;
  top: 0px;
  right: 0px;
  max-width: 40px;
  width: 15%;
}
.snsBox>ul>li>a{
  transition: 0.5s all;
}
.snsBox>ul>li>a:hover,
.snsBox>ul>li>a:active{
  opacity: 0.5;
  transition: 0.5s all;
}
.smallWrap{
  padding-bottom: 10px;
  text-align: center;
}
.smallWrap>small{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.65em;
  color: #fff;
}
@media (max-width:1024px){
  .footerWrap>.contentRow{
      flex-direction: column;
      align-items: center;
  }
  .footerWrap>.contentRow>.contentBox{
      width: 100%;
  }
  .footerWrap>.contentRow>.contentBox:nth-child(1){
      margin-right: 0px;
  }
  .footerWrap>.contentRow>.contentBox>.contentBox_inner{
      text-align: center;
  }
  .footerWrap>.contentRow>.contentBox.sellerInfo:nth-child(1){
      margin-bottom: 20px;
  }
  .footerWrap>.contactBox>.contentRow{
      flex-direction: column;
  }
  .footerWrap>.contactBox>.contentRow>h4{
      width: 100%;
      text-align: center;
      margin-right: 0px;
      margin-bottom: 10px;
  }
  .footerWrap>.contactBox>.contentRow>p{
      max-width:350px;
      width: 70%;
  }
}
@media (max-width:768px){
  footer{
      padding-bottom: 70px;
  }
}
@media (max-width:500px){
  .footerWrap>.contentRow>.contentBox.tel>.contentBox_inner>p{
      font-size: 0.65em;
  }
}
@media (max-width:430px){
  .footerWrap>.contentRow>.contentBox.tel>.contentBox_inner>p{
      font-size: 0.55em;
  }   
}

/* footerNav_wrap */
.footerNav_wrap{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 994;
}
.footerNav_wrap>ul{
  display: flex;
  height: 60px;
}
.footerNav_wrap>ul>li{
  flex: 1;
}
.footerNav_wrap>ul>li>a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: 0.5s all;
}
.footerNav_wrap>ul>li>a:hover,
.footerNav_wrap>ul>li>a:active{
  opacity: 0.5;
  transition: 0.5s all;
}
.footerNav_wrap>ul>li:nth-child(odd)>a{
  background-color: #494f3f;
}
.footerNav_wrap>ul>li:nth-child(even)>a{
  background-color: #d7cdba;
}
.footerNav_wrap>ul>li>a>i.icon{
  display: block;
  aspect-ratio: 1/1;
  width: 25px;
  background-size: cover;
  margin-bottom: 5px;
}
.footerNav_wrap>ul>li>a>i.telIcon{
  background-image: url(../images/common/telIcon.svg);            
}
.footerNav_wrap>ul>li>a>i.requestIcon{
  background-image: url(../images/common/requestIcon.svg);
}
.footerNav_wrap>ul>li>a>i.reserveIcon{
  background-image: url(../images/common/reserveIcon.svg);
}
.footerNav_wrap>ul>li:nth-child(odd)>a>span{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75em;
  color: #d7cdba;
}
.footerNav_wrap>ul>li:nth-child(even)>a>span{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75em;
  color: #494f3f;
}