@charset "utf-8";

/*--------------------------------------------------------------*/
/* fontIcon
:before,
:after {
	content: "\f099";
	font-family: "icomoon";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.mont {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.m-plus {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
}
/*--------------------------------------------------------------*/
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ
　　320：スマートフォン縦：基本・レイアウト指定 */
/* ------------------------------------------------------------ */
* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
/*ナビ表示のときはスクロールしないように*/
html.is-locked {
  overflow-y: hidden;
}
body {
  margin: 0;
  padding: 0;
  /* background: var(--bg-main-color);
  color: var(--primary-color); */
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  font-family: "M PLUS 1p", YuGothic, "Yu Gothic Medium", "Yu Gothic",
    -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue",
    HelveticaNeue, Verdana, Meiryo, sans-serif !important;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
#header {
  background-color: #fff;
}

img {
  border-style: none;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}
img,
video {
  max-width: 100%;
  height: auto;
  /* margin: 0 auto; */
}

ol {
  padding-inline-start: 0 !important;
}

#menu .container {
  width: 90%;
  /* background: #fff; */
  margin-top: 30px;
}

#menu #tab01 .container .box{
  width: 100%;
  /* background: #fff; */
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "col_img col_txt";
  justify-content: center;
  align-items: center;
  gap: 50px;
  @media (max-width: 767px) {
    grid-template-columns: 1fr;
    grid-template-areas:
    "col_txt"
    "col_img";
    gap: 20px;
    margin-top: 80px;
    padding-bottom: 50px;
  }
}

#menu #tab01 .container .box .col_txt{
  justify-self: center;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
}

#menu #tab01 .container .box .col_txt ul li{
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}

#menu #tab01 .container .box .col_txt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 18px;
  background: #D4AF37;
  clip-path: polygon(
    50% 0%,
    100% 25%,
    100% 75%,
    50% 100%,
    0% 75%,
    0% 25%
  );
}

#menu #tab01 .container .box .col_txt h4{
  font-weight: initial;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  position: relative;
  padding-bottom: 5px;
  margin-top: 20px;
  @media (max-width: 767px) {
    margin-top: 40px;
    flex-direction: column;
    font-size: 26px;
  }
}

#menu #tab01 .container .box .col_txt h4::after{
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1211/16;
  bottom: 0;
  left: 0;
  background-image: url(../img/menu-border-red.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#menu #tab01 .container .box .col_txt span{
  font-size: 24px;
  color: #cb0918;
  font-family: "Dela Gothic One", "Noto Sans JP", sans-serif;
  @media (max-width: 767px) {
    font-size: 26px;
  }
}
#menu #tab01 .container .box .col_txt span small{
  font-size: 12px;
  color: #cb0918;
  font-family: "Dela Gothic One", "Noto Sans JP", sans-serif;
}

#menu #tab01 .container .box .col_txt .menu-point{
  position: relative;
  display: inline-block;
  color: #ffffff;
  width: 130px;
  text-align: center;
  margin: 0;
  z-index: 0;
  font-size: 16px;
  @media (max-width: 767px) {
    width: 200px;
    font-size: 18px;
  }
}

#menu #tab01 .container .box .col_txt .menu-point::after{
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-50%);
  width: 160px;
  aspect-ratio: 43 / 15;
  background-image: url(../img/menu-bg-red.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  @media (max-width: 767px) {
    width: 220px;
  }
}

#menu #tab01 .container .box:nth-child(2) .col_txt .menu-point::after{
  background-image: url(../img/menu-bg-yellow.png);
}

#menu #tab01 .container .box:nth-child(4) .col_txt .menu-point::after{
  background-image: url(../img/menu-bg-Green.png);
}


a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none !important;
}

li {
  list-style: none;
}

.pc {
  display: none;
}

.tab_pc {
  display: none;
}

@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------------------------------ */
/* common layouts */
.wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.content_inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  /* padding: 0 1em; */
  margin: 0 auto;
  clear: both;
}

.inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  /*padding: 0 1em;*/
  margin: 0 auto;
  clear: both;
}
.inner::after {
  content: "";
  clear: both;
  display: block;
}

