@charset "UTF-8";


body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: black;
    background-color: #fffbee;
}

h2 {
    text-align: center;
    font-family: "Passion One", sans-serif;
    font-size: 38px;
}

.tittle {
    text-align: center;
    font-family: "Squada One", sans-serif;
    font-size: 24px;
    background-color: #673011;
    padding-top: 10px;
}

.tittle h1 a {
    text-decoration: none;
    color: white;
}

.page-header {
    text-align: center;
    display: flex;
    justify-content: center;
    background: #673011;
    height: 50px;
}

.home-image {
    background-image: url(../images/topcoffee.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 600px;

}
/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
      z-index: 1;
      /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
      height: 600px;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }
  /*　背景画像設定　*/
  
  .slider-item01 {
      background:url(../images/topcoffee.jpg);
  }
  
  .slider-item02 {
      background:url(../images/cake-4910417_1280.jpg);
  }
  
  .slider-item03 {
      background:url(../images/brownie-2938671_1920.jpg);
  }
  
  .slider-item {
      width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
      height:600px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
      background-repeat: no-repeat;/*背景画像をリピートしない*/
      background-position: center;/*背景画像の位置を中央に*/
      background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
  }
  
  /*矢印の設定*/
  
  .slick-prev, 
  .slick-next {
      position: absolute;
      z-index: 3;
      top: 42%;
      cursor: pointer;/*マウスカーソルを指マークに*/
      outline: none;/*クリックをしたら出てくる枠線を消す*/
      border-top: 2px solid #fff;/*矢印の色*/
      border-right: 2px solid #fff;/*矢印の色*/
      height: 25px;
      width: 25px;
  }
  
  .slick-prev {/*戻る矢印の位置と形状*/
      left:2.5%;
      transform: rotate(-135deg);
  }
  
  .slick-next {/*次へ矢印の位置と形状*/
      right:2.5%;
      transform: rotate(45deg);
  }
  
  /*ドットナビゲーションの設定*/
  
  .slick-dots {
      position: relative;
      z-index: 3;
      text-align:center;
      margin:-50px 0 0 0;/*ドットの位置*/
  }
  
  .slick-dots li {
      display:inline-block;
      margin:0 5px;
  }
  
  .slick-dots button {
      color: transparent;
      outline: none;
      width:8px;/*ドットボタンのサイズ*/
      height:8px;/*ドットボタンのサイズ*/
      display:block;
      border-radius:50%;
      background:#fff;/*ドットボタンの色*/
  }
  
  .slick-dots .slick-active button{
      background:#333;/*ドットボタンの現在地表示の色*/
  }

.main-nav {
    font-family: "Passion One", sans-serif;
    font-size: 30px;
    display: flex;
    list-style: none;
    max-width: 1100px;
    margin: 0 auto;
    gap: 80px;
}

.main-nav a {
    text-decoration: none;
    color: white;
}

.main-nav a:hover{
        color: #8b451c;
        transition: 0.2s;
}

.nav-fixed-top {
    display: flex;
    justify-content: center;
    position: fixed;
    padding-top: 10px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #673011;
}
/*---------------------------------------NEWS--------------------------------*/
#news,
#about,
#menu,
#contact{
    padding-top: 30px;
    overflow-x: hidden;
}

.news {
    margin-top: 180px;
}

.news-header,
.menu-header {
    background-image: url(../images/news-coffee-beans.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 200px;
    margin: 80px 120px 120px 0px;
    max-width: 100%;
}

.contents-wrap {
    overflow-x: hidden;
}

.contents {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
}

.contents-image img {
    width: 450px;
    height: 330px;
    margin-right: 120px;
}

.news-nav {
    list-style: none;
    margin-top: 40px;
    margin-right: 50px;
}

.news-nav p {
    margin-bottom: 20px;
}

.news-nav a {
    text-decoration: none;
    color: black;
}

.news-date {
    font-family: "Zen Maru Gothic", sans-serif;
}

.news-more,
.about-more {
    font-weight: 800;
    color: #673011;
    margin-top: 70px;
}

.news-more p {
    text-align: right;
}

.news-more p::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 180px;
    background-color: #673011;
    translate: 280px 0;
}

