@charset "utf-8";


*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
 font-family: "ten-mincho" , serif;
    font-size: 16px;
    color: #000000;
    line-height: 1;
    background-color: #ffffff;
}
img {
    max-width: 100%;
}

.header-inner {
    max-width: 1200px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-menu ul {
    display: flex;
}
.site-menu ul li {
   margin: 20px 20px 20px 40px;
}

.site-menu ul li a {
    font-weight: bold;
}
.toggle-menu-button {
    display: none;
}
.site-menu a {
    transition: opacity 0.3s ease;
}
.site-menu a:hover {
    opacity: 0.4;
}

/*  main  */

.first-view {
    height: calc(100vh - 110px );
    background-image: url(images/index/店外観.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
}
.first-view-text { 
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-bottom: 80px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 10px #4b2c14;
}
.first-view-text h1 {
     font-family: "Beau Rivage", serif;
     font-weight: 100;
    font-size: 56px;
    line-height: 72px;
}
.first-view-text p {
    font-size: 18px;
    margin-top: 20px;
}

.lead {
    max-width: 1200px;
    margin: 60px auto;
}
.lead p {
    line-height: 2;
    text-align: center;
}
.link-button {
  position: relative;
  padding: 14px 20px; 
  width: fit-content;
  margin: 0 auto;
  margin-top: 40px;
  display: block;
  text-align: center;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  border: none;
}

/* 上線 */
.link-button::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #333;
  top: 0;
  left: 0;
  transition: 0.4s ease;
}

/* 下線 */
.link-button::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #333;
  bottom: 0;
  right: 0;
  transition: 0.4s ease;
}

/* ホバーで左右に伸びる */
.link-button:hover::before {
  width: 100%;
}

.link-button:hover::after {
  width: 100%;
}
/*  recommended  */

    .recommended {
        background-color: #f8f8f8;
        padding-top: 60px;
        padding-bottom: 55px;
    }
    .recommended h2 {
        font-size: 22px;
        font-weight: 200;
        text-align: center;
    }
    .recommended h2::after {
        content: "";
        display: block;
        width: 100px;
        height: 1px;
        background-color: #000000;
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .item-list {
        display: flex;
        padding-top: 60px;
        padding-bottom: 10px;
        padding-left: 60px;
        padding-right: 60px;
        overflow: scroll;
    }
    .item-list li {
        flex-shrink: 0;
        width: 260px;
        margin-left: 75px;
    }
    
    .item-list li:first-child {
        margin-left: 0;
    }

    .item-list dl {
        margin-top: 20px;
    }
    .item-list dt {
        font-weight: bold;
    }
    .item-list dd {
        font-size: 13px;
        line-height: 20px;
        margin-top: 10px;
    }
    .item-list .price {
        font-weight: bold;
        margin-top: 15px;
    }
    /*  footer  */

.footer {
    color: #ffffff;
    background-color: #24211b;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-logo {
    display: block;
    width: 235px;
    margin-top: 90px;
}
.footer-tel {
    font-size: 26px;
    font-weight: bold;
    margin-top: 28px;
}
.footer-time {
    font-size: 13px;
    margin-top: 16px;
}
.copyright {
    font-size: 14px;
    font-weight: bold;
    margin-top: 90px;
}


@media (max-width: 800px) {

    



    .main {
        padding-top: 0px;
    }

    .first-view {
        height: 100%;
        background-image: url(images/index/店外観\ \(2\).png);
        align-items: flex-start;
    }
    .first-view-text {
        padding-top: 60px;
        padding-left: 20px;
    }
    .first-view-text h1 {
        font-size: 36px;
        line-height: 48px;
    }
    .first-view-text p {
        font-size: 14px;
        margin-top: 15px;
    }
    .lead {
        padding-left: 20px;
        padding-right: 20px;
    }
    .lead p {
        text-align: left;
    }

    /*  recommend  */

    .item-list {
        padding-left: 20px;
        padding-right: 20px;
    }
    .item-list li {
        width: 220px;
        margin-left: 30px;
    }
    /*  footer  */
    .footer-logo {
        margin-top: 60px;
    }
    .footer-tel {
        font-size: 20px;
    }
    .copyright {
        margin-top: 50px;
    }
}