.in_inner {
  width: 100%;
  max-width: 980px;
  padding: 0 1em;
  margin: 0 auto;
}

.content {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
}
.base {
  position: relative;
  width: 100%;
  height: auto;
  padding: 6em 0 5em;
  margin: 0 auto;
}

.flx_box {
  display: block;
}

/* ---------------------- */
/* font */

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.m-plus {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
}

/* ---------------------- */
/* img */

.img img {
  width: 100%;
}

/* ------------------------------------------------------------ */
/* ここから オリジナル */

/* ---------------------- */
/* ttl / font */
.main_ttl {
  text-align: center;
  margin: 1em auto 2em;
}

#tab01 .main_ttl {
  width: 180px;
}

#tab01 .main_ttl span {
  position: relative;
  display: inline-block;
}

.main_ttl span::before,
.main_ttl span::after {
  position: absolute;
  content: "";
}

#tab01 .main_ttl span::before {
  background: url(../img/figure_moku_left.svg) center / contain no-repeat;
  width: 100px;
  height: 200px;
  left: -80px;
  top: -60px;
}

#tab01 .main_ttl span::after {
  background: url(../img/figure_moku_right.svg) center / contain no-repeat;
  width: 100px;
  height: 200px;
  right: -80px;
  top: -60px;
}

#tab02 {
  position: relative;
  /* background-image: url(../img/menu-tab2-bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover; */
  background:
  linear-gradient(
    to bottom,
    rgba(26, 26, 27, 1) 15%,
    rgba(26, 26, 27, .6) 100%
  ),
  url(../img/menu-tab2-bg.png) center bottom / cover no-repeat;
}
#tab02 .main_ttl {
  letter-spacing: 0.1em;
  color: #1f938a;
}

#tab02 .main_ttl span {
  font-size: 44px;
  font-weight: 900;
}

#menu .inner #tab02 .container{
  @media (max-width: 767px) {
    margin-top: 40px;
  }
}

#menu #tab02 .container .box{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "col_img col_txt";
  justify-content: center;
  align-items: start;
  width: 100%;
  gap: 70px;
  @media (max-width: 767px) {
    grid-template-columns: 1fr;
    grid-template-areas:
    "col_img"
    "col_txt";
    gap: 0;
  }
}

#tab02 .box .col .menu-item h4{
  position: relative;
  background-image: url(../img/menu-tab2-ttl.jpg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 100%;
  padding-left: 30px;
  font-weight: initial;
  aspect-ratio: 1000 / 203;
  text-align: left;
  color: #cb0918;
  align-items: center;
  display: flex;
  font-size: 42px;
  font-family: "Dela Gothic One", "Noto Sans JP", sans-serif;
  @media (max-width: 767px) {
    font-size: 30px;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 30px;
  }
}

#tab02 .box .col .menu-item ul{
  padding: 0px 20px 80px;
  @media (max-width: 767px) {
    padding: 0px 20px 40px;
  }
}

#tab02 .box .col .menu-item ul li{
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: initial;
}

#tab02 .box .col .menu-item ul li span{
  text-align: right;
}

.sub_ttl {
  font-size: 26px;
  text-align: center;
  margin: 2em 0 1.5em;
}

.sub_ttl span {
  font-size: 20px;
  display: block;
}

.small_ttl {
  font-size: clamp(14px, 3vw, 20px);
  font-weight: 600;
  margin: 0 0 0.1em 0;
}

.box_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: left;
}

.catch_txt {
  color: #e27500;
  font-size: clamp(14px, 3vw, 18px);
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
#tab02 .catch_txt {
  color: #333;
}
.txt_l {
  font-size: 26px;
  font-weight: 700;
  margin: 2em 0 1em;
}

.txt_r {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.txt_m {
  font-size: 16px;
  line-height: 1.5;
  margin: 0.5em;
}

.txt span {
  text-align: left;
}

.text_small {
  font-size: 12px;
}

.notice {
  color: var(--contrast-color);
  font-weight: 700;
}

.asterisk {
  font-size: 10px;
  color: var(--contrast-color);
}

/* ---------------------- */
/* swiper */

.feature_slider {
  position: relative;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--main-color);
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #b4b3b3;
  opacity: 1;
}
/* ---------------------- */
/* btn */
.btn {
  display: block;
  padding: 1em 0 !important;
}