.underline-left {
    height: 2px;
    margin-bottom: 180px;
    margin-right: 120px;
    max-width: 880px;
    background-color: #673011;
}

/*---------------------------------------about--------------------------------*/

.about-header,
.contact-header {
    background-image: url(../images/coffeeaboutcover.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 200px;
    margin: 80px 0 120px 120px;
    max-width: 100%;
}

.concept {
    color: #673011;
    text-align: center;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    margin-bottom: 120px;
}

.concept p {
    position: relative;
    display: inline-block;
    font-size: 30px;
    padding-bottom: 10px;
}

.concept p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: #673011;
}

.contents-2 {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
}

.contents-image-right img {
    width: 450px;
    height: 330px;
    margin-left: 120px;
}

.artcle {
    list-style: none;
    margin-top: 50px;
    margin-right: 50px;
}

.artcle p {
    margin-bottom: 20px;
}

.artcle-2 {
    list-style: none;
    margin-top: 60px;
    margin-left: 50px;
}

.artcle-2 p {
    margin-bottom: 20px;
}

.attention {
    display: block;
    font-weight: 800;
    font-size: 16px;
    color: #673011;
    margin-top: 30px;
    padding-top: 50px;
}


.attention p::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 180px;
    background-color: #673011;
    translate: -250px 0;
}


.about-more {
    margin-top: 70px;
}

.about-more p {
    text-align: left;
}

.about-more p::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 180px;
    background-color: #673011;
    translate: -250px 0;
}


.underline-right {
    height: 2px;
    margin-bottom: 180px;
    margin-left: auto;
    max-width: 880px;
    background-color: #673011;
}

/*---------------------------------------menu--------------------------------*/

.menu-header {
    background-image: url(../images/menu-header.jpg);
}


.about-more {
    margin-top: 70px;
}

.news-more-2 {
    font-weight: 800;
    color: #673011;
    margin-top: 90px;
}

.news-more-2 p {
    text-align: right;
}

.news-more-2 p::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 180px;
    background-color: #673011;
    translate: 280px 0;
}


.underline-left-2 {
    height: 2px;
    margin-top: 100px;
    margin-bottom: 180px;
    margin-right: 120px;
    max-width: 880px;
    background-color: #673011;
}



/*---------------------------------------contact--------------------------------*/

.contact-header {
    background-image: url(../images/contact.jpg);
}

.contact-contents {
    text-align: center;
    margin-bottom: 80px;
}

.kome {
    font-weight: 800;
    color: #e10d0d;
}

.contact-form {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form p {
    margin-bottom: 10px;
}

.contact-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 40px;
    background-color: #e6e0cd;
    border-radius: 12px;
}

.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 40px;
    background-color: #e6e0cd;
    border-radius: 12px;
}

.submitbutton {
    display: block;
    text-align: center;
    width: 200px;
    margin: 20px auto 120px auto;
    background-color: #673011;
    border-radius: 12px;
    margin-bottom: 180px;
    padding: 8px;

}

.submitbutton:hover {
    background-color: #8b451c;
    transition: 0.3s;
    transform: scale(1.02);

}

.submitbutton input {
    font-size: 16px;
    color: #fff;
}

/*---------------------------------------フッター--------------------------------*/
.contents-map {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1100px;
    justify-content: center;
    margin: auto auto 150px auto;
}

.map {
    margin: 45px 140px 0 0;

}

.artcle-map {
    display: block;
    margin-right: 40px;
}

.omise-namae {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}

.omise {
    display: block;
    text-align: center;
    font-family: "Squada One", sans-serif;
    font-size: 30px;
}

.am {
    margin-bottom: 20px;
}

.footer-contents {
    background: #673011;
}

.page-footer {
    text-align: center;
    justify-content: space-between;
    max-width: 1100px;
    height: 120px;
    margin: 0 auto;
    align-items: center;
    position: relative;

}

