@charset "UTF-8";
html {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  list-style: none;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.pc {
  display: block;
}
@media screen and (max-width: 1023px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

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

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

body {
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.7);
  background-color: #fff;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.site-header .header-container {
  max-width: 1980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 16px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .site-header .header-container {
    padding: 10px;
  }
}
.site-header .site-branding {
  text-align: center;
  line-height: 1;
}
.site-header .site-branding a {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .site-header .site-branding a {
    font-size: 1.4rem;
  }
}
.site-header .site-branding a span {
  font-size: 1.2rem;
  color: #A00000;
}
@media screen and (max-width: 767px) {
  .site-header .site-branding a span {
    font-size: 1rem;
  }
}
.site-header .hamburger-menu {
  display: none;
  z-index: 1010;
  position: absolute;
  right: 20px;
  top: 57%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .site-header .hamburger-menu {
    display: block;
  }
}
.site-header .hamburger-menu .hamburger-btn {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.site-header .hamburger-menu .hamburger-btn span {
  display: block;
  position: absolute;
  height: 0.5px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.site-header .hamburger-menu .hamburger-btn span:nth-child(1) {
  top: 0px;
}
.site-header .hamburger-menu .hamburger-btn span:nth-child(2) {
  top: 10px;
}
.site-header .hamburger-menu .hamburger-btn span:nth-child(3) {
  top: 20px;
}
.site-header .hamburger-menu.active .hamburger-btn span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.site-header .hamburger-menu.active .hamburger-btn span:nth-child(2) {
  opacity: 0;
}
.site-header .hamburger-menu.active .hamburger-btn span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.site-header .site-navigation {
  position: relative;
}
@media screen and (max-width: 767px) {
  .site-header .site-navigation .main-menu-container {
    position: fixed;
    top: 0;
    right: -86vw;
    width: 86vw;
    height: 100vh;
    background-color: #fff;
    -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    overflow-y: auto;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 1008;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .site-header .site-navigation .main-menu-container.active {
    right: 0;
  }
}
.site-header .site-navigation .main-menu-container .p-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .site-header .site-navigation .main-menu-container .p-sp {
    font-size: 1.3rem;
    display: block;
  }
}
.site-header .site-navigation .sp-menu-overlay {
  display: none;
}
@media screen and (max-width: 767px) {
  .site-header .site-navigation .sp-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .site-header .site-navigation .sp-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
.site-header .site-navigation .main-menu-container .menu-link {
  text-decoration: none;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .site-header .site-navigation .main-menu-container .menu-link {
    display: block;
    padding: 5px 0;
    font-size: 1.8rem;
    font-weight: 500;
  }
}
.site-header .site-navigation .main-menu-container .menu-link:hover {
  color: #e74c3c;
}
.site-header .site-navigation .main-menu-container .menu-link:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.site-header .site-navigation .main-menu-container .menu-link.current {
  color: #e74c3c;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .site-header .site-navigation .main-menu-container .menu-link.current {
    color: #A00000;
  }
}
.site-header .site-navigation .main-menu-container .menu-link.current::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background-color: #e74c3c;
}
.site-header .site-navigation .main-menu-container .menu-link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e74c3c;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .site-header .site-navigation .main-menu-container .menu-link:after {
    display: none;
  }
}
.site-header .site-navigation .sp-menu-illustration {
  display: none;
}
@media screen and (max-width: 767px) {
  .site-header .site-navigation .sp-menu-illustration {
    display: block;
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
    width: 50vw;
    margin-top: 30px;
  }
  .site-header .site-navigation .sp-menu-illustration img {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
}
.site-header .site-navigation .main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .site-header .site-navigation .main-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.site-header .site-navigation .main-menu .menu-item {
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .site-header .site-navigation .main-menu .menu-item {
    margin: 0 0 20px;
    width: 100%;
    position: relative;
  }
  .site-header .site-navigation .main-menu .menu-item::after {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 70%;
    height: 1px;
    background-color: #e74c3c;
  }
}
.site-header .site-navigation .main-menu .menu-item .menu-link {
  text-decoration: none;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .site-header .site-navigation .main-menu .menu-item .menu-link {
    display: block;
    padding: 5px 0;
    font-size: 1.8rem;
    font-weight: 500;
  }
}
.site-header .site-navigation .main-menu .menu-item .menu-link:hover {
  color: #e74c3c;
}
.site-header .site-navigation .main-menu .menu-item .menu-link:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.site-header .site-navigation .main-menu .menu-item .menu-link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e74c3c;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .site-header .site-navigation .main-menu .menu-item .menu-link:after {
    display: none;
  }
}

.footer {
  background-color: #5c5c5c;
  color: #fff;
  padding-bottom: 0.5em;
}
.footer__wrap {
  max-width: 1000px;
  padding: 2.5em 1em;
  margin: 0 auto;
}
.footer .counpany-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .counpany-info {
    gap: 2.5em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.footer .counpany-info__name {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .footer .counpany-info__name {
    font-size: 2rem;
  }
}
.footer .counpany-info__list {
  line-height: 1.8;
}
.footer .counpany-info__list li {
  font-size: 1.4rem;
  font-weight: 300;
}
.footer .copyright {
  text-align: center;
  font-weight: 200;
}
.footer .copyright p {
  font-size: 1rem;
}

.parallax-bg {
  position: relative;
}
.parallax-bg::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-image: url("../assets/images/mv/mv.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .parallax-bg::before {
    background-image: url("../assets/images/mv/mv_sp.webp");
  }
}

.back-to-top {
  max-width: 1200px;
  text-align: end;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
  padding: 0 14px 10px;
  margin: 0 auto;
}
.back-to-top__outer {
  background-color: #fff;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top .back-to-top-link {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.back-to-top .back-to-top-link svg {
  width: 45px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.back-to-top .back-to-top-link svg circle {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.back-to-top .back-to-top-link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.back-to-top .back-to-top-link:hover svg circle {
  fill: #cb5d60;
}

@media (max-width: 768px) {
  .back-to-top .back-to-top-link svg {
    width: 40px;
  }
}
.scroll-down-sp {
  display: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #A00000;
  z-index: 10;
  font-size: 1rem;
  text-align: center;
  -webkit-animation: fadeInUp 0.5s ease-out forwards;
          animation: fadeInUp 0.5s ease-out forwards;
  top: 80%;
}
@media screen and (max-width: 767px) {
  .scroll-down-sp {
    display: block;
  }
}

.arrow-container {
  margin-bottom: 8px;
  height: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.scroll-text {
  opacity: 0;
  -webkit-animation: fadeInText 0.3s ease-out 0.5s forwards;
          animation: fadeInText 0.3s ease-out 0.5s forwards;
  font-size: 1rem;
}

.arrow-container {
  -webkit-animation: bounceArrow 1.5s ease-in-out 0.8s infinite;
          animation: bounceArrow 1.5s ease-in-out 0.8s infinite;
}

@-webkit-keyframes fadeInText {
  to {
    opacity: 1;
  }
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(20px);
            transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(20px);
            transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
@-webkit-keyframes bounceArrow {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
}
@keyframes bounceArrow {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
}
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.5rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.form-group .no-essential {
  padding-right: 53px;
}
.form-group p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1023px) {
  .form-group p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form-group p label {
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-size: 1.4rem;
}
@media screen and (max-width: 1023px) {
  .form-group p label {
    -webkit-box-pack: left;
    -webkit-justify-content: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25rem;
  font-size: 1.6rem;
  font-weight: 500;
  margin-right: 2rem;
  white-space: nowrap;
  margin-right: 64px;
  margin-bottom: 4px;
}

.required {
  display: inline-block;
  background-color: #A00000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 0.4rem;
  margin-left: 1rem;
  vertical-align: middle;
}

.form-control {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 1.2rem 1.5rem;
  font-size: 1.6rem;
  background-color: #D9D9D9;
  border: none !important;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.form-control:focus {
  border-color: #ff0707;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(160, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(160, 0, 0, 0.25);
  outline: none;
}
.form-control::-webkit-input-placeholder {
  color: #aaa;
}
.form-control::-moz-placeholder {
  color: #aaa;
}
.form-control:-ms-input-placeholder {
  color: #aaa;
}
.form-control::-ms-input-placeholder {
  color: #aaa;
}
.form-control::placeholder {
  color: #aaa;
}

.wpcf7-form {
  width: 100%;
}
.wpcf7-form span.wpcf7-form-control-wrap {
  display: block;
  width: 600px;
}
@media screen and (max-width: 1023px) {
  .wpcf7-form span.wpcf7-form-control-wrap {
    width: 100%;
  }
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
  width: 100% !important;
  background-color: #D9D9D9;
  border: none !important;
}

textarea.form-control {
  min-height: 15rem;
  resize: vertical;
  width: 100% !important;
}

.wpcf7-submit {
  display: block;
  width: 22%;
  margin: 6rem auto 0;
  padding: 8px;
  background-color: #1d1d1d;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.wpcf7-submit:hover {
  background-color: #6d0000;
}
.wpcf7-submit:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 0.3rem rgba(160, 0, 0, 0.3);
          box-shadow: 0 0 0 0.3rem rgba(160, 0, 0, 0.3);
}

.wpcf7-not-valid-tip {
  color: #A00000;
  font-size: 1.3rem;
  margin-top: 0.5rem;
  margin-left: 27rem;
  text-align: end;
}

.wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1rem 1.5rem;
  border-radius: 0.4rem;
  font-size: 1.5rem;
  text-align: center;
}

.wpcf7-not-valid-tip {
  margin-left: 0;
}

.wpcf7-submit {
  width: 200px;
}

.coffee-quality {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  z-index: 0;
}
.coffee-quality__content {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 8rem 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .coffee-quality__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.5em 1em 1em;
    -webkit-box-align: initial;
    -webkit-align-items: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}
.coffee-quality__content h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-right: 5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-align: center;
  font-size: 5rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .coffee-quality__content h2 {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    white-space: nowrap;
    margin-right: 0;
    text-align: start;
    margin-bottom: 1.5em;
    font-size: 3rem;
    letter-spacing: 0.2px;
  }
}
.coffee-quality__content h2 span {
  display: block;
  text-orientation: sideways;
  font-weight: 100;
}
.coffee-quality__content .text-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .coffee-quality__content .text-area {
    margin-bottom: 2em;
  }
}
.coffee-quality__content .text-area h3 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .coffee-quality__content .text-area h3 {
    font-size: 2.6rem;
    text-align: center;
  }
}
.coffee-quality__content .text-area p {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25em;
}
@media screen and (max-width: 1023px) {
  .coffee-quality__content .text-area p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .coffee-quality__content .text-area p {
    line-height: 1.6;
  }
}
.coffee-quality__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .coffee-quality__bg-video {
    display: none;
  }
}
.coffee-quality__bg-video video {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.coffee-quality .video-sp {
  display: none;
  padding-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .coffee-quality .video-sp {
    display: block;
  }
}
.coffee-quality .video-sp video {
  width: 100%;
}

.features {
  padding: 114px 0 9em;
  background-color: #d9d9d9;
}
@media screen and (max-width: 767px) {
  .features {
    padding-top: 5em;
    padding: 4em 0 6em;
  }
}
.features__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.features .card {
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 2.5rem 2rem;
  width: calc(33.333% - 24px);
  aspect-ratio: 1/1;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1023px) {
  .features .card {
    width: calc(50% - 18px);
  }
}
@media screen and (max-width: 767px) {
  .features .card {
    width: 100%;
  }
}
.features .card__title {
  font-size: 2rem;
  font-weight: 600;
  color: #B3AF54;
}
.features .card__icon {
  margin: 1.5rem auto;
  width: 100px;
  margin: 2em 0;
}
.features .card__description {
  font-size: 1.6rem;
  line-height: 1.6;
}

.mv {
  height: 65svh;
  position: relative;
}
.mv__wrap {
  text-align: center;
  max-width: 1000px;
  width: 95%;
  padding: 0 40px 40px 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #B3AF54;
  z-index: 10;
  position: absolute;
  top: 53%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .mv__wrap {
    padding: 0;
    top: 50%;
  }
}
.mv__headdinng h1 {
  font-weight: 400;
  margin-bottom: 20px;
  white-space: nowrap;
  font-size: 5.5rem;
}
@media screen and (max-width: 1023px) {
  .mv__headdinng h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__headdinng h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .mv__headdinng h1 span {
    font-size: 1.2rem;
  }
}
.mv__headdinng h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .mv__headdinng h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
}
.mv__keyword {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .mv__keyword {
    margin-bottom: 14px;
  }
}
.mv__keyword li {
  font-size: 1.6rem;
  color: #A00000;
  font-weight: 500;
  padding: 0 12px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__keyword li {
    font-size: 1rem;
  }
}
.mv__keyword li:not(:last-child):after {
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #A00000;
}

.concept {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(33%, rgb(255, 255, 255)), color-stop(80%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(bottom, rgb(255, 255, 255) 33%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to top, rgb(255, 255, 255) 33%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 1023px) {
  .concept {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(-5%, rgb(255, 255, 255)), color-stop(80%, rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0.01)));
    background: -webkit-linear-gradient(bottom, rgb(255, 255, 255) -5%, rgba(255, 255, 255, 0.7) 80%, rgba(255, 255, 255, 0.01) 100%);
    background: linear-gradient(to top, rgb(255, 255, 255) -5%, rgba(255, 255, 255, 0.7) 80%, rgba(255, 255, 255, 0.01) 100%);
  }
}
.concept__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  height: 75vh;
}
@media screen and (max-width: 1023px) {
  .concept__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .concept__wrap {
    height: 760px;
  }
}
.concept .concept__item {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .concept .concept__item {
    width: 100%;
    height: 100%;
  }
}
.concept .concept__item .text-area {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1023px) {
  .concept .concept__item .text-area {
    position: initial;
    -webkit-transform: initial;
            transform: initial;
    margin-left: 2em;
  }
}
@media screen and (max-width: 767px) {
  .concept .concept__item .text-area {
    margin: 4em 0 0 1em;
  }
}
.concept .concept__item .text-area .title {
  font-size: 2.4rem;
  margin-bottom: 0.75em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .concept .concept__item .text-area .title {
    font-size: 1.8rem;
  }
}
.concept .concept__item .text-area p {
  font-size: 2.2rem;
  line-height: 2.5;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .concept .concept__item .text-area p {
    font-size: 1.6rem;
  }
}
.concept .concept__item .image-area {
  position: relative;
  height: 100%;
  width: 100%;
}
.concept .concept__item .image-area img {
  position: absolute;
  border-radius: 4px;
  -webkit-box-shadow: 6px 5px 9px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 6px 5px 9px 0px rgba(0, 0, 0, 0.25);
}
.concept .concept__item .image-area .image-a {
  width: 350px;
  right: 5%;
  top: 9%;
}
@media screen and (max-width: 1023px) {
  .concept .concept__item .image-area .image-a {
    top: -13%;
  }
}
@media screen and (max-width: 767px) {
  .concept .concept__item .image-area .image-a {
    width: 300px;
    top: auto;
    bottom: 5%;
    right: auto;
    left: 0;
  }
}
.concept .concept__item .image-area .image-b {
  width: 292px;
  top: 36%;
  left: 5%;
}
@media screen and (max-width: 1023px) {
  .concept .concept__item .image-area .image-b {
    top: 5%;
  }
}
@media screen and (max-width: 767px) {
  .concept .concept__item .image-area .image-b {
    width: 200px;
    top: -18%;
    left: 3%;
  }
}
.concept .concept__item .image-area .image-c {
  width: 230px;
  top: 61%;
  right: 25%;
}
@media screen and (max-width: 1023px) {
  .concept .concept__item .image-area .image-c {
    top: 53%;
  }
}
@media screen and (max-width: 767px) {
  .concept .concept__item .image-area .image-c {
    right: 0;
    top: 9%;
  }
}

