@charset "UTF-8";

/* 全体設定 */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-image: url(./image/craft-beige.png);
  margin: 0 auto;
  color: #333;
  font-family: 'Zen Maru Gothic', sans-serif;
  background-color: #f3e4b7;
}
    
h1,
h2,
h3 {
    text-align: center;
    font-weight: bold;
}
h2{
    line-height: 1.7;
}

a {
    color: #333;
}

ul {
    list-style: none;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

.l-header {
  background-color: #ffffff80;
  top: 0;
}

/* ヘッダー設定 */
.header {
    background-color: #ecebb6;
    color: white;
    width: 100%;
    padding: 5px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}
  
.header-content img {
    width: 200px;
    margin-right: 10px;
    padding-top: 5px;
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
  
.hamburger-menu .bar {
    width: 30px;
    height: 3px;
    background-color: #ad5a0e;
    transition: .4s;
  }

.bar:nth-child(2) {
    transition: opacity 0.3s ease;
    /* 追加: アニメーション */
}
  
header.active .bar:nth-child(2) {
    opacity: 0;
    /* 追加: 真ん中のバーを非表示 */
}
  
header.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    /* 追加: 上のバーを回転 */
}
  
header.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    /* 追加: 下のバーを回転 */
}

.nav-menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: #fffcfb;
    padding: 20px;
}
  
.nav-menu ul {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
  
.nav-menu li {
    margin-bottom: 10px;
}
  
.nav-menu a {
    text-align: center;
    text-decoration: none;
    color: #5e5445;
    display: block;
    padding: 1rem;
}
  
header.active .nav-menu {
    display: flex;
    height: 100vh;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: 48px;
}

/* 両サイドの固定メニュー */
.pc {
    font-size: .8rem;
    top: 0;
    left: 2%;
    margin-top: 1rem;
    position: fixed;
    top: 10%;
}

.pc2 {
    bottom: 0;
    left: 2%;
    margin-bottom: 1rem;
    position: fixed;
}

.pc3 {
    font-size: 1.1rem;
    bottom: 25rem;
    left: 82%;
    position: fixed;
}

.pc1__flex {
  margin: 2rem auto 2rem;
  display: flex;
  gap: 2rem;
  line-height: 2rem;
}

.pc2__flex,
.pc3__flex {
  margin-top: .5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.pc2__flex img,
.pc3__flex img {
  width: 40px;
  height: auto;
}

.pc4__flex {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 1rem;
}

.pc5__flex {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 1rem;
  font-size: .7;
}

.pc5__flex img{
    width: 40px;
  }  
  
/* ローディング画像の設定 */
#transition-image {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInOut 4s ease forwards;
}
  
#transition-image img {
    width: 200px;
    animation: fadeInOutImage 4s ease forwards;
}
  
@keyframes fadeInOut {
    0% {
      opacity: 1;
    }
  
    50% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
      visibility: hidden;
    }
}
  
@keyframes fadeInOutImage {
    0% {
      opacity: 0;
    }
  
    50% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
    }
}
  
/* メインコンテンツ設定 */
.main-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    width: calc(100% - 500px);/* 960px以下になった時、サイドメニューが被らないようにする */
}

/***** Topページ *****/
/* 動画 */
main video {
    margin-top: 4rem;
    max-width: 920px;
    width: 100%;
}

/* キャンペーンコンテンツの見出し */
.campaign_kokuchi h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    letter-spacing: 0.5rem;
    background: #ecebb6;
    margin-top: 2rem;
}

/* Topページキャンペーン用スライダー */
.c-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
  