.btn a {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 900;
  background: #feb42d;
  color: #000;
  border-radius: 12px;
  padding: 1em 3em;
  box-shadow: 5px 5px 0 #000;
  transition: all 0.3s ease;
  z-index: 10;
}

.btn a:hover {
  transform: translateX(5px) translateY(5px);
  box-shadow: inherit;
  text-decoration: none;
}

.btn:focus,
.btn:active {
  outline: none;
  outline-offset: inherit;
  box-shadow: none;
  text-decoration: none;
}
/* ---------------------- */
/* mainvisual */
.mv {
  position: relative;
  z-index: 3;
}

.mv figure {
  max-width: 1200px;
  margin: 0 auto;
}

/* .mv:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  background: #005726;
  z-index: -1;
}

.mv:after {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fbf1de;
  z-index: -1;
} */

/* ---------------------- */
/* tab_btn */
.tab_btn {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  gap: 50px;
  @media (max-width: 767px) {
    gap: 10px;
  }
}

.tab_box {
  display: none;
  padding: 6em 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  @media (max-width: 767px) {
    padding: 3em 20px 8em;
  }
}

.tab_box.is-active {
  /* display: block; */
  display: flex;
}

.tab_btn a {
  display: block;
  width: 300px;
  font-size: 20px;
  text-align: center;
  /* font-weight: 700; */
  padding: 1em;
  /* border-radius: 10px 10px 0 0; */
  transition: all 0.3s ease;
  margin: 0 0.5em;
  /* opacity: 0.5; */
  @media (max-width: 767px) {
    font-size: 18px!important;
  }
}

.tab_btn a.active {
  opacity: 1;
}

.tab_btn .btn_nabe {
  font-size: 20px;
  color: #fff;
  background: #D4AF37;
}

.tab_btn .btn_bbq {
  font-size: 20px;
  color: #fff;
  background: #1A1A1B;
}

.tab_box:nth-of-type(1) {
  background: #fbf1de;
}

/* .tab_box:nth-of-type(2) {
  background: #005726;
} */

/* set */
.set {
  position: relative;
  padding: 5em 2em;
  margin: 5em 0;
}
#tab01 {
  background-color: #fbf1de;
}

#tab01 h3 {
  color: #D4AF37;
}

#tab01 .set {
  border: 2px solid #e83828;
}

#tab01 .set .set_ttl {
  position: absolute;
  font-size: 30px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbf1de;
  padding: 0.2em 1em;
}

#tab02 .set .set_ttl {
  position: absolute;
  font-size: 30px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #fafafa;
  padding: 0.2em 1em;
}

#tab02 .set {
  border: solid 2px #1f938a;
}

/* menu_list */
.menu_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu_list .menu_box {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 2em;
}

#tab01 .menu_list .menu_box {
  border: 1px solid #e83828;
  background: #fff;
}

#tab02 .menu_list .menu_box {
  border: 1px solid #1f938a;
  background: #fff;
}

.menu_list .menu_box figure {
}

.menu_list .menu_box figure img {
  border-radius: 18px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.menu_list .menu_ttl {
  font-size: clamp(16px, 3vw, 23px);
  text-align: center;
  border-radius: 22px 22px 0 0;
  padding: 0.5em 1em;
  margin: 0;
}

#tab01 .menu_list .menu_ttl {
  background: #e83828;
  color: #fff;
}

#tab02 .menu_list .menu_ttl {
  background: #1f938a;
  color: #fff;
}

#tab02 .menu-set__title span {
  background-color: #fff;
}

#tab02 .menu-set__title::before {
  background-color: #333;
}

.menu_list .padding {
  padding: 1.5em;
}

/* bar */

.tab_box .bar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  padding: 0.4em;
  margin: 2em 0 1em;
}

#tab01.tab_box .bar {
  background: #e27500;
}

#tab02.tab_box .bar {
  background: #1f938a;
  color: #fff;
}

.tab_box .bar span {
  display: block;
}

