@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  color: #fff;
  /*全体の文字色*/
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*フォント種類*/
  font-size: 16px;
  /*文字サイズ*/
  line-height: 2;
  /*行間*/
  background: #000;
  /*背景色*/
  -webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style-type: none;
}

ol {
  padding-left: 40px;
  padding-bottom: 15px;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}

/* YouTube */
iframe {
  width: 80%;
  height: 560px;
  display: block;
  margin: auto;
  padding: 10px;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #fff;
  /*リンクテキストの色*/
  transition: 0.2s;
  /*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}

a:hover {
  color: #c73302;
  /*マウスオン時の文字色*/
  text-decoration: none;
  /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ロゴ　＋　メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
.menubar {
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
  background: linear-gradient(rgba(255, 255, 255, 0.9), #fff 60%);
  /*グラデーション*/
}

.menubar a img {
  width: 160px;
  margin-left: 32px;
}

.menu_list {
  height: 80px;
  align-items: center;
  display: flex;
}

.menu_list ul {
  display: flex;
  margin-left: 32px;
}

.menu_list ul li {
  margin: 0px 16px;
}

.menu_list ul li a {
  font-size: 18px;
  position: relative;
  color: #000;
  display: flex;
  align-items: center;
}

.menu_list ul li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #c73302;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

.menu_list ul li a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

/* LINE ヘッダー用*/
.menubar_line {
  margin: 8px;
}

.menubar_line a {
  color: #fff;
  background-color: #06C755;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 0.3rem 2.5rem 0.3rem 1rem;
  max-width: 240px;
  font-size: 1.3rem;
  border-radius: 10px;
}

.menubar_line a:after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.menubar_line a:hover {
  opacity: 0.7;
}

.menubar_line a .icon-svg-button {
  width: 32px;
  height: 32px;
  margin: 0 8px;
}

/*スマホ用メニューを表示させない*/
#menubar-s {
  display: none;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像（トップページのロゴ画像）*/
header #logo img {
  position: absolute;
  left: 45%;
  /*左から45%の場所に配置*/
  top: 0px;
  /*上から0pxの場所に配置*/
  width: 15%;
  /*画像幅*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*h1タイトル*/
.contents h1 {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*フォント指定*/
  font-size: 48px;
  /*文字サイズ*/
  padding-top: 80px;
  /*上に空ける余白*/
  margin-bottom: 30px;
  /*下に空ける余白*/
  text-align: center;
  /*文字をセンタリング*/
  letter-spacing: 0.2em;
  /*文字間隔を広くとる設定*/
  color: #fff;
  /*文字色*/
}

/*h1の１文字目*/
.contents h1::first-letter {
  font-size: 60px;
  /*文字サイズ*/
  border: 1px solid #333;
  /*枠線の幅、線種、色*/
  padding: 10px;
  /*余白*/
  margin-right: 5px;
  /*右側に空けるスペース*/
  letter-spacing: normal;
  /*文字間隔を通常に*/
  text-shadow: 5px 5px rgba(255, 255, 255, 0.2);
  /*文字の影。右に、下に、255,255,255は白の事で0.2は透明度20%の事。*/
}

/*h1見出し内のspanタグ*/
.contents h1 span {
  display: block;
  font-size: 14px;
  /*文字サイズ*/
  margin-top: -10px;
  /*少し上に詰める設定*/
}

/*h2サブタイトル*/
.contents h2 {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*フォント指定*/
  font-size: 40px;
  /*文字サイズ*/
  margin-bottom: 30px;
  /*下に空ける余白*/
  text-align: center;
  /*文字をセンタリング*/
  letter-spacing: 0.2em;
  /*文字間隔を広くとる設定*/
  color: #fff;
  /*文字色*/
}

.contents h2 span {
  display: block;
  font-size: 14px;
  /*文字サイズ*/
  margin-top: -13px;
  /*少し上に詰める設定*/
}

/*h3見出し*/
.contents h3 {
  font-size: 28px;
  /*文字サイズ*/
  color: #fff;
  /*文字色*/
  margin-bottom: 20px;
  /*下に空ける余白*/
  letter-spacing: 0.1em;
  /*文字間隔を広くとる設定*/
}

/*段落タグ*/
.contents p {
  margin-bottom: 20px;
  /*下に空ける余白*/
}

/*段落タグにh3見出しが続いた場合、段落タグにh2見出しが続いた場合の設定*/
.contents p+h3,
.contents p+h2 {
  margin-top: 24px;
  /*見出しの上に空ける余白*/
}

/* 特徴 */
.wrapper {
  width: 72%;
  display: block;
  margin: auto;
}

.flex {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  margin-bottom: 64px;
}

.flex_reverse {
  flex-direction: row-reverse;
}

.flex_content {
  width: 47%;
}

.flex_content_title {
  text-align: center;
  margin-top: 56px;
}

.flex_content_text {
  font-size: 16px;
}

.flex_slider {
  margin: 0 auto;
  max-width: 450px;
  width: 100%;
}

.native-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.native-slider-dotted {
  margin-bottom: 30px;
}

.native-slider-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.native-slider-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  will-change: transform;
}

.native-slider-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.native-slider-slide img {
  display: block;
  pointer-events: none;
}

.native-slider-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.native-slider-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.native-slider-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.native-slider-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  font-size: 24px;
  line-height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: #fff;
}