.c-carousel__activator-main {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
  
.c-carousel__main {
    overflow: hidden;
    position: relative;
}
  
.c-carousel__main-track {
    display: flex;
    white-space: nowrap;
    transition: transform 0.3s ease-out;
}
  
.c-carousel__main-item {
    flex-shrink: 0;
    width: 100%;
    margin-top: 30px;
}
  
.c-carousel__main-image {
    display: block;
    width: 100%;
}
  
.c-carousel__main-control-item {
    display: none;
}
  
.c-carousel__btn-prev-main,
.c-carousel__btn-next-main {
    position: absolute;
    top: 50%;
    right: 16px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    background-color: #e8b7d4;
    border-radius: 50%;
    transition: opacity 0.3s;
    cursor: pointer;
}
  
.c-carousel__btn-prev-main {
    right: auto;
    left: 16px;
}
  
    /* キャンペーン用スライダーの左右の矢印  */
.c-carousel__activator-main:nth-child(1):checked~.c-carousel__main .c-carousel__main-control-item:nth-child(1) {
    display: block;
}
  
.c-carousel__activator-main:nth-child(2):checked~.c-carousel__main .c-carousel__main-control-item:nth-child(2) {
    display: block;
}
  
.c-carousel__activator-main:nth-child(3):checked~.c-carousel__main .c-carousel__main-control-item:nth-child(3) {
    display: block;
}
  
.c-carousel__activator-main:nth-child(4):checked~.c-carousel__main .c-carousel__main-control-item:nth-child(4) {
    display: block;
}
    /* キャンペーン用スライダーの左右の矢印 終了 */

    /* キャンペーンスライドの位置設定 */
.c-carousel__activator-main:nth-child(1):checked~.c-carousel__main .c-carousel__main-track {
    transform: translateX(calc(-100% * 0));
}
  
.c-carousel__activator-main:nth-child(2):checked~.c-carousel__main .c-carousel__main-track {
    transform: translateX(calc(-100% * 1));
}
  
.c-carousel__activator-main:nth-child(3):checked~.c-carousel__main .c-carousel__main-track {
    transform: translateX(calc(-100% * 2));
}
  
.c-carousel__activator-main:nth-child(4):checked~.c-carousel__main .c-carousel__main-track {
    transform: translateX(calc(-100% * 3));
}
    /* キャンペーンスライドの位置設定 終了 */
  
/* お知らせ */
.notice h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 0.5rem;
    background: #ecebb6;
    margin-top: 3rem;
}

.news-list {
    list-style: none outside;
    margin: 0;
    padding: 0;
}
  
.news-list .item a {
    display: flex;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #CCC;
    padding: 20px 20px;
}
  
.news-list .item:first-child a {
    border-top: 1px solid #CCC;
}
  
.news-list .item .date {
    margin: 0;
    min-width: 120px;
    font-size: 16px;
    color: #999;
    padding: 0 20px 0 0;
}
  
.news-list .item .title {
    margin: 0;
    width: 100%;
}
  
.news-list .item a:hover .title {
    color: #00F;
}

/* 「メニューへ」のボタン */
.container {
    text-align: center;
    margin: 0 auto;
    width: 200px;
    margin-bottom: 30px;
}
  
.hover-effect_slide {
    position: relative;
    display: inline-block;
    padding: 0.6em 1.8em;
    font-size: 1rem;
    font-weight: bold;
    color: #183153;
    text-decoration: none;
    user-select: none;
    border: 4px #b8e1ec solid;
    transition: 0.2s ease;
    width: 100%;
    text-align: center;
    border-radius: 15px;
    margin-top: 20px;
    background: #b8e1ec;
}
  
.hover-effect_slide::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    content: "";
    background-color: #b8e1ec;
    transition: 0.2s ease;
}
  
.hover-effect_slide:hover {
    color: #fff;
    background-color: #b8e1ec;
}
  
.hover-effect_slide:hover::before {
    width: 100%;
    background: #b8e1ec;
}
  
/* メニューセクション */
.about {
    padding: 50px 0 30px 0;
    text-align: center;
}
  
.about h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 0.5rem;
    background: #ecebb6;
}
  
/* メニューの2カラムレイアウト */
.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* 画像とテキストの間にスペース */
    flex-wrap: wrap; /* モバイル表示時に縦並びにする */
    margin-top: 2.5rem;
}
  
