@charset "utf-8";

/* ---------------------  reset  --------------------- */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 100%;
    scroll-behavior: smooth;
}
body{
    line-height: 1;
    background: url(../img/mitsuba_bg_sp.webp) ;
    font-family: "baskerville",serif;
}
a{
    text-decoration: none;
    display: block;
    color: inherit;
}
ul{
    list-style: none;
  }
img{
    vertical-align: bottom;
    max-width: 100%;
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
body{
    background: url(../img/mitsuba_bg.webp) ;
}
}
/* ------------------------------------------------------------------------------------
    common
------------------------------------------------------------------------------------ */
h1,
a,
.pcNav,
.locationWrap,
.footer{
    font-family: "arial",sans-serif;
}
.container{
    padding-inline: 2em;
}
#home .aboutTxt,
#home .locationBox{
    padding: 30px 2em 40px;
}

/* ---------------------  media query  --------------------- */
@media (width>743px){
.container,
.headerTxt{
    max-width: 960px;
    margin-inline: auto;
}

#home .aboutTxt,
#home .locationWrap{
    padding-block: 0;
}
}

/* ------------------------------------------------------------------------------------
    common h2
------------------------------------------------------------------------------------ */
#home h2{
   font-size: 2.5rem;
   font-family: "Trajan Pro 3",serif;
   font-weight: normal;
   text-align: center;
   letter-spacing: 3px;
   position: relative;
   z-index: 1000;
}
#home h2::after{
    content: url('../img/brush.svg');
    margin-inline: auto;
    width: 15rem;
    display: block;
    position: relative;
    top: -25px;
    left: 10px;
    z-index: -1;
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
    #home h2{
        margin-bottom: 50px;
        font-size: 2.5rem;
    }
    #home h2::after{
        width: 18rem;
        top: -28px;
    }
    }
/* ------------------------------------------------------------------------------------
    common  .more
------------------------------------------------------------------------------------ */
#home .more{
    padding: 20px;
    margin-top: 30px;
    text-align: center;
    letter-spacing: 2px;
    font-size: 1.25rem;
    font-weight: bold;
    
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
#home .more{
    padding: 20px 50px;
    margin-top: 20px;
    width:370px;
}
}

/* ------------------------------------------------------------------------------------
   Loading Animation
------------------------------------------------------------------------------------ */

#mitsuba {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2000;
      background: #fff ;
      text-align:center;
      color:#000;
}
#mitsubaLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#mitsubaLogo svg{
    width:200px;
}
#mask path {
    fill-opacity: 0;
    transition: fill-opacity .5s;
    fill: none;
    stroke: #333;
}
#mask.done path{
  fill: #333;
  fill-opacity: 1;
  stroke: none;
}

/* ------------------------------------------------------------------------------------
   fadeUp
------------------------------------------------------------------------------------ */
@media (width>743px){

.box{
	opacity: 0;
}

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
}

/* ------------------------------------------------------------------------------------
    header
------------------------------------------------------------------------------------ */
#home .header{
    height: 100vh;
    height: 100dvh;
}
#home header h1{
    text-align: center;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1.5;
}
#home .headerTxt{
    padding-inline: 2em;
}
#home header .headerTxt>a{
    margin: 10px auto 5px;
    width: 25%;
}
#home header .headerTxt p{
    margin-block: 10px 15px;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.25;
    color: #dab320;
}

/* ---------------------  media query  --------------------- */
@media (width>743px){
#home header{
    position: relative;
}
#home header h1{
    margin-bottom: 20px;
    font-size: 0.75rem;
    text-align: left;
    letter-spacing: 0.5px;
    width: 50%;
}
#home header .headerTxt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 4em); 
}
#home header .headerTxt>a{
    margin: 30px 0 10px;
    width: 45%;
}
#home header .headerTxt p{      
    margin-block: 30px ;
    font-size: 1.95rem;
    width: 49%;
}
}

/* ------------------------------------------------------------------------------------
    mainVisual
------------------------------------------------------------------------------------ */

#home header .mainImg{
    height: 60vh;
    height: 60dvh;
    position: relative;
}
#home header .mainImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out; 
  }
  #home header .mainImg img.active{
    opacity: 1; 
  }

