@charset "UTF-8";
/*
Theme Name: Calidus Renewal
Theme URL: テーマのサイトのURI
Description: Calidusのホームページです。
Author: Calidus
*/

:root {
  --font-color-100: rgba(255, 255, 255, 0.50);
  --font-color-200: #333333;
}

/*===============================================
●style.css  画面の横幅が769px以上
===============================================*/
@media screen and (max-width: 768px) {
  .for_sp {
    display: none;
  }
}

/*--------------------------------------------
		サイト基本設定
--------------------------------------------*/
html {
  font-size: 62.5%;
  margin-top: 0px !important;
  scroll-padding-top: 70px;
  scroll-behavior: smooth;
}

body {
  height: auto;
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  line-height: 1.5;
}

a {
  color: #DD5519;
  font-weight: 700;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  color: #AE4113;
}

img {
  width: 100%;
  height: auto;
}

section {
  padding: 120px 0;
  background: #EFEFEF;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}

h2 {
  font-size: 6rem;
  color: #DD5519;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 40px;
  text-align: left;
}

h2 span {
  font-size: 1.6rem;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}

h3 {
  font-size: 3.2rem;
  font-weight: 700;
}

h4 {
  font-size: 2.4rem;
}

h4 span {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  margin-right: 4px;
}

p {
  margin-bottom: 30px;
}

.btn {
  border-radius: 50px;
  display: block;
  padding: 6px 14px;
  color: #fff;
  font-size: 1.6rem;
  border: 2px solid var(--base-white, #fff);
  background: var(--base-accent, #e4572e);
  box-shadow: 0px 3px 3px 0px rgba(228, 87, 46, 0.19);
}

.btn:hover {
  background-color: #AE4113;
  color: #fff;
}

.btn:active {
  background-color: #AE4113;
  box-shadow: none;
  margin-top: 0.3em;
}

.btn:after {
  content: url(img/arrow_w.svg);
  margin-left: 4px;
  vertical-align: -2px;
}

a.sub_btn {
  background-color: #FBCCB7;
  color: #DD5519;
  display: block;
  text-decoration: none;
  margin: 0 auto;
  width: 200px;
  padding: 14px;
  text-align: center;
}

a.sub_btn:hover {
  color: #fff;
  background-color: #DD5519;
}

a.sub_btn:after {
  content: url(img/arrow.png);
}

a.sub_btn:hover:after {
  content: url(img/arrow_w.svg);
}

table {
  border-collapse: separate;
  border-spacing: 1px 0;
}

table tr th {
  font-weight: 700;
  color: #DD5519;
  padding: 10px 14px;
  border-bottom: 1px solid #DD5519;
  text-align: left;
}

table tr:first-child th {
  border-top: 1px solid #DD5519;
}

table tr td {
  padding: 10px 14px;
  border-bottom: 1px solid #bbb;
  text-align: left;
  display: inline-block;
  max-width: 524px;
  width: 100%;
  box-sizing: border-box;
}

table tr:first-child td {
  border-top: 1px solid #bbb;
}

.ttlArea {
  background: #EFEFEF;
  background-image: url(img/title_bg.svg);
  background-repeat: no-repeat;
  background-position: right 0px top 45px;
  padding: 60px 0;
  text-align: left;
}

.ttlArea h2 {
  margin-bottom: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  font-family: "Noto Sans JP";
  box-sizing: border-box;
  max-width: 1320px;
  padding: 0 30px;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  border-radius: 40px;
  background: rgba(239, 239, 239, 0.50);
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.05), -5px -5px 15px 0 rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(10px);
}

@media screen and (max-width: 1360px) {
  .header {
    left: 20px;
    right: 20px;
    transform: none;
    width: auto;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo {
  display: block;
  width: 140px;
}

.header__logo img {
  width: 100%;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav-link {
  display: flex;
  gap: 6px;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
}

.header__nav-item img {
  padding-top: 2px;
  width: 6px;
  height: 9px;
}


.header__nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border-radius: 40px;
  border: 1px solid #FFF;
  background: #1A1A1A;
  color: #ffffff;
  width: 193px;
  text-align: center;
  text-decoration: none;
  padding: 12px 0;
  transition: background 0.5s ease;
}

.header__nav-cta span {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
}

.header__hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 5px;
}


@media screen and (max-width: 1024px) {
  .header {
    height: 60px;
    border-radius: 30px;
    padding: 0 20px;
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .header__inner {
    height: 60px;
    justify-content: flex-end;
    gap: 12px;
  }

  .header__logo {
    width: 98px;
    position: absolute;
    top: 16px;
    left: 20px;
  }

  .header__nav-item.header__nav-item-pc {
    display: none;
  }

  .header__nav-list {}

  .header__nav-cta {
    width: 132px;
    padding: 10px 0;
  }

  .header__nav-cta span {
    font-size: 12px;
  }

  .header__hamburger {
    display: block;
  }
}

.sp-drawer {
  font-family: "Noto Sans JP";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #EFEFEF;
  display: block;
  opacity: 0;
  z-index: -100;
  transition: all 0.3s ease;

  &.is-active {
    z-index: 1000;
    opacity: 1;
  }
}

.sp-drawer__inner {
  width: 168px;
  margin: 32px auto 88px;
}

.sp-drawer__menu {
  padding: 8px;
  text-align: right;
  margin: 20px 32px 0 auto;
  display: block;
  width: 52px;
  height: 52px;
  outline: none;
  background: transparent;
  border: none;
}

.sp-drawer__logo {
  display: block;
  margin: 0 auto 72px;
  width: 168px;
}

.sp-drawer__logo-link {
  text-decoration: none;
}

.sp-drawer__logo-link:hover {
  opacity: 0.75;
}

.sp-drawer__list {}

.sp-drawer__list li {
  margin: 40px 0;
  text-align: left;
}

.sp-drawer__list a {
  text-decoration: none;
  color: #1A1A1A;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  /* 177.778% */
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  font-family: "Noto Sans JP";
  background: #333333;
  padding: 56px 0 24px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer__logo {
  width: 200px;
}

.footer__logo img {
  width: 100%;
}

.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 880px;
  padding: 24px 16px;
  width: 100%;
  border-radius: 70px;
  background: #333;
  box-shadow: -5px -5px 20px 0 rgba(255, 255, 255, 0.05), 5px 5px 20px 0 rgba(0, 0, 0, 0.25);
}

.footer__nav a {
  text-decoration: none;
  font-weight: 400;
}

.footer__nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px
}

.footer__nav-link {
  color: #FFF;
  font-size: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__nav-link img {
  width: 6px;
}

.footer__nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 193px;
  height: 48px;
  border-radius: 40px;
  background: #1A1A1A;
  color: #FFF;
  font-size: 16px;
}

.footer__nav-cta-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.footer__copy {
  font-family: var(--font-en);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {

  /* Footer */
  .footer {
    padding: 40px 16px 20px;
  }

  .footer__nav {
    width: 100%;
    max-width: 240px;
    height: 237px;
    height: auto;
    padding: 30px;
  }

  .footer__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer__nav a {
    text-align: left;
  }


  .footer__logo {
    width: 160px;
  }
}


/**************************************************
* TOP ー　温蔵式自販機による新しい食体験
***************************************************/

.experience {
  position: relative;
  background: #EFEFEF url(./img/bg_curve_02.png) top / 3000px auto no-repeat;
  padding: 400px 0 60px;
}

.experience .wide-inner {
  position: relative;
}

.experience__ttl {
  text-align: right;
  font-size: 42px;
  color: #fff;
}

.experience__ttl span {
  display: block;
  color: var(--font-color-100);
}

.experience__list {
  display: flex;
  gap: 40px;
}

.experience__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.experience__img {
  overflow: hidden;
  border-radius: 20px;
}

.experience__item-ttl {
  color: #1A1A1A;
  font-size: 24px;
}

.experience__item-ttl span {
  color: #DC5518;
  width: 40px;
  height: 40px;
  display: inline-block;
  background: #EFEFEF;
  box-shadow: -2px -2px 6px #ffffff, 1px -1px 6px #999999;
  border-radius: 20px;
  text-align: center;
  margin-right: 16px;
  fill: #EFEFEF;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.05)) drop-shadow(-6px -6px 10px rgba(255, 255, 255, 0.80));
}

.experience__item-text {
  color: #1A1A1A;
  font-size: 16px;
}

.experience__sp-bg {
  display: none;
  width: 880px;
  height: 380px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  border-radius: 0 140px 0 0;
  background: var(--_, linear-gradient(90deg, #DC5618 0%, #FFB500 100%));
}

.experience__sp-only-logo {
  display: none;
}

@media screen and (max-width: 768px) {
  .experience {
    overflow-x: hidden;
    background: none;
    padding: 40px 0 128px;
    background: #EFEFEF url(./img/experience_sp_bg.png) 10px bottom / 452px auto no-repeat;
  }

  .experience__sp-only-logo {
    display: block;
    margin-bottom: 16px;
  }

  .experience__ttl {
    text-align: left;
    font-size: 32px;
  }


  .experience__list {
    flex-direction: column;
    align-items: center;
  }

  .experience__sp-bg {
    display: block;
  }

}


/**************************************************
* TOP ー　温蔵式自動販売機の主要スペック
***************************************************/

.mashine-spec {
  padding: 200px 0 60px;
  background: #EFEFEF url(./img/bg_spec.png) top center/ 3000px auto no-repeat;
}

.mashine-spec__ttl {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 8px;
}

.mashine-spec__en {
  margin: 0;
}

.mashine-spec__contents {
  margin-top: 80px;
  display: flex;
  gap: 20px;
}

.mashine-spec__list {
  width: 65%;
  padding: 52px;
  border-radius: 20px;
  background: #333;
  box-shadow: -5px -5px 20px 0 rgba(255, 255, 255, 0.05), 5px 5px 20px 0 rgba(0, 0, 0, 0.25);
}

.mashine-spec__list--inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 4%;
}


.mashine-spec__item {
  flex-basis: 48%;
}

.mashine-spec__item h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mashine-spec__item-img {
  width: 20px;
  height: 20px;
}

.mashine-spec__item-img img {
  width: 20px;
}

.mashine-spec__item p {
  color: #ffffff;
  margin: 0;
}

.mashine-spec__img {
  width: 35%;
  position: relative;
}

.mashine-spec__img img {
  position: absolute;
  top: -20px;
  z-index: 1;
  max-width: 340px;
}


@media screen and (max-width: 768px) {

  .mashine-spec {
    padding: 60px 0;
    background: #333333;
    border-top-right-radius: 120px;
    /* background: #EFEFEF url(./img/bg_spec.png) top center/ 3000px auto no-repeat; */
  }

  .mashine-spec__ttl {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 41.6px */
  }

  .mashine-spec__contents {
    margin-top: 28px;
    flex-direction: column;
  }

  .mashine-spec__list--inner {
    flex-direction: column;
    gap: 32px 0;
  }

  .mashine-spec__list {
    width: auto;
    border-radius: 20px;
    padding: 20px;
  }

  .mashine-spec__item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .mashine-spec__item p {
    font-size: 14px;
    margin: 0;
  }


  .mashine-spec__img {
    width: auto;
    text-align: center;
  }

  .mashine-spec__img img {
    position: static;
  }
}

/**************************************************
* 導入事例・実績
***************************************************/

.case-study {
  padding: 120px 0 100px;
  background: #ffffff;
}

.case-study__slide-list {}

.case-study__slide {
  opacity: 0.6;
  padding: 16px;
  transition: all 0.1s ease;
}

.case-study__slide.is-active {
  opacity: 1;
}

.case-study__slide-inner {
  display: flex;
  flex-direction: row-reverse;
  border-radius: 50px;
}


.case-study__slide.is-active .case-study__slide-inner {
  box-shadow: 6px 6px 18px 0 rgba(255, 182, 0, 0.35);
  transition: box-shadow 0.3s ease-in-out;
}

.case-study__img {
  padding: 20px 20px 20px 0;
  width: 48%;
}

.case-study__cnt {
  width: 52%;
  padding: 20px 64px;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

.case-study__cnt-ttl {
  display: flex;
  align-items: center;
  gap: 16px;
}

.case-study__cnt-ttl p {
  margin: 0;
  padding: 4px 8px;
  font-size: 10px;
  color: #ffffff;
  background: #000000;
  flex-shrink: 0;
  text-align: center;
}

.case-study__cnt-ttl h3 {
  margin: 0;
  text-align: left;
  font-size: 24px;
}

.case-study__cnt-product {
  margin: 0;
  text-align: left;
}

.case-study__cnt-box {
  background: #F5F5F5;
  padding: 20px;
}

.case-study__cnt-box h4 {
  text-align: left;
  margin-bottom: 8px;
}

.case-study__cnt-box p {
  text-align: left;
  margin: 0;
}

.case-study__challenge-ttl {
  color: #1D92FF;
}

.case-study__result-ttl {
  color: #DC5817;
}

.case-study__slide-pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}

.case-study__slide-pagination-wrap button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

.case-study__slide-pagination-wrap .prev,
.case-study__slide-pagination-wrap .next {
  width: 79px;
  height: 79px;
  border-radius: 50%;
  cursor: pointer;
}

.case-study__slide-pagination-wrap .prev svg,
.case-study__slide-pagination-wrap .next svg {
  width: 100%;
  height: 100%;
}


.case-study__slide-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.case-study__slide-pagination-wrap .case-study__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F2F2F2;
  border: none;
}

.case-study__dot.is-active {
  background: linear-gradient(90deg, #DC5518 0%, #FFB600 100%);
  cursor: pointer;
}

@media screen and (max-width: 768px) {

  .case-study {
    padding: 56px 0 48px;
  }

  .case-study__slide-inner {
    flex-direction: column-reverse;
    align-items: center;
    padding: 20px;
    box-shadow: 4px 4px 12px 0 rgba(255, 182, 0, 0.35);
  }

  .case-study__img {
    padding: 0;
    width: 100%;
  }

  .case-study__cnt {
    padding: 0;
    width: 100%;
  }

  .case-study__cnt-ttl {}

  .case-study__slide-pagination-wrap .prev,
  .case-study__slide-pagination-wrap .next {
    width: 60px;
    height: 60px;
  }

}


/**************************************************
* 「食の生産者」と「現地のニーズ」が繋がる
***************************************************/

.connecting-food {
  padding: 100px 0 140px;
  border-top-left-radius: 140px;
  border-top-right-radius: 140px;
  background: #EFEFEF url(./img/connecting-food_bg.png) bottom / 3346px auto no-repeat;
}

.connecting-food__ttl {
  text-align: center;
  font-size: 42px;
  color: #000000;
  margin-bottom: 24px;
}

.connecting-food__en {
  text-align: center;
}

.connecting-food__discription {
  text-align: center;
  font-size: 16px;
  color: #000000;
}

.connecting-food__list {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  justify-content: center;
}

.connecting-food__item {
  box-shadow: -2px -2px 6px #ffffff, 1px -1px 6px #999999;
  padding: 36px 24px;
  border-radius: 20px;
  text-align: center;
  max-width: 412px;
  background: #EFEFEF;
}

.connecting-food__item-left {
  background: #EFEFEF url(./img/bg_left_arrow.png) right center/ auto 88px no-repeat;
}

.connecting-food__item-right {
  background: #EFEFEF url(./img/bg_right_arrow.png) left center/ auto 88px no-repeat;
}

.connecting-food__item-center {
  width: 230px;
}

.connecting-food__item--ttl {
  font-size: 22px;
  background: linear-gradient(90deg, #DC5518 0%, #FFB600 100%);
  padding: 10px 0;
  color: #ffffff;
  font-weight: 700;
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
  margin: 0 auto;
}

.connecting-food__item--text {
  font-size: 16px;
  margin: 28px 0;
  font-weight: 700;
}

.connecting-food__item--text span {
  color: #1D92FF;
}

.connecting-food__item--btn {
  position: relative;
  z-index: 0;
  display: block;
  max-width: 320px;
  box-sizing: border-box;
  border-radius: 40px;
  background: #FFF;
  text-decoration: none;
  margin: 0 auto;
  overflow: hidden;
}

.connecting-food__item--btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #DC5518 0%, #FFB600 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.connecting-food__item--btn:hover::before {
  opacity: 1;
}

.connecting-food__item--btn-inner {
  padding: 16px 46px;
  position: relative;
  z-index: 10;
  background: transparent;
}

.connecting-food__item--btn:hover .connecting-food__item--btn--text {
  color: #ffff;
}

.connecting-food__item--btn--text {
  color: #1A1A1A;
  font-size: 18px;
  font-style: normal;
}

.connecting-food__item--btn--arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.connecting-food__item--btn--arrow,
.connecting-food__item--btn--arrow svg {
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 768px) {

  .connecting-food__ttl {
    font-size: 28px;
  }

  .connecting-food {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding: 60px 0 120px;
    background: #EFEFEF url(./img/connecting-food_bg.png) bottom / 1861px auto no-repeat;
  }

  .connecting-food__list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .connecting-food__item {
    padding: 24px 16px;
  }

  .connecting-food__item-left {
    order: 2;
  }

  .connecting-food__item-right {
    order: 3;
  }

  .connecting-food__item-center {
    order: 1;
  }

  .connecting-food__item--ttl {
    font-size: 16px;
    max-width: 240px;
    padding: 8px 0;
  }

  .connecting-food__item--text {
    font-size: 14px;
    margin: 20px 0;
  }

  .connecting-food__item--btn {
    max-width: 240px;
    border-radius: 23px;
  }

  .connecting-food__item--btn-inner {
    padding: 0;
    padding: 12px 12px;
  }

  .connecting-food__item--btn--text {
    font-size: 14px;
  }

  .connecting-food__item--btn--arrow {
    right: 14px;
  }

  .connecting-food__item--btn--arrow,
  .connecting-food__item--btn--arrow svg {
    width: 20px;
    height: 20px;
  }

  .connecting-food__item-left,
  .connecting-food__item-right {
    background: none;
  }
}




/* News：最新記事 */
#news_new {
  padding: 100px 0 0;
}

#news_new .new {
  background: #fff;
  border-radius: 20px;
  padding: 14px 20px;
  max-width: 730px;
  box-sizing: border-box;
  margin: 0 auto;
}

#news_new .new .date {
  margin-bottom: 4px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #333;
  margin-bottom: 10px;
}

#news_new .new .date span {
  color: #DD5519;
  font-size: 1.4rem;
  background: #FBE7DE;
  border-radius: 30px;
  padding: 6px 14px;
  margin-left: 10px;
}

#news_new .txtArea {
  margin-bottom: 0;
}