.about-image {
    flex: 0 0 200px; /* 固定サイズで画像の幅を設定 */
    width: 200px;
    height: 200px;
    border-radius: 50%; /* 画像を円形にする */
    overflow: hidden; /* 画像が円形からはみ出さないように */
}
  
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を円形内に収める */
}
  
.about-text {
    flex: 1;
    max-width: 600px; /* テキストの最大幅設定 */
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}
  
/* 人気おむすび */
.ninki h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 0.5rem;
    background: #ecebb6;
}
  
.ninki ul {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: stretch;
}
  
.color-box01 {
    background: #e8b7d4;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}
  
.color-box01 img {
    width: 65%;
    height: 65%;
    border-radius: 20px;
    max-width: 100%;
    object-fit: cover;
}

.color-box02 {
    background: #f1d0b8;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.color-box02 img {
    width: 65%;
    height: 65%;
    border-radius: 20px;
    max-width: 100%;
    object-fit: cover;
}

.ninki li {
    list-style: none;
    text-align: center;
    width: calc(98% / 2);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* 限定おむすび */
.gentei h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 0.5rem;
    background: #ecebb6;
}
  
.gentei img {
    border: 5px solid #efb7b7;
    border-radius: 20px;
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin: 5px;
}
  
.gentei ul {
    display: flex;
    justify-content: center;
}
  
.gentei li {
    list-style: none;
    text-align: center;
}


.gentei1 h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 0.5rem;
    background: #ecebb6;
}
  
.gentei1 img {
    border: 5px solid #efb7b7;
    border-radius: 20px;
    width: 180px;
    height: 250px;
    object-fit: cover;
    margin: 5px;
}
  
.gentei1 ul {
    display: flex;
    justify-content: center;
}
  
.gentei1 li {
    list-style: none;
    text-align: center;
}


/* SNS */
.sns-icon img {
    width: 50px;
    height: 50px;
}
  
.sns-icon ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
  
.sns-icon li {
    list-style: none;
    text-align: center;
}
  
/* 住所、連絡先 */
.address {
    text-align: center;
    font-weight: 600;
    margin: 15px 30px;
}
  
.address img {
    max-width: 30%;
    margin-top: 20px;
    margin-bottom: 10px;
}
  
.address p {
    margin: 10px;
}

/* フッター */
.footer {
    background-color: #ecebb6;
    color: #ad5a0e;
    text-align: center;
    font-size: small;
    padding: 2.2rem 0;
    width: 100%;
    position: relative;
    bottom: 0;
}
  
/* ページトップボタン */
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 30px;
}

/***** メニューページ *****/
/* メニュー横並び */
.grid-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.menu-items {
  width: 50%;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.menu-items div {
  border-radius: 30px;
  padding-top: 2rem;
  padding-bottom: 1rem;
  flex-grow: 1;
  margin: 10px;
}

.bg-01 {
  background-color: #f1d0b8;
}

.bg-02 {
  background-color: #b8e1ec;
}

.bg-03 {
  background-color: #ecebb6;
}

.bg-05 {
  background-color: #efb7b7;
}

.bg-06 {
  background-color: #e8b7d4;
}

.menu-items img {
  width: 40%;
  border-radius: 20px;
}

.w100 {
  width: 100%;
}

/* メニューページ見出し */
.menu h2 {
  font-size: 1.3rem;
  margin-bottom: 30px;
  letter-spacing: 0.5rem;
  background: #ecebb6;
  padding: 3px;
  margin-top: 35px;
}

.menu p {
  text-align: center;
}

.kakakutai p {
  font-size: 1.5rem;
  font-weight: 600
}

.box {
  position: relative;
  margin: 2em 2em;
  padding: 2.5em 1em;
  border: solid 3px pink;
  border-radius: 50px;
}

.box .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  line-height: 1;
  font-size: 19px;
  background: pink;
  color: white;
  font-weight: bold;
  border-radius: 20px;
  padding: 10px;
}