.native-slider-dots li button:hover::before,
.native-slider-dots li button:focus::before,
.native-slider-dots li.is-active button::before {
  opacity: .75;
  color: #fff;
}

.slider_img img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

/* 基本コース */
.menu_contents {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/common/backgrounds/washi_bg02.jpg");
  padding: 24px 0px;
  margin-bottom: 24px;
}

.menu_contents .sub_title h2 {
  color: #000;

}

.course_tabs {
  width: min(92%, 980px);
  margin: 0 auto;
}

.course_tab_list {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 6px;
  border: 2px solid #000;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.course_tab {
  flex: 1 1 0;
  min-width: 0;
  color: #000;
  background-color: rgba(255, 255, 255, 0.68);
  border: 1px solid #000;
  border-radius: 3px;
  padding: 10px 12px;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: 0.2s ease-in-out;
}

.course_tab span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.course_tab:hover,
.course_tab:focus {
  background-color: rgba(255, 255, 255, 0.95);
}

.course_tab:focus {
  outline: 3px solid #c73302;
  outline-offset: 2px;
}

.course_tab.is-active {
  color: #fff;
  background-color: #000;
}

.course_tab_panel[hidden] {
  display: none;
}

.course_flex_box {
  display: flex;
  justify-content: center;
}

.course_box {
  width: 400px;
  height: 160px;
  border: 5px solid #000;
  border-radius: 5px;
  margin: 24px 32px;
  padding: 0px 8px;
}

.course_box h3,
.course_box p {
  color: #000;
  text-align: center;
}

.course_box h3 {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 40px;
}

.course_box p {
  font-size: 24px;
}

/* 満足 */
.satisfaction_box {
  background-image: url(../images/common/backgrounds/washi_bg06_v2.jpg);
  border: 5px solid #FFA500;
  background-position: center;
}

/* 厳選 */
.selected_box {
  border: 5px solid #bababa;
  background-image: url(../images/common/backgrounds/washi_bg07.jpg);
  border-radius: 5px;
  /* 任意の丸みを指定 */
}