#news_new .txtArea a {
  text-decoration: none;
}



/* Contact：お問い合わせ */
#contact {
  background: #DD5519;
  background-image: url(img/contact_bg.svg);
  background-repeat: no-repeat;
  background-position: left 0px top 400px;
}

#contact .inner {
  position: relative;
}

#contact .contentsArea {
  padding: 60px 12%;
  border-radius: 20px;
  background: #fff;
  max-width: 885px;
  margin: 0 auto;
  box-sizing: border-box;
}

#contact .inner h2 {
  color: #727171;
  margin-bottom: 20px;
}

#contact .contact_txt {
  position: absolute;
  bottom: -123px;
  right: 84px;
  max-width: 685px;
}


/* ==========================================================================
   Company
   ========================================================================== */
.company {
  background: #EFEFEF;
  padding: 80px 0;
}

.company__columns {
  display: flex;
  gap: 80px;
}

.company__column {
  flex-basis: 50%;
}

.company__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.company__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: -4px -4px 12px rgba(255, 255, 255, 1), 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.company__icon img {
  width: 24px;
  height: 24px;
}

.company__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.company__list {
  display: flex;
  flex-direction: column;
}

.company__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #cccccc;
}

.company__th {
  font-size: 13px;
  font-weight: 700;
  color: #DD5519;
  padding-top: 2px;
}

