@charset "UTF-8";
/* 共通 */
*{
  padding:0;
  margin:0;
  font-family: "Zen Old Mincho", 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,
.under500{
  display: none;
}
@media (max-width:1320px){
  *{
      font-size:15px;
  }
}
@media (max-width:1024px){
  .over1024{
      display: none;
  }
  .under1024{
      display: block;
  }
}
@media (max-width:768px){
  .pc{
      display:none;
  }
  .sp{
      display:block;
  }
  *{
      font-size:14px;
  }
}
@media (max-width:500px){  
  .under500{
      display: block;
  }
}

/* header */
header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.001);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
header:hover{
  background-color: #41414b;
  transition: 0.5s all;
}
header.scrollUp{
  background-color: #41414b;
}
header>.headerWrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header>.headerWrap>h1{
  max-width: 230px;
  width:30%;
  margin-left: 20px;
}
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{
  margin-right: 80px;
}
header>.headerWrap>.h_btnBox>ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header>.headerWrap>.h_btnBox>ul>li{
  padding-right: 1.5em;
  box-sizing: border-box;
  margin-right: 1em;
}
header>.headerWrap>.h_btnBox>ul>li>a{
  display: inline-block;
  font-size: 0.9em;
  color: #fff;
  transition: 0.5s all;
  padding-right: 1.5em;
  box-sizing: border-box;
  position: relative;
}
header>.headerWrap>.h_btnBox>ul>li>a:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 0;            
  transform: translate(0,-50%);
  aspect-ratio: 28/24;
  width: 1em;
  background-image: url(../images/top/btnDeco.svg);
  background-size: cover;
}
header>.headerWrap>.h_btnBox>ul>li>a:hover,
header>.headerWrap>.h_btnBox>ul>li>a:active{
  opacity: 0.5;
  transition: 0.5s all;
}
.menuTrigger{
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.menuTrigger>span{
  position: absolute;
  width: 80%;
  height: 1px;
  background-color: #fff;
  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);
}
@media (max-width:1024px){
  header>.headerWrap>.h_btnBox{
      display:none;
  }
}
@media (max-width:768px){
  header>.headerWrap>h1{
      width:40%;
      margin-left: 10px;
  }
}

/* nav */
nav{
  position: fixed;
  max-width: 500px;
  width: 90%;
  height: 100vh;
  top: 0;
  right: -500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #41414b;
  transition: 0.5s all;
  z-index: 998;
}
nav.open{
  right: 0;
}
.navWrap{
  width: 90%;
  text-align: center;
}
.mainNav{
  margin-bottom: 30px;
}
.mainNav>li>a{
  font-family: "EB Garamond", serif;
  font-size: 1.1em;
  color: #fff;
  display: block;
  padding-top: 1em;
  box-sizing: border-box;
}
.subNav>li{
  margin-bottom: 10px;
}
.subNav>li:last-child{
  margin-bottom: 0px;
}
.subNav>li>a{            
  font-size: 1em;
  color: #fff;
  display: block;
  padding: 15px 0;
  box-sizing: border-box;
  position: relative;
  transition: 0.5s all;
  background-image: url(../images/top/btnBg03.jpg);
  background-size: cover;
  background-position: center center;
} 
.mainNav>li>a:hover,
.mainNav>li>a:active,
.subNav>li>a:hover,
.subNav>li>a:active{ 
  opacity: 0.5;
  transition: 0.5s all;
}      
.subNav>li>a:before,
.subNav>li>a:after{
  content:'';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position:absolute;
  left:0;
}
.subNav>li>a:before{
  top: 3px;
}
.subNav>li>a:after{
  bottom: 3px;
}
.noEvent{
  pointer-events: none;
  opacity: 0.5;
}
.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: block;
}

