@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
html {
  font-size: 62.5% !important;
}

body {
  width: 100%;
  margin: 0 auto;
  font: 0.625rem "Noto Sans JP", Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0;
  color: #FFF;
  font-size: 1.8rem;
  word-break: break-all;
  overflow: hidden;
  background: url(./images/bg.png) repeat center;
}

.fixed {
  width: 100%;
  position: fixed;
  overflow: hidden;
  top: 0;
}

/* for IE 6 */
* html body {
  font-size: 75%;
}

/* for IE 7 */
*:first-child + html body {
  font-size: 75%;
}

/* リンク */
a {
  color: #111;
  text-decoration: none;
  -webkit-transition: background-color 0.5s ease-out;
  -o-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
}

a.imgLink {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

a:hover {
  cursor: pointer;
}

a img {
  -webkit-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

a:hover img {
  opacity: 0.75;
}

a.link_button {
  display: block;
}

/* 画像 */
img {
  max-width: 100%;
  vertical-align: bottom;
  pointer-events: none;
}

*:focus {
  outline: none;
}

/* リスト */
ul {
  list-style-type: none;
}

ul.lst_none {
  list-style-type: none;
}

/* テキスト */
p {
  line-height: 2;
}

p:not(:last-child) {
  margin-bottom: 1em;
}

p.note:before {
  content: "※";
  font-weight: 300;
}

p.note.type01 {
  text-align: center;
  color: #686b67;
  font-size: 1.4rem;
}

/* テキスト装飾 */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}

.text-bold {
  font-weight: bold;
}

/* YouTube */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* slick */
.slick-slider {
  opacity: 0;
  -webkit-transition: opacity .3s linear;
  -o-transition: opacity .3s linear;
  transition: opacity .3s linear;
}

.slick-slider.slick-initialized {
  opacity: 1;
}

/* フェードイン */
.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
  -ms-transform: translate(0, 50px);
  transform: translate(0, 50px);
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all .8s;
}

.fadein.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* メディアクエリで表示・非表示切り替え */
.pc_only {
  display: inherit;
}

@media screen and (max-width: 478px) {
  .pc_only {
    display: none;
  }
}

.tab_only {
  display: none;
}

@media screen and (max-width: 834px) {
  .tab_only {
    display: inherit;
  }
}

.sp_only {
  display: none;
}

@media screen and (max-width: 478px) {
  .sp_only {
    display: inherit;
  }
}

/* Flexbox レイアウト */
.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex_wrap.v_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex_wrap.vh_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex_wrap.space_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex_wrap.column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.flex_wrap.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* ヘッダー */
.l-header {
  width: 100%;
}

.header_inner {
  width: 100%;
  height: 164px;
  margin: 0 auto;
  position: relative;
}

.header_inner .header_title {
  width: 322px;
  height: 112px;
}

.header_inner .header_title a {
  width: 100%;
  height: 100%;
  display: block;
  background: url(images/logo.png) no-repeat center center/contain;
}

.header-navi {
  position: absolute;
  top: 24px;
  right: 22px;
}

.header-navi .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-navi li:not(:last-child) {
  margin-right: 18px;
}

.header-navi a {
  color: #FFF;
  font-size: 1.2rem;
  text-decoration: underline;
}

/* サイト共通 */
.section_wrap {
  width: 100%;
  padding: 52px 0;
  position: relative;
}

.section_wrap.wide_full {
  padding: 0;
}

.section_wrap.wide_full .content {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.content {
  width: 1140px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* メインスライダー */
#main_visual {
  width: 100%;
  position: relative;
}

#main_visual .main_slider {
  height: 100%;
}

#main_visual .slide {
  height: 100%;
}

#main_visual .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#main_visual .catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#main_visual .order {
  width: 282px;
  margin: 34px auto 0;
  display: block;
}

#main_visual .slick-slider .slick-track,
#main_visual .slick-slider .slick-list {
  height: 100%;
}

/* コンセプト */
.section_cnt01 .text_area {
  text-align: center;
}

.section_cnt01 .text_area p {
  line-height: 2.18;
}