.company__td {
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.7;
}

.company__td a {
  color: var(--color-blue);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .company__columns {
    flex-direction: column;
  }
}




/*お問い合わせフォーム*/
#contact form label {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 20px;
  display: inline-block;
}

#contact p {
  margin-bottom: 0px;
}

#contact span.option {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2.1rem;
  background-color: #EFEFEF;
  padding: 0.2rem 0.3rem;
  color: #727171;
  border-radius: 0.5rem;
  margin-left: 0.5rem;

}

#contact span.require {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2.1rem;
  padding: 0.2rem 0.3rem;
  background-color: #DD5519;
  color: #fff;
  border-radius: 0.5rem;
  margin-left: 0.5rem;
}

#contact input {
  width: 100%;
  height: 40px;
  border: 1px solid #C0C0C0;
  border-radius: 0.5rem;
  margin-top: 0.85rem;
  padding-left: 1rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

#contact .small {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: #727171;
  margin-bottom: 8px;
}

#contact .name {
  display: flex;
  justify-content: space-between;
}

#contact .name .name_sei,
#contact .name .name_mei {
  width: 48%;
}

#contact input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  margin: 0rem 0.8rem 0rem 0rem;
}

#contact .checkout label span {
  font-size: 1.6rem;
  font-weight: normal;
  margin-right: 20px;
}

