:root {
  --ff: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --white: #ffffff;
  --black: #333333;
  --gray: #f2f2f2;
  --sky1: #009bff;
  --blue1: #0073e5;
  --pink1: #e5007a;
  --gradient1: linear-gradient(135deg, rgba(0, 138, 255, 1) 0%, rgba(136, 0, 255, 1) 50%, rgba(248, 0, 128, 1) 100%);
  --gradient2: linear-gradient(135deg, rgba(0, 138, 255, 1) 0%, rgba(136, 0, 255, 1) 25%, rgba(248, 0, 128, 1) 50%, rgba(136, 0, 255, 1) 75%, rgba(0, 138, 255, 1) 100%);
  --xs: 12px;
  --sm: 14px;
  --md: 16px;
  --lg: 18px;
  --xl: 20px;
}
@media screen and (max-width: 1024px) {
  :root {
    --xs: 10px;
    --sm: 12px;
    --md: 14px;
    --lg: 16px;
    --xl: 18px;
  }
}

html {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper {
    margin-top: 65px;
  }
}
#okm--special--contents--wrapper *,
#okm--special--contents--wrapper ::before,
#okm--special--contents--wrapper ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
  font-feature-settings: "palt" 1;
}
#okm--special--contents--wrapper p,
#okm--special--contents--wrapper table,
#okm--special--contents--wrapper blockquote,
#okm--special--contents--wrapper address,
#okm--special--contents--wrapper pre,
#okm--special--contents--wrapper iframe,
#okm--special--contents--wrapper form,
#okm--special--contents--wrapper figure,
#okm--special--contents--wrapper dl {
  margin: 0;
}
#okm--special--contents--wrapper h1,
#okm--special--contents--wrapper h2,
#okm--special--contents--wrapper h3,
#okm--special--contents--wrapper h4,
#okm--special--contents--wrapper h5,
#okm--special--contents--wrapper h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
#okm--special--contents--wrapper ul,
#okm--special--contents--wrapper ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
#okm--special--contents--wrapper dd {
  margin-left: 0;
}
#okm--special--contents--wrapper a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
#okm--special--contents--wrapper picture,
#okm--special--contents--wrapper img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
#okm--special--contents--wrapper .pc-b {
  display: block !important;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .pc-b {
    display: none !important;
  }
}
#okm--special--contents--wrapper .sp-b {
  display: none !important;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .sp-b {
    display: block !important;
  }
}
#okm--special--contents--wrapper *[data-scroll=fade-up] {
  opacity: 0;
  transform: translateY(2vw);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#okm--special--contents--wrapper *.fade-up {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#okm--special--contents--wrapper *[data-scroll=fade-left] {
  opacity: 0;
  transform: translateX(2vw);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#okm--special--contents--wrapper *.fade-left {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
