@charset "utf-8";
@import 'print.css' print;
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Shippori+Mincho+B1&display=swap');
@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('../font/ZenKakuGothicNew-Regular.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('../font/ZenKakuGothicNew-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('../font/ZenKakuGothicNew-Bold.ttf') format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('../font/ZenKakuGothicNew-Black.ttf') format('truetype');
  font-weight: bolder;
}
@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('../font/ZenKakuGothicNew-Light.ttf') format('truetype');
  font-weight: lighter;
}



/* root
---------------------------------------------------------------------------*/
:root {
	--main-color: #006fab;
	--main-color-sub: #259ace;
	--white: #eee;
	--txt-color: #231815;
	--link-color: #ed6c00;
	--link-hover: #ff9343;

	--red: #e83820;
	--red-bg: rgba(232,56,32, .08);
	--gray: #888;
	--silver: rgba(95,151,175, .16);
	--white: #fcfcfc;
	
	/* 320 - 1920 */
	--fs-xsmall: 1.2rem;
	--fs-small: 1.4rem;
	--fs-default: clamp(1.4rem, 1.344rem + 0.28vw, 1.68rem);/*100%*/
	--fs-regular: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
	--fs-medium: clamp(1.76rem, 1.696rem + 0.32vw, 2.08rem);
	--fs-large: clamp(2.4rem, 2.36rem + 0.2vw, 2.6rem);
	--fs-xlarge: clamp(3.08rem, 3.04rem + 0.2vw, 3.28rem);
	--fs-xxlarge: clamp(3.8rem, 3.76rem + 0.2vw, 4rem);
	--fs-xxxlarge: clamp(4.2rem, 4.08rem + 0.6vw, 4.8rem);
	
  --trans-fast: cubic-bezier(.215, .61, .355, 1) .16s;
  --trans-basis: cubic-bezier(.215, .61, .355, 1) .64s;
  --trans-slow: cubic-bezier(.215, .61, .355, 1) 1.6s;
	
	--line-default: 1.4;
	--line-wide: 1.8;
}


/* html, body
---------------------------------------------------------------------------*/
html {
	scroll-behavior: smooth;
}

body {
	background-position: top center;
  color: var(--txt-color);
  display: flex;
  flex-direction: column;
  font-family: 'ZenKakuGothicNew';
  font-size: var(--fs-default);
  font-weight: normal;
  line-height: var(--line-default);
  letter-spacing: 0.05em;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
	-webkit-text-size-adjust: none; }
body#top {
  width: 100%;
  margin: 0 auto;
}
.main-visual {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 680px;
  background-color: #ff8e2e;
  position: relative;
}
#mvlogo {
  width: 500px;
  height: 500px;
  background: url(../img/mv_logo.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 6%;
  left: 33%;
  z-index: 5000;
}
body#sub {
	background: var(--white);
}
@media screen and (max-width: 1080px) {
  #mvlogo {
    left: 28%
  }
}
@media screen and (max-width: 900px) {
  #mvlogo {
    left: 21%;
  }
}
@media screen and (max-width: 768px) {
  .main-visual {
    margin-top: 39px;
    height: 320px;
  }
  #mvlogo {
    width: 200px;
    height: 200px;
    top: 3%;
    left: 24%;
  }
}

/* header
---------------------------------------------------------------------------*/
header {
	background-color:#ff8e2e ;
	width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5500;
}

.rv-header {
  background-color: #6f2c16 !important;
}

header h1 {
  margin: 0 15px;
  width: 180px;
  height: 38px;
}


header > div {
  width: 100%; }
header > div h1 {
	max-width: 64%;
	height: auto;
	padding: 16px 0;
}

@media screen and (max-width: 1180px) {
	header > div h1 {
		max-width: 80%;
		padding: 18px 0;
	}
}
@media screen and (max-width: 768px) {
  header {
    height: 40px;
  }
  header h1 {
    width: 125px;
  }
}