#contact .checkout label {
  margin-top: 0;
}

.business_item p {
  margin-bottom: 0 !important;
}

#contact textarea {
  width: 100%;
  height: 13rem;
  border: 1px solid #C0C0C0;
  border-radius: 0.5rem;
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  padding: 1rem;
  font-weight: normal;
  font-family: 'Noto Sans JP';
  color: #333;
}

#contact .privacy_policy {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

#contact .privacy_policy input {
  width: 2.2rem;
  height: 2.2rem;
  margin: 0rem 0.8rem 0rem 0rem;
}

#contact .privacy_policy label span {
  font-weight: 700;
  color: #5bb129;
  text-decoration: underline;
}

#contact .privacy_policy p {
  display: inline;
}

#contact .send_button {
  text-align: center;
}

#contact .send_button input {
  width: 22rem;
  height: 6rem;
  border-radius: 5rem;
  background-color: #DD5519;
  color: white;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.88rem;
  position: relative;
  border: 2px solid var(--base-white, #fff);
  background: var(--base-accent, #e4572e);
  box-shadow: 0px 3px 3px 0px rgba(228, 87, 46, 0.19);
}

#contact .send_button p {
  position: relative;
}

#contact .send_button p:after {
  content: "";
  background-image: url(img/arrow_w.svg);
  position: absolute;
  background-repeat: no-repeat;
  top: 41%;
  right: 37%;
  width: 2em;
  height: 2rem;
  color: #fff;
}

