@charset "UTF-8";
/* ------------------------------------------------------------- */
/* reset                                                         */
/* ------------------------------------------------------------- */
/* CSS Document */
/*-----------------reset--------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output,
ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body,
body * {
  box-sizing: border-box;
}

em {
  font-style: normal;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

picture {
  display: inline-block;
}

/*     フェードイン    */
.fadeIn {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.fadeIn-up {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, 50px);
}

.fadeIn-down {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, -80px);
}

.fadeIn-left {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(-50px, 0);
}

.fadeIn-right {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(50px, 0);
}

/*     スライドイン    */
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  opacity: 1;
  transform: translate(0, 80px);
}

.slideIn-down {
  opacity: 1;
  transform: translate(0, -80px);
}

.slideIn-left {
  opacity: 1;
  transform: translate(-80px, 0);
}

.slideIn-right {
  opacity: 1;
  transform: translate(80px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0);
}

/* ------------------------------------------------------------- */
/* layout                                                        */
/* ------------------------------------------------------------- */
* {
  --black: #000000;
  --white: #fff;
  --gray: #d9d9d9;
  --red: #ae0003;
  --blue: #0606f9;
  --brown: #c7b18a;
  --brown_thin: #eadfcb;
  --brown_deep: #81705d;
  --border-brown: #ac6a00;
  --border-gray: #cccccc;
  --f_regular: 400;
  --f_medium: 500;
  --f_bold: 700;
  --f_black: 900;
  --em: 16;
}

.pc {
  display: block !important;
}
@media screen and (max-width: 599px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 599px) {
  .sp {
    display: block !important;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab {
    display: block;
  }
}

html {
  overflow-x: hidden;
  scroll-padding: 105px;
}

body {
  font-feature-settings: "palt";
  font-size: 16px;
  font-weight: var(--f_regular);
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif !important;
  line-height: 1.5;
  outline: none;
  background-color: var(--white) !important;
  overflow-x: hidden;
}
@media screen and (max-width: 599px) {
  body {
    min-width: auto;
    font-size: 3.5vw;
  }
}
body.open {
  overflow-y: hidden;
}

input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

sub {
  font-size: 60%;
  vertical-align: super;
}

.outer {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.inner {
  width: min(90%, 1000px);
  margin: 0 auto;
}
.inner--large {
  width: min(90%, 1200px);
}
.inner--small {
  width: min(90%, 1000px);
}

.common-padding {
  padding: min(15vw, 100px) 0;
}

.common-btm-padding {
  padding: 0 0 min(15vw, 100px);
}

.u-border {
  text-decoration: underline;
}

/*-----------------マージン--------------------*/
.m-center {
  display: block;
  margin: 0 auto;
}

.m-left-auto {
  display: block;
  margin-left: auto;
}

.m-right-auto {
  display: block;
  margin-right: auto;
}

.mt-05em {
  margin-top: 0.5em;
}

.mt-1em {
  margin-top: 1em;
}

.mt-2em {
  margin-top: 2em;
}

.mt-4em {
  margin-top: 4em;
}

/*-----------------フォントウェイト--------------------*/
.f-thin {
  font-weight: 100;
}

.f-light {
  font-weight: 300;
}

.f-regular {
  font-weight: var(--f_regular);
}

.f-medium {
  font-weight: var(--f_medium);
}

.f-bold {
  font-weight: var(--f_bold);
}

.f-w-black {
  font-weight: var(--f_black);
}

.poppins-exlight-italic {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: italic;
}

/*-----------------フォント色--------------------*/
.f-white {
  color: var(--white);
}

.f-red {
  color: var(--red);
}

.f-blue {
  color: var(--blue);
}

.f-brown {
  color: var(--brown);
}

/*-----------------背景色--------------------*/
.bg-brown {
  background-color: var(--brown);
}

.bg-brown-thin {
  background-color: var(--brown_thin);
}

.bg-red {
  background-color: var(--red);
}

.bg-white {
  background-color: var(--white);
}

.bg-gray {
  background-color: var(--gray);
}

/*-----------------フォント--------------------*/
.poppins {
  font-family: "Poppins", serif;
  font-style: normal;
}

.zen {
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-style: normal;
}

.italic {
  font-style: italic;
}

/*-----------------画像--------------------*/
img.fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

img.fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

picture,
figure img {
  width: 100%;
}

img {
  vertical-align: top;
  max-width: 100%;
}

img.pixelated {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.img-dummy {
  height: 500px;
  background-color: #d9d9d9;
  border: solid 1px #00000f;
}
@media screen and (max-width: 599px) {
  .img-dummy {
    height: calc((300 / var(--em)) * 1rem);
  }
}

/*-----------------flex--------------------*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex.nowrap {
  flex-wrap: nowrap;
}

.flex.right {
  justify-content: flex-end;
}

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

.flex.left {
  justify-content: flex-start;
}

.flex.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.al-center {
  align-items: center;
}

.al-top {
  align-items: flex-start;
}

.al-bottom {
  align-items: flex-end;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
}

.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 599px) {
  .reverse {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.v-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-----------------Link--------------------*/
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
a:hover, a:active {
  opacity: 0.7;
}
@media screen and (max-width: 599px) {
  a:hover, a:active {
    opacity: 1;
  }
}
a.hov-underline:hover {
  opacity: 1;
  text-decoration: underline;
}

/*----------------文字揃え---------------------*/
.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

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

.txt-c-l {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .txt-c-l {
    text-align: left;
  }
}

/*----------------ポジション---------------------*/
.relative {
  position: relative;
}

.position-c {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*----------------リスト---------------------*/
ul.indent li {
  padding-left: 1em;
  text-indent: -1em;
}

ul.basic li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.basic li::before {
  content: "・";
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  ul.basic li::before {
    margin-right: 2vw;
  }
}

ol {
  font-size: 15px;
}
@media screen and (max-width: 599px) {
  ol {
    font-size: 3.3vw;
  }
}
ol li {
  padding-left: 1em;
  text-indent: -1.6em;
  list-style-type: none;
  counter-increment: cnt;
}
ol li::before {
  content: counter(cnt) ".";
  margin-right: 10px;
}
ol li:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  ol li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}

ol.alpfa {
  font-size: 15px;
}
ol.alpfa li {
  padding-left: 1.6em;
  text-indent: -1.6em;
  counter-increment: cnt;
}
ol.alpfa li::before {
  content: counter(cnt, lower-alpha) ")";
  margin-right: 5px;
  font-weight: var(--f_medium);
}
ol.alpfa li:not(:last-child) {
  margin-bottom: 13px;
}

/*----------------テーブル---------------------*/
table.basic {
  width: 100%;
}
table.basic th,
table.basic td {
  padding: min(3vw, 16px);
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  table.basic th,
table.basic td {
    display: block;
  }
}
table.basic th {
  font-weight: 600;
  vertical-align: middle;
  color: var(--white);
  background-color: var(--brown);
  border-top: solid 1px var(--white);
  border-bottom: solid 1px var(--white);
}
@media screen and (max-width: 599px) {
  table.basic th {
    border: 0;
  }
}
table.basic td {
  border-top: solid 1px var(--brown);
  border-bottom: solid 1px var(--brown);
}

/*-------------フェードインアニメーション-----------------*/
.fadeIn {
  opacity: 0;
  transition-delay: 250ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.fadeIn-up {
  transform: translate(0, 50px);
}

.fadeIn-down {
  transform: translate(0, -80px);
}

.fadeIn-left {
  transform: translate(-50px, 0);
}

.fadeIn-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0);
}

/*-------------スライドインアニメーション-----------------*/
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  opacity: 1;
  transform: translate(0, 80px);
}

.slideIn-down {
  opacity: 1;
  transform: translate(0, -80px);
}

.slideIn-left {
  opacity: 1;
  transform: translate(-80px, 0);
}

.slideIn-right {
  opacity: 1;
  transform: translate(80px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0);
}

/*-------------------------------------*/
/* common_parts                        */
/*-------------------------------------*/
.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(4vw, 50px);
}
@media screen and (max-width: 599px) {
  .btns {
    flex-direction: column;
  }
}