.selected_title {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro",
    "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      from(#ffffdb),
      to(#a16422));
  background: -webkit-linear-gradient(bottom, #e9d2d2, #9d9d9d);
  background: linear-gradient(to top, #e9d2d2, #9d9d9d);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.selected_text {
  color: #fff !important;
}

/* VIP */
.special_box {
  background-image: url(../images/common/backgrounds/washi_bg05.jpg);
  border: 5px solid #D0A900;
  border-radius: 5px;
  /* 任意の丸みを指定 */
}

.special_course {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro",
    "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      from(#ffffdb),
      to(#a16422));
  background: -webkit-linear-gradient(bottom, #ffffdb, #b06f29);
  background: linear-gradient(to top, #ffffdb, #b06f29);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.special_text {
  color: #fff !important;
}

.buffet_course_box {
  width: min(82%, 860px);
  margin: 24px auto 48px;
  padding: 32px;
  color: #000;
  border: 5px solid #D0A900;
  border-radius: 5px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72)), url(../images/common/backgrounds/washi_bg06_v2.jpg);
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
  text-align: center;
}

.buffet_label {
  display: inline-block;
  margin-bottom: 10px !important;
  padding: 2px 14px;
  color: #fff;
  background-color: #c73302;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.buffet_course_box h3 {
  margin-bottom: 16px;
  color: #000;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 42px;
  line-height: 1.35;
}

.buffet_lead {
  max-width: 720px;
  margin: 0 auto 12px !important;
  color: #000;
  font-size: 20px;
  line-height: 1.8;
}

.buffet_sublead {
  max-width: 720px;
  margin: 0 auto 26px !important;
  padding: 12px 18px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.76);
  border-left: 5px solid #c73302;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.75;
  text-align: left;
}

.buffet_gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(180px, 1fr);
  grid-template-rows: repeat(3, 120px);
  grid-template-areas:
    "main second"
    "main third"
    "main fourth";
  gap: 10px;
  margin: 0 auto 26px;
}

.buffet_gallery_item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background-color: #000;
  border: 2px solid rgba(0, 0, 0, 0.78);
  border-radius: 5px;
  box-sizing: border-box;
  cursor: zoom-in;
  font: inherit;
}

.buffet_gallery_item_main {
  grid-area: main;
}

.buffet_gallery_item_second {
  grid-area: second;
}

.buffet_gallery_item_third {
  grid-area: third;
}

.buffet_gallery_item_fourth {
  grid-area: fourth;
}

.buffet_gallery_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.buffet_gallery_item span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 7px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 3px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.buffet_gallery_item span::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff url("../images/oshinagaki/buffet/buffet_glass_plus.svg") center / 9px 9px no-repeat;
  border-radius: 50%;
  flex: 0 0 auto;
}

.buffet_gallery_item:hover img,
.buffet_gallery_item:focus img {
  opacity: 0.88;
  transform: scale(1.035);
}

.buffet_gallery_item:focus {
  outline: 3px solid #c73302;
  outline-offset: 2px;
}

.buffet_lightbox[hidden] {
  display: none;
}

.buffet_lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-sizing: border-box;
}

.buffet_lightbox_backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.78);
}

.buffet_lightbox_dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 1080px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buffet_lightbox_img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background-color: #fff;
  border: 4px solid #fff;
  border-radius: 5px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.buffet_lightbox_caption {
  width: 100%;
  max-width: 100%;
  margin-top: 10px !important;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.buffet_lightbox_close {
  align-self: flex-end;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin: 0 0 10px;
  padding: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.72);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.buffet_lightbox_close:hover,
.buffet_lightbox_close:focus {
  background-color: #c73302;
}

.buffet_lightbox_close:focus {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

body.buffet_lightbox_open {
  overflow: hidden;
}

.buffet_plan_area,
.buffet_reason_area {
  margin-top: 28px;
}

.buffet_plan_area h4,
.buffet_reason_area h4 {
  margin-bottom: 16px;
  color: #000;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
}

.buffet_plan_area h4 span,
.buffet_reason_area h4 span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.buffet_plan_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.buffet_plan_card {
  min-height: 172px;
  padding: 18px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(0, 0, 0, 0.78);
  border-radius: 5px;
  box-sizing: border-box;
  text-align: left;
}

.buffet_plan_card h5 {
  margin-bottom: 10px;
  color: #c73302;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 23px;
  line-height: 1.35;
  text-align: center;
}

.buffet_plan_card ul,
.buffet_reason_list {
  list-style: none;
}

.buffet_plan_card li,
.buffet_reason_list li {
  position: relative;
  padding-left: 1.2em;
  color: #000;
  font-size: 15px;
  line-height: 1.65;
}

.buffet_plan_card li::before {
  content: '';
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #c73302;
  border-radius: 50%;
}

.buffet_reason_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.buffet_reason_list li {
  padding: 10px 12px 10px 2.2em;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.buffet_reason_list li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 13px;
  width: 12px;
  height: 6px;
  border-left: 2px solid #c73302;
  border-bottom: 2px solid #c73302;
  transform: rotate(-45deg);
}

.buffet_note {
  max-width: 720px;
  margin: 28px auto 28px !important;
  color: #000;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.buffet_line_btn {
  color: #fff;
  background-color: #06C755;
  border-bottom: 5px solid #094;
  border-radius: 100vh;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 0.8rem 2.2rem;
  font-size: 1.3rem;
  line-height: 1.4;
}

.buffet_line_btn:hover {
  color: #fff;
  background-color: #4CC764;
  border-bottom: 2px solid #4CC764;
}

.buffet_line_btn .icon-svg-button {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.7rem;
}


/* Course　補足情報 */
.course_attention {
  width: min(48vw, 680px);
  max-width: calc(100% - 40px);
  display: block;
  margin: 48px auto;
  padding: 0.3em 0.8em;
  color: #000;
  border: solid 3px #333;
  border-radius: 10px;
  background-color: #e7c56d;
  box-sizing: border-box;
}

.atten_title h3 {
  color: #000;
  text-align: center;
}

.atten_title span {
  display: block;
  font-size: 12px;
  /*文字サイズ*/
  margin-top: -13px;
  /*少し上に詰める設定*/
}

.atten_ul {
  position: relative;
}

.atten_ul li {
  position: relative;
  border-bottom: dashed 1px #333;
  list-style-type: none !important;
  /*ポチ消す*/
  padding: 0.5em 1em 0.5em 48px;
  line-height: 1.5em;
  text-align: left;
}

.atten_ul li:before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0.5em;
  width: 24px;
  height: 24px;
  background: url("../images/common/icons/receipe_finger_lists.svg") center / contain no-repeat;
  /*左端からのアイコンまで*/
}

.atten_ul strong {
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
  line-height: 1.4;
}

.atten_ul li:last-of-type {
  border-bottom: none;
  /*最後のliの線だけ消す*/
}


/* よくある質問へ */
.ques_btn {
  padding: 32px 0px;
}

.ques_btn a {
  background: #000;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 12px 24px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 24px;
  border: 2px solid #fff;
}

.ques_btn a:hover {
  background: #fff;
  color: #000 !important;
  border: 2px solid #000;
  border-radius: 100px;
}

.ques_btn a:after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.ques_btn a:hover:after {
  border-color: #000;
}


/*フッター設定
---------------------------------------------------------------------------*/
.footer_top {
  width: 100%;
  height: 400px;
  background-image: url(../images/common/backgrounds/washi_bg.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: space-around;
}

.footer_one #footer_top_img img {
  width: 240px;
  margin-bottom: 24px;
}

.footer_sns {
  margin-top: 40px;
}

.footer_sns .footer_heading span {
  color: #000;
  font-size: 24px;
  line-height: 2;
  border-bottom: 2px solid red;
}

.footer_sns a .icon-svg-social {
  width: 40px;
  height: 40px;
  margin: 0;
}

.footer_sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: 4px;
  line-height: 1;
  vertical-align: middle;
}