/* ---------------------  media query  --------------------- */
@media (width>743px){

#home header .mainImg{
    height: 100vh;
    height: 100dvh;
    width:50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
}
/* ------------------------------------------------------------------------------------
    spBtn
------------------------------------------------------------------------------------ */
.spBtn{
    width: 70px;
    height: 70px;
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 1000;
  }

.spBtn span{
    display: block;
    width: 40px;
    height: 4px;
    background: #000;
    position: absolute;
    inset: 0;
    margin:auto ;
    transition: 300ms;
}
.spBtn span:first-child{
    translate: 0 15px;
}
.spBtn span:last-child{
    translate: 0 -15px;
}
  /* jQuery */

.close span:first-child{
    transform:rotate(405deg) ;
    translate: 0 0px;
    color: #fff;
  }
.close span:nth-child(2) {
    opacity: 0; 
  }
.close span:last-child{
    transform:rotate(-405deg) ;
    translate: 0 0;
    color: #fff;
  }
/* ---------------------  media query  --------------------- */
@media (width>743px){
header .spBtn{
    display: none;
}
}
/* ------------------------------------------------------------------------------------
    spNavigation
------------------------------------------------------------------------------------ */
.spNav{
    /* display: none; */
    padding-bottom: 70px;
    width: 70%;
    height: 100%;
    background:#333e;
    color: #fff;
    position: fixed;
    top: 0;
    right: -70%;
    transition: 300ms;
    z-index: 1000;
}
.open{
    right: 0;
  }
.spNav ul{
    padding-left: 50px;
}
.spNav li{
    margin: 70px auto 0;
    padding-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    border-bottom: 1px solid #fff;
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
.spNav{
    display: none;
}
}
/* ------------------------------------------------------------------------------------
    pcNavigation
------------------------------------------------------------------------------------ */
.pcNav{
    display: none;
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
.pcNav{
    display: block;
}
.pcNav ul{
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: bold;
    letter-spacing: 1px;
}
.pcNav li {
    position: relative;
}
.pcNav li a::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -3px;
    left: -10%;
    width: 120%;
    height: 2px;
    background: #dab320;
    transition: all 200ms ease-in;
    transform: scale(0, 1);
    transform-origin: center left; 
}
.pcNav li a:hover::after {
    transform: scale(1, 1); 
}

}
/* ------------------------------------------------------------------------------------
    Reservation
------------------------------------------------------------------------------------ */
.reserve{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.triangle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height:100px;
    background: url('../img/shippo.svg') center;
    background-size: 80%;
    clip-path: polygon(0 100%, 100% 0, 0 0); 
}
.text{
    position: relative;
    top: 30px; 
    right: 0px;
    display: inline-block;
    transform: rotate(-45deg); 
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
.reserve {
    right: 0;
    left: initial;
    display: flex;
    background: none;
    justify-content: center;
    align-items: center;
}
.triangle {
    right: 0;
    left: initial;
    width: 150px;
    height:150px;
    clip-path: polygon(0 0, 100% 100%, 100% 0); 
    transition: background 0.3s ease;
}
.text {
    top: 50px; 
    right: 10px;
    position: relative;
    transform: rotate(45deg); 
    font-size: 20px;
    font-weight: bold;
    z-index: 1; 
}
.reserve .triangle::before{
    content: "";
    display: block;
    background: url(../img/shippo_hover.svg) center;
    background-size: 80%;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 100ms ease-out;
    transform-origin: top right;
    scale: 1 0;
    z-index: -1;
}
.reserve:hover .triangle::before{
    scale: 1;
}
.reserve:hover .text {
    color: #fff; 
}
}