/* #gNav
---------------------------------------------------------------------------*/
#gNav ol {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding-left: 1em;
  padding-right: 1em;
  background-color: #ff8e2e;
}

.rv-gnav {
  background-color: #6f2c16 !important;
}

#gNav ol > li {
	display: block;
  align-items: center;
  width: auto;
}
#gNav ol > li > a {
  padding-left: 0.5em;
  padding-right: 0.5em;
  display: inline-block;
  font-weight: bold;
  font-size: var(--fs-small);
  text-decoration: none;
  white-space: pre;
  height: auto;
  width: auto;
  color: #6f2c16; 
}

.partner-restaurant-pc {
  display: block !important;
}
.partner-restaurant-sp {
  display: none !important;
}
.nav-contact {
  display: none !important;
}

.rv-a {
  color: white !important;
}

@media screen and (max-width: 768px) {
  #gNav {
    position: fixed;
    flex-direction: column !important;
    right: -320px; /* 右から出てくる */
    top: 40px;
    width: 250px; /* スマホに収まるサイズ */
    height: 80vh;
    padding: 20px 10px;
    padding-top: 60px;
    background-color: #6f2d17;
    transition: all 0.6s;
    z-index: 9999;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  #hamburgerMenu {
    top: 0;
    right: -1px;
    transition: 0.3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #gNav ol {
    margin: 170px 0;
    flex-direction: column;
    list-style: none;
    background-color: #6f2d16;
    & .nav-contact {
      display: inline-block !important;
      font-size: 12px;
      color: #ff8e2e;
      font-weight: bold;
      margin-top: 120px;
    }
  }
  #gNav ol li {
    padding: 0;
    margin-top: 20px;
    width: 100%;
  }
  #gNav ol li a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    text-align: left;
    font-size: 20px;
    font-weight:bold;
    color: white;
  }
  .menu_trigger {
    width: 40px;
    height: 40px;
    padding: 10px;
    position: relative;
  }
  .partner-restaurant-pc {
    display: none !important;
  }
  .partner-restaurant-sp {
    display: block !important;
    position: relative;
    width: 200px !important;
    height: 54px !important;
    padding: 0 10px !important;
    line-height: 3em !important;
    background-color: white;
    font-size: 17.5px !important;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    color: #6f2d16 !important;
  }
  .partner-restaurant-sp::before {
    position: absolute;
    content: '';
    background: url(../img/arrow.svg) no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    top: 15px;
    right: 20px;
  }
  .menu_trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    right: 5px;
    height: 2.5px;
    border-radius: 10px;
    background-color: #6f2c16;
    &.color-rv {
      background-color: white;
    }
    transition: all 0.5s;
  }
  .menu_trigger span:nth-of-type(1) {
    top: 20%;
    width: 90%;
  }
  .menu_trigger span:nth-of-type(2) {
    top: 45%;
    width: 70%;
  }
  .menu_trigger span:nth-of-type(3) {
    bottom: 20%;
    width: 50%;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1350;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }
  .nav-open #gNav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: 0;
    visibility: visible;
  }
  .nav-open .menu_trigger {
    background-color: #6f2d16;
  }
  .nav-open .menu_trigger span:nth-of-type(1) {
    transform: rotate(40deg);
    width: 90%;
    background-color: #ff8e2e;
    &.color-rv {
      background-color: white;
    }
    top: 42%;
    left: 3%;
  }
  .nav-open .menu_trigger span:nth-of-type(2) {
    width: 0;
    left: 50%;
  }
  .nav-open .menu_trigger span:nth-of-type(3) {
    width: 90%;
    transform: rotate(-40deg);
    background-color: #ff8e2e;
    &.color-rv {
      background-color: white;
    }
    top: 42%;
    left: 3%;
  }
}