.footer_sns a img {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0;
  object-fit: contain;
}

.footer_sns a:last-child {
  margin-right: 0;
}

.footer_sns a .icon-svg-social:hover {
  opacity: 0.8;
}

.footer_sns a img:hover {
  opacity: 0.8;
}

.footer_second {
  line-height: 2;
  padding-top: 40px;
}

.footer_second .footer_heading span {
  color: #000;
  font-size: 32px;
  border-bottom: 2px solid red;
}

.footer_second p a {
  color: #000;
  line-height: 2.5;
  font-size: 16px;
}

.footer_second p a:hover {
  border-bottom: 1px solid red;
}

.footer_third {
  line-height: 2;
  padding-top: 40px;
}

.footer_third .footer_heading span {
  color: #000;
  font-size: 32px;
  border-bottom: 2px solid red;
}

.footer_line {
  margin: 32px 0px;
}

.footer_line a {
  color: #fff;
  background-color: #06C755;
  border-bottom: 5px solid #094;
  padding: 1rem 3rem 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 100vh;
}

.footer_line a:hover {
  color: #fff;
  background: #4CC764;
  border-bottom: 2px solid #4CC764;
}

.footer_line a .icon-svg-button {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
}

.footer_tel {
  margin-top: 40px;
}

.footer_tel a {
  color: #fff;
  background-color: #eb6100;
  border-bottom: 5px solid #d25600;
  padding: 1rem 3rem 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 100vh;
}

.footer_tel a:hover {
  background-color: #eb7900;
  border-bottom: 2px solid #eb7900;
}

.footer_tel a .icon-svg-button {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
  clear: both;
  text-align: center;
  background: #c73302;
  /*背景色*/
}

#copyright a {
  text-decoration: none;
}