/* ------------------------------------------------------------------------------------
    main
------------------------------------------------------------------------------------ */
main .top{
    width: 100px;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 100px;
    border-radius: 50%;
    text-align: center;
    letter-spacing: 2px;
    outline: #555 1px solid;
    color: #555;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* ------------------------------------------------------------------------------------
    concept
------------------------------------------------------------------------------------ */
.concept{
    padding-block: 80px;
    color: #fff;
    background: url(../img/asanoha.svg) ;
    background-size: 15%;
    position: relative;
    z-index: -1;
    filter:blur(0);
}
.conceptImg{
    width: 100%;
    height: 60vh; 
    background: url('../img/concept.webp') no-repeat center/cover;
    overflow: hidden;
}
.conceptImg img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
.concept{
    padding-block: 160px;
}
.conceptBox{
    display: flex;
    gap: 50px;
}
#home .conceptTxt{
    width: 60%;
}
.conceptImg{
    height: auto; 
    width: 40%;
}

}
/* ------------------------------------------------------------------------------------
  conceptTxt
------------------------------------------------------------------------------------ */
#home .conceptTxt p{
    text-align: left;
}
#home .conceptTxt p:first-of-type{
    margin-bottom: 30px;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 2px;
}
#home .conceptTxt p:nth-of-type(2){
    margin-bottom: 30px;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 1.5px;
}
#home .conceptTxt p:last-of-type{
    line-height: 1.75;
    margin-bottom: 50px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* ---------------------  media query  --------------------- */
@media (width>743px){
#home .conceptTxt p:first-of-type{
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.3;
}
#home .conceptTxt p:nth-of-type(2){
    font-size: 1.5rem;
    line-height: 1.5;
}
#home .conceptTxt p:last-of-type{
    line-height: 1.75;
    margin-bottom: 0;
}
}
/* ------------------------------------------------------------------------------------
  menu
------------------------------------------------------------------------------------ */
#home .menu{
    padding-block: 80px;
    text-align: center;
}
#home .menuWrap>p{
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.75;
    font-size: 1.1rem;
}
#home .menuBox + .menuBox{
    margin-top: 50px;
}
#home .menuBox>a{
    width: 80%;
    margin-inline: auto;
}
#home .menuBox>a p{
    overflow: hidden;
    border-radius: 50%;
}
#home .menuBox h3{
    margin-block: 20px 10px;
    font-size: 2.5rem;
    font-weight: 600;
}
#home .menuTxt p{
    margin-block: 10px;
    font-size: 1.1rem;
}
#home .menuBox .time{
    margin-inline: auto;
    line-height: 1.25em;
    letter-spacing: 1px;
    white-space: pre-line;
}
#home .menu .menuBox .more{
    margin-inline: auto;
    border-left: #000 solid 1px;
    border-top:#000 solid 1px; 
}
/* ---------------------  media query  --------------------- */

@media (width>743px){
#home .menu{
    padding-block: 160px;
}
#home .menu>p{
    margin: 0 auto 50px;
    font-size: 1.2rem;
}
#home .menuBox {
    display: flex;
    align-items:center;
    justify-content: center;
    gap: 50px;
}
#home .menuBox + .menuBox{
    margin-top: 0;
}
#home .menuBox>a{
    width: 40%;
    margin-inline: 0;
}

#home .menuBox:nth-of-type(2) {
    flex-direction: row-reverse;
}
#home .menuTxt{
    margin-block: 20px;
    text-align: left;
}
#home .menuBox:nth-of-type(2) .menuTxt {
    text-align: right;
}
#home .menuBox .time{
    letter-spacing: 0.5px;
    line-height: 1.5em;
    white-space:normal;
}
#home .menu .menuBox:nth-of-type(1) .more{
    border-left: #000 solid 1px;
    border-right: 0;
    border-top:#000 solid 1px; ;
}
#home .menu .menuBox:nth-of-type(2) .more{
    justify-self: flex-end;
    border-left: 0;
    border-right: #000 solid 1px;
    border-top:#000 solid 1px; ;
}
#home .menuBox>a:hover img{
    scale: 1.15;
    transition: 200ms ease-out;
}

#home .menuTxt .more {
    position: relative;
    z-index: 1;    
    transition: 200ms ease-out;   
}
#home .menuTxt .more:hover{
    color: #fff;
  }
