@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

/* Specify the box size calculation method */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Improved responsiveness of links and buttons on touch devices */
a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

/* --------------------
	Settings
	変数・mixin設定
-------------------- */
/*
	書体
-------------------- */
/*
	カラー
-------------------- */
/*
	その他
-------------------- */
/* --------------------
	Base
	基本設定
-------------------- */
html {
  font-size: 1.8vw; }
  @media screen and (min-width: 1000px) {
    html {
      font-size: 18px; } }
  @media screen and (max-width: 768px) {
    html {
      font-size: 3.86vw; } }

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal; }
  body a {
    color: inherit;
    text-decoration: none;
    /*&[href^="tel:"] {
    	pointer-events: none;
    }*/ }
  body img {
    width: 100%;
    height: auto;
    vertical-align: bottom; }
  body em {
    font-style: normal; }
  body li {
    list-style: none; }
  body h1, body h2, body h3, body h4, body h5, body h6 {
    font-weight: inherit; }

.wrap {
  background: white;
  width: 100%;
  color: #000000; }
  @media screen and (max-width: 768px) {
    .wrap {
      /*a {
      	&[href^="tel:"] {
      		pointer-events: auto;
      	}
      }*/ } }

/* --------------------
	Layout
-------------------- */
/* Mixin */
/* common parts */
/* background image */
/* button */
/*
	Wrap
------------------------------------------------------------ */
body a {
  transition: all .2s ease-in-out;
  cursor: pointer; }
  body a:hover {
    opacity: .7; }
  @media screen and (max-width: 768px) {
    body a:hover {
      opacity: 1; } }

.wrap img {
  width: 100%;
  height: auto; }
.wrap .pc {
  display: block; }
.wrap .sp {
  display: none; }
.wrap .font {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal; }
.wrap .orange {
  color: #F18B00; }
.wrap .blue {
  color: #0070FF; }
.wrap .red {
  color: #E71A0F; }
@media screen and (max-width: 768px) {
  .wrap .pc {
    display: none; }
  .wrap .sp {
    display: block; } }

/*
	Header
------------------------------------------------------------ */
.header {
  background: white;
  width: 100%;
  color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  font-weight: 500; }
  .header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: .75em;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__heading {
    letter-spacing: .05em;
    display: flex;
    align-items: center; }
    .header__heading .logo {
      margin: 0 1em 0 0; }
      .header__heading .logo img {
        max-width: 14rem; }
    .header__heading .name {
      margin-bottom: -.5em; }
  .header__button a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5em;
    width: 18rem;
    background: #0070FF;
    background: linear-gradient(90deg, #0070FF 0%, #00ACDE 100%);
    border-radius: 100rem;
    text-align: center;
    color: white;
    letter-spacing: .1em;
    padding-left: 1.75em;
    position: relative; }
    .header__button a::before {
      position: absolute;
      content: "";
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100%;
      background-image: url("../images/icon_free.svg");
      left: 1em;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 3em;
      height: 3em;
      filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); }
    .header__button a .icon img {
      width: 1.5em;
      margin-right: .5em; }
  @media screen and (max-width: 768px) {
    .header {
      position: relative; }
      .header__heading .logo {
        margin: 0 .5em 0 0;
        width: 42%; }
        .header__heading .logo img {
          max-width: 100%; }
      .header__heading .name {
        font-size: 2.9vw; }
      .header__button {
        display: none; } }

/* visual */
.visual {
  background-color: #F18B00;
  background-image: url("../images/visual.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden; }
  .visual__inner {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
    position: relative;
    z-index: 2; }
    .visual__inner::before {
      z-index: -1;
      position: absolute;
      content: "";
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100%;
      background-image: url("../images/visual_image.webp");
      right: -14%;
      bottom: 0;
      width: 29rem;
      height: 29.5rem; }
  .visual__heading {
    width: 70%;
    filter: drop-shadow(2px 2px 4px rgba(220, 60, 15, 0.8)); }
  .visual__text, .visual__appeal {
    width: 50%; }
  .visual__text {
    margin: 1rem 0 1.5rem; }
  .visual__appeal {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); }
  .visual__button {
    position: absolute;
    right: 0;
    bottom: 4rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); }
    .visual__button a {
      transition: all .2s ease-in-out;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 3.5em;
      width: 24rem;
      background: #0070FF;
      background: linear-gradient(90deg, #0070FF 0%, #00ACDE 100%);
      border-radius: 100rem;
      text-align: center;
      color: white;
      letter-spacing: .1em;
      font-weight: 700;
      font-size: 1.4rem;
      position: relative;
      padding-left: 1.5em; }
      .visual__button a:hover {
        opacity: .7; }
      @media screen and (max-width: 768px) {
        .visual__button a:hover {
          opacity: 1; } }
      .visual__button a::before {
        position: absolute;
        content: "";
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        background-image: url("../images/icon_free.svg");
        left: 1em;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 2.5em;
        height: 2.5em;
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); }
      .visual__button a .icon img {
        width: 1.5em;
        margin-right: .5em; }
      .visual__button a .comment {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -1.25em;
        color: #0070FF;
        font-size: 1.1rem;
        background: white;
        border-radius: 100rem;
        border: 1px solid #0070FF;
        z-index: 2;
        width: 14em;
        height: 2em;
        display: flex;
        align-items: center;
        justify-content: center; }
        .visual__button a .comment::before {
          position: absolute;
          content: "";
          left: 50%;
          transform: translate(-50%);
          width: 20px;
          aspect-ratio: 1/cos(30deg);
          clip-path: polygon(50% 64%, 100% 0, 0 0);
          background: white;
          bottom: -16px;
          z-index: -1; }
        .visual__button a .comment::after {
          position: absolute;
          content: "";
          left: 50%;
          transform: translate(-50%);
          width: 22px;
          aspect-ratio: 1/cos(30deg);
          clip-path: polygon(50% 64%, 100% 0, 0 0);
          background: #0070FF;
          bottom: -19px;
          z-index: -2; }
      @media screen and (max-width: 768px) {
        .visual__button a {
          height: 3.5em;
          width: 100%;
          font-size: 4.8vw;
          padding-left: 1.25em; }
          .visual__button a::before {
            left: 1em;
            width: 2.25em;
            height: 2.25em; }
          .visual__button a .icon img {
            width: 1.25em;
            margin-right: .25em; }
          .visual__button a .comment {
            top: -1.25em;
            font-size: 3.6vw;
            border: 1px solid #0070FF;
            width: 14em;
            height: 2em; }
            .visual__button a .comment::before {
              clip-path: polygon(50% 50%, 80% 0, 20% 0); }
            .visual__button a .comment::after {
              clip-path: polygon(50% 50%, 80% 0, 20% 0); } }
  @media screen and (max-width: 768px) {
    .visual {
      background-image: url("../images/visual-sp.webp");
      background-position: top; }
      .visual__inner {
        padding: 10vw 0 36vw; }
        .visual__inner::before {
          right: auto;
          bottom: 26vw;
          width: 78%;
          height: 70vw;
          left: 50%;
          transform: translateX(-50%); }
      .visual__heading {
        width: 94%;
        margin: 0 auto; }
      .visual__text, .visual__appeal {
        width: 86%; }
      .visual__text {
        margin: 4vw auto; }
      .visual__appeal {
        padding-bottom: 52vw;
        margin: 0 auto; }
      .visual__button {
        width: 84%;
        margin: 0 auto;
        bottom: 12vw;
        right: auto;
        left: 50%;
        transform: translateX(-50%); } }

/*
	Contents
------------------------------------------------------------ */
.contents {
  background: transparent;
  color: #000000;
  /* 埋め込み地図・動画 レスポンシブ対応用 */ }
  .contents .video,
  .contents .map {
    width: fit-content;
    margin: 0 auto; }
    .contents .video iframe,
    .contents .video video,
    .contents .map iframe,
    .contents .map video {
      width: 100%;
      max-width: 1000px;
      height: auto;
      aspect-ratio: 16 / 9; }

/*
	Contents	主な編集箇所
------------------------------------------------------------ */
/* cv */
.cv {
  padding: 4rem 0;
  background-color: #E71A0F;
  background-image: url("../images/cv.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0 4rem;
  overflow: hidden; }
  @media screen and (max-width: 768px) {
    .cv {
      padding: 8vw 0; } }
  .cv__inner {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 700;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2; }
    .cv__inner::before {
      z-index: -1;
      position: absolute;
      content: "";
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100%;
      background-image: url("../images/cv_image.webp");
      left: -20%;
      bottom: -4rem;
      width: 21rem;
      height: 19rem; }
  .cv__text {
    letter-spacing: .025em;
    font-size: 1.2rem;
    line-height: 0; }
    .cv__text .box {
      position: relative;
      filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
      z-index: 2; }
      .cv__text .box::before {
        position: absolute;
        content: "";
        background: #E71A0F;
        background: linear-gradient(-30deg, #E71A0F 0%, #F18B00 100%);
        filter: drop-shadow(6px 6px 0 #ffe800);
        width: 21em;
        height: 2.5em;
        left: 50%;
        transform: translateX(-50%) skew(-30deg);
        top: 0;
        bottom: 0;
        margin: auto;
        z-index: -1; }
  .cv__heading {
    letter-spacing: .05em;
    font-size: 2.2rem;
    padding: 3rem 0 3.5rem; }
    .cv__heading .border {
      border-bottom: 3px solid white;
      font-size: 2.6rem; }
  .cv__button {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); }
    .cv__button a {
      transition: all .2s ease-in-out;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 3.5em;
      width: 24rem;
      background: #0070FF;
      background: linear-gradient(90deg, #0070FF 0%, #00ACDE 100%);
      border-radius: 100rem;
      text-align: center;
      color: white;
      letter-spacing: .1em;
      font-weight: 700;
      font-size: 1.4rem;
      position: relative;
      width: 55%;
      margin: 0 auto; }
      .cv__button a:hover {
        opacity: .7; }
      @media screen and (max-width: 768px) {
        .cv__button a:hover {
          opacity: 1; } }
      .cv__button a::before {
        position: absolute;
        content: "";
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        background-image: url("../images/icon_free.svg");
        left: 1em;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 2.5em;
        height: 2.5em;
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); }
      .cv__button a .icon img {
        width: 1.5em;
        margin-right: .5em; }
      .cv__button a .comment {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -1.25em;
        color: #0070FF;
        font-size: 1.1rem;
        background: white;
        border-radius: 100rem;
        border: 1px solid #0070FF;
        z-index: 2;
        width: 14em;
        height: 2em;
        display: flex;
        align-items: center;
        justify-content: center; }
        .cv__button a .comment::before {
          position: absolute;
          content: "";
          left: 50%;
          transform: translate(-50%);
          width: 20px;
          aspect-ratio: 1/cos(30deg);
          clip-path: polygon(50% 64%, 100% 0, 0 0);
          background: white;
          bottom: -16px;
          z-index: -1; }
        .cv__button a .comment::after {
          position: absolute;
          content: "";
          left: 50%;
          transform: translate(-50%);
          width: 22px;
          aspect-ratio: 1/cos(30deg);
          clip-path: polygon(50% 64%, 100% 0, 0 0);
          background: #0070FF;
          bottom: -19px;
          z-index: -2; }
      @media screen and (max-width: 768px) {
        .cv__button a {
          height: 3.5em;
          width: 100%;
          font-size: 4.8vw;
          padding-left: 1.25em; }
          .cv__button a::before {
            left: 1em;
            width: 2.25em;
            height: 2.25em; }
          .cv__button a .icon img {
            width: 1.25em;
            margin-right: .25em; }
          .cv__button a .comment {
            top: -1.25em;
            font-size: 3.6vw;
            border: 1px solid #0070FF;
            width: 14em;
            height: 2em; }
            .cv__button a .comment::before {
              clip-path: polygon(50% 50%, 80% 0, 20% 0); }
            .cv__button a .comment::after {
              clip-path: polygon(50% 50%, 80% 0, 20% 0); } }
  @media screen and (max-width: 768px) {
    .cv {
      background-image: url("../images/cv-sp.webp");
      padding: 12vw 0 6vw;
      overflow: auto; }
      .cv__inner::before {
        left: 5vw;
        bottom: 16vw;
        width: 36vw;
        height: 32vw; }
      .cv__text {
        font-size: 3.4vw; }
        .cv__text .box {
          padding-right: 1.5em; }
          .cv__text .box::before {
            transform-origin: left top;
            will-change: transform; }
      .cv__heading {
        font-size: 5vw;
        line-height: 1.8;
        text-align: start;
        padding: 10vw 5vw 10vw 0;
        margin: 0 0 0 auto;
        width: fit-content; }
        .cv__heading .border {
          border-bottom: 2px solid white;
          font-size: 6vw; } }

/* 全ブロック共通 */
.trouble,
.solution,
.reason,
.comparison,
.step,
.faq,
.company,
.contact {
  padding: 4rem 0; }
  @media screen and (max-width: 768px) {
    .trouble,
    .solution,
    .reason,
    .comparison,
    .step,
    .faq,
    .company,
    .contact {
      padding: 8vw 0; } }
  .trouble__inner,
  .solution__inner,
  .reason__inner,
  .comparison__inner,
  .step__inner,
  .faq__inner,
  .company__inner,
  .contact__inner {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto; }
  .trouble__eng,
  .solution__eng,
  .reason__eng,
  .comparison__eng,
  .step__eng,
  .faq__eng,
  .company__eng,
  .contact__eng {
    text-align: center;
    font-weight: 800;
    color: #F18B00;
    font-size: 6.7rem;
    opacity: .5; }
    .trouble__eng .font,
    .solution__eng .font,
    .reason__eng .font,
    .comparison__eng .font,
    .step__eng .font,
    .faq__eng .font,
    .company__eng .font,
    .contact__eng .font {
      font-style: italic;
      display: inline-block;
      padding-right: 0.1em; }
    .trouble__eng .grd,
    .solution__eng .grd,
    .reason__eng .grd,
    .comparison__eng .grd,
    .step__eng .grd,
    .faq__eng .grd,
    .company__eng .grd,
    .contact__eng .grd {
      background: linear-gradient(90deg, #E71A0F 0%, #F18B00 50%, #FFE300 100%);
      background: -webkit- linear-gradient(90deg, #E71A0F 0%, #F18B00 50%, #FFE300 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
  .trouble__heading,
  .solution__heading,
  .reason__heading,
  .comparison__heading,
  .step__heading,
  .faq__heading,
  .company__heading,
  .contact__heading {
    font-weight: 700;
    text-align: center;
    font-size: 3.2rem;
    letter-spacing: .05em;
    position: relative;
    z-index: 2;
    top: -.75em;
    padding-bottom: 1.5rem; }
    .trouble__heading::before,
    .solution__heading::before,
    .reason__heading::before,
    .comparison__heading::before,
    .step__heading::before,
    .faq__heading::before,
    .company__heading::before,
    .contact__heading::before {
      position: absolute;
      content: "";
      background: #F18B00;
      background: linear-gradient(90deg, #E71A0F 0%, #F18B00 50%, #FFE300 100%);
      border-radius: 100rem;
      height: 4px;
      width: 3rem;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0; }
  .trouble__text,
  .solution__text,
  .reason__text,
  .comparison__text,
  .step__text,
  .faq__text,
  .company__text,
  .contact__text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .05em; }
  @media screen and (max-width: 768px) {
    .trouble__eng,
    .solution__eng,
    .reason__eng,
    .comparison__eng,
    .step__eng,
    .faq__eng,
    .company__eng,
    .contact__eng {
      font-size: 12vw;
      -webkit-text-size-adjust: 100%; }
    .trouble__heading,
    .solution__heading,
    .reason__heading,
    .comparison__heading,
    .step__heading,
    .faq__heading,
    .company__heading,
    .contact__heading {
      font-size: 7vw;
      padding-bottom: 6vw; }
      .trouble__heading::before,
      .solution__heading::before,
      .reason__heading::before,
      .comparison__heading::before,
      .step__heading::before,
      .faq__heading::before,
      .company__heading::before,
      .contact__heading::before {
        width: 16%; }
    .trouble__text,
    .solution__text,
    .reason__text,
    .comparison__text,
    .step__text,
    .faq__text,
    .company__text,
    .contact__text {
      font-size: 3.8vw; } }

/* 各ブロック個別 */
.trouble {
  background-image: url("../images/trouble.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); }
  .trouble__sub {
    text-align: center;
    letter-spacing: .075em;
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    position: relative;
    z-index: 2; }
    .trouble__sub::before {
      position: absolute;
      content: "";
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100%;
      background-image: url("../images/trouble_comment.svg");
      left: 50%;
      transform: translate(-50%);
      top: -.5em;
      width: 16em;
      height: 3em;
      z-index: -1; }
  .trouble__text {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 1.5em 0 1em; }
    .trouble__text .blue {
      border-bottom: 3px solid #0070FF;
      font-size: 2.5rem; }
  .trouble__image {
    width: 90%;
    margin: 0 auto;
    position: relative; }
    .trouble__image::before {
      content: "飲食店オーナー様のお悩み";
      position: absolute;
      background: #0070FF;
      background: linear-gradient(90deg, #0070FF 0%, #00ACDE 100%);
      border-radius: 100rem;
      text-align: center;
      color: white;
      letter-spacing: .1em;
      font-weight: 500;
      font-size: 1.5rem;
      padding: .5em 1em;
      left: 50%;
      transform: translateX(-50%);
      bottom: 1em;
      width: max-content; }
  @media screen and (max-width: 768px) {
    .trouble {
      background-image: url("../images/trouble-sp.webp"); }
      .trouble__sub {
        font-size: 3.8vw; }
      .trouble__text {
        font-size: 5vw;
        padding: 1.5em 0 1em; }
        .trouble__text .blue {
          border-bottom: 2px solid #0070FF;
          font-size: 6vw; }
      .trouble__image {
        padding-bottom: 10vw; }
        .trouble__image::before {
          font-size: 3.4vw;
          bottom: 14vw; } }

.solution {
  background-color: white;
  background-image: url("../images/solution.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -13rem;
  padding: 14rem 0 1rem; }
  .solution__text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .075em;
    line-height: 1.8;
    margin-bottom: 1em; }
    .solution__text .strong {
      position: relative; }
      .solution__text .strong::before {
        position: absolute;
        content: "・";
        color: #F18B00;
        text-align: center;
        left: 50%;
        transform: translate(-50%);
        top: -.8em;
        font-size: 0.6em; }
    .solution__text .grd {
      font-size: 2.2rem;
      color: #F18B00;
      background: linear-gradient(-150deg, #E71A0F 0%, #F18B00 70%, #FFE300 100%);
      background: -webkit- linear-gradient(-150deg, #E71A0F 0%, #F18B00 70%, #FFE300 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
    .solution__text .image {
      padding-left: 2em; }
      .solution__text .image img {
        width: 29em; }
    .solution__text .large {
      font-size: 2.3rem; }
  @media screen and (max-width: 768px) {
    .solution {
      background-image: url("../images/solution-sp.webp");
      margin-top: -32vw;
      padding: 38vw 0 8vw; }
      .solution__text {
        font-size: 4.6vw;
        margin-bottom: .5em; }
        .solution__text .strong::before {
          top: -1em; }
        .solution__text .grd {
          font-size: 6.5vw; }
        .solution__text .image {
          padding-left: 0; }
          .solution__text .image img {
            width: 70%; }
        .solution__text .large {
          font-size: 7vw; } }

.reason {
  background-image: url("../images/reason.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover; }
  .reason__text {
    padding-bottom: 2em; }
    .reason__text .red {
      font-weight: 700; }
    .reason__text .font {
      font-size: 1.4rem;
      font-weight: 600; }
  .reason__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2.5rem; }
    .reason__list .image {
      filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
      padding-bottom: 1.5rem; }
      .reason__list .image img {
        border-radius: 20px; }
    .reason__list .number {
      text-align: center;
      color: white;
      font-size: 2.2rem;
      font-weight: 600;
      position: relative;
      line-height: 0;
      z-index: 2;
      padding: 0 .05em .05em 0;
      bottom: 1.5rem; }
      .reason__list .number::before {
        position: absolute;
        content: "";
        background: #F18B00;
        border-radius: 50%;
        width: 4rem;
        height: 4rem;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        bottom: 0;
        margin: auto;
        z-index: -1;
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); }
    .reason__list .head {
      text-align: center;
      font-size: 1.3rem;
      font-weight: 700;
      line-height: 1.4;
      letter-spacing: .05em;
      display: flex;
      height: 4em;
      align-items: center;
      justify-content: center; }
    .reason__list .text {
      line-height: 1.7;
      text-align: justify; }
  @media screen and (max-width: 768px) {
    .reason {
      background-image: url("../images/reason-sp.webp"); }
      .reason__text {
        padding-bottom: 2em; }
        .reason__text .font {
          font-size: 5.2vw;
          line-height: 1.3; }
      .reason__list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 2.5rem; }
        .reason__list .image {
          padding-bottom: 5vw;
          width: 64%;
          margin: 0 auto; }
        .reason__list .number {
          font-size: 7.7vw;
          padding: 0 .05em .05em 0;
          bottom: 6vw; }
          .reason__list .number::before {
            width: 14vw;
            height: 14vw; }
        .reason__list .head {
          font-size: 4.6vw;
          height: auto;
          padding: .75em 0; }
        .reason__list .text {
          padding: 0 2em;
          font-size: 3.4vw; } }

.comparison__text {
  padding-top: 2em;
  font-size: 1.3rem; }
  .comparison__text .orange {
    font-weight: 700; }
@media screen and (max-width: 768px) {
  .comparison__eng {
    font-size: 11vw; }
  .comparison__text {
    padding-top: 1em;
    font-size: 4.3vw; } }

.step {
  background: #FFFAEB; }
  .step__list {
    padding: 2rem 0 0;
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-gap: 1.25rem; }
    .step__list .note {
      text-align: center;
      font-size: 1.3rem;
      font-weight: 500;
      letter-spacing: .05em; }
      .step__list .note .font {
        font-size: 2rem; }
    .step__list-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 2rem;
      border-radius: 20px;
      background: #FFE6BE;
      filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
      position: relative; }
      .step__list-item::before {
        position: absolute;
        content: "";
        width: 2rem;
        aspect-ratio: 1/cos(30deg);
        clip-path: polygon(50% 74%, 100% 0, 0 0);
        background: #F18B00;
        left: 50%;
        transform: translateX(-50%);
        bottom: -1.25rem; }
      .step__list-item .image {
        width: 16%; }
      .step__list-item .box {
        width: 80%; }
        .step__list-item .box .number {
          font-size: .9rem;
          font-weight: 700;
          letter-spacing: .075em; }
        .step__list-item .box .head {
          padding: .25em 0 .5em;
          font-size: 1.3rem;
          font-weight: 700;
          letter-spacing: .05em; }
        .step__list-item .box .text {
          text-align: justify;
          line-height: 1.7;
          font-size: .9rem; }
          .step__list-item .box .text02 {
            font-size: 1.2rem;
            letter-spacing: .05em;
            font-weight: 700;
            text-align: center;
            padding: 1.5em 0 .5em; }
            .step__list-item .box .text02 .comment {
              background: white;
              border-radius: 100rem;
              padding: .25em 2em;
              position: relative; }
              .step__list-item .box .text02 .comment::before {
                position: absolute;
                content: "";
                background: white;
                width: 1.5rem;
                aspect-ratio: 1/cos(30deg);
                clip-path: polygon(50% 0, 100% 100%, 0 100%);
                left: 50%;
                transform: translateX(-50%);
                top: -.75em; }
      .step__list-item:last-child {
        background: #FFE1D7; }
        .step__list-item:last-child .box .number {
          color: #E71A0F; }
        .step__list-item:last-child::before {
          display: none; }
  @media screen and (max-width: 768px) {
    .step__list {
      padding: 1rem 0 0;
      grid-gap: 1.25rem; }
      .step__list .note {
        font-size: 5vw; }
        .step__list .note .font {
          font-size: 6vw; }
      .step__list-item {
        width: 98%;
        margin: 0 auto;
        padding: 1.5rem;
        align-items: start;
        border-radius: 15px; }
        .step__list-item04 {
          padding: 1.5rem 1.5rem 4rem; }
        .step__list-item::before {
          width: 2rem;
          bottom: -1.25rem; }
        .step__list-item .image {
          width: 24%; }
        .step__list-item .box {
          width: 70%; }
          .step__list-item .box .number {
            font-size: 3.1vw; }
          .step__list-item .box .head {
            font-size: 4vw; }
          .step__list-item .box .text {
            font-size: 3.4vw; }
            .step__list-item .box .text02 {
              font-size: 3.4vw;
              position: absolute;
              left: 50%;
              transform: translateX(-50%);
              width: 100%; }
              .step__list-item .box .text02 .comment::before {
                width: 3vw; } }

.faq {
  background: #00ACDE;
  background-image: url("../images/faq.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover; }
  .faq__eng {
    opacity: .3; }
    .faq__eng .grd {
      background: white;
      background: -webkit- white;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
  .faq__heading {
    color: white; }
    .faq__heading::before {
      background: white; }
  .faq .accordion {
    margin-bottom: 1em; }
    .faq .accordion:last-child {
      margin-bottom: 0; }
  .faq .accordion summary {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 1em;
    color: #0070FF;
    font-weight: 700;
    font-size: 1.2rem;
    background: white;
    border-radius: 5px;
    cursor: pointer; }
    .faq .accordion summary::-webkit-details-marker {
      display: none; }
    .faq .accordion summary::after {
      position: absolute;
      content: "";
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100%;
      background-image: url("../images/faq_button.svg");
      right: 1rem;
      width: 1.3rem;
      height: 1.3rem;
      transition: transform .3s; }
  .faq .accordion[open] summary::after {
    transform: rotate(180deg); }
  .faq .icon {
    font-size: 1.4rem;
    font-weight: 600;
    margin-right: .25em; }
  .faq .answer {
    color: white;
    transition: transform .5s, opacity .5s;
    display: flex;
    padding: 1.5em; }
    .faq .answer .text {
      text-align: justify;
      line-height: 1.7; }
  @media screen and (max-width: 768px) {
    .faq {
      background-image: url("../images/faq-sp.webp");
      background-position: top; }
      .faq .accordion summary {
        line-height: 1.3;
        font-size: 4vw;
        padding: .5em 1.5em .5em .5em;
        align-items: flex-start; }
        .faq .accordion summary::after {
          right: .5em;
          top: .75em;
          width: 3vw;
          height: 3vw; }
      .faq .icon {
        font-size: 4.8vw;
        margin: -.15em .25em 0 0; }
      .faq .answer {
        padding: 1em 1.5em 1em .75em; }
        .faq .answer .text {
          margin-top: -.25em;
          font-size: 3.4vw; } }

.company {
  background-image: url("../images/comapny.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover; }
  .company__inner {
    max-width: 750px;
    margin: 0 auto; }
  .company__image {
    margin: 0 auto;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000000;
    align-items: center;
    display: flex;
    justify-content: center; }
    .company__image img {
      width: 20rem;
      text-align: center; }
  .company__list {
    padding-top: 2rem;
    width: fit-content;
    margin: 0 auto; }
    .company__list-item {
      display: flex;
      align-items: baseline;
      margin-bottom: 1em; }
      .company__list-item:last-child {
        margin-bottom: 0; }
      .company__list-item .head {
        width: 11em;
        font-weight: 700;
        letter-spacing: .075em;
        padding-left: 1em;
        position: relative; }
        .company__list-item .head::before {
          position: absolute;
          content: "";
          width: 3px;
          height: 100%;
          background: #000000;
          left: 0; }
      .company__list-item .body {
        line-height: 1.8; }
  @media screen and (max-width: 768px) {
    .company {
      background-image: url("../images/comapny.webp"); }
      .company__image {
        padding-bottom: .25rem; }
        .company__image img {
          width: 46%; }
      .company__list-item {
        display: block;
        font-size: 3.4vw; }
        .company__list-item .head {
          width: auto;
          margin-bottom: .25em; } }

/* contact */
.contact {
  background-image: url("../images/contact.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover; }
  .contact__inner {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto; }
  .contact__heading {
    padding: 0 0 2rem; }
    @media screen and (max-width: 768px) {
      .contact__heading {
        padding: 0 0 5vw; } }
  .contact .form__button {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); }
  @media screen and (max-width: 768px) {
    .contact {
      background-image: url("../images/contact-sp.webp"); } }

/*
	Footer
------------------------------------------------------------ */
.footer .copyright {
  background: #F18B00;
  background: linear-gradient(-90deg, #E71A0F 0%, #F18B00 100%);
  padding: 2rem 0;
  color: white; }
  .footer .copyright__text {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8em;
    text-align: center; }
@media screen and (max-width: 768px) {
  .footer .copyright {
    padding: 1em 0 5.25em; }
    .footer .copyright__text {
      font-size: 2.6vw; } }

/* Floating area */
.floating {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000; }
  .floating__button {
    display: none; }
    .floating__button a {
      transition: all .2s ease-in-out;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 3.5em;
      width: 24rem;
      background: #0070FF;
      background: linear-gradient(90deg, #0070FF 0%, #00ACDE 100%);
      border-radius: 100rem;
      text-align: center;
      color: white;
      letter-spacing: .1em;
      font-weight: 700;
      font-size: 1.4rem;
      position: relative; }
      .floating__button a:hover {
        opacity: .7; }
      @media screen and (max-width: 768px) {
        .floating__button a:hover {
          opacity: 1; } }
      .floating__button a::before {
        position: absolute;
        content: "";
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        background-image: url("../images/icon_free.svg");
        left: 1em;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 2.5em;
        height: 2.5em;
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); }
      .floating__button a .icon img {
        width: 1.5em;
        margin-right: .5em; }
      .floating__button a .comment {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -1.25em;
        color: #0070FF;
        font-size: 1.1rem;
        background: white;
        border-radius: 100rem;
        border: 1px solid #0070FF;
        z-index: 2;
        width: 14em;
        height: 2em;
        display: flex;
        align-items: center;
        justify-content: center; }
        .floating__button a .comment::before {
          position: absolute;
          content: "";
          left: 50%;
          transform: translate(-50%);
          width: 20px;
          aspect-ratio: 1/cos(30deg);
          clip-path: polygon(50% 64%, 100% 0, 0 0);
          background: white;
          bottom: -16px;
          z-index: -1; }
        .floating__button a .comment::after {
          position: absolute;
          content: "";
          left: 50%;
          transform: translate(-50%);
          width: 22px;
          aspect-ratio: 1/cos(30deg);
          clip-path: polygon(50% 64%, 100% 0, 0 0);
          background: #0070FF;
          bottom: -19px;
          z-index: -2; }
      @media screen and (max-width: 768px) {
        .floating__button a {
          height: 3.5em;
          width: 100%;
          font-size: 4.8vw;
          padding-left: 1.25em; }
          .floating__button a::before {
            left: 1em;
            width: 2.25em;
            height: 2.25em; }
          .floating__button a .icon img {
            width: 1.25em;
            margin-right: .25em; }
          .floating__button a .comment {
            top: -1.25em;
            font-size: 3.6vw;
            border: 1px solid #0070FF;
            width: 14em;
            height: 2em; }
            .floating__button a .comment::before {
              clip-path: polygon(50% 50%, 80% 0, 20% 0); }
            .floating__button a .comment::after {
              clip-path: polygon(50% 50%, 80% 0, 20% 0); } }
      .floating__button a .icon {
        display: none; }
  @media screen and (max-width: 768px) {
    .floating__button {
      display: block; }
      .floating__button a {
        padding-left: 1.25em;
        border-radius: 0; }
        .floating__button a::before {
          width: 2.5em;
          height: 2.5em; }
        .floating__button a .icon {
          display: flex; }
          .floating__button a .icon img {
            width: 1.75em;
            margin-right: .5em; } }