.ourservice {
  background-color: #fff;
}
.ourservice__wrap {
  max-width: 1200px;
  padding: 7em 0 9em;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .ourservice__wrap {
    padding: 4em 1em 5em;
  }
}
.ourservice__conatiner {
  margin-top: 5.5em;
}
@media screen and (max-width: 767px) {
  .ourservice__conatiner {
    margin-top: 0;
  }
}
.ourservice__conatiner .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 8rem;
  gap: 60px;
}
@media screen and (max-width: 1023px) {
  .ourservice__conatiner .item {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .ourservice__conatiner .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    position: relative;
    margin-bottom: 2.5em;
  }
}
.ourservice__conatiner .item:last-child {
  margin-bottom: 0;
}
.ourservice__conatiner .item__text-area {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .ourservice__conatiner .item__text-area {
    width: 100%;
  }
}
.ourservice__conatiner .item__text-area .title {
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #A00000;
  position: relative;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .ourservice__conatiner .item__text-area .title {
    font-size: 2.4rem;
    position: absolute;
    top: 8px;
    left: 10px;
    background-color: #fff;
    padding: 0 0.5em;
  }
}
.ourservice__conatiner .item__text-area .description {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.7px;
}
.ourservice__conatiner .item img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .ourservice__conatiner .item img {
    width: 100%;
  }
}