.btn {
  display: inline-block;
  font-weight: 500;
  text-align: left;
  width: min(337px, 100%);
  color: var(--white);
  background-color: var(--red);
  padding: 22px;
  padding-left: calc(var(--btn-left-padding) + 20px);
  box-shadow: 5px 5px 13px 0px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
  overflow-x: hidden;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .btn {
    padding: 18px;
    padding-left: calc(var(--btn-left-padding) + 10px);
  }
}
.btn::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-in-out;
  width: calc(var(--btn-left-padding) * 2);
  transform: translate(-50%, -50%);
  top: 50%;
  background-color: var(--white);
  z-index: 3;
}
.btn.btn-brown {
  background-color: var(--brown);
}
.btn.btn-solid {
  font-weight: 600;
  color: var(--red);
  background-color: var(--white);
  border: solid 3px var(--red);
}
.btn.btn-solid::before {
  background-color: var(--red);
}
.btn.btn-solid:hover {
  color: #fff;
}
.btn.btn-solid:hover::before {
  background-color: var(--white);
}
.btn__wrap {
  display: inline-block;
  width: min(337px, 100%);
  --btn-left-padding: 45px;
  padding-left: var(--btn-left-padding);
  position: relative;
}
@media screen and (max-width: 599px) {
  .btn__wrap {
    --btn-left-padding: 7vw;
  }
}
.btn__wrap.w-auto {
  width: auto;
}
.btn__wrap.w-auto .btn {
  width: auto;
}
.btn__wrap::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-in-out;
  width: calc(var(--btn-left-padding) * 2);
  transform: translate(0%, -50%);
  top: 47%;
  background-color: var(--black);
  z-index: 1;
}
.btn__wrap:hover::before {
  transform: translate(10%, -50%);
}
.btn__wrap:hover .btn {
  opacity: 1;
  background-color: #850002;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.btn__wrap:hover .btn::before {
  transform: translate(-40%, -50%);
}
.btn__wrap:hover .btn.btn-brown {
  background-color: #ba9f6e;
}

.contact-btn {
  text-align: center;
  color: var(--white);
  background-color: var(--red);
  border-radius: 100px;
  border: solid 7px var(--white);
  box-shadow: 4px 4px 16px 2px rgba(0, 0, 0, 0.16);
  transition: all 0.2s ease-in-out;
}
.contact-btn:hover {
  opacity: 1;
  color: var(--white);
  background-color: #89070a;
  border: solid 7px #f1f1f1;
  box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
}