#okm--special--contents--wrapper *[data-scroll=fade-blur] {
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  transition: opacity 1s, visibility 1s, filter 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#okm--special--contents--wrapper *.fade-blur {
  opacity: 1;
  visibility: visible;
  filter: blur(0px);
}
#okm--special--contents--wrapper *[data-scroll=scale-right] {
  opacity: 0;
  transform: scale(0);
  transform-origin: right top;
  visibility: hidden;
  filter: blur(10px);
  transition: opacity 2s, visibility 2s, filter 2s, transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#okm--special--contents--wrapper *.scale-right {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  filter: blur(0px);
}
#okm--special--contents--wrapper *[data-scroll=scale-left] {
  opacity: 0;
  transform: scale(0);
  transform-origin: left top;
  visibility: hidden;
  filter: blur(10px);
  transition: opacity 2s, visibility 2s, filter 2s, transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#okm--special--contents--wrapper *.scale-left {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  filter: blur(0px);
}
#okm--special--contents--wrapper * .js-split__up .char {
  transform: translateY(0.5vw);
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
}
#okm--special--contents--wrapper .fixed-bnr {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  width: 75px;
  z-index: 3;
  background: var(--gradient2);
  background-size: 100% 250%;
  border-radius: 20px 0 0 20px;
  padding: 25px 0;
  filter: drop-shadow(0 0 20px rgba(20, 0, 65, 0.2));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 18px;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, background-size 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (hover) {
  #okm--special--contents--wrapper .fixed-bnr:hover {
    background-size: 100% 100%;
    opacity: 0.8 !important;
  }
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .fixed-bnr {
    top: 65%;
    width: 50px;
    border-radius: 10px 0 0 10px;
    row-gap: 10px;
    padding: 15px 0;
  }
}
#okm--special--contents--wrapper .fixed-bnr.is-show {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, -50%);
}
#okm--special--contents--wrapper .fixed-bnr.is-hide {
  opacity: 0;
  visibility: hidden;
  transform: translate(100%, -50%);
}
#okm--special--contents--wrapper .fixed-bnr__text {
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: var(--lg);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .fixed-bnr__text {
    font-size: var(--md);
  }
}
#okm--special--contents--wrapper .fixed-bnr__arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid var(--white);
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .fixed-bnr__arrow {
    width: 20px;
    border-width: 1px;
  }
}
#okm--special--contents--wrapper .fixed-bnr__arrow::before {
  content: "";
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 30%;
  aspect-ratio: 1/1;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .fixed-bnr__arrow::before {
    border-top-width: 1px;
    border-right-width: 1px;
  }
}
#okm--special--contents--wrapper .kv,
#okm--special--contents--wrapper .business,
#okm--special--contents--wrapper .reason,
#okm--special--contents--wrapper .movie,
#okm--special--contents--wrapper .history,
#okm--special--contents--wrapper .cta {
  position: relative;
  color: var(--black);
  overflow: hidden;
}
#okm--special--contents--wrapper .kv__inner,
#okm--special--contents--wrapper .business__inner,
#okm--special--contents--wrapper .reason__inner,
#okm--special--contents--wrapper .movie__inner,
#okm--special--contents--wrapper .history__inner,
#okm--special--contents--wrapper .cta__inner {
  width: 90%;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#okm--special--contents--wrapper .kv .icon-diamond,
