/*------------------ 共通 ------------------*/
:root {
  font-size: 10px;
  --cta-transition: background-position 0.3s ease;
  --cta-grade: linear-gradient(to right, #0277d2 0%, #2ec193 50%, #0277d2 100%);
  --blue-grade: linear-gradient(to right, #bad8f9, #afe3ff);
  --pink-grade: linear-gradient(to bottom, #e41e7f, #e95f48);
  --orange-grade: linear-gradient(to right, #e95f48, #eda011);
}
#js-scroll-top.is-visible {
  display: none;
}
html {
  scroll-padding-top: 8rem;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "Yu Gothic Medium",
    "Meiryo",
    sans-serif;
  background-color: #ffffff !important;
}
main {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  line-height: 1.6;
  color: #303030;
}
h3 {
  position: relative;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  z-index: 2;
  @media screen and (max-width: 767px) {
    font-size: 2.4rem;
  }
  span {
    position: relative;
    z-index: 2;
  }
  &::before {
    position: absolute;
    background: var(--blue-grade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 8rem;
    white-space: nowrap;
    left: 50%;
    bottom: -0.3em;
    transform: translateX(-50%);
    @media screen and (max-width: 600px) {
      font-size: 5.5rem;
    }
  }
  &.assignment-title::before {
    content: "assignment";
  }
  &.resolution-title {
    em {
      padding-right: 0.5rem;
      width: fit-content;
      font-size: 1.3em;
      line-height: 1.6;
      background: var(--pink-grade);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }
  &.lineup-title {
    z-index: 2;
    &::before {
      content: "lineup";
    }
  }
  @media screen and (max-width: 1220px) {
    &.lineup-title {
      -webkit-text-stroke: 3px #bad8f9;
      text-stroke: 3px #bad8f9;
      paint-order: stroke;
      &::before {
        -webkit-text-stroke: 0;
        text-stroke: 0;
      }
    }
  }
  &.casestudies-title::before {
    content: "case studies";
  }
  &.flow-title {
    -webkit-text-stroke: 3px #bad8f9;
    text-stroke: 3px #bad8f9;
    paint-order: stroke;
    &::before {
      content: "flow";
      -webkit-text-stroke: 0;
      text-stroke: 0;
    }
  }
  &.download-title-text::before {
    content: "download";
  }
}
h4 {
  font-size: 2.6rem;
  font-weight: bold;
  @media screen and (max-width: 600px) {
    font-size: 2rem;
  }
}
h5 {
  font-size: 2.4rem;
}
p {
  font-size: 1.8rem;
  @media screen and (max-width: 600px) {
    font-size: 1.6rem;
  }
}
section {
  position: relative;
  &.assignment,
  &.lineup {
    background: #ffffff;
  }
  @media screen and (max-width: 1139px) {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  @media screen and (max-width: 600px) {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
ol,
ul {
  margin: 0;
  padding-left: 0;
  font-size: 1.8rem;
  line-height: 1.6;
  list-style: none;
  li {
    position: relative;
    &::before {
      position: absolute;
      left: 0;
      top: 0;
    }
  }
}
ol {
  li {
    padding-left: 1.2em;
  }
  li:first-child::before {
    content: "①";
  }
  li:nth-child(2)::before {
    content: "②";
  }
  li:last-child::before {
    content: "③";
  }
}
ul {
  li {
    padding-left: 0.6em;
  }
  li::before {
    content: "•";
  }
}
span.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
a {
  text-decoration: none !important;
}
a.cta-btn {
  margin: 0;
  padding: 1.2rem 3.5rem 1.2rem 2.7rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 2.8rem;
  font-weight: bold;
  color: #ffffff;
  border-radius: 10rem;
  will-change: transform;
  &:hover {
    background-position: 100% 50%;
    transform: scale(0.98) translateZ(0);
  }
  @media screen and (max-width: 767px) {
    font-size: 2rem;
  }
  @media screen and (max-width: 400px) {
    padding: 1rem;
  }
  span {
    padding-bottom: 0.2rem;
    position: relative;
    &::after {
      content: "";
      display: inline-block;
      width: 2.5rem;
      height: 2.5rem;
      position: absolute;
      right: -4rem;
      top: 53%;
      transform: translateY(-50%);
      background-image: var(--img-arrow);
      background-size: contain;
      background-repeat: no-repeat;
      @media screen and (max-width: 767px) {
        width: 1.8rem;
        height: 1.8rem;
      }
    }
  }
  &.cta-btn__header {
    max-height: 5.2rem;
    font-size: 2.4rem;
    max-width: 30rem;
    span {
      &::after {
        width: 2.2rem;
        height: 2.2rem;
        @media screen and (max-width: 767px) {
          width: 1.8rem;
          height: 1.8rem;
          right: -2rem;
        }
      }
    }
    @media screen and (max-width: 767px) {
      max-width: 18rem;
      min-width: 0;
      max-height: 4rem;
      font-size: 1.6rem;
    }
  }
  &.cta-btn__thanks {
    span {
      padding: 0 0 0.2rem 4rem;
      position: relative;
      &::before {
        content: "";
        display: inline-block;
        width: 2.5rem;
        height: 2.5rem;
        position: absolute;
        left: 0;
        top: 53%;
        transform: translateY(-50%);
        background-image: var(--img-download);
        background-size: contain;
        background-repeat: no-repeat;
        @media screen and (max-width: 767px) {
          width: 1.8rem;
          height: 1.8rem;
        }
      }
      &::after {
        content: none;
      }
    }
  }
}
.cta-layout {
  background: var(--cta-grade);
  background-position: 0% 50%;
  background-size: 200% auto;
  transition: var(--cta-transition);
}
.highlighter-pen {
  background-image: var(--orange-grade);
  background-repeat: no-repeat;
  background-size: 0% 40%;
  background-position: left bottom;
  transition: background-size 1.5s ease-out;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  &.is-line {
    background-size: 100% 40%;
  }
}
@keyframes floatXY {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(5px, -10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.bg-float {
  animation: floatXY 4s ease-in-out infinite;
  will-change: transform;
  &.bg-float__02 {
    animation-delay: 1s;
  }
  &.bg-float__03 {
    animation-delay: 2s;
  }
}
.display-pc {
  display: block;
  @media screen and (max-width: 900px) {
    display: none;
  }
}
.display-tabsp {
  display: none;
  @media screen and (max-width: 900px) {
    display: block;
  }
}
.pctab_only {
  display: block;
  @media screen and (max-width: 600px) {
    display: inline;
  }
}
.tabsp_only {
  display: inline;
  @media screen and (max-width: 900px) {
    display: block;
  }
}
.sp_only {
  display: inline;
  @media screen and (max-width: 767px) {
    display: block;
  }
}
/*------------------ ヘッダー ------------------*/
header.header {
  padding: 0 5rem;
  position: fixed;
  background: #ffffff;
  box-shadow: 0px 2px 2px 0px rgba(51, 51, 51, 0.2);
  @media screen and (max-width: 1140px) {
    padding: 0 1rem;
  }
  .header-inner {
    margin: auto;
    max-width: 114rem;
    height: 8.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    @media screen and (max-width: 767px) {
      height: 6.5rem;
    }
  }
  .header-logo img {
    width: 100%;
    height: 100%;
    max-height: 3.8rem;
    @media screen and (max-width: 767px) {
      max-height: 1.8rem;
    }
    &:hover {
      opacity: 0.8;
    }
  }
}
/*------------------ KV ------------------*/
.hero {
  margin: 8.5rem 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  @media screen and (max-width: 767px) {
    margin-top: 6.5rem;
  }
}
.hero-contents {
  padding: 2rem 0 3rem;
  max-width: 114rem;
  display: flex;
  align-items: end;
  z-index: 1;
  @media screen and (max-width: 1140px) {
    padding: 1rem 3rem 3rem;
  }
  @media screen and (max-width: 900px) {
    display: block;
  }
  @media (orientation: landscape) and (max-width: 899px) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  @media screen and (max-width: 767px) {
    padding: 1rem 2rem 3rem;
  }
  @media screen and (max-width: 400px) {
    padding: 1rem 1.5rem 3rem;
  }
}
.hero-left {
  .hero-catch img {
    width: 100%;
    max-width: 40rem;
    height: 100%;
    @media (orientation: landscape) and (max-width: 1140px) {
      max-width: 30rem;
    }
    @media screen and (max-width: 767px) {
      max-width: 28rem;
    }
  }
}
.hero-title img {
  margin-top: -1.6rem;
  width: 100%;
  height: 100%;
  @media screen and (max-width: 900px) {
    margin-top: -3.5rem;
  }
  @media screen and (max-width: 767px) {
    margin-top: -2.5rem;
  }
  &.display-tabsp {
    @media screen and (max-width: 900px) {
      max-width: 55rem;
    }
    @media screen and (max-width: 500px) {
      max-width: 100%;
    }
  }
}
.hero-pick {
  margin: 1rem 0;
  text-align: center;
  @media screen and (max-width: 900px) {
    margin: -1rem 0 0;
  }
  @media screen and (max-width: 767px) {
    margin: -1rem 0 0;
  }
  @media screen and (max-width: 400px) {
    margin: -0.5rem 0 0;
  }
  p {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    font-weight: bold;
    color: #144b77;
    &::before,
    &::after {
      content: "";
      flex: 1;
      height: 0.2rem;
      background-color: #0066b9;
      opacity: 0.3;
    }
    .hero-pick-text {
      margin: 0 1rem;
      letter-spacing: 0.1em;
      -webkit-text-stroke: 3px #ffffff;
      text-stroke: 3px #ffffff;
      paint-order: stroke;
    }
    .hero-pick-subtext {
      font-size: 2rem;
      @media (orientation: landscape) and (max-width: 1140px) {
        font-size: 1.6rem;
      }
      @media screen and (max-width: 767px) {
        font-size: 1.4rem;
      }
    }
    @media (orientation: landscape) and (max-width: 1140px) {
      font-size: 2rem;
    }
    @media screen and (max-width: 767px) {
      font-size: 1.6rem;
    }
  }
  .hero-pick-inner {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    @media screen and (max-width: 767px) {
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 1rem 0;
    }
    img {
      width: calc((100% - 4rem) / 3);
      height: 100%;
      @media screen and (max-width: 500px) {
        width: calc((100% - 4rem) / 2);
      }
      @media screen and (max-width: 400px) {
        width: calc((100% - 8rem) / 2);
      }
    }
  }
}
.hero-cta {
  margin-top: 3rem;
  text-align: center;
  @media screen and (max-width: 900px) {
    margin-top: 1rem;
  }
  p {
    font-size: 2rem;
    font-weight: bold;
    color: #144b77;
    white-space: nowrap;
    -webkit-text-stroke: 3px #ffffff;
    text-stroke: 3px #ffffff;
    paint-order: stroke;
    @media (orientation: landscape) and (max-width: 1140px) {
      font-size: 1.8rem;
    }
    @media screen and (max-width: 500px) {
      font-size: 1.6rem;
    }
    @media (orientation: landscape) and (max-width: 899px) {
      font-size: 1.4rem;
    }
    @media screen and (max-width: 400px) {
      font-size: 1.4rem;
    }
    @media (orientation: landscape) and (max-width: 700px) {
      font-size: 1rem;
    }
  }
}
.hero-right {
  .hero-products {
    margin-left: 5rem;
    display: flex;
    gap: 2rem;
    @media screen and (max-width: 900px) {
      margin-top: 5rem;
      justify-content: center;
      gap: 8rem;
    }
    @media (orientation: landscape) and (max-width: 899px) {
      gap: 3rem;
    }
    @media screen and (max-width: 500px) {
      margin: 1rem 0 0;
      gap: 3rem;
    }
    img {
      width: auto;
      height: 19rem;
      @media screen and (max-width: 1000px) {
        height: 12rem;
      }
      @media (orientation: landscape) and (max-width: 1200px) {
        height: 15rem;
      }
      @media (orientation: landscape) and (max-width: 899px) {
        height: 12rem;
      }
      @media (orientation: landscape) and (max-width: 700px) {
        height: 8rem;
      }
      @media screen and (max-width: 400px) {
        height: 8rem;
      }
    }
  }
}
.hero-bg {
  .hero-bg-item {
    position: absolute;
    width: 100%;
    height: auto;
    &.hero-bg-item__01 {
      width: clamp(420px, 55vw, 1000px);
      right: 35%;
      bottom: 20%;
      transform: rotate(20deg);
      @media screen and (max-width: 900px) {
        right: 40%;
        bottom: 32%;
      }
      @media screen and (max-width: 500px) {
        right: 5%;
        bottom: 28%;
      }
    }
    &.hero-bg-item__02 {
      width: clamp(400px, 40vw, 600px);
      right: 0;
      bottom: -10%;
      @media screen and (max-width: 900px) {
        bottom: -4%;
      }
      @media screen and (max-width: 767px) {
        right: -10%;
        width: clamp(600px, 40vw, 600px);
      }
      @media screen and (max-width: 500px) {
        bottom: -10%;
        right: -10%;
      }
      @media screen and (max-width: 400px) {
        width: clamp(300px, 40vw, 600px);
      }
    }
    &.hero-bg-item__03 {
      width: clamp(280px, 32vw, 500px);
      bottom: -40%;
      left: 10%;
      @media screen and (max-width: 900px) {
        bottom: -5%;
      }
      @media screen and (max-width: 767px) {
        width: clamp(580px, 32vw, 600px);
      }
      @media screen and (max-width: 500px) {
        bottom: 10%;
        left: -30%;
      }
    }
    &.hero-bg-item__04 {
      right: -10%;
      top: 0;
      transform: rotate(90deg);
      width: clamp(500px, 50vw, 800px);
      @media screen and (max-width: 900px) {
        top: 15%;
      }
      @media screen and (max-width: 500px) {
        right: -35%;
        top: 15%;
      }
      @media screen and (min-width: 1700px) {
        right: -1%;
        width: clamp(400px, 50vw, 1000px);
      }
    }
    &.hero-bg-item__05 {
      top: -5%;
      width: clamp(500px, 30vw, 700px);
      left: -10%;
      @media screen and (max-width: 767px) {
        width: clamp(800px, 30vw, 700px);
      }
    }
    &.hero-bg-item__06 {
      width: clamp(380px, 40vw, 480px);
      top: -22%;
      left: 35%;
      @media screen and (max-width: 1140px) {
        top: -22%;
        left: 30%;
      }
      @media screen and (max-width: 900px) {
        top: 28%;
        left: -10%;
      }
      @media (orientation: landscape) and (max-width: 900px) {
        top: -20%;
        left: -20%;
      }
      @media screen and (max-width: 767px) {
        width: clamp(380px, 40vw, 480px);
        top: 48%;
        left: 45%;
      }
      @media (orientation: landscape) and (max-width: 767px) {
        width: clamp(280px, 40vw, 480px);
        top: -20%;
        left: 20%;
      }
      @media screen and (max-width: 500px) {
        width: clamp(320px, 40vw, 480px);
        top: 40%;
        left: 35%;
      }
      @media screen and (max-width: 400px) {
        width: clamp(280px, 40vw, 480px);
        left: 37%;
      }
      @media screen and (min-width: 1700px) {
        top: -12%;
        left: -3%;
      }
    }
    &.hero-bg-item__07 {
      width: clamp(400px, 40vw, 480px);
      bottom: -18%;
      left: -8%;
      @media screen and (max-width: 900px) {
        bottom: 5%;
        left: -15%;
      }
      @media (orientation: landscape) and (max-width: 900px) {
        bottom: -20%;
      }
      @media screen and (max-width: 767px) {
        width: clamp(300px, 40vw, 480px);
        bottom: -30%;
      }
      @media (orientation: landscape) and (max-width: 767px) {
        bottom: -20%;
      }
      @media screen and (max-width: 500px) {
        width: clamp(320px, 40vw, 480px);
        bottom: 13%;
        left: -25%;
      }
      @media screen and (max-width: 400px) {
        width: clamp(280px, 40vw, 480px);
      }
      @media screen and (min-width: 1700px) {
        bottom: -14%;
        left: -6%;
      }
    }
    &.hero-bg-item__08 {
      width: clamp(750px, 60vw, 1000px);
      bottom: -15%;
      right: -8%;
      @media screen and (max-width: 1400px) {
        width: clamp(600px, 60vw, 1000px);
        right: -16%;
        bottom: 0;
      }
      @media screen and (max-width: 1230px) {
        top: -8%;
      }
      @media (orientation: landscape) and (max-width: 900px) {
        top: -15%;
      }
      @media screen and (max-width: 767px) {
        width: clamp(450px, 100vw, 600px);
        top: -8%;
      }
      @media (orientation: landscape) and (max-width: 767px) {
        width: clamp(320px, 100vw, 400px);
        top: -5%;
        right: -8%;
      }
      @media screen and (max-width: 500px) {
        width: clamp(450px, 60vw, 1000px);
        right: -26%;
        top: -3%;
      }
      @media screen and (max-width: 400px) {
        width: clamp(420px, 60vw, 1000px);
        top: -8%;
      }
      @media screen and (min-width: 1700px) {
        width: clamp(400px, 80vw, 1000px);
      }
      @media screen and (min-width: 2000px) {
        width: clamp(400px, 50vw, 1000px);
      }
    }
  }
}
/*------------------ お悩み ------------------*/
.assignment {
  padding: 8rem 0 6rem;
  @media screen and (max-width: 600px) {
    padding: 6rem 0;
  }
}
.assignment-contents {
  margin: auto;
  padding-top: 4rem;
  max-width: 114rem;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 900px) {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.assignment-inner {
  padding: 2rem;
  width: calc((100% - 3rem) / 3);
  box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  @media screen and (max-width: 900px) {
    width: 100%;
  }
}
.assignment-subtitle {
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 2.2rem;
  font-weight: bold;
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  paint-order: stroke;
  p {
    font-size: 2.2rem;
    @media screen and (max-width: 767px) {
      font-size: 2rem;
    }
  }
  img {
    width: 6rem;
    height: 6rem;
    @media screen and (max-width: 1024px) and (min-width: 768px) {
      width: 8rem;
      height: 8rem;
    }
  }
}
/*------------------ 課題解決 ------------------*/
.resolution {
  padding: 8rem 0 0;
  position: relative;
  background: linear-gradient(180deg, rgba(206, 242, 255, 1), rgba(242, 250, 255, 1));
  z-index: 2;
  @media screen and (max-width: 600px) {
    padding: 8rem 0;
  }
  &::before {
    content: "";
    position: absolute;
    width: 20rem;
    height: 5rem;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background: #ffffff;
    top: -0.1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
}
.resolution-contents {
  margin: 3rem auto 0;
  position: relative;
  max-width: 114rem;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  @media screen and (max-width: 900px) {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  @media screen and (max-width: 600px) {
    gap: 3rem;
  }
}
.resolution-inner {
  width: calc((100% - 6rem) / 3);
  img {
    width: 100%;
    height: auto;
  }
  @media screen and (max-width: 900px) {
    width: calc((100% - 1.5rem) / 2);
  }
  @media screen and (max-width: 600px) {
    width: 100%;
  }
  &.resolution-inner__02 {
    margin-top: 8rem;
    @media screen and (max-width: 900px) {
      margin-top: 0;
    }
  }
  &.resolution-inner__03 {
    margin-top: 2rem;
    @media screen and (max-width: 900px) {
      margin-top: 0;
    }
  }
}
.resolution-item {
  margin-top: -3em;
  ul {
    padding-top: 0.5rem;
  }
}
.resolution-subtitle {
  font-size: 2.2rem;
  font-weight: bold;
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  paint-order: stroke;
  span.resolution-subtitle-emphasis {
    font-size: 3.2rem;
  }
}
.resolution-bg {
  .bg-img {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 1;
    &.bg-img__01 {
      width: clamp(500px, 30vw, 800px);
      bottom: 0;
      left: -10%;
    }
    &.bg-img__02 {
      width: clamp(800px, 55vw, 1200px);
      top: 3%;
      right: -15%;
    }
    &.bg-img__03 {
      width: clamp(400px, 10vw, 630px);
      bottom: 0;
      right: 50%;
      transform: rotate(220deg);
    }
    &.bg-img__04 {
      width: clamp(250px, 18vw, 378px);
      top: 50%;
      right: 13%;
    }
    &.bg-img__05 {
      width: clamp(380px, 10vw, 630px);
      top: 36%;
      left: 10%;
    }
  }
}
/*------------------ ラインナップ ------------------*/
.lineup {
  padding: 18rem 0 15rem;
  position: relative;
  &::before,
  &::after {
    content: "";
    position: absolute;
  }
  &::before {
    width: 100%;
    height: 15rem;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    background: #f2faff;
    top: -1px;
    right: 0;
    z-index: 2;
    @media screen and (max-width: 1139px) {
      height: 10rem;
    }
    @media screen and (max-width: 600px) {
      height: 5rem;
    }
  }
  &::after {
    width: 100%;
    height: 15rem;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    background: #f2faff;
    bottom: -1px;
    right: 0;
    @media screen and (max-width: 1139px) {
      height: 10rem;
    }
    @media screen and (max-width: 600px) {
      height: 5rem;
    }
  }
  @media screen and (max-width: 1139px) {
    padding: 15.5rem 0 15rem;
  }
  @media screen and (max-width: 600px) {
    padding: 9rem 0 15rem;
  }
}
.lineup-wrap {
  margin: 3rem auto 0;
  max-width: 114rem;
}
.lineup-contents {
  padding: 5rem 3rem;
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0 8rem 0 8rem;
  backdrop-filter: blur(10px);
  z-index: 2;
  @media screen and (max-width: 900px) {
    border-radius: 0 5rem 0 5rem;
  }
  @media screen and (max-width: 600px) {
    padding: 2rem 1rem;
  }
}
.lineup-inner {
  position: relative;
  &:nth-child(2),
  &:last-child {
    padding-top: 3rem;
  }
  &::after {
    content: "";
    display: block;
    width: 90%;
    height: 2px;
    background: #bad8f9;
    margin: 0 auto;
    @media screen and (max-width: 600px) {
      width: 100%;
    }
  }
  &:last-child::after {
    content: none;
  }
  h4 {
    padding: 0.2rem 0 0.2rem 2rem;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
    paint-order: stroke;
    @media screen and (max-width: 900px) {
      padding: 0.2rem 0 0.2rem;
      text-align: center;
    }
    &.pc_only {
      display: block;
    }
    &.tab_only,
    &.sp_only {
      display: none;
    }
    @media (max-width: 900px) {
      &.pc_only {
        display: none;
      }
      &.tab_only {
        display: block;
      }
    }
    @media (max-width: 600px) {
      &.tab_only {
        display: none;
      }
      &.sp_only {
        display: block;
      }
    }
  }
}
.lineup-item {
  padding: 1.5rem 0 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  @media screen and (max-width: 900px) {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.lineup-item-left {
  max-width: 45rem;
  @media screen and (max-width: 900px) {
    max-width: 100%;
    display: flex;
    align-items: start;
  }
  @media screen and (max-width: 600px) {
    flex-direction: column;
    gap: 1rem;
  }
  img {
    width: 100%;
    height: auto;
    @media screen and (min-width: 601px) and (max-width: 900px) {
      width: 50%;
    }
  }
  p {
    padding: 0 0 0.5rem 2rem;
    @media screen and (max-width: 900px) {
      padding: 0 0 0.5rem;
    }
  }
  .lineup-img-inner {
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 900px) {
      padding: 0;
    }
    img {
      width: calc((100% - 1.5rem) / 2);
      height: auto;
      @media screen and (max-width: 900px) {
        width: calc((100% - 0.5rem) / 2);
      }
    }
  }
}
.lineup-item-right {
  ul {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
    font-weight: bold;
    @media screen and (max-width: 600px) {
      margin: 0 auto;
      padding-bottom: 1.5rem;
      display: block;
      width: fit-content;
      font-size: 1.6rem;
    }
    li {
      position: relative;
      padding-left: 2.8rem;
      &::before {
        content: "";
        position: absolute;
        width: 2.3rem;
        height: auto;
        top: 0.3rem;
        bottom: 0;
        left: 0;
        background-image: var(--img-check);
        background-size: contain;
        background-repeat: no-repeat;
      }
      @media screen and (max-width: 600px) {
        padding-left: 2.5rem;
        &::before {
          width: 2rem;
        }
      }
    }
  }
  p {
    padding-bottom: 1rem;
    @media screen and (max-width: 600px) {
      padding-bottom: 1.5rem;
    }
  }
  .lineup-point {
    display: flex;
    .lineup-point-title {
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      background: #bad8f9;
      border-radius: 5px 0 0 5px;
      p {
        padding-bottom: 0;
        font-size: 2.2rem;
        font-weight: bold;
      }
    }
    ol {
      padding: 1.5rem 2rem;
      flex: 1;
      background: #ffffff;
      border: 0.2rem solid #bad8f9;
      border-radius: 0 5px 5px 0;
    }
    @media screen and (max-width: 600px) {
      display: block;
      .lineup-point-title {
        padding: 0.5rem 2rem;
        display: block;
        border-radius: 5px 5px 0 0;
        p {
          font-size: 1.8rem;
          text-align: center;
        }
      }
      ol {
        padding: 1.5rem 1rem;
        font-size: 1.6rem;
        border-radius: 0 0 5px 5px;
      }
    }
  }
}
.lineup-bg {
  .bg-img {
    position: absolute;
    width: 100%;
    height: auto;
    &.bg-img__01 {
      width: clamp(500px, 50vw, 900px);
      top: 0;
      left: -15%;
      @media screen and (min-width: 2100px) {
        left: -10%;
      }
      @media screen and (max-width: 600px) {
        top: 3%;
      }
    }
    &.bg-img__02 {
      width: clamp(800px, 55vw, 1200px);
      bottom: 15%;
      right: -15%;
      transform: rotate(35deg);
      @media screen and (min-width: 2100px) {
        right: -5%;
      }
    }
    &.bg-img__03 {
      width: clamp(300px, 30vw, 630px);
      top: 2%;
      right: -8%;
      opacity: 0.8;
      @media screen and (min-width: 2100px) {
        right: -3%;
      }
      @media screen and (max-width: 900px) {
        top: 1%;
      }
      @media screen and (max-width: 600px) {
        top: -1%;
        right: -40%;
      }
    }
    &.bg-img__04 {
      width: clamp(250px, 18vw, 378px);
      top: 10%;
      left: -5%;
      opacity: 0.8;
      @media screen and (min-width: 2100px) {
        left: 5%;
      }
      @media screen and (max-width: 600px) {
        top: 20%;
      }
    }
    &.bg-img__05 {
      width: clamp(380px, 30vw, 630px);
      top: 36%;
      left: -8%;
      opacity: 0.8;
      @media screen and (min-width: 2100px) {
        left: 0;
      }
    }
    &.bg-img__06 {
      width: clamp(250px, 22vw, 462px);
      top: 45%;
      right: -3%;
      opacity: 0.8;
      @media screen and (min-width: 2100px) {
        right: 5%;
      }
      @media screen and (max-width: 900px) {
        top: 55%;
      }
    }
    &.bg-img__07 {
      width: clamp(380px, 25vw, 525px);
      bottom: 10%;
      right: -3%;
      opacity: 0.8;
      @media screen and (min-width: 2100px) {
        right: 8%;
      }
      @media screen and (max-width: 900px) {
        bottom: 18%;
        right: -10%;
      }
    }
    &.bg-img__08 {
      width: clamp(350px, 25vw, 525px);
      bottom: 1%;
      left: -2%;
      opacity: 0.8;
      @media screen and (min-width: 2100px) {
        bottom: -2%;
        left: 10%;
      }
      @media screen and (max-width: 900px) {
        bottom: 0;
      }
    }
  }
}
/*------------------ 事例 ------------------*/
.casestudies {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(0deg, rgba(206, 242, 255, 1), rgba(242, 250, 255, 1));
  @media screen and (max-width: 900px) {
    padding: 5.5rem 0 3rem;
  }
}
.casestudies-inner {
  margin: 3rem auto 0;
  max-width: 114rem;
}
.casestudies-pick-item,
.casestudies-item {
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  h4 {
    padding-bottom: 1rem;
    font-size: 2.2rem;
    @media screen and (max-width: 767px) {
      font-size: 2rem;
    }
    span.casestudies-label {
      padding: 0.2rem 1.5rem 0.3rem;
      display: block;
      width: fit-content;
      font-size: 1.6rem;
      font-weight: normal;
      color: #ffffff;
      line-height: 1;
      border-radius: 0.3rem;
      @media screen and (max-width: 600px) {
        font-size: 1.4rem;
      }
      &.casestudies-label__class {
        background: linear-gradient(90deg, rgba(228, 30, 127, 1), rgba(233, 95, 72, 1));
      }
      &.casestudies-label__fab {
        background: var(--orange-grade);
      }
    }
  }
  img {
    margin-bottom: 1rem;
    width: 100%;
  }
}
.casestudies-pick-item {
  h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 2.6rem;
    @media screen and (max-width: 767px) {
      font-size: 2rem;
      flex-direction: column;
      align-items: start;
      gap: 0;
    }
  }
  img {
    margin-bottom: 1rem;
    width: 100%;
  }
}
.casestudies-media {
  padding-bottom: 1rem;
  display: flex;
  gap: 1.5rem;
  @media screen and (max-width: 767px) {
    flex-direction: column;
  }
  img {
    margin: 0;
    width: calc((100% - 1.5rem) / 2);
  }
  img,
  iframe {
    height: auto;
    border-radius: 0.5rem;
    @media screen and (max-width: 767px) {
      width: 100%;
      aspect-ratio: 16 / 9;
    }
  }
}
.casestudies-text {
  .casestudies-name {
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
    span {
      font-size: 1.6rem;
    }
    @media screen and (max-width: 767px) {
      font-size: 2rem;
      span {
        font-size: 1.4rem;
      }
    }
  }
  .casestudies-products {
    padding-bottom: 1rem;
    text-align: center;
    font-weight: 500;
    @media screen and (max-width: 767px) {
      font-size: 1.6rem;
    }
  }
  &.casestudies-text__pick {
    .casestudies-name {
      font-size: 2.4rem;
      @media screen and (max-width: 767px) {
        font-size: 2rem;
      }
    }
    .casestudies-products {
      font-size: 2rem;
      @media screen and (max-width: 767px) {
        font-size: 1.6rem;
      }
    }
  }
}
.casestudies-slider {
  margin-top: 2rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
}
.casestudies-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
  transform: scale(0.8);
  opacity: 0.5;
  will-change: transform;
  @media screen and (max-width: 767px) {
    margin: 0 2rem;
  }
}
.swiper-slide-active {
  opacity: 1;
}
.swiper-slide-active .casestudies-item {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
.swiper-slide-prev .casestudies-item,
.swiper-slide-next .casestudies-item {
  transform: scale(0.9);
  opacity: 0.8;
}
.slider-controls {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.swiper-pagination {
  position: static;
  width: fit-content !important;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  background: #ffffff;
  opacity: 1;
  &.swiper-pagination-bullet-active {
    background: #bad8f9;
    &:hover {
      opacity: 0.8;
    }
  }
}
.swiper-button-prev,
.swiper-button-next {
  margin: 0;
  position: static;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #bad8f9;
  border-radius: 50%;
  &:hover {
    opacity: 0.8;
  }
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}
.swiper-button-prev::before {
  margin-right: 0.2rem;
  border-right: 1.3rem solid #ffffff;
}
.swiper-button-next::before {
  margin-left: 0.8rem;
  border-left: 1.3rem solid #ffffff;
}
/*------------------ 契約の流れ ------------------*/
.flow {
  padding: 17.5rem 0 8rem;
  position: relative;
  background: var(--img-flow-bg);
  background-repeat: no-repeat;
  background-size: cover;
  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 15rem;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    background: #cef2ff;
    top: -0.1rem;
    right: 0;
    @media screen and (max-width: 1139px) {
      height: 10rem;
    }
    @media screen and (max-width: 600px) {
      height: 5rem;
    }
  }
  @media screen and (max-width: 1139px) {
    padding: 15.5rem 0 8rem;
  }
  @media screen and (max-width: 600px) {
    padding: 9rem 0 8rem;
  }
}
.flow-wrap {
  margin: 3rem auto 0;
  padding: 6rem;
  max-width: 114rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  backdrop-filter: blur(40px);
  @media screen and (max-width: 600px) {
    padding: 2rem 1.5rem;
  }
}
.flow-item {
  display: flex;
  align-items: center;
  gap: 5rem;
  &:nth-child(n + 2) {
    padding-top: 6.4rem;
  }
  &:last-child .flow-step::after {
    display: none;
  }
  @media screen and (max-width: 600px) {
    align-items: start;
    gap: 2rem;
  }
}
.flow-step {
  position: relative;
  .flow-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 0.4rem;
    background-image: linear-gradient(to bottom, #e95f48, #eda011);
    -webkit-mask-image: radial-gradient(circle, black 2px, transparent 2px);
    -webkit-mask-size: 4px 10px;
    -webkit-mask-repeat: repeat-y;
    mask-image: radial-gradient(circle, black 2px, transparent 2px);
    mask-size: 4px 10px;
    mask-repeat: repeat-y;
  }
  p {
    font-size: 2.6rem;
    font-weight: bold;
    color: #e95f48;
    text-align: center;
    @media screen and (max-width: 600px) {
      font-size: 1.6rem;
    }
  }
  .flow-img {
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(233, 95, 72, 1), rgba(237, 160, 17, 1));
    border-radius: 50%;
    @media screen and (max-width: 600px) {
      width: 6rem;
      height: 6rem;
    }
    &.flow-img__01 img {
      width: 5rem;
      height: 5rem;
      @media screen and (max-width: 600px) {
        width: 3rem;
        height: 3rem;
      }
    }
    &.flow-img__02 img {
      width: 5.2rem;
      height: 5.2rem;
      @media screen and (max-width: 600px) {
        width: 3.1rem;
        height: 3.1rem;
      }
    }
    &.flow-img__03 img {
      margin: 0 0 0.5rem 0.2rem;
      width: 6.3rem;
      height: 6rem;
      @media screen and (max-width: 600px) {
        margin: 0;
        width: 3.5rem;
        height: 3.5rem;
      }
    }
    &.flow-img__04 img {
      margin: 0.8rem 0.4rem 0 0;
      width: 5.5rem;
      height: 5.5rem;
      @media screen and (max-width: 600px) {
        margin: 0.5rem 0 0;
        width: 3.2rem;
        height: auto;
      }
    }
    &.flow-img__05 img {
      margin-right: 0.3rem;
      width: 7rem;
      height: 6.5rem;
      @media screen and (max-width: 600px) {
        width: 4.5rem;
        height: 4rem;
      }
    }
  }
}
.flow-text {
  h4 {
    padding-bottom: 0.5rem;
  }
  a.flow-link {
    color: #0277d2;
    text-decoration: underline !important;
  }
}
/*------------------ ダウンロード ------------------*/
.download {
  padding: 9rem 0;
  background: var(--img-bg);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  @media screen and (max-width: 900px) {
    background-size: 200% auto;
  }
  @media screen and (max-width: 600px) {
    padding: 6rem 0;
    background-size: 300% auto;
  }
}
.download-title {
  position: relative;
  margin: auto;
  width: fit-content;
  .download-free {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.5rem;
    height: 6.5rem;
    top: -3em;
    left: -7.5rem;
    border-radius: 50%;
    background: var(--pink-grade);
    @media screen and (max-width: 600px) {
      top: -2.5em;
      left: -1.8rem;
    }
    p {
      position: relative;
      font-size: 2.2rem;
      font-weight: bold;
      color: #ffffff;
      line-height: 1;
      @media screen and (max-width: 600px) {
        font-size: 1.8rem;
      }
      &::after {
        content: "";
        position: absolute;
        width: 2.5rem;
        height: 2.5rem;
        top: 0.8em;
        right: -0.8em;
        background: linear-gradient(to bottom, #e41e7f, #e95f48);
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        transform: rotate(130deg);
        z-index: 0;
        @media screen and (max-width: 600px) {
          width: 1.5rem;
          height: 1.2rem;
          top: 1.1em;
          right: -0.5em;
        }
      }
      span {
        position: relative;
        z-index: 1;
      }
    }
    @media screen and (max-width: 600px) {
      width: 5rem;
      height: 5rem;
    }
  }
}
.download-wrap {
  margin: 3rem auto 6rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  max-width: 114rem;
  @media screen and (max-width: 900px) {
    flex-wrap: wrap;
  }
}
.download-inner {
  width: calc((100% - 2rem) / 2);
  @media screen and (max-width: 900px) {
    width: 100%;
    &:last-child {
      margin-top: 5rem;
    }
  }
}
.download-item {
  & + & {
    padding-top: 3rem;
  }
  h4 {
    margin-bottom: 1.5rem;
    padding: 1rem 0 1rem 2rem;
    position: relative;
    line-height: 1.3;
    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 0.8rem;
      height: 100%;
      background: var(--pink-grade);
    }
  }
  p.download-subtitle {
    padding-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: bold;
    @media screen and (max-width: 600px) {
      font-size: 1.8rem;
    }
  }
  p.download-desc {
    padding-bottom: 1.5rem;
  }
  .download-img-inner {
    position: relative;
  }
  img {
    width: 100%;
    height: auto;
  }
  .download-cap {
    display: block;
    font-size: 1.6rem;
    @media screen and (max-width: 600px) {
      font-size: 1.4rem;
    }
  }
  p.download-cap {
    position: absolute;
    bottom: 0;
    right: 2.5rem;
  }
}
/*------------------ 追従パーツ ------------------*/
.follow {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: end;
  font-weight: bold;
  bottom: 0;
  right: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100px);
  transition:
    transform 0.4s ease,
    opacity 0.3s ease,
    visibility 0.3s;
  &.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  &.is-hide {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
  }
}
a.follow-top {
  margin-bottom: 1.5rem;
  padding-right: 1rem;
  line-height: 1;
  font-size: 1.8rem;
  .follow-top-item {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 0 #fff) drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
    &:hover {
      background-position: 100% 50%;
    }
    em {
      position: relative;
      color: transparent;
      &::before {
        position: absolute;
        bottom: -3px;
        left: -8px;
        font-size: 1.5em;
        background: linear-gradient(90deg, #0277d2, #2ec193);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 0 #fff) drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
      }
    }
  }
  @media screen and (max-width: 767px) {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
}
a.follow-cta {
  padding: 1.2rem 1.5rem 1.2rem 10.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.2rem;
  color: #ffffff;
  border-radius: 2rem 0 0;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.4s ease,
    opacity 0.3s ease,
    visibility 0.3s;
  &:hover {
    background-position: 100% 50%;
  }
  &.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
  }
  @media screen and (max-width: 767px) {
    padding: 1.2rem 1rem 1.2rem 8.7rem;
    font-size: 1.8rem;
  }
  &::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 9.1rem;
    height: 7.5rem;
    bottom: 0;
    left: 0.3rem;
    background-image: var(--img-follow-cta);
    background-size: contain;
    background-repeat: no-repeat;
    @media screen and (max-width: 767px) {
      width: 7.9rem;
      height: 6.5rem;
    }
  }
  &::after {
    content: "";
    margin-top: 0.3rem;
    width: 2.5rem;
    height: 2.5rem;
    background-image: var(--img-arrow);
    background-size: contain;
    background-repeat: no-repeat;
    @media screen and (max-width: 767px) {
      width: 2rem;
      height: 2rem;
    }
  }
}
/*------------------ フッター ------------------*/
footer.footer {
  padding: 0;
  position: relative;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: #ffffff;
  background: #303030;
}
/*------------------ Thanks ------------------*/
.thanks-wrap {
  margin: 8.5rem auto 0;
  padding: 6rem 0;
  text-align: center;
  background: var(--bg-image-thanks);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  @media screen and (max-width: 900px) {
    background-size: 150% auto;
  }
  @media screen and (max-width: 767px) {
    margin-top: 6.5rem;
  }
  @media screen and (max-width: 500px) {
    background-size: 300% auto;
  }
  section {
    margin: auto;
    max-width: 89rem;
    @media screen and (max-width: 1139px) {
      padding: 0 !important;
    }
    @media screen and (max-width: 891px) {
      padding: 0 2rem !important;
    }
  }
  h2 {
    padding-bottom: 2.5rem;
    font-size: 4.2rem;
    font-weight: bold;
    @media screen and (max-width: 600px) {
      font-size: 3rem;
    }
  }
  p.thanks-desc {
    padding-bottom: 5rem;
    font-size: 2rem;
    @media screen and (max-width: 600px) {
      font-size: 1.8rem;
      text-align: left;
    }
  }
}
.thanks-inner {
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 730px) {
    flex-direction: column;
    gap: 3rem;
  }
  .thanks-item {
    padding: 3rem 0;
    width: calc((100% - 2rem) / 2);
    border: 1px solid #a4abbd;
    border-radius: 5px;
    background: #ffffff;
    @media screen and (max-width: 730px) {
      width: 100%;
    }
    .thanks-img-inner {
      position: relative;
      img {
        width: 100%;
        height: auto;
      }
      p.thanks-cap {
        position: absolute;
        bottom: 0;
        right: 0;
        font-size: 1.6rem;
        @media screen and (max-width: 900px) {
          bottom: -0.3em;
        }
        @media screen and (max-width: 730px) {
          font-size: 1.4rem;
        }
      }
    }
    .thanks-text-inner {
      padding: 2rem 3rem 0;
      @media screen and (max-width: 900px) {
        padding: 2rem 1rem 0;
      }
      p {
        padding-bottom: 1rem;
        font-size: 2.4rem;
        font-weight: bold;
        line-height: 1.3;
        @media screen and (max-width: 900px) {
          font-size: 2rem;
        }
      }
      .cta-btn {
        font-size: 2.4rem;
        @media screen and (max-width: 900px) {
          font-size: 2rem;
        }
      }
    }
  }
}
.links-item {
  padding: 1.5rem;
  border: 1px solid #a4abbd;
  border-radius: 5px;
  background: #ffffff;
  @media screen and (max-width: 730px) {
    padding: 1rem;
  }
  .links-text {
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    p {
      font-size: 2.4rem;
      font-weight: bold;
      color: #333333;
      text-decoration: none;
      @media screen and (max-width: 767px) {
        font-size: 2rem;
      }
    }
    &::before,
    &::after {
      background-color: #303030;
      border-radius: 5px;
      content: "";
      height: 0.3rem;
      width: 3rem;
    }
    &::before {
      margin-right: 5px;
      transform: rotate(60deg);
    }
    &::after {
      margin-left: 5px;
      transform: rotate(-60deg);
    }
    &:hover {
      color: #303030;
      text-decoration: none;
    }
  }
  img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid #a4abbd;
    &.pctab_only {
      display: block;
      @media screen and (max-width: 730px) {
        display: none;
      }
    }
    &.sp_only {
      display: none;
      @media screen and (max-width: 730px) {
        display: block;
      }
    }
  }
  &:hover {
    opacity: 0.8;
  }
}
a.links-back {
  display: block;
  padding: 5rem 0 8rem;
  font-size: 1.8rem;
  color: #0076be;
  text-decoration: underline !important;
}