#contact .send_button {
  margin-bottom: 20px;
}

#contact .send_button p input:hover {
  cursor: pointer;
  background-color: #AE4113;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}

.contact_item {
  margin-top: 20px;
}

.checkout div p span span {
  margin-left: 0rem;
}

span.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1.4rem;
  font-weight: normal;
  display: block;
}

.wpcf7-response-output {
  border: none !important;
  text-align: center;
  color: #dc3232;
  margin-top: 0.5rem !important;
}

/* News：ニュース */
#top_news {
  background: #fff;
  background-image: url(img/news_bg.svg);
}

#top_news h2 {
  text-align: center;
}

#top_news ul {
  max-width: 730px;
  margin-bottom: 40px;
}

#top_news ul li {
  margin-bottom: 14px;
}

#top_news ul li:last-child {
  margin-bottom: 0;
}

#top_news ul li dl dd a {
  text-decoration: none;
}

#top_news ul li dl dt,
#top_news .tag {
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #333;
  margin-bottom: 10px;
}

#top_news ul li dl dt span,
#top_news .tag span {
  color: #fff;
  font-size: 1.4rem;
  background: #DD5519;
  border-radius: 30px;
  padding: 6px 14px;
  margin-left: 10px;
}

#top_news ul li dl dd {
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #C0C0C0;
}