.top-back-image {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.copylight-wrap {
    text-align: right;
    color: #fff;
    padding-top: 50px;
}



@media(max-width:800px) {
    .tittle {
        font-size: 22px;
        padding-top: 5px;
    }

    h2 {

        font-size: 28px;
    }


    .page-header {
        height: 30px;
    }

    .main-nav {
        font-size: 18px;
        padding-bottom: 10px;
        gap: 22px;
    }
    .slider {
          height: 350px;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
      }
    .slider-item {
        height:400px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    }

    .news {
        margin-top: 220px;
    }

    .news-header,
    .menu-header {

        height: 80px;
        margin: 80px 40px 90px 0px;
        max-width: 100%;
    }

    .contents {
        display: block;
    }

    .contents-image {
        text-align: center;
    }

    .contents-image img {
        width: 70%;
        height: 70%;
        margin-right: 0px;
    }

    .news-nav {
        list-style: none;
        margin: 0;
        padding: 20px;
    }

    .news-nav li {
        font-size: 14px;
    }

    .news-more,
    .about-more {
        font-weight: 800;
        color: #673011;
        margin: 30px 20px 20px 0px;
    }

    .news-more {
        margin: 30px 0px 20px 0px;
    }

    .about-more p {
        font-size: 14px;
    }

    .news-more p {
        text-align: right;
        font-size: 14px;
    }

    .news-more p::after {
        content: "";
        display: block;
        height: 2px;
        margin-top: 10px;
        margin-bottom: 120px;
        background-color: #673011;
        translate: 180px 0;
    }

    .underline-left {
        height: 2px;
        margin-bottom: 120px;
        margin-right: 80px;
        max-width: 880px;
        background-color: #673011;
    }

    .about-header,
    .contact-header {
        height: 80px;
        margin: 80px 0 90px 40px;
        max-width: 100%;
    }

    .contents-image-right img {
        width: 70%;
        height: 70%;
        margin-right: 0px;
    }


    .concept p {
        display: inline;
        font-size: 22px;
        padding-bottom: 6px;
        border-bottom: 3px solid #673011;
    }

    .concept p::after {
        content: none;
    }

    .artcle {
        margin: 30px 20px;
        font-size: 14px;
    }

    .contents-2 {
        flex-direction: column;

    }

    .artcle-2 {
        order: 2;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 30px;
        font-size: 14px;
        /* 任意：スマホ時中央寄せ */
    }

    .artcle-2 p {
        font-size: 14px;
    }

    .contents-image-right {
        order: 1;
        margin-bottom: 20px;
        text-align: center;
    }

    .contents-image-right img {
        height: auto;
        width: 70%;
        height: 70%;
        margin-left: 0;
    }

    .attention {
        padding-top: 10px;
    }

    .attention p::after {
        margin-bottom: 120px;
        translate: -110px 0;
    }

    .underline-right {
        margin-bottom: 120px;
        margin-left: 80px;
    }

    .about-more p::after {
        margin-bottom: 120px;
        translate: -100px 0;
    }

    .news-more-2 {
        margin-right: 20px;
        margin-top: 30px;
        font-size: 14px;
    }

    .news-more-2 p::after {
        margin-bottom: 120px;
        translate: 180px 0;
    }

    .underline-left-2 {
        height: 2px;
        margin-top: 100px;
        margin-bottom: 120px;
        margin-right: 80px;
    }

    .contact-contents {
        text-align: justify;
        margin: 30px 20px 60px 20px;
        font-size: 14px;
    }


    .contact-form input {
        margin-bottom: 20px;
        background-color: #e6e0cd;
        border-radius: 12px;
    }

    .submitbutton {
        display: block;
        text-align: center;
        width: 280px;
        margin: 20px auto 120px auto;
        background-color: #673011;
        border-radius: 12px;
        margin-bottom: 120px;
        padding: 8px;
    }

    .contents-map {
        display: flex;
        flex-wrap: nowrap;
        max-width: 100;
        justify-content: center;
        margin: auto auto 80px auto;
    }

    .contents-map {
        flex-direction: column;
        align-items: center;
    }

    .map {
        order: 2;
        margin: 20px 0 0 0;
    }

    .artcle-map {
        order: 1;
        margin: 0 20px;
        text-align: center;
    }

    iframe {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .omise-namae {
        font-family: "Zen Maru Gothic", sans-serif;
        font-weight: 500;
        font-size: 16px;
    }


    .am {
        font-size: 14px;
    }

    .copylight{
        margin-right: 20px;
    }
}