.contact {
  padding: 9rem 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 5em 0;
  }
}
.contact__wrap {
  margin: 0 auto;
  padding: 0 2rem;
}
.contact__text {
  text-align: center;
  margin-bottom: 4em;
  line-height: 1.6;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .contact__text {
    margin-bottom: 3em;
    line-height: 1.6;
    letter-spacing: 1.4px;
  }
}

.about-detail__mv .img-title {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 78px 0 100px;
}
@media screen and (max-width: 767px) {
  .about-detail__mv .img-title {
    margin: 69px 0 50px;
  }
}
.about-detail__mv .img-title .title {
  position: absolute;
  right: calc(20% - 95px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  letter-spacing: 8px;
  bottom: -48px;
}
@media screen and (max-width: 767px) {
  .about-detail__mv .img-title .title {
    letter-spacing: 4px;
    bottom: -80px;
  }
}
.about-detail__mv .img-title .title h1 {
  margin: 0;
  padding: 20px 30px;
  font-size: 5rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .about-detail__mv .img-title .title h1 {
    font-size: 3.2rem;
  }
}
.about-detail__mv .img-title .img {
  width: 80%;
}
.about-detail__mv .img-title .img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .about-detail__mv .img-title .img {
    display: none;
  }
}
.about-detail__mv .img-title .img-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .about-detail__mv .img-title .img-sp {
    display: block;
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .about-detail__mv .img-title .img-sp img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.about {
  max-width: 1200px;
  margin: 0 auto 150px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about {
    margin: 0 auto 40px;
  }
}
.about__headding {
  margin-left: 7%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1023px) {
  .about__headding {
    margin-left: 20px;
  }
}
.about__headding h2 {
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .about__headding h2 {
    font-size: 2.8rem;
  }
}
.about__headding p {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .about__headding p {
    font-size: 2rem;
  }
}
.about__text {
  position: absolute;
  left: 10%;
  max-width: 800px;
}
@media screen and (max-width: 1023px) {
  .about__text {
    left: 7%;
  }
}
@media screen and (max-width: 1023px) {
  .about__text {
    left: 20px;
  }
}
.about__text p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .about__text p {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .about__text p {
    font-size: 1.4rem;
    margin-right: 20px;
  }
}
.about__detail {
  max-width: 900px;
  margin: 150px auto 0;
  background: #fff;
  padding: 65px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .about__detail {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    margin: 150px 15px 0;
  }
}
.about__detail .info__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-bottom: 30px;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about__detail .info__item {
    display: block;
    padding-bottom: 16px;
  }
}
.about__detail .info__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.about__detail .info__item::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #dcdcdc;
}
@media screen and (max-width: 767px) {
  .about__detail .info__item::before {
    display: none;
  }
}
.about__detail .info__item::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 19%;
  height: 2.5px;
  background: #A00000;
}
@media screen and (max-width: 767px) {
  .about__detail .info__item::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .about__detail .info__item .ul-business-content .li-business-content::before {
    position: absolute;
    content: "・";
  }
}
@media screen and (max-width: 767px) {
  .about__detail .info__item .ul-business-content span {
    font-size: 1.4rem;
    display: block;
    padding-left: 19px;
  }
}
.about__detail .info__item .ul-business-content .content {
  padding-left: 38px;
}
@media screen and (max-width: 767px) {
  .about__detail .info__item .ul-business-content .content {
    padding-left: 19px;
  }
}
.about__detail .info__item .ul-business-content .third {
  padding-left: 31px;
}
@media screen and (max-width: 767px) {
  .about__detail .info__item .ul-business-content .third {
    padding-left: 19px;
  }
}
.about__detail .info__item .ul-business-content .forth {
  padding-left: 47px;
}
@media screen and (max-width: 767px) {
  .about__detail .info__item .ul-business-content .forth {
    padding-left: 19px;
  }
}
.about__detail .info__heading {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 184px;
      -ms-flex: 0 0 184px;
          flex: 0 0 184px;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  .about__detail .info__heading {
    background-color: #A00000;
    color: #fff;
    padding: 4px 10px;
  }
}
.about__detail .info__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  margin: 0;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .about__detail .info__content {
    font-size: 1.4rem;
    padding: 8px 0 0 8px;
  }
}
@media screen and (max-width: 767px) {
  .about__detail .info .content-client p {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.about__detail .info .letter-spacing {
  letter-spacing: -0.5px;
}
.about__detail .googlemap {
  margin-top: 1rem;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  /* 比率を4:3に固定 */
}
.about__detail .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about__detail .address {
  display: block;
  padding-bottom: 34px;
}
.about__detail .address .sentence {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .about__detail .address .sentence {
    display: block;
  }
}
.about__detail .address .sentence .heading-address {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 120px;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  padding-right: 1rem;
  position: relative;
}
.about__detail .address .sentence .content-address {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__detail .address .sentence .content-address {
    font-size: 1.4rem;
  }
}

.catering-cases {
  max-width: 1200px;
  margin: 0 auto 170px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .catering-cases {
    margin: 0 auto;
  }
}
.catering-cases__headding {
  margin: 0 0 40px 7%;
}
@media screen and (max-width: 1023px) {
  .catering-cases__headding {
    margin: 0 0 40px 20px;
  }
}
.catering-cases__headding h2 {
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .catering-cases__headding h2 {
    font-size: 2.8rem;
  }
}
.catering-cases__headding .subtitle {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .catering-cases__headding .subtitle {
    font-size: 1.8rem;
  }
}
.catering-cases__text {
  max-width: 800px;
  position: absolute;
  left: 10%;
}
@media screen and (max-width: 1023px) {
  .catering-cases__text {
    left: 20px;
  }
}
.catering-cases__text p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .catering-cases__text p {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .catering-cases__text p {
    font-size: 1.4rem;
  }
}
.catering-cases__content .br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .catering-cases__content .br-sp {
    display: block;
  }
}
.catering-cases .title-left {
  max-width: 1200px;
  margin: 0 20px 80px;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .catering-cases .title-left {
    margin: 0 20px 40px;
  }
}
.catering-cases .title-left .title {
  position: absolute;
  left: 0;
  width: calc(50% + 44px);
  margin-top: 12px;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-left .title {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }
}
.catering-cases .title-left .title h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  background-color: #A00000;
  color: white;
  padding: 8px 0 8px 16px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-left .title h3 {
    background-color: transparent;
    text-align: left;
    padding-bottom: 0;
    color: initial;
  }
  .catering-cases .title-left .title h3::before {
    content: "";
    position: absolute;
    height: 155%;
    width: 4px;
    background-color: #B3AF54;
    left: 0;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .catering-cases .title-left .title h3::before {
    height: 122%;
  }
}
@media screen and (max-width: 767px) {
  .catering-cases .title-left .title h3 {
    font-size: 1.8rem;
  }
}
.catering-cases .title-left .title p {
  font-size: 1.6rem;
  margin-top: 8px;
  margin-left: 13px;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-left .title p {
    text-align: end;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .catering-cases .title-left .title p {
    font-size: 1.2rem;
    margin-top: -4px;
  }
}
.catering-cases .title-left .img-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-left .img-text {
    display: block;
  }
}
.catering-cases .title-left .img-text img {
  width: calc(50% - 15px);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-left .img-text img {
    width: 100%;
  }
}
.catering-cases .title-left .img-text p {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 100px;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-left .img-text p {
    margin-top: 20px;
  }
}
.catering-cases .title-right {
  max-width: 1200px;
  margin: 150px 20px 80px;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .catering-cases .title-right {
    margin: 150px 20px 40px;
  }
}
.catering-cases .title-right .title {
  position: absolute;
  right: 0;
  width: calc(50% + 43px);
  margin-top: 12px;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-right .title {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }
}
.catering-cases .title-right .title h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  background-color: #A00000;
  color: white;
  padding: 8px 0 8px 16px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-right .title h3 {
    background-color: transparent;
    text-align: left;
    padding-bottom: 0;
    color: initial;
  }
  .catering-cases .title-right .title h3::before {
    content: "";
    position: absolute;
    height: 155%;
    width: 4px;
    background-color: #B3AF54;
    left: 0;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .catering-cases .title-right .title h3::before {
    height: 122%;
  }
}
.catering-cases .title-right .title p {
  font-size: 1.6rem;
  margin-top: 8px;
  margin-left: 46px;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-right .title p {
    text-align: end;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .catering-cases .title-right .title p {
    font-size: 1.2rem;
    margin-top: -4px;
  }
}
.catering-cases .title-right .img-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-right .img-text {
    display: block;
  }
}
.catering-cases .title-right .img-text img {
  width: calc(50% - 15px);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-right .img-text img {
    width: 100%;
  }
}
.catering-cases .title-right .img-text p {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 100px;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .catering-cases .title-right .img-text p {
    margin-top: 20px;
  }
}
.catering-cases .third {
  margin-top: 0;
}

.headding {
  text-align: center;
  font-size: 5rem;
  margin-bottom: 6rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .headding {
    margin-bottom: 4.5rem;
    font-size: 3.6rem;
    letter-spacing: 1.6px;
  }
}
.headding .sub-title {
  display: block;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .headding .sub-title {
    font-size: 1.2rem;
  }
}

.js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.js-fade-up.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}