/*--------------------------------------------
    お問い合わせ完了
--------------------------------------------*/
#thanks {
  background: #fff;
  text-align: center;
}

#thanks h2 {
  color: #333;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 20px;
  text-align: center;
}

/*--------------------------------------------
    お知らせ
--------------------------------------------*/
#news {
  background: #fff;
}

#news .inner {
  display: flex;
  justify-content: space-between;
}

#news .inner #main {
  width: 73%;
}

#news .inner #main ul li dl dt,
#news #main .tag {
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #333;
  margin-bottom: 10px;
}

#news .inner #main ul li dl dt a,
#news #main .tag a {
  color: #fff;
  font-size: 1.4rem;
  background: #DD5519;
  border-radius: 30px;
  padding: 6px 10px;
  margin-left: 10px;
  text-decoration: none;
}

#news .inner #main ul li dl dt a:hover,
#news #main .tag a:hover {
  background: #AE4113;
}

#news .inner #main ul li dl dd {
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #C0C0C0;
}

#news .inner #main ul li dl dd a {
  text-decoration: none;
}

#news .inner #main ul li {
  margin-bottom: 20px;
}

/* カテゴリー */
#news .inner #side {
  width: 23%;
}

#news .inner #side .ttl {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

#news .inner #side .ttl:before {
  content: url(img/cat.svg);
  margin-right: 4px;
  vertical-align: -4px;
}

#news .inner #side ul li {
  padding-bottom: 8px;
  border-bottom: 1px solid #C0C0C0;
  margin-bottom: 10px;
  position: relative;
}

#news .inner #side ul li span {
  max-width: 15px;
  position: absolute;
  right: 0;
  margin-top: 2px;
}

#news .inner #side ul li {
  position: relative;
}

#news .inner #side ul li a {
  text-decoration: none;
  font-weight: normal;
}

#news .inner #side ul li a:hover,
#news .inner #side ul li a:active {
  text-decoration: none;
}

#news .inner #side ul li a:after {
  content: url(img/arrow.png);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -12px;
}

/* ページネーション */
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  background: #FBE7DE;
  border-radius: 5px;
  background: #fff;
}

.pagination .page-numbers li a {
  text-decoration: none;
  color: #DD5519;
  padding: 6px 16px;
  background: #FBE7DE;
  display: block;
  margin-right: 16px;
}

.pagination .current {
  padding: 6px 16px;
  margin-right: 16px;
  background: #DD5519;
}

.pagination a.next,
.pagination a.prev {
  width: 30%;
  padding: 10px 12px 2px 12px !important;
}

.page-numbers li a:hover,
.page-numbers li a:active {
  background: #FBCCB7;
  padding: 6px 16px;
}

/*--------------------------------------------
    記事ページ
--------------------------------------------*/
#news #main .ttl {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

#news #main h2 {
  font-size: 3.2rem;
  color: #333;
  margin-bottom: 30px;
  margin-top: 20px;
}

#news #main h3 {
  margin-bottom: 20px;
  font-size: 2.4rem;
}

#news #main h3:before {
  background-color: #DD5519;
  border-radius: 5px;
  content: "";
  display: inline-block;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  width: 6px;
  margin-bottom: 5px;
}

#news #main .txtArea strong {
  color: #DD5519;
  background: #FBE7DE;
}

#news #main .txtArea img {
  margin-bottom: 20px;
  width: auto;
  max-width: 100%;
}

/*--------------------------------------------
    プライバシーポリシー
--------------------------------------------*/
#privacypolicy {
  background: #fff;
}

#privacypolicy h3 {
  margin-bottom: 20px;
  color: #DD5519;
}

#privacypolicy h4 {
  margin-bottom: 10px;
}

#privacypolicy h4:before {
  background-color: #DD5519;
  border-radius: 5px;
  content: "";
  display: inline-block;
  height: 28px;
  margin-right: 10px;
  vertical-align: middle;
  width: 6px;
  margin-bottom: 5px;
}

#privacypolicy .last {
  margin-bottom: 0;
}


/*********************************************
* 共通
**********************************************/

.adjust-pt {
  padding-top: 180px;
}

.wide-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.sp_inline_only {

  display: none;
}

.pc_inline_only {
  display: inline
}

.sp_block_only {
  display: none;
}

.pc_block_only {
  display: block;
}

.montserrat-700 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}


