@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #D1B994;
  margin: 0;
}

a {
  background-color: transparent;
  color: #000;
  text-decoration: none;
}

img {
  border-style: none;
}

li {
  list-style: none;
}

p, li {
  font-size: 20px;
}
h1, h2, h3, p, a, li, span, th, td, time {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 40px;
}

.w-container {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
}

/* ヘッダー */
#header {
  overflow: hidden; 

  /* ★ ヘッダーを浮かせ、スクロールと共に流れるように設定 ★ */
  position: absolute; 
  top: 0;        /* ページ上端に配置 */
  left: 0;       /* ページ左端に配置 */
  width: 100%;   /* ページの幅全体に広げる */
  z-index: 1000; /* 他のコンテンツの上に表示させる */
}

.header-container {
  margin: 35px 35px 0;
  position: relative;
  z-index: 10;
}

/* =======================================================
   2. ヘッダー内部のレイアウト
   ======================================================= */
.header-box {
  display: flex;
  justify-content: space-between; /* ロゴ、ナビ、リンクを左右に配置 */
  align-items: center; /* 垂直方向の中央揃え */
}

.header-logo {
  padding-left: 58px;
}

/* ナビゲーションの横並び */
.header-nav ul {
  display: flex;
  gap: 20px;
  list-style: none; /* リストの点を削除 */
  padding: 0;
  margin: 0;
  letter-spacing: 1px;

}

.header-nav ul li a {
  color: #fff;
  text-decoration: none;
}

/* =======================================================
   3. 電話番号と問い合わせボタン
   ======================================================= */
/* 電話番号 */
.header-tel {
  color: #fff;
  background-color: #675D50;
  /* padding: 33px 44px 33px 28px; は tel-number に適用するため削除 */
}
.tel-number {
  display: inline-block;
  color: #fff;
  padding: 33px 44px 33px 28px; /* ★ここでパディングを適用 */
  text-decoration: none; /* <a>タグではないが、念のため */
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;

}
.header-contact {
  background-color: #A9907E;
}
.header-contact a {
  display: block;
  color: #fff;
  padding: 33px 44px 33px 28px;
  letter-spacing: 1px;
}

/* =======================================================
   4. アイコン (::before 擬似要素)
   ======================================================= */