#copyright a:hover {
  color: #d8d8d8;
}

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px) {

  #navArea {
    display: block;
  }

  /*メインメニュー
---------------------------------------------------------------------------*/
  /*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
  @keyframes menu1 {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  /*ヘッダー
---------------------------------------------------------------------------*/
  /*ロゴ画像（トップページのロゴ画像）*/
  header #logo img {
    left: 5%;
    /*左から5%の場所に配置*/
    width: 20%;
    /*画像幅*/
  }

  /*メインメニュー
---------------------------------------------------------------------------*/
  /*スマホ用メニューブロック*/
  /*メインメニュー
---------------------------------------------------------------------------*/
  /*スマホ用メニューブロック*/
  #menubar-s {
    display: flex;
    position: fixed;
    width: 72%;
    top: 0px;
    left: -800px;
    bottom: 0px;
    z-index: 30;
    background: #ffffff;
    /*背景色*/
    transition: all 0.25s;
  }

  .open #menubar-s {
    left: 0;
    opacity: 1;
  }

  #menubar-s .inner {
    padding: 30px;
  }

  #menubar-s ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #menubar-s ul li {
    margin: 0;
    border-bottom: 1px solid #333;
  }

  /*メニュー１個あたりの設定*/
  #menubar-s li a {
    display: block;
    color: #333;
    font-size: 18px;
    padding: 1rem;
    text-decoration: none;
    transition-duration: 0.2s;
  }

  #menubar-s li a:hover {
    background: #e4e4e4;
  }

  /*PC用メニューを非表示にする*/
  .menubar {
    display: none;
  }

  /*３本バーアイコン設定
---------------------------------------------------------------------------*/
  /*３本バーブロック*/
  .toggle-btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 54px;
    height: 48px;
    z-index: 30;
    cursor: pointer;
    background-color: #111;
    border: 1px solid #fff;
  }

  .toggle-btn span {
    position: absolute;
    display: block;
    left: 8px;
    width: 70%;
    height: 3px;
    background-color: #fff;
    transition: all 0.5s;
    border-radius: 4px;
  }

  .toggle-btn span:nth-child(1) {
    top: 10px;
  }

  .toggle-btn span:nth-child(2) {
    top: 22px;
  }

  .toggle-btn span:nth-child(3) {
    bottom: 10px;
  }

  .open .toggle-btn span:nth-child(1) {
    transform: translateY(12px) rotate(-315deg);
  }

  .open .toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .open .toggle-btn span:nth-child(3) {
    transform: translateY(-11px) rotate(315deg);
  }

  /* 3本線の発生時の背景 */
  #mask {
    display: none;
    transition: all 0.5s;
  }

  .open #mask {
    display: block;
    background: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.8;
    z-index: 20;
    cursor: pointer;
  }

  /*コンテンツ
---------------------------------------------------------------------------*/
  /*h1タイトル*/
  .contents h1 {
    font-size: 36px;
    margin-top: 30px;
    /*上に空ける余白*/
  }

  /*h1の１文字目*/
  .contents h1::first-letter {
    font-size: 50px;
    /*文字サイズ*/
  }

  /*h2サブタイトル*/
  .contents h2 {
    font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    /*フォント指定*/
    font-size: 32px;
    /*文字サイズ*/
    margin-bottom: 30px;
    /*下に空ける余白*/
    text-align: center;
    /*文字をセンタリング*/
    letter-spacing: 0.2em;
    /*文字間隔を広くとる設定*/
    color: #fff;
    /*文字色*/
  }

  .contents h2 span {
    font-size: 10px;
    /*文字サイズ*/
    margin-top: -8px;
    /*少し上に詰める設定*/
  }

  .sub_title {
    margin-top: 24px;
  }

  /* 特徴 */
  .flex {
    display: block;
  }

  .flex_content {
    width: 100%;
  }

  .flex_slder {
    display: block;
    margin: auto;
    max-width: 300px;
  }

  .slider_img img {
    height: 320px;
    width: 100%;
    object-fit: cover;
  }


  /* 基本コース */
  .wrapper {
    width: 90%;
    display: block;
    margin: auto;
  }

  .course_tabs {
    width: 94%;
  }

  .course_tab_list {
    gap: 6px;
    max-width: 88%;
    margin-bottom: 20px;
    padding: 4px;
  }

  .course_tab {
    padding: 8px 6px;
    font-size: 18px;
    letter-spacing: 0;
  }

  .course_tab span {
    font-size: 10px;
  }

  .course_flex_box {
    display: block;
  }

  .course_box {
    width: 80%;
    height: 100px;
    display: block;
    margin: auto;
    margin-top: 20px;
  }

  .course_box h3,
  .course_box p {
    text-align: center;
    line-height: 1.5;
  }

  .course_box h3 {
    font-size: 28px;
  }

  .course_box p {
    font-size: 20px;
  }


  /* Course　補足情報 */
  .course_attention {
    width: 80%;
    display: block;
    margin: 32px auto 16px;
  }

  .buffet_course_box {
    width: 88%;
    margin: 20px auto 32px;
    padding: 22px 18px;
  }

  .buffet_label {
    font-size: 12px;
  }

  .buffet_course_box h3 {
    font-size: 32px;
  }

  .buffet_lead {
    font-size: 17px;
    line-height: 1.7;
  }

  .buffet_sublead {
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.65;
  }

  .buffet_gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "main main"
      "second third"
      "fourth fourth";
    gap: 8px;
  }

  .buffet_gallery_item {
    height: auto;
  }

  .buffet_gallery_item img {
    aspect-ratio: 4 / 3;
  }

  .buffet_gallery_item_fourth img {
    aspect-ratio: 16 / 9;
  }

  .buffet_plan_area h4,
  .buffet_reason_area h4 {
    font-size: 26px;
  }

  .buffet_plan_grid,
  .buffet_reason_list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .buffet_plan_card {
    min-height: auto;
    padding: 15px 14px;
  }

  .buffet_plan_card h5 {
    font-size: 21px;
  }

  .buffet_note {
    font-size: 14px;
  }

  .buffet_line_btn {
    width: 100%;
    min-width: 0;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
    font-size: 1.1rem;
  }

  .atten_title span {
    display: block;
    font-size: 10px;
    /*文字サイズ*/
    margin-top: -5px;
    /*少し上に詰める設定*/
  }


  /* YouTube */
  iframe {
    width: 96%;
    height: 320px;
    display: block;
    margin: auto;
    padding: 5px;
  }

  /*フッター設定
---------------------------------------------------------------------------*/
  .footer_top {
    height: 1000px;
    display: block;
    padding: 40px 0;
  }

  .footer_one #footer_top_img img {
    margin: auto;
    display: block;
    padding: 18px 0px;
  }

  .footer_sns {
    text-align: center;
  }

  .footer_second .footer_heading {
    text-align: center;
  }

  .footer_second p {
    text-align: center;
  }

  .footer_third {
    text-align: center;
  }

  .footer_line a {
    color: #fff;
    background-color: #06C755;
    border-bottom: 5px solid #094;
    padding: 0.8rem 2.5rem 0.8rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 100vh;
  }

  .footer_line a .icon-svg-button {
    width: 1.4rem;
    height: 1.4rem;
    margin-right: 0.6rem;
  }

  .footer_tel a {
    color: #fff;
    background-color: #eb6100;
    border-bottom: 5px solid #d25600;
    padding: 0.8rem 2.5rem 0.8rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 100vh;
  }

  .footer_tel a .icon-svg-button {
    width: 1.4rem;
    height: 1.4rem;
    margin-right: 1rem;
  }
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {

  /*全体の設定
---------------------------------------------------------------------------*/
  body {
    font-size: 12px;
    /*文字サイズ*/
    line-height: 1.5;
    /*行間*/
  }

  .course_tabs {
    width: 340px;
    max-width: calc(100vw - 40px);
  }

  .course_tab_list {
    width: 100%;
    max-width: 100%;
  }

  .course_tab {
    padding: 8px 4px;
    font-size: 16px;
  }

  .course_box {
    width: 320px;
    max-width: calc(100vw - 56px);
    padding: 0 4px;
    box-sizing: border-box;
  }

  .course_box p {
    font-size: 17px;
    white-space: nowrap;
  }

  .course_attention,
  .buffet_course_box {
    width: 320px;
    max-width: calc(100vw - 56px);
    box-sizing: border-box;
  }

  .buffet_gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "second"
      "third"
      "fourth";
  }

  .buffet_gallery_item_fourth img {
    aspect-ratio: 4 / 3;
  }

  .buffet_lightbox {
    padding: 18px;
  }

  .buffet_lightbox_dialog {
    width: 100%;
  }

  .buffet_lightbox_close {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    font-size: 28px;
  }
}