.contact-btn.circle {
  width: 142px;
  height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arw-link {
  position: relative;
  font-size: min(3.4vw, 18px);
  font-weight: var(--f_medium);
}
.arw-link:hover {
  color: var(--red);
}
.arw-link::after {
  content: "";
  display: inline-block;
  width: 23px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  background-color: var(--red);
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  .arw-link::after {
    width: 18px;
    right: -25px;
  }
}
.arw-link::before {
  content: "";
  display: inline-block;
  width: 9px;
  aspect-ratio: 1/1;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: var(--white);
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .arw-link::before {
    width: 6px;
    right: -20px;
  }
}

/*-------------------------------------*/
/* header                              */
/*-------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9999;
}
.header__logo-wrap {
  padding: 15px 20px;
}
@media screen and (max-width: 599px) {
  .header__logo-wrap {
    display: inline-flex;
    align-items: center;
    height: 15vw;
    padding: 0 5vw;
  }
}
.header__logo {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 100px;
  }
}
@media screen and (max-width: 599px) {
  .header__logo {
    width: 23vw;
  }
}
.header__right-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .header__right-area {
    gap: 0;
  }
}
.header__hamburger-btn {
  position: relative;
  display: flex;
  width: 80px;
  height: 78px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 15px 20px;
  cursor: pointer;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header__hamburger-btn {
    background-color: var(--black);
    width: 60px;
    height: auto;
    aspect-ratio: 1/1;
    padding: 5px;
  }
}
@media screen and (max-width: 599px) {
  .header__hamburger-btn {
    width: 15vw;
    padding: 5px;
  }
}
.header__hamburger-btn span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 70%;
  font-size: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .header__hamburger-btn span {
    width: 50%;
    color: var(--white);
  }
}
.header__hamburger-btn span:not(:nth-child(4)) {
  height: 2px;
  background-color: var(--black);
}
@media screen and (max-width: 768px) {
  .header__hamburger-btn span:not(:nth-child(4)) {
    background-color: var(--white);
  }
}
.header__hamburger-btn span:nth-child(1) {
  top: 25%;
}
.header__hamburger-btn span:nth-child(2) {
  top: 37%;
}
.header__hamburger-btn span:nth-child(3) {
  top: 50%;
}
.header__hamburger-btn span:nth-child(4) {
  top: 56%;
}
@media screen and (max-width: 768px) {
  .header__hamburger-btn span:nth-child(4) {
    font-size: 10px;
  }
}
@media screen and (max-width: 599px) {
  .header__hamburger-btn span:nth-child(4) {
    font-size: 3vw;
  }
}
.header__hamburger-btn.open span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.header__hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger-btn.open span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}
.header__hamburger-btn.open span:nth-child(4) {
  opacity: 0;
}
.header__btn {
  width: 230px;
  padding: 16px 0;
  font-size: min(3.5vw, 15px);
  border: solid 5px var(--white);
}
.header__btn:hover {
  border-width: 5px;
}
@media screen and (max-width: 768px) {
  .header__btn:hover {
    border: 0;
  }
}
@media screen and (max-width: 768px) {
  .header__btn {
    width: 156px;
    padding: 18.5px 0;
    border-radius: 0;
    border: 0;
  }
}
@media screen and (max-width: 599px) {
  .header__btn {
    width: auto;
    display: inline-flex;
    align-items: center;
    height: 15vw;
    padding: 0 5vw;
    font-size: 3.4vw;
  }
}
.header__menu {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  background-color: var(--brown_thin);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  transition: all 0.1s ease-in-out;
}
@media screen and (max-width: 768px) {
  .header__menu {
    padding-top: min(24vw, 110px);
    align-items: flex-start;
  }
}
.header__menu.open {
  opacity: 1;
  visibility: visible;
}
.header__menu-inner {
  display: flex;
  flex-wrap: wrap;
  gap: min(5vw, 80px);
}
@media screen and (max-width: 768px) {
  .header__menu-inner {
    width: min(90%, 300px);
    flex-direction: column;
    gap: 0;
  }
}
.header__menu-logo-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .header__menu-logo-area {
    justify-content: space-between;
    flex-direction: row;
    --logo-gap: min(3vw, 20px);
    gap: var(--logo-gap);
    margin-bottom: 30px;
  }
  .header__menu-logo-area img:nth-child(1) {
    width: calc(70% - var(--logo-gap));
  }
  .header__menu-logo-area img:nth-child(2) {
    width: calc(30% - var(--logo-gap));
  }
}
@media screen and (max-width: 599px) {
  .header__menu-logo-area {
    width: 80%;
  }
}
.header__menu-link-item {
  font-size: min(5vw, 20px);
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .header__menu-btn-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header__menu-btn.contact-btn.circle {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: 0;
    padding: min(5vw, 20px);
    margin-top: 30px;
  }
}

/*-------------------------------------*/
/* footer                              */
/*-------------------------------------*/
.footer {
  position: relative;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  padding: min(12vw, 80px) 0 min(7vw, 80px);
  width: min(1170px, 90%);
  margin: 0 auto;
  gap: min(9vw, 40px) min(7vw, 20px);
}
@media screen and (max-width: 599px) {
  .footer__inner {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
.footer__logo-area {
  justify-items: center;
  row-gap: min(8vw, 35px);
}
@media screen and (max-width: 599px) {
  .footer__logo-area img:nth-child(1) {
    width: 30vw;
  }
  .footer__logo-area img:nth-child(2) {
    width: 20vw;
  }
}
.footer__right-nav {
  display: flex;
  justify-content: space-between;
  width: 580px;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .footer__right-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
.footer__link-item {
  font-size: min(3.4vw, 13px);
  padding-left: min(4.5vw, 25px);
}
.footer__link-item.is-deco {
  position: relative;
}
.footer__link-item.is-deco::before {
  content: "";
  display: inline-block;
  width: min(3.3vw, 15px);
  height: min(1vw, 1px);
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.footer__link-item:not(:last-child) {
  margin-bottom: 0.5em;
}
.footer__annotation {
  font-size: min(3vw, 14px);
  width: min(1170px, 95%);
  margin: 0 auto 20px;
}
.footer__copy {
  background-color: #c7b18a;
  font-size: min(3.2vw, 13px);
  padding: min(3.5vw, 18px);
}
@media screen and (max-width: 599px) {
  .footer__btn-wrap {
    width: 100%;
    margin-top: 5vw;
  }
}
@media screen and (max-width: 599px) {
  .footer__btn.contact-btn.circle {
    display: block;
    border-radius: 0;
    border: 0;
    width: 100%;
    height: auto;
    padding: 5vw;
  }
}
.footer__topback {
  position: absolute;
  right: 20px;
  z-index: 998;
  padding-top: 18px;
  display: block;
  width: 74px;
  height: 74px;
  border-radius: 100px;
  line-height: 1.1;
  background-color: var(--black);
  transition: opacity 0.3s ease-in-out;
}
.footer__topback::before {
  content: "";
  display: inline-block;
  color: #fff;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translate(-50%, 0%) rotate(-45deg);
  position: absolute;
  left: 50%;
  bottom: 55%;
}
.footer__topback:hover {
  opacity: 0.7;
}

/*-------------------------------------*/
/* cta-ctr                             */
/*-------------------------------------*/
.cta-ctr-wrap__btm-txt {
  font-size: min(9vw, 64px);
  margin-top: min(7vw, 40px);
  line-height: 1.25;
}
@media screen and (max-width: 1140px) {
  .cta-ctr-wrap__btm-txt {
    padding-right: 190px;
  }
}
@media screen and (max-width: 599px) {
  .cta-ctr-wrap__btm-txt {
    padding-right: 30vw;
  }
}
.cta-ctr-wrap__product {
  position: absolute;
  width: 140px;
  right: -5px;
  bottom: -43px;
}
@media screen and (max-width: 1140px) {
  .cta-ctr-wrap__product {
    right: -4vw;
    bottom: -57px;
  }
}
@media screen and (max-width: 599px) {
  .cta-ctr-wrap__product {
    width: 30vw;
    right: 0;
    bottom: -10vw;
  }
}

.cta-ctr {
  width: min(100%, 1000px);
  margin: 0 auto;
}
.cta-ctr__ttl-inner {
  position: relative;
}
.cta-ctr__ttl-inner::after {
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(/food/assets/img/common/cta_hexagon.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-45%);
}
@media screen and (max-width: 599px) {
  .cta-ctr__ttl-inner::after {
    width: 8vw;
  }
}
.cta-ctr__ttl-inner span {
  display: flex;
  align-items: center;
}
.cta-ctr__ttl-inner span::before, .cta-ctr__ttl-inner span::after {
  content: "";
  display: inline-block;
  height: 1px;
  vertical-align: middle;
  background-color: var(--white);
}
.cta-ctr__ttl-inner span::before {
  width: 5%;
  margin-right: 15px;
}
@media screen and (max-width: 599px) {
  .cta-ctr__ttl-inner span::before {
    content: none;
  }
}
.cta-ctr__ttl-inner span::after {
  width: 30%;
  margin: 0 15px;
}
@media screen and (max-width: 599px) {
  .cta-ctr__ttl-inner span::after {
    margin: 0;
    width: 24vw;
  }
}
.cta-ctr__ttl {
  font-size: min(4vw, 24px);
  padding: min(4vw, 26px) min(3.8vw, 20px);
  color: var(--white);
  background-color: var(--brown_deep);
  padding-right: 18%;
}
@media screen and (max-width: 599px) {
  .cta-ctr__ttl {
    padding-right: 3.8vw;
  }
}
.cta-ctr__contents {
  border: solid min(4vw, 20px) var(--brown_deep);
  border-top: 0;
  padding: min(6vw, 40px) min(4.5vw, 48px) min(6vw, 30px);
}
.cta-ctr__txt-wrap {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 50px;
}
@media screen and (max-width: 599px) {
  .cta-ctr__txt-wrap {
    flex-direction: column;
    gap: 4vw;
  }
}
.cta-ctr__txt {
  font-size: min(3.6vw, 18px);
  line-height: 1.8;
}
.cta-ctr__txt p:not(:last-child) {
  margin-bottom: 0.5em;
}
.cta-ctr__btn-wrap {
  margin-top: min(7vw, 56px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(4vw, 30px);
}

/*-------------------------------------*/
/* flow-ctr                            */
/*-------------------------------------*/
.flow-ctr {
  display: flex;
  justify-content: center;
  gap: min(7vw, 40px) 24px;
}
@media screen and (max-width: 999px) {
  .flow-ctr {
    flex-wrap: wrap;
  }
}
.flow-ctr__ttl {
  font-size: min(7vw, 30px);
  margin-bottom: min(10vw, 32px);
}
.flow-ctr.column-2 {
  flex-wrap: wrap;
  gap: min(7vw, 40px) 30px;
}
.flow-ctr.column-2 .flow-ctr__item {
  width: calc(50% - 150px);
}
@media screen and (max-width: 999px) {
  .flow-ctr.column-2 .flow-ctr__item {
    width: calc(50% - (24 / var(--em)) * 1rem);
  }
}
@media screen and (max-width: 599px) {
  .flow-ctr.column-2 .flow-ctr__item {
    width: 100%;
  }
}
.flow-ctr__item {
  width: 33.3333333333%;
}
@media screen and (max-width: 999px) {
  .flow-ctr__item {
    width: calc(50% - (24 / var(--em)) * 1rem);
  }
}
@media screen and (max-width: 599px) {
  .flow-ctr__item {
    width: 100%;
  }
}
.flow-ctr__item:not(:last-child) .flow-ctr__img-wrap {
  position: relative;
  overflow: visible;
}
.flow-ctr__item:not(:last-child) .flow-ctr__img-wrap::after {
  content: "";
  display: block;
  width: 69px;
  height: 69px;
  background: url(../img/common/flow_arw.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -44px;
  transform: translate(0, -50%);
  z-index: 5;
}
@media screen and (max-width: 999px) {
  .flow-ctr__item:not(:last-child) .flow-ctr__img-wrap::after {
    content: none;
  }
}
.flow-ctr__num-wrap {
  margin: 20px 0 10px;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .flow-ctr__num-wrap {
    margin: 12px 0 calc((11 / var(--em)) * 1rem);
  }
}
.flow-ctr__num-wrap::after {
  content: "";
  display: block;
  width: min(13vw, 40px);
  height: 2px;
  background-color: var(--black);
  position: absolute;
  bottom: 0;
}
.flow-ctr__num {
  font-size: min(11vw, 40px);
  vertical-align: top;
  line-height: 1;
}
.flow-ctr__txt-group {
  font-size: min(3.5vw, 16px);
}
.flow-ctr__ctr-ttl {
  font-size: min(3.8vw, 20px);
  margin-bottom: min(5vw, 8px);
}
.flow-ctr__img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .flow-ctr__img {
    height: 43vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.flow-ctr .arw-link-wrap {
  margin-top: 12px;
  transform: scale(0.9);
  transform-origin: left;
}

/*-------------------------------------*/
/* kenshokunin                            */
/*-------------------------------------*/
.top-kenshokunin {
  padding: min(24vw, 120px) 0 min(6vw, 50px);
}
@media screen and (max-width: 1000px) {
  .top-kenshokunin {
    padding: min(24vw, 120px) 0 min(24vw, 120px);
  }
}
.top-kenshokunin__inner {
  background-color: #ffffff;
  padding: min(5vw, 40px) min(8vw, 72px);
  position: relative;
  margin: 0 auto min(6vw, 50px);
}
.top-kenshokunin__ttl {
  font-size: min(7vw, 30px);
  margin-bottom: 1em;
}
@media screen and (max-width: 1000px) {
  .top-kenshokunin__ttl {
    text-align: center;
  }
}
.top-kenshokunin__flex {
  display: flex;
  gap: 5em;
}
@media screen and (max-width: 1000px) {
  .top-kenshokunin__flex {
    align-items: center;
    justify-content: center;
  }
}
.top-kenshokunin__feature li::before {
  content: "・";
}
.top-kenshokunin__image {
  position: absolute;
  right: min(10vw, 100px);
  bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .top-kenshokunin__image {
    position: relative;
    right: auto;
    bottom: 0;
    margin: 3em 0 0;
  }
}
.top-kenshokunin__image ul {
  display: flex;
  align-items: flex-end;
  gap: 4em;
}
@media screen and (max-width: 1000px) {
  .top-kenshokunin__image ul {
    justify-content: space-around;
  }
}

/*-----------------common--------------------*/
.line-ttl span {
  font-size: min(3vw, 15px);
  position: relative;
}
.line-ttl span::before, .line-ttl span::after {
  content: "";
  display: inline-block;
  height: 1px;
  background-color: var(--black);
  vertical-align: middle;
}
.line-ttl span::before {
  width: 11px;
  margin-right: 7px;
}
.line-ttl span::after {
  width: 5px;
  margin-left: 7px;
}

.text-deco {
  position: absolute;
}
@media screen and (max-width: 599px) {
  .text-deco {
    width: 24vw;
  }
}

.header {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.header.show {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .header {
    opacity: 1;
  }
}

.splide__pagination {
  display: flex !important;
  gap: 20px;
  margin-top: min(3.5vw, 16px);
}
.splide__pagination__page {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  background-color: #949494;
  position: relative;
}
.splide__pagination__page.is-active {
  background-color: var(--black);
}
.splide__pagination__page.is-active::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--black);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

/*-----------------top-mv--------------------*/
.top-mv__inner {
  width: min(95%, 1360px);
  margin: 0 auto;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .top-mv__inner {
    width: 100%;
  }
}
.top-mv__logo-wrap {
  gap: 26px;
  margin: 20px 0 110px;
}
@media screen and (max-width: 768px) {
  .top-mv__nav-wrap {
    display: none;
  }
}
.top-mv__nav {
  margin-bottom: 30px;
}
.top-mv__link-list {
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}
.top-mv__link-list li {
  padding-left: 25px;
}
.top-mv__link-list li:first-child::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top-mv__link-list li:first-child {
  position: relative;
}
.top-mv__link-list li:not(:first-child):hover {
  position: relative;
}
.top-mv__link-list li:not(:first-child):hover:first-child {
  position: unset;
}
.top-mv__link-list a:hover {
  color: var(--red);
  text-decoration: underline;
}
.top-mv__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  translate: -50% -50%;
  font-size: min(6.5vw, 92px);
  pointer-events: none;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
.top-mv__ttl.is-hide {
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .top-mv__ttl {
    font-size: 8vw;
    line-height: 1.2;
    top: 70%;
  }
}
.top-mv__movie-wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .top-mv__movie-wrap {
    width: 100%;
  }
}
.top-mv__movie {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background-color: var(--black);
}
@media screen and (max-width: 599px) {
  .top-mv__movie {
    width: 100%;
    height: 57vw;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 17vw;
  }
}

/*-----------------top-lead--------------------*/
.top-lead .line-ttl {
  margin-bottom: min(6vw, 72px);
}
.top-lead__ttl {
  font-size: min(6.2vw, 42px);
  margin-bottom: min(1.5vw, 16px);
}
.top-lead__sub-ttl {
  font-size: min(5vw, 30px);
  line-height: 1.4;
}
.top-lead__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: min(10vw, 80px);
  margin: -24px 0 min(8vw, 80px);
}
@media screen and (max-width: 1100px) {
  .top-lead__flex {
    margin: min(6vw, 20px) 0 min(12vw, 70px);
  }
}
@media screen and (max-width: 1000px) {
  .top-lead__flex {
    flex-wrap: wrap;
  }
}
.top-lead__txt {
  font-size: min(3.5vw, 16px);
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .top-lead__txt {
    padding-left: 5vw;
  }
}

/*-----------------top-news--------------------*/
.top-news {
  margin-bottom: 50px;
}
.top-news__link-list {
  border-top: solid 1px var(--black);
  border-bottom: solid 1px var(--black);
  padding: 32px 0;
  margin-top: 15px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-news__link-list {
    flex-wrap: wrap;
    padding: 0;
  }
}
.top-news__item:not(:last-child) {
  border-right: solid 1px var(--black);
}
@media screen and (max-width: 768px) {
  .top-news__item:not(:last-child) {
    border-right: 0;
    border-bottom: solid 1px var(--black);
  }
}
.top-news__link {
  display: flex;
  align-items: flex-start;
  gap: min(3.5vw, 20px);
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .top-news__link {
    padding: min(4vw, 20px);
  }
}
@media screen and (max-width: 599px) {
  .top-news__link-img {
    width: 20%;
  }
}
.top-news p {
  font-size: 14px;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/*-----------------top-product--------------------*/
.top-product__deco-inner {
  width: min(1440px, 98%);
  margin: 0 auto;
}
.top-product__deco-inner .text-deco {
  position: absolute;
  top: -85px;
  z-index: 10;
}
@media screen and (max-width: 599px) {
  .top-product__deco-inner .text-deco {
    width: 24vw;
    top: -12vw;
  }
}
@media screen and (max-width: 1090px) {
  .top-product__txt-box {
    padding-right: 37vw;
  }
}
@media screen and (max-width: 599px) {
  .top-product__txt-box {
    padding-right: 30vw;
  }
}
.top-product__sub-ttl {
  font-size: min(3.6vw, 18px);
  margin-bottom: 5px;
}
.top-product__ttl {
  font-size: min(10vw, 100px);
  line-height: 1;
  white-space: nowrap;
}
.top-product__ttl small {
  font-size: min(8vw, 40px);
  margin-left: 10px;
  position: relative;
}
.top-product__ttl small::after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: var(--black);
  position: absolute;
  right: 0;
  bottom: 0;
}
.top-product__lead {
  font-size: min(4.5vw, 32px);
  margin: min(5vw, 24px) 0 min(3vw, 12px);
}
.top-product__item {
  font-size: min(3.5vw, 20px);
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 599px) {
  .top-product__list {
    width: 100vw;
  }
}
.top-product__item:not(:last-child) {
  margin-bottom: min(1vw, 12px);
}
.top-product__item::before {
  content: "＿";
  margin-right: 10px;
}
.top-product__img {
  position: absolute;
  width: 390px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1090px) {
  .top-product__img {
    width: 35vw;
    top: auto;
    bottom: -41vw;
  }
}
@media screen and (max-width: 599px) {
  .top-product__img {
    width: 24vw;
    top: 17vw;
  }
}
.top-product__line-ttl-wrap {
  width: min(90%, 1300px);
  margin: min(16vw, 110px) auto 0;
}
.top-product__ctr-wrap {
  margin: 56px 0 100px;
}
@media screen and (max-width: 599px) {
  .top-product__ctr-wrap {
    margin: 1vw 0 8vw;
  }
}
.top-product__ctr:not(:last-child) {
  margin-bottom: min(14vw, 90px);
}
@media screen and (max-width: 599px) {
  .top-product__ctr:not(:last-child) {
    margin-bottom: 2vw;
  }
}
.top-product__ctr .outer {
  width: min(1200px, 100%);
}
.top-product__ctr:nth-child(2) .top-product__inner {
  justify-content: flex-end;
}
@media screen and (max-width: 599px) {
  .top-product__ctr:nth-child(2) .top-product__contents-wrap {
    flex-direction: column;
  }
}
.top-product__inner {
  display: flex;
}
@media screen and (max-width: 599px) {
  .top-product__inner {
    flex-direction: column;
  }
}
.top-product__contents-wrap {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 599px) {
  .top-product__contents-wrap {
    flex-direction: column-reverse;
    gap: 0vw;
    padding: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-product__contents-wrap.reverse {
    flex-direction: column;
  }
}
.top-product__bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: calc(100% - 50px);
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .top-product__bg {
    height: calc(100% - 10vw);
  }
}
.top-product__bg.right {
  right: auto;
  left: 0;
}
.top-product .upper-layer {
  z-index: 2;
}
.top-product__ctr-txt-wrap {
  padding: 40px 50px 40px 60px;
}
@media screen and (max-width: 599px) {
  .top-product__ctr-txt-wrap {
    padding: 5vw 0px 5vw;
  }
}
.top-product__ctr-num-wrap {
  letter-spacing: 0.06em;
  margin-top: -20px;
  padding-bottom: 20px;
  margin-bottom: 32px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-product__ctr-num-wrap {
    margin-top: 0;
    margin-bottom: 3vw;
    padding-bottom: 4vw;
  }
}
.top-product__ctr-num-wrap::after {
  content: "";
  display: block;
  width: 75px;
  height: 3px;
  background-color: var(--black);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .top-product__ctr-num-wrap::after {
    height: 1px;
  }
}
.top-product__ctr-num {
  font-size: min(12vw, 75px);
  line-height: 0.8;
  vertical-align: top;
}
.top-product__ctr-num span {
  letter-spacing: 0.08em;
}
.top-product__ctr-ttl {
  font-size: min(4.2vw, 26px);
}
@media screen and (max-width: 599px) {
  .top-product__ctr-ttl {
    width: 60%;
    margin-bottom: 4vw;
    float: left;
  }
}
@media screen and (max-width: 599px) {
  .top-product__ctr-img {
    width: 100%;
  }
  .top-product__ctr-img img {
    display: block;
    width: 100%;
    height: 50vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top-product__ctr-sub-img {
  display: block;
  width: min(300px, 25vw);
  margin: min(10vw, 52px) 0 min(-6vw, -60px) auto;
}
@media screen and (max-width: 599px) {
  .top-product__ctr-sub-img {
    margin: 0;
    width: 35%;
    height: 23vw;
    -o-object-fit: cover;
       object-fit: cover;
    float: right;
  }
}
.top-product__ctr-btm-txt {
  font-size: min(3.5vw, 28px);
  letter-spacing: 0.05em;
  margin-right: -50px;
  padding: 15px 0;
  text-align: right;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .top-product__ctr-btm-txt {
    margin-top: 0vw;
    margin-right: 0;
  }
}
.top-product__ctr-btm-txt small {
  font-size: min(3vw, 18px);
  margin-right: 10px;
}
.top-product__ctr-btm-txt::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  margin-right: 20px;
}
.top-product__ctr-btm-txt.right {
  margin: 0 0 0 -50px;
}
@media screen and (max-width: 599px) {
  .top-product__ctr-btm-txt.right {
    margin: 0;
    display: flex;
    flex-direction: row-reverse;
  }
}
.top-product__ctr-btm-txt.right::before {
  content: none;
}
.top-product__ctr-btm-txt.right::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  margin-left: 20px;
}
@media screen and (max-width: 599px) {
  .top-product__ctr-btm-txt.right::after {
    margin-left: 0;
    margin-right: 20px;
  }
}

/*-----------------top-case--------------------*/
.top-case .text-deco {
  top: -10em;
  right: 0;
}
@media screen and (max-width: 599px) {
  .top-case .text-deco {
    top: -26vw;
  }
}
.top-case__ttl-wrap {
  margin-bottom: min(7vw, 30px);
}
.top-case__ttl {
  font-size: min(7vw, 36px);
  line-height: 1.1;
  margin-bottom: min(5vw, 10px);
}
.top-case__slider-wrap {
  width: 100%;
}
.top-case__slider {
  margin-bottom: 30px;
  position: relative;
}
.top-case__slider::before, .top-case__slider::after {
  content: "";
  display: block;
  width: 100px;
  height: 100%;
  background: rgb(255, 255, 255);
  position: absolute;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 599px) {
  .top-case__slider::before, .top-case__slider::after {
    width: 0;
  }
}
.top-case__slider::before {
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
}
.top-case__slider::after {
  right: 0;
  background: linear-gradient(-90deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
}
.top-case .splide__track {
  padding-bottom: 8px;
}
.top-case .splide__slide {
  opacity: 0.3;
  transition: opacity 0.1s ease-in;
}
.top-case .splide__slide.is-next, .top-case .splide__slide.is-prev {
  opacity: 1;
}
@media screen and (max-width: 599px) {
  .top-case .splide__slide.is-next, .top-case .splide__slide.is-prev {
    opacity: 0.3;
  }
}
.top-case .splide__slide.is-active {
  opacity: 1;
}
.top-case .article-list__card {
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
}
.top-case .article-list__card a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.top-case .article-list__card.new {
  position: relative;
}
.top-case .article-list__card.new::before {
  content: "NEW";
  display: inline-block;
  font-weight: 600;
  border-radius: 10px 0 0 0;
  padding: 8px 16px;
  color: var(--white);
  background-color: var(--brown);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: opacity 0.2s ease-in-out;
}
.top-case .article-list__card.new:hover::before {
  opacity: 0.7;
}
.top-case .article-list__card-img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.top-case .article-list__card-txt-box {
  position: relative;
  height: 100%;
  padding: min(5vw, 20px) min(5vw, 24px);
}
.top-case .article-list__card-txt-box::after {
  content: "";
  display: block;
  width: 27px;
  height: 8px;
  background: url(/food/assets/img/common/article_arw.jpg) no-repeat center/contain;
  position: absolute;
  bottom: 23px;
  right: 22px;
}
.top-case .article-list__company-name {
  font-size: min(3.5vw, 15px);
}
.top-case .article-list__solution-wrap {
  font-size: min(3.2vw, 13px);
  margin: 8px 0 min(5vw, 20px);
}
.top-case .article-list__solution-list {
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 5px;
  gap: 4px 12px;
}
.top-case .article-list__solution-list li::before {
  content: "・";
}
.top-case .article-list__card-ttl {
  font-size: min(4.5vw, 18px);
}

/*-----------------cta-ctr-wrap--------------------*/
.cta-ctr-wrap {
  padding: min(15vw, 80px) 0;
}

/*-----------------top-solution--------------------*/
.top-solution {
  padding-bottom: min(15vw, 100px);
  --inner-gap: clamp(20px, 5vw, 110px);
}
.top-solution .inner {
  width: min(90%, 1000px);
}
.top-solution__ttl-wrap {
  padding: min(15vw, 70px) 0 min(6vw, 50px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: min(3.2vw, 20px);
}
.top-solution__ttl {
  color: var(--brown);
  font-size: min(14vw, 80px);
  line-height: 1.1;
}
.top-solution__sub-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: min(3.6vw, 18px);
  margin-bottom: 10px;
}
.top-solution__sub-ttl::before, .top-solution__sub-ttl::after {
  content: "";
  display: inline-block;
  width: min(21vw, 80px);
  height: 1px;
  background: var(--black);
}
@media screen and (max-width: 599px) {
  .top-solution__sub-ttl::before {
    content: none;
  }
}
.top-solution__ctr:not(:last-child) {
  margin-bottom: min(6vw, 45px);
}
.top-solution .outer {
  width: min(100%, 1440px);
}
.top-solution__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: var(--inner-gap);
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 599px) {
  .top-solution__inner {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.top-solution__inner:hover {
  opacity: 1;
}
.top-solution__inner:hover .top-solution__bg {
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.3);
}
.top-solution__inner:hover .top-solution__ctr-link .arw-link {
  color: var(--red);
}
.top-solution__inner:hover .top-solution__img-wrap img {
  filter: brightness(100%);
}
.top-solution__inner--left {
  justify-content: center;
  margin-left: auto;
  padding: 30px;
  padding-right: 0;
}
.top-solution__inner--right {
  flex-direction: row-reverse;
  justify-content: left;
  padding: 30px;
  padding-left: 0;
}
.top-solution__inner--right .top-solution__ctr-ttl::after {
  right: 0;
}
@media screen and (max-width: 599px) {
  .top-solution__inner {
    padding: 30px;
  }
}
.top-solution__bg {
  position: absolute;
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}
.top-solution__bg.bg-white {
  right: auto;
  left: 0;
}
.top-solution__txt-wrap {
  display: flex;
  flex-direction: column;
  width: min(330px, 40%);
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 599px) {
  .top-solution__txt-wrap {
    width: 100%;
  }
}
.top-solution__img-wrap {
  display: flex;
  gap: 5px;
  width: min(840px, 70%);
  z-index: 10;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .top-solution__img-wrap {
    width: 100%;
  }
}
.top-solution__img-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 50%;
  height: 100%;
  filter: brightness(70%);
  transition: all 0.3s ease-in;
}
.top-solution__img-wrap--reverse {
  flex-direction: row-reverse;
}
.top-solution__ctr-lead {
  font-size: min(4vw, 20px);
}
.top-solution__ctr-ttl {
  line-height: 1;
  padding-bottom: min(3vw, 14px);
  margin: min(2vw, 8px) 0 min(3vw, 12px);
  position: relative;
}
.top-solution__ctr-ttl span {
  font-size: min(12vw, 60px);
}
.top-solution__ctr-ttl small {
  font-size: min(8vw, 32px);
}
.top-solution__ctr-ttl::after {
  content: "";
  display: block;
  width: calc(100% + var(--inner-gap));
  height: 1px;
  background-color: var(--black);
  position: absolute;
  bottom: 0;
}
.top-solution__ctr-ttl-logo {
  width: min(260px, 100%);
}
@media screen and (max-width: 599px) {
  .top-solution__ctr-ttl-logo {
    width: 80%;
  }
}
.top-solution__ctr-txt {
  margin-bottom: min(6vw, 45px);
}
.top-solution__ctr-link {
  margin-top: auto;
}
.top-solution__ctr-link .arw-link {
  transition: all 0.3s ease-in-out;
}

/*-----------------top-support--------------------*/
.top-support {
  margin: min(20vw, 130px) 0 min(15vw, 80px);
  padding: 64px 72px;
  background: var(--white) url(/food/assets/img/top/solution/support/support_bg.jpg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 720px;
}
@media screen and (max-width: 900px) {
  .top-support {
    background-size: 69vw;
  }
}
@media screen and (max-width: 599px) {
  .top-support {
    padding: 13vw 6vw 3vw;
    background-size: 100vw;
  }
}
.top-support .text-deco {
  top: -80px;
  left: -120px;
}
@media screen and (max-width: 599px) {
  .top-support .text-deco {
    width: 24vw;
    top: -11vw;
    left: -10vw;
  }
}
.top-support__ttl {
  font-size: min(6vw, 36px);
}
.top-support__reception {
  font-size: min(3.9vw, 20px);
  margin: min(5vw, 16px) 0 min(6vw, 30px);
}
.top-support__reception span {
  padding: 5px min(2vw, 10px);
  background: linear-gradient(180deg, rgba(229, 229, 229, 0) 50%, rgb(224, 208, 177) 50%);
}
.top-support__flex {
  display: flex;
  justify-content: center;
  margin-top: min(4vw, 80px);
}
@media screen and (max-width: 599px) {
  .top-support__flex {
    flex-wrap: wrap;
  }
}
.top-support__group {
  position: relative;
  padding: 0 30px;
  line-height: 1.7;
  width: 33.3333333333%;
}
@media screen and (max-width: 599px) {
  .top-support__group {
    width: 100%;
    padding: 6vw 2vw;
  }
}
.top-support__group:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background-color: var(--black);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  .top-support__group:not(:last-child)::after {
    width: 80%;
    height: 1px;
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%);
  }
}
.top-support__group-icon {
  height: min(18vw, 90px);
  -o-object-fit: contain;
     object-fit: contain;
}
.top-support__group-ttl {
  margin: min(2vw, 24px) 0 min(2vw, 10px);
}
.top-support__group-txt {
  font-size: min(3.4vw, 14px);
}

/*-----------------top-about--------------------*/
.top-about__top-area .inner {
  width: min(100%, 1000px);
  padding-left: 20px;
}
.top-about__ttl-area {
  position: relative;
  z-index: 10;
  pointer-events: none;
}
.top-about__ttl {
  font-size: min(13vw, 72px);
  line-height: 1.1;
  margin-bottom: min(3vw, 24px);
}
.top-about__img-wrap {
  position: relative;
  margin: -195px 0 90px;
  scale: 0.9;
}
@media screen and (max-width: 830px) {
  .top-about__img-wrap {
    margin: -18vw 0 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__img-wrap {
    scale: 1;
  }
}
@media screen and (max-width: 599px) {
  .top-about__img-wrap {
    margin: 2vw 0 0;
  }
}
.top-about__img {
  aspect-ratio: 702/500;
  scale: 1;
}
@media screen and (max-width: 953px) {
  .top-about__img {
    scale: 10vw;
  }
}
@media screen and (max-width: 599px) {
  .top-about__img {
    height: 67vw;
  }
}
.top-about__img .absolute {
  position: absolute;
}
@-webkit-keyframes mapItemdown {
  0% {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes mapItemdown {
  0% {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes animation-circle {
  0% {
    width: 0%;
    opacity: 1;
  }
  100% {
    width: 120%;
    opacity: 0;
  }
}
@keyframes animation-circle {
  0% {
    width: 0%;
    opacity: 1;
  }
  100% {
    width: 120%;
    opacity: 0;
  }
}
.top-about__img-slideItem {
  opacity: 0;
  -webkit-animation: 1s ease-in-out forwards mapItemdown;
          animation: 1s ease-in-out forwards mapItemdown;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  --kiosk-time: 200ms;
  --table-service-time: 600ms;
  --bopis-time: 1300ms;
  --dmp-time: 2000ms;
  --togo-time: 2400ms;
  --totable-time: 2800ms;
  --drivethrough-time: 3200ms;
}
.top-about__img-slideItem::after {
  content: "";
  display: block;
  width: 0;
  aspect-ratio: 1/1;
  background-color: #bb9668;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1000px;
  z-index: 1;
  -webkit-animation: 1.3s ease-in-out forwards animation-circle;
          animation: 1.3s ease-in-out forwards animation-circle;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.top-about__img-slideItem.started::after {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.top-about__img-window01 {
  width: min(84vw, 850px);
  top: 0%;
  left: 13.5%;
  z-index: 15;
  pointer-events: none;
}
.top-about__img-person01 {
  width: min(5vw, 51px);
  top: 77%;
  left: 77%;
  z-index: 14;
  -webkit-animation-delay: var(--togo-time);
          animation-delay: var(--togo-time);
}
.top-about__img-person01.started::after {
  -webkit-animation-delay: var(--togo-time);
          animation-delay: var(--togo-time);
}
.top-about__img-token {
  width: min(6vw, 62px);
  top: 25.5%;
  left: 48%;
  z-index: 14;
  -webkit-animation-delay: var(--table-service-time);
          animation-delay: var(--table-service-time);
}
.top-about__img-token.started::after {
  -webkit-animation-delay: var(--table-service-time);
          animation-delay: var(--table-service-time);
}
.top-about__img-table01 {
  width: min(10vw, 94px);
  top: 57%;
  left: 49.3%;
  z-index: 13;
  -webkit-animation-delay: var(--totable-time);
          animation-delay: var(--totable-time);
}
.top-about__img-table01.started::after {
  -webkit-animation-delay: var(--totable-time);
          animation-delay: var(--totable-time);
}
.top-about__img-unit {
  width: min(11vw, 115px);
  top: 21%;
  left: 27%;
  z-index: 12;
  -webkit-animation-delay: var(--kiosk-time);
          animation-delay: var(--kiosk-time);
}
.top-about__img-unit.started::after {
  -webkit-animation-delay: var(--kiosk-time);
          animation-delay: var(--kiosk-time);
}
.top-about__img-person02 {
  width: min(3.4vw, 34px);
  top: 57%;
  left: 71%;
  z-index: 12;
}
.top-about__img-locker {
  width: min(19vw, 197px);
  top: 34%;
  left: 70%;
  z-index: 10;
  -webkit-animation-delay: var(--bopis-time);
          animation-delay: var(--bopis-time);
}
.top-about__img-locker.started::after {
  -webkit-animation-delay: var(--bopis-time);
          animation-delay: var(--bopis-time);
}
.top-about__img-car01 {
  width: min(53vw, 529px);
  top: 52%;
  left: 3%;
  z-index: 12;
  -webkit-animation-delay: var(--drivethrough-time);
          animation-delay: var(--drivethrough-time);
}
.top-about__img-car01.started::after {
  -webkit-animation: none;
          animation: none;
}
.top-about__img-drivethrough {
  width: min(25vw, 249px);
  top: 32%;
  left: -1%;
  z-index: 10;
  -webkit-animation-delay: var(--drivethrough-time);
          animation-delay: var(--drivethrough-time);
}
.top-about__img-drivethrough.started::after {
  -webkit-animation-delay: var(--drivethrough-time);
          animation-delay: var(--drivethrough-time);
}
.top-about__img-field {
  position: relative;
  z-index: 6;
}
.top-about__img-window02 {
  width: min(36vw, 360px);
  top: 0%;
  left: 13%;
  z-index: 5;
}
.top-about__img-desk {
  width: min(9vw, 90px);
  top: 47%;
  left: 90%;
  z-index: 9;
  -webkit-animation-delay: var(--dmp-time);
          animation-delay: var(--dmp-time);
}
.top-about__img-desk.started::after {
  -webkit-animation-delay: var(--dmp-time);
          animation-delay: var(--dmp-time);
}
.top-about__img-car02 {
  width: min(26vw, 260px);
  top: 3%;
  left: 25%;
  z-index: -1;
  -webkit-animation-delay: var(--drivethrough-time);
          animation-delay: var(--drivethrough-time);
}
.top-about__img-car02.started::after {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.top-about__img-car02.started::after {
  -webkit-animation: none;
          animation: none;
}
.top-about__link-wrap {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .top-about__link-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2vw 0;
    margin-top: 9vw;
    padding-right: 20px;
  }
}
.top-about__link-wrap.active {
  opacity: 1;
}
.top-about__link {
  color: var(--black);
  background-color: #dccdb2;
  border: solid 5px #dccdb2;
  border-radius: 10px;
  font-weight: 500;
  padding: 5px 15px;
  text-indent: -1em;
  padding-left: 2em;
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.1s ease-in-out;
}
.top-about__link[disabled] {
  cursor: unset !important;
}
@media screen and (max-width: 1000px) {
  .top-about__link {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 599px) {
  .top-about__link {
    position: unset;
    display: block;
    width: 49%;
    font-size: 3.5vw;
    text-indent: 0;
    padding: 5px 15px;
  }
}
.top-about__link.is-active {
  color: var(--white);
  background-color: var(--red);
  border: solid 5px var(--red);
}
.top-about__link::before {
  content: "";
  display: block;
  top: 50%;
  position: absolute;
  pointer-events: none;
  border: solid var(--black);
  --border-width: 1.5px;
}
@media screen and (max-width: 599px) {
  .top-about__link::before {
    content: none;
    --border-width: 0.5vw;
  }
}
@media screen and (min-width: 599px) {
  .top-about__link:hover {
    opacity: 1;
    color: var(--white);
    background-color: var(--red);
    border: solid 5px var(--red);
  }
}
.top-about__link:nth-child(1) {
  top: -7%;
  left: 34%;
}
.top-about__link:nth-child(1)::before {
  width: 47px;
  height: 195px;
  right: 100%;
  border-width: var(--border-width) 0 0 var(--border-width);
}
@media screen and (max-width: 1000px) {
  .top-about__link:nth-child(1)::before {
    width: 4vw;
    height: 23vw;
  }
}
.top-about__link:nth-child(2) {
  top: 3%;
  left: 55%;
}
.top-about__link:nth-child(2)::before {
  width: 38px;
  height: 145px;
  right: 100%;
  border-width: var(--border-width) 0 0 var(--border-width);
}
@media screen and (max-width: 1000px) {
  .top-about__link:nth-child(2)::before {
    width: 4vw;
    height: 14vw;
  }
}
.top-about__link:nth-child(3) {
  top: 16%;
  left: 78%;
}
.top-about__link:nth-child(3)::before {
  width: 70px;
  height: 150px;
  right: 100%;
  border-width: var(--border-width) 0 0 var(--border-width);
}
@media screen and (max-width: 1000px) {
  .top-about__link:nth-child(3)::before {
    width: 4vw;
    height: 24vw;
  }
}
.top-about__link:nth-child(4) {
  top: 77%;
  left: 84%;
}
.top-about__link:nth-child(4)::before {
  width: 30px;
  height: 195px;
  left: 100%;
  transform: scale(-1);
  transform-origin: top;
  border-width: var(--border-width) 0 0 var(--border-width);
}
@media screen and (max-width: 1000px) {
  .top-about__link:nth-child(4)::before {
    width: 3vw;
    height: 18vw;
  }
}
.top-about__link:nth-child(5) {
  bottom: 20%;
  left: -4%;
}
.top-about__link:nth-child(5)::before {
  width: 37px;
  height: 172px;
  left: 100%;
  transform: scale(-1);
  transform-origin: top;
  border-width: var(--border-width) 0 0 var(--border-width);
}
@media screen and (max-width: 1000px) {
  .top-about__link:nth-child(5)::before {
    width: 2vw;
    height: 18vw;
  }
}
.top-about__link:nth-child(6) {
  bottom: 6%;
  left: 17%;
}
.top-about__link:nth-child(6)::before {
  width: 160px;
  height: 215px;
  left: 100%;
  transform: scale(-1);
  transform-origin: top;
  border-width: var(--border-width) 0 0 var(--border-width);
}
@media screen and (max-width: 1000px) {
  .top-about__link:nth-child(6)::before {
    width: 15vw;
    height: 22vw;
  }
}
.top-about__link:nth-child(7) {
  bottom: -2%;
  left: 59%;
}
.top-about__link:nth-child(7)::before {
  width: 30px;
  height: 45px;
  left: 100%;
  transform: scale(-1);
  transform-origin: top;
  border-width: var(--border-width) 0 0 var(--border-width);
}
@media screen and (max-width: 1000px) {
  .top-about__link:nth-child(7)::before {
    width: 4vw;
    height: 6vw;
  }
}
.top-about__num-wrap {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.top-about__num-wrap.active {
  opacity: 1;
}
.top-about__num {
  position: absolute;
  font-weight: 600;
  width: 7vw;
  font-size: 3vw;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: var(--white);
  background-color: var(--red);
}
.top-about__num:nth-child(1) {
  bottom: 65%;
  left: 28%;
}
.top-about__num:nth-child(2) {
  bottom: 66%;
  left: 57%;
}
.top-about__num:nth-child(3) {
  bottom: 48%;
  left: 76%;
}
.top-about__num:nth-child(4) {
  bottom: 52%;
  left: 90%;
}
.top-about__num:nth-child(5) {
  bottom: 54%;
  left: 14%;
}
.top-about__num:nth-child(6) {
  bottom: 36%;
  left: 49%;
}
.top-about__num:nth-child(7) {
  bottom: 19%;
  left: 71%;
}
.top-about .text-deco {
  right: 0;
  bottom: -14em;
}
@media screen and (max-width: 599px) {
  .top-about .text-deco {
    bottom: -30vw;
    right: -4vw;
  }
}

/*-----------------top-concept--------------------*/
.top-concept {
  margin-top: min(18vw, 140px);
  --consept-brown: #988768;
}
.top-concept .f-brown {
  color: var(--consept-brown);
}
.top-concept .bg-brown {
  background-color: var(--consept-brown);
}
.top-concept__ttl {
  font-size: min(6.5vw, 48px);
  margin-bottom: min(3.8vw, 24px);
}
.top-concept__ttl span {
  padding-bottom: min(2.5vw, 7px);
  border-bottom: solid 1px var(--consept-brown);
}
@media screen and (max-width: 599px) {
  .top-concept__ttl span {
    padding-bottom: 0;
  }
}
.top-concept__img {
  width: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 1094px) {
  .top-concept__img {
    width: 24%;
  }
}
@media screen and (max-width: 599px) {
  .top-concept__img {
    width: 35vw;
    order: 1;
  }
}
.top-concept__lead {
  font-size: min(3.6vw, 18px);
  line-height: 2;
  margin-bottom: min(8vw, 64px);
}
.top-concept__flex {
  display: flex;
  gap: min(1vw, 19px);
  justify-content: space-between;
  margin-bottom: min(7vw, 40px);
}
@media screen and (max-width: 599px) {
  .top-concept__flex {
    flex-direction: column;
  }
}
.top-concept__flex:not(:last-child) {
  margin-bottom: min(8vw, 65px);
}
.top-concept__txt-wrap {
  width: 50%;
}
@media screen and (max-width: 599px) {
  .top-concept__txt-wrap {
    width: 100%;
    order: 2;
  }
}
.top-concept__txt-wrap.left {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .top-concept__txt-wrap.left {
    margin: 0;
  }
}
.top-concept__txt-wrap.right {
  margin-top: 50px;
}
@media screen and (max-width: 599px) {
  .top-concept__txt-wrap.right {
    margin: 0;
  }
}
.top-concept__label {
  display: inline-block;
  text-align: center;
  min-width: 100px;
  border-radius: 100px;
  padding: 2px 8px;
}
.top-concept__inner-ttl {
  font-size: min(4vw, 22px);
  line-height: 1.6;
  margin: min(3vw, 12px) 0 min(3.5vw, 20px);
  padding-bottom: min(3.2vw, 16px);
  position: relative;
}
.top-concept__inner-ttl::after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: var(--black);
  position: absolute;
  bottom: 0;
  right: -80px;
}
@media screen and (max-width: 599px) {
  .top-concept__inner-ttl::after {
    right: 0;
  }
}
.top-concept__inner-ttl.right::after {
  left: -70px;
  right: auto;
}
@media screen and (max-width: 599px) {
  .top-concept__inner-ttl.right::after {
    left: 0;
  }
}
.top-concept__list {
  font-size: min(3.6vw, 18px);
  line-height: 1.7;
}
.top-concept__list li {
  text-indent: -1.6em;
  padding-left: 2em;
}
.top-concept__list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--black);
  vertical-align: middle;
  margin-right: 10px;
}
.top-concept__btm-txt {
  font-size: min(4.5vw, 30px);
  padding: min(5vw, 30px) 0;
  background-color: #e8e3da;
}
/*# sourceMappingURL=top.css.map */