.orange-gradation-font {
  background: var(--_, linear-gradient(90deg, #DC5618 0%, #FFB500 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.orange-gradation-ttl-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.orange-gradation-ttl {
  display: inline-block;
  border-radius: 80px;
  background: var(--_, linear-gradient(90deg, #DC5618 0%, #FFB500 100%));
  box-shadow: 3px 3px 20px 0 #EAAE7A;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  padding: 24px 36px;
  margin: 0 auto;
}

.btn-hover__text-orange:hover {
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #DC5518 0%, #FFB600 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-hover__text-orange:hover span {
  background: linear-gradient(90deg, #DC5518 0%, #FFB600 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-bg-black {
  position: relative;
  z-index: 1;
  background: #1A1A1A;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-bg-black>* {
  position: relative;
  z-index: 1;
}

.btn-bg-black::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #DC5518 0%, #FFB600 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}


.btn-bg-black:hover::after {
  opacity: 1;
}

.btn-bg-black:hover span {
  color: #ffffff !important;
}


@media screen and (max-width: 768px) {
  .adjust-pt {
    padding-top: 120px !important;
  }

  .wide-inner {
    max-width: 100%;
    padding: 0 5%;
  }

  .sp_inline_only {
    display: inline;
  }

  .pc_inline_only {
    display: none;
  }

  .sp_block_only {
    display: block;
  }

  .pc_block_only {
    display: none;
  }

  .orange-gradation-ttl {
    font-size: 26px;
    padding: 20px 26px;
    border-radius: 38px;
  }
}


/*********************************************
* メインビジュアル
**********************************************/

.main-visual {
  background: #EFEFEF;
  position: relative;
  z-index: 0;
  padding: 180px 0 100px;
  overflow: hidden;
}

.main-visual__content {
  position: relative;
  z-index: 100;
}

.main-visual__bg {
  border-bottom-left-radius: 160px;
  width: 44%;
  height: 86%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.main-visual__top--bg {
  background: #EFEFEF url(./img/bg_top_fv.png) center / cover no-repeat;
}

.main-visual__food--bg {
  background: #EFEFEF url(./img/bg_mv_mt.png) center / cover no-repeat;
}

.main-visual__location--bg {
  background: #EFEFEF url(./img/bg_mv_lp.png) center / cover no-repeat;
}

.main-visual__top-machine {
  position: absolute;
  max-width: 640px;
  left: 60%;
  bottom: -60px;
  z-index: 2;
}

.main-visual__label {
  margin: 0;
}

.main-visual__label span {
  padding: 8px 12px;
  display: inline-block;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, #DC5518 0%, #FFB600 100%);
}

.main-visual__ttl-top {
  margin: 24px 0;
  color: #000;
  font-size: 44px;
  font-weight: 700;
}

.main-visual__ttl-wt {
  margin: 20px 0;
}


.main-visual__ttl-wt--span-pc {
  display: inline-block;
  color: #000;
  font-size: 44px;
  font-weight: 700;
  background: #ffffff;
  padding: 8px 24px;
}

.main-visual__text {
  color: #666;
  font-size: 16px;
  font-weight: 500;
  line-height: 190%;
}


.main-visual__contact-btn {
  display: inline-block;
  width: 290px;
  border-radius: 100px;
  background: #EFEFEF;
  box-shadow: -4px -4px 6px #ffffff, 4px 4px 6px rgba(0, 0, 0, .05);
  border-radius: 36px;
  color: #1A1A1A;
  text-decoration: none;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.main-visual__contact-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #DC5518 0%, #FFB600 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-visual__contact-btn:hover::before {
  opacity: 1;
}

.main-visual__contact-btn:hover .main-visual__contact-btn--text {
  color: #ffffff;
}


.main-visual__contact-btn-inner {
  display: block;
  padding: 20px 28px 20px 16px;
  position: relative;
  z-index: 10;
}

.main-visual__contact-btn--text {
  color: #1A1A1A;
  font-size: 21px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.main-visual__contact-btn--arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.main-visual__contact-btn--arrow img {
  width: 20px;
  height: 20px;
}

.main-visual__features-img {
  max-width: 380px;
}


.main-visual__bg-sp--top {
  display: none;
}


@media screen and (max-width: 768px) {

  .main-visual__top-machine {
    display: none;
  }

  .main-visual {
    padding: 124px 0 0;
  }

  .main-visual__bg {
    width: 100%;
    border-radius: 0;
    position: absolute;
    left: 20%;
    border-bottom-left-radius: 120px;
  }

  .main-visual__food--bg {
    height: 400px;
  }

  .main-visual__location--bg {
    height: 452px;
  }

  .main-visual__features {
    text-align: center;
  }

  .main-visual__ttl-top {
    text-align: center;
    font-size: 40px;
  }

  .main-visual__label span {
    font-size: 16px;
  }

  .main-visual__ttl-wt--span-sp {
    display: inline-block;
    color: #000;
    font-size: 44px;
    font-weight: 700;
    background: #ffffff;
    font-size: 24px;
    padding: 4px 8px;
    margin-top: 8px;
  }


  .main-visual__text {
    font-size: 14px;
    text-align: center;
  }

  .main-visual__contact {
    padding-bottom: 40px;
    text-align: center;
  }

  .main-visual__bg-sp--top {
    display: block;
    padding: 16px 0 32px;
  }

  .main-visual__contact-btn {
    max-width: 252px;
  }

  .main-visual__contact-btn-inner {
    padding: 12px 18px 12px 8px;
  }

  .main-visual__contact-btn--text {
    font-size: 16px;
  }
}

/*********************************************
* 事業者向けページ ー　解決ポイント
**********************************************/

.solusion {
  position: relative;
  padding: 72px 0 80px;
  background: #EFEFEF url(./img/solusion_bg.png) center -32px / 3000px auto no-repeat;
}

.solusion .wide-inner {
  position: relative;
}

.solusion__ttl {
  margin-bottom: 20px;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}

.solusion__en {
  color: rgba(255, 255, 255, 0.50);
  text-align: center;
}

.solusion__text {
  color: #FFF;
  text-align: center;
}

.solusion__list {
  max-width: 920px;
  margin: 0 auto;
}

.solusion__item {
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 36px 32px;
  gap: 32px;
  margin-top: 32px;
  border-radius: 20px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.10);
}

.solusion__number {
  flex-grow: 0;
}

.solusion__number span {
  color: #DC5518;
  font-size: 54px;
  display: block;
  width: 86px;
  height: 86px;
  line-height: 78px;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.10);
}

.solusion__cnt {}

.solusion__cnt h3 {
  font-size: 27px;
  font-weight: 700;
}

.solusion__cnt p {
  margin: 16px 0 0;
}

.solusion__sp-bg {
  display: none;
  border-radius: 0 140px 0 0;
  background: var(--_, linear-gradient(90deg, #DC5618 0%, #FFB500 100%));
  width: 760px;
  height: 360px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .solusion {
    background: #EFEFEF;
    padding: 44px 0 60px;
  }

  .solusion__sp-bg {
    display: block;
  }

  .solusion__ttl {
    font-size: 32px;
    text-align: left;
    margin: 0 0 16px;
  }

  .solusion__en {
    text-align: left;
  }

  .solusion__text {
    text-align: left;
  }

  .solusion__item {
    padding: 20px;
    gap: 16px;
  }

  .solusion__number span {
    font-size: 20px;
    height: 32px;
    width: 32px;
    line-height: 28px;
  }

  .solusion__cnt h3 {
    font-size: 16px;
  }

  .solusion__cnt p {
    margin-top: 4px;
  }
}

/*********************************************
* 事業者向けページ ー　費用メリット、可視化・分析
**********************************************/

.graph-section__cost-benefit {
  background: #ffffff;
  background: #ffffff url(./img/bg_cost_benefit.png) center bottom / 3000px auto no-repeat;
}

.graph-section__analysis {
  background: #EFEFEF;
}

.graph-section__en {
  text-align: center;
}

.graph-section__text {
  text-align: center;
}

.graph-section__cnt {
  padding: 36px;
  border-radius: 50px;
  background: #FFF;
  box-shadow: 10px 10px 40px 0 rgba(255, 182, 0, 0.35);
}

.graph-section__cnt {
  margin-bottom: 80px;
}

.graph-section__cnt h3 {
  color: #1D92FF;
  font-family: "Noto Sans JP";
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 32px;
}

.graph-section__img-wrap {
  overflow-y: scroll;
  padding-bottom: 12px;
}

.graph-section__img-wrap img {
  min-width: 840px;
}

@media screen and (max-width: 768px) {

  .graph-section__cost-benefit {
    background: none;
    padding: 60px 0 12px;
  }

  .graph-section__text {
    text-align: left;
  }

  .graph-section__analysis {
    padding: 60px 0 12px;
  }

  .graph-section__cnt h3 {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .graph-section__cnt {
    border-radius: 20px;
    padding: 32px;
    background: #FFF;
    box-shadow: 5px 5px 20px 0 rgba(255, 182, 0, 0.35);
    margin-bottom: 60px;
  }
}


/*********************************************
* 事業者向けページ ー　導入フロー
**********************************************/

.intro-flow {
  padding: 80px 0 180px;
  background: #333333 url(./img/bg_intro_flow.png) bottom 8px center / 2577px auto no-repeat;
}

.intro-flow__ttl {
  text-align: center;
  color: #ffffff;
  font-size: 42px;
}

.intro-flow__en {
  text-align: center;
  color: #ffffff;
}

.intro-flow__text {
  text-align: center;
  color: #ffffff;
}

.intro-flow__list {
  display: flex;
  align-items: center;
}

.intro-flow__img {
  max-width: 280px;
}

.intro-flow__img a {
  text-decoration: none;
  cursor: pointer;
}

.intro-flow__img a:hover {
  opacity: 0.7;
}

.intro-flow__arrow {
  max-width: 14px;
  flex: 0 0 17px;
}

@media screen and (max-width: 768px) {
  .intro-flow {
    padding: 60px 0 92px;
    background: #333333 url(./img/bg_intro_flow.png) bottom 8px center / 880px auto no-repeat;
  }

  .intro-flow__list {
    flex-direction: column;
  }

  .intro-flow__arrow {
    flex: 0 0 12px;
  }
}