.main-visual {
  max-width: 100%;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin: 0 auto;
  margin-bottom: 50px;
  width: 55%;
}
.item1 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
  padding: 10px 12px;
}
.item2 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding: 10px 12px;
}
.item3 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  padding: 12px;
}
.pc-only {
  display: flex !important;
}
.sp-only {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .item1 {
    height: fit-content;
    display: flex;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    padding: 10px 0;
    & img {
      width: 85%;
      margin: 0 auto;
      object-fit: contain;
    }
  }
  .item2 {
    height: fit-content;
    display: flex;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
    padding: 10px 0;
    & img {
      width: 85%;
      margin: 0 auto;
      object-fit: contain;
    }
  }
  .item3 {
    height: fit-content;
    display: flex;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
    padding: 10px 0;
    & img {
      width: 85%;
      margin: 0 auto;
      object-fit: contain;
    }
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: flex !important;
  }
}
.section-with-bg {
  background: url(../img/bg.png);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
a.button {
  display: inline-block;
  position: relative;
  text-decoration: none;
  width:250px;
  height: 60px;
  letter-spacing: 0.02em;
  line-height: 1.7em;
  font-size: 18px;
  font-weight: bold;
  border: 5px solid #6f2c16;
  color: #6f2c16;
  background-color: white;
  border-radius: 35px;
  padding: 10px 12px;
  padding-left: 20px;
  margin: 20px 0;
  text-align: left;

}
.margin-zero {
  margin: 0 !important;
}
a.button::before {
  position: absolute;
  content: '';
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  width: 27.5px;
  height: 27.5px;
  top: 12px;
  right: 15px;
}

.holderContainer {
  color: #6f2c16;
  font-size: var(--fs-xlarge);
  font-weight: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: 50px 0;
  letter-spacing: 0.1em;
  width: 100%;
  & a.button {
    margin: 20px auto;
  }
  & img {
    width: 40%;
    margin: 0 auto;
  }

  & .emphashis {
    color: white;
  }
  & img.norikata {
    width: 65%;
  }
}
.section-bg-accent {
  background-color: #6f2c16;
  display: flex;
  flex-direction: column;
  justify-content: center;
  & img {
    width: 65%;
  }
  & .container-rows {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    width:30%;
    margin-bottom: 50px;
    & img {
      margin: 0 15px;
    }
  }
}
.section-whiteBg {
  background-color: white;
  width: 100%;
}
.section-bgset {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: 50px;
  background: url(../img/bg2.png);
}
.caution {
  width: 65%;
  position: relative;
  color: #6f2c16;
  font-weight: 500;

  padding-top: 200px;
  padding-bottom: 120px;
  padding-left: 330px;
  margin: 0 auto;
  font-size: 14px;
  & h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  ul li {
    list-style:none;
    margin: 0;
    padding: 0;
    text-indent: -1.5em;
    padding-left: 1.5em;
  }
  ul li::before {
    content:  "";
    width:  10px;
    height:  10px;
    display:  inline-block;
    background-color: #6f2c16;
    border-radius:  50%;
    position: relative;
    top: -1px;
    margin-right: 8px;
    }
}
.caution::before {
  content: '';
  width: 320px;
  height: 294px;
  background: url(../img/gourmet_campaign.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 80px;
  left: 0;
}
@media screen and (max-width: 768px) {
  a.button {
    width:200px;
    height: 60px;
    font-size: medium;
    font-weight: bold;
    margin: 12px 0;
    line-height: 1.8em;
  }
  a.button::before {
    width: 18px;
    height: 18px;
    top: 16px;
    right: 15px;
  }
  .holderContainer {
    margin: 25px 0;
    letter-spacing: 0.1em;
    width: 100%;
    & a.button {
      margin: 12px auto;
    }
    & img {
      width: 75%;
    }
  }
  .section-bgset {
    padding-bottom: 25px;
  }
  .section-bg-accent {
    position: relative;
    padding-top: 250px;
    & .abs-img {
      width: 85%;
      position: absolute;
      top: -1.18%;
      left: 12%;
    } 
    & img {
      width: 95%;
    }
    & .container-rows {
      flex-direction: column;
      width: 100%;
      margin-bottom: 25px;
      & img {
        width: 90%;
        margin: 10px auto;
      }
    }
  }
  .section-whiteBg {
    & img.norikata {
      width: 95%;
    }
  }
  .banner-area {
    flex-direction: column !important;
    & a img {
      display: block !important;
      width: 95% !important;
      margin: 10px auto !important;
    }
  }
  .caution {
    width: 100%;
    position: relative;
    color: #6f2c16;
    font-weight: 500;

    padding-top: 205px;
    padding-bottom: 30px;
    padding-left: 8%;
    padding-right: 8%;
    & h2 {
      font-size: var(--fs-large);
      margin-bottom: 30px;
      text-align: center;
    }
}

  .caution::before {
    width: 150px;
    top: 30px;
    left: 30%;
  }
}
.restaurant-container {
  width: 70%;
  height: 500px;
  margin: 0 auto;
  overflow-y: scroll;
  & .restaurant-table {
    width: 100%;
    border-top: 4px solid #6f2c16;
    border-bottom: 4px solid #6f2c16;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    font-weight: bold;
    & .restaurant-box {
      font-size: 18px;
      color: #6f2c16;
      border-bottom: 4px solid #6f2c16;
      display: flex;
      flex-direction: row;
      & .label-box {
        display: block;
        width: 25%;
        padding-top: 15px;
      }
      & .shops-box {
        display: block;
        width: 75%;
        display: flex;
        flex-direction: column;
        & .components {
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          padding: 15px 0;
          border-bottom: 1px solid #6f2c16;
          & p {
            display: inline-block;
            width: 17%;
            text-align: left;
          }
          & p.address {
            width: 55%;
            text-align: left;
          }
          & a {
            text-decoration: none;
            color: #6f2c16;
          }
          & .mapicon {
            display: none !important;
          }
          & .spnone {
            display: inline-block;
            width: 20%;
          }
          & span.map {
            position: relative;
            font-size: var(--fs-small);
            padding-right: 32px;
            padding-bottom: 5px;
          }
          & span.map::before {
            position: absolute;
            content: '';
            background: url(../img/icon/map.svg) no-repeat;
            background-size: contain;
            width: 25px;
            height: 25px;
            bottom: 0;
            right: 0;
          }
        }
        & .components:last-child {
          border: none;
        }
      }
    }
    & .restaurant-box:last-child {
      border: none;
    }
  }
}
@media screen and (max-width: 768px) {
  .restaurant-container {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 15px;
    & .restaurant-table {
      & .restaurant-box {
        flex-direction: column;
        font-size: small;
        & .label-box {
          display: block;
          width: 100%;
          padding-top: 15px;
          font-size: medium;
        }
        & .shops-box {
          width: 100%;
          & .components {
            flex-direction: row;
            justify-content: start;
            & p {
              display: inline-block;
              width: 25%;
              text-align: left;
            }
            & p.address {
              width: 60%;
              text-align: left;
            }
            & a {
              text-decoration: none;
              color: #6f2c16;
            }
            & .mapicon {
              display: block !important;
              width: 15%;
              & img {
                max-width: 20px;
              }
            }
            & .spnone {
              display: none;
            }
            & span.map {
              display: none;
            }
          }
          & .components:last-child {
            border: none;
          }
        }
      }
      & .restaurant-box:last-child {
        border: none;
      }
    }
  }
}
.txtContainer {
  font-size: 30px !important;
  color: #6f2c16;
  font-weight: bold;
  display: block;
  text-align: center;
  width: 100%;
  margin: 35px 0;
}
.buttonContainer {
  display: flex;
  flex-direction: row;
  margin: 35px 0;
  justify-content: center;
  & a {
    position: relative;
    color: #6f2c16;
    background-color: #ff8e2e;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    line-height: 2.2em;
    padding: 10px 20px;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.05em;
    width: 415px;
    height: 105px;
    border: none;
    border-radius: 70px;
    margin: 0 25px;
  }
  & a::before {
    position: absolute;
    content: '';
    background: url(../img/arrow.svg) no-repeat;
    background-size: contain;
    width: 27.5px;
    height: 27.5px;
    top: 38px;
    right: 35px;
  }
}
@media screen and (max-width: 768px) {
  .section-whiteBg {
    & .txtContainer {
      padding: 0 10px;
      & p {
        font-size: large;
      }
    }
  }
  .buttonContainer {
    margin: 18px 0;
    & a {
      text-align: left;
      line-height: 2.5em;
      padding: 5px 10px;
      padding-left: 20px;
      font-size: medium;
      width: 250px;
      height: 55px;
      margin: 0 12px;
    }
    & a::before {
      position: absolute;
      content: '';
      background: url(../img/arrow.svg) no-repeat;
      background-size: contain;
      width: 18px;
      height: 18px;
      top: 20px;
      right: 18px;
    }
  }
}

.banner-area {
  width: 100%;
  display: flex;
  background-color: #ffeedf;
  flex-direction: row;
  justify-content: center;
  padding: 30px 0;
  margin-bottom: 50px;
  & a img {
    width: 450px;
    margin: 0 20px;
  }
}

.bl {
  font-weight: bold;
}
.cl {
  color: #6f2c16;
}
.ctr {
  text-align: center;
}
.margin-20 {
  margin: 20px 0;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  & .contact {
    width: 100%;
    text-align: center;
    color: #6f2c16;
    padding: 32px 0;
    line-height: 2.5em;
  }
  & .copyright {
    color: white;
    background-color: #ff8e2e;
    text-align: center;
    padding: 5px 0;
  }
  & small {
    font-size: 13px;
  }
  & section.copyright {
    font-size: 12px;
  }
}
.lar {
  font-size: var(--fs-large);
}
.lar-b {
  font-size: 27px;
}
.pad-15 {
  padding: 0 15px;
}
@media screen and (max-width:768px) {
  .lar {
    font-size: 24px;
  }
  .lar-b {
    font-size: 24px;
  }
  .reg-b {
    font-size: 16px !important;
  }
  .margin-20 {
    margin: 10px 0 !important;
  }
}
.mid {
  font-size: var(--fs-medium);
}
.reg {
  font-size: var(--fs-regular);
}
.reg-b {
  font-size: 21px;
}
.def {
  font-size: var(--fs-default);
}
.sm {
  font-size: var(--fs-small);
}
.medium {
  font-weight: normal;
}
.lh-half {
  line-height: 50%;
}
.ls-half {
  letter-spacing: 0.0175em;
}
.disp-inline {
  display: inline;
}
.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between !important;
}
.table-column img.order {
  display: block;
  margin: 0 45px;
  width: 45px;
  height: 58px;
  object-fit: contain;
}
.table-wrap {
  width: 64%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 120px auto;
  & .table-column {
    display: flex;
    position: relative;
    flex-direction: row;
    font-weight: bold;
    font-size: 20px;
    justify-content: space-between;
    background-color: #ff8e2e;
    border: 8px solid #6F2C16;
    border-top: none;
    width: 100%;
    height: 300px;
    border-collapse: collapse;
    padding: 50px 20px;
    & .picblock {
      display: block;
      width: 275px;
      height: 192px;
      background-color: white;
    }
    & .txtblock {
      max-width: 485px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 0 15px;
      color: #6f2c16;
      font-weight: bold;
      line-height: 2em;
      letter-spacing: 0.025em;
    }
  }
  & .table-column::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    clip-path: polygon(50% 35%, 0 0, 100% 0);
    background-color: #6f2c16;
    top: -1px;
    left: 47.5%;
  }
  & .table-column:first-child {
    position: relative;
    border-top: 8px solid #6f2c16;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    padding-top: 90px;
    height: 330px;
  }
  & .table-column:first-child::before {
    display: none;
  }
  & .table-column:first-child::after {
    position: absolute;
    display: block;
    content: '';
    background: url(../img/ribbon.svg) no-repeat;
    background-size: contain;
    width: 70%;
    max-width: 70%;
    height: 50%;
    top: -26%;
    left: 15%;
  }
  & .table-column:last-child {
    height: 475px;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: x-large;
    color: #6f2c16;
    font-weight: bold;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 50px;
    & img {
      object-fit: contain;
      width: 425px;
      margin-top: 20px;
      margin-bottom: 40px;
    }
    & a.buttonRev {
      position: relative;
      color: white;
      background-color: #6f2c16;
      display: inline-block;
      text-decoration: none;
      text-align: left;
      line-height: 2.2em;
      padding: 10px 65px;
      font-size: 36px;
      font-weight: bold;
      letter-spacing: 0.05em;
      width: 415px;
      height: 105px;
      border: none;
      border-radius: 70px;
      margin: 0 25px;
    }
    & a.buttonRev::before {
      position: absolute;
      content: '';
      background: url(../img/arrow2.svg) no-repeat;
      background-size: contain;
      width: 27.5px;
      height: 27.5px;
      top: 38px;
      right: 35px;
    }
  }
}
@media screen and (max-width: 1080px) {
  .table-wrap {
    width:85%;
    & .table-column:first-child::after {
      width: 85%;
      max-width: 85%;
      left: 8%;
    }
  }
}