#home .menuTxt .more::before{
    content: "";
    display: block;
    background:#000;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 200ms ease-out;
    scale: 0 1;
    z-index: -1000;
  }
  #home .dinner .more::before{
    transform-origin: left;
  }
  #home .lunch .more::before{
    transform-origin: right;
  }
  #home .menuTxt .more:hover::before{
    scale: 1 ;
  }
}
/* ------------------------------------------------------------------------------------
  about
------------------------------------------------------------------------------------ */
#home .about{
    padding-block: 80px;
    background: url(../img/seikai.svg) ;
    background-size: 15%;
    color: #fff ;
    filter:blur(0);
    z-index: -1000;
}
#home .aboutBox .aboutImg{
    background: url(../img/about.webp) no-repeat center/cover;
    height: 240px;
}
#home .about .aboutTxt p:first-of-type{
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 1px;
    font-weight: 600;
    white-space: pre-line;
}
#home .about p:first-of-type{
    font-size: 1.1rem;
    line-height: 1.75;
}
#home .about p:nth-of-type(2){
    font-size: 1.1rem;
    line-height: 1.75;
}
#home .about .more{
    border-left: #fff solid 1px;
    border-top:#fff solid 1px; ;
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
#home .about{
    padding-block: 160px;
}

.aboutWrap{
    background: #262626;
    z-index: -1000;
}
#home .aboutBox{
    display: flex;
    align-items: stretch
}
#home .aboutBox .aboutImg{
    flex: 0 0 40%; 
    height: auto;
}

#home .about .aboutTxt{
    padding:40px 0 40px 80px;
    margin-right: 2em; 
    flex-grow: 1;
    max-width: 576px; 
    display: flex;
    flex-direction: column;
}
#home .aboutTxt p:first-of-type{
    margin-bottom: 15px;
    font-size: 4rem;
    line-height: 1;
}
#home .aboutTxt .more {
    position: relative;
    z-index: 1;    
    transition: 200ms ease-out;   
}
#home .aboutTxt .more:hover{
    color: #000;
  }
#home .aboutTxt .more::before{
    content: "";
    display: block;
    background:#fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 200ms ease-out;
    transform-origin: left center;
    scale: 0 1;
    z-index: -1;
  }
#home .aboutTxt .more:hover::before{
    scale: 1;
  }
}
/* ------------------------------------------------------------------------------------
    location
------------------------------------------------------------------------------------ */
#home .location{
    padding-block: 80px;
}
#home .locationWrap .map{
    width: 100%;
    height: 240px;
}
#home .locationWrap iframe{
    width: 100%;
    height: 100%;
    border: none;
}
#home .locationWrap .map .iframe-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: block;
}
#home .locationBox h3{
    margin-bottom: 10px;
    font-weight: normal;
}
#home .locationTxt+.locationTxt{
    margin-top: 30px;
}
#home .locationTxt p:first-of-type{
    margin-bottom: 3px;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.2;
}
#home .locationTxt p:first-of-type span{
    font-size: 0.7em;
    font-weight: normal;
}
#home .locationTxt p:last-of-type{
    line-height: 1.5;
}
#home .location .more{
    border-left: #000 solid 1px;
    border-top:#000 solid 1px;
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
#home .location{
    padding-block: 160px;
}
#home .locationWrap{
    display: flex;
    height: auto;
    background: #fff;
}
#home .locationWrap .map{
    flex: 0 0 40%; 
    height:auto;
    position: relative;
}

#home .location .locationBox{
    padding:40px 0 40px 80px;
    max-width: 576px; 
    flex: 6;
}
#home .locationBox .more{
    position: relative;
    z-index: 1;    
    transition: 200ms ease-out;   
}
#home .locationBox .more:hover{
    color: #fff;
  }
#home .locationBox .more::before{
    content: "";
    display: block;
    background:#000;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 200ms ease-out;
    transform-origin: left center;
    scale: 0 1;
    z-index: -1;
  }
#home .location .more:hover::before{
    scale: 1;
  }
}

/* ------------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------------ */
.footer{
    padding-inline: 2em;
}
.footer a{
    margin: 10px auto 5px;
    width: 25%;
}
.footer .copyright{
    margin-block: 20px 50px;
    text-align: center;
}
/* ---------------------  media query  --------------------- */
@media (width>743px){
.footer a{
    width: 150px;
}
}