/* 電話アイコン */
.tel-number::before {
  content: '';
  background-image: url('../img/tel.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
}

/* メールアイコン */
.header-contact a::before {
  content: '';
  background-image: url('../img/mail.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
}

/* =======================================================
   5. メインタイトル
   ======================================================= */
.p1-main-title {
    position: relative;
    padding-top: 355px;
    padding-bottom: 400px;
    
    /* ヘッダーマージン分のスペースを上部に追加する例 */
    margin: 35px 35px 0;
    
    /* 画面端から 42px のマージンを確保する場合 */
    padding-left: 42px;
    padding-right: 42px;
    overflow: hidden; 
}

.p1-main-title h1 {
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.5em;
    
    /* 画像の上に重なるように調整 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: calc(100% - 84px);
    
    z-index: 999;
    margin: 0;
}

/* ---------------------------------------------------- */
/* スライドショーのスタイル */
/* ---------------------------------------------------- */
#slideshow-container {
  position: absolute; /* 親要素に対する絶対位置指定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* 他の要素より手前に表示 */
}

.slide {
  position: absolute; /* コンテナ内で重ねて配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover; /* 画像を要素全体に収まるように拡大縮小 */
  background-position: center; /* 画像を中央に配置 */
  opacity: 0; /* 非アクティブなスライドを透明にして非表示 */
  transition: opacity 1.5s ease-in-out; /* 1.5秒かけて透明度を変化させる（フェード効果） */
}

.slide.active {
  opacity: 1; /* アクティブなスライドを完全に表示 */
}

/* トップページ */
.notice-container {
  text-align: center;
  padding-top: 100px;
}

.notice-container {
  position: relative; /* 背景要素の基準点 */
  /* この div 自体の高さは、中のコンテンツの高さに合わせる */
}

.custom-background-shape {
  position: absolute; /* 親要素（.notice-container）を基準に配置 */
  top: 0px;             /* .notice-container の上端からスタート */
  left: 122px;            /* 左端からスタート（必要に応じて調整） */

  /* ご希望の長方形のサイズ */
  width: 279px;
  height: 1255px; 

  /* 背景を他の要素（下の要素含む）の背後に回す */
  z-index: -1; 
  
  /* --- ★ 画像の設定をここで行います ★ --- */
  background-image: url('../img/top-back.png'); /* 👈 画像ファイルのパスを指定 */
  background-size: cover;                        /* 👈 要素全体を覆うように画像を拡大・縮小 */
  background-repeat: no-repeat;                  /* 👈 画像が繰り返されないように設定 */
  background-position: center;                   /* 👈 画像を中央に配置 */
  /* -------------------------------------- */
}

.notice-box {
  max-width: 1020px;
  display: flex;
  margin: 0 auto;
}

article {
  display: flex; 
  align-items: center;
}

.entry-meta {
  margin-right: 72px;
}

article time, article h3 {
  font-size: 20px;
}

.notice-box h2 {
  font-size: 36px;
  margin-right: 90px;
}

.notice-box h2, .notice-box article {
  padding-bottom: 18px;
}

.notice-box article {
  flex-grow: 1;    /* 残りのスペースをすべて利用（右いっぱい）にする */
  flex-basis: auto; /* ベースサイズを自動にし、flex-growに任せる */
  max-width: 100%;
  border-bottom: 1px solid #B2B2B2;
}

.calendar-container {
  text-align: center;
  padding-top: 100px;
  background-image: url('../img/menu-back.png');
  background-repeat: no-repeat;
  background-position: right 90px top 68px;
}

/* カレンダー全体のスタイル */
.calendars {
  display: flex;
  gap: 4%;
}

.month-header button {
  display: none;
}

.xo-event-calendar table.xo-month .month-header {
  margin: 10px 0;
}

.xo-event-calendar table.xo-month .month-header>span {
  text-align: left;
  color: #fff;
}

.calendar-box {
  max-width: 1020px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.holiday-titles {
  display: flex;
  gap: 4px;
  margin-top: 5px;
  margin-left: 10px;
}

.holiday-title {
  display: flex;
  align-items: center;
}

.calendar-box .calendar {
  padding: 50px 18px 30px;
  background: rgba(177, 164, 76)
}

.xo-event-calendar p.holiday-title span {
  display: inline-block;
  padding: 10px 15px;
}


.p1-a {
  margin-top: 290px;
}

.p1-a-box {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.p1-a-text h2 {
  letter-spacing: 1px;
}

.p1-a-p {
  margin-top: 54px;
}

.p1-a-p p {
  line-height: 2em;
  letter-spacing: 1px;
}

.p1-b {
  padding-top: 116px;
  padding-bottom: 433px;

  background-image: 
    url('../img/top-back6.png'),
    url('../img/top-back3.png'), /* 1つ目の画像 */
    url('../img/top-back4.png'), /* 2つ目の画像 */
    url('../img/top-back5.png'); /* 3つ目の画像 */
    
  /* ------------------------------------------- */

  /* ------------------------------------------- */
  /* 3. background-position: 3つの画像の位置を指定（左から順） */
  /* topとbottom、leftとrightは同時に指定できないため、
      左からの位置指定は `left` を使い、下端揃えは `bottom` を使います。 */
  background-position: 
      /* 1つ目 (NEW): 左から 555px、下端から 0px の位置 */
      left 555px bottom 0,
      /* 1つ目: 左から 283px、下端から 0px の位置 */
      left 283px bottom 65px,  
      
      /* 2つ目: 左から 733px、下端から 0px の位置 */
      left 733px bottom 0,  
      
      /* 3つ目: 右から 97px、下端から 0px の位置 */
      right 97px bottom 98px;  

  /* ------------------------------------------- */
  /* 4. background-repeat: 繰り返さない設定（3つ分） */
  background-repeat: 
      no-repeat,
      no-repeat,
      no-repeat,
      no-repeat;
}

.p1-b-box {
  display: flex;
  justify-content: center;
  gap: 80px;

  background-image: url('../img/top-back6.png'); /* 👈 画像ファイルのパスを指定 */
    
  /* 位置の調整: 中央 (水平方向) かつ上から 50px (垂直方向) */
  /* X軸(水平) Y軸(垂直) の順で指定します */
  background-position: center 50px; 
  
  background-repeat: no-repeat; /* 画像が繰り返されないように設定 */
  
  /* 画像のサイズ調整（任意: 必要に応じて調整） */
  /* background-size: 200px auto; */
}

.p1-b-text {
  padding-top: 174px;
}

.p1-b-p {
  margin-top: 60px;
}

.p1-b-p p {
  letter-spacing: 1px;
  line-height: 2em;
}

.p1-b-link {
  margin-top: 100px;
}


.p1-c {
  padding-top: 162px;
  padding-bottom: 200px;
}

.p1-c-box {
  display: flex;
  justify-content: center;
  gap: 80px;
  background-image: url('../img/top-back7.png');
  background-repeat: no-repeat;
  background-position: calc(50% - 600px) bottom;
}

.p1-c-title h2 {
  writing-mode: vertical-rl;
  letter-spacing: .3em;
  line-height: 2em;
}

.p1-c-p p {
  letter-spacing: 1px;
  line-height: 2em;
}

.p1-c-link {
  margin-top: 80px;
}

.p1-d {
  position: relative;
  background-image: url('../img/top-access.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 72px;
}

.p1-d-title {
  position: absolute; 
  top: 0; 
  left: 50%;
  transform: translateX(-50%) translateY(-50%); 
  z-index: 10;
}

.p1-d-title h2 {
  writing-mode: vertical-rl;
  letter-spacing: .3em;
  line-height: 2em;
  margin-left: auto;
  margin-right: auto;
}

.p1-d-item {
  max-width: 1230px;
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-left: auto;
  margin-right: auto;
}

.p1-d-itembox {
  width: 100%;
}

.p1-d-img {
  padding-top: 240px;
}

.p1-b-img-sp {
  display: none;
}

.p1-d-contact {
  padding-top: 44px;
  text-align: center;
}

.p1-d-contact p {
  letter-spacing: 1px;
}

.p1-d-contact p:first-child {
  line-height: 2em;
  padding-bottom: 20px;
}

.p1-d-contact-text {
  display: inline-block;
  padding-top: 18px;
  padding-bottom: 32px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.p1-d-contact-text p:first-child {
  line-height: 2em;
}

.p1-d-contact-text p:nth-of-type(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 500;
}

.p1-d-contact-text p:nth-of-type(2)::before {
  content: '';
  background-image: url('../img/tel2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  margin-right: 16px;
}

.p1-d-contact-link {
  display: inline-block;
}

.p1-d-contact-link a {
  display: inline-block;
  color: #fff;
  background-color: #A9907E;
  padding: 30px 62px 30px 57px;
  margin-top: 15px;
  letter-spacing: 1px;
}

.p1-d-contact-link a::before {
  content: '';
  background-image: url('../img/mail.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 27px;
  vertical-align: middle;
}

.p1-d-table {
  padding-bottom: 46px;
  border-bottom: 1px solid #000;
  padding-top: 34px;
}

.p1-d-table tr th, .p1-d-table tr td {
  font-size: 20px;
  padding: 20px 0;
}

.p1-d-table tr th {
  width: 21%;
  font-weight: 400;
  text-align: left;
  padding: 20px 0;
}

.p1-d-link {
  text-align: center;
  margin-top: 60px;
}

.p1-e {
  margin: 180px auto;
}

.p1-e-box {
  max-width: 1280px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.p1-e-box iframe {
  /* 幅を親要素の100%にする */
  width: 100%;
  
  /* 縦横比を1280:879で固定する */
  /* ほとんどのモダンブラウザでサポートされています */
  aspect-ratio: 1280 / 879;
}

.p1-f {
  padding: 90px 0;
  background-image: url("../img/top-back8.png"),url("../img/top-back9.png"),url("../img/top-contact.png");  
  background-repeat: no-repeat;
  background-position: calc(50% - 521px) calc(100% - 60px),calc(50% + 620px) 150px,center top;  
  background-size: auto,auto,cover;
}

.p1-f-box {
  color: #fff;
  text-align: center;
}

.p1-f-title h2 {
  letter-spacing: 4px;
  line-height: 2em;
}

.p1-f-contact {
  margin-top: 50px;
  margin-bottom: 17px;
}

.p1-f-text p {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.8em;
}

.p1-f-text p:first-child {
  margin-bottom: 26px;
}


/* メニュー */
.p2-main-container {
  text-align: center;
  background-image: url("../img/sub-title-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 258px;
  padding-bottom: 200px;
  margin: 35px 35px 0;
}

.p2-main-title h1 {
  color: #fff;
}

.p2-a {
  text-align: center;
  margin-top: 87px;
}

.p2-a-title {
  position: relative;
  padding-top: 35px;
  padding-bottom: 35px;
}

.p2-a-title {
  /* 背景画像の設定 */
  background-image: url("../img/menu-back.png");
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 20%) calc(50% - 30%);
}

.p2-a-title::before {
  content: ''; 
  width: 78px;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.p2-a-item {
  margin-top: 56px;
}

.p2-a-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 56px;
}

.p2-a-text {
    width: 700px;
    background-image: url("../img/menu-text-back.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 28px 70px 80px 70px;
    /* 右にずらし、画像を 36px 食い込ませる */
    margin-top: 45px;
    margin-right: -36px; 
    /* 重ね順を画像の下にする */
    position: relative; 
    z-index: 10;
}

.p2-a-img {
    /* 重ね順を text の上にする */
    position: relative;
    z-index: 20; 
}

.p2-a-text-p {
  position: relative;
  font-size: 16px;
}

.p2-a-text-p::before {
  content: '';
  display: block;
  height: 1px;
  background-color: #000;
  width: 30%; 
  position: absolute;
  top: 50%;
  left: 0;
}

.p2-a-text-p::after {
  content: '';
  display: block;
  height: 1px;
  background-color: #000;
  width: 30%; 
  position: absolute;
  top: 50%;
  right: 0;
}

.p2-a-text-title {
  display: flex;
  justify-content: space-evenly;
  padding-top: 30px;
  padding-bottom: 48px;
}

.p2-a-text-title h3 {
  font-size: 24px;
}

.p2-a-text-box p {
  padding-bottom: 20px;
}

.p2-a-text-box p:last-child {
  padding-bottom: 0;
}
/*  */


.p2-a-item2 {
  margin-top: 56px;
}

.p2-a-item2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 56px;
}

.p2-a-text2 {
    width: 700px;
    background-image: url("../img/menu-text-back.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 28px 70px 80px 70px;
    /* 右にずらし、画像を 36px 食い込ませる */
    margin-top: 45px;
    margin-left: -36px; 
    /* 重ね順を画像の下にする */
    position: relative; 
    z-index: 10;
}

.p2-a-img2 {
    /* 重ね順を text の上にする */
    position: relative;
    z-index: 20; 
}

.p2-a-text-p2 {
  position: relative;
  font-size: 16px;
}

.p2-a-text-p2::before {
  content: '';
  display: block;
  height: 1px;
  background-color: #000;
  width: 30%; 
  position: absolute;
  top: 50%;
  left: 0;
}

.p2-a-text-p2::after {
  content: '';
  display: block;
  height: 1px;
  background-color: #000;
  width: 30%; 
  position: absolute;
  top: 50%;
  right: 0;
}

.p2-a-text-title2 {
  display: flex;
  justify-content: space-evenly;
  padding-top: 30px;
  padding-bottom: 48px;
}

.p2-a-text-title2 h3 {
  font-size: 24px;
}

.p2-a-text-box2 p {
  padding-bottom: 20px;
}

.p2-a-text-box2 p:last-child {
  padding-bottom: 0;
}

.p2-a-item .huyu1 {
  padding-bottom: 10px;
}

.p2-a-item2 .huyu2 {
  padding-bottom: 53px;
  margin-top: 160px;
}

.p2-a-item .huyu3 {
  padding-bottom: 50px;
  margin-top: 214px;  
}

.p2-a-text-p3 {
  font-size: 16px;
}

.p2-a-box2 {
  position: relative;
  margin-bottom: 236px;
}

.p2-a-img3 {
    position: absolute;
    left: 50%;
    transform: translateX(-40%);
    bottom: -87px;
    z-index: 30;
}

.p2-b-item {
  max-width: 1240px;
  display: flex;
  justify-content: center;
  margin-top: 56px;
  margin-right: auto;
  margin-left: auto;
}

.p2-b-text p:last-child {
  text-align: left;
  letter-spacing: 1px;
  line-height: 2em;
}

.p2-b-p {
  position: relative;
  font-size: 16px;
}

.p2-b-p::before {
  content: '';
  display: block;
  height: 1px;
  background-color: #000;
  width: 22%; 
  position: absolute;
  top: 50%;
  left: 4%;
}

.p2-b-p::after {
  content: '';
  display: block;
  height: 1px;
  background-color: #000;
  width: 22%; 
  position: absolute;
  top: 50%;
  right: 4%;
}

.p2-b-title {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.p2-b-title h3 {
  font-size: 24px;
  margin-bottom: 7px;
}

.p2-b-title-box {
  text-align: left;
  margin-bottom: 33px;
}

.p2-b-title-box p {
  font-size: 16px;
}

.p2-b-img p {
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 4px;
}

.p2-a-box .p2-b-item2 {
  justify-content: flex-start;
  gap: 24px;
}

.p2-a-box .p2-b-item2 .p2-b-text, .p2-a-box .p2-b-item .p2-b-text {
  width: 100%;
}

.p2-a-box .p2-b-item2 .p2-b-text .p2-b-title {
  gap: 90px;
}

.p2-a-box .p2-b-item2 .p2-b-text p:last-child {
  letter-spacing: 1px;
  line-height: 2em;
}

.p2-c {
  max-width: 1240px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

.p2-c-title {
  position: relative;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 22px;
  margin-bottom: 25px;
}

.p2-c-title {
  /* 背景画像の設定 */
  background-image: url("../img/menu-back.png");
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 33%) top;
}

.p2-c-title::before {
  content: ''; 
  width: 78px;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.p2-c-item {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.p2-c-text p {
  line-height: 2em;
}

.p2-c-text-h3 {
  display: flex;
  gap: 150px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.p2-c-text-h3 h3 {
  font-size: 24px;
}

.p2-c-text-box {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.p2-c-text-box p {
  font-size: 16px;
}

.p2-d {
  max-width: 1280px;
  margin-top: 100px;
  margin-bottom: 84px;
  margin-left: auto;
  margin-right: auto;
}

.p2-d-title {
  position: relative;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 22px;
  margin-bottom: 25px;
}

.p2-d-title {
  /* 背景画像の設定 */
  background-image: url("../img/menu-back.png");
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 33%) top;
}

.p2-d-title::before {
  content: ''; 
  width: 78px;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.p2-d-title2 {
  text-align: center;
  margin-top: 20px;
}

.p2-d-title2 h3 {
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 0; 
  position: relative; 
  margin-bottom: 44px; 
}

.p2-d-title2 h3::before {
  content: '';
  display: block; 
  height: 1px;
  background-color: #000;
  flex-grow: 1; 
}

.p2-d-title2 h3::after {
  content: '';
  display: block;
  height: 1px;
  background-color: #000;
  flex-grow: 1; 
}

.p2-d-title2 p {
  letter-spacing: 1px;
  line-height: 2em;
  margin-bottom: 44px;
}

.p2-d-item {
  display: flex;
  justify-content: space-between;
}

.p2-d-item-box {
  width: 45%;
}

.p2-d-item-box p {
  position: relative;
  text-align: center;
  font-size: 24px;
  padding-bottom: 15px;
}

.p2-d-item-box p::before {
  content: ''; 
  width: 78px;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.p2-d-item-box table {
  width: 100%;
  margin-top: 32px;
}

.p2-d-item-box table tr th, .p2-d-item-box table tr td {
  font-size: 24px;
  padding-bottom: 40px;
}

.p2-d-item-box table tr {
  width: 100%;
}

.p2-d-item-box table tr th {
  text-align: left;
  font-weight: 400;
}

.p2-d-item-box table tr td {
  text-align: right;
}

.p2-d-box .p2-d-item2 {
  margin-top: 5px;
}

.p2-d-item-box .p2-d-item-box-p {
  font-size: 16px;
  margin-top: 95px;
}

.p2-d-item-box .p2-d-item-box-p::before {
  display: none;
}


/* 当店のこだわり */
.p3-a {
  background-image: url("../img/top-back.png");
  background-repeat: no-repeat;
  background-position: 50px top; 
  background-size: 209px 297px; 
  padding-top: 87px;
}

.p3-a-title {
  text-align: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.p3-b-title {
  text-align: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.p3-c-title {
  text-align: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.p3-d-title {
  text-align: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.p3-a-title {
  background-image: url(../img/menu-back.png);
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 20%) calc(50% - 30%);
}

.p3-b-title {
  background-image: url(../img/menu-back.png);
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 14%) calc(50% - 30%);
}

.p3-c-title {
  background-image: url(../img/menu-back.png);
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 12%) calc(50% - 30%);
}

.p3-d-title {
  background-image: url(../img/menu-back.png);
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 12%) calc(50% - 30%);
}

.p3-a-item {
  display: flex;
  justify-content: flex-end;
  gap: 38px;
}

.p3-a-text-box h3,.p3-a-text-box2 h3, .p3-a-text-box3 h3 {
  font-size: 32px;
  padding-top: 25px;
  padding-left: 36px;
}

.p3-a-text-box, .p3-a-text-box2 {
  margin-bottom: 50px;
}

.p3-a-text-box {
  background-image: url("../img/01.png");
  background-repeat: no-repeat;
  background-position: left top;
}

.p3-a-text-box2 {
  background-image: url("../img/02.png");
  background-repeat: no-repeat;
  background-position: left top;
}

.p3-a-text-box3 {
  background-image: url("../img/03.png");
  background-repeat: no-repeat;
  background-position: left top;
}

.p3-a-text-box h3 {
  margin-bottom: 22px;
}

.p3-a-text-box p {
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 2em;
  padding-left: 36px;
}

.p3-box {
  margin-top: 88px;
}

.p3-item {
  display: flex;
  gap: 46px;
  margin-top: 30px;
}

.p3-text {
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 2em;
}

.p3-box-box2 .p3-item {
  justify-content: flex-end;
}

.p3-box-box3 .p3-item:nth-child(3) {
  justify-content: flex-end;
}

.p3-item h3 {
  font-size: 32px;
  margin-top: 18px;
  margin-bottom: 37px;
}

.p3-box2 {
  margin-bottom: 128px;
}

/* 四季 */
.p4-a {
  max-width: 1310px;
  margin: 120px auto 200px auto;
}

.p4-a-item {
  display: flex;
  gap: 64px;
}

.p4-a-text {
  display: flex;
}

.p4-a-text-p p {
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 2em;
  padding-left: 32px;
  border-left: 1px solid #000;
  margin-left: 32px;
}

.p4-a-text-p p span {
  display: inline-block;
  padding-bottom: 30px;
}

.p4-a-box .p4-a-item2 {
  margin-top: 48px;
}

.p4-a-item .p4-a-text-p2 p {
  padding-bottom: 60px;
}

.p4-b {
  text-align: center;
  margin-bottom: 240px;
}

.p4-b-title {
  background-image: url(../img/menu-back.png);
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 12%) calc(50% - 30%);
  padding-top: 34px;
  padding-bottom: 10px;
}

.p4-b-item span {
  display: inline-block;
  font-size: 32px;
  padding-bottom: 10px;
  padding-left: 210px;
  padding-right: 210px;
  border-bottom: 1px solid #000;
  margin-top: 38px;
}

.p4-b-item p {
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 2em;
  padding-top: 30px;
  padding-bottom: 30px;
}


/* お客様の声 */
.p5-a {
  text-align: center;
  margin-top: 90px;
}

.p5-a-title {
  background-image: url(../img/menu-back.png);
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 300px) calc(50% - 30%);
  padding-top: 22px;
}

.p5-a-text {
  margin-top: 58px;
}

.p5-a-text p {
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 2em;
}

.p5-b {
  max-width: 1280px;
  margin: 0 auto 80px;
}

.p5-b-item {
  display: flex;
  justify-content: space-between;
  margin-top: 46px;
}

.p5-b-item-box {
  width: 596px;
  height: 215px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-image: url('../img/voice-back1.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 20px;
}

.p5-b-item-box p {
  text-align: center;
  letter-spacing: 1px;    
  line-height: 2em;
}

.p5-b-item-box span {
  position: absolute;
  right: -20px;
  bottom: -20px;
  letter-spacing: 1px;
  color: #fff;
  background-color: #675D50;
  z-index: 10;
  padding: 20px 10px;
}

.p5-c {
  max-width: 1280px;
  margin: 0 auto 120px;
}

.p5-c-title {
  text-align: center;
  background-image: url(../img/menu-back.png);
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 300px) ;
  padding-top: 32px;
  margin-bottom: 12px;
}

.p5-c-item {
  margin-top: 40px;
}

.p5-c-q p, .p5-c-a p {
  letter-spacing: 1px;
}

.p5-c-q p {
  font-size: 32px;
  color: #fff;
  background-color: #A9907E;
  padding: 20px 25px;
}

.p5-c-a p {
  font-size: 24px;
  line-height: 1.5em;
  padding-top: 20px;
  padding-left: 25px;
}

.p5-c-a span {
  display: inline-block;
  padding-top: 20px;
}

/* お取り寄せ */
.p6-a {
  max-width: 1580px;
  margin-top: 37px;
  margin-left: auto;
}

.p6-a-title {
  background-image: url(../img/top-back.png);
  background-repeat: no-repeat;
  background-position: 50px top;
  background-size: 209px 297px;
  padding-top: 90px;
}

.p6-a-title h2 {
  letter-spacing: 1px;
  line-height: 1.5em;
  text-align: center;
  background-image: url(../img/menu-back.png);
  background-repeat: no-repeat;
  background-position: calc(50% + 300px) top;
  padding-top: 22px;
}

.p6-a-item {
  display: flex;
  justify-content: flex-end;
  gap: 55px;
}

.p6-a-text h3 {
  font-size: 32px;
  letter-spacing: 1px;
  margin-top: 37px;
  margin-bottom: 14px;
}

.p6-a-text p {
  letter-spacing: 1px;
  line-height: 2em;
}

.p6-a-text-box {
  text-align: center;
  margin-top: 84px;
}

.p6-a-text-box span {
 position: relative;
  display: inline-block;
  color: #fff;
  letter-spacing: 3px;
  background-color: #675D50;
  padding: 36px 44px 36px 66px;
}

.p6-a-text-box span:first-child {
  margin-right: 28px;
}

.p6-a-text-box span:first-child::before {
    content: url('../img/tel.png');
    display: inline-block; 
    width: 20px;
    height: 20px;
    position: absolute;
    left: 23px;
    top: 50%; 
    transform: translateY(-50%);
}

.p6-a-text-box span:last-child::before {
    content: url('../img/fxa.png');
    display: inline-block; 
    width: 20px;
    height: 20px;
    position: absolute;
    left: 23px;
    top: 50%; 
    transform: translateY(-50%);
}

.p6-a-text-p {
  text-align: center;
  margin-top: 68px;
}

.p6-a-text-p p {
  letter-spacing: 1px;
  line-height: 2em;
}

.p6-b {
  max-width: 1240px;
  margin: 68px auto 180px;
}

.p6-b-title {
  text-align: center;
  background-image: url(../img/menu-back.png);
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 260px) top;
  padding-top: 22px;
  margin-bottom: 47px;
}

.p6-b-item {
  display: flex;
  gap: 63px;
  margin-top: 40px;
}

.p6-b-text h3 {
  font-size: 32px;
}

.p6-b-text p {
  letter-spacing: 1px;
  line-height: 2em;
  margin-top: 20px;
}


/* 店舗案内 */
.p7-a {
  background-image: url(../img/menu-text-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 65px;
  padding-bottom: 80px;
}

.p7-a-title {
  text-align: center;
  background-image: url(../img/menu-back.png);
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 170px) top;
  padding-top: 43px;
}

.p7-a-box .p7-a-item {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.p7-a-item .p1-d-img, .p7-a-item .p1-d-itembox {
  width: 47%;
}

.p7-a-item .p1-d-contact-text {
  border-bottom: none;
}

.p7-a-item .p1-d-contact {
  width: 100%;
}

.p7-a-item .p1-d-table {
  width: 100%;
  border-top: 1px solid #000;
}

.p7-a-item .p1-d-table .p7-a-td {
  font-size: 16px;
  line-height: 2em;
}

.p7-a-item .p1-d-table tr th {
  vertical-align: top;
  width: 26%;
}

.p7-a-item .p1-d-table tr td {
  line-height: 2em;
}

.p7-b {
  margin-top: 80px;
  margin-bottom: 100px;
}

.p7-b-box {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.p7-b-title {
  text-align: center;
  background-image: url(../img/menu-back.png);
  background-repeat: no-repeat;
  background-size: 322px 68px;
  background-position: calc(50% + 210px) top;
  padding-top: 22px;
}

.p7-b-text {
  margin-top: 50px;
}

.p7-b-text h3 {
  font-size: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid #000;
}

.p7-b-text p {
  letter-spacing: 1px;
  line-height: 2em;
}

.p7-b-text p:first-of-type {
  margin-top: 14px;
}

.p7-b-text p:nth-of-type(2) {
  margin-top: 40px;
}

.p7-c {
  background-image: url(../img/menu-text-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 180px;
  padding-bottom: 130px;
}

.p7-c-box {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.p7-c-title {
  display: flex;
  gap: 40px;
}

.p7-c-title-img {
  margin-top: 65px;
}

.p7-c-title-box {
  width: 100%;
}

.p7-c-title-box h2 {
  text-align: center;
  background-image: url(../img/top-back9.png);
  background-repeat: no-repeat;
  background-size: 228px 57px;
  background-position: calc(50% + 140px) top;
  padding-top: 40px;
  margin-bottom: 110px;
}

.p7-c-title-text h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.p7-c-title-text p {
  letter-spacing: 1px;
  line-height: 2em;
}

.p7-c-item {
  max-width: 1015px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 55px;
}

.p7-c-item p {
  letter-spacing: 1px;
  line-height: 2em;  
}

.p7-d {
  margin-bottom: -10px;
}

.p7-d-img img {
  width: 100%;
}

/* お知らせ */
.single-main-container {
  margin-bottom: 87px;
}

.single-f-container {
  margin-top: 180px;
}

.single article {
  max-width: 1000px;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}

.entry-header {
  padding-bottom: 40px;
}

.entry-content p {
  text-align: left;
}

.entry-content img {
  margin-top: 20px;    /* 画像の上に余白 */
  margin-bottom: 20px; /* 画像の下に余白 */
  
  /* ※ 必要に応じて画像を中央寄せにする */
  display: block;
  margin-left: auto;
  margin-right: auto;
  
  /* 画像が本文幅より広くなるのを防ぐ */
  max-width: 100%; 
  height: auto;
}



/* フッター */
footer {
  position: relative;
  background-image: url(../img/top-access.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-container {
  padding-top: 100px;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-bottom: 150px;
}

.copy-right {
  text-align: center;
  padding-bottom: 30px;
}

.top-botan {
  position: absolute;
  right: 20%; 
  bottom: 10%;
}


/* 予約 */
.contact-form-table {
  max-width: 940px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 85px;
}

 .contact-form-table tr th, .contact-form-table tr td {
  padding-bottom: 13px;
  border-bottom: 1px solid #DDDDDD;
  padding-top: 20px;
}

.contact-form-table tr:nth-child(2) th, 
.contact-form-table tr:nth-child(2) td, .contact-form-table tr:nth-child(4) th, 
.contact-form-table tr:nth-child(4) td, .contact-form-table tr:nth-child(6) th, 
.contact-form-table tr:nth-child(6) td, .contact-form-table tr:nth-child(10) th, 
.contact-form-table tr:nth-child(10) td, .contact-form-table tr:nth-child(14) th, 
.contact-form-table tr:nth-child(14) td,.contact-form-table tr:nth-child(16) th, 
.contact-form-table tr:nth-child(16) td {
    border-bottom: none;
}

.contact-form-table textarea {
  width: 363px;
  height: 167px;
  box-sizing: border-box;
}

.contact-form-table {
  /* これを追加することで、セルとセルの間のボーダーが一本に結合します */
  border-collapse: collapse;
}

.contact-form-table tr .contact-td {
  padding-top: 0;
}

.contact-form-table tr th {
  width: 52%;
  vertical-align: top;
}

.contact-form-table tr p {
  font-size: 24px;
  text-align: left;
}

.contact-form-table tr p .contact-span {
  display: inline-block;
  color: #ffffff;
  background-color: #C70000;
  padding: 17px 30px;
  margin-right: 10px;
}

.contact-form-table tr p span, .contact-form-table .contact-td p {
  font-size: 16px;
}

.contact-form-table input[type="text"],
.contact-form-table input[type="email"],
.contact-form-table input[type="tel"],
.contact-form-table input[type="number"] {
    width: 363px;
    height: 40px;
    box-sizing: border-box;
}

.contact-td input[type="text"] {
  width: 330px;
  height: 40px;
  box-sizing: border-box;
}

.contact-td2 input[type="text"],.contact-form-table select {
  width: 183px;
  height: 40px;
  box-sizing: border-box;
}

.contact-form-table .wpcf7-list-item-label {
    display: flex; 
    align-items: center;
    padding-left: 0;
    cursor: pointer;
    white-space: nowrap;
}

.contact-form-table input[type="checkbox"] {
    position: absolute;
    opacity: 0; 
}

.contact-form-table .wpcf7-list-item-label::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-color:#ffffff;
    border-radius: 50%; 
    border: 2px solid #B2B2B2;
    margin-right: 10px;
}

.contact-form-table input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background-color: #000000; 
}

.contact-form-table .wpcf7-list-item-label {
    font-size: 24px; /* ここで24pxが指定されています */
}

.contact-form-table + p input[type="submit"] {
  font-size: 16px;
  background-color: #5F6F52;
  color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 24px 92px;
  display: block;
  margin: 20px auto 0 auto;
}



/* 消してる要素 */
.header {
  display: none;
}

.p1-main-title-sp {
  display: none;
}

.br {
  display: none;
}

.fixed-footer-bar {
  display: none;
}


@media screen and (max-width: 1199px) {
  /* トップ */
  .p1-a-box {
    gap: 4%;
  }

  .p1-b-box {
    gap: 4%;
  }

  /* 店舗案内 */
  .p7-a-item .p1-d-img, .p7-a-item .p1-d-itembox {
    width: auto;
  }

  /* お品書き */
  .p2-b-p::after, .p2-b-p::before {
    width: 10%;
  }

  /* 四季 */
  .p4-a-item {
    gap: 4%;
  }
}

@media screen and (max-width: 980px) {
  /* お品書き */
  .p2-b-item {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 50px;
  }

  .p2-b-text p:last-child {
    text-align: center;
  }

  .p2-b-img {
    margin-top: 15px;
  }

  .p2-b-title {
    justify-content: space-around;
  }

  .p2-a-box .p2-b-item2 {
    flex-direction: column;
    gap: 0;
  }

  .p2-b-p::after, .p2-b-p::before {
    width: 22%;
  }

  .p2-c-item {
    text-align: center;
    flex-direction: column-reverse;
  }

  .p2-c-text-h3 {
    justify-content: center;
    margin-top: 0;
  }

  .p2-c-img {
    margin-top: 15px;
  }

  .p2-d-item {
    flex-direction: column;
    align-items: center;
  } 

  .p2-d-item-box {
    width: 100%;
  }
}

@media screen and (max-width: 930px) {


  /* ヘッダー */
  .header-container {
    display: none;
  }

  .header {
    display: block;
  }

  .header {
    z-index: 1000; /* 他のコンテンツの上に表示させる */
  }

  .hamburger {
    display: block;
    height: 59px;
    margin-left: auto;
    position: relative;
    z-index: 1110;
    width: 59px;
    border: none;
    background-color: #A9907E;
  } 
  .hamburger.-active .hamburger__line {
      background-color: transparent;
  }
  .hamburger.-active .hamburger__line::before {
      top: 0;
      transform: rotate(45deg);
  }
  .hamburger.-active .hamburger__line::after {
      top: 0;
      transform: rotate(-45deg);
  }
  .hamburger.-active .hamburger__text::before {
    content: '閉じる';
  }
  .hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    /* 修正箇所: 59pxの中央になるように計算 */
    top: 28.5px; 
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background-color: #fff;
    transition: 0.4s;
  }
  .hamburger__line:before,
  .hamburger__line:after {
      content: "";
      display: block;
      height: 100%;
      position: absolute;
      width: 100%;
      background-color: #fff;
      transition: inherit;
  }
  .hamburger__line:before {
      top: -6px;
  }
  .hamburger__line:after {
      top: 6px;
  }
  .hamburger__text {
      position: absolute;
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
  }
  .hamburger__text::before {
      content: "メニュー";
      text-align: center;
      color: #172e59;
      font-size: 10px;
      font-weight: 900;
  }
  .header {
    position: fixed;
    width: 59px;   /* ハンバーガーボタンのサイズに固定 */
    height: 59px;  /* ハンバーガーボタンのサイズに固定 */
    top: 35px;     /* 上からの位置を固定 */
    right: 35px;   /* 右からの位置を固定 */

    left: auto !important;
  }
  .header__nav-area {
      position: fixed;
      top: 0;
      left: -100%;
      z-index: 1100;
      height: 100vh;
      width: 100vw;
      visibility: hidden;
      padding-top: 60px;
      background-image: url(../img/menu-text-back.png);
      background-repeat: no-repeat;
      background-size: cover;
      transition: 0.4s;
  }
  .header__nav-area.-active {
    left: 0;
    visibility: visible;
  }
  .global-navigation {
      padding-top: 40px;
      padding-right: 25px;
      padding-bottom: 120px;
      padding-left: 25px;
  }
  .global-navigation__list > li {
      padding-bottom: 20px;
  }
  .global-navigation__list > li + li {
    margin-top: 20px;
  }
  .global-navigation__link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 900;
    transition: color 0.4s;
    font-size: 24px;
  }
  .global-navigation__link.-accordion {
      position: relative;
      background: none;
      border: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 100%;
      padding: 0;
  }
  .global-navigation__link.-accordion::after {
      content: '';
      display: block;
      height: 12px;
      position: absolute;
      top: 50%;
      right: 5px;
      width: 2px;
      background-color: #ed3242;
      transform: translateY(-50%);
      transition: transform 0.4s;
  }
  .global-navigation__link.-accordion::before {
      content: '';
      display: block;
      height: 2px;
      position: absolute;
      top: 50%;
      right: 0;
      width: 12px;
      background-color: #ed3242;
      transform: translateY(-50%);
      
  }
  .global-navigation__link.-active::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .accordion {
      height: 0;
      overflow: hidden;
      visibility: hidden;
      transition: 0.4s;
  }
  .accordion.-active {
      height: auto;
      padding-top: 30px;
      visibility: visible;
  }
  .accordion__list li {
      font-size: 0.75rem;
  }
  .accordion__list li + li {
      margin-top: 21px;
  }
  .accordion__link {
      color: #172e59;
  }

  /* トップ */
  .p1-main-title-sp {
    display: block;
    position: absolute;
    top: 34px;
    left: 18px;
    z-index: 99;
  }

  .custom-background-shape {
    left: 0;
    width: 106px;
    height: 119px;
  }

  .calendar-container {
    background-image: none;
  }

  .notice-container {
    background-image: url(../img/top-back2.png);
    background-repeat: no-repeat;
    background-size: 90px 38px;
    background-position: right;
  }

  .notice-box {
    justify-content: center
  }

  .calendar-container {
    padding-top: 52px;
  }

  .calendars, .holiday-titles {
    max-width: 364px;
    margin-left: auto;
    margin-right: auto;
  } 

  .calendars {
    flex-direction: column;
    gap: 20px;
  }

  .p1-a {
    margin-top: 88px;
  }

  .p1-a-box {
    flex-direction: column-reverse;
    align-items: center;
  }

  .p1-a-p {
    margin-top: 30px;
  }

  .p1-a-img {
    margin-top: 30px;
  }

  .p1-a-img img {
    width: 100%;
  }

  .p1-b-box{
    flex-direction: column-reverse;
    align-items: center;
    background-image: none;
  }

  .p1-b-text {
    padding-top: 0;
  }

  .p1-b-img {
    display: none;
  }

  .p1-b {
    background-image: none;
    padding-top: 90px;
    padding-bottom: 106px;
  }

  .p1-b-p {
    margin-top: 30px;
  }

  .p1-b-link {
    text-align: center;
  }

  .p1-b-img-sp {
    width: 100%;
    text-align: center;
    display: block;
    background-image: url(../img/top-back6.png), url(../img/top-back6.png), url(../img/top-back5.png);
    background-size: 108px 103px, 77px 74px, 299px 75px; 
    background-repeat: no-repeat;
    background-position: calc(50% + 20px) top, calc(50% + 140px) bottom, calc(100% + 150px) 60%;
    margin-top: 30px;
  }

  .p1-b-link {
    margin-top: 55px;
  }

  .p1-c {
    padding-top: 0;
    padding-bottom: 180px;
  }

  .p1-c-box {
    flex-direction: column;
    align-items: center;
  }

  .p1-c-title {
    width: 100%;
    display: flex;
    justify-content: center;
    background-image: url(../img/top-back7.png);
    background-size: 241px 51px; 
    background-repeat: no-repeat;
    background-position: calc(50% - 82px) calc(100% - 105px);
  }

  .p1-c-link {
    text-align: center;
    margin-top: 54px;
  }

  .p1-d {
    padding-bottom: 60px;
  }

  .p1-d-item {
    flex-direction: column-reverse;
    align-items: center;
    gap: 38px;
  }

  .p1-d-contact {
    padding-top: 112px;
  }

  .p1-d-table {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .p1-d-img {
    padding-top: 0;
  }

  .p1-d-link {
    margin-top: 38px;
  }

  .p1-e {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .p1-f {
    background-image: none, none, url(../img/top-contact.png);
    padding-top: 0;
    padding-bottom: 0;
  }

  .p1-f-box {
    background-image: url(../img/top-back8.png), url(../img/top-back9.png);
    background-repeat: no-repeat;
    background-position: right calc(100% + -25px), -20px 50px;
    background-size: 96px 92px,165px 42px;
    padding-top: 66px;
    padding-bottom: 57px;
  }

  /* お品書き */
  .p2-main-container {
    position: relative;
  }
  .p2-a-item {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 30px;
  }

  .p2-a-item2 {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }

  .p2-a-text {
    margin-top: 15px;
    margin-right: 0;
  }

  .p2-a-text2 {
    margin-top: 15px;
    margin-left: 0;
  }

  .p2-a-item2 .huyu2,.p2-a-item .huyu3 {
    margin-top: 15px;
  }

  .p2-a-img3 {
    position: absolute;
    left: 50%;
    transform: translateX(-40%);
    bottom: -87px;
    z-index: 30;
  }

  /* 店舗案内 */
  .p7-c-title {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }

  /* こだわり */
  .p3-a-item, .p3-item {
    flex-direction: column;
    align-items: center;
  }

  .p3-box-box3 .p3-item:nth-child(3) {
    flex-direction: column-reverse;       
  }

  .p3-box-box2 .p3-item {
    flex-direction: column-reverse;    
  }

  /* 四季 */
  .p4-a-item {
    flex-direction: column;
    align-items: center;    
  }

  .p4-a-text {
    margin-top: 15px;
  }

  /* お客様の声 */
  .p5-b-item {
    flex-direction: column;
    align-items: center;
    gap: 30px;        
  }

  /* おとりとせ */
  .p6-a-item {
    flex-direction: column-reverse;
    align-items: center;    
  }

  .p6-b-item {
    gap: 30px;
  }

  /* 予約 */
  .contact-form-table tr th {
    width: 45%;
  }

  /* フッター */
  .footer-nav ul {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 730px) {
  /* お品書き */
  .p2-a-text, .p2-a-text2 {
    width: 100%;
    padding: 15px 30px 25px 30px;
  }

  /* 店舗案内 */
  .p7-c-title-img img {
    width: 100%;
  }

  .p7-c-item {
    flex-direction: column-reverse;
    gap: 30px;   
  }

  .p7-c-item2 {
    flex-direction: column;
  }

  /* こだわり */
  .j-container {
    width: 94%;
    margin-left: 2%;
    margin-right: 2%;
  }

  /* お取り寄せ */
  .p6-b-item {
    flex-direction: column-reverse;
    align-items: center;   
  }

  .p6-b-item2 {
    flex-direction: column;    
  }

  /* 予約 */
  .contact-form-table tr th, .contact-form-table tr td {
    display: block;
  }

  .contact-form-table tr th {
    width: 100%;
  }

  .contact-form-table input[type="text"], .contact-form-table input[type="email"], .contact-form-table input[type="tel"], .contact-form-table input[type="number"] {
    width: 90%;
  }

  .contact-form-table tr th {
    border-bottom: none;
  }

  /* .contact-form-table tr:nth-child(3) td:last-child, .contact-form-table tr:nth-child(5) td:last-child, .contact-form-table tr:nth-child(7) td:last-child, .contact-form-table tr:nth-child(11) td:last-child,.contact-form-table tr:nth-child(15) td:last-child, .contact-form-table tr:nth-child(17) td:last-child {
    border-bottom: none;
  } */

  .contact-form-table select {
    width: 90%;
  }

  .contact-form-table textarea {
    width: 90%;
  }

}

@media screen and (max-width: 639px) {
  img {
    width: 100%;
  }

  .w-container, .j-container {
    width: 92%;
    margin-left: 4%;
    margin-right: 4%;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  p, th, td {
    font-size: 18px;
  }

  p {
    line-height: 1.8em;
  }

  /* トップ */
  #slideshow-container .slide:nth-child(2) {
    background-position: 60% center;
  }

  .br {
    display: block;
  }

  .p1-b-title h2 {
    line-height: 2em;
  }

  .p1-c-box {
    gap: 68px;
  }

  .p1-c-link {
    margin-top: 44px;
  }

  .p1-d-table tr td, .p1-d-table tr th {
    display: block;
  }

  .p1-d-table table {
    width: 100%;
  }

  .p1-d-table tr th {
    width: 100%;
    padding: 10px 0 6px 25px;
  }

  .p1-d-table tr td {
    padding: 0 0 10px 25px;
    line-height: 2em;
  }

  .p1-f-contact {
    margin-top: 28px;
    margin-bottom: 47px;
  }

  .p1-f-text {
    text-align: left;
  }

  .notice-box {
    flex-direction: column;
  }

  .notice-box h2 {
    font-size: 32px;
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .br2 {
    display: none;
  }

  /* 電話とお問い合わせの要素 */
  .fixed-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 86px;
    display: flex;
    z-index: 1000;
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
  }

  .footer-button {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    text-align: center;
    position: relative;
  }
  
  .call-button {
    background-color: #675D50;;
    color: white;
  }
  
  .contact-button {
    background-color: #A9907E;
    color: white;
  }

  .fixed-footer-bar span {
    font-size: 20px;
    letter-spacing: 1px;
    padding-left: 10px;
  }

  .call-button::before {
    content: ""; 
    width: 24px; 
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px; 
    background-image: url('../img/tel.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .contact-button::before {
    content: "";
    width: 24px; 
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px; 
    background-image: url('../img/mail.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* お品書き */
  .p2-a-title {
    background-size: auto 34px;
    background-position: calc(50% + 20%) calc(50% - 30%);
    padding-bottom: 20px;
  }

  .p2-a-text-title, .p2-a-text-title2 {
    display: flex;
    flex-direction: column;
    line-height: 2em;
  }

  .p2-a-text-p::after, .p2-a-text-p::before, .p2-a-text-p2::after, .p2-a-text-p2::before {
    width: 15%;
  }

  .p2-a-box2 {
    margin-bottom: 120px;
  }

  .p2-a-img3 {
    left: 58%;
  }

  .p2-b-p::after, .p2-b-p::before {
    display: none;
  }

  .p2-b-title {
    flex-direction: column;
    margin-bottom: 15px;
  }

  .p2-b-title-box {
    margin-bottom: 0;
  }

  .p2-a-text-box p, .p2-a-text-box2 p {
    padding-bottom: 0;
  }

  .p2-a-box .p2-b-item2 .p2-b-text .p2-b-title {
    gap: 10px;
  }

  .p2-b-text p:last-child, .p2-a-box .p2-b-item2 .p2-b-text p:last-child, .p2-c-text p,.p2-d-title2 p {
    line-height: 1.8em;
    text-align: left;
  }

  .p2-c {
    margin-top: 87px;
  }

  .p2-c-title {
    background-size: auto 34px;
    background-position: calc(50% + 33%) top;
    padding-bottom: 20px;
  }

  .p2-c-text-h3 {
    flex-direction: column;
    gap: 10px;
  }

  .p2-d-title {
    background-size: auto 34px;
    background-position: calc(50% + 33%) top;
    padding-bottom: 20px;
  }

  .p2-c-text-h3 {
    margin-bottom: 15px;
  }

  .p2-d {
    margin-top: 87px;
  }

  .p2-d-item-box tr th, .p2-d-item-box tr td {
    display: block;
  }

  .p2-d-item-box table tr th, .p2-d-item-box table tr td {
    font-size: 18px;
  }

  .p2-d-item-box table tr th {
    padding-bottom: 5px;
  }

  .p2-d-item-box table tr td {
    padding-bottom: 15px;
  }

  /* 店舗案内 */
  .p7-a-title {
    background-size: auto 34px;
    background-position: calc(50% + 100px) top;
    padding-top: 35px;
  }

  .p7-a-item .p1-d-table tr th {
    width: 100%;
  }

  .p7-b-title {
    background-size: auto 34px;
    background-position: calc(50% + 100px) top;
    padding-top: 35px;
  }

  .p7-b-text h3, .p7-c-title-text h3 {
    font-size: 24px;
  }

  .p7-b-text {
    margin-top: 30px;
  }

  .p7-b-text p, .p7-c-title-text p, .p7-c-item p {
    line-height: 1.8em;
  }

  .p7-b-text p:nth-of-type(2) {
    margin-top: 15px;
  }

  .p7-c {
    padding-top: 87px;
    padding-bottom: 87px;
  }

  .p7-c-title-box h2 {
    margin-bottom: 30px;
  }

  .p7-c-title-img {
    margin-top: 15px;
  }

  .p7-c-item {
    align-items: flex-start;
    margin-top: 30px;
    gap: 15px;
  }

  /* こだわり */
  .p3-a {
    background-position: 0 top;
    background-size: 106px 119px;   
  }

  .p3-a-title {
    background-size: auto 34px;
    background-position: calc(50% + 100px) top;
    padding-top: 35px;
    padding-bottom: 30px;
  }

  .p3-a-text-box p {
    line-height: 1.8em;
  }

  .p3-a-text-box h3, .p3-a-text-box2 h3, .p3-a-text-box3 h3, .p3-item h3 {
    font-size: 24px;
  }

  .p3-a-text-box p {
    font-size: 18px;
  }

  .p3-b-title, .p3-c-title ,.p3-d-title {
    background-size: auto 34px;
    background-position: calc(50% + 100px) top;
    padding-top: 35px;
    padding-bottom: 0;
  }

  .p3-item {
    gap: 15px;
  }

  .p3-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
  }

  /* 四季 */
  .p4-a {
    margin-bottom: 87px;
  }

  .p4-a-text-p p, .p4-b-item p {
    font-size: 18px;
    line-height: 1.8em;
  }

  .p4-b {
    margin-bottom: 87px;
  }

  .p4-b-item span {
    width: 100%;
    font-size: 24px;
    padding-left: 0;
    padding-right: 0;
    margin-top: 30px;
  }

  .p4-b-title {
    background-size: auto 34px;
    background-position: calc(50% + 100px) top;
    padding-top: 35px;   
  }

  .p4-b-item p {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  /* お客様の声 */
  .p5-a-title {
    background-size: auto 34px;
    background-position: calc(50% + 100px) top;
    padding-top: 35px; 
  }

  .p5-a-title h2 {
    font-size: 24px; 
  }

  .p5-a-text p, .p5-b-item-box p {
    font-size: 18px;
    line-height: 1.8em;    
  }

  .p5-b {
    margin-bottom: 87px;
  }

  .p5-b-item {
    margin-top: 30px;
  }

  .p5-b-item-box {
    width: 100%;
    margin-right: 0;
  }

  .p5-b-item-box span {
    right: 0;
  }

  .p5-b-item-box p {
    /* text-align: left; */
    padding-left: 10px;
    padding-right: 10px;
  }

  .p5-a-text br, .p5-b-item-box br {
    display: none;
  }

  .p5-c-title {
    background-size: auto 34px;
    background-position: calc(50% + 100px) top;
    padding-top: 35px;   
  }

  .p5-c-q p {
    font-size: 18px;
    padding: 10px 15px;
  }

  .p5-c-a p {
    font-size: 18px;
    line-height: 1.8em;
    padding: 15px 15px 0;
  }

  .p5-c-a br {
    display: none;
  } 

  /* お取り寄せ */
  .p6-a-title {
    background-position: 0 top;
    background-size: 106px 119px;
  }

  .p6-a-title h2 {
    background-size: auto 34px;
    background-position: calc(50% + 100px) top;
    padding-top: 35px;     
  }

  .p6-a-item {
    gap: 15px;
  }

  .p6-a-text h3, .p6-b-text h3 {
    font-size: 24px;
    margin-top: 0;
  }

  .p6-a-text p, .p6-a-text-p p {
    line-height: 1.8em;
  }

  .p6-a-text-box {
    display: flex;
    margin-top: 30px;
  }

  .p6-a-text-box span {
    padding: 20px 15px 20px 36px
  }

  .p6-a-text-box span:first-child {
    margin-right: 5px;
  }

  .p6-a-text-box span:first-child::before, .p6-a-text-box span:last-child::before {
    left: 10px;
  }

  .p6-b {
    margin-top: 87px;
    margin-bottom: 87px;
  }

  .p6-b-title {
    background-size: auto 34px;
    background-position: calc(50% + 100px) top;
    padding-top: 35px;        
  }

  .p6-b-item {
    gap: 15px;
    margin-top: 30px;
  }

  .p6-b-text p {
    font-size: 18px;
    line-height: 1.8em;
    margin-top: 15px;
  }

  /* 予約 */
  .contact-form-table tr p .contact-span {
    padding: 2px 15px;
  }

  .contact-form-table tr p {
    font-size: 18px;
  }

  .contact-form-table tr th, .contact-form-table tr td {
    padding-top: 10px;
  }

  .contact-form-table tr .contact-td {
    padding-top: 10px;
  }

  .contact-form-table .wpcf7-list-item-label {
    font-size: 18px;
  }

  .contact-form-table .wpcf7-list-item-label::before {
    width: 20px;
    height: 20px;
  }

  .contact-form-table {
    margin-top: 30px;
    margin-bottom: 20px;
  }  

  /* お知らせ */
  .entry-header h1 {
    font-size: 32px;
  }

  .entry-content p {
    font-size: 20px;
  }

  /* フッター */
  footer {
    margin-bottom: 85px;
  }
  .footer-container {
    padding-top: 48px;
  } 

  .footer-nav ul {
    padding-bottom: 68px;
  }

  .copy-right {
    padding-bottom: 20px;
  }

  .top-botan {
    width: 54px;
    height: 54px;
    right: 5%; 
    bottom: 10%;
 }



}