.scroll-infinity-wrap {
  display: flex;
  overflow: hidden;
  & ul.scroll-list {
    display: flex;
    list-style: none;
    padding: 0;
    & li.scroll-item-right {
      width: calc(100vw / 10);
      & img {
        width: 100%;
        object-fit: contain;
      }
    }
    & li.scroll-item {
      width: 300px;
      height: 182.1px;
      margin: 0 12px;
      & img {
        width: 100%;
        object-fit: contain;
      }
    }
  }
}

@media screen and (max-width:768px) {
  li.scroll-item {
    width: 120px !important;
    height: 72.84px !important;
  }
}

@media screen and (max-width:768px) {
  .table-column img.order {
    margin: 0 20px;
    height: 30px;
    width: 28px
  }
.table-wrap {
  width: 90%;
  margin: 80px auto;
  & .table-column {
    flex-direction: column;
    justify-content: space-evenly;
    border: 5px solid #6F2C16;
    border-top: none;
    height: 500px;
    padding: 30px 15px;
    & .picblock {
      width: 225px;
      height: 150px;
      margin: 0 auto;
    }
    & .txtblock {
      max-width: 100%;
      padding: 0 8px;
    }
  }
  & .table-column::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    clip-path: polygon(50% 35%, 0 0, 100% 0);
    background-color: #6f2c16;
    top: -1px;
    left: 42%;
  }
  & .table-column:first-child {
    position: relative;
    border-top: 5px solid #6f2c16;
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
    padding-top: 40px;
    height: 520px;
  }
  & .table-column:first-child::before {
    display: none;
  }
  & .table-column:first-child::after {
    width: 105%;
    max-width: 105%;
    height: 30%;
    max-height: 30%;
    top: -7%;
    left: -3%;
  }
  & .table-column:last-child {
    height: 475px;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
    font-size: large;
    padding-top: 30px;
    padding-bottom: 30px;
    & img {
      object-fit: contain;
      max-width: 100%;
      margin-top: 20px;
      margin-bottom: 40px;
    }
    & a.buttonRev {
      line-height: 1.6em;
      padding: 10px 30px;
      font-size: var(--fs-large);
      max-width: 100%;
      max-height: 60px;
    }
    & a.buttonRev::before {
      position: absolute;
      content: '';
      background: url(../img/arrow2.svg) no-repeat;
      background-size: contain;
      width: 27.5px;
      height: 27.5px;
      top: 17px;
      right: 30px;
    }
  }
}
  .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .margin-zero {
    margin: 0 auto !important;
  }
  footer {
    & section.copyright {
      & small {
        font-size: x-small;
      }
    }
  }
}