.cnt01_2 {
  width: 940px;
  max-width: 100%;
  margin: 0 auto -180px;
  position: relative;
  z-index: 999;
}

.section_cnt02 .cnt02_1 {
  width: 100%;
  height: 540px;
  background-color: #060507;
  text-align: center;
  position: relative;
}

.section_cnt02 .cnt02_1 img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section_cnt02 .cnt02_1 .smoke {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}

.section_cnt02 .cnt02_1 .partition01_top2 {
  position: absolute;
  top: 0;
}

.section_cnt02 .food_detail {
  width: 100%;
  margin-top: -50px;
  text-align: center;
}

.section_cnt02 .title {
  width: 400px;
  margin: 0 auto 18px;
  position: relative;
}

.section_cnt02 .sub {
  position: absolute;
  top: -28px;
  left: -70px;
}

.section_cnt02 .price {
  font-size: 2.8rem;
}

.section_cnt02 .price span {
  font-size: 1.8rem;
}

.section_cnt02 .order {
  width: 562px;
  margin: 15px auto 0;
  display: block;
}

.partition01_top {
  width: 100%;
  height: 20px;
  background: url(./images/partition01_top.png) repeat-x center top;
}

.partition01_top2 {
  width: 100%;
  height: 20px;
  background: url(./images/partition01_top2.png) repeat-x center top;
}

.partition01_bottom {
  width: 100%;
  height: 20px;
  background: url(./images/partition01_bottom.png) repeat-x center bottom;
}

.section_cnt03 .content {
  width: 100%;
  padding: 0;
}

