@charset "utf-8";
:root {
  /* CSS Custom Properties without Colors
	// -------------------------------------------------*/
  --main-width: 100%;
}
br[pc] {
  display: none;
}
br[sp],
br[pc][sp] {
  display: inline;
}
img {
  -o-object-fit: contain;
     object-fit: contain;
}
body > section {
  margin-top: 63px;
  box-sizing: border-box;
}
body > section > h2[class^="title-"] {
  font-size: 5.5vw;
}
img.eatgram-logo {
  width: 120px;
}
/* //////////////////////////////////////////
	ボタン
////////////////////////////////////////// */
a.btn,
a.btn:link {
  font-weight: 600;
  letter-spacing: 0.125em;
  box-sizing: border-box;
  padding: 2px 10px;
  border-radius: 10px;
  border: 0;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--btn);
  color: var(--btn-text);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
a.btn:hover {
  color: var(--btn-hover-text);
  background-color: var(--btn-hover);
}
.cta {
  width: 80%;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.cta::before {
  width: 90px;
  height: 62px;
  position: absolute;
  top: -50px;
  right: -15px;
}
.blue.cta::before {
  background-size: contain;
}
.yellow.cta::before {
  background-size: contain;
}
.cta a.btn-cta {
  display: block;
  padding: 2.5vh 9%;
  background-color: var(--black);
  border-radius: 36px;
  font-size: 5.5vw;
}
.cta a.btn-cta::before {
  width: 46px;
  height: 46px;
  bottom: 50%;
  right: 12px;
  transform: translateY(50%);
}
.cta a.btn-cta::after {
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-left: 14px solid var(--black);
  bottom: 50%;
  right: 17px;
  transform: translateY(50%);
}
@keyframes popInBottom {
  0% {
    transform: translate3d(-50%, 200px, 0) scale3d(0.1, 0.1, 0.1);
    opacity: 0;
  }
  40% {
    opacity: 1;
    animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    transform: translate3d(-50%, 0, 0) scale3d(1.08, 1.08, 1.08);
  }
  60% {
    animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    transform: translate3d(-50%, 0, 0) scale3d(1, 1, 1);
  }
  80% {
    animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    transform: translate3d(-50%, 0, 0) scale3d(1.03, 1.03, 1.03);
  }
  100% {
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translate3d(-50%, 0, 0) scale3d(1, 1, 1);
  }
}
/* //////////////////////////////////////////////////////////////////
//	
//	Hotfixes sp only
//	
// ////////////////////////////////////////////////////////////////*/
.header {
  padding-top: 24px;
  width: 100%;
}
.logo-header {
  width: 30%;
  margin-left: 3%;
  line-height: 1;
}
.logo-header img {
  width: 100%;
  vertical-align: baseline;
}
.logo-header .description {
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.nav-header {
  margin-right: 3%;
}
.nav-header a.btn {
  font-size: 1rem;
  margin-left: 0;
}
.nav-header a.btn::before {
  font-size: 2.4rem;
  top: -30px;
}
.nav-header a.btn::after {
  border: 4px solid transparent;
  border-left: 5px solid var(--white);
  margin-top: -1px;
  margin-left: 3px;
}
.hero {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-top: 24px;
}
.tagline-hero {
  order: 1;
  font-size: 6.5vw;
  letter-spacing: 0;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  margin-bottom: 1.5vh;
}
.tagline-hero::before {
  display: none;
}
.lead-hero {
  order: 3;
  width: 93%;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
  padding: 2vh 3.3%;
  border-radius: 15px;
  font-size: 4.5vw;
  letter-spacing: 0;
  text-align: center;
}
.lead-hero .marker {
  color: var(--yellow);
}
.image-hero {
  order: 2;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  position: static;
  margin-bottom: 1.5vh;
}
.overview {
  padding-top: 54px;
  padding-bottom: 108px;
}
.overview .container-points {
  width: var(--main-width);
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.overview .block-point {
  width: 100px;
  margin-right: 12px;
  margin-left: 12px;
  margin-bottom: 15px;
}
.overview .title-point {
  font-size: 1.35rem;
  margin-top: 12px;
}
.usage {
  margin-top: 96px;
  padding-bottom: 108px;
  background: linear-gradient(transparent 200px, var(--blue) 0%);
}
.usage .title-usage {
  font-size: 1.8rem;
  letter-spacing: 0;
}
.usage .title-usage .marker {
  position: relative;
  z-index: 1;
}
.usage .title-usage .marker::after {
  content: "";
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: -15%;
  left: 0;
  z-index: -1;
  background-color: var(--blue);
}
.usage .block-slide {
  width: var(--main-width);
  width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 42px;
}
.usage .block-slide img {
  width: 90%;
}
.usage .block-slide .flickity-button {
  top: 60%;
  transform: none;
  width: 36px;
  height: 36px;
  color: var(--black);
  background-color: var(--yellow);
}
.usage .block-slide .flickity-prev-next-button.previous {
  left: 2px;
}
.usage .block-slide .flickity-prev-next-button.next {
  right: 2px;
}
.usage .block-slide .flickity-page-dots {
  bottom: -15px;
}
.usage .block-slide .flickity-page-dots .dot {
  margin-right: 12px;
  margin-left: 12px;
  width: 18px;
  height: 18px;
  line-height: 18px;
}
.usage .block-slide .flickity-page-dots .dot:hover {
  border-color: var(--black);
}
.usage .block-covid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding: 18px 21px;
}
.usage .block-covid img {
  width: 100%;
}
.usage .block-covid .text-covid {
  margin-top: 12px;
  margin-left: 0;
}
.usage .block-covid .text-covid p {
  margin-bottom: 0;
}
.usage .block-covid .title-covid {
  text-align: center;
}
.case-study {
  margin-bottom: 120px;
}
.title-case-study .marker {
  position: relative;
  z-index: 1;
  font-size: 4.5vw;
}
.title-case-study .marker::after {
  content: "";
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: -15%;
  left: 0;
  z-index: -1;
  background-color: var(--yellow);
}
.title-case-study::before {
  width: 94px;
  height: 63px;
  background-size: contain;
}
.container-case-study {
  padding-bottom: 81px;
  margin-bottom: 81px;
}
.container-case-study .block-case {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding: 21px 30px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.container-case-study .block-case img {
  width: 60%;
}
.container-case-study .block-case .icon-before-case,
.container-case-study .block-case .icon-after-case {
  margin-top: 12px;
  display: block;
  width: 100px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 12px;
}
.container-case-study .block-case .text-case {
  margin-left: 0;
}
.container-case-study .block-case .title-case {
  font-size: 5.7vw;
  text-align: center;
}
.container-case-study .block-case .title-case::before {
  display: block;
  font-size: 5vw;
}
.container-case-study .block-study {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 54px;
}
.container-case-study .block-study .title-study {
  font-size: 5.7vw;
  letter-spacing: 0.05em;
}
.container-case-study .block-study .title-study .eatgraming {
  margin-bottom: 12px;
}
.container-case-study .block-study .text-study {
  text-align: left;
}
#case01 .title-case::before {
  content: "= お悩み１ =";
}
#case02 .title-case::before {
  content: "= お悩み２ =";
}
#case03 .title-case::before {
  content: "= お悩み３ =";
}
#case04 .title-case::before {
  content: "= お悩み４ =";
}
#case05 .title-case::before {
  content: "= お悩み５ =";
}
#case-study01,
#case-study03 {
  background: linear-gradient(transparent 400px, var(--yellow) 0%);
}
#case-study01 .block-case,
#case-study03 .block-case {
  box-shadow: 10px 10px 0 0 var(--blue);
}
#case-study02 .block-case,
#case-study04 .block-case {
  box-shadow: 10px 10px 0 0 var(--yellow);
}
#case-study02 .title-study,
#case-study04 .title-study {
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
}
#case-study02 {
  background: linear-gradient(transparent 680px, var(--blue) 0%);
}
#case-study04 {
  padding-bottom: 156px;
  background: linear-gradient(transparent 200px, var(--blue) 0%);
}
.container-story {
  padding: 2vh 8%;
}
.container-story .block-story {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.container-story .block-story .text-story {
  margin-left: 0;
}
.container-story .block-story .title-story {
  margin-top: 12px;
  text-align: center;
  font-size: 5.7vw;
  margin-bottom: 12px;
}
#story-before {
  margin-bottom: 96px;
}
#story-before img {
  width: 80%;
}
#story-before::before,
#story-before::after {
  bottom: -25%;
}
#story-after img {
  width: 80%;
}
#story-after .text-story {
  margin-top: 6px;
}
#story-after .title-story {
  position: static;
  letter-spacing: 0;
}
.users .title-users {
  margin-bottom: 24px;
}
.users .title-users::before {
  width: 50%;
  height: 60px;
  margin-bottom: 12px;
  background-size: contain;
}
.container-user {
  width: var(--main-width);
  margin-right: auto;
  margin-left: auto;
}
.container-user .block-intro {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.container-user .block-intro img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
}
.container-user .block-intro .text-intro {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 36px;
}
.container-user .block-images {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: auto;
  margin-bottom: 24px;
}
.container-user .block-images img {
  height: 250px;
}
.container-user .block-images img:nth-child(2) {
  -o-object-position: 50% 90%;
     object-position: 50% 90%;
}
.container-user .block-images img:nth-child(3) {
  -o-object-position: 50% 70%;
     object-position: 50% 70%;
}
.container-user .block-user .title-user {
  font-size: 4.4vw;
  margin-bottom: 24px;
}
.container-user .container-scenes {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.container-user .container-scenes .block-scene p {
  margin-top: 12px;
  font-size: 3.2vw;
}
.voices {
  padding-top: 3vh;
  padding-bottom: 120px;
  margin-bottom: 120px;
}
.voices .title-voices {
  margin-bottom: 24px;
}
.voices .title-voices::before {
  width: 60%;
  height: 60px;
  background-size: contain;
  background-position-y: 10px;
}
.block-voice {
  width: var(--main-width);
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.block-voice .face {
  width: 50%;
  text-align: center;
}
.block-voice .face p {
  margin-top: 12px;
}
.block-voice .text-voice {
  width: 90%;
  padding: 3vh 8%;
  margin-left: 0;
}
.block-voice .title-voice {
  font-size: 4.75vw;
  margin-bottom: 3.5vh;
}
.system {
  width: var(--main-width);
  margin-right: auto;
  margin-left: auto;
}
.system .title-system {
  font-size: 5.2vw;
  margin-bottom: 5vh;
}
.system .block-function {
  margin-top: 54px;
}
.system .block-function .title-function {
  font-size: 5vw;
  margin-bottom: 3.5vh;
}
.system .block-function .text-function {
  width: 90%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 6vh 8% 2.5vh;
}
.system .block-function .text-function img {
  width: 150px;
}
.system .block-function .text-function p {
  margin-top: 3vh;
  margin-left: 0;
}
.flow {
  padding-top: 42px;
  padding-bottom: 18vh;
  margin-bottom: 17vh;
}
.flow .title-flow {
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.flow .container-steps {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.flow .block-step {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 6vh 8% 2.5vh;
  margin-bottom: 108px;
}
.flow .block-step::before,
.flow .block-step::after {
  content: "";
  position: absolute;
  bottom: -110px;
  left: 50%;
  display: block;
}
.flow .block-step::before {
  width: 12px;
  height: 28px;
  background-color: var(--white);
  transform: translate(-50%, -45px);
}
.flow .block-step::after {
  width: 0;
  height: 0;
  border: 22px solid transparent;
  border-top: 24px solid var(--white);
  transform: translate(-50%, 0px);
}
.flow .block-step:last-child::before,
.flow .block-step:last-child::after {
  display: none;
}
.flow .block-step img {
  width: 70%;
}
.flow .block-step .text-step {
  margin-left: 0;
}
.flow .block-step .title-step {
  margin-top: 54px;
  font-size: 4.5vw;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 12px;
}
.flow #step01 .text-step,
.flow #step02 .text-step,
.flow #step03 .text-step,
.flow #step04 .text-step {
  background-position: center 15px;
  background-size: 90px;
}
.flow #step04 {
  margin-bottom: 120px;
}
.flow #step05 {
  display: block;
  position: relative;
}
.flow #step05 .text-step {
  margin-right: auto;
  margin-left: auto;
}
.flow #step05 .text-step p {
  font-size: 4.7vw;
  font-weight: 700;
  text-align: center;
}
.flow #step05 .title-step {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 6.5vw;
  line-height: 1.75;
  margin-right: auto;
  margin-left: auto;
  padding-right: 6px;
  padding-left: 6px;
  margin-bottom: 24px;
}
.flow #step05 .image01,
.flow #step05 .image02 {
  position: absolute;
  width: 30%;
}
.flow #step05 .image01 {
  margin-top: 0;
  top: -15vh;
  right: -5%;
}
.flow #step05 .image02 {
  margin-top: 0;
  top: -17vh;
  bottom: auto;
  left: -5%;
}
.qa {
  padding-bottom: 63px;
  margin-bottom: 156px;
}
.title-qa {
  font-size: 5vw;
}
.container-qa {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.block-qa {
  background-color: var(--white);
  border: 3px solid var(--black);
  box-shadow: 10px 10px 0 0 var(--black);
  padding: 6vh 8% 2.5vh;
  margin-bottom: 72px;
}
.block-qa .title-question {
  font-size: 5vw;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--black);
  margin-bottom: 21px;
}
.block-qa .title-question::before {
  width: 90px;
  height: 61px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
}
.block-qa .text-answer {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-qa .text-answer::before {
  display: none;
}
.block-qa .text-answer p {
  margin-left: 0;
  text-align: left;
  margin-bottom: 12px;
}
.footer {
  padding-bottom: 96px;
}
.footer .company-name {
  margin-bottom: 1.8rem;
}
.footer .company-address {
  margin-bottom: 12px;
}
.footer a.company-site {
  color: var(--white);
}
.footer a.company-site:hover {
  text-decoration: underline;
}
.footer .copyright {
  margin-top: 63px;
}