#okm--special--contents--wrapper .business .icon-diamond,
#okm--special--contents--wrapper .reason .icon-diamond,
#okm--special--contents--wrapper .movie .icon-diamond,
#okm--special--contents--wrapper .history .icon-diamond,
#okm--special--contents--wrapper .cta .icon-diamond {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 15px;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .kv .icon-diamond,
  #okm--special--contents--wrapper .business .icon-diamond,
  #okm--special--contents--wrapper .reason .icon-diamond,
  #okm--special--contents--wrapper .movie .icon-diamond,
  #okm--special--contents--wrapper .history .icon-diamond,
  #okm--special--contents--wrapper .cta .icon-diamond {
    column-gap: 10px;
  }
}
#okm--special--contents--wrapper .kv .icon-diamond::before,
#okm--special--contents--wrapper .business .icon-diamond::before,
#okm--special--contents--wrapper .reason .icon-diamond::before,
#okm--special--contents--wrapper .movie .icon-diamond::before,
#okm--special--contents--wrapper .history .icon-diamond::before,
#okm--special--contents--wrapper .cta .icon-diamond::before {
  content: "";
  width: 17px;
  display: block;
  margin-top: 0.5em;
  aspect-ratio: 1/1;
  background: var(--gradient1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .kv .icon-diamond::before,
  #okm--special--contents--wrapper .business .icon-diamond::before,
  #okm--special--contents--wrapper .reason .icon-diamond::before,
  #okm--special--contents--wrapper .movie .icon-diamond::before,
  #okm--special--contents--wrapper .history .icon-diamond::before,
  #okm--special--contents--wrapper .cta .icon-diamond::before {
    width: 14px;
    margin-top: 0.555em;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .kv .icon-diamond::before,
  #okm--special--contents--wrapper .business .icon-diamond::before,
  #okm--special--contents--wrapper .reason .icon-diamond::before,
  #okm--special--contents--wrapper .movie .icon-diamond::before,
  #okm--special--contents--wrapper .history .icon-diamond::before,
  #okm--special--contents--wrapper .cta .icon-diamond::before {
    margin-top: 0.53em;
  }
}
#okm--special--contents--wrapper .kv {
  width: 100%;
  height: 680px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .kv {
    height: auto;
  }
}
#okm--special--contents--wrapper .kv__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .kv__img {
    aspect-ratio: 1/1;
  }
}
#okm--special--contents--wrapper .kv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#okm--special--contents--wrapper .kv__ttl {
  width: 90%;
  max-width: 1000px;
  position: absolute;
  top: 19.8529411765%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .kv__ttl {
    width: fit-content;
    left: 4.6666666667vw;
    top: 16vw;
    transform: translate(0, 0);
  }
}
#okm--special--contents--wrapper .kv__ttl-jp {
  margin: 0 auto;
  margin-left: 0;
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}
#okm--special--contents--wrapper .kv__ttl-jp br {
  display: none;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .kv__ttl-jp {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .kv__ttl-jp {
    font-size: 7.7333333333vw;
    line-height: 1.25;
  }
  #okm--special--contents--wrapper .kv__ttl-jp br {
    display: block;
  }
}
#okm--special--contents--wrapper .kv__ttl-en {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .kv__ttl-en {
    font-size: 3.2vw;
  }
}
#okm--special--contents--wrapper .kv__scroll {
  position: absolute;
  bottom: 10%;
  left: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  animation: scroll 1s ease-in-out infinite alternate;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .kv__scroll {
    row-gap: 5px;
    bottom: 8%;
    left: 2%;
  }
}
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
#okm--special--contents--wrapper .kv__scroll-text {
  color: var(--white);
  font-size: var(--sm);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  writing-mode: vertical-rl;
  padding-left: 5px;
}
#okm--special--contents--wrapper .kv__scroll-arrow {
  height: 100px;
  width: 1px;
  background: var(--white);
  position: relative;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .kv__scroll-arrow {
    height: 50px;
  }
}
#okm--special--contents--wrapper .kv__scroll-arrow::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: -3px;
  transform: rotate(-45deg);
  width: 20px;
  height: 1px;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .kv__scroll-arrow::before {
    width: 10px;
    bottom: 3px;
    left: -1px;
  }
}
#okm--special--contents--wrapper .business {
  width: 100%;
  background: var(--gray);
  padding: 100px 0 120px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .business {
    padding: 50px 0;
  }
}
#okm--special--contents--wrapper .business__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 45.3333333333%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__bg {
    width: 66.6666666667%;
  }
}
#okm--special--contents--wrapper .business__about {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__about {
    row-gap: 20px;
  }
}
#okm--special--contents--wrapper .business__about-ttl {
  font-size: 52px;
  line-height: 1.3076923077;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .business__about-ttl {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__about-ttl {
    font-size: 32px;
  }
}
#okm--special--contents--wrapper .business__about-text {
  font-size: var(--xl);
  line-height: 1.9;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__about-text {
    font-size: var(--lg);
  }
}
#okm--special--contents--wrapper .business__service {
  width: 100%;
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: 1fr 56.6037735849%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__service {
    margin: 50px auto 0;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 50px;
  }
}
#okm--special--contents--wrapper .business__service-contents {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__service-contents {
    row-gap: 10px;
  }
}
#okm--special--contents--wrapper .business__service-ttl {
  font-size: 32px;
  line-height: 1.3684210526;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__service-ttl {
    font-size: 24px;
  }
}
#okm--special--contents--wrapper .business__service-text {
  font-size: var(--lg);
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__service-text {
    font-size: var(--md);
  }
}
#okm--special--contents--wrapper .business__service-img {
  width: 100%;
  position: relative;
}
#okm--special--contents--wrapper .business__service-img--bg {
  width: 100%;
}
#okm--special--contents--wrapper .business__service-img--bg img {
  opacity: 0;
  visibility: hidden;
  transform-origin: center center;
  transform: scale(0.5);
}
#okm--special--contents--wrapper .business__service-img--arrow {
  width: 71.6666666667%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#okm--special--contents--wrapper .business__service-img--arrow img {
  opacity: 0;
  transform: rotate(-15deg);
  visibility: hidden;
  transform-origin: center;
}
#okm--special--contents--wrapper .business__service-img--list {
  width: 90%;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#okm--special--contents--wrapper .business__service-img--item {
  width: 21.6666666667%;
  aspect-ratio: 1/1;
  list-style: none;
  position: absolute;
}
#okm--special--contents--wrapper .business__service-img--item:nth-child(1) {
  left: 50%;
  top: 12.5%;
  transform: translate(-50%, -50%);
}
#okm--special--contents--wrapper .business__service-img--item:nth-child(2) {
  left: 76.5165042945%;
  top: 23.4834957055%;
  transform: translate(-50%, -50%);
}
#okm--special--contents--wrapper .business__service-img--item:nth-child(3) {
  left: 87.5%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#okm--special--contents--wrapper .business__service-img--item:nth-child(4) {
  left: 76.5165042945%;
  top: 76.5165042945%;
  transform: translate(-50%, -50%);
}
#okm--special--contents--wrapper .business__service-img--item:nth-child(5) {
  left: 50%;
  top: 87.5%;
  transform: translate(-50%, -50%);
}
#okm--special--contents--wrapper .business__service-img--item:nth-child(6) {
  left: 23.4834957055%;
  top: 76.5165042945%;
  transform: translate(-50%, -50%);
}
#okm--special--contents--wrapper .business__service-img--item:nth-child(7) {
  left: 12.5%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#okm--special--contents--wrapper .business__service-img--item:nth-child(8) {
  left: 23.4834957055%;
  top: 23.4834957055%;
  transform: translate(-50%, -50%);
}
#okm--special--contents--wrapper .business__service-img--item img {
  width: 100%;
  filter: drop-shadow(0 0 10px rgba(97, 42, 255, 0.1)), blur(10px);
  opacity: 0;
  visibility: hidden;
  transform-origin: center center;
  transform: scale(0.5);
}
#okm--special--contents--wrapper .business__detail {
  width: 100%;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__detail {
    margin: 50px auto 0;
  }
}
#okm--special--contents--wrapper .business__detail-ttl {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__detail-ttl {
    font-size: 24px;
  }
}
#okm--special--contents--wrapper .business__detail-list {
  width: 100%;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 7.5471698113%;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .business__detail-list {
    margin: 20px auto 0;
    gap: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__detail-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 7vw;
  }
}
#okm--special--contents--wrapper .business__detail-item {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 20px;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__detail-item {
    row-gap: 15px;
  }
}
#okm--special--contents--wrapper .business__detail-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
#okm--special--contents--wrapper .business__detail-num {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  padding: 10px 20px 10px 0;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .business__detail-num {
    padding: 5px 10px 5px 0;
    row-gap: 0px;
  }
}
#okm--special--contents--wrapper .business__detail-num p {
  color: var(--sky1);
  font-size: var(--xs);
  font-weight: 500;
  line-height: 1;
}
#okm--special--contents--wrapper .business__detail-num span {
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .business__detail-num span {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .business__detail-num span {
    font-size: 32px;
  }
}
#okm--special--contents--wrapper .business__detail-dl {
  width: 100%;
  padding-left: 20px;
  border-left: 1px solid var(--black);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 10px;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .business__detail-dl {
    padding-left: 10px;
    row-gap: 5px;
  }
}
#okm--special--contents--wrapper .business__detail-dt {
  font-size: 22px;
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .business__detail-dt {
    font-size: 18px;
    line-height: 1.3333333333;
  }
}
#okm--special--contents--wrapper .business__detail-dd {
  margin: 0;
  font-size: var(--sm);
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
}
#okm--special--contents--wrapper .links {
  margin: 100px auto 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .links {
    margin: 50px auto 0;
  }
}
#okm--special--contents--wrapper .links__list {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5.2631578947%;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .links__list {
    gap: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .links__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#okm--special--contents--wrapper .links__item {
  width: 100%;
}
#okm--special--contents--wrapper .links__btn {
  width: 100%;
  height: 100%;
  padding: 50px 30px;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  align-items: center;
  column-gap: 20px;
  transition: background 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .links__btn {
    padding: 30px 20px;
    column-gap: 3%;
    grid-template-columns: 50px 1fr 20px;
  }
}
#okm--special--contents--wrapper .links__btn--prodcut {
  border: 2px solid var(--blue1);
  background: var(--white);
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .links__btn--prodcut {
    background: var(--blue1);
  }
}
#okm--special--contents--wrapper .links__btn--prodcut .links__icon {
  background-color: var(--blue1);
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .links__btn--prodcut .links__icon {
    background-color: var(--white);
  }
}
#okm--special--contents--wrapper .links__btn--prodcut .links__ttl {
  color: var(--blue1);
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .links__btn--prodcut .links__ttl {
    color: var(--white);
  }
}
#okm--special--contents--wrapper .links__btn--prodcut .links__arrow {
  background: var(--blue1);
}
#okm--special--contents--wrapper .links__btn--prodcut::before {
  background: var(--blue1);
}
@media (hover) {
  #okm--special--contents--wrapper .links__btn--prodcut:hover .links__icon {
    background-color: var(--white);
  }
  #okm--special--contents--wrapper .links__btn--prodcut:hover .links__ttl {
    color: var(--white);
  }
  #okm--special--contents--wrapper .links__btn--prodcut:hover::before {
    transform: translateY(-50%) scaleX(1);
    transform-origin: left;
  }
}
#okm--special--contents--wrapper .links__btn--case {
  border: 2px solid var(--pink1);
  background: var(--white);
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .links__btn--case {
    background: var(--pink1);
  }
}
#okm--special--contents--wrapper .links__btn--case::before {
  background: var(--pink1);
}
#okm--special--contents--wrapper .links__btn--case .links__icon {
  background-color: var(--pink1);
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .links__btn--case .links__icon {
    background-color: var(--white);
  }
}
#okm--special--contents--wrapper .links__btn--case .links__ttl {
  color: var(--pink1);
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .links__btn--case .links__ttl {
    color: var(--white);
  }
}
#okm--special--contents--wrapper .links__btn--case .links__arrow {
  background: var(--pink1);
}
@media (hover) {
  #okm--special--contents--wrapper .links__btn--case:hover .links__icon {
    background-color: var(--white);
  }
  #okm--special--contents--wrapper .links__btn--case:hover .links__ttl {
    color: var(--white);
  }
  #okm--special--contents--wrapper .links__btn--case:hover::before {
    transform: translateY(-50%) scaleX(1);
    transform-origin: left;
  }
}
#okm--special--contents--wrapper .links__btn::before {
  content: "";
  width: 100%;
  height: 105%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#okm--special--contents--wrapper .links__icon {
  width: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--white);
  transition: background-color 0.3s ease-in-out;
}
#okm--special--contents--wrapper .links__icon--prodcut {
  aspect-ratio: 48/59;
  mask-image: url("../img/links_icon01.svg");
}
#okm--special--contents--wrapper .links__icon--case {
  aspect-ratio: 53/51;
  mask-image: url("../img/links_icon02.svg");
}
#okm--special--contents--wrapper .links__ttl {
  position: relative;
  z-index: 1;
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 10px;
  transition: color 0.3s ease-in-out;
}
#okm--special--contents--wrapper .links__ttl-main {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2727272727;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .links__ttl-main {
    font-size: 18px;
  }
}
#okm--special--contents--wrapper .links__ttl-sub {
  margin: 0;
  font-size: var(--sm);
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
#okm--special--contents--wrapper .links__arrow {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid var(--white);
  position: relative;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .links__arrow {
    border-width: 1px;
  }
}
#okm--special--contents--wrapper .links__arrow::before {
  content: "";
  width: 30%;
  aspect-ratio: 1/1;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .links__arrow::before {
    border-right-width: 1px;
    border-bottom-width: 1px;
  }
}
#okm--special--contents--wrapper .reason {
  width: 100%;
  margin: 100px auto 0;
  overflow: visible;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .reason {
    margin: 50px auto 0;
  }
}
#okm--special--contents--wrapper .reason__bg {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-40%);
  width: 47.8666666667%;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .reason__bg {
    width: 40%;
  }
}
#okm--special--contents--wrapper .reason__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--gray);
  position: relative;
  z-index: 2;
}
#okm--special--contents--wrapper .reason__inner {
  padding: 70px 0;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .reason__inner {
    padding: 50px 0;
  }
}
#okm--special--contents--wrapper .reason__ttl {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .reason__ttl {
    row-gap: 10px;
  }
}
#okm--special--contents--wrapper .reason__ttl-main {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3076923077;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .reason__ttl-main {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .reason__ttl-main {
    font-size: 32px;
  }
}
@media screen and (max-width: 400px) {
  #okm--special--contents--wrapper .reason__ttl-main {
    font-size: 28px;
  }
}
#okm--special--contents--wrapper .reason__ttl-sub {
  font-size: var(--xl);
  line-height: 2.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .reason__ttl-sub {
    font-size: var(--lg);
    line-height: 1.5555555556;
  }
}
#okm--special--contents--wrapper .reason__list {
  width: 100%;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 30px;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .reason__list {
    margin: 30px auto 0;
    row-gap: 15px;
  }
}
#okm--special--contents--wrapper .reason__item {
  background: var(--white);
  padding: 30px 2.8301886792% 30px 4.7169811321%;
  display: grid;
  grid-template-columns: 50% 1fr;
  column-gap: 1.4150943396%;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .reason__item {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 30px 5%;
  }
}
#okm--special--contents--wrapper .reason__item-box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-content: center;
  row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .reason__item-box {
    row-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .reason__item-box {
    padding-left: 0;
  }
}
#okm--special--contents--wrapper .reason__item-ttl {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .reason__item-ttl {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .reason__item-ttl {
    font-size: 24px;
  }
}
#okm--special--contents--wrapper .reason__item-text {
  width: calc(100% - 32px);
  margin: 0 auto;
  margin-right: 0;
  font-size: var(--sm);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .reason__item-text {
    width: calc(100% - 24px);
  }
}
#okm--special--contents--wrapper .reason__item-img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .reason__item-img {
    width: 100%;
    margin: 0 auto;
  }
}
#okm--special--contents--wrapper .bnr {
  width: 100%;
  margin: 120px auto 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .bnr {
    margin: 50px auto 0;
  }
}
#okm--special--contents--wrapper .bnr__link {
  width: 100%;
  transition: opacity 0.3s ease-in-out;
}
@media (hover) {
  #okm--special--contents--wrapper .bnr__link:hover {
    opacity: 0.7;
  }
}
#okm--special--contents--wrapper .bnr__img {
  width: 100%;
}
#okm--special--contents--wrapper .movie {
  width: 100%;
  margin: 100px auto 0;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .movie {
    margin: 50px auto 0;
  }
}
#okm--special--contents--wrapper .movie__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(40%);
  width: 47.8666666667%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .movie__bg {
    width: 40%;
  }
}
#okm--special--contents--wrapper .movie__ttl {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .movie__ttl {
    font-size: 24px;
  }
}
#okm--special--contents--wrapper .movie__video {
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .movie__video {
    margin: 20px auto 0;
  }
}
#okm--special--contents--wrapper .movie__video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
#okm--special--contents--wrapper .history {
  width: 100%;
  margin: 100px auto 0;
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .history {
    margin: 50px auto 0;
    padding: 50px 0 0;
  }
}
#okm--special--contents--wrapper .history__bg {
  width: 94.6666666667%;
  height: 100%;
  position: absolute;
  background: var(--gray);
  top: 0;
  right: 0;
}
@media screen and (max-width: 1240px) {
  #okm--special--contents--wrapper .history__bg {
    width: 97.5%;
  }
}
#okm--special--contents--wrapper .history__inner {
  padding-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .history__inner {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__inner {
    padding-bottom: 50px;
  }
}
#okm--special--contents--wrapper .history__ttl {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .history__ttl {
    row-gap: 10px;
  }
}
#okm--special--contents--wrapper .history__ttl-main {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.3076923077;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .history__ttl-main {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__ttl-main {
    font-size: 32px;
  }
}
#okm--special--contents--wrapper .history__ttl-sub {
  font-size: var(--xl);
  line-height: 1.9;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__ttl-sub {
    font-size: var(--lg);
    line-height: 1.5555555556;
  }
  #okm--special--contents--wrapper .history__ttl-sub br {
    display: none;
  }
}
#okm--special--contents--wrapper .history__box {
  width: 100%;
  margin: 50px auto 0;
  position: relative;
  height: auto;
  overflow: hidden;
  transition: height 0.5s ease;
  will-change: height;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .history__box {
    margin: 30px auto 0;
  }
}
#okm--special--contents--wrapper .history__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 30px;
  position: relative;
  padding-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .history__list {
    row-gap: 15px;
    padding-bottom: 100px;
  }
}
#okm--special--contents--wrapper .history__list::before {
  content: "";
  width: 2px;
  height: 96%;
  background: #d4d4d4;
  position: absolute;
  bottom: 0;
  left: 37%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__list::before {
    left: 40.3%;
  }
}
#okm--special--contents--wrapper .history__item {
  width: 100%;
  display: grid;
  padding: 1.8867924528%;
  grid-template-columns: 28.431372549% 1fr;
  align-items: center;
  column-gap: 8.3333333333%;
  background: var(--white);
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .history__item {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__item {
    padding: 10px;
    grid-template-columns: 35% 1fr;
    column-gap: 5%;
  }
}
#okm--special--contents--wrapper .history__item-img {
  width: 100%;
}
@media screen and (max-width: 500px) {
  #okm--special--contents--wrapper .history__item-img {
    height: 100%;
    aspect-ratio: 4/3;
  }
}
#okm--special--contents--wrapper .history__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#okm--special--contents--wrapper .history__item-contents {
  padding-left: 3.1007751938%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: start;
  row-gap: 15px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .history__item-contents {
    row-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__item-contents {
    padding-left: 5%;
  }
}
#okm--special--contents--wrapper .history__item-contents::before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 0;
  transform: translateX(-65%);
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--gradient1);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__item-contents::before {
    width: 12px;
    top: 1.2vw;
    transform: translateX(-50%);
  }
}
#okm--special--contents--wrapper .history__item-date {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  column-gap: 10px;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__item-date {
    column-gap: 5px;
  }
}
#okm--special--contents--wrapper .history__item-date-year {
  font-size: 48px;
  font-weight: 600;
  line-height: 0.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__item-date-year {
    font-size: 32px;
  }
}
@media screen and (max-width: 500px) {
  #okm--special--contents--wrapper .history__item-date-year {
    font-size: 24px;
  }
}
#okm--special--contents--wrapper .history__item-date-era {
  font-size: var(--md);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 500px) {
  #okm--special--contents--wrapper .history__item-date-era {
    font-size: var(--sm);
  }
}
#okm--special--contents--wrapper .history__item-ttl {
  font-size: var(--lg);
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__item-ttl {
    font-size: var(--sm);
  }
}
#okm--special--contents--wrapper .history__more {
  width: 100%;
  height: 150px;
  background: #f2f2f2;
  background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, rgb(242, 242, 242) 50%);
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
@media (hover) {
  #okm--special--contents--wrapper .history__more:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .history__more {
    height: 100px;
  }
}
#okm--special--contents--wrapper .history__more-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  background: none;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__more-btn {
    column-gap: 5px;
  }
}
#okm--special--contents--wrapper .history__more-text {
  font-size: var(--lg);
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 500;
}
#okm--special--contents--wrapper .history__more-plus {
  width: 18px;
  aspect-ratio: 1/1;
  position: relative;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .history__more-plus {
    width: 14px;
  }
}
#okm--special--contents--wrapper .history__more-plus::before, #okm--special--contents--wrapper .history__more-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s ease-in-out;
}
#okm--special--contents--wrapper .history__more-plus::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
#okm--special--contents--wrapper .history__more-plus.active::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
#okm--special--contents--wrapper .cta {
  width: 100%;
  margin: 100px auto 0;
  padding: 100px 0;
  background: url("../img/cta_bg-pc.jpg") center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .cta {
    margin: 50px auto 0;
    padding: 50px 0;
  }
}
#okm--special--contents--wrapper .cta__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .cta__inner {
    row-gap: 20px;
  }
}
#okm--special--contents--wrapper .cta__ttl {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  row-gap: 20px;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .cta__ttl {
    row-gap: 10px;
  }
}
#okm--special--contents--wrapper .cta__ttl-main {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.380952381;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  #okm--special--contents--wrapper .cta__ttl-main {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .cta__ttl-main {
    font-size: 20px;
  }
}
#okm--special--contents--wrapper .cta__ttl-sub {
  font-size: var(--lg);
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .cta__ttl-sub {
    font-size: var(--md);
  }
}
#okm--special--contents--wrapper .cta__btn {
  width: 100%;
}
#okm--special--contents--wrapper .cta__link {
  width: 100%;
  max-width: 460px;
  padding: 20px 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  border: 2px solid transparent;
  border-radius: 100vmax;
  background: linear-gradient(#fff, #fff) padding-box, var(--gradient1) border-box;
  transition: opacity 0.3s ease-in-out, background 0.3s ease-in-out;
  overflow: hidden;
}
@media (hover) {
  #okm--special--contents--wrapper .cta__link:hover .cta__link-text {
    color: var(--white);
  }
  #okm--special--contents--wrapper .cta__link:hover .cta__link-arrow {
    border-color: var(--white);
  }
  #okm--special--contents--wrapper .cta__link:hover .cta__link-arrow::before {
    border-color: var(--white);
  }
  #okm--special--contents--wrapper .cta__link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .cta__link {
    max-width: 350px;
    padding: 15px 0;
  }
}
#okm--special--contents--wrapper .cta__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 101%;
  height: 100%;
  background: var(--gradient1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.9, 0, 0.3, 1);
}
#okm--special--contents--wrapper .cta__link-text {
  position: relative;
  z-index: 1;
  font-size: var(--xl);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  transition: color 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .cta__link-text {
    font-size: var(--lg);
  }
}
#okm--special--contents--wrapper .cta__link-arrow {
  position: absolute;
  top: 50%;
  right: 8.6956521739%;
  transform: translateY(-50%);
  z-index: 1;
  width: 6.9565217391%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--black);
  transition: border-color 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  #okm--special--contents--wrapper .cta__link-arrow {
    right: 5%;
    width: 7.1428571429%;
  }
}
#okm--special--contents--wrapper .cta__link-arrow::before {
  content: "";
  width: 28.125%;
  aspect-ratio: 1/1;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: border-color 0.5s ease-in-out;
}

/*# sourceMappingURL=style.css.map */