.tab_box .bar span.circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 47px;
  font-size: 14px;
  color: #1f938a;
  background: #fff;
  border-radius: 50%;
  margin: 0 0.5em 0 0;
}

#tab01.tab_box .bar span.circle {
  color: #e27500;
  background: #fff;
}

#tab02.tab_box .bar span.circle {
  color: #1f938a;
  background: #fff;
}
#tab02.tab_box .price-menu {
  border: 2px dashed #1f938a;
}
#tab02.tab_box .price-menu__note {
  background-color: #1f938a;
}

.tab_box .bar .icon-wrap {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translatey(-50%);
  width: 38px;
  height: 38px;
}
.tab_box .bar .icon-wrap .icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.tab_box .bar .icon-wrap .icon::before,
.tab_box .bar .icon-wrap .icon::after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #fff;
  left: 50%;
  top: 50%;
  width: 35%;
  height: 3px;
  transform: translate(-50%, -50%);
  border-radius: 4px;
}
.tab_box .bar .icon-wrap .icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.tab_box .bar.is-open .icon-wrap .icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.ac_cnt {
  display: none;
}

/* menu_picture */
.menu_picture {
}

.menu_picture .flx_box {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: flex-start; */
}

.menu_picture .flx_box .flx_item {
  width: calc(100% / 2 - 1em);
  margin: 0 2em 2em 0;
}

