/*  base style
------------------------------------------------------------------ */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.sp {
  display: none; /* PC非表示 */
}
a:hover {
  -webkit-transition: all 400ms 0s ease;
  transition: all 400ms 0s ease;
  opacity: 0.5;
}

html {
  font-size: 62.5%;
  position: relative;
  min-height: 100%;

  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  min-width: 100%;
  height: 100%;
  margin: 0;
  color: #000000;
  background-color: #ede4b8;

  -webkit-text-size-adjust: 100%;
}
.wrapper {
  width: 100%;
  /*max-width: 1190px;*/
  margin: 0 auto;
  padding: 0;
  -webkit-box-shadow: 0 0 18px 1px #bfa882;
  box-shadow: 0 0 18px 1px #bfa882;
}

/* ボタン全体のエリア調整 */
.external_link_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 30px;
  padding: 0 !important;
  background-color: #fff5d7;
}

/* 各ボタン要素 */
.external_link {
  width: 48%;
  margin-bottom: 15px;
  padding: 0;
  list-style: none;
}

/* ボタン上のタイトル部分 */
.button-title-container {
  font-size: 1em;
  font-weight: 900;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  min-height: 2.8em; /* タイトルの高さを統一 */
  margin-bottom: 8px;
  text-align: center;
}

/* 番号のスタイル */
.button-number {
  font-size: 0.9em;
  line-height: 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 3px;
  text-align: center;
  border: 1px solid #555555;
  border-radius: 50%;
  background-color: #ffffff;
}

/* ボタンコンテナ */
.button-container {
  width: 100%;
  /*height: 100%;*/
}

/* ボタン全体を包む要素 */
.button-with-title {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 赤ボタンのスタイル */
.red-button {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  height: 97px;
  padding: 10px 15px;
  transition: background-color 0.3s;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 8px;
  background-color: #be2a2a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.red-button:hover {
  background-color: #cf3a3a;
}

/* 2行構成のテキスト */
.button-text-two-lines {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  text-align: center;
}

.button-text-main {
  font-size: 1em;
  line-height: 1.3;
  margin-bottom: 2px;
}

.button-text-sub {
  font-size: 0.8em;
}

/* 丸い矢印アイコン */
.circle-arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-left: 10px;
  color: #be2a2a;
  border-radius: 50%;
  background-color: white;
}
.pc-text {
  display: inline;
}

/* スマホ用のテキスト表示 - 改行あり */
.sp-text {
  display: none;
}

/* タブレット対応（768px以下） */
@media (max-width: 768px) {
  .button-title-container {
    font-size: 13px;
  }
}

/* スマホ対応（480px以下） */
@media (max-width: 480px) {
  .external_link {
    width: 48%; /* スマホでも横並びを維持 */
  }

  .button-title-container {
    font-size: 13px;
    min-height: 4em; /* タイトルの高さをさらに確保 */
    margin: 8px 0 6px;
    margin-left: -16%;
  }

  .button-title-container--adjust {
    width: 116%;
    margin-left: -16%;
  }

  .button-number {
    line-height: 18px;
    width: 18px;
    height: 18px;
    margin-bottom: 2px;
  }

  .red-button {
    height: 90px; /* スマホでの高さを固定値に設定 */
    padding: 8px 10px;
  }

  .button-text-main {
    font-size: 14px;
    line-height: calc(42 / 28);
    margin-bottom: 8px;
  }

  .button-text-sub {
    font-size: 10px;
    line-height: 1.2;
  }

  .circle-arrow-icon {
    width: 18px;
    min-width: 18px;
    height: 18px;
  }
  .pc-text {
    display: none;
  }
  .sp-text {
    display: inline;
  }

  .external_link_area {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.talk_show {
  padding-bottom: 30px;
  background-color: #fff5d7;
}
.talk_show > img {
  max-width: 100%;
  height: auto;
  padding-top: 30px;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .talk_show {
    padding-bottom: 15px;
  }
  .external_link {
    font-size: 1.2rem;
  }
  .external-link-icon {
    width: 18px;
    min-width: 18px; /* 縮小防止 */
    height: 18px;
  }
}

/* text
------------------------------------------------------------------ */
.red {
  color: #c30d23;
}
.gold {
  color: #c59d42;
}
.t-28 {
  font-size: 28px;
  font-size: 2.8rem;
}
.t-24 {
  font-size: 24px;
  font-size: 2.4rem;
}
.text-size-down-pc75 {
  font-size: 70% !important;
}

/* column
------------------------------------------------------------------ */
.header,
.column_box,
.footer {
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
  padding: 0;
}

.column_box {
  padding-right: 54px;
  padding-left: 54px;
}

.column_box_type3 {
  display: flex;
  flex-wrap: nowrap;
}
.column_box_6 {
  width: 48%;
}

.bg_yellow {
  background-color: #fbe777;
}

/* header
------------------------------------------------------------------ */
.header {
  z-index: 9999;
}

/* navigation */
.nav_wrap {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 50%;
  display: block;
  width: 100%;
  max-width: 1128px;
  transform: translateX(-50%);
  background-color: rgba(115, 76, 35, 1);
}

.toggle {
  display: none;
}

.nav {
  display: flex;
}

.nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: rgba(115, 76, 35, 1);
}

.nav ul li {
  display: flex;
  align-items: center;
  width: calc(100% / 6);
  margin: 0 auto;
  padding: 0;
  text-align: center;
  border-left: 2px solid rgba(79, 53, 23, 1); /*#4f3517;*/
}

.nav ul li:first-child {
  border-left: none;
}

.nav ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

.nav ul li a img {
  flex-shrink: 0;
}

.nav ul li a:hover {
  transition: all 400ms 0s ease;
  opacity: 1;
  background-color: #fbe777;
}

.nav ul li .inner_list {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
}

.nav ul li .inner_list li {
  display: flex;
  align-items: center;
  width: calc(100% / 2);
  margin: 0 auto;
  padding: 0;
  text-align: center;
  border-left: 2px solid rgba(79, 53, 23, 1); /*#4f3517;*/
}

.nav ul li .inner_list li:first-child {
  border-left: none;
}

/*  menuにSNSが入る場合に追記  */
.menu_list_typeA {
  width: 16.6666%; /*メニューがある場合*/
  /*width:21%;*/ /* メニューが無い場合 */
}

.menu_list_typeB {
  /*  menu SNS用 */
  width: 8.3333%;
  /*width:5.88235%;*/
}

.main-img {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #fff5d7;
}

.main-img h1 {
  margin: 0;
  /*padding: 60px 0 0 0;*/
}

@media (max-width: 768px) {
  .main-img h1 img {
    width: 100%;
  }
}

/* banner_area
------------------------------------------------------------------ */
.bnr {
  padding-top: 30px;
  background-color: #fff5d7;
}

.bnr p {
  margin: 0;
  padding: 0 0 30px;
}

.menu_btn {
  width: 100%;
  text-align: center;
  background-color: #fff5d7;
}
.menu_btn a {
  display: inline-block;
  margin: 60px auto 30px;
  border-radius: 10px;
  box-shadow: 4px 4px 18px #bfa882;
}

.bnr_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 60px 0 30px;
  background-color: #fff5d7;
}

