@charset "UTF-8";

:root {
  --text-color: #000;
  --background-color: #fff;
  --viewport-unit-sp: calc(100vw / 400); /* viewportサイズ400px */
  --base-font-size: 16; /* 基準のフォントサイズ */
  --rem-unit: calc(1rem / var(--base-font-size));
  --letter-spacing-sm: 0.04em;
  --letter-spacing-md: 0.12em;
  --letter-spacing-lg: 0.18em;
  --primary-color: #008eb5;
  --secondary-color: #e9f0f1;
}

/* Reset CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  width: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
input, button, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: normal;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", "Arial", sans-serif;
  font-feature-settings: "palt";
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
  color: var(--text-color);
}
/*--------------- display ---------------*/
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
}
@media (min-width: 960px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
}
.marker-yellow {
  background: linear-gradient(transparent 60%, #fffc00 60%);
}
.marker-blue {
  background: linear-gradient(transparent 60%, #7fdaed 60%);
}
.page-wrap {
  position: relative;
  margin-top: 64px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.fixed-conversion-area {
  opacity: 0;
  transition: opacity .3s;
  position: fixed;
  bottom: 0;
  z-index: 20;
  width: 100%;
  display: grid;
  grid-template-columns: 56% 44%;
  &.visible {
    opacity: 1;
  }
  .btn-consultation {
    a {
      position: relative;
      height: calc(62 * var(--viewport-unit-sp));
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0 calc(10 * var(--viewport-unit-sp));
      font-size: calc(20 * var(--viewport-unit-sp));
      font-weight: 900;
      letter-spacing: var(--letter-spacing-lg);
      color: #fff;
      background: linear-gradient(to right, #008eb5, #00afc3);
      &::before {
        content: "";
        display: block;
        width: calc(74 * var(--viewport-unit-sp));
        height: calc(74 * var(--viewport-unit-sp));
        margin-top: calc(-14 * var(--viewport-unit-sp));
        margin-left: calc(-48 * var(--viewport-unit-sp));
        background: url("../../img/llmo-consulting/img_conversion_btn_consultation_image.svg") no-repeat center  / 100%;
      }
    }
    span {
      display: none;
    }
    img {
      width: calc(22 * var(--viewport-unit-sp));
    }
  }
  .btn-diagnosis {
    a {
      height: calc(62 * var(--viewport-unit-sp));
      display: flex;
      justify-content: center;
      align-items: center;
      background: url("../../img/llmo-consulting/img_conversion_btn_diagnosis_arrow.svg") no-repeat right calc(13 * var(--viewport-unit-sp)) center / calc(16 * var(--viewport-unit-sp));
      background-color: #fffc00;
    }
    img {
      width: calc(122 * var(--viewport-unit-sp));
      margin-left: calc(-22 * var(--viewport-unit-sp));
    }
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}
.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
  border-radius: 5px;
}
.close {
  position: absolute;
  top: 30px;
  right: calc(10 * var(--viewport-unit-sp));
  color: #fff;
  font-size: calc(32 * var(--rem-unit));
  font-weight: bold;
  cursor: pointer;
}
.page-title {
  background: #000;
  padding: 1rem;
  h1 {
    color: #fff;
    font-size: calc(24 * var(--rem-unit));
    font-weight: 900;
    text-align: center;
    letter-spacing: var(--letter-spacing-md);
  }
}
.mainvisual {
  position: relative;
  padding: 2rem calc(30 * var(--viewport-unit-sp));
  &::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: calc(-28 * var(--viewport-unit-sp));
    width: 100%;
    height: calc(28.5 * var(--viewport-unit-sp));
    background-color: #fff;
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  }
  .mainvisual-catch{
    img {
      width: 100%;
    }
  }
  .mainvisual-inner {
    position: relative;
    &::before {
      content: "";
      position: absolute;
      top: calc(85 * var(--viewport-unit-sp));
      z-index: -1;
      display: block;
      width: calc(314 * var(--viewport-unit-sp));
      height: calc(377 * var(--viewport-unit-sp));
      background: url("../../img/llmo-consulting/img_mainvisual_search.svg") no-repeat center;
    }
    &::after {
      content: "";
      position: absolute;
      top: calc(424 * var(--viewport-unit-sp));
      z-index: -1;
      display: block;
      width: calc(326 * var(--viewport-unit-sp));
      height: calc(330 * var(--viewport-unit-sp));
      background: url("../../img/llmo-consulting/img_mainvisual_images_ai_sp.svg") no-repeat center;
    }
  }
  .mainvisual-title {
    margin-bottom: 2.375rem;
    img {
      width: 100%;
    }
  }
  .mainvisual-discription {
    margin-bottom: calc(34 * var(--viewport-unit-sp));
    font-size: calc(20 * var(--viewport-unit-sp));
    font-weight: 900;
    letter-spacing: var(--letter-spacing-sm);
    line-height: 1.6;
    span {
      color: var(--primary-color);
    }
  }
  .mainvisual-text {
    display: inline;
    font-size: calc(14 * var(--viewport-unit-sp));
    font-weight: 900;
    letter-spacing: var(--letter-spacing-sm);
    line-height: 1.6;
    background: linear-gradient(transparent 60%, #fff 60%);
  }
  .mainvisual-form {
    display: none;
  }
  .mainvisual-conversion-area {
    margin-top: calc(250 * var(--viewport-unit-sp));
    display: grid;
    gap: calc(20 * var(--rem-unit)) 0;
    .btn-consultation {
      a {
        height: calc(114 * var(--viewport-unit-sp));
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0 calc(20 * var(--viewport-unit-sp));
        font-size: calc(28 * var(--viewport-unit-sp));
        font-weight: 900;
        letter-spacing: var(--letter-spacing-lg);
        color: #fff;
        background: linear-gradient(to right, #008eb5, #00afc3);
        border-radius: 10px;
        box-shadow: 0 8px #dbdbdb;
      }
      img {
        width: calc(30 * var(--viewport-unit-sp));
      }
    }
    .btn-diagnosis {
      a {
        height: calc(78 * var(--viewport-unit-sp));
        display: flex;
        justify-content: center;
        align-items: center;
        background: url("../../img/llmo-consulting/img_conversion_btn_diagnosis_arrow.svg") no-repeat right calc(13 * var(--viewport-unit-sp)) center / calc(16 * var(--viewport-unit-sp));
        background-color: #fffc00;
        border-radius: 10px;
        box-shadow: 0 8px #dbdbdb;
      }
      img {
        width: calc(234 * var(--viewport-unit-sp));
      }
    }
  }
}
.issue {
  position: relative;
  padding: calc(80 * var(--rem-unit)) calc(24 * var(--viewport-unit-sp));
  background-color: var(--secondary-color);
  &::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: calc(-28 * var(--viewport-unit-sp));
    width: 100%;
    height: calc(28.5 * var(--viewport-unit-sp));
    background-color: var(--secondary-color);
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  }
  .section-title {
    margin-bottom: calc(56 * var(--rem-unit));
    font-size: calc(27 * var(--rem-unit));
    font-weight: 900;
    letter-spacing: var(--letter-spacing-md);
    text-align: center;
    span {
      color: var(--primary-color);
      border-bottom: 2px solid var(--primary-color);
    }
  }
  .issue-list {
    .issue-list-item {
      display: grid;
      place-items: center;
      padding: calc(26 * var(--rem-unit)) 0;
      border-bottom: 1px solid #000;
      &:first-child {
        padding-top: 0;
      }
      &:last-child {
        border-bottom: none;
      }
      &:nth-child(1) {
        .issue-list-item-imagee {
          width: calc(262 * var(--rem-unit));
        }
      }
      &:nth-child(2) {
        .issue-list-item-imagee {
          width: calc(210 * var(--rem-unit));
        }
      }
      &:nth-child(3) {
        .issue-list-item-imagee {
          width: calc(185 * var(--rem-unit));
        }
      }
    }
    .issue-list-item-title {
      position: relative;
      place-content: center;
      width: 100%;
      max-width: 376px;
      height: calc(114 * var(--rem-unit));
      margin-bottom: calc(56 * var(--rem-unit));
      background-color: #fff;
      border-radius: 50rem;
      box-shadow: 5px 8px #dbdbdb;
      .issue-list-item-title-detail {
        font-size: calc(25 * var(--rem-unit));
        font-weight: 900;
        text-align: center;
        line-height: 1.5;
        letter-spacing: var(--letter-spacing-md);
      }
      .bubble {
        position: absolute;
        right: 56px;
        bottom: calc(-44 * var(--rem-unit));
        span {
          display: block;
          border-radius: 50rem;
          background-color: #fff;
          box-shadow: 5px 8px #dbdbdb;
          &:nth-child(1) {
            width: 30px;
            height: 30px;
          }
          &:nth-child(2) {
            width: 16px;
            height: 16px;
            margin-top: -2px;
            margin-left: -9px;
          }
          &:nth-child(3) {
            width: 12px;
            height: 12px;
            margin-left: -20px;
          }
        }
      }
    }
    .issue-list-item-imagee {
      margin-bottom: calc(28 * var(--rem-unit));
    }
    .issue-list-item-after {
      position: relative;
      z-index: 2;
      height: calc(88 * var(--rem-unit));
      .issue-list-item-after-text {
        position: relative;
        z-index: 1;
        margin-top: 1.2rem;
        font-size: calc(22 * var(--rem-unit));
        font-weight: 900;
        color: var(--primary-color);
        letter-spacing: var(--letter-spacing-md);
        text-shadow:
          5px  5px 1px #e3ecee,
          -5px  5px 1px #e3ecee,
          5px -5px 1px #e3ecee,
          -5px -5px 1px #e3ecee,
          5px  0px 1px #e3ecee,
          0px  5px 1px #e3ecee,
          -5px  0px 1px #e3ecee,
          0px -5px 1px #e3ecee;
      }
      &::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        margin: auto;
        width: calc(58 * var(--rem-unit));
        height: calc(88 * var(--rem-unit));
        background: url("../../img/llmo-consulting/img_issue_arrow.svg") no-repeat center center;
      }
    }
    .issue-list-item-text {
      position: relative;
      margin-top: calc(-15 * var(--rem-unit)) ;
      padding: calc(24 * var(--rem-unit));
      background-color: #fff;
      border-radius: 12px;
      font-weight: 900;
      line-height: 2;
      letter-spacing: var(--letter-spacing-sm);
      &.js-hidden {
        overflow: hidden;
        height: calc(128 * var(--rem-unit));
        &::before {
          position: absolute;
          top: 0;
          left: 0;
          content: "";
          display: block;
          width: 100%;
          height: 100%;
          background: linear-gradient(to bottom, transparent, #fff);
        }
      }
    }
    .js-open-text {
      position: absolute;
      right: 8px;
      bottom: 8px;
      z-index: 1;
      width: 24px;
      height: 24px;
      background: #fff;
      border: 1px solid #000;
      border-radius: 50rem;
      &::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        display: block;
        content: "";
        width: 10px;
        height: 1px;
        background: #000;
      }
      &::after {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        display: block;
        content: "";
        width: 1px;
        height: 10px;
        background: #000;
      }
      &.active {
        &::after {
          display: none;
        }
      }
    }
  }
}
.service {
  position: relative;
  padding: calc(80 * var(--rem-unit)) calc(24 * var(--viewport-unit-sp));
  .service-title {
    display: grid;
    place-content: center;
    margin-bottom: calc(24 * var(--rem-unit));
    img {
      width: calc(272 * var(--rem-unit));
    }
  }
  .service-summary {
    position: relative;
    border: 6px solid #ededed;
    margin-bottom: calc(80 * var(--rem-unit));
    &::after {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      z-index: 1;
      bottom: calc(-38 * var(--viewport-unit-sp));
      width: calc(212 * var(--viewport-unit-sp));
      height: calc(38 * var(--viewport-unit-sp));
      margin: 0 auto;
      background-color: var(--secondary-color);
      clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
    }
    .summary-header {
      padding: calc(42 * var(--rem-unit)) calc(25 * var( --rem-unit));
      border-bottom: 6px solid #ededed;
      .summary-header-title {
        position: relative;
        width: fit-content;
        margin: 0 auto calc(30 * var(--rem-unit));
        font-size: calc(22 * var(--rem-unit));
        font-weight: 900;
        line-height: 1.7;
        text-align: center;
        letter-spacing: var(--letter-spacing-sm);
        span {
          padding-bottom: 4px;
          background: linear-gradient(transparent 96%, #000 96%);
        }
      }
      .summary-header-text {
        font-size: calc(20 * var(--rem-unit));
        font-weight: 900;
        line-height: 2;
        .small-text {
          display: inline-block;
          margin-top: calc(16 * var(--rem-unit));
          font-size: calc(12 * var(--rem-unit));
          line-height: 1.5;
        }
      }
    }
  }
  .summary-body-pc {
    display: none;
  }
  .summary-body-sp {
    display: grid;
    gap: calc(24 * var(--rem-unit)) 0;
    padding: calc(42 * var(--rem-unit)) calc(25 * var( --rem-unit));
    .summary-comparison {
      position: relative;
      .summary-comparison-title {
        height: calc(62 * var(--rem-unit));
        padding: calc(10 * var(--rem-unit)) 0;
        font-size: calc(17 * var(--rem-unit));
        font-weight: 900;
        line-height: 1.3;
        letter-spacing: var(--letter-spacing-md);
        color: #fff;
        text-align: center;
        border-radius: 10px 10px 0 0;
        .small-text {
          display: block;
          font-size: calc(11 * var(--rem-unit));
        }
      }
      table {
        width: 100%;
        border: 6px solid #ededed;
      }
      th,td {
        padding: calc(16 * var(--rem-unit));
        border: 6px solid #ededed;
        font-size: calc(12 * var(--rem-unit));
        font-weight: 900;
      }
      th {
        text-align: left;
        width: calc(110 * var(--rem-unit))
      }
    }
    .summary-llmo {
      .summary-comparison-title {
        background-color: #00b6e0;
      }
    }
    .summary-seo {
      .summary-comparison-title {
        background-color: #a9a9a9;
      }
    }
  }
  .service-sub-title {
    margin-bottom: calc(30 * var(--rem-unit));
    font-size: calc(24 * var(--rem-unit));
    font-weight: 900;
    text-align: center;
    letter-spacing: var(--letter-spacing-sm);
  }
  .service-summary--comparison {
    position: relative;
    padding: calc(24 * var(--rem-unit)) calc(25 * var( --rem-unit));
    img {
      width: min-content;
      margin: 0 auto;
    }
  }
  .service-catch {
   img {
      width: min-content;
      margin: 0 auto;
    }
  }
}
.features {
  position: relative;
  margin-top: calc(-144 * var(--rem-unit));
  padding: calc(80 * var(--rem-unit)) calc(24 * var(--viewport-unit-sp)) 1rem;
  background-color: var(--secondary-color);
  &::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(-28 * var(--viewport-unit-sp));;
    left: 0;
    z-index: 1;
    width: 100%;
    height: calc(28.5 * var(--viewport-unit-sp));
    background-color: var(--secondary-color);
    clip-path: polygon(50% 100%, 100% 0, 100% 100%, 0 100%, 0 0);
  }
  &::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: calc(-28 * var(--viewport-unit-sp));
    width: 100%;
    height: calc(28.5 * var(--viewport-unit-sp));
    background-color: var(--secondary-color);
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  }
  .features-title {
    display: grid;
    place-content: center;
    margin-bottom: calc(50 * var(--rem-unit));
    img {
      width: calc(275 * var(--rem-unit));
    }
  }
  .features-catch {
    display: grid;
    place-content: center;
    margin-bottom: calc(24 * var(--rem-unit));
    img {
      width: calc(214 * var(--rem-unit));
    }
  }
  .features-list {
    display: grid;
    gap: 1rem 0;
    margin-bottom: 1rem;
    .features-list-item {
      background-color: #fff;
      padding: calc(40 * var(--rem-unit)) calc(36 * var(--rem-unit));
    }
    .features-list-item-title {
      margin-bottom: calc(24 * var(--rem-unit));
      font-size: calc(26 * var(--rem-unit));
      font-weight: 900;
      text-align: center;
      letter-spacing: var(--letter-spacing-sm);
    }
    .features-list-item-text {
      font-size: calc(14 * var(--rem-unit));
      font-weight: 900;
      line-height: 2;
      letter-spacing: var(--letter-spacing-md);
    }
  }
  .features-image-sp {
    display: grid;
    place-content: center;
    margin-top: calc(30 * var(--rem-unit));
    img {
      width: calc(176 * var(--rem-unit));
    }
  }
}
.conversion-area {
  position: relative;
  padding: calc(80 * var(--rem-unit)) calc(24 * var(--viewport-unit-sp));
  background: linear-gradient(to right, #008dc6, #00afc4);
  .conversion-area-title {
    margin-bottom: calc(30 * var(--rem-unit));
    font-size: calc(25 * var(--rem-unit));
    font-weight: 900;
    letter-spacing: var(--letter-spacing-lg);
    text-align: center;
    color: #fff;
    span {
      color: #fffc00;
    }
  }
  .btn-consultation {
    margin-bottom: calc(50 * var(--rem-unit));
    a {
      height: calc(114 * var(--viewport-unit-sp));
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0 calc(20 * var(--viewport-unit-sp));
      font-size: calc(30 * var(--viewport-unit-sp));
      font-weight: 900;
      letter-spacing: var(--letter-spacing-lg);
      color: #fff;
      background: linear-gradient(to right bottom, #00afc3, #008eb5);
      border-radius: 50rem;
      box-shadow:
        -2px 8px #fff,
        -2px -2px #fff,
        2px -2px #fff,
        2px 8px #fff;
    }
    img {
      width: calc(22 * var(--viewport-unit-sp));
    }
  }
  .btn-diagnosis {
    img {
      width: 100%;
    }
  }
  .conversion-area-image {
    position: absolute;
    right: 0;
    left: 0;
    bottom: calc(-104 * var(--rem-unit));
    display: flex;
    justify-content: center;
    img {
      width: fit-content;
      height: calc(130 * var(--rem-unit));
    }
  }
}
.result {
  position: relative;
  padding: calc(150 * var(--rem-unit)) calc(24 * var(--viewport-unit-sp)) calc(60 * var(--rem-unit));
  &::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: calc(-28 * var(--viewport-unit-sp));
    width: 100%;
    height: calc(28.5 * var(--viewport-unit-sp));
    background-color: #fff;
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  }
  .result-title {
    margin-bottom: calc(70 * var(--rem-unit));
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: var(--letter-spacing-sm);
    text-align: center;
    span {
      color: var(--primary-color);
      border-bottom: 1.5px solid var(--primary-color);
    }
  }
  .result-list {
    display: grid;
    gap: calc(60 * var(--rem-unit)) calc(40 * var(--rem-unit));
    counter-reset: result-number;
    .result-list-item {
      position: relative;
      padding: 3px;
      border-radius: 15px;
      background: linear-gradient(to right, #008dc6, #00afc4);
      &::after {
        position: absolute;
        top: calc(-20 * var(--rem-unit));
        right: 0;
        left: 0;
        content: "";
        display: block;
        counter-increment: result-number;
        content: "実績." counter(result-number);
        width: calc(112 * var(--rem-unit));
        height: calc(40 * var(--rem-unit));
        margin: 0 auto;
        display: grid;
        place-content: center;
        background: linear-gradient(to right, #008dc6, #00afc4);
        border-radius: 50rem;
        font-size: calc(23 * var(--rem-unit));
        font-weight: 900;
        text-align: center;
        color: #fff;
      }
    }
    .result-list-item-inner {
      padding: calc(40 * var(--rem-unit)) calc(36 * var(--rem-unit)) calc(36 * var(--rem-unit));
      background-color: #fff;
      border-radius: 12px;

    }
    .result-list-item-data {
      position: relative;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2.5px;
        width: 100%;
        background: linear-gradient(to right, #008dc6, #00afc4);
      }
    }
    .result-list-item-data-dl {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      flex-wrap: wrap;
      font-size: calc(14 * var(--rem-unit));
      font-weight: 900;
      line-height: 1.7;
      span {
        color: var(--primary-color);
      }
      dt {
        flex-shrink: 0;
      }
    }
    .result-list-item-image {
      position: relative;
      margin-bottom: 1rem;
      img {
        width: 100%;
        border: 1px solid #cbcbcb;
        cursor: pointer;
      }
      &::before {
        content: "";
        display: block;
        width: 26px;
        height: 26px;
        position: absolute;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.4);
      }
      &::after {
        content: "";
        display: block;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 4px;
        bottom: 5px;
        background: url("../../img/llmo-consulting/ico_result_search_.svg") no-repeat center center;
      }
    }
    p {
      font-size: calc(13 * var(--rem-unit));
    }
  }
}
.point {
  position: relative;
  padding: 0 calc(24 * var(--viewport-unit-sp)) calc(80 * var(--viewport-unit-sp));
  background: linear-gradient(to bottom, #c2e5f2, #96d4e9 28%, #a1e7ec);
  &::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: calc(56 * var(--viewport-unit-sp));
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 50% 50%, 100% 0, 100% 50%, 50% 100%, 0 50%);
  }
  &::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: calc(-28 * var(--viewport-unit-sp));
    width: 100%;
    height: calc(28 * var(--viewport-unit-sp));
    background-color: #a1e7ec;
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  }
  .point-title {
    position: relative;
    z-index: 1;
    display: grid;
    place-content: center;
    margin-bottom: calc(52 * var(--rem-unit));
    img {
      width: calc(338 * var(--rem-unit));
    }
  }
  .point-list {
    display: grid;
    gap: calc(30 * var(--rem-unit)) 0;
    counter-reset: check;
    .point-list-item {
      position: relative;
      padding: calc(48 * var(--rem-unit)) calc(20 * var(--rem-unit)) calc(20 * var(--rem-unit));
      background-color: #fff;
      &::before {
        position: absolute;
        top: calc(-12 * var(--rem-unit));
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        counter-increment: check;
        content: "check.0" counter(check);
        width: calc(104 * var(--rem-unit));
        height: calc(24 * var(--rem-unit));
        color: #fff;
        font-size: calc(20 * var(--rem-unit));
        font-style: italic;
        font-weight: 900;
        background: linear-gradient(to right, #008dc6, #00afc4);
      }
    }
    .point-list-item-title {
      font-size: calc(22 * var(--rem-unit));
      font-weight: 900;
      text-align: center;
      letter-spacing: var(--letter-spacing-sm);
      padding-bottom: 1rem;
      border-bottom: 2px solid var(--primary-color);
      margin-bottom: calc(20 * var(--rem-unit));
      span {
        color: var(--primary-color);
      }
    }
    .point-list-item-image {
      width: 100%;
      margin-bottom: calc(20 * var(--rem-unit));
    }
    .point-list-item-text {
      font-size: calc(13 * var(--rem-unit));
      font-weight: 900;
      letter-spacing: var(--letter-spacing-sm);
      line-height: 2;
    }
    .point-list-item-check {
      margin-bottom: calc(30 * var(--rem-unit));
      display: grid;
      gap: 0.5rem 0;
      .point-list-item-check-detail {
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        font-size: calc(15 * var(--rem-unit));
        font-weight: 900;
        line-height: 1.7;
        &::before {
          display: block;
          content: "";
          flex-shrink: 0;
          width: 15px;
          height: 15px;
          margin: 6px 4px 0 0;
          background: url("../../img/llmo-consulting/ico_point_check.png") no-repeat center center / 100%;
        }
      }
    }
    .point-list-item-result {
      margin-top: calc(30 * var(--rem-unit));
      border: 2px solid #cbcbcb;
      border-radius: 7px;
      .point-list-item-result-title {
        padding: calc(14 * var(--rem-unit)) 0;
        text-align: center;
        font-size: calc(14 * var(--rem-unit));
        font-weight: 900;
        text-align: center;
        letter-spacing: var(--letter-spacing-md);
        background-color: #ededed;
        border-radius: 7px 7px 0 0;
      }
      .point-list-item-result-image {
        padding: calc(20 * var(--rem-unit)) calc(14 * var(--rem-unit));
        img {
          width: 100%;
        }
      }
    }
  }
}
.faq {
  position: relative;
  padding: calc(150 * var(--rem-unit)) calc(24 * var(--rem-unit)) calc(50 * var(--rem-unit));
  &::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(-17 * var(--rem-unit));
    right: calc(30 * var(--rem-unit));
    width: calc(82 * var(--rem-unit));
    height: calc(107 * var(--rem-unit));
    background: url("../../img/llmo-consulting/img_faq_image.svg") no-repeat center / 100%;
  }
  &::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: calc(-28 * var(--viewport-unit-sp));
    width: 100%;
    height: calc(28.5 * var(--viewport-unit-sp));
    background-color: #fff;
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  }
  .faq-title {
    margin-bottom: calc(40 * var(--rem-unit));
    font-size: calc(27 * var(--rem-unit));
    font-weight: 900;
    text-align: center;
    letter-spacing: var(--letter-spacing-lg);
  }
  .faq-list {
    display: grid;
    .faq-list-item {
      padding: calc(24 * var(--rem-unit)) 0;
      border-top: 1px solid #cbcbcb;
      cursor: pointer;
      &:last-child {
        border-bottom: 1px solid #cbcbcb;
      }
    }
    .faq-list-title {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      position: relative;
      font-size: calc(17 * var(--rem-unit));
      font-weight: 900;
      letter-spacing: var(--letter-spacing-md);
      &.active {
         .accordion-state {
          transform: rotate(45deg);
         }
      }
    }
    .accordion-state {
      position: relative;
      margin-left: auto;
      width: 18px;
      height: 18px;
      &::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        content: "";
        display: block;
        width: 18px;
        height: 1px;
        background: var(--primary-color);
      }
      &::after {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        content: "";
        display: block;
        width: 1px;
        height: 18px;
        background: var(--primary-color);
      }
    }
    .faq-list-text {
      opacity: 0;
      visibility: hidden;
      max-height: 0;
      font-size: calc(13 * var(--rem-unit));
      font-weight: 900;
      letter-spacing: var(--letter-spacing-md);
      transition: .2s;
      &.open {
        opacity: 1;
        visibility: visible;
        max-height: fit-content;
        margin-top:calc(24 * var(--rem-unit));
      }
    }
  }
}
.conversion-form {
  position: relative;
  padding: calc(80 * var(--rem-unit)) calc(24 * var(--viewport-unit-sp));
  background: linear-gradient(to right, #008dc6, #00afc4);
  .conversion-form-sub-title {
    margin-bottom: calc(24 * var(--rem-unit));
    font-size: calc(25 * var(--rem-unit));
    font-weight: 900;
    text-align: center;
    letter-spacing: var(--letter-spacing-lg);
    color: #fff;
    span {
      color: #fffc00;
    }
  }
  .conversion-form-title {
    margin-bottom: calc(40 * var(--rem-unit));
    font-size: calc(50 * var(--rem-unit));
    font-weight: 900;
    text-align: center;
    letter-spacing: var(--letter-spacing-lg);
    color: #fff;
  }
  .form {
    border-radius: 46px;
    padding: calc(48 * var(--rem-unit));
    background-color: #fff;
  }
}
.tel-area {
  position: relative;
  padding: calc(48 * var(--rem-unit)) calc(24 * var(--viewport-unit-sp));
  .tel-area-text {
    font-size: 1rem;
    font-weight: 900;
    text-align: center;
  }
  .tel {
    font-size: calc(42 * var(--rem-unit));
    font-weight: 900;
    text-align: center;
  }
  .tel-text {
    font-size: 1rem;
    font-weight: 900;
    text-align: center;
    color: #989898;
  }
}
@media (min-width: 768px) {
  .modal-content {
    max-width: 80%;
    max-height: 70%;
  }
  .fixed-conversion-area {
    right: 0;
    bottom: calc(24 * var(--rem-unit));
    width: calc(284 * var(--rem-unit));
    display: grid;
    gap: calc(20 * var(--rem-unit)) 0;
    grid-template-columns: none;
    .btn-consultation {
      a {
        height: calc(134 * var(--rem-unit));
        gap: 0 calc(30 * var(--rem-unit));
        font-size: calc(30 * var(--rem-unit));
        line-height: 1.4;
        border-radius: 12px 0 0 12px;
        box-shadow: 0 8px #dbdbdb;
        transition: transform .2s, box-shadow .2s;
        &::before {
          display: none;
        }
        &:hover {
          box-shadow: none;
          transform: translateY(3px);
        }
      }
      span {
        display: block;
      }
      img {
        width: calc(40 * var(--rem-unit));
      }
    }
    .btn-diagnosis {
      a {
        height: calc(80 * var(--rem-unit));
        background: url("../../img/llmo-consulting/img_conversion_btn_diagnosis_arrow.svg") no-repeat right calc(13 * var(--rem-unit)) center / calc(16 * var(--rem-unit));
        background-color: #fffc00;
        border-radius: 12px 0 0 12px;
        box-shadow: 0 8px #dbdbdb;
        transition: transform .2s, box-shadow .2s;
        &:hover {
          box-shadow: none;
          transform: translateY(3px);
        }
      }
      img {
        flex-shrink: 0;
        width: calc(234 * var(--rem-unit));
        margin-left: calc(-22 * var(--rem-unit));
      }
    }
  }
  .mainvisual {
    padding: calc(74 * var(--rem-unit)) calc(30 * var(--rem-unit)) calc(50 * var(--rem-unit));
    &::after{
      bottom: calc(-99 * var(--rem-unit));
      height: calc(100 * var(--rem-unit));
    }
    .mainvisual-catch{
      img {
        width: calc(710 * var(--rem-unit));
        margin: 0 auto;
      }
    }
    .mainvisual-inner {
      width: calc(710 * var(--rem-unit));
      margin: 0 auto;
      &::before {
        top: calc(168 * var(--rem-unit));
        left: 0;
        width: calc(664 * var(--rem-unit));
        height: calc(777 * var(--rem-unit));
      }
      &::after {
        top: calc(104 * var(--rem-unit));
        right: 0;
        width: calc(343 * var(--rem-unit));
        height: calc(652 * var(--rem-unit));
        background: url("../../img/llmo-consulting/img_mainvisual_images_ai_pc.svg") no-repeat center;
      }
    }
    .mainvisual-title {
      position: relative;
      z-index: 2;
      margin-bottom: calc(40 * var(--rem-unit));
      img {
        width: calc(710 * var(--rem-unit));
        margin: 0 auto;
      }
    }
    .mainvisual-discription {
      width: calc(710 * var(--rem-unit));
      margin: 0 auto calc(10 * var(--rem-unit));
      font-size: calc(26 * var(--rem-unit));
    }
    .mainvisual-text {
      width: calc(710 * var(--rem-unit));
      margin: 0 auto calc(10 * var(--rem-unit));
      font-size: calc(17 * var(--rem-unit));
      background-color: transparent;
    }
    .mainvisual-form {
      display: none;
    }
    .mainvisual-conversion-area {
      display: none;
      margin-top: 0;
      .btn-consultation {
        a {
          width: calc(284 * var(--rem-unit));
          height: calc(134 * var(--rem-unit));
          gap: 0 calc(20 * var(--rem-unit));
          font-size: calc(28 * var(--rem-unit));
        }
        img {
          width: calc(40 * var(--rem-unit));
        }
      }
      .btn-diagnosis {
        a {
          width: calc(284 * var(--rem-unit));
          height: calc(78 * var(--rem-unit));
          background: url("../../img/llmo-consulting/img_conversion_btn_diagnosis_arrow.svg") no-repeat right calc(12 * var(--rem-unit)) center / calc(16 * var(--rem-unit));
          background-color: #fffc00;
        }
        img {
          width: calc(234 * var(--rem-unit));
        }
      }
    }
  }
  .issue {
    padding: calc(230 * var(--rem-unit)) calc(40 * var(--rem-unit)) calc(70 * var(--rem-unit));
    &::after{
      bottom: calc(-99 * var(--rem-unit));
      height: calc(100 * var(--rem-unit));
    }
    .section-title {
      margin-bottom: calc(70 * var(--rem-unit));
      font-size: calc(50 * var(--rem-unit));
    }
    .issue-list {
      .issue-list-item {
        padding: calc(26 * var(--rem-unit)) 0;
        &:nth-child(1) {
          .issue-list-item-imagee {
            width: calc(285 * var(--rem-unit));
          }
        }
        &:nth-child(2) {
          .issue-list-item-imagee {
            width: calc(230 * var(--rem-unit));
          }
        }
        &:nth-child(3) {
          .issue-list-item-imagee {
            width: calc(202 * var(--rem-unit));
          }
        }
      }
      .issue-list-item-title {
        height: calc(125 * var(--rem-unit));
        margin-bottom: calc(56 * var(--rem-unit));
        .issue-list-item-title-detail {
          font-size: calc(24 * var(--rem-unit));
        }
      }
      .issue-list-item-after {
        height: calc(95 * var(--rem-unit));
        .issue-list-item-after-text {
          margin-top: 1.2rem;
          font-size: calc(20 * var(--rem-unit));
        }
        &::before {
          width: calc(63 * var(--rem-unit));
          height: calc(95 * var(--rem-unit));
        }
      }
      .issue-list-item-text {
        margin-top: calc(-18 * var(--rem-unit)) ;
        padding: calc(44 * var(--rem-unit)) calc(34 * var(--rem-unit));
        &.js-hidden {
          overflow: visible;
          height: 100%;
          &::before {
            display: none;
          }
        }
      }
      .js-open-text {
        display: none;
      }
    }
  }
  .service {
    padding: calc(170 * var(--rem-unit)) calc(40 * var(--rem-unit)) calc(30 * var(--rem-unit));
    .service-title {
      margin-bottom: calc(80 * var(--rem-unit));
      img {
        width: calc(945 * var(--rem-unit));
      }
    }
    .service-summary {
      margin-bottom: calc(130 * var(--rem-unit));
      &::after {
        bottom: calc(-61 * var(--rem-unit));
        width: calc(340 * var(--rem-unit));
        height: calc(61 * var(--rem-unit));
      }
      .summary-header {
        padding: calc(42 * var(--rem-unit)) calc(25 * var( --rem-unit));
        .summary-header-title {
          margin: 0 auto calc(30 * var(--rem-unit));
          font-size: calc(30 * var(--rem-unit));
        }
        .summary-header-text {
          width: fit-content;
          margin: 0 auto;
        }
      }
    }
    .summary-body-sp {
      .summary-comparison {
        .summary-comparison-title {
          height: calc(75 * var(--rem-unit));
          font-size: calc(25 * var(--rem-unit));
          .small-text {
            font-size: calc(12 * var(--rem-unit));
          }
        }
        th,td {
          font-size: 1rem;
        }
      }
    }
    .service-sub-title {
      margin-bottom: calc(70 * var(--rem-unit));
      font-size: calc(42 * var(--rem-unit));
    }
    .service-summary--comparison {
      padding: calc(52 * var(--rem-unit)) calc(44 * var( --rem-unit)) 1rem;
      img {
        width: calc(1098 * var(--rem-unit));
      }
    }
    .service-catch {
      img {
        width: calc(966 * var(--rem-unit));
      }
    }
  }
  .features {
    margin-top: calc(-200 * var(--rem-unit));
    padding: calc(120 * var(--rem-unit)) calc(40 * var(--rem-unit)) calc(40 * var(--rem-unit));
    .features-title {
      margin-bottom: calc(50 * var(--rem-unit));
      img {
        width: calc(540 * var(--rem-unit));
      }
    }
    .features-catch {
      position: relative;
      margin-bottom: 0;
      img {
        width: calc(1190 * var(--rem-unit));
      }
    }
    .features-list {
      margin: calc(-30 * var(--rem-unit)) 0 0;
      .features-list-item {
        padding: calc(60 * var(--rem-unit)) calc(40 * var(--rem-unit));
      }
      .features-list-item-title {
        margin-bottom: calc(50 * var(--rem-unit));
        font-size: calc(30 * var(--rem-unit));
      }
      .features-list-item-text {
        font-size: calc(15 * var(--rem-unit));
      }
    }
    .features-image-sp {
      display: none;
    }
  }
  .conversion-area {
    padding: calc(200 * var(--rem-unit)) calc(40 * var(--rem-unit)) calc(100 * var(--rem-unit));
    .conversion-area-title {
      margin-bottom: calc(40 * var(--rem-unit));
      font-size: calc(29 * var(--rem-unit));
    }
    .btn-consultation {
      a {
        max-width: 100%;
        width: calc(770 * var(--rem-unit));
        height: calc(150 * var(--rem-unit));
        margin: 0 auto;
        gap: 0 calc(20 * var(--rem-unit));
        font-size: calc(56 * var(--rem-unit));
        transition: transform .2s, box-shadow .2s;
        &:hover {
          box-shadow: none;
          transform: translateY(3px);
        }
      }
      img {
        width: calc(45 * var(--rem-unit));
      }
    }
    .btn-diagnosis {
      a {
        transition: .2s;
        &:hover {
          opacity: .8;
        }
      }
      img {
        width: calc(706 * var(--rem-unit));
        margin: 0 auto;
      }
    }
    .conversion-area-image {
      img {
        height: calc(160 * var(--rem-unit));
      }
    }
  }
  .result {
    padding: calc(140 * var(--rem-unit)) calc(40 * var(--rem-unit)) calc(120 * var(--rem-unit));
    &::after{
      bottom: calc(-99 * var(--rem-unit));
      height: calc(100 * var(--rem-unit));
    }
    .result-title {
      margin-bottom: calc(100 * var(--rem-unit));
      font-size: calc(56 * var(--rem-unit));
    }
    .result-list {
      display: grid;
      .result-list-item {
        padding: 4px;
        &::after {
          top: calc(-25 * var(--rem-unit));
          width: calc(150 * var(--rem-unit));
          height: calc(54 * var(--rem-unit));
          font-size: calc(28 * var(--rem-unit));
        }
      }
      .result-list-item-inner {
        padding: calc(70 * var(--rem-unit)) calc(50 * var(--rem-unit)) calc(40 * var(--rem-unit));
      }
      .result-list-item-data {
        margin-bottom: calc(26 * var(--rem-unit));
        padding-bottom: calc(26 * var(--rem-unit));
        &::after {
          height: 4px;
        }
      }
      .result-list-item-data-dl {
        font-size: calc(20 * var(--rem-unit));
      }
      .result-list-item-image {
        &::before {
          width: 43px;
          height: 43px;
        }
        &::after {
          width: 25px;
          height: 25px;
          right: 9px;
          bottom: 9px;
        }
      }
      p {
        font-size: calc(11 * var(--rem-unit));
        text-align: right;
      }
    }
  }
  .point {
    padding: 0 calc(40 * var(--rem-unit)) calc(50 * var(--rem-unit));
    &::before {
      height: calc(200 * var(--rem-unit));
      clip-path: polygon(0 0, 50% 35%, 100% 0, 100% 15%, 50% 50%, 0 15%);
    }
    &::after{
      bottom: calc(-99 * var(--rem-unit));
      height: calc(100 * var(--rem-unit));
    }
    .point-title {
      margin-bottom: calc(80 * var(--rem-unit));
      img {
        width: calc(1045 * var(--rem-unit));
      }
    }
    .point-list {
      gap: calc(68 * var(--rem-unit)) 0;
      .point-list-item {
        padding: calc(80 * var(--rem-unit)) calc(46 * var(--rem-unit)) calc(50 * var(--rem-unit));
        &::before {
          top: calc(-20 * var(--rem-unit));
          width: calc(171 * var(--rem-unit));
          height: calc(40 * var(--rem-unit));
          font-size: calc(22 * var(--rem-unit));
        }
      }
      .point-list-item-title {
        font-size: calc(35 * var(--rem-unit));
        padding-bottom: calc(20 * var(--rem-unit));
        border-bottom: 4px solid var(--primary-color);
        margin-bottom: calc(20 * var(--rem-unit));
      }
      .point-list-item-image {
        margin-bottom: calc(30 * var(--rem-unit));
      }
      .point-list-item-text {
        font-size: calc(17 * var(--rem-unit));
      }
      .point-list-item-check {
        .point-list-item-check-detail {
          font-size: calc(23 * var(--rem-unit));
          &::before {
            width: 24px;
            height: 24px;
            margin: 6px 10px 0 0;
            background: url("../../img/llmo-consulting/ico_point_check.png") no-repeat center center / 100%;
          }
        }
      }
      .point-list-item-result {
        margin-top: calc(30 * var(--rem-unit));
        .point-list-item-result-title {
          padding: calc(20 * var(--rem-unit)) 0;
          font-size: calc(22 * var(--rem-unit));
        }
        .point-list-item-result-image {
          padding: calc(38 * var(--rem-unit)) calc(44 * var(--rem-unit));
        }
      }
    }
  }
  .faq {
    padding: calc(140 * var(--rem-unit)) calc(40 * var(--rem-unit)) calc(110 * var(--rem-unit));
    &::before {
      top: calc(-17 * var(--rem-unit));
      right: calc(40 * var(--rem-unit));
      width: calc(198 * var(--rem-unit));
      height: calc(260 * var(--rem-unit));
    }
    &::after{
      bottom: calc(-99 * var(--rem-unit));
      height: calc(100 * var(--rem-unit));
    }
    .faq-title {
      margin-bottom: calc(60 * var(--rem-unit));
      font-size: calc(50 * var(--rem-unit));
    }
    .faq-list {
      .faq-list-title {
        font-size: calc(22 * var(--rem-unit));
      }
      .accordion-state {
        width: 26px;
        height: 26px;
        &::before {
          width: 26px;
        }
        &::after {
          height: 26px;
        }
      }
      .faq-list-text {
        font-size: calc(17 * var(--rem-unit));
      }
    }
  }
  .conversion-form {
    padding: calc(200 * var(--rem-unit)) calc(40 * var(--rem-unit)) calc(100 * var(--rem-unit));
    .conversion-form-sub-title {
      margin-bottom: calc(40 * var(--rem-unit));
      font-size: calc(29 * var(--rem-unit));
    }
    .conversion-form-title {
      margin-bottom: calc(56 * var(--rem-unit));
      font-size: calc(76 * var(--rem-unit));
    }
    .form {
      max-width: calc(776 * var(--rem-unit));
      margin: 0 auto;
    }
  }
  .tel-area {
    padding: calc(50 * var(--rem-unit)) calc(40 * var(--rem-unit));
    .tel-area-text {
      font-size: calc(20 * var(--rem-unit));
    }
    .tel {
      font-size: calc(50 * var(--rem-unit));
    }
    .tel-text {
      font-size: calc(20 * var(--rem-unit));
    }
  }
}
@media (min-width: 960px) {
  .modal-content {
    max-width: 60%;
    max-height: 60%;
  }
  .service {
    .service-summary {
      margin-bottom: calc(130 * var(--rem-unit));
      .summary-header {
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: calc(280 * var(--rem-unit));
        .summary-header-title {
          width: calc(280 * var(--rem-unit));
          height: calc(280 * var(--rem-unit));
          margin: 0;
          padding: calc(80 * var(--rem-unit)) calc(40 * var(--rem-unit));
          text-align: left;
          border-right: 6px solid #ededed;
        }
        .summary-header-text {
          margin: 0;
          padding: 0 calc(40 * var(--rem-unit));
        }
      }
    }
    .summary-body-sp {
      display: none;
    }
    .summary-body-pc {
      display: block;
      padding: calc(30 * var(--rem-unit)) calc(30 * var(--rem-unit));
      table {
        width: 100%;
        thead {
          th {
            height: calc(62 * var(--rem-unit));
            padding: calc(10 * var(--rem-unit)) 0;
            font-size: calc(25 * var(--rem-unit));
            font-weight: 900;
            line-height: 1.3;
            letter-spacing: var(--letter-spacing-md);
            color: #fff;
            text-align: center;
            border-radius: 10px 10px 0 0;
            h4 {
              font-size: calc(25 * var(--rem-unit));
              font-weight: 900;
              line-height: 1.3;
            }
            .small-text {
              display: block;
              font-size: calc(12 * var(--rem-unit));
            }
          }
          .summary-llmo {
            background-color: #00b6e0;
          }
          .summary-seo {
            background-color: #a9a9a9;
          }
        }
        tbody {
          th,td {
            padding: calc(16 * var(--rem-unit));
            border: 6px solid #ededed;
            font-size: 1rem;
            font-weight: 900;
          }
          th {
            width: calc(140 * var(--rem-unit));
            text-align: left;
          }
        }
      }
    }
  }
  .features {
    .features-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0 5%;
    }
  }
  .conversion-area {
    .conversion-area-image {
      justify-content: space-between;
      img {
        height: calc(230 * var(--rem-unit));
      }
    }
  }
  .result {
    .result-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
      .result-list-item {
        &:nth-child(1) {
          grid-column: 1 / 3;
          grid-row: 1 / 2;
        }
        &:nth-child(2) {
          grid-column: 1 / 2;
          grid-row: 2 / 3;
        }
        &:nth-child(3) {
          grid-column: 2 / 2;
          grid-row: 2 / 3;
        }
        &:nth-child(1) {
          .result-list-item-image-wrap {
            display: flex;
            justify-content: flex-start;
            gap: 0 calc(20 * var(--rem-unit));
          }
          .result-list-item-image {
          }
        }
      }
      .result-list-item-inner {
        display: grid;
        grid-template-rows: 1fr;
        height: 100%;
      }
    }
  }
  .point {
    .point-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
      align-items: stretch;
      gap: calc(60 * var(--rem-unit)) calc(40 * var(--rem-unit));
      .point-list-item {
        &:nth-child(1) {
          grid-column: 1 / 3;
          grid-row: 1 / 2;
        }
        &:nth-child(2) {
          grid-column: 1 / 2;
          grid-row: 2 / 3;
        }
        &:nth-child(3) {
          grid-column: 2 / 2;
          grid-row: 2 / 3;
        }
        &:nth-child(1) {
          .point-list-item-title {
            margin-bottom: calc(50 * var(--rem-unit));
            font-size: calc(66 * var(--rem-unit));
          }
          .point-list-item-body {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 0 calc(48 * var(--rem-unit));
            margin-bottom: calc(50 * var(--rem-unit));
          }
          .point-list-item-image {
            width: 46%;
            max-width: calc(485 * var(--rem-unit));
            margin-bottom: 0;
          }
          .point-list-item-text {
            margin-bottom: calc(30 * var(--rem-unit));
          }
        }
        &::before {
          font-size: calc(28 * var(--rem-unit));
        }
      }
    }
  }
}
@media (min-width: 1280px) {
  .contents-inner {
    width: calc(1200 * var(--rem-unit));
    margin: 0 auto;
  }
  .mainvisual {
    .contents-inner {
      width: calc(1260 * var(--rem-unit));
      margin: 0 auto;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
    }
    .mainvisual-inner {
      margin: 0;
      &::before {
        left: calc(-34 * var(--rem-unit));
      }
      &::after {
        z-index: 1;
        right: calc(-236 * var(--rem-unit));
      }
    }
    .mainvisual-form {
      position: relative;
      display: block;
      width: 370px;
      margin-left: auto;
      padding: calc(48 * var(--rem-unit));
      border: 1px solid #0099cc;
      border-radius: 34px 0 34px 34px;
      background-color: #fff;
    }
  }
  .issue {
    .issue-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: flex-start;
      gap: 0 3.3%;
      .issue-list-item {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 4;
        padding: 0;
        border-bottom: none;
      }
      .issue-list-item-text {
        height: 100%;
      }
    }
  }
  .service {
    .service-summary {
      margin-bottom: calc(130 * var(--rem-unit));
      .summary-header {
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: calc(280 * var(--rem-unit));
        .summary-header-title {
          width: calc(280 * var(--rem-unit));
          height: calc(280 * var(--rem-unit));
          margin: 0;
          padding: calc(80 * var(--rem-unit)) calc(40 * var(--rem-unit));
          text-align: left;
          border-right: 6px solid #ededed;
        }
        .summary-header-text {
          width: fit-content;
          margin: 0 auto;
          padding: 0 calc(40 * var(--rem-unit));
        }
      }
    }
    .summary-body-sp {
      display: none;
    }
    .summary-body-pc {
      display: block;
      padding: calc(30 * var(--rem-unit)) calc(30 * var(--rem-unit));
      table {
        thead {
          th {
            height: calc(62 * var(--rem-unit));
            padding: calc(10 * var(--rem-unit)) 0;
            font-size: calc(25 * var(--rem-unit));
            font-weight: 900;
            line-height: 1.3;
            letter-spacing: var(--letter-spacing-md);
            color: #fff;
            text-align: center;
            border-radius: 10px 10px 0 0;
            .small-text {
              display: block;
              font-size: calc(12 * var(--rem-unit));
            }
          }
          .summary-llmo {
            background-color: #00b6e0;
          }
          .summary-seo {
            background-color: #a9a9a9;
          }
        }
        tbody {
          th,td {
            padding: calc(16 * var(--rem-unit));
            border: 6px solid #ededed;
            font-size: 1rem;
            font-weight: 900;
          }
          th {
            width: calc(140 * var(--rem-unit));
            text-align: left;
          }
        }
      }
    }
  }
  .features {
    .features-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0 5%;
    }
  }
  .conversion-area {
    .conversion-area-image {
      width: calc(1200 * var(--rem-unit));
      margin: 0 auto;
    }
  }
  .result {
    .result-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
      .result-list-item {
        &:nth-child(1) {
          grid-column: 1 / 3;
          grid-row: 1 / 2;
        }
        &:nth-child(2) {
          grid-column: 1 / 2;
          grid-row: 2 / 3;
        }
        &:nth-child(3) {
          grid-column: 2 / 2;
          grid-row: 2 / 3;
        }
      }
      .result-list-item-inner {
        display: grid;
        grid-template-rows: 1fr;
        height: 100%;
      }
    }
  }
  .point {
    .point-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
      align-items: stretch;
      gap: calc(60 * var(--rem-unit)) calc(40 * var(--rem-unit));
      .point-list-item {
        &:nth-child(1) {
          grid-column: 1 / 3;
          grid-row: 1 / 2;
        }
        &:nth-child(2) {
          grid-column: 1 / 2;
          grid-row: 2 / 3;
        }
        &:nth-child(3) {
          grid-column: 2 / 2;
          grid-row: 2 / 3;
        }
        &:nth-child(1) {
          .point-list-item-title {
            margin-bottom: calc(50 * var(--rem-unit));
            font-size: calc(66 * var(--rem-unit));
          }
          .point-list-item-body {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 0 calc(48 * var(--rem-unit));
            margin-bottom: calc(50 * var(--rem-unit));
          }
          .point-list-item-image {
            width: 46%;
            max-width: calc(485 * var(--rem-unit));
            margin-bottom: 0;
          }
          .point-list-item-text {
            margin-bottom: calc(30 * var(--rem-unit));
          }
        }
        &::before {
          font-size: calc(28 * var(--rem-unit));
        }
      }
    }
  }

}