/* limitedNotice */
.limitedNotice{
  margin-bottom: 50px;
}
.limitedNotice_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;
  font-weight: 500;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 0.5em 0;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.limitedNotice_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_wrap>p{
      text-align: left;
  }
}
@media (max-width:500px){
  .limitedNotice_wrap>h2{
      font-size: 0.9em;
  }          
  .limitedNotice_wrap>p{
      font-size: 0.65em;
  }
}
@media (max-width:430px){
  .limitedNotice_wrap>h2{
      font-size: 0.8em;
  } 
  .limitedNotice_wrap>p{
      font-size: 0.55em;
  }   
}

/* footer */
footer{
  background-color: #41414b;
  padding-top: 50px;
}
.footerWrap{
  max-width: 1320px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
}
.footerWrap>.contentRow{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footerWrap>.contentRow>.contentBox.sellerInfo>.contentBox_inner>h2{
  max-width: 300px;
  width: 80%;
  margin-bottom: 10px;
}
.footerWrap>.contentRow>.contentBox.tel>.contentBox_inner>p{
  font-size: 0.75em;
  line-height: 2.5;
  font-weight: 400;
  color: #fff;
}
.footerWrap>.contentRow>.contentBox.tel>.contentBox_inner>p:nth-child(1){
  margin-bottom: 5px;
}       
.footerWrap>.contentRow>.contentBox.sellerInfo>.contentBox_inner>h2>a,
.footerWrap>.contentRow>.contentBox.tel>.contentBox_inner>p:nth-child(1)>a{
  transition: 0.5s all;
}
.footerWrap>.contentRow>.contentBox.sellerInfo>.contentBox_inner>h2>a:hover,
.footerWrap>.contentRow>.contentBox.sellerInfo>.contentBox_inner>h2>a:active,
.footerWrap>.contentRow>.contentBox.tel>.contentBox_inner>p:nth-child(1)>a:hover,
.footerWrap>.contentRow>.contentBox.tel>.contentBox_inner>p:nth-child(1)>a:active{
  opacity: 0.5;
  transition: 0.5s all;
}
.footerWrap>.contentRow>.contentBox.sellerInfo>.contentBox_inner>p,
.footerWrap>.contentRow>.contentBox.tel>.contentBox_inner>p:nth-child(2){
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75em;
  line-height: 1.8;
  font-weight: 400;
  color: #fff;
}
.footerWrap>.contentRow>.contentBox.tel{
  display: flex;
  justify-content: flex-end;
}
.footerWrap>.contentRow>.contentBox.tel>.contentBox_inner{
  max-width: 500px;
  width: 80%;
}
.smallWrap{
  padding-bottom: 10px;
  text-align: center;
}
.smallWrap>small{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.65em;
  color: #fff;
}
.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: #2a2a31;
}
.footerNav_wrap>ul>li:nth-child(even)>a{
  background-color: #747485;
}
.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/top/telIcon.svg);            
}
.footerNav_wrap>ul>li>a>i.requestIcon{
  background-image: url(../images/top/requestIcon.svg);
}
.footerNav_wrap>ul>li>a>i.reserveIcon{
  background-image: url(../images/top/reserveIcon.svg);
}
.footerNav_wrap>ul>li>a>span{
  font-size: 0.75em;
  color: #fff;
}
@media (max-width:1024px){
  .footerWrap>.contentRow{
      flex-direction: column;
      align-items: center;
  }
  .footerWrap>.contentRow>.contentBox{
      width: 100%;
  }
  .footerWrap>.contentRow>.contentBox>.contentBox_inner{
      text-align: center;
  }
  .footerWrap>.contentRow>.contentBox.sellerInfo{
      margin-bottom: 20px;
  }
  .footerWrap>.contentRow>.contentBox.sellerInfo>.contentBox_inner>h2{
      margin: 0 auto;
      margin-bottom: 10px;
  }
  .footerWrap>.contentRow>.contentBox.tel{
      display: block;
  }            
  .footerWrap>.contentRow>.contentBox.tel>.contentBox_inner{
      max-width: 400px;
      width: 80%;
      margin:0 auto;
  } 
}
@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;
  }   
}