.bnr_area div {
  display: flex;
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 30px;
}

.bnr_area div:nth-child(3n) {
  margin-right: 0;
}

.bnr_area div:last-of-type {
  margin-right: 0;
}

.bnr_area div a,
.bnr_area div span {
  box-shadow: 4px 4px 18px #bfa882;
}

.bnr_bottom {
  display: inline-block;
  margin-bottom: 60px;
  box-shadow: 4px 4px 18px #bfa882;
}

.menu_bnr {
  margin-top: 80px;
  margin-bottom: 106px;
}

.talk_show_link {
  display: flex;
}

.talk_show_link_inner {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
  margin-bottom: 30px;
}
.talk_show_link_inner:last-child {
  margin-right: 0;
}

.talk_show_link_inner a {
  display: block;
  margin-top: 15px;
  border-radius: 10px;
  background-color: #b82121;
  box-shadow: 4px 4px 18px #bfa882;
}

.talk_show_link_inner a:hover {
  opacity: 1;
}

/* recipe link
------------------------------------------------------------------ */
.recipe {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin: 30px 0 30px;
}

.store {
  position: relative;
  width: 100%;
  margin: 50px 0 50px;
  text-align: center;
}

/* result area
------------------------------------------------------------------ */

.result_area {
  padding-top: 30px;
  background-color: #fff5d7;
}

.thanks-result_area {
  width: 100%;
  margin: 30px 0;
  padding: 4rem 4rem;
  background-color: #ffffff;
}

.thanks_block {
  width: 100%;
  padding: 20px 0 0;
}

.thanks_block .thanks_message {
  text-align: center;
}

.thanks_block .thanks_message_text {
  text-align: left;
}

.icon_title {
  font-weight: bold;
  margin: 40px 0 1rem;
}

.icon_title img {
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}

.thanks_block .thanks_photo_inner {
  width: 32%;
  margin-top: 2rem;
}

.result_block {
  margin: 60px 0 0 0;
  padding: 0;
  text-align: center;
}

.result_block .result_text {
  margin: 0 0 2rem;
}

.result_caption_area {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  border-top: 1px dashed #b82121;
  border-bottom: 1px dashed #b82121;
}

/*
.result_caption_area p::before {
  display: inline-flex;
  justify-content: center;
  content: "NEW";
  padding: 4px;
  background-color: #b82121;
  color: #ffffff;
  width: 40px;
  height: 20px;
  font-size: 1.2rem;
  margin-right: 5px;
}
*/

.gp_block {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
  text-align: center;
}

.gp_silver {
  margin-top: 60px;
}

.gp_bumon {
  font-weight: bold;
  width: 100%;
  margin: 40px 0 0;
}

.gp_bumon img {
  margin-right: 1rem;
}

.gp_block .menu_names {
  font-size: 2.8rem;
  margin: 2rem 0 0 0;
  padding: 0;
}

.gp_block .menu_company {
  font-size: 2.4rem;
  margin: 0 0 40px;
}

.bumon_block,
.special_block {
  width: 100%;
  text-align: left;
}

.bumon_name_block {
  margin: 1rem 0 !important;
  border: none !important;
}

.bumon_name_block td {
  vertical-align: top !important;
  border: none !important;
}

.bumon_name_block .medal {
  width: 80px !important;
}

.bumon_menu_name {
  font-size: 2rem;
  font-weight: bold;
}

.bumon_company_name {
  font-size: 2rem;
  font-weight: normal;
}

.special_block {
  padding-bottom: 0;
  border-bottom: none;
}

.bumon_title,
.special_title {
  display: block;
  margin: 0 auto;
  padding: 60px 0 0;
}