.box p {
  margin: 20px 0;
}

.sake img {
  padding-top: 20px;
  max-width: 40%;
}

.balloon1-right-btm {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 0em;
  padding: 0 5px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  background: #f1d0b8;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon1-right-btm:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #f1d0b8;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.balloon2-right-btm {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 0em;
  padding: 0 5px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  background: #b8e1ec;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon2-right-btm:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #b8e1ec;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.balloon3-right-btm {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 0em;
  padding: 0 5px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  background: #ecebb6;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon3-right-btm:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #ecebb6;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.balloon5-right-btm {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 0em;
  padding: 0 5px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  background: #efb7b7;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon5-right-btm:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #efb7b7;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.balloon6-right-btm {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 0em;
  padding: 0 5px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  background: #e8b7d4;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon6-right-btm:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #e8b7d4;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* メニュー名・見出し */
.menu-items h4 {
    color: #333;
    font-weight: bold;
    line-height: 1.7;
    margin: 0.5rem 0;
}
  
/***** キャンペーンページ *****/
.campaign-h2 {
    color: #000;
    margin-top: 3rem;
    background: #ecebb6;
    font-size: 1.3rem;
    margin-bottom: 30px;
}
 
.campaign-h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 20px;
}
  
.text-list {
    text-align: left;
    width: 80%;
    margin: 0 auto;
    margin-top: 1rem;
}
  
.text-list ul {
    line-height: 1.5; /*文の行高*/
    padding: 0.5em 0; /*前後の文との余白*/
}

.text-list ul li{
    list-style: disc;
}
  
.campaign-img {
    display: block;
    margin: 2rem auto;
    max-width: 100%;
}
  
.discount {
    color: #e85862;
    font-size: 20px;
}

/***** 店舗案内ページ *****/
.shop-h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}
  
.shop-img {
    text-align: center;
}
  
.map {
    text-align: center;
}
  
.call {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 10rem;
    color: #e85862;
}

/* 横幅1000px以下で非表示にする */
@media screen and (max-width: 1000px) {
    .pc,
    .pc2,
    .pc3 {
      display: none;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-content h1 {
        font-size: 2em;
    }

    /* ハンバーガーメニューを右側に配置 */
    .hamburger-menu {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
    }

    /* ハンバーガーメニューをタップして、ナビゲーションを表示 */
    .nav.active {
        display: block;
    }
}

/* 横幅767px以下からスマホ表示 */
@media screen and (max-width: 767px) {


    /* メインコンテンツ */
    .main-content {
        text-align: left;
        margin: 5rem auto 2rem;
        max-width: 100%;
        width: 100%;
        padding: 0 2rem;
    }

    /* スマホ時の動画 */
    main video {
        margin-top: 70px;
        width: 100%;
    }

    /* おすすめメニューを縦並びに変更 */
    .about-content {
        flex-direction: column; /* モバイルでは縦並び */
    }

    /* お知らせの部分 */
    .news-list .item a {
        flex-wrap: wrap;
    }
    
    .news-list .item .date {
        min-width: 100px;
    }
    
    .news-list .item .title {
        margin-top: 10px;
    }

    .item {
        width: 98% ;
    }

    /* 人気おむすび */
    .color-box01 img, .color-box02 img{
        width: 100%;
        height: auto;
    }

    /* 限定おむすび */
    .gentei img {
        width: 150px;
        height: 150px;
    }

    /* フッター住所部分 */
    .address {
        text-align: center;
        margin: 15px 30px;
        font-size: large;
    }

    .address img {
        max-width: 60%;
    }

    .footer {
        font-size: small;
    }

    /***** メニューページ *****/
    .grid-box {
    display: block;
    text-align: center;
    }

    .sake img {
    padding-top: 20px;
    max-width: 60%;
    }

    .menu-items {
        width: 98%;
    }
}