.menu_picture .flx_box .flx_item figure img {
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media screen and (min-width: 740px) {
  .menu_picture .flx_box .flx_item {
    margin: 0 1em 2em 0;
  }
}
.menu_picture .flx_box .flx_item:nth-of-type(2n) {
  margin: 0 0 2em 0;
}
.menu_picture .flx_box .flx_item p.price {
  text-align: left;
}
.menu_picture .flx_box .flx_item p.price_l {
  font-size: clamp(14px, 3vw, 17px);
  transform: none;
}
@media screen and (min-width: 740px) {
  .menu_picture .flx_box .flx_item p.price {
    text-align: right;
  }
  .menu_picture .flx_box .flx_item p.price_l {
    transform: translateY(-1.4em);
  }
}
/* tanpin */
.tanpin .flx_box {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.tanpin .tanpin_list li {
  position: relative;
  width: 250px;
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 1.5em;
  margin: 0.3em auto;
}

.tanpin .tanpin_list li::before {
  position: absolute;
  content: "";
  background: #e83828;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 9px;
}

/* other */
.other {
  padding: 4em 0;
}
@media screen and (min-width: 480px) {
  .other .in_inner2 {
    width: 500px;
  }
}

.other img {
  display: block;
  width: 100%;
}

.other .bn a {
  display: block;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.other .bn a:hover {
  opacity: 0.8;
}

/* fix_btn */
.fix_btn {
  position: fixed;
  z-index: 99999;
  bottom: 0;
  right: 0;
  left: 0;
  width: min(940px, 90%);
  margin: auto;
  padding: 16px 0;
}

.fix_btn a {
  display: block;
  background: #c31e1e;
  color: #fff;
  border: 4px solid #c31e1e;
  font-size: 1.5em;
  text-align: center;
  border-radius: 13px;
  padding: 16px 0;
  padding: 16px 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.fix_btn a:hover {
  color: #c31e1e;
  background: #fff;
}
@media screen and (min-width: 375px) {
  .menu_picture .flx_box.flx_2cols .flx_item.flx_item-pc1 {
    width: 100%;
    margin: 0 0 2em 0;
  }
}

/* ==============================================================
 スマホ　横
================================================================= */
@media screen and (min-width: 480px) {
}

/* ==============================================================
 タブレット
================================================================= */
@media screen and (min-width: 600px) {
  /* 600px以上(タブレット) */

  .sp-only {
    display: none;
  }

  .center {
    text-align: center;
  }

  /*--------------------------------------------------------------*/
  /* ------------------------------------------------------------ */
  /* ここからコンテンツ  ページ独自レイアウト */
  /* ------------------------------------------------------------ */
  .main_ttl {
    width: inherit;
    font-size: 34px;
  }

  .tab_btn .btn_nabe {
    font-size: 26px;
  }

  .tab_btn .btn_bbq {
    font-size: 26px;
  }

  .tab_box .bar {
    font-size: 30px;
  }

  .tab_box .bar span.circle {
    font-size: 18px;
  }

  .menu_list .menu_box {
    width: calc(100% / 2 - 1em);
  }
  .menu_picture .flx_box.flx_3cols .flx_item {
    width: calc(100% / 3 - 1em);
  }

  .menu_picture .flx_box.flx_3cols .flx_item {
    width: calc(100% / 3 - 1em);
  }
  .menu_picture .flx_box.flx_4cols .flx_item {
    width: calc(100% / 4 - 1em);
  }

  .menu_picture .flx_box.flx_4cols .flx_item {
    width: calc(100% / 4 - 1em);
  }

  .menu_picture .flx_box.flx_5cols .flx_item {
    width: calc(100% / 5 - 1em);
  }

  .flx_box .flx_box .flx_item {
    margin: 0 1em 2em 0;
  }

  .menu_picture .flx_box .flx_item:nth-of-type(2n) {
    margin: 0 0 2em 0;
  }

  .menu_picture .flx_box.flx_3cols .flx_item:nth-of-type(2n) {
    margin: 0 0 2em 0;
  }

  .menu_picture .flx_box.flx_3cols .flx_item:nth-of-type(3n) {
    margin: 0 0 2em 0;
  }
  .menu_picture .flx_box.flx_4cols .flx_item:nth-of-type(2n) {
    margin: 0 0 2em 0;
  }

  .menu_picture .flx_box.flx_5cols .flx_item:nth-of-type(5n) {
    margin: 0 0 2em 0;
  }

  .menu_picture .flx_box.flx_3cols .flx_item:nth-of-type(2n) {
    margin: 0 1em 2em 0;
  }
}

@media screen and (min-width: 740px) {
  .menu_picture .flx_box.flx_2cols .flx_item {
    width: calc(100% / 2 - 1em);
  }
}

@media screen and (min-width: 900px) {
  .txt {
    font-size: 1.3em;
    line-height: 1.5;
    margin: 0.5em 0;
  }

  .tablet {
    display: none;
  }

  .sp-tab {
    display: none;
  }

  .tab_pc {
    display: block;
  }

  div#breadcrumb_container {
    width: 100%;
  }

  .flx_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .flx_box .flx_item {
    width: calc(100% / 2 - 1em);
  }

  .menu_picture .flx_box.flx_5cols .flx_item {
    width: calc(100% / 5 - 1em);
    margin: 0 1em 2em 0;
  }

  .menu_picture .flx_box.flx_5cols .flx_item:nth-of-type(5n) {
    margin: 0 0 2em 0;
  }

  /*--------------------------------------------------------------*/
  /* ------------------------------------------------------------ */
  /* ここからコンテンツ  ページ独自レイアウト */
  /* ------------------------------------------------------------ */

  .tanpin .flx_box {
    justify-content: center;
    flex-direction: row;
  }

  .tanpin .tanpin_list li {
    width: 250px;
  }
}

@media screen and (min-width: 1024px) {
  /* 1024px以上（PC） */

  .inner {
    max-width: 1000px;
  }

  .pc {
    display: block;
  }
  .sp {
    display: none;
  }

  /*--------------------------------------------------------------*/
  /* ------------------------------------------------------------ */
  /* ここからコンテンツ  ページ独自レイアウト */
  /* ------------------------------------------------------------ */
  .set {
    padding: 5em;
  }

  .menu_picture .flx_box.flx_2cols .flx_item.flx_item-pc1 {
    width: calc(50% - 1em);
    margin: 0 1em 2em 0;
  }
  .menu_picture .flx_box.flx_2cols .flx_item.flx_item-pc1:nth-child(2n) {
    margin: 0 0 2em 0;
  }
}

@media screen and (min-width: 1100px) {
}
@media screen and (min-width: 1200px) {
}
@media screen and (min-width: 1300px) {
}

@media screen and (min-width: 1440px) {
}

@media screen and (min-width: 1600px) {
}