.thanks_block .thanks_photo,
.result_photo_block,
.bumon_block_inner,
.special_block_inner {
  display: flex;
  align-content: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.result_photo_inner,
.bumon_photo_block,
.special_photo_block {
  width: 48%;
}

.result_area_wrap {
  margin: 0;
}

.result_thanks {
  padding-top: 60px;
  text-align: center;
}

.result_title {
  text-align: center;
}

.result_gp,
.result_award {
  padding-top: 60px;
  text-align: center;
}

.result_subUnit {
  display: flex;
  flex-wrap: wrap;
}

.result_subUnit.two_col .column_wrap {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
}
.result_subUnit.two_col div:nth-child(2n) {
  margin-right: 0;
}

.result_award_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.result_award_title img {
  margin-right: 15px;
}

.result_award_title div {
  width: 100%;
}
.result_award_title div .red {
  font-weight: bold;
}
.result_award_title div p {
  margin: 10px 0 0;
}
.result_award_title div p span {
  font-size: 2.8rem;
  font-weight: bold;
}

.result_award_category,
.result_award_text {
  text-align: left;
}

.result_subUnit.three_col {
  padding-bottom: 30px;
}

.result_subUnit.three_col .column_wrap {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 30px;
}
.result_subUnit.three_col div:nth-child(3n) {
  margin-right: 0;
}

.result_image_photo {
  margin-top: 60px;
}

/* gaiyo 
------------------------------------------------------------------ */
.gaiyo {
  padding-top: 30px;
  background-color: #fff5d7;
}

.gaiyo h3 {
  margin: 0;
  padding: 0;
  text-align: center;
}

.gaiyo table {
  width: 100%;
  margin-top: 20px;
  border-top: 2px solid #c30d23;
  background-color: #fff5d7;
}

.gaiyo table th {
  width: 19.7478%;
  text-align: center;
  border-bottom: 2px solid #ede4b8;
}

.gaiyo table td {
  padding: 2rem 1rem;
  border-bottom: 2px solid #ede4b8;
}

.gaiyo table td a {
  display: inline-block;
  margin: 1rem;
  padding: 0;
}

.gaiyo_tokuten {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.gaiyo_tokuten_textlink {
  margin-top: -1rem;
  margin-left: -1rem;
}

.gaiyo_tokuten_head {
  margin-bottom: 1rem;
}

.gaiyo_cation {
  margin-bottom: 2rem;
}

.gaiyo_list_line {
  border-top: 2px solid #ede4b8;
}

.gaiyo_list_logo {
  width: 100%;
  margin: 0;
}

.gaiyo_list_logo .image_box_a {
  display: inline-block;
  width: 20%;
}

.gaiyo_list_logo .image_box_b {
  display: inline-block;
}

.gaiyo_tokuten .qr_code {
  margin-right: 42px;
}

.gaiyo .btn_map {
  vertical-align: bottom;
}

.gaiyo .ticket_list {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.gaiyo .ticket_list li {
  margin: 0;
  padding: 1rem 0;
}

/*  download btn*/
.dl_btn {
  display: block; /* ダウンロードボタン隠す */
  margin-top: 40px;
  text-align: center;
}
/*  download btn end*/

.sns_area {
  width: 100%;
  padding: 40px 0;
  text-align: center;
}

.sns_btn {
  width: 100%;
  padding-top: 10px;
  text-align: center;
}

.sns_btn .facebook {
  margin-right: 1rem;
}

.sns_btn .twitter {
  margin-right: 1rem;
  margin-left: 1rem;
}

.sns_btn .instagram {
  margin-left: 1rem;
}

.gaiyo_small_txt {
  font-size: 20px;
  font-size: 2rem;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.talk_show {
  padding-bottom: 30px;
}

.bg_img_area {
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .bg_img_area img {
    width: 100%;
    text-align: center;
  }

  .menu_bnr {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}

/* about
------------------------------------------------------------------ */
.about {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #fbe777;
}

.about h2 {
  margin: 0;
  padding: 0;
  text-align: center;
}

.about .past_gp_btn {
  margin-bottom: 30px;
  text-align: center;
}

.about .about-text {
  font-size: 2rem;
  padding-top: 20px;
  text-align: justify;
}

.intro_text {
  font-size: 2.4rem !important;
}

.past_gp {
  /*margin-bottom: 56px;*/
}

.gp_kekka {
  width: 100%;
  margin: 0;
  padding: 60px 0;
  text-align: center;
}

.gp_kekka_img {
  width: 70%;
  max-width: 750px;
}

.area-attention {
  padding: 0 0 30px;
  text-align: center;
  background-color: #ffffff;
}

.text-attention {
  font-size: 1.8rem;
  margin-left: -1rem;
  text-align: left;
}

.text-attention li {
  margin: 0;
  padding: 0.5rem 0;
}

.vote {
  display: block; /*投票に関する情報が確定後表示*/
}

.twitter_area {
  max-width: 750px;
  margin: 0 auto;
  margin-top: 56px;
  margin-bottom: 30px;
  text-align: center;
}

.gp_3rd_title {
  margin-bottom: 30px;
}

.gp_3rd_photo_area {
  width: 100%;
  margin: 0 auto;
}

.gp_3rd_photo_area a {
  font-size: 80%;
  font-weight: bold;
  color: #007bff;
}

.gp_3rd_photo_area a img {
  width: 16px;
  margin-left: 8px;
  vertical-align: text-bottom;
}

.gp_3rd_photo {
  float: left;
  width: 50%;
  margin-bottom: 30px;
  padding: 0 15px;
  text-align: center;
}

.gp_3rd_photo p {
  font-weight: bold;
  margin: 0 0 10px;
}

.previous_photo_row {
  width: 100%;
  margin: 0;
}

.previous_photo_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.previous_photo {
  display: inline-block;
  width: calc((100% - 20px) / 3);
  margin-right: 10px;
  margin-bottom: 10px;
}

.previous_photo:nth-child(3n) {
  margin-right: 0;
}

.previous_photo img {
  width: 100%;
}

.external_link {
  /*padding-top: 55px;*/
}

.bnr_top_space {
  display: block;
}

.previous_past_gp_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  /*padding: 30px 0 55px;*/
  padding: 0 0 55px;
}

.previous_past_gp {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
  margin-bottom: 15px;
  padding: 0;
  list-style: none;
  text-align: center;
}

.previous_past_gp:nth-child(even) {
  margin-right: 0;
}

.previous_past_gp:last-child {
  margin-bottom: 0;
}

.previous_past_gp a {
  display: block;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 4px 4px 18px #bfa882;
}

.kekka {
  padding-bottom: 30px;
}

/* menu
------------------------------------------------------------------ */
.menu {
  background-image: url(../images/bg-img2.jpg);
  background-repeat: repeat;
  background-size: contain;
}

.menu h3 {
  margin: 0;
  padding: 70px 0 0;
  text-align: center;
}

.menu h3 span {
  font-size: 1.4rem;
  margin-left: 5px;
  vertical-align: top;
}

.menu .caption {
  font-size: 1.4rem;
  text-align: right;
}

.menu .ichiran {
  padding-top: 20px;
  padding-bottom: 40px;
  text-align: left;
  border-top: 2px solid #231815;
}

.menu .ichiran .comingsoon {
  display: none;
  /* comming soon */
  padding: 40px 0 70px;
}

/* 各メニューのCSS
------------------------------------------------------------------ */
.menu_area {
  display: flex;
  align-content: stretch;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 25px;
  border-top: 2px solid #000000;

  gap: 16px;
}

.menu_block {
  position: relative;
  align-items: flex-start;
  align-self: flex-start;
  width: calc(100% / 3 - (16px * 2 / 3));
  padding: 22px 22px 10px;
  background-color: #ffffff;
}

.menu_block:nth-child(3n) {
  margin-right: 0;
}

.menu_block_inner {
  display: flex;
  align-items: flex-start;
  height: 2.8rem;
  margin-bottom: 2rem;
}

.menu_block_inner .category {
  max-width: 90px;
  margin-right: 1rem;
}

.menu_block_inner a {
  align-self: center;
  color: #000000;
}

.menu_block_inner a:after {
  color: #000000;
}

.menu_block_inner h5 {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.4;
  width: calc(100% + 6px);
  margin: 0;
  padding: 0;
}

.menu_block_inner h5.adjust {
  width: calc(100% + 14px);
  margin-left: -5px;
}

.menu_block h4 {
  font-size: 1.8rem;
  line-height: 1.4;
  width: calc(100% + 6px);
  margin: 1rem 0;
}

.menu_photo_wrap {
  position: relative;
}

.menu_photo {
  position: relative;
  max-width: 100%;
}

.award_icon {
  position: absolute;
  right: 10px;
  bottom: 0;
  max-width: 40px;
}

.award_icon2 {
  position: absolute;
  right: 60px;
  bottom: 0;
  max-width: 40px;
}

.menu_comment {
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

.price_500 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  text-align: center;
  color: #ffffff;
  background-color: #c30d23;
}

.price_250 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  text-align: center;
  color: #ffffff;
  background-color: #16902e;
}

.price_300 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  text-align: center;
  color: #000000;
  background-color: #ffd422;
}

.color_soba {
  color: #16902e;
}

.color_soumen {
  color: #0095b9;
}

.color_udon {
  color: #e84480;
}

.color_chuukamen {
  color: #e48e00;
}

.area-wagohan {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  color: #e95541;
  background-color: #ffffff;
}

.area-wagohan .box-left,
.area-wagohan .box-right {
  width: 20%;
  text-align: center;
}

.area-wagohan .box-center {
  width: 60%;
  text-align: left;
  word-wrap: break-word;
}

.area-wagohan .box-center a {
  font-size: 1.6rem;
  color: #e95541;
}

.area-allergy {
  padding: 30px;
  text-align: center;
  background-color: #ffffff;
}

.area-allergy-text {
  margin: 0;
  padding: 0 0 30px;
}

.recipe_link {
  display: none;
  justify-content: center;
  margin-top: 20px;
}

.recipe_link a {
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  color: #4f3517;
  border-bottom: 1px solid #4f3517;
}
.recipe_link a span {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  content: "";
  background-image: url(../images/menu_external_link.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* access
------------------------------------------------------------------ */
.access {
  padding-top: 96px;
  text-align: center;
  background-color: #ffffff;
}

.access h3 {
  margin: 0;
  margin-bottom: 20px;
  padding: 0 0 20px;
  border-bottom: 2px solid #231815;
}

/*  google map*/
.ggmap {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 30px;
  padding-bottom: 56.25%;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*  //google map*/

.access table {
  width: 100%;
  padding: 10px 0 50px;
}

.access table th {
  display: block;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.access table td {
  display: block;
  padding-bottom: 2rem;
  text-align: left;
  border-bottom: 2px solid #ede4b8;
}

/* recipe banner
------------------------------------------------------------------ */
.banner {
  background-color: #ffffff;
}

.banner_inner {
  padding: 30px 0 10px;
}

.banner_inner .recipe a,
.banner_inner .store a {
  display: inline-block;
  border-radius: 10px;
  box-shadow: 4px 4px 18px #bfa882;
}

/* logo
------------------------------------------------------------------ */
.logo_Area {
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
  background-image: url(../images/bg-img2.jpg);
  background-repeat: repeat;
  background-size: cover;
}

/* contact
------------------------------------------------------------------ */
.contact {
  text-align: center;
  background-color: #fff5d7;
}

.contact h3 {
  margin: 0;
  margin-bottom: 20px;
  padding: 70px 0 20px;
  border-bottom: 2px solid #231815;
}

.contact .mail {
  font-size: 3.6rem;
}

.contact .mail a {
  text-decoration: none;
  color: #000000;
}

.contact .kojinjyoho {
  margin: 0;
  padding-bottom: 70px;
  text-align: justify;
}

/* footer
------------------------------------------------------------------ */
.footer {
  padding-right: 55px;
  padding-left: 55px;
  text-align: center;
  background-color: #734c23;
}

.footer .sns_area {
  border-bottom: 2px solid #ffffff;
}

.footer p {
  margin: 0;
  padding: 20px 0;
  color: #ffffff;
}

/* page-top
------------------------------------------------------------------ */
#page-top {
  font-size: 60%;
  position: fixed;
  right: 20px;
  bottom: 40px;
  margin: 0;
}

#page-top a {
  display: block;
  width: 42px;
  padding: 6px 0;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  border-radius: 4px;
  background: #c30d23;
}

#page-top a:hover {
  text-decoration: none;
  background: #c30d23;
}

@media (max-width: 1024px) {
  .thanks_block .thanks_photo_inner {
    width: 48%;
  }

  .gp_kekka_img {
    width: 100%;
    max-width: 100%;
  }
  .twitter_area {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none; /* スマホ非表示 */
  }

  .sp {
    display: block; /* PC非表示 */
  }

  /* column
	------------------------------------------------------------------ */
  .header,
  .column_box,
  .footer {
    max-width: 768px;
  }

  .column_box {
    padding-right: 30px;
    padding-left: 30px;
  }

  .column_box_type3 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .column_box_6 {
    width: 100%;
  }

  /* header
	------------------------------------------------------------------ */

  /* navigation */
  .nav_wrap {
    display: block;
    width: 100%;
    max-width: 768px;
    height: 60px;
  }

  .nav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
  }

  .nav ul {
    top: -500px;
    display: none;
    height: auto;
    transition: 0.5s ease-in-out;
    opacity: 0;
    background-color: rgba(115, 76, 35, 0.98);
  }

  .nav ul.active {
    display: block;
  }

  .nav ul li {
    display: flex;
    width: 100%;
    border-bottom: 2px solid #4f3517;
    /*border-right: 2px solid #4f3517;*/
    border-left: none;
  }
  /*
  .nav ul li:first-child {
    border-top: 2px solid #4f3517;
    border-left: 2px solid #4f3517;
  }
*/
  .nav ul li .inner_list li {
    border-bottom: none;
  }

  .toggle {
    position: fixed;
    z-index: 200;
    top: 10px;
    right: 20px;
    display: block;
    width: 42px;
    height: 42px;
    cursor: pointer;
    border-radius: 4px;
  }

  .toggle span {
    position: absolute;
    top: 15px;
    left: 22%;
    display: block;
    width: 56%;
    height: 2px;
    transition: 0.5s ease-in-out;
    background: #ffffff;
  }

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

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

  .toggle span:nth-child(3) {
    top: 30px;
  }

  /*開閉ボタンopen時*/
  .toggle .active {
    background-color: rgba(255, 255, 255, 0);
  }

  .toggle .active span:nth-child(1) {
    top: 20px;
    width: 56%;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .toggle .active span:nth-child(2) {
    left: 50%;
    width: 0;
  }

  .toggle .active span:nth-child(3) {
    top: 20px;
    width: 56%;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .nav .active {
    z-index: 9999;
    top: 0;
    opacity: 1;
  }

  /* navigation end */
  .nav ul li a img {
    max-width: 86%;
  }

  /* banner_area
------------------------------------------------------------------ */

  .menu_btn a {
    max-width: 100%;
  }

  .bnr_area {
    flex-direction: column;
    margin-top: 0;
    padding: 30px 0;
  }

  .bnr_area div {
    width: 100%;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 0;
  }

  .bnr_area div:first-of-type {
    margin-top: 0;
  }

  .talk_show_link_inner {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-bottom: 30px;
  }

  /* result area
	------------------------------------------------------------------ */
  .result_block {
    margin: 40px 0 0 0;
  }

  .gp_bumon {
    top: 0;
  }

  .result_photo_inner,
  .bumon_photo_block,
  .special_photo_block {
    width: 100%;
  }

  .bumon_photo_block,
  .special_photo_block {
    text-align: center;
  }

  .bumon_title,
  .special_title {
    padding: 30px 0 0;
  }

  .thanks_block .thanks_message_text {
    text-align: center;
  }

  .icon_title {
    font-size: 2rem;
  }

  .bumon_name_block {
    width: 100%;
    /*max-width:480px!important; */
    margin: 0 auto !important;
  }

  .bumon_name_block {
    margin: 1rem 0;
    border: none !important;
  }

  .bumon_name_block td {
    text-align: left;
    vertical-align: top !important;
    border: none !important;
  }

  .result_photo_2 {
    margin-top: 2rem;
  }

  .result_subUnit.two_col .column_wrap {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .result_subUnit.two_col div:last-child {
    margin-bottom: 0;
  }

  .result_award_title div p span {
    font-size: 2rem;
    font-weight: bold;
  }

  .result_award_text {
    margin-top: 10px;
  }

  .result_subUnit.three_col .column_wrap {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .result_subUnit.three_col div:nth-child(3n) {
    margin-right: 0;
  }
  .result_subUnit.three_col div:nth-child(odd) {
    margin-right: 15px;
  }
  .result_subUnit.three_col div:nth-child(even) {
    margin-right: 0;
  }

  .result_subUnit.three_col .column_wrap .icon_title {
    margin-top: 0;
  }

  .result_caption_area {
    font-size: 1.4rem;
    justify-content: flex-start;
    margin-top: 0;
    text-align: left;
  }

  /* gaiyo
	------------------------------------------------------------------ */
  .gaiyo table td a {
    margin: 1rem 1rem 1rem 0;
  }

  .gaiyo_list_logo .image_box_b {
    display: inline-block;
    max-width: 55%;
  }

  .gaiyo .ticket_wrap {
    width: 40%;
  }

  .gaiyo_small_txt {
    font-size: 14px;
    font-size: 1.4rem;
  }

  /* menu 
	------------------------------------------------------------------ */
  /* 各メニューのCSS 
	------------------------------------------------------------------ */

  .menu_block {
    position: relative;
    align-items: flex-start;
    align-self: flex-start;
    width: calc((100% / 2 - 16px / 2));
    padding: 20px;
    background-color: #ffffff;
  }

  .menu_block:nth-child(2n) {
    margin-right: 0;
  }

  .area-wagohan {
    align-content: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .area-wagohan .box-left,
  .area-wagohan .box-right {
    width: 100%;
    padding: 1rem 0;
  }

  .area-wagohan .box-right {
    padding-bottom: 30px;
  }

  .area-wagohan .box-center {
    width: 100%;
    padding: 0 5%;
    text-align: left;
  }

  .menu h3 span {
    font-size: 1.2rem;
    margin-left: 5px;
    vertical-align: top;
  }

  .menu .caption {
    font-size: 1.2rem;
    margin: 0 0 10px;
    text-align: right;
  }

  /* about
	------------------------------------------------------------------ */
  .about {
    padding: 30px;
  }

  .past_gp {
    /*margin-bottom: 30px;*/
    margin-bottom: 0;
  }

  .gp_kekka {
    margin: 0;
  }

  .gp_kekka_img {
    width: 100%;
  }

  .twitter_area {
    max-width: 100%;
    padding: 0;
  }

  .previous_photo {
    display: inline-block;
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .previous_photo:nth-child(3n) {
    margin-right: 10px;
  }

  .previous_photo:nth-child(2n) {
    margin-right: 0;
  }

  /* footer
	------------------------------------------------------------------ */
  .footer {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 480px) {
  /* font-size
		------------------------------------------------------------------ */
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .t-28 {
    font-size: 18px;
    font-size: 1.8rem;
  }

  .t-24 {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .text-size-down-pc75 {
    font-size: 100% !important;
  }

  .contact .mail {
    font-size: 24px;
    font-size: 2.4rem;
  }

  /* column
		------------------------------------------------------------------ */
  .column_box {
    padding-right: 15px;
    padding-left: 15px;
  }

  .footer {
    padding-right: 15px;
    padding-left: 15px;
  }

  /* banner_area
  ------------------------------------------------------------------ */

  .menu_btn a {
    margin: 30px auto 0;
  }

  /* recipe link
	------------------------------------------------------------------ */
  .recipe {
    margin: 0 0 30px;
  }

  .store {
    position: relative;
    width: 100%;
    margin: 30px 0 30px;
    text-align: center;
  }

  /* result area
		------------------------------------------------------------------ */
  .thanks-result_area {
    margin: 30px 0;
    padding: 2rem;
  }

  .thanks_block .thanks_photo_inner {
    width: 100%;
  }

  .icon_title {
    margin-bottom: 1rem;
  }

  .thanks_photo_line01 img {
    margin-top: 0;
  }

  .thanks_photo_first {
    margin-top: 0 !important;
  }

  .gp_bumon {
    font-size: 2rem;
    top: 0;
  }

  .gp_block {
    padding-bottom: 30px;
  }

  .gp_silver {
    margin-top: 30px;
  }

  .gp_block .menu_names {
    font-size: 2rem;
    margin: 2rem 0 0 0;
  }

  .gp_block .menu_company {
    font-size: 2rem;
    margin: 0 0 20px;
  }

  .bumon_name_block {
    margin: 0 !important;
  }

  .bumon_name_block .medal {
    width: 20% !important;
    margin-right: 1rem !important;
  }

  .bumon_menu_name {
    width: 75% !important;
  }

  .bumon_photo_block,
  .special_photo_block {
    text-align: left;
  }

  .bumon_block,
  .special_block {
    width: 100%;
    padding-bottom: 0;
    text-align: left;
  }

  /* gaiyo
		------------------------------------------------------------------ */

  .gaiyo table th {
    display: inline-block;
    width: 100%;
    padding: 1rem;
  }

  .gaiyo table td {
    display: inline-block;
    width: 100%;
    padding: 1rem 0;
  }

  .gaiyo table td a {
    margin: 1rem 0;
  }

  /*.gaiyo .btn_map {
		margin:0;
		vertical-align: middle;
	} */

  .sns_area .text_share {
    max-width: 60%;
  }

  .gaiyo_list_logo .image_box_a {
    display: inline-block;
    width: 20%;
  }

  .gaiyo_list_logo .image_box_b {
    display: inline-block;
    max-width: 50%;
  }

  .gaiyo .noborder_sp {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .gaiyo .ticket_wrap {
    width: 100%;
    padding-top: 2rem;
  }

  .talk_show {
    padding-bottom: 15px;
  }

  .bnr p {
    font-size: 1.6rem;
    margin: 0;
    padding: 0 0 30px;
  }

  /* about
		------------------------------------------------------------------ */
  .about {
    width: 100%;
    padding: 30px 15px 20px;
  }

  .intro_text {
    font-size: 2rem !important;
    margin-top: 0;
  }

  .about .about-text {
    font-size: 1.6rem;
    padding-top: 20px;
  }

  .about .past_gp_btn {
    margin-bottom: 30px;
  }

  .gp_kekka {
    margin: 0;
    padding: 30px 0;
  }

  .area-attention {
    padding: 30px 0 15px;
  }

  .text-attention {
    font-size: 1.6rem;
    margin-left: -2rem;
  }

  .twitter_area {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .gp_3rd_photo {
    width: 100%;
    padding: 0 0;
  }

  .gp_3rd_photo p {
    margin: 0 0 4px;
  }

  .gp_3rd_photo_area a {
    font-size: 90%;
  }

  .previous_photo {
    margin-bottom: 0;
    padding: 0;
  }

  .kekka {
    padding-bottom: 15px;
  }

  .external_link {
    /*padding-top: 30px;*/
  }

  .previous_past_gp_area {
    /*padding: 30px 0 30px;*/
    padding: 10px 0 30px;
  }

  /* menu
		------------------------------------------------------------------ */
  .menu h3 {
    padding: 30px 0 20px;
  }

  .kanmen-prince-area {
    margin-bottom: 30px;
  }

  .kanmen-prince-text {
    font-size: 1.4rem;
  }

  .column_box_type01 {
    padding-bottom: 30px;
  }

  .menu_block h5 {
    font-size: 1.6rem;
  }

  .menu_block h4 {
    font-size: 2rem;
    padding: 0 0 1rem 0;
  }

  .menu_block {
    width: 100%;
    margin-right: 0;
    padding: 15px;
  }

  .menu_block:nth-child(3n) {
    margin-right: 0;
  }

  .menu_block:nth-child(2n) {
    margin-right: 0;
  }

  .menu_comment {
    font-size: 1.4rem;
  }

  .menu {
    margin-bottom: -30px;
  }

  .menu h3 span {
    font-size: 1.2rem;
  }

  .menu .caption {
    font-size: 1.2rem;
  }

  .price_500 {
    font-size: 1.8rem;
    margin: 0 0 1.4rem 0;
    padding: 0.7rem;
  }

  .price_300 {
    font-size: 1.8rem;
    margin: 0 0 1.4rem 0;
    padding: 0.7rem;
  }

  .area-allergy {
    margin-bottom: 30px;
    padding: 30px 15px;
    text-align: left;
  }

  /* access
		------------------------------------------------------------------ */
  .access {
    padding-top: 60px;
  }
  .access h3 {
    padding: 0 0 20px;
  }
  .access table {
    padding: 0 0 0;
  }

  /* logo
		------------------------------------------------------------------ */
  .logo_Area {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  /* contact
		------------------------------------------------------------------ */
  .contact h3 {
    padding: 30px 0 20px;
  }

  .contact .kojinjyoho {
    padding-bottom: 30px;
  }

  .bnr_bottom {
    margin-bottom: 30px;
  }
}

/* 2025 追加
------------------------------------------------------------------ */
/* about
------------------------------------------------------------------ */
.about-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 58px;

  gap: 34px;
}
@media screen and (max-width: 768px) {
  .about-cat {
    margin-top: 32px;
  }
}

.about-cat-item {
  width: calc(100% / 2 - 34px / 2);
}
@media screen and (max-width: 768px) {
  .about-cat-item {
    width: 100%;
  }
}

.about-step {
  margin-top: 97px;
}
@media screen and (max-width: 768px) {
  .about-step {
    margin-top: 60px;
  }
}

/* bnr_menu
------------------------------------------------------------------ */
.bnr_menu {
  background-color: #fbe776;
}

/* map
------------------------------------------------------------------ */
.map {
  padding-top: 60px;
  padding-bottom: 125px;
  background-color: #fbe776;
}
@media screen and (max-width: 768px) {
  .map {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.map_header {
  margin-bottom: 33px;
  padding-bottom: 27px;
  text-align: center;
  border-bottom: 2px solid #c40f22;
}

.bnr .bnr_area {
  padding: 10px 0 0;
}

.bnr .bnr_area > div {
  position: relative;
}
.bnr .bnr_area > div img {
  width: 100%;
}

.bnr .bnr_area > div:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);

  aspect-ratio: calc(322 / 410);
}

.talk_show {
  padding-top: 33px;
  padding-bottom: 113px;
}
@media screen and (max-width: 768px) {
  .talk_show {
    padding-bottom: 80px;
  }
}
.talk_show .c-note--22 {
  font-size: 22px;
  margin: 35px 0 0;
}
@media screen and (max-width: 768px) {
  .talk_show .c-note--22 {
    font-size: 16px;
    margin: 10px 0 0;
  }
}
.talk_show .c-note--22 span {
  display: block;
  padding-left: 22px;
  text-indent: -22px;
}
@media screen and (max-width: 768px) {
  .talk_show .c-note--22 span {
    padding-left: 16px;
    text-indent: -16px;
  }
}

/********
menu
********/
.menu {
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  .menu {
    padding-top: 60px;
  }
}
.menu .menu-header {
  margin-top: 0;
  text-align: center;
  border-bottom: 2px solid #000000;
}
.menu .menu-header h2 {
  margin: 0;
}
.menu .menu-header-note {
  font-size: 16px;
  margin-top: -8px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .menu .menu-header-note {
    margin-top: 10px;
  }
}

.menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;

  gap: 44px;
}
@media screen and (max-width: 768px) {
  .menu-link {
    gap: 30px;
  }
}

.menu-link-item {
  width: calc(100% / 2 - 44px / 2);
}
@media screen and (max-width: 768px) {
  .menu-link-item {
    width: calc(100% / 2 - 30px / 2);
  }
}

.menu-cat {
  position: relative;
  margin-top: 66px;
  padding: 64px 44px 78px;
  border-top: 17px solid;
  -o-border-image: linear-gradient(to right, #4ba359, #036519) 1;
  border-image: -webkit-gradient(linear, left top, right top, from(#4ba359), to(#036519)) 1;
  border-image: linear-gradient(to right, #4ba359, #036519) 1;
  background-color: #ffffff;
}
.menu-cat.arrangement {
  -o-border-image: linear-gradient(to right, #a20f21, #c30d24) 1;
  border-image: -webkit-gradient(linear, left top, right top, from(#a20f21), to(#c30d24)) 1;
  border-image: linear-gradient(to right, #a20f21, #c30d24) 1;
}
@media screen and (max-width: 768px) {
  .menu-cat.arrangement h3 {
    width: calc(452 / 658 * 100%);
    min-width: 240px;
    margin: 0 auto;
    text-align: center;
  }
  .menu-cat.arrangement h3 img {
    display: block;
    width: 100%;
  }
}
.menu-cat.arrangement .color_udon,
.menu-cat.arrangement .color_soumen,
.menu-cat.arrangement .color_soba,
.menu-cat.arrangement .color_chuukamen {
  color: #c30d23;
}

@media screen and (max-width: 768px) {
  .menu-cat {
    padding: 64px 16px 78px;
  }
}
@media screen and (max-width: 480px) {
  .menu-cat {
    padding: 56px 16px 78px;
  }
}
.menu-cat .menu-icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% - (17px / 2)));
  transform: translate(-50%, calc(-50% - (17px / 2)));
}

@media screen and (max-width: 768px) {
  .menu-cat .menu-icon {
    width: calc(114 / 630 * 100vw);

    aspect-ratio: 1;
  }
}
.menu-cat h3 {
  padding: 0;
}

@media screen and (max-width: 768px) {
  .menu-cat h3 {
    width: calc(360 / 658 * 100%);
    min-width: 220px;
    margin: 0 auto;
    text-align: center;
  }
  .menu-cat h3 img {
    display: block;
    width: 100%;
  }
}
.menu-cat .menu_area {
  margin-top: 40px;
  padding: 0 0 0;
  border: 0;
}

.menu-cat .menu_area .menu_block {
  border: 1px solid #ede4b8;
}

.kyosan-img {
  width: 292px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .kyosan-img {
    width: 190px;
  }
}

sub {
  font-size: 20px;
  line-height: 1;
  bottom: -0.4em;
  display: inline-block;
}

.kyosan_makers {
  padding-bottom: 5rem;
}

.presents {
  position: relative;
}

.presents-overlay {
  font-size: 2.5rem; /* PCサイズ */
  font-weight: bold;
  position: absolute;
  z-index: 100;
  top: 75%;
  left: 50%;
  width: 60%;
  padding: 1em;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
}
.presents-overlay span {
  font-size: 1.8rem;
}

.presents-pc {
  display: block;
  width: 100%;
}

.presents-sp {
  display: none;
  width: 100%;
}

.previous_menu {
  padding-top: 30px !important;
}

@media (max-width: 768px) {
  .presents-pc {
    display: none;
  }

  .presents-sp {
    display: block;
  }

  .presents-overlay {
    font-size: 1rem;
    top: 65%; /* スマホ用：65%に変更 */
    padding: 0.8em;
  }
  .presents-overlay span {
    font-size: 0.7rem;
  }
  .previous_menu {
    padding-top: 15px !important;
  }
}

/* result
------------------------------------------------------------------ */
.result {
  padding-top: 40px;
  padding-bottom: 120px;
  background-color: #fff5d7;
}
@media screen and (max-width: 768px) {
  .result {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}
.result h2 {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .result h2 {
    width: calc(100% + 15px);
  }
}

.result-desc {
  font-size: 18px;
  line-height: calc(26 / 18);
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .result-desc {
    margin-top: 24px;
    text-align: left;
  }
}

.result-winner {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .result-winner {
    margin-top: 60px;
  }
}
.result-winner h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .result-winner h3 picture {
    width: 90%;
  }
}

.result-winner-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 40px;

  gap: 90px;
}
@media screen and (max-width: 768px) {
  .result-winner-content-wrapper {
    gap: 40px;
  }
}

.result-winner-content {
  width: calc(100% / 2 - (90px / 2));
}
@media screen and (max-width: 768px) {
  .result-winner-content {
    width: 100%;
  }
}
.result-winner-content h4 {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .result-winner-content h4 {
    width: 90%;
  }
}
.result-winner-content:nth-child(2) {
  position: relative;
}
.result-winner-content:nth-child(2)::before {
  position: absolute;
  left: calc(90px / 2 * -1);
  width: 2px;
  height: 100%;
  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #c59d42;
}

.result-winner-content__menu {
  font-size: 28px;
  font-weight: bold;
  line-height: calc(40 / 28);
  margin: 24px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .result-winner-content__menu {
    font-size: 22px;
  }
}

.result-winner-content__company {
  font-size: 20px;
  line-height: calc(29 / 20);
  margin: 9px 0 0;
  text-align: center;
}

.result-winner-content__img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 29px;

  gap: 30px;
}

.result-content {
  margin-top: 100px;
  padding-top: 44px;
  border-top: 2px solid #c59d42;
}
.result-content h3 {
  max-width: 640px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .result-content h3 {
    width: 90%;
    max-width: 400px;
  }
}

.result-content__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;

  gap: 48px 29px;
}

.result-content__item {
  width: calc(100% / 2 - (29px / 2));
}
@media screen and (max-width: 768px) {
  .result-content__item {
    width: 100%;
  }
}

.result-content__item-title {
  font-size: 19px;
  line-height: calc(27 / 19);
  position: relative;
  margin: 0;
  padding-left: 48px;
  color: #c6a047;
}
.result-content__item-title::before {
  position: absolute;
  top: calc(19px * (27 / 19) / 2);
  left: 0;
  width: 40px;
  height: 30px;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/ico_donburi01.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.result-content__item-img {
  display: block;
  margin-top: 12px;
}

.result-content__item-menu-wrapper {
  position: relative;
  width: 100%;
  margin-top: 12px;
  padding-left: 75px;
}
.result-content__item-menu-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 69px;
  content: "";
  background-image: url(../images/ico_winner01.svg);
  background-position: center center;
  background-size: contain;
}

.result-content__item-menu {
  font-size: 20px;
  font-weight: bold;
  line-height: calc(29 / 20);
  width: calc(100%);
  margin: 0;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .result-content__item-menu {
    font-size: 18px;
    width: calc(100% + 0px);
  }
}

.result-content__item-company {
  font-size: 20px;
  line-height: calc(29 / 20);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .result-content__item-company {
    font-size: 18px;
  }
}

.result-content__note {
  font-size: 14px;
  line-height: calc(20 / 14);
  position: relative;
  margin-top: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .result-content__note {
    margin-top: 24px;
  }
}
.result-content__note::before,
.result-content__note::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  /*content: "";*/
  background: repeating-linear-gradient(to right, #b22222, #b22222 3px, transparent 3px, transparent 5px);
}
.result-content__note::after {
  top: initial;
  bottom: 0;
}

.result-gallery {
  margin-top: 98px;
  padding-top: 52px;
  border-top: 2px solid #c59d42;
}

@media screen and (max-width: 768px) {
  .result-gallery {
    margin-top: 60px;
    padding-top: 32px;
  }
}

.result-gallery-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px;

  gap: 30px 28px;
}
.result-gallery-inner > picture {
  width: calc(100% / 3 - (28px * 2 / 3));
}
@media screen and (max-width: 768px) {
  .result-gallery-inner > picture {
    width: 100%;
  }
}
.result-gallery-inner > picture img {
  display: block;
  width: 100%;
}

.result-cf {
  margin-top: 108px;
}
@media screen and (max-width: 768px) {
  .result-cf {
    margin-top: 60px;
  }
}