.youtube_wrap {
  margin-right: calc((100vw - 770px) / 2);
  margin-bottom: 80px;
  background: url(./images/bg02.png) repeat center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.youtube_wrap .inner {
  width: 770px;
  padding: 50px;
  position: relative;
}

.youtube_wrap .frame {
  position: absolute;
  z-index: 99;
  display: block;
}

.youtube_wrap .frame_top {
  width: 678px;
  top: 30px;
  left: 50px;
}

.youtube_wrap .frame_right {
  width: 28px;
  top: 10px;
  right: 30px;
}

.youtube_wrap .frame_bottom {
  width: 696px;
  bottom: 40px;
  left: 40px;
}

.youtube_wrap .frame_left {
  width: 28px;
  top: 10px;
  left: 30px;
}

.recipe_wrap {
  margin-left: calc((100vw - 1000px) / 2);
  margin-bottom: 40px;
  background: url(./images/bg02.png) repeat left top/64px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.recipe_wrap .inner {
  width: 1000px;
  padding: 70px 120px;
  position: relative;
}

.recipe_wrap .headline-type01 {
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.recipe_wrap .icon {
  width: 46px;
  margin-right: 15px;
  vertical-align: middle;
}

.recipe_wrap li:not(:last-child) {
  margin-bottom: 15px;
}

.shop_slider .slide {
  width: 690px;
  margin: 0 18px;
}

.shopinfo_wrap {
  width: 1140px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.info_wrap {
  margin: -50px auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 999;
}

.info_wrap .area01 {
  width: 382px;
  height: 363px;
  margin-right: 20px;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url(./images/cnt04_frame.png) no-repeat center/contain;
}

.info_wrap .area01 dt {
  margin-bottom: 20px;
}

.info_wrap .area01 dd {
  line-height: 1.3;
}

.info_wrap .area01 dd:not(:last-child) {
  margin-bottom: 8px;
}

.info_wrap .area02 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.info_wrap .area02 .title {
  margin-bottom: 20px;
}

.reserve_area {
  margin-top: 60px;
  margin-bottom: 100px;
}

.reserve_area .inner {
  padding: 40px;
  background-color: rgba(33, 0, 0, 0.5);
  border-radius: 5px;
}

.reserve_area .title {
  margin-bottom: 45px;
  text-align: center;
}

.reserve_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.reserve_info dl {
  margin-right: 80px;
}

.reserve_info dd {
  margin-top: 10px;
  font-size: 1.6rem;
}

.recommend_headline {
  margin-bottom: 20px;
  padding: 100px 0;
  background-color: #000002;
}

.recommend_headline .inner {
  width: 1140px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.recommend_headline .title {
  margin-bottom: 20px;
}

.recommend_headline .title .sub {
  margin-bottom: 5px;
  display: block;
}

.recommend_headline p {
  font-size: 1.7rem;
  line-height: 1.7;
}

.recommend01 {
  margin-bottom: 120px;
}

.recommend01 .recommend_headline {
  background-image: url(./images/recommend01/title_bg.jpg);
  background-position: right center;
  background-size: contain;
}

.recommend01 .message_area {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2.0rem;
  line-height: 1.6;
}

.recommend02 {
  margin-bottom: 120px;
}

.recommend02 .recommend_headline {
  margin-bottom: 40px;
  padding: 140px 0;
  background-image: url(./images/recommend02/title_bg.jpg);
  background-position: center center;
  background-size: cover;
}

.recommend02 .title {
  text-align: center;
}

.recommend02 .title .sub {
  margin: 0 auto 15px;
}

.recommend03 {
  margin-bottom: 120px;
}

.recommend03 .recommend_headline {
  margin-bottom: 40px;
  padding: 140px 0;
  background-image: url(./images/recommend03/title_bg.jpg);
  background-position: center center;
  background-size: cover;
}

.recommend03 .title {
  text-align: center;
}

.recommend03 .title .sub {
  margin: 0 auto 15px;
}

.recommend03 .message_area {
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
}

.standard_area {
  width: 990px;
  max-width: 100%;
  margin: 0 auto 60px;
  padding: 20px;
  background-color: rgba(109, 0, 6, 0.5);
  border-radius: 5px;
  position: relative;
}

.standard_area .title {
  margin-bottom: 20px;
  text-align: center;
}

.standard_area .standard_type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.standard_area .standard_type .inner {
  margin: 0 5px;
  text-align: center;
}

.standard_area .standard_type dt {
  margin-bottom: 10px;
}

.standard_area .standard_type dt img {
  width: 100px;
}

.standard_area .standard_type .text {
  margin-bottom: 20px;
  font-size: 2.0rem;
}

.standard_area .comment {
  margin-top: 20px;
  font-size: 1.7rem;
}

.standard_area .pin {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #FFF;
  display: block;
  position: absolute;
}

.standard_area .pin01 {
  top: 20px;
  left: 20px;
}

.standard_area .pin02 {
  top: 20px;
  right: 20px;
}

.standard_area .pin03 {
  bottom: 20px;
  left: 20px;
}

.standard_area .pin04 {
  bottom: 20px;
  right: 20px;
}

.premium_area {
  margin-bottom: 60px;
  position: relative;
}

.premium_area .image_area {
  width: 52vw;
}

.premium_area .text_area {
  width: 50vw;
  padding: 30px 60px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: #080808;
}

.premium_area .title {
  margin-bottom: 20px;
  font-size: 3.0rem;
  line-height: 1.3;
}

.premium_area .title .sub_text {
  margin: 10px 0;
  display: block;
  font-weight: normal;
  font-size: 2.1rem;
}

.premium_area p {
  font-size: 1.6rem;
  line-height: 1.6;
}

.lineup_area {
  width: 1140px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.lineup_area .title {
  margin-bottom: 60px;
  text-align: center;
}

.lineup_wrap {
  margin-bottom: -38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lineup_wrap .lineup {
  width: 100%;
  margin-bottom: 38px;
  padding: 25px 40px;
  background: url(./images/logo03.png) no-repeat right 20px top 20px/128px auto, url(./images/bg02.png) repeat left top/64px auto;
  position: relative;
}

.lineup_wrap .lineup.half {
  width: 48%;
}

.lineup_wrap .weight {
  margin-bottom: 5px;
  padding: 2px 10px;
  display: inline-block;
  border-radius: 10px;
  background-color: #000000;
}

.lineup_wrap .item_name {
  margin-bottom: 10px;
  font-size: 3.0rem;
}

.lineup_wrap .item_name .sub {
  display: block;
  font-size: 1.7rem;
  font-weight: normal;
}

.lineup_wrap p {
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.lineup_wrap .image_area {
  margin-bottom: 10px;
  position: relative;
}

.lineup_wrap .image_area .caption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 1.2rem;
}

.lineup_wrap .image_area .caption:before {
  content: '※';
}

.lineup_wrap .detail {
  margin-bottom: 10px;
  padding: 25px 18px;
  background-color: rgba(103, 1, 7, 0.36);
}

.lineup_wrap .detail.type02 {
  padding: 25px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lineup_wrap .detail.type02 dl {
  width: 32%;
}

.lineup_wrap .detail dl {
  letter-spacing: 0.1em;
}

.lineup_wrap .detail dl:not(:last-child) {
  margin-bottom: 15px;
}

.lineup_wrap .detail dt {
  font-size: 1.7rem;
  font-weight: bold;
}

.lineup_wrap .detail dt:before {
  content: '・';
}

.lineup_wrap .detail dd {
  margin-top: 5px;
  font-size: 1.5rem;
  line-height: 1.6;
}

.lineup_wrap .detail .small {
  font-size: 1.3rem;
}

.lineup_wrap .price {
  font-size: 3.0rem;
}

.lineup_wrap .price span {
  font-size: 1.6rem;
}

.lineup_wrap .btn-buy {
  width: 306px;
  margin: 10px auto 0;
  display: block;
}

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 9999;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -67px;
  margin-left: -50px;
  text-align: center;
  color: #111;
  font-family: "Kreon", serif;
  z-index: 99999;
}

/* フッター */
.footer_area {
  padding: 5px 0 15px;
  text-align: center;
  background-color: #060507;
}

.footer_area .footer_title {
  width: 70px;
  margin: 0 auto;
}

.footer_area .footer_title a {
  display: block;
}

.footer_area .external_link {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}

.footer_area .external_link li {
  margin: 0 11px;
}

.footer_area .external_link a {
  display: block;
  color: #FFF;
}

.copyright {
  margin-top: 26px;
  color: #FFF;
  font-size: 1.1rem;
}

@media screen and (max-width: 478px) {
  .footer_area {
    padding: 15px 15px 25px;
  }
  .footer_area .external_link {
    margin-top: 20px;
  }
  .footer_area .external_link li {
    margin: 0 auto;
    font-size: 1.0rem;
  }
  .copyright {
    font-size: 1.0rem;
  }
}

.headline-type01 {
  margin-bottom: 34px;
  text-align: center;
}

.headline-type01 sub {
  margin-top: 10px;
  display: block;
  line-height: 1.3;
}

@media screen and (max-width: 478px) {
  .headline-type01 {
    margin-bottom: 22px;
  }
  .headline-type01 sub {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 478px) {
  body {
    font-size: 1.4rem;
  }
  p {
    line-height: 1.6;
  }
  .sp_hide {
    display: none;
  }
  .content {
    padding: 0 15px;
  }
  /* ヘッダー */
  .header_inner {
    height: 78px;
  }
  .header_inner .header_title {
    width: 160px;
    height: 58px;
  }
  .header-navi {
    display: none;
  }
  /* サイト共通 */
  .section_wrap {
    padding: 22px 0;
  }
  /* メインスライダー */
  #main_visual .catch {
    width: 100%;
    max-width: 324px;
  }
  #main_visual .order {
    width: 180px;
    margin-top: 17px;
  }
  /* コンセプト */
  .section_cnt01 .text_area {
    text-align: left;
  }
  .cnt01_2 {
    margin: 24px auto -28vw;
  }
  .partition01_top,
  .partition01_top2,
  .partition01_bottom {
    height: 10px;
    background-size: auto 10px;
    background-size: cover;
  }
  .section_cnt02 .cnt02_1 {
    height: auto;
  }
  .section_cnt02 .cnt02_1 img {
    height: auto;
  }
  .section_cnt02 .cnt02_1 .partition01_top2 {
    top: -2px;
  }
  .section_cnt02 .food_detail {
    margin-top: -38px;
  }
  .section_cnt02 .title {
    width: 290px;
  }
  .section_cnt02 .sub {
    width: 57px;
    top: -10px;
    left: -20px;
  }
  .section_cnt02 .text_area {
    padding: 0 15px;
  }
  .section_cnt02 .price {
    margin-top: 10px;
    font-size: 1.5rem;
  }
  .section_cnt02 .price span {
    font-size: 1.5rem;
  }
  .section_cnt02 .order {
    width: 281px;
  }
  .cnt03_1 {
    width: 140px;
  }
  .youtube_wrap {
    margin-right: 15px;
    margin-bottom: 50px;
    background-size: 64px auto;
  }
  .youtube_wrap .inner {
    width: 100%;
    padding: 30px 15px 30px 30px;
  }
  .youtube_wrap .frame_top {
    width: 84vw;
    top: 14px;
    left: 30px;
  }
  .youtube_wrap .frame_right {
    width: 3.2vw;
    top: 3vw;
    right: 8px;
  }
  .youtube_wrap .frame_bottom {
    width: 88vw;
    bottom: 25px;
    left: 25px;
  }
  .youtube_wrap .frame_left {
    width: 3.2vw;
    top: 5vw;
    left: 24px;
  }
  .cnt03_2 {
    width: 164px;
  }
  .recipe_wrap {
    margin-left: 15px;
    margin-bottom: 0;
    background-size: 32px auto;
  }
  .recipe_wrap .inner {
    width: 100%;
    padding: 56px 30px 32px 10px;
  }
  .recipe_wrap .headline-type01 {
    top: -15px;
  }
  .recipe_wrap .icon {
    width: 34px;
    margin-right: 8px;
  }
  .recipe_wrap li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .cnt04_1 {
    width: 180px;
  }
  .shop_slider .slide {
    width: 100%;
    margin: 0 10px;
  }
  .info_wrap {
    margin: -32px auto 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .info_wrap .area01 {
    width: 232px;
    height: 220px;
    margin-right: 0;
    margin-left: -10px;
    padding: 0 25px;
  }
  .info_wrap .area01 dt {
    margin-bottom: 10px;
  }
  .info_wrap .area01 dt img {
    width: 76px;
  }
  .info_wrap .area01 dd {
    font-size: 1.3rem;
  }
  .info_wrap .area01 dd:not(:last-child) {
    margin-bottom: 4px;
  }
  .info_wrap .area01 dd a {
    color: #FFF;
  }
  .info_wrap .area02 {
    width: 100%;
    padding: 0 10px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .info_wrap .area02 .title {
    text-align: center;
  }
  .info_wrap .area02 .cnt04_2 {
    width: 265px;
  }
  .info_wrap .area02 p {
    font-size: 1.3rem;
  }
  .map_area {
    padding: 0 !important;
  }
  .map_area iframe {
    height: 214px;
  }
  .reserve_area {
    margin: 30px auto;
  }
  .reserve_area .inner {
    padding: 24px;
  }
  .reserve_area .title {
    margin-bottom: 18px;
  }
  .reserve_area .title img {
    width: 175px;
  }
  .reserve_info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .reserve_info dl {
    margin-right: 0;
    text-align: center;
  }
  .reserve_info dt img {
    width: 242px;
  }
  .reserve_info dd {
    margin-top: 8px;
    font-size: 1.2rem;
  }
  .reserve_info .link_button {
    width: 225px;
    margin: 16px auto 0;
  }
  .recommend_headline {
    padding: 64px 0;
  }
  .recommend01 {
    margin-bottom: 40px;
  }
  .recommend01 .recommend_headline {
    background-image: url(./images/recommend01/title_bg_sp.jpg);
    background-size: cover;
  }
  .recommend01 .sub {
    width: 105px;
  }
  .recommend01 .main {
    width: 159px;
  }
  .recommend01 .message_area {
    padding: 0 15px;
    font-size: 1.3rem;
  }
  .recommend02 {
    margin-bottom: 40px;
  }
  .recommend02 .recommend_headline {
    height: 243px;
    margin-bottom: 20px;
    padding: 0;
    background-image: url(./images/recommend02/title_bg_sp.jpg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .recommend02 .title .sub {
    width: 104px;
    margin: 0 auto 8px;
  }
  .recommend02 .title .main {
    width: 261px;
  }
  .recommend03 {
    margin-bottom: 40px;
  }
  .recommend03 .recommend_headline {
    height: 243px;
    margin-bottom: 20px;
    padding: 0;
    background-image: url(./images/recommend03/title_bg_sp.jpg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .recommend03 .title .sub {
    width: 104px;
    margin: 0 auto 8px;
  }
  .recommend03 .title .main {
    width: 162px;
  }
  .recommend03 .message_area {
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 1.3rem;
  }
  .standard_area {
    width: 94%;
    margin-bottom: 15px;
    padding: 15px 15px 30px 15px;
  }
  .standard_area .title {
    margin-bottom: 15px;
  }
  .standard_area .title img {
    width: 208px;
  }
  .standard_area .standard_type dt img {
    width: 45px;
  }
  .standard_area .standard_type .text {
    margin-right: -1em;
    margin-left: -1em;
    font-size: 1.0rem;
  }
  .standard_area .comment {
    margin-top: 10px;
    font-size: 1.1rem;
    text-align: left;
  }
  .standard_area .pin {
    width: 11px;
    height: 11px;
  }
  .standard_area .pin01 {
    top: 8px;
    left: 10px;
  }
  .standard_area .pin02 {
    top: 8px;
    right: 10px;
  }
  .standard_area .pin03 {
    bottom: 8px;
    left: 10px;
  }
  .standard_area .pin04 {
    bottom: 8px;
    right: 10px;
  }
  .premium_area {
    margin-bottom: 36px;
  }
  .premium_area .image_area {
    width: 95vw;
  }
  .premium_area .text_area {
    width: 82%;
    margin-top: -30px;
    padding: 18px;
    margin-left: auto;
    position: relative;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .premium_area .title {
    font-size: 1.8rem;
  }
  .premium_area .title img {
    width: 98px;
  }
  .premium_area .title .sub_text {
    font-size: 1.2rem;
  }
  .premium_area p {
    font-size: 1.0rem;
    line-height: 1.4;
  }
  .lineup_area {
    padding: 0 15px;
  }
  .lineup_area .title {
    margin-bottom: 27px;
  }
  .lineup_area .title img {
    width: 118px;
  }
  .lineup_wrap {
    margin-bottom: -19px;
  }
  .lineup_wrap .lineup {
    margin-bottom: 19px;
    padding: 21px 22px;
    background-position: right 22px top 12px, left top;
    background-size: 78px auto, 32px auto;
  }
  .lineup_wrap .lineup.half {
    width: 100%;
  }
  .lineup_wrap .weight {
    margin-bottom: 2px;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 1.3rem;
  }
  .lineup_wrap .item_name {
    margin-bottom: 3px;
    font-size: 2.7rem;
  }
  .lineup_wrap .item_name .sub {
    font-size: 1.2rem;
  }
  .lineup_wrap p {
    font-size: 1.2rem;
  }
  .lineup_wrap .image_area .caption {
    left: 5px;
    bottom: 5px;
    font-size: 0.9rem;
  }
  .lineup_wrap .detail {
    padding: 18px 13px;
  }
  .lineup_wrap .detail.type02 {
    padding: 18px 13px;
  }
  .lineup_wrap .detail.type02 dl {
    width: 100%;
  }
  .lineup_wrap .detail dl:not(:last-child) {
    margin-bottom: 8px;
  }
  .lineup_wrap .detail dt {
    font-size: 1.5rem;
  }
  .lineup_wrap .detail dd {
    margin-top: 0;
    font-size: 1.2rem;
  }
  .lineup_wrap .price {
    font-size: 2.4rem;
  }
  .lineup_wrap .price span {
    font-size: 1.0rem;
  }
  .lineup_wrap .btn-buy {
    width: 262px;
    margin-top: 8px;
  }
}
