@charset "UTF-8";
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  vertical-align: bottom;
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

:root {
  --main-color: #00a9ca;
  --font-en: "mr-eaves-modern", sans-serif;
  --fz12: .75rem;
  --fz14: .875rem;
  --fz16: 1rem;
  --fz18: 1.125rem;
  --fz20: 1.25rem;
  --fz21: 1.3125rem;
  --fz22: 1.375rem;
  --fz24: 1.5rem;
  --fz26: 1.625rem;
  --fz28: 1.75rem;
  --fz30: 1.875rem;
  --fz32: 2rem;
  --fz34: 2.125rem;
  --fz40: 2.5rem;
  --fz46: 2.875rem;
  --fz48: 3rem;
  --fz60: 3.75rem;
  --fz68: 4.25rem;
  --fz78: 4.875rem;
  --fz80: 5rem;
  --fz120: 7.5rem;
  --hover-opacity: .6;
  --hover-transition: .5s;
}

html,
body {
  overflow-x: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fz16);
  line-height: 1;
  word-break: break-word;
}
body.is-active {
  overflow: hidden;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.bg .bg-wrap {
  display: inline-block;
  position: relative;
  margin-top: 5px;
}
.bg .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #362ae0 0%, #3b79cc 50%, #42d3ed 100%);
  content: "";
}
.bg .bg-wrap .inn {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 5px 15px;
  color: #ffffff;
}
.bg.is-animated .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.marquee {
  white-space: nowrap;
}

.marquee.js-on {
  overflow: hidden;
}

.marquee__text.js-on {
  transform: translateX(100%);
  animation: marquee 15s linear infinite;
}

.marquee__text.js-on.is-reverse {
  transform: translateX(100%);
  animation: marqueereverse 15s linear infinite;
}

.marquee__text.js-on {
  transform: translateX(100%);
  animation: marquee 15s linear infinite;
  animation-delay: 0.4s;
}

@keyframes marquee {
  0% {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes marqueereverse {
  0% {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  transition: var(--hover-transition);
}
.l-header.is-active, .l-header.is-scroll {
  background: #ffffff;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 20px;
}
@media (min-width: 1260px) {
  .l-header__inner {
    gap: 60px;
    gap: clamp(20px, 4.1666666667vw, 60px);
    margin: 0 auto;
    padding: 0 0 0 80px;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: auto;
  vertical-align: bottom;
}
@media (min-width: 1260px) {
  .l-header__logo img {
    width: 222px;
    height: auto;
  }
}
.l-header__navi {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: absolute;
  top: 76px;
  right: 0;
  transform: translateX(150%);
  max-height: calc(100svh - 76px);
  padding: 40px;
  overflow: auto;
  background: var(--main-color);
  transition: 0.3s;
}
@media (min-width: 1260px) {
  .l-header__navi {
    position: static;
    transform: none;
    margin-right: auto;
    margin-left: 0;
    padding: 0;
    background: none;
  }
}
.l-header__navi.is-active {
  transform: none;
  width: 100%;
}
.l-header__navi-list01 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-header__navi-list01 > li {
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
.l-header__navi-list02 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 14px;
  color: #ffffff;
}
.l-header__navi-list02 > li {
  position: relative;
  padding-left: 32px;
}
.l-header__navi-list02 > li::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: #d9d9d9;
  content: "";
}
.l-header__navi-list02 > li a {
  font-size: var(--fz16);
  line-height: 1.5;
}
.l-header__navi-list03 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-header__navi-list03 a {
  display: inline-flex;
  gap: 10px;
  color: #ffffff;
  line-height: 1.3;
}
.l-header__navi-list03 a::after {
  content: url("../img/common/icon_triangle02_white_right.svg");
}
.l-header__navi-list04 {
  display: flex;
  gap: clamp(20px, 4.1666666667vw, 60px);
  font-size: clamp(var(--fz16), 1.25vw, var(--fz18));
  font-weight: bold;
  line-height: normal;
}
.l-header__navi-list04 a {
  transition: var(--hover-transition);
}
.l-header__navi-list04 a:hover {
  opacity: var(--hover-opacity);
}
.l-header__title01 {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
  padding-left: 44px;
  color: #ffffff;
  font-weight: 700;
}
.l-header__title01::before {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  content: url("../img/common/icon_triangle01_white_right.svg");
}
.l-header__title01 span:nth-child(1) {
  font-family: var(--font-en);
  font-size: var(--fz36);
  line-height: normal;
}
.l-header__title01 span:nth-child(2) {
  font-size: var(--fz18);
  line-height: 1.5;
}
.l-header__title02 {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 15px;
  color: var(--main-color);
  font-weight: 700;
}
.l-header__title02 span:nth-child(1) {
  font-family: var(--font-en);
  font-size: var(--fz30);
  line-height: normal;
}
.l-header__title02 span:nth-child(2) {
  font-size: var(--fz16);
  line-height: 1.3;
}
.l-header__title03 {
  color: var(--main-color);
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.l-header__text01 {
  font-size: var(--fz14);
  line-height: normal;
}
.l-header__navi-contact {
  padding: 15px;
  border-radius: 4px;
  background: #ffffff;
}
.l-header__navi-tel {
  display: block;
}
.l-header__navi-tel dt {
  padding: 10px 0;
  border-radius: 3px 3px 0 0;
  background: #00a9ca;
  color: #ffffff;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.l-header__navi-tel dd {
  padding: 10px;
  border-radius: 0 0 3px 3px;
  background: rgba(0, 169, 202, 0.1);
}
.l-header__navi-tel-number {
  display: block;
  margin-bottom: 5px;
  color: #00a9ca;
  font-size: var(--fz32);
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.l-header__sns-link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 1260px) {
  .l-header__contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 96px;
    padding: 10px 40px;
    background: #d39a44;
    color: #ffffff;
    font-size: clamp(var(--fz16), 1.25vw, var(--fz18));
    font-weight: 700;
    line-height: normal;
    transition: var(--hover-transition);
  }
  .l-header__contact-button:hover {
    opacity: var(--hover-opacity);
  }
  .l-header__contact-button::after {
    content: url("../img/common/icon_triangle04_white_right.svg");
  }
}
@media (max-width: 1259px) {
  .l-header__pc {
    display: none !important;
  }
}
@media (min-width: 1260px) {
  .l-header__sp {
    display: none !important;
  }
}

.l-hamburger {
  margin-left: auto;
  padding: 0 27px;
  line-height: 1;
  cursor: pointer;
}
.l-hamburger__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  transition: 0.3s;
}
.l-hamburger__item {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  transition: 0.3s;
}
.l-hamburger__item:nth-of-type(1) {
  top: 0;
}
.l-hamburger__item:nth-of-type(2) {
  top: 11px;
}
.l-hamburger__item:nth-of-type(3) {
  bottom: 0;
}
.l-hamburger.is-active .l-hamburger__item:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.l-hamburger.is-active .l-hamburger__item:nth-of-type(2) {
  opacity: 0;
}
.l-hamburger.is-active .l-hamburger__item:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
@media (min-width: 1260px) {
  .l-hamburger {
    display: none;
  }
}

.l-main {
  margin-top: 76px;
}
@media (min-width: 811px) {
  .l-main {
    margin-top: 156px;
  }
}
@media (min-width: 1260px) {
  .l-main.is-front-page {
    margin-top: 0;
  }
}

.l-footer {
  background: var(--main-color);
}
.l-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}
@media (min-width: 811px) {
  .l-footer__inner {
    padding: 60px 80px 40px;
  }
}
.l-footer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 811px) {
  .l-footer__head {
    display: flex;
    align-items: center;
  }
}
.l-footer__logo a {
  font-size: var(--fz16);
  line-height: 1.5;
  transition: var(--hover-transition);
}
.l-footer__logo a:hover {
  opacity: var(--hover-opacity);
}
@media (min-width: 811px) {
  .l-footer__navi {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 60px;
  }
}
.l-footer__navi-list01 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 811px) {
  .l-footer__navi-list01 {
    flex-grow: 1;
    flex-direction: row;
    gap: 60px;
    width: calc(100% - 420px);
    min-width: 600px;
  }
}
@media (min-width: 811px) {
  .l-footer__navi-list01 > li {
    width: calc((100% - 120px) / 3);
  }
}
.l-footer__navi-list01 > li a {
  transition: var(--hover-transition);
}
.l-footer__navi-list01 > li a:hover {
  opacity: var(--hover-opacity);
}
.l-footer__navi-list02 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 14px;
  color: #ffffff;
}
@media (min-width: 811px) {
  .l-footer__navi-list02 {
    padding-left: 0;
  }
}
.l-footer__navi-list02 > li {
  position: relative;
  padding-left: 32px;
}
@media (min-width: 811px) {
  .l-footer__navi-list02 > li {
    padding-left: 23px;
  }
}
.l-footer__navi-list02 > li::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: #d9d9d9;
  content: "";
}
.l-footer__navi-list02 > li a {
  font-size: var(--fz16);
  line-height: 1.5;
  transition: var(--hover-transition);
}
.l-footer__navi-list02 > li a:hover {
  opacity: var(--hover-opacity);
}
.l-footer__navi-list03 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
  color: #ffffff;
  font-size: var(--fz14);
  font-weight: 600;
  line-height: normal;
}
@media (min-width: 811px) {
  .l-footer__navi-list03 {
    gap: 15px 25px;
    margin: 0;
  }
}
.l-footer__navi-list03 a {
  font-size: var(--fz16);
  line-height: 1.5;
  transition: var(--hover-transition);
}
.l-footer__navi-list03 a:hover {
  opacity: var(--hover-opacity);
}
.l-footer__title01 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (min-width: 811px) {
  .l-footer__title01 {
    margin-bottom: 30px;
  }
}
.l-footer__title01 span {
  color: #ffffff;
  font-family: var(--font-en);
  font-weight: 700;
}
.l-footer__title01 span:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fz30);
  line-height: normal;
}
.l-footer__title01 span:nth-child(1)::after {
  line-height: 0;
  content: url("../img/common/icon_triangle03_white_right.svg");
}
.l-footer__title01 span:nth-child(2) {
  font-size: var(--fz16);
  line-height: 1.3;
}
.l-footer__title02 {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 15px;
  color: var(--main-color);
  font-weight: 700;
}
.l-footer__title02 span:nth-child(1) {
  font-family: var(--font-en);
  font-size: var(--fz30);
  line-height: normal;
}
.l-footer__title02 span:nth-child(2) {
  font-size: var(--fz16);
  line-height: 1.3;
}
.l-footer__title03 {
  color: var(--main-color);
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.l-footer__text01 {
  font-size: var(--fz14);
  line-height: normal;
  text-align: center;
}
.l-footer__contact {
  flex-grow: 1;
  padding: 15px;
  border-radius: 4px;
  background: #ffffff;
}
.l-footer__tel {
  display: block;
}
.l-footer__tel dt {
  padding: 10px 0;
  border-radius: 3px 3px 0 0;
  background: #00a9ca;
  color: #ffffff;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.l-footer__tel dd {
  padding: 10px;
  border-radius: 0 0 3px 3px;
  background: rgba(0, 169, 202, 0.1);
}
.l-footer__tel-number {
  display: block;
  margin-bottom: 5px;
  color: #00a9ca;
  font-size: var(--fz32);
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.l-footer__sns-link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.l-footer__sns-link a {
  transition: var(--hover-transition);
}
.l-footer__sns-link a:hover {
  opacity: var(--hover-opacity);
}
@media (min-width: 811px) {
  .l-footer__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
  }
}
.l-footer__copyright {
  margin-top: 40px;
  color: #ffffff;
  font-family: var(--font-en);
  font-size: var(--fz14);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
}
@media (min-width: 811px) {
  .l-footer__copyright {
    margin-top: 0;
  }
}

.l-post::after {
  display: block;
  clear: both;
  content: "";
}
.l-post h1:not(.c-title01):not(.c-title02):not(.c-title03):not(.p-schedule__title02):not(.p-schedule__title03),
.l-post h2:not(.c-title01):not(.c-title02):not(.c-title03):not(.p-schedule__title02):not(.p-schedule__title03),
.l-post h3:not(.c-title01):not(.c-title02):not(.c-title03):not(.p-schedule__title02):not(.p-schedule__title03),
.l-post h4:not(.c-title01):not(.c-title02):not(.c-title03):not(.p-schedule__title02):not(.p-schedule__title03),
.l-post h5:not(.c-title01):not(.c-title02):not(.c-title03):not(.p-schedule__title02):not(.p-schedule__title03),
.l-post h6:not(.c-title01):not(.c-title02):not(.c-title03):not(.p-schedule__title02):not(.p-schedule__title03) {
  font-weight: revert;
  font-size: revert;
  margin: revert;
}
.l-post p:not(.c-text01):not(.c-text02):not(.p-schedule__text) {
  margin: revert;
  line-height: 1.8;
}
.l-post ul:not(.c-ul01):not(.c-ol01):not(.c-ol02):not(.p-schedule__timeline),
.l-post ol:not(.c-ul01):not(.c-ol01):not(.c-ol02):not(.p-schedule__timeline) {
  margin: revert;
  line-height: 1.8;
  padding-left: 24px;
}
.l-post ul:not(.c-ul01):not(.c-ol01):not(.c-ol02):not(.p-schedule__timeline) {
  list-style-type: initial;
}
.l-post ol:not(.c-ul01):not(.c-ol01):not(.c-ol02):not(.p-schedule__timeline) {
  list-style-type: decimal;
}
.l-post a {
  color: #3399cc;
}
.l-post strong,
.l-post b {
  font-weight: bold;
}

.p-schedule {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  margin-top: 30px;
  padding: 40px 15px 15px 15px;
  border-radius: 3px;
  background: rgba(0, 169, 202, 0.1);
}
@media (min-width: 811px) {
  .p-schedule {
    margin-top: 120px;
    padding: 50px 40px 40px 40px;
  }
}
.p-schedule__title01 {
  position: absolute;
  top: 0;
  right: -20px;
  transform: translateY(-50%);
  color: #77becc;
  font-family: var(--font-en);
  font-size: var(--fz60);
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}
@media (min-width: 811px) {
  .p-schedule__title01 {
    right: 40px;
    font-size: var(--fz80);
  }
}
.p-schedule__title02 {
  padding: 10px 20px;
  border-radius: 3px;
  background: #333333;
  color: #ffffff;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 811px) {
  .p-schedule__title02 {
    font-size: var(--fz22);
  }
}
.p-schedule__title03 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  line-height: normal;
}
.p-schedule__title03:not(:last-child) {
  margin-bottom: 10px;
}
.p-schedule__time {
  color: #00a9ca;
  font-size: var(--fz20);
}
@media (min-width: 811px) {
  .p-schedule__time {
    font-size: var(--fz22);
  }
}
.p-schedule__action {
  font-size: var(--fz18);
}
@media (min-width: 811px) {
  .p-schedule__action {
    font-size: var(--fz20);
  }
}
.p-schedule__timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.p-schedule__timeline > li {
  width: 100%;
  padding: 10px 0 25px;
  background-image: linear-gradient(to right, #77becc 2px, transparent 2px);
  background-position: left bottom;
  background-size: 10px 2px;
  background-repeat: repeat-x;
}
.p-schedule__text {
  line-height: normal;
}

.p-button-area01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  max-width: 542px;
  margin: 0 auto;
  padding: 100px 0;
}
@media (min-width: 811px) {
  .p-button-area01 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (min-width: 811px) {
  .p-button-area01__long {
    width: 100%;
  }
}
@media (min-width: 811px) {
  .p-button-area01__short {
    width: calc((100% - 20px) / 2);
  }
}

.p-contents01 {
  padding-top: 60px;
}
@media (min-width: 811px) {
  .p-contents01 {
    padding-top: 80px;
  }
}

@media (max-width: 810px) {
  .c-page-kv01 + .p-contents01 {
    padding-top: 0;
  }
}

.top-kv {
  position: relative;
  height: calc(100svh - 76px);
}
@media (min-width: 811px) {
  .top-kv {
    height: 100svh;
  }
}
.top-kv__video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-kv__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  position: absolute;
  top: 96px;
  left: 0;
  z-index: 2;
  padding: 35px 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
}
@media (min-width: 811px) {
  .top-kv__contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    height: calc(100% - 96px);
    padding: 0 120px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
  }
}
.top-kv__sp-contents {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
  background: #ebf6f8;
}
@media (min-width: 811px) {
  .top-kv__sp-contents {
    display: none;
  }
}
.top-kv__head {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-style: normal;
  font-size: var(--fz34);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media (min-width: 811px) {
  .top-kv__head {
    font-family: var(--font-en);
    font-size: var(--fz40);
    font-weight: 700;
    line-height: normal;
  }
}
.top-kv__head::after {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--main-color);
  content: "";
}
.top-kv__title {
  font-size: var(--fz26);
  font-weight: 700;
  line-height: 1.45;
}
@media (min-width: 811px) {
  .top-kv__title {
    margin-bottom: 20px;
    font-size: var(--fz46);
  }
}
.top-kv__title02 {
  position: relative;
  top: -20px;
  margin-bottom: 10px;
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz68);
  font-weight: 700;
  line-height: 0.8;
}
@media (min-width: 811px) {
  .top-kv__title02 {
    position: absolute;
    bottom: 0;
    left: 80px;
    margin-bottom: 0;
    font-size: var(--fz120);
    font-size: clamp(var(--fz78), 8.34vw, var(--fz120));
    white-space: nowrap;
  }
}
.top-kv__title02 br {
  display: none;
}
@media (min-width: 811px) and (max-width: 1200px) {
  .top-kv__title02 br {
    display: block;
  }
}
.top-kv__lead {
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (min-width: 811px) {
  .top-kv__lead {
    margin-bottom: 0;
    font-size: var(--fz18);
  }
}
.top-kv__bottom {
  position: relative;
}

.top-service {
  padding-bottom: 40px;
  background: #ebf6f8;
}
@media (min-width: 811px) {
  .top-service__container {
    max-width: 1440px;
    margin: 0 auto 40px;
    padding: 0 80px;
  }
}
@media (min-width: 811px) {
  .top-service__container__in {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    position: relative;
  }
}
.top-service__text-slide {
  position: absolute;
  top: 0;
  left: 0;
}
.top-service__toparea {
  position: relative;
}
.top-service__toparea__inner {
  display: flex;
  flex-direction: column;
  gap: 20px 40px;
  margin-top: -180px;
}
@media (min-width: 811px) {
  .top-service__toparea__inner {
    margin-top: 0;
    max-width: 840px;
  }
}
.top-service__hero {
  position: relative;
}
@media (min-width: 811px) {
  .top-service__hero {
    position: absolute;
    top: -103px;
    right: 0;
    z-index: -1;
    max-width: 640px;
    max-width: clamp(600px, 44.4444444444vw, 800px);
    overflow: hidden;
    transition: 0.3s;
  }
}
.top-service__hero img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}
@media (min-width: 811px) {
  .top-service__hero img {
    width: auto;
    height: auto;
  }
}
.top-service__box {
  flex-grow: 1;
  min-width: calc(50% - 20px);
  position: relative;
}
.top-service__box > div {
  background: #ebf6f8;
  border-radius: 5px;
}
.top-service__box a {
  display: block;
  padding: 20px;
  border-radius: 5px;
  background: #ffffff;
  transition: var(--hover-transition);
  border-radius: 5px;
  background: #ffffff;
}
@media (min-width: 811px) {
  .top-service__box a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 50px;
  }
  .top-service__box a:hover {
    opacity: var(--hover-opacity);
  }
}
.top-service__box02 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.top-service__box02 > div {
  background: #ebf6f8;
}
.top-service__box03 {
  display: grid;
  gap: 20px;
}
@media (min-width: 811px) {
  .top-service__box03 {
    gap: 40px;
  }
}
.top-service__box03 .top-service__product-list {
  background: #fff;
}
.top-service__box03 .top-service__product-item__title {
  margin-bottom: 0;
}
.top-service__box-head {
  position: relative;
}
@media (min-width: 811px) {
  .top-service__box-head {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding-bottom: 30px;
  }
}
@media (min-width: 811px) {
  .top-service__box-head::after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(51, 51, 51, 0.5);
    content: "";
  }
}
.top-service__icon {
  flex-shrink: 0;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 811px) {
  .top-service__icon {
    margin-bottom: 0;
  }
}
.top-service__title01 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: var(--fz22);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-transform: capitalize;
}
@media (min-width: 811px) {
  .top-service__title01 {
    margin: 0;
    padding: 0;
    font-size: var(--fz26);
    text-align: left;
  }
}
.top-service__title01::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(51, 51, 51, 0.5);
  content: "";
}
@media (min-width: 811px) {
  .top-service__title01::after {
    display: none;
  }
}
.top-service__ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
@media (min-width: 811px) {
  .top-service__ol {
    margin-bottom: 0;
  }
}
.top-service__ol > li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-service__ol > li > span {
  width: 88px;
  padding: 8px 10px;
  border-radius: 3px;
  background: #00a9ca;
  color: #ffffff;
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}
.top-service__ol > li > div {
  display: flex;
  flex-flow: column;
}
.top-service__ol > li > div > span:nth-child(1) {
  font-style: normal;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
}
@media (min-width: 811px) {
  .top-service__ol > li > div > span:nth-child(1) {
    font-size: var(--fz18);
  }
}
.top-service__ol > li > div > span:nth-child(2) {
  font-style: normal;
  font-size: var(--fz14);
}
.top-service__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 0;
  border-radius: 3px;
  background: rgba(211, 154, 68, 0.1);
  color: #d39a44;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  transition: var(--hover-transition);
}
.top-service__button::after {
  content: url("../img/common/icon_triangle01_yellow_right.svg");
}
.top-service__button:hover {
  opacity: var(--hover-opacity);
}
@media (min-width: 811px) {
  .top-service__button {
    justify-content: flex-end;
    width: auto;
    margin: 0 0 0 auto;
    padding: 0;
    background: none;
    font-size: var(--fz18);
  }
}
.top-service__dl {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 811px) {
  .top-service__dl {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 100px;
  }
}
@media (min-width: 811px) {
  .top-service__div {
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 811px) and (max-width: 1024px) {
  .top-service__div {
    width: 100%;
  }
}
@media (min-width: 811px) {
  .top-service__div--wide {
    width: 100%;
  }
}
.top-service__dt {
  margin-bottom: 5px;
  color: #77becc;
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: capitalize;
}
.top-service__dl-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #ffffff;
  transition: var(--hover-transition);
}
.top-service__dl-link:hover {
  opacity: var(--hover-opacity);
}
@media (min-width: 811px) {
  .top-service__dl-link {
    gap: 30px;
    padding: 20px 40px;
  }
}
.top-service__dl-link::after {
  flex-shrink: 0;
  margin: 0 0 0 auto;
  content: url("../img/common/icon_triangle01_yellow_right.svg");
}
@media (min-width: 811px) {
  .top-service__dl-link::after {
    padding-right: 18px;
    background: url("../img/common/icon_triangle01_yellow_right.svg") no-repeat;
    background-position: center right;
    color: #d39a44;
    font-family: var(--font-en);
    font-style: normal;
    font-size: var(--fz18);
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    content: "MORE";
  }
}
.top-service__dl-icon {
  flex-shrink: 0;
}
.top-service__dl-textbox {
  padding-left: 10px;
}
@media (min-width: 811px) {
  .top-service__dl-textbox {
    padding: 0;
  }
}
.top-service__dl-title {
  margin-bottom: 10px;
  font-size: var(--fz22);
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
}
@media (min-width: 811px) {
  .top-service__dl-title {
    font-size: var(--fz24);
  }
}
.top-service__dl-text {
  font-size: var(--fz14);
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
}
@media (min-width: 811px) {
  .top-service__dl-text {
    font-size: var(--fz16);
  }
}
.top-service__marquee {
  color: rgba(119, 190, 204, 0.25);
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz80);
  font-weight: 700;
  line-height: 0.8;
  text-align: right;
}
@media (min-width: 811px) {
  .top-service__marquee {
    padding-right: 40px;
    font-size: var(--fz120);
  }
}
.top-service__product-category {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #77becc;
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz48);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: capitalize;
}
@media (min-width: 811px) {
  .top-service__product-category {
    line-height: 1;
  }
  .top-service__product-category::after {
    display: block;
    flex-grow: 1;
    height: 1px;
    background: #77becc;
    content: "";
    margin-right: -50vw;
  }
}
.top-service__product-list {
  display: flex;
  flex-direction: column;
  gap: 20px 40px;
}
@media (min-width: 1024px) {
  .top-service__product-list {
    flex-direction: row;
  }
}
.top-service__product-item {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  align-items: center;
  gap: 15px 10px;
  width: 100%;
  padding: 20px;
  background: #ffffff;
  transition: var(--hover-transition);
}
.top-service__product-item:hover {
  opacity: var(--hover-opacity);
}
@media (min-width: 811px) {
  .top-service__product-item {
    gap: 30px;
    padding: 20px 40px;
  }
}
@media (max-width: 810px) {
  .top-service__product-item--colmun {
    flex-direction: column;
  }
  .top-service__product-item--colmun .top-service__product-item__details {
    max-width: 100%;
    padding: 0;
  }
}
.top-service__product-item__image {
  flex-shrink: 0;
}
.top-service__product-item__image img {
  width: 64px;
  height: auto;
}
@media (min-width: 811px) {
  .top-service__product-item__image img {
    width: 80px;
  }
}
.top-service__product-item__details {
  padding-left: 10px;
  max-width: calc(100% - 74px);
}
@media (min-width: 811px) {
  .top-service__product-item__details {
    max-width: calc(100% - 205px);
    padding: 0;
  }
}
.top-service__product-item__title {
  margin-bottom: 10px;
  font-size: var(--fz20);
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
}
.top-service__product-item__description {
  font-size: var(--fz14);
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
}
@media (min-width: 811px) {
  .top-service__product-item__description {
    font-size: var(--fz16);
  }
}

@media (min-width: 811px) {
  .c-slider-wrap01 .slick-list {
    overflow: visible !important;
  }
}

.c-slider01 .slick-slide {
  display: flex!important;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 100px;
}
@media (min-width: 811px) {
  .c-slider01 .slick-slide {
    padding: 0 40px;
  }
}
.c-slider01 .slick-slide img {
  width: auto;
  max-height: 40px;
  margin: 0 auto;
}
@media (min-width: 811px) {
  .c-slider01 .slick-slide img {
    max-height: 80px;
  }
}

.c-slider01--reverse .slick-slide {
  padding: 0 20px;
}

@media (min-width: 811px) {
  .c-slider02 .slick-list {
    overflow: visible;
  }
}
.c-slider02 .slick-slide {
  padding: 0 20px;
}
@media (min-width: 811px) {
  .c-slider02 .slick-slide {
    padding: 0 40px;
  }
}
.c-slider02__link {
  display: block;
}
@media (min-width: 811px) {
  .c-slider02__link {
    max-width: 365px;
    margin: 0 auto;
  }
}
.c-slider02__link:hover .c-slider02__thumbnail img {
  transform: scale(1.1);
}
.c-slider02__category {
  margin-bottom: 5px;
  color: #77becc;
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: capitalize;
}
.c-slider02__thumbnail {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
}
.c-slider02__thumbnail img {
  width: 100%;
  height: auto;
  transition: var(--hover-transition);
  object-fit: cover;
  aspect-ratio: 335/200;
}
@media (min-width: 811px) {
  .c-slider02__thumbnail img {
    aspect-ratio: 365/240;
  }
}
.c-slider02__logo {
  margin-bottom: 15px;
  text-align: center;
}
.c-slider02__logo img {
  height: 38px;
  margin: 0 auto;
  object-fit: contain;
}
.c-slider02__detail {
  padding: 15px 0 20px;
  background: url("../img/common/line01.svg"), url("../img/common/line01.svg");
  background-position: left bottom, left top;
  background-repeat: repeat-x;
}
.c-slider02__company {
  margin-bottom: 10px;
  font-style: normal;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
}
.c-slider02__lead {
  margin-bottom: 15px;
  font-style: normal;
  font-size: var(--fz16);
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
}
.c-slider02__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.c-slider02__tag > li {
  padding: 4px 10px;
  border-radius: 2px;
  background: #333333;
  color: #ffffff;
  font-size: var(--fz14);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-transform: capitalize;
}
.c-slider02__dl dt {
  color: #00a9ca;
  font-style: normal;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
}
.c-slider02__dl dd {
  padding: 5px 10px;
  border-radius: 3px;
  background: rgba(0, 169, 202, 0.1);
  color: #00a9ca;
  font-size: var(--fz14);
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
}
.c-slider02__foot {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.c-slider02__time {
  color: #333333;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.c-slider02__more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d39a44;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.c-slider02__slider-navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.c-slider02__slider-navi .slick-arrow {
  cursor: pointer;
}
@media (min-width: 811px) {
  .c-slider02__slider-navi .slick-arrow {
    transition: var(--hover-transition);
  }
  .c-slider02__slider-navi .slick-arrow:hover {
    opacity: var(--hover-opacity);
  }
}
.c-slider02__slider-navi .slick-prev,
.c-slider02__slider-navi .slick-next {
  width: 26px;
  height: 32px;
  font-size: 0;
}
.c-slider02__slider-navi .slick-prev {
  order: 1;
  background: url("../img/common/slider_prev.svg") no-repeat;
}
.c-slider02__slider-navi .slick-next {
  order: 3;
  background: url("../img/common/slider_next.svg") no-repeat;
}
.c-slider02__slider-navi .slick-dots {
  display: flex;
  align-items: center;
  order: 2;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(238, 238, 238, 0.5);
}
.c-slider02__slider-navi .slick-dots > li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6e7ee;
  font-size: 0;
}
.c-slider02__slider-navi .slick-dots > li.slick-active {
  background: var(--main-color);
}

.top-case {
  padding-bottom: 40px;
}

.top-column {
  padding-bottom: 40px;
  background: #ebf6f8;
}

.c-marquee01 {
  display: inline-block;
  color: rgba(119, 190, 204, 0.25);
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz80);
  font-weight: 700;
  line-height: 0.8;
  text-align: right;
  white-space: nowrap;
}
@media (min-width: 811px) {
  .c-marquee01 {
    padding-right: 40px;
    font-size: var(--fz120);
  }
}

.c-marquee02 {
  color: rgba(119, 190, 204, 0.25);
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz80);
  font-weight: 700;
  line-height: 0.8;
  white-space: nowrap;
}
@media (min-width: 811px) {
  .c-marquee02 {
    font-size: var(--fz120);
  }
}

@media (min-width: 811px) {
  .c-slider03 .slick-list {
    overflow: visible;
  }
}
.c-slider03 .slick-slide {
  padding: 0 20px;
}
@media (min-width: 811px) {
  .c-slider03 .slick-slide {
    padding: 0 30px;
  }
}
.c-slider03__link {
  display: block;
}
@media (min-width: 811px) {
  .c-slider03__link {
    max-width: 340px;
    margin: 0 auto;
  }
}
.c-slider03__link:hover .c-slider03__thumbnail img {
  transform: scale(1.1);
}
.c-slider03__link:hover .c-slider03__detail {
  margin-top: -10px;
}
.c-slider03__category {
  margin-bottom: 5px;
  color: #77becc;
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: capitalize;
}
.c-slider03__thumbnail {
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 5px;
}
.c-slider03__thumbnail img {
  width: 100%;
  height: auto;
  transition: var(--hover-transition);
  object-fit: cover;
  aspect-ratio: 335/180;
}
@media (min-width: 811px) {
  .c-slider03__thumbnail img {
    aspect-ratio: 340/200;
  }
}
.c-slider03__detail {
  padding: 25px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  background: #ffffff;
  transition: var(--hover-transition);
}
.c-slider03__lead {
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
}
@media (min-width: 811px) {
  .c-slider03__lead {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
.c-slider03__foot {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.c-slider03__time {
  color: #333333;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.c-slider03__more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d39a44;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.c-slider03__slider-navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.c-slider03__slider-navi .slick-arrow {
  cursor: pointer;
}
@media (min-width: 811px) {
  .c-slider03__slider-navi .slick-arrow {
    transition: var(--hover-transition);
  }
  .c-slider03__slider-navi .slick-arrow:hover {
    opacity: var(--hover-opacity);
  }
}
.c-slider03__slider-navi .slick-prev,
.c-slider03__slider-navi .slick-next {
  width: 26px;
  height: 32px;
  font-size: 0;
}
.c-slider03__slider-navi .slick-prev {
  order: 1;
  background: url("../img/common/slider_prev.svg") no-repeat;
}
.c-slider03__slider-navi .slick-next {
  order: 3;
  background: url("../img/common/slider_next.svg") no-repeat;
}
.c-slider03__slider-navi .slick-dots {
  display: flex;
  align-items: center;
  order: 2;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 10px;
  background: #ffffff;
}
.c-slider03__slider-navi .slick-dots > li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6e7ee;
  font-size: 0;
}
.c-slider03__slider-navi .slick-dots > li.slick-active {
  background: var(--main-color);
}

.top-partner {
  padding: 80px 0;
}
@media (min-width: 811px) {
  .top-partner {
    padding: 100px 0;
  }
}
.top-partner__lead {
  margin-bottom: 40px;
}
@media (min-width: 811px) {
  .top-partner__lead {
    margin-bottom: 80px;
  }
}

.c-slider04 {
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 811px) {
  .c-slider04 {
    padding: 0;
  }
}
@media (min-width: 811px) {
  .c-slider04 .slick-slide {
    padding: 0 60px;
  }
}
.c-slider04__logo img {
  margin: 0 auto;
}
.c-slider04__text {
  margin-top: 10px;
  color: #333333;
  font-style: normal;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.5;
}
.c-slider04__slider-navi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.c-slider04__slider-navi .slick-arrow {
  cursor: pointer;
}
@media (min-width: 811px) {
  .c-slider04__slider-navi .slick-arrow {
    transition: var(--hover-transition);
  }
  .c-slider04__slider-navi .slick-arrow:hover {
    opacity: var(--hover-opacity);
  }
}
.c-slider04__slider-navi .slick-prev,
.c-slider04__slider-navi .slick-next {
  width: 26px;
  height: 32px;
  font-size: 0;
}
.c-slider04__slider-navi .slick-prev {
  order: 1;
  background: url("../img/common/slider_prev.svg") no-repeat;
}
.c-slider04__slider-navi .slick-next {
  order: 3;
  background: url("../img/common/slider_next.svg") no-repeat;
}
.c-slider04__slider-navi .slick-dots {
  display: flex;
  align-items: center;
  order: 2;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 10px;
  background: #ffffff;
}
.c-slider04__slider-navi .slick-dots > li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6e7ee;
  font-size: 0;
}
.c-slider04__slider-navi .slick-dots > li.slick-active {
  background: var(--main-color);
}

.top-group {
  padding: 80px 0;
  background: #ebf6f8;
}
@media (min-width: 811px) {
  .top-group {
    padding: 100px 0;
  }
}
.top-group__logo {
  margin: 40px 0;
  text-align: center;
}
@media (min-width: 811px) {
  .top-group__logo {
    margin: 80px 0;
  }
}
.top-group__logo img {
  width: 335px;
  max-width: 100%;
  height: auto;
}
@media (min-width: 811px) {
  .top-group__logo img {
    width: 910px;
  }
}
.top-group__lead {
  margin-bottom: 30px;
}
@media (min-width: 811px) {
  .top-group__lead {
    margin-bottom: 60px;
  }
}

.top-news {
  padding: 80px 0;
}
@media (min-width: 811px) {
  .top-news {
    padding: 100px 0;
  }
}

.top-bottom-video {
  width: 100%;
  height: 50vh;
}

.c-bottom-link01 {
  display: flex;
  flex-direction: column;
  background: url("../img/common/line03.svg");
  background-position: left top;
  background-repeat: repeat-x;
}
@media (min-width: 811px) {
  .c-bottom-link01 {
    flex-direction: row;
  }
}
@media (min-width: 811px) {
  .c-bottom-link01__item {
    width: 50%;
  }
}
.c-bottom-link01__item:nth-child(2) {
  background: url("../img/common/line03.svg");
  background-position: left top;
  background-repeat: repeat-x;
}
@media (min-width: 811px) {
  .c-bottom-link01__item:nth-child(2) {
    padding-left: 1px;
    background: url("../img/common/line02.svg");
    background-position: left top;
    background-repeat: repeat-y;
  }
}
.c-bottom-link01__link {
  display: block;
  position: relative;
  margin-top: 1px;
  padding: 60px 0;
  overflow: hidden;
}
@media (min-width: 811px) {
  .c-bottom-link01__link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
  }
}
@media (min-width: 811px) {
  .c-bottom-link01__link--company::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/top/company.webp");
    background-size: cover;
    content: "";
  }
}
@media (min-width: 811px) {
  .c-bottom-link01__link--recruit::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/top/recruit.webp");
    background-size: cover;
    content: "";
  }
}
.c-bottom-link01__link::after {
  transition: var(--hover-transition);
}
.c-bottom-link01__link::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #ffffff;
  content: "";
  transition: 0.3s;
}
@media (min-width: 811px) {
  .c-bottom-link01__link:hover::before {
    opacity: 0.1;
    background: url("../img/common/pattern01.png");
    background-size: 52px 52px;
  }
  .c-bottom-link01__link:hover::after {
    transform: scale(1.1);
  }
  .c-bottom-link01__link:hover .c-title03__en,
  .c-bottom-link01__link:hover .c-title03__jp {
    color: #ffffff;
  }
  .c-bottom-link01__link:hover .c-title03__en::after,
  .c-bottom-link01__link:hover .c-title03__jp::after {
    background-color: #ffffff;
  }
}
.c-bottom-link01__title {
  position: relative;
  z-index: 2;
}

.c-post-title01 {
  margin-bottom: 20px;
  color: #333333;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  /* text-transform: capitalize; */
}
@media (min-width: 811px) {
  .c-post-title01 {
    margin-bottom: 30px;
    color: #333333;
    font-style: normal;
    font-size: 34px;
    font-weight: 700;
    line-height: 150%;
    /* 51px */
    /* text-transform: capitalize; */
  }
}

.c-post-time01 {
  color: #333333;
  font-family: var(--font-en);
  font-style: normal;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.c-post-date01 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 811px) {
  .c-post-date01 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.c-post-sns01 {
  display: flex;
  gap: 20px;
}
.c-post-sns01 img {
  width: 34px;
  height: 34px;
}
@media (min-width: 811px) {
  .c-post-sns01 img {
    width: auto;
    height: auto;
  }
}

.c-form01 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.c-form01__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-form01__label {
  display: flex;
  align-items: center;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.c-form01__label-hint {
  font-size: var(--fz14);
  font-weight: normal;
  line-height: normal;
  text-transform: capitalize;
}
.c-form01__input-text {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #999999;
  border-radius: 3px;
}
.c-form01__input-text::placeholder {
  color: #cccccc;
  font-style: normal;
  font-size: var(--fz16);
  font-weight: 300;
  line-height: normal;
}
.c-form01__required {
  margin-left: 15px;
  padding: 8px 15px;
  border-radius: 3px;
  background: #f81d51;
  color: #ffffff;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1;
}
.c-form01__select {
  width: 100%;
  height: 46px;
  padding: 0 20px;
  border: 1px solid #999999;
  border-radius: 3px;
  font-family: inherit;
  font-size: var(--fz16);
  font-weight: 300;
  line-height: normal;
  line-height: 44px;
}
.c-form01__select option {
  font-family: inherit;
}
.c-form01__select option:first-child {
  color: #cccccc;
}
.c-form01__select:invalid {
  color: #cccccc;
}
.c-form01__select-wrap {
  position: relative;
}
.c-form01__select-wrap::after {
  position: absolute;
  top: 22px;
  right: 20px;
  transform: translateY(-50%);
  content: url("../img/common/icon_triangle01_yellow_down.svg");
}
.c-form01__input-radio {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 40px;
}
@media (min-width: 811px) {
  .c-form01__input-radio {
    flex-direction: row;
  }
}
.c-form01__textarea {
  width: 100%;
  height: 240px;
  padding: 10px 20px;
  border: 1px solid #999999;
  border-radius: 3px;
}
.c-form01__textarea::placeholder {
  color: #cccccc;
  font-style: normal;
  font-size: var(--fz16);
  font-weight: 300;
  line-height: normal;
}
.c-form01__privacy {
  padding: 15px 20px;
  border: 1px solid #999999;
  border-radius: 3px;
}
.c-form01__submit {
  position: relative;
  text-align: center;
}
.c-form01__submit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(75px, -50%);
  content: url("../img/common/icon_triangle01_white_right.svg");
}
.c-form01__submit.is-confirm::after {
  transform: translate(25px, -50%);
}
.c-form01__submit input {
  display: block;
  width: 100%;
  padding: 20px 25px;
  border-radius: 2px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: var(--hover-transition);
}
.c-form01__submit .wpcf7-spinner {
  display: none;
}
.c-form01__back {
  position: relative;
  text-align: center;
}
.c-form01__back::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(80px, -50%);
  content: url("../img/common/icon_triangle01_white_right.svg");
}
.c-form01__back input {
  display: block;
  width: 100%;
  padding: 20px 25px;
  border-radius: 2px;
  background: #00a9ca;
  color: #ffffff;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: var(--hover-transition);
}
.c-form01__back .wpcf7-spinner {
  display: none;
}
@media (min-width: 811px) {
  .c-form01__submit, .c-form01__back {
    transition: var(--hover-transition);
  }
  .c-form01__submit:hover, .c-form01__back:hover {
    opacity: var(--hover-opacity);
  }
}
.c-form01 .wpcf7-not-valid-tip {
  margin-top: 10px;
}
.c-form01 .wpcf7-list-item.first {
  margin: 0;
}
.c-form01 .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.c-form01 .wpcf7-list-item {
  margin: 0;
}
.c-form01 input[type=radio],
.c-form01 input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.c-form01 input[type=radio] + .wpcf7-list-item-label::before {
  width: 24px;
  height: 24px;
  margin-top: auto;
  margin-right: 15px;
  margin-bottom: auto;
  border: 1px solid #999999;
  border-radius: 100%;
  background: #ffffff;
  content: "";
  transition: background-color 0.5s;
}
.c-form01 input[type=checkbox] + .wpcf7-list-item-label::before {
  width: 24px;
  height: 24px;
  margin-top: auto;
  margin-right: 15px;
  margin-bottom: auto;
  border: 1px solid #999999;
  border-radius: 3px;
  background: #ffffff;
  content: "";
  transition: background-color 0.5s;
}
.c-form01 input[type=radio]:checked + .wpcf7-list-item-label::before {
  box-shadow: inset 0 0 0 3px #ffffff;
  background-color: #00a9ca;
}
.c-form01 input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  box-shadow: inset 0 0 0 3px #ffffff;
  background-color: #00a9ca;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  padding: 20px 40px;
  border-color: var(--main-color) !important;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7 {
  margin-bottom: 100px;
}
@media (min-width: 811px) {
  .wpcf7 {
    margin-bottom: 120px;
  }
}

.p-about {
  background: #ebf6f8;
}
.p-about__inner {
  padding: 15px 15px 0;
  border-radius: 2px;
  background: #ffffff;
}
@media (min-width: 811px) {
  .p-about__inner {
    padding: 40px 60px 0;
  }
}

.p-vmv {
  display: grid;
  gap: 80px;
}
@media (min-width: 811px) {
  .p-vmv {
    gap: 120px;
    margin-top: 0;
  }
}
.p-vmv__heading {
  margin-bottom: 25px;
  color: #00a9ca;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (min-width: 811px) {
  .p-vmv__heading {
    margin-bottom: 40px;
    font-size: 34px;
  }
}
.p-vmv__heading::before {
  display: block;
  width: 18px;
  height: 16px;
  margin: 0 auto 10px;
  background: url("../img/common/icon_triangle01_yellow_down.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media (min-width: 811px) {
  .p-vmv__heading::before {
    width: 22px;
    height: 20px;
  }
}
.p-vmv__description {
  display: grid;
  margin-bottom: 25px;
  padding: 8px;
  border-radius: 4px;
  background: rgba(0, 169, 202, 0.0509803922);
}
@media (min-width: 811px) {
  .p-vmv__description {
    margin-bottom: 40px;
    padding: 20px;
  }
}
.p-vmv__description-text {
  display: block;
  padding: 0 10px;
  color: #d39a44;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 811px) {
  .p-vmv__description-text {
    padding: 0 40px;
    font-size: clamp(40px, 4.93vw, 42px);
  }
}
.p-vmv__description-top, .p-vmv__description-bottom {
  display: block;
  height: 25px;
  background-repeat: no-repeat;
}
@media (min-width: 811px) {
  .p-vmv__description-top, .p-vmv__description-bottom {
    height: 40px;
  }
}
.p-vmv__description-top {
  background-image: url("../img/about/vmv_text-deco-top-left_sp.svg"), url("../img/about/vmv_text-deco-top-right_sp.svg");
  background-position: top left, top right;
}
@media (min-width: 811px) {
  .p-vmv__description-top {
    background-image: url("../img/about/vmv_text-deco-top-left_pc.svg"), url("../img/about/vmv_text-deco-top-right_pc.svg");
  }
}
.p-vmv__description-bottom {
  background-image: url("../img/about/vmv_text-deco-bottom-left_sp.svg"), url("../img/about/vmv_text-deco-bottom-right_sp.svg");
  background-position: bottom left, bottom right;
}
@media (min-width: 811px) {
  .p-vmv__description-bottom {
    background-image: url("../img/about/vmv_text-deco-bottom-left_pc.svg"), url("../img/about/vmv_text-deco-bottom-right_pc.svg");
  }
}
.p-vmv__tag {
  margin-bottom: 25px;
  color: rgba(119, 190, 204, 0.2509803922);
  font-family: var(--font-en);
  font-size: 58px;
  font-weight: 700;
  line-height: 0.6;
  text-align: center;
}
@media (min-width: 811px) {
  .p-vmv__tag {
    margin-bottom: 40px;
    font-size: 120px;
    font-size: clamp(116px, 14.3vw, 120px);
  }
}
.p-vmv__details {
  font-size: 14px;
  font-weight: 700;
  line-height: 2.4;
  text-align: center;
}
@media (min-width: 811px) {
  .p-vmv__details {
    font-size: 16px;
  }
}
.p-vmv__values-wrap {
  display: grid;
  gap: 20px;
  position: relative;
}
@media (min-width: 811px) {
  .p-vmv__values-wrap {
    gap: 60px;
  }
}
.p-vmv__values {
  display: grid;
  gap: 20px;
}
@media (min-width: 811px) {
  .p-vmv__values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
  }
}
.p-vmv__value {
  padding: 15px 10px;
  background: rgba(0, 169, 202, 0.0509803922);
}
@media (min-width: 811px) {
  .p-vmv__value {
    display: grid;
    width: calc((100% - 120px) / 3);
    min-width: 295px;
    max-width: 360px;
    padding: 25px 10px;
  }
}
.p-vmv__value-title {
  display: grid;
  gap: 5px;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}
.p-vmv__value-title-jp {
  color: #00a9ca;
  font-size: 28px;
  line-height: 1.8;
}
@media (min-width: 811px) {
  .p-vmv__value-title-jp {
    font-size: 36px;
  }
}
.p-vmv__value-title-en {
  color: #d39a44;
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.11;
}
@media (min-width: 811px) {
  .p-vmv__value-title-en {
    align-self: center;
    font-size: 18px;
  }
}
.p-vmv__value-description {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 811px) {
  .p-vmv__value-description .is-flex-text {
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.p-vmv__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 10px;
  margin-bottom: 60px;
  font-family: var(--font-en);
  font-size: 78px;
  font-weight: 700;
  line-height: 0.6;
  text-align: center;
}
@media (min-width: 811px) {
  .p-vmv__tags {
    margin-bottom: 0;
  }
}
.p-vmv__tags-blue {
  color: #00a9ca;
}
.p-vmv__tags-gold {
  display: flex;
  gap: 10px;
  color: #d39a44;
}

.c-button01 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  padding: 20px 25px;
  border-radius: 2px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1;
  transition: var(--hover-transition);
}
.c-button01:hover {
  opacity: var(--hover-opacity);
}
.c-button01::after {
  content: url("../img/common/icon_triangle01_white_right.svg");
}
@media (min-width: 811px) {
  .c-button01 {
    padding: 18px 25px;
    font-size: var(--fz18);
  }
}

.c-button02 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  padding: 20px 25px;
  border: 1px dashed #00a9ca;
  border-radius: 2px;
  background: #e5f6fa;
  color: #00a9ca;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1;
  transition: var(--hover-transition);
}
.c-button02:hover {
  opacity: var(--hover-opacity);
}
.c-button02::after {
  content: url("../img/common/icon_triangle01_blue_right.svg");
}
.c-button02--white {
  background: #fff;
}
@media (min-width: 811px) {
  .c-button02 {
    padding: 18px 25px;
    font-size: var(--fz18);
  }
}

.c-button03 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  padding: 20px 25px;
  border-radius: 2px;
  background: #00a9ca;
  color: #ffffff;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1;
  transition: var(--hover-transition);
}
.c-button03:hover {
  opacity: var(--hover-opacity);
}
.c-button03::after {
  content: url("../img/common/icon_triangle01_white_right.svg");
}
@media (min-width: 811px) {
  .c-button03 {
    padding: 18px 25px;
    font-size: var(--fz18);
  }
}

.c-button04 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  padding: 20px 40px;
  border-radius: 2px;
  background: #00a9ca;
  color: #ffffff;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: normal;
  transition: var(--hover-transition);
}
.c-button04:hover {
  opacity: var(--hover-opacity);
}
.c-button04::after {
  content: url("../img/common/icon_triangle01_white_right.svg");
}
@media (min-width: 811px) {
  .c-button04 {
    padding: 18px 25px;
    font-size: var(--fz18);
  }
}

.c-button05 {
  display: flex;
  padding: 30px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans CJK JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 2px;
  background: #D39A44;
  margin: 0 auto 40px;
  margin-bottom: 40px;
  max-width: 787px;
  transition: var(--hover-transition);
}
.c-button05:hover {
  opacity: var(--hover-opacity);
}
.c-button05::after {
  content: url("../img/common/icon_triangle01_white_right.svg");
}
@media (min-width: 811px) {
  .c-button05 {
    padding: 40px 280px;
    font-size: 24px;
    margin-bottom: 80px;
  }
}

.c-button-wrap01 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 811px) {
  .c-button-wrap01 {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: row;
    grid-template-areas: "item01 item01" "item02 item03";
  }
  .c-button-wrap01__item01 {
    grid-area: item01;
  }
  .c-button-wrap01__item02 {
    grid-area: item02;
  }
  .c-button-wrap01__item03 {
    grid-area: item03;
  }
}

.c-button-wrap02 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 542px;
  margin: 0 auto;
}

.c-inner1280 {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .c-inner1280 {
    padding: 0 80px;
  }
}

.c-inner1120 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .c-inner1120 {
    padding: 0 80px;
  }
}

.c-inner960 {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 811px) {
  .c-inner960 {
    padding: 0 80px;
  }
}

.c-inner800 {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 811px) {
  .c-inner800 {
    padding: 0 80px;
  }
}

.c-ul01 {
  padding-left: 24px;
  line-height: 1.8;
}
.c-ul01 > li {
  list-style-type: disc;
}

.c-ol01 {
  padding-left: 24px;
  line-height: 1.8;
}
.c-ol01 > li {
  list-style-type: decimal;
}

.c-ol02 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 24px;
  line-height: 1.8;
}
.c-ol02 > li {
  list-style-type: decimal;
}

.c-google-map {
  aspect-ratio: 16/9;
}
.c-google-map iframe {
  width: 100%;
  height: 100%;
}

.c-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
  padding: 20px 32px;
  overflow: auto;
  /* background: #ebf5f7; */
}
.c-breadcrumbs span {
  flex-shrink: 0;
  color: #00a9ca;
  font-size: var(--fz14);
  font-weight: 600;
  line-height: 1.8;
}
.c-breadcrumbs span.current-item {
  color: #333333;
}
@media (min-width: 811px) {
  .c-breadcrumbs {
    padding: 20px 20px;
    margin: 0 0 0 40px;
  }
  .c-breadcrumbs span.current-item {
    display: block;
    max-width: 13em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media (min-width: 1201px) {
  .c-breadcrumbs {
    padding: 4px 20px;
    margin: 0 0 0 40px;
  }
}
.c-breadcrumbs__spacer {
  content: url("../img/common/icon_triangle01_black_right.svg");
}
.c-breadcrumbs a {
  transition: var(--hover-transition);
}
.c-breadcrumbs a:hover {
  opacity: var(--hover-opacity);
}

.c-category-list01 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}
@media (min-width: 811px) {
  .c-category-list01 {
    margin-bottom: 80px;
  }
}
.c-category-list01 > li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c-category-list01 > li span {
  color: #77becc;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
}
.c-category-list01 > li a {
  display: block;
  padding: 8px 10px;
  border: 1px solid var(--main-color);
  border-radius: 3px;
  background: #ffffff;
  color: #333333;
  font-size: var(--fz14);
  font-weight: 600;
  line-height: normal;
  text-align: center;
  transition: var(--hover-transition);
}
.c-category-list01 > li a:hover {
  opacity: var(--hover-opacity);
}
.c-category-list01 > li a.is-current {
  background: var(--main-color);
  color: #ffffff;
}

.c-category-list02 {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.c-category-list02 > li a {
  padding: 8px 15px;
  border-radius: 2px;
  background: #77becc;
  color: #ffffff;
  font-size: var(--fz14);
  font-weight: 500;
  line-height: 150%;
  text-transform: capitalize;
  transition: var(--hover-transition);
}
@media (min-width: 811px) {
  .c-category-list02 > li a:hover {
    opacity: var(--hover-opacity);
  }
}

.c-post-list01 {
  margin-bottom: 80px;
}
.c-post-list01 > li {
  background-image: url("../img/common/dot01.svg");
  background-position: left bottom;
  background-repeat: repeat-x;
}
.c-post-list01 > li:first-child {
  background-image: url("../img/common/dot01.svg"), url("../img/common/dot01.svg");
  background-position: left bottom, left top;
  background-repeat: repeat-x;
}
.c-post-list01__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  gap: 20px;
  padding: 40px 10px;
}
@media (min-width: 811px) {
  .c-post-list01__link {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 60px 20px;
    transition: var(--hover-transition);
  }
  .c-post-list01__link:hover {
    opacity: var(--hover-opacity);
  }
}
.c-post-list01__head {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  line-height: normal;
}
.c-post-list01__time {
  color: #00a9ca;
  font-family: var(--font-en);
  font-size: var(--fz24);
  font-variant-numeric: lining-nums tabular-nums;
}
.c-post-list01__category {
  width: 150px;
  padding: 2px 10px;
  border-radius: 2px;
  background: #77becc;
  color: #ffffff;
  font-family: var(--font-en);
  font-size: var(--fz16);
  letter-spacing: 0.96px;
  text-align: center;
}
@media (min-width: 811px) {
  .c-post-list01__category {
    font-size: var(--fz18);
  }
}
.c-post-list01__title {
  color: #333333;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
}
.c-post-list01__more {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  color: #d39a44;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 811px) {
  .c-post-list01__more {
    margin: 0 0 0 auto;
  }
}
.c-post-list01__more::after {
  content: url("../img/common/icon_triangle01_yellow_right.svg");
}

.c-pagination01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px 35px;
  margin-bottom: 100px;
}
@media (min-width: 811px) {
  .c-pagination01 {
    justify-content: center;
    margin-bottom: 120px;
  }
}
.c-pagination01__first, .c-pagination01__last {
  display: flex;
  align-items: center;
  order: 1;
  gap: 10px;
  font-size: var(--fz18);
  font-weight: 600;
  line-height: normal;
  transition: var(--hover-transition);
}
.c-pagination01__first:hover, .c-pagination01__last:hover {
  opacity: var(--hover-opacity);
}
@media (max-width: 810px) {
  .c-pagination01__first {
    margin-right: auto;
    margin-left: 0;
  }
}
@media (min-width: 811px) {
  .c-pagination01__first {
    order: 1;
  }
}
.c-pagination01__first::before {
  content: url("../img/common/icon_pagination_prev.svg");
}
@media (max-width: 810px) {
  .c-pagination01__last {
    margin-right: 0;
    margin-left: auto;
  }
}
@media (min-width: 811px) {
  .c-pagination01__last {
    order: 3;
  }
}
.c-pagination01__last::after {
  content: url("../img/common/icon_pagination_next.svg");
}
.c-pagination01__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
@media (min-width: 811px) {
  .c-pagination01__list {
    justify-content: center;
    order: 2;
    gap: 15px;
    width: auto;
  }
}
.c-pagination01 .page-numbers:not(.dots) {
  display: block;
  padding: 12px 20px;
  border: 1px solid var(--main-color);
  border-radius: 3px;
  background: #ffffff;
  font-size: var(--fz18);
  font-weight: 600;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: normal;
  text-align: center;
  transition: var(--hover-transition);
}
.c-pagination01 .page-numbers:not(.dots):hover {
  background: #00a9ca;
  color: #ffffff;
}
.c-pagination01 .page-numbers.current {
  background: #00a9ca;
  color: #ffffff;
  pointer-events: none;
}

.c-scrolldown01 {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
@media (min-width: 811px) {
  .c-scrolldown01 {
    position: relative;
    right: 0;
    bottom: 0;
  }
}
.c-scrolldown01 span {
  font-family: var(--font-en);
  font-size: var(--fz14);
  font-weight: 400;
  line-height: normal;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.c-scrolldown01::before {
  position: absolute;
  top: 0;
  left: -10px;
  width: 2px;
  height: 100%;
  background: #eeeeee;
  content: "";
}
.c-scrolldown01::after {
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
  position: absolute;
  top: 0;
  left: -10px;
  width: 2px;
  height: 30px;
  background: var(--main-color);
  content: "";
}

@keyframes pathmove {
  0% {
    opacity: 0;
    top: 0;
    height: 0;
  }
  30% {
    opacity: 1;
    height: 30px;
  }
  100% {
    opacity: 0;
    top: 100%;
    height: 0;
  }
}
.c-post-list02 {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}
@media (min-width: 811px) {
  .c-post-list02 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 120px 80px;
    margin-bottom: 120px;
  }
}
@media (min-width: 811px) {
  .c-post-list02__item {
    width: calc((100% - 160px) / 3);
  }
}
.c-post-list02__link {
  display: block;
}
.c-post-list02__link:hover .c-post-list02__thumbnail img {
  transform: scale(1.1);
}
.c-post-list02__link:hover .c-post-list02__detail02 {
  margin-top: -10px;
}
.c-post-list02__category {
  margin-bottom: 5px;
  color: #77becc;
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: capitalize;
}
.c-post-list02__thumbnail {
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 5px;
}
.c-post-list02__thumbnail img {
  width: 100%;
  height: 200px;
  transition: var(--hover-transition);
  object-fit: cover;
}
@media (min-width: 811px) {
  .c-post-list02__thumbnail img {
    height: 240px;
  }
}
.c-post-list02__logo {
  margin-bottom: 15px;
  text-align: center;
}
.c-post-list02__logo img {
  height: 38px;
  object-fit: contain;
}
.c-post-list02__detail {
  padding: 15px 0 20px;
  background: url("../img/common/line01.svg"), url("../img/common/line01.svg");
  background-position: left bottom, left top;
  background-repeat: repeat-x;
}
.c-post-list02__detail02 {
  padding: 25px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  background: #ffffff;
  transition: var(--hover-transition);
}
.c-post-list02__post-title {
  color: #333333;
  font-style: normal;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
}
.c-post-list02__company {
  margin-bottom: 10px;
  font-style: normal;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
}
.c-post-list02__lead {
  margin-bottom: 15px;
  font-style: normal;
  font-size: var(--fz16);
  font-weight: 500;
  line-height: 1.5;
  /* text-transform: capitalize; */
}
.c-post-list02__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.c-post-list02__tag > li {
  padding: 4px 10px;
  border-radius: 2px;
  background: #333333;
  color: #ffffff;
  font-size: var(--fz14);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-transform: capitalize;
}
.c-post-list02__dl dt {
  color: #00a9ca;
  font-style: normal;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
}
.c-post-list02__dl dd {
  padding: 5px 10px;
  border-radius: 3px;
  background: rgba(0, 169, 202, 0.1);
  color: #00a9ca;
  font-size: var(--fz14);
  font-weight: 500;
  line-height: 1.5;
  /* text-transform: capitalize; */
}
.c-post-list02__foot {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.c-post-list02__time {
  color: #333333;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.c-post-list02__more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d39a44;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.c-post-list02__more::after {
  content: url("../img/common/icon_triangle01_yellow_right.svg");
}

.c-page-link01 {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}
@media (min-width: 811px) {
  .c-page-link01 {
    margin-top: 40px;
  }
}
.c-page-link01 a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: calc((100% - 30px) / 2);
}
@media (min-width: 811px) {
  .c-page-link01 a {
    transition: var(--hover-transition);
  }
  .c-page-link01 a:hover {
    opacity: var(--hover-opacity);
  }
}
.c-page-link01__head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #77becc;
  font-family: var(--font-en);
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}
.c-page-link01__head--next {
  margin: 0 0 0 auto;
}
@media (min-width: 811px) {
  .c-page-link01__head {
    color: #77becc;
    font-style: normal;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: capitalize;
  }
}
.c-page-link01__title {
  overflow: hidden;
  color: #333333;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (min-width: 811px) {
  .c-page-link01__title {
    overflow: hidden;
    color: #333333;
    font-family: Hiragino Kaku Gothic Pro;
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    text-overflow: ellipsis;
  }
}

.c-page-kv01 {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
.c-page-kv01::before {
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: url("../img/common/pattern01.png");
  background-size: 52px 52px;
  content: "";
}
.c-page-kv01 img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
@media (min-width: 811px) {
  .c-page-kv01 img {
    height: 440px;
  }
}
.c-page-kv01__title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 2;
  transform: translateY(50%);
  width: 100%;
  color: #77becc;
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 700;
  line-height: 80%;
}
@media (min-width: 811px) {
  .c-page-kv01__title {
    right: 40px;
    left: auto;
    width: auto;
    font-size: 120px;
    line-height: normal;
    text-align: right;
  }
}

.c-tag-list01 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.c-tag-list01 label {
  display: block;
  padding: 6px 15px;
  border: 1px solid #00a9ca;
  border-radius: 3px;
  background: #ffffff;
  color: #00a9ca;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.c-tag-list01 input {
  display: block;
}
.c-tag-list01 input:checked + label {
  background: #00a9ca;
  color: #ffffff;
}

.c-member-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 811px) {
  .c-member-list-wrap {
    gap: 80px;
  }
}

.c-member-list01 {
  display: flex;
  flex-direction: column;
  gap: 60px 80px;
}
@media (min-width: 811px) {
  .c-member-list01 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 811px) {
  .c-member-list01__item {
    width: 280px;
    max-width: calc((100% - 160px) / 3);
  }
}
.c-member-list01__image {
  width: 240px;
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0 auto 25px;
  overflow: hidden;
  text-align: center;
  border-radius: 50%;
}
.c-member-list01__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.c-member-list01__title {
  margin-bottom: 5px;
  color: #77becc;
  font-family: var(--font-en);
  font-size: var(--fz20);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: capitalize;
}
.c-member-list01__subtitle {
  margin-bottom: 10px;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.08px;
  text-align: center;
  text-transform: capitalize;
}
.c-member-list01__name {
  margin-bottom: 20px;
  font-family: var(--font-en);
  font-size: var(--fz34);
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-transform: capitalize;
}
.c-member-list01__description {
  padding-top: 15px;
  background-image: url("../img/common/dot01.svg");
  background-position: left top;
  background-repeat: repeat-x;
  font-size: 14px;
  font-size: var(--fz14);
  font-weight: 400;
  line-height: 180%;
  text-align: justify;
  text-transform: capitalize;
}

.c-big-text01 {
  color: rgba(119, 190, 204, 0.25);
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz78);
  font-weight: 700;
  line-height: 80%;
  text-align: center;
}
@media (min-width: 811px) {
  .c-big-text01 {
    font-size: 120px;
  }
}

.c-googlemap01 iframe {
  width: 100%;
  height: 540px;
}

.c-page-top {
  display: none;
  opacity: 0;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  transition: opacity var(--hover-transition);
}
.c-page-top a {
  transition: var(--hover-transition);
}
@media (min-width: 811px) {
  .c-page-top a:hover {
    opacity: var(--hover-opacity);
  }
}

.c-text-slider01 {
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 811px) {
  .c-text-slider01 {
    margin-left: -10px;
  }
}
.c-text-slider01__item {
  padding: 0 10px;
  color: #77becc;
  font-family: var(--font-en);
  font-size: var(--fz20);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}

.c-download-logo01 img {
  width: auto;
  max-height: 64px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.c-recaptcha01 {
  width: 542px;
  max-width: 100%;
  margin: 0 auto 20px;
  padding: 14px;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  font-style: normal;
  font-size: var(--fz16);
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  text-transform: capitalize;
}
@media (min-width: 811px) {
  .c-recaptcha01 {
    margin-bottom: 30px;
  }
}

.text-infinity-scroll {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.text-infinity-scroll .first,
.text-infinity-scroll .second {
  display: inline;
  flex-shrink: 0;
  width: auto;
  height: auto;
  word-break: keep-all;
  text-wrap: nowrap;
}
.text-infinity-scroll .first {
  animation: anim--first 400s infinite linear 0.1s both;
}
.text-infinity-scroll .second {
  animation: anim--second 400s infinite linear 0.1s both;
}

.text-infinity-scroll-reverse {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.text-infinity-scroll-reverse .first,
.text-infinity-scroll-reverse .second {
  display: inline;
  flex-shrink: 0;
  width: auto;
  height: auto;
  word-break: keep-all;
  text-wrap: nowrap;
}
.text-infinity-scroll-reverse .first {
  animation: anim--first--reverse 400s infinite linear 0.1s both;
}
.text-infinity-scroll-reverse .second {
  animation: anim--second--reverse 400s infinite linear 0.1s both;
}

@keyframes anim--first {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes anim--second {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes anim--first--reverse {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes anim--second--reverse {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.c-section01 {
  padding: 10px 0;
}
@media (min-width: 811px) {
  .c-section01 {
    padding: 50px 0;
  }
}

.c-section02 {
  padding: 100px 0;
}

.c-section03 {
  padding: 60px 0;
}
@media (min-width: 811px) {
  .c-section03 {
    padding: 100px 0;
  }
}

.c-section04 {
  padding: 80px 0;
  background: rgba(119, 190, 204, 0.15);
}
@media (min-width: 811px) {
  .c-section04 {
    padding: 100px 0;
  }
}

.c-movie01 {
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
.c-movie01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-movie01 iframe {
  width: 100%;
  height: 100%;
}

.c-table01 {
  width: 100%;
}
.c-table01__row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px 15px;
}
@media (min-width: 811px) {
  .c-table01__row {
    flex-direction: row;
    padding: 30px 20px;
    align-items: center;
  }
}
.c-table01__row:not(:last-child) {
  background-image: url("../img/common/dot01.svg");
  background-position: left bottom;
  background-repeat: repeat-x;
}
.c-table01__header {
  color: #00a9ca;
  font-size: var(--fz18);
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: normal;
}
@media (min-width: 811px) {
  .c-table01__header {
    width: 300px;
    min-width: 300px;
    padding-right: 60px;
    font-size: var(--fz20);
  }
}
.c-table01__header span {
  display: block;
  margin-bottom: 10px;
  color: #d39a44;
  font-family: var(--font-en);
  font-size: var(--fz16);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
  text-transform: capitalize;
}
.c-table01__data {
  font-size: var(--fz16);
  font-weight: 500;
  line-height: 160%;
}

.c-table02__row {
  display: flex;
  gap: 20px;
}
.c-table02__header {
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 180%;
  width: 8em;
}
.c-table02__data {
  font-size: var(--fz16);
  line-height: 180%;
}

.c-table03 {
  width: 100%;
}
.c-table03--center {
  margin-right: auto;
  margin-left: auto;
}
.c-table03--fixed {
  table-layout: fixed;
}
.c-table03 th,
.c-table03 td {
  padding: 15px 20px;
  border: 1px solid #cccccc;
  line-height: 1.5;
}
.c-table03 th {
  font-weight: bold;
}
.c-table03 thead th {
  background: rgba(119, 190, 204, 0.1);
}

.c-title01 {
  margin-bottom: 15px;
  color: #333333;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.6;
}
.c-title01:not(:first-child) {
  margin-top: 30px;
}
@media (min-width: 811px) {
  .c-title01 {
    margin-bottom: 20px;
    font-size: var(--fz22);
    line-height: 1.5;
  }
  .c-title01:not(:first-child) {
    margin-top: 60px;
  }
}

.c-title02 {
  margin-bottom: 15px;
  color: #333333;
  font-weight: 700;
  line-height: normal;
}
.c-title02:not(:first-child) {
  margin-top: 15px;
}
@media (min-width: 811px) {
  .c-title02 {
    margin-bottom: 10px;
  }
}

.c-title03 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.c-title03__en {
  position: relative;
  padding-bottom: 20px;
  color: #00a9ca;
  font-family: var(--font-en);
  font-style: normal;
  font-size: var(--fz28);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: capitalize;
}
.c-title03__en::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background: #d39a44;
  content: "";
}
.c-title03__jp {
  font-size: var(--fz32);
  font-weight: 700;
  text-align: center;
}
@media (min-width: 811px) {
  .c-title03__jp {
    font-size: var(--fz46);
  }
}
.c-title03__jp--lh148 {
  line-height: 1.48;
}

.c-title04 {
  font-size: var(--fz24);
  font-weight: 700;
  text-align: center;
}
@media (min-width: 811px) {
  .c-title04 {
    font-size: var(--fz32);
  }
}

.c-page-title01 {
  position: relative;
}
@media (min-width: 811px) {
  .c-page-title01 {
    display: flex;
    align-items: flex-end;
  }
}
.c-page-title01::after {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 1;
  content: url("../img/common/title_deco01_sp.svg");
}
@media (min-width: 811px) {
  .c-page-title01::after {
    top: 73px;
    content: url("../img/common/title_deco01_pc.svg");
  }
}
.c-page-title01__text {
  display: inline-flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
  padding: 30px 40px 30px 20px;
  background: #333333;
  color: #ffffff;
  font-family: var(--font-en);
  font-size: var(--fz34);
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.05em;
}
@media (min-width: 811px) {
  .c-page-title01__text {
    padding: 40px 60px;
    font-size: var(--fz40);
    line-height: normal;
  }
}
.c-page-title01__text::after {
  display: block;
  width: 40px;
  height: 4px;
  background: #d39a44;
  content: "";
}

.c-section-title01 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 40px;
}
@media (min-width: 811px) {
  .c-section-title01 {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 120px;
  }
}
.c-section-title01__en {
  display: inline-flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
  width: fit-content;
  padding: 30px 40px 30px 20px;
  background: #333333;
  color: #ffffff;
  font-family: var(--font-en);
  font-size: var(--fz34);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.7px;
}
@media (min-width: 811px) {
  .c-section-title01__en {
    padding: 40px 60px;
    font-size: var(--fz40);
    letter-spacing: 2px;
  }
}
.c-section-title01__en::after {
  display: block;
  width: 40px;
  height: 4px;
  background: #d39a44;
  content: "";
}
.c-section-title01__sub {
  margin: 0 20px;
}
@media (min-width: 811px) {
  .c-section-title01__sub {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding-right: 80px;
  }
}
.c-section-title01__jp {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333333;
  font-style: normal;
  font-size: var(--fz32);
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 811px) {
  .c-section-title01__jp {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    padding-right: 40px;
    border: none;
    border-right: 1px solid #333333;
    font-size: var(--fz46);
  }
}
.c-section-title01__lead {
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.8;
  text-transform: capitalize;
}
@media (min-width: 811px) {
  .c-section-title01__lead {
    font-size: var(--fz18);
  }
  .c-section-title01__lead--service {
    max-width: 30em;
  }
}

.c-page-title02 {
  margin-bottom: 40px;
  font-size: var(--fz32);
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 811px) {
  .c-page-title02 {
    margin-bottom: 80px;
    font-size: var(--fz46);
  }
}

.c-page-title03 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 811px) {
  .c-page-title03 {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
  }
}
.c-page-title03__title {
  position: relative;
  padding-bottom: 20px;
  font-size: var(--fz32);
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 811px) {
  .c-page-title03__title {
    padding: 0 40px 0 0;
    font-size: var(--fz46);
  }
}
.c-page-title03__title::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(51, 51, 51, 0.5);
  content: "";
}
@media (min-width: 811px) {
  .c-page-title03__title::after {
    top: 0;
    right: 0;
    left: auto;
    width: 1px;
    height: 100%;
  }
}
.c-page-title03__lead {
  color: #333333;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 180%;
  text-transform: capitalize;
}

.c-text01 {
  line-height: 1.8;
}
.c-text01:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 811px) {
  .c-text01:not(:last-child) {
    margin-bottom: 40px;
  }
}

.c-text02 {
  font-size: var(--fz16);
  font-weight: 400;
  line-height: 160%;
}
.c-text02:not(:last-child) {
  margin-bottom: 20px;
}

.c-lead01 {
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 811px) {
  .c-lead01 {
    font-size: var(--fz18);
  }
}

.c-lead02 {
  font-size: var(--fz14);
  line-height: 1.8;
}
@media (min-width: 811px) {
  .c-lead02 {
    font-size: var(--fz16);
    font-weight: 700;
    line-height: 2.4;
    text-align: center;
  }
}

.c-column1:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 811px) {
  .c-column1:not(:last-child) {
    margin-bottom: 40px;
  }
}

.c-column2 {
  display: flex;
  flex-direction: column;
  gap: 15px 20px;
}
.c-column2:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 811px) {
  .c-column2 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .c-column2:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (min-width: 811px) {
  .c-column2--reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 811px) {
  .c-column2__item {
    width: calc((100% - 20px) / 2);
  }
}

.c-column3 {
  display: flex;
  flex-direction: column;
  gap: 20px 30px;
}
.c-column3:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 811px) {
  .c-column3 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .c-column3:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (min-width: 811px) {
  .c-column3__item {
    width: calc((100% - 60px) / 3);
  }
}

.c-image01:not(:last-child) {
  margin-bottom: 15px;
}
@media (min-width: 811px) {
  .c-image01 {
    margin-bottom: 20px;
  }
}
.c-image01 img {
  width: 100%;
  max-width: 100%;
}

.c-text-link01 {
  color: #d39a44;
  transition: var(--hover-transition);
}
.c-text-link01:hover {
  opacity: var(--hover-opacity);
}

.c-text-link02 {
  color: #3399cc;
  transition: var(--hover-transition);
}
.c-text-link02:hover {
  opacity: var(--hover-opacity);
}

.c-page-title01.is-castory {
  z-index: -2;
}

.p-castory .tab {
  display: none;
}
@media screen and (max-width: 1160px) {
  .p-castory .tab {
    display: block;
  }
}
.p-castory__marquee .marquee__text {
  color: rgba(205, 32, 114, 0.25);
}
.p-castory__marquee.u-text-align-left {
  padding: 0 0 0 40px;
}
.p-castory__marquee.u-text-align-right {
  text-align: right;
}
.p-castory__inner1160 {
  max-width: 1160px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  box-sizing: content-box;
}
@media screen and (max-width: 1160px) {
  .p-castory__inner1160 {
    box-sizing: border-box;
  }
}
.p-castory__title01 {
  line-height: 1.5;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 810px) {
  .p-castory__title01 {
    font-size: 24px;
  }
}
.p-castory__title02 {
  text-align: center;
  font-weight: bold;
  margin: 0 0 80px;
}
.p-castory__title02 span {
  font-family: var(--font-en);
  display: block;
  margin: 0 0 20px;
  color: #CD2272;
  font-size: 34px;
}
@media screen and (max-width: 810px) {
  .p-castory__title02 span {
    font-size: 24px;
  }
}
.p-castory__title02 h3 {
  line-height: 1.5;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 810px) {
  .p-castory__title02 h3 {
    text-align: center;
    font-size: 24px;
  }
}
.p-castory__title02 h3 img {
  width: 242px;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
@media screen and (max-width: 810px) {
  .p-castory__title02 h3 img {
    width: 215px;
    margin: 0 auto 30px;
    display: block;
  }
}
.p-castory__title02.has-lead {
  margin: 0 0 40px;
}
@media screen and (max-width: 810px) {
  .p-castory__title02.has-lead {
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 810px) {
  .p-castory__title02.has-lead img {
    width: 215px;
    margin: 0 auto 20px;
    display: block;
  }
}
.p-castory__lead01 {
  line-height: 1.5;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 810px) {
  .p-castory__lead01 {
    font-size: 20px;
    line-height: 1.8;
    padding: 0 20px;
  }
}
.p-castory__lead02 {
  line-height: 2;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 80px;
}
@media screen and (max-width: 810px) {
  .p-castory__lead02 {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    padding: 0 20px;
  }
}
.p-castory__card01 {
  width: 33%;
  max-width: 360px;
}
@media screen and (max-width: 810px) {
  .p-castory__card01 {
    width: 100%;
    margin: 0 auto 60px;
  }
  .p-castory__card01:last-of-type {
    margin: 0 auto;
  }
}
.p-castory__card01__title {
  color: #CD2272;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}
.p-castory__card01__title span {
  font-family: var(--font-en);
  display: block;
  font-size: 68px;
}
@media screen and (max-width: 810px) {
  .p-castory__card01__title span {
    font-size: 62px;
  }
}
.p-castory__card01__title p {
  font-size: 28px;
}
@media screen and (max-width: 810px) {
  .p-castory__card01__title p {
    font-size: 24px;
  }
}
.p-castory__card01__inner {
  border: 1px solid #eee;
  border-radius: 5px;
  text-align: center;
  padding: 40px 60px;
}
@media screen and (max-width: 810px) {
  .p-castory__card01__inner {
    padding: 30px;
  }
}
.p-castory__card01__image {
  margin: 0 0 20px;
}
.p-castory__card01__lead {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (min-width: 810px) and (max-width: 1160px) {
  .p-castory__card01__lead {
    white-space: inherit;
  }
}
.p-castory__card02 {
  border-radius: 5px 5px 0 0;
  outline: 1px solid #eee;
  outline-offset: -1px;
  text-align: center;
}
.p-castory__card02__image {
  margin: 0 0 25px;
}
.p-castory__card02__title {
  background: #CD2272;
  position: relative;
  padding: 18px;
  margin: 0 0 70px;
  border-radius: 0 0 5px 5px;
}
.p-castory__card02__title p {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
}
.p-castory__card02__title::before {
  content: "";
  background-image: url(../img/castory/arrow01.svg);
  background-size: contain;
  display: block;
  width: 20px;
  height: 18px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.p-castory__card03 {
  text-align: center;
  max-width: 340px;
  width: 100%;
}
@media screen and (max-width: 1160px) {
  .p-castory__card03:not(:last-of-type) {
    margin: 0 0 60px;
  }
}
.p-castory__card03__image {
  margin: 0 0 25px;
}
@media screen and (max-width: 1160px) {
  .p-castory__card03__image {
    margin: 0 0 15px;
  }
}
.p-castory__card03__text {
  background: #fff;
  border-radius: 5px;
  padding: 25px;
  box-shadow: 0px 0px 3px 0px rgba(205, 34, 114, 0.25);
}
.p-castory__card03__text p {
  font-weight: bold;
  line-height: 1.5;
}
.p-castory__card03__text--top {
  font-size: 16px;
  margin: 0 0 40px;
}
.p-castory__card03__text--bottom {
  font-size: 18px;
  color: #CD2272;
  position: relative;
}
.p-castory__card03__text--bottom::before {
  content: "";
  background-image: url(../img/castory/arrow01.svg);
  background-size: contain;
  display: block;
  width: 20px;
  height: 18px;
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.p-castory__card04 {
  text-align: center;
  max-width: 240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .p-castory__card04 {
    max-width: 340px;
  }
  .p-castory__card04:not(:last-of-type) {
    margin: 0 0 115px;
  }
}
.p-castory__card04::before {
  content: "";
  background-image: url(../img/castory/arrow01.svg);
  background-size: contain;
  display: block;
  width: 20px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: -18%;
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 1160px) {
  .p-castory__card04::before {
    top: auto;
    bottom: -70px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0) rotate(180deg);
  }
}
.p-castory__card04__inner {
  border-radius: 5px 5px 0 0;
  outline: 1px solid #eee;
  outline-offset: -1px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.p-castory__card04__image {
  margin: 0 0 25px;
}
.p-castory__card04__title {
  text-align: center;
}
.p-castory__card04__title span {
  font-size: 68px;
  color: #CD2272;
  font-weight: bold;
  margin: 0 0 15px;
  font-family: var(--font-en);
}
@media screen and (max-width: 1160px) {
  .p-castory__card04__title span {
    font-size: 62px;
  }
}
.p-castory__card04__title p {
  background: rgba(205, 32, 114, 0.1);
  text-align: center;
  color: #CD2272;
  font-weight: bold;
  font-size: 16px;
  border-radius: 40px;
  padding: 12px;
  margin: 0 0 20px;
}
@media screen and (max-width: 1160px) {
  .p-castory__card04__title p {
    font-size: 18px;
  }
}
.p-castory__card04__text {
  background: #CD2272;
  position: relative;
  padding: 18px 10px;
  border-radius: 0 0 5px 5px;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-castory__card04__text p {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  align-items: center;
}
.p-castory__card04__text::before {
  content: "";
  background-image: url(../img/castory/arrow01.svg);
  background-size: contain;
  display: block;
  width: 20px;
  height: 18px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.p-castory__card05 {
  text-align: center;
  max-width: 240px;
  width: 100%;
  background: #CD2272;
  border-radius: 5px;
  padding: 70px 18px 25px 18px;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .p-castory__card05 {
    max-width: 340px;
    margin: 20px 0 0;
    padding: 70px 20px 20px 25px;
  }
}
.p-castory__card05::before {
  content: "";
  position: absolute;
  background-image: url(../img/castory/logo_circle.svg);
  background-size: contain;
  top: -52px;
  left: 50%;
  display: block;
  width: 120px;
  height: 120px;
  transform: translateX(-50%);
}
.p-castory__card05__title {
  border-bottom: 2px dotted #fff;
  margin: 0 0 25px;
}
.p-castory__card05__title p {
  font-size: 22px;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}
.p-castory__card05__list li {
  border-radius: 55px;
  background: #FFF;
  padding: 10px 0px;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  line-height: 2; /* 32px */
}
.p-castory__card05__list li:not(:last-of-type) {
  margin: 0 0 25px;
}
.p-castory__keyvisual {
  padding: 190px 0 0;
  position: relative;
}
@media screen and (max-width: 810px) {
  .p-castory__keyvisual {
    padding: 240px 0 0;
  }
}
.p-castory__keyvisual::before {
  content: "";
  position: absolute;
  display: block;
  width: 514px;
  height: 428px;
  background-image: url(../img/castory/bg01_pc.png);
  background-size: contain;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 810px) {
  .p-castory__keyvisual::before {
    width: 240px;
    height: 210px;
    background-image: url(../img/castory/bg01_sp.png);
    background-repeat: no-repeat;
  }
}
.p-castory__keyvisual__inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.p-castory__keyvisual__inner > * {
  min-height: 0%;
}
@media screen and (max-width: 810px) {
  .p-castory__keyvisual__inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-items: center;
    padding: 0;
  }
  .p-castory__keyvisual__inner > * {
    min-height: 0%;
  }
}
.p-castory__keyvisual__text {
  width: 100%;
  max-width: 510px;
}
@media screen and (min-width: 810px) and (max-width: 1160px) {
  .p-castory__keyvisual__text {
    max-width: 50%;
  }
}
@media screen and (max-width: 810px) {
  .p-castory__keyvisual__text {
    margin: 0 0 60px;
    max-width: 510px;
  }
}
.p-castory__keyvisual__text h2 {
  margin: 0 0 60px;
}
@media screen and (max-width: 810px) {
  .p-castory__keyvisual__text h2 {
    text-align: center;
  }
}
@media screen and (max-width: 810px) {
  .p-castory__keyvisual__text h2 img {
    max-width: 315px;
    width: 100%;
  }
}
.p-castory__keyvisual__text h3 {
  margin: 0 0 40px;
}
@media screen and (max-width: 810px) {
  .p-castory__keyvisual__text h3 {
    text-align: center;
  }
}
.p-castory__keyvisual__text div {
  margin: 0 0 30px;
}
@media screen and (max-width: 810px) {
  .p-castory__keyvisual__text div {
    text-align: center;
  }
}
@media screen and (max-width: 810px) {
  .p-castory__keyvisual__text div img {
    text-align: center;
  }
}
.p-castory__keyvisual__text p {
  font-weight: bold;
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 810px) {
  .p-castory__keyvisual__text p {
    text-align: center;
    font-size: 16px;
  }
}
.p-castory__keyvisual__image {
  width: 100%;
  max-width: 620px;
}
@media screen and (min-width: 810px) and (max-width: 1160px) {
  .p-castory__keyvisual__image {
    max-width: 50%;
  }
}
.p-castory__solution {
  padding: 90px 0;
}
.p-castory__solution__flow {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 auto 180px;
}
.p-castory__solution__flow > * {
  min-height: 0%;
}
@media screen and (max-width: 810px) {
  .p-castory__solution__flow {
    padding: 0;
    margin: 0 auto 90px;
  }
}
.p-castory__solution__lead01 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
}
.p-castory__solution__what__title {
  text-align: right;
  margin: 0 auto 80px;
}
@media screen and (max-width: 810px) {
  .p-castory__solution__what__title {
    text-align: center;
    padding: 0;
  }
}
.p-castory__solution__what__title h3 {
  font-size: 34px;
  color: #CD2272;
  font-weight: bold;
  margin: 0 0 40px;
  font-family: var(--font-en);
}
@media screen and (max-width: 810px) {
  .p-castory__solution__what__title h3 {
    font-size: 24px;
    margin: 0 0 30px;
  }
}
.p-castory__solution__what__title h3 img {
  width: 242px;
  margin: 0 0 0 30px;
}
@media screen and (max-width: 810px) {
  .p-castory__solution__what__title h3 img {
    display: block;
    margin: 0 auto;
  }
}
.p-castory__solution__visual {
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 0 120px;
}
@media screen and (max-width: 810px) {
  .p-castory__solution__visual {
    padding: 0 0 80px;
  }
}
.p-castory__solution__visual__title .marquee__text {
  color: rgba(255, 255, 255, 0.25);
}
.p-castory__solution__visual__inner::before {
  content: "";
  display: block;
  width: 200vw; /* ビューポートの幅の100% */
  height: 200vw; /* ビューポートの幅の100% */
  border-radius: 50%; /* 円形にする */
  background-color: #CD2272; /* 背景色（任意） */
  box-sizing: border-box;
  position: absolute;
  z-index: -1;
  top: 26%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 810px) {
  .p-castory__solution__visual__inner::before {
    width: 350vw;
    height: 220vw;
    top: 15%;
  }
}
.p-castory__solution__visual__inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 570px;
  height: 475px;
  background-image: url(../img/castory/bg02_pc.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 5%;
  z-index: -2;
}
@media screen and (max-width: 810px) {
  .p-castory__solution__visual__inner::after {
    background-image: url(../img/castory/bg02_sp.png);
    width: 347px;
    height: 288px;
  }
}
.p-castory__solution__image {
  margin: 0 0 40px;
}
@media screen and (max-width: 810px) {
  .p-castory__solution__image {
    max-width: 90%;
    margin: 0 auto 40px;
  }
}
.p-castory__solution__text {
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 810px) {
  .p-castory__solution__text {
    max-width: 100%;
    padding: 0 20px;
  }
}
.p-castory__solution__text p {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 20px;
}
.p-castory__solution__text p:last-of-type {
  margin: 0;
}
@media screen and (max-width: 810px) {
  .p-castory__solution__text p {
    font-size: 16px;
  }
}
.p-castory__concept__item {
  padding: 120px 0 0;
}
@media screen and (max-width: 810px) {
  .p-castory__concept__item {
    padding: 80px 0 0;
  }
}
.p-castory__concept__item:last-of-type {
  padding: 120px 0 90px;
}
@media screen and (max-width: 810px) {
  .p-castory__concept__item:last-of-type {
    padding: 80px 0 80px;
  }
}
.p-castory__concept__inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.p-castory__concept__inner > * {
  min-height: 0%;
}
@media screen and (max-width: 810px) {
  .p-castory__concept__inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-items: center;
    padding: 0;
  }
  .p-castory__concept__inner > * {
    min-height: 0%;
  }
}
.p-castory__concept__inner.is-reverse {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: stretch;
}
.p-castory__concept__inner.is-reverse > * {
  min-height: 0%;
}
@media screen and (max-width: 810px) {
  .p-castory__concept__inner.is-reverse {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-items: center;
  }
  .p-castory__concept__inner.is-reverse > * {
    min-height: 0%;
  }
}
.p-castory__concept__text {
  max-width: 340px;
}
@media screen and (max-width: 810px) {
  .p-castory__concept__text {
    padding: 0 20px;
    box-sizing: content-box;
  }
}
.p-castory__concept__lead {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 810px) {
  .p-castory__concept__lead {
    margin: 0 0 60px;
  }
}
.p-castory__concept__lead::before {
  content: "";
  background-image: url(../img/castory/arrow01.svg);
  background-size: contain;
  display: block;
  width: 20px;
  height: 18px;
  position: absolute;
  top: -37px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.p-castory__concept__lead div {
  margin: 0 0 20px;
}
.p-castory__concept__lead div img {
  width: 242px;
}
.p-castory__concept__lead p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
}
.p-castory__concept__title01 {
  text-align: center;
}
.p-castory__concept__title01 span {
  font-size: 68px;
  color: #CD2272;
  font-weight: bold;
  margin: 0 0 15px;
  font-family: var(--font-en);
}
.p-castory__concept__title01 p {
  background: rgba(205, 32, 114, 0.1);
  text-align: center;
  color: #CD2272;
  font-weight: bold;
  font-size: 16px;
  border-radius: 40px;
  padding: 12px;
  margin: 0 0 20px;
}
.p-castory__concept__image {
  width: 100%;
  max-width: calc(100% - 460px);
}
@media screen and (max-width: 810px) {
  .p-castory__concept__image {
    width: 100%;
    max-width: 100%;
  }
}
.p-castory__concept__image.is-large {
  margin-right: -220px;
  max-width: calc(100% - 240px);
}
@media screen and (max-width: 810px) {
  .p-castory__concept__image.is-large {
    max-width: calc(100% - 20px);
    width: 100%;
    margin-right: -20px;
  }
}
.p-castory__feature {
  padding: 90px 0;
  background: rgba(205, 32, 114, 0.05);
}
@media screen and (max-width: 810px) {
  .p-castory__feature {
    padding: 80px 0;
  }
}
.p-castory__feature__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.p-castory__feature__list > * {
  min-height: 0%;
}
@media screen and (max-width: 1160px) {
  .p-castory__feature__list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-items: center;
  }
  .p-castory__feature__list > * {
    min-height: 0%;
  }
}
.p-castory__flow {
  padding: 90px 0;
}
@media screen and (max-width: 810px) {
  .p-castory__flow {
    padding: 80px 0;
  }
}
.p-castory__flow__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.p-castory__flow__list > * {
  min-height: 0%;
}
@media screen and (max-width: 1160px) {
  .p-castory__flow__list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-items: center;
  }
  .p-castory__flow__list > * {
    min-height: 0%;
  }
}
.p-castory__conversion {
  padding: 90px 0;
  background: rgba(205, 32, 114, 0.05);
}
.p-castory__conversion__inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}
.p-castory__conversion__inner > * {
  min-height: 0%;
}
@media screen and (max-width: 810px) {
  .p-castory__conversion__inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: stretch;
  }
  .p-castory__conversion__inner > * {
    min-height: 0%;
  }
}
.p-castory__conversion__image {
  max-width: 639px;
  width: 100%;
  position: absolute;
  left: -8%;
  top: -9%;
}
@media screen and (min-width: 810px) and (max-width: 1160px) {
  .p-castory__conversion__image {
    max-width: 50%;
  }
}
@media screen and (max-width: 810px) {
  .p-castory__conversion__image {
    max-width: 639px;
    width: 100%;
    position: static;
  }
}
.p-castory__conversion__text {
  max-width: 650px;
  width: 100%;
  border-radius: 5px;
  padding: 60px;
  background: #FFF;
  box-shadow: 0px 0px 3px 0px rgba(205, 34, 114, 0.25);
}
@media screen and (min-width: 810px) and (max-width: 1160px) {
  .p-castory__conversion__text {
    max-width: 50%;
  }
}
@media screen and (max-width: 810px) {
  .p-castory__conversion__text {
    padding: 40px 20px 20px 20px;
    max-width: 100%;
  }
}
.p-castory__conversion__logo {
  width: 100%;
  max-width: 242px;
  margin: 0 0 40px;
}
@media screen and (max-width: 810px) {
  .p-castory__conversion__logo {
    margin: 0 auto 30px;
  }
}
.p-castory__conversion__price {
  margin: 0 0 60px;
}
@media screen and (max-width: 810px) {
  .p-castory__conversion__price {
    text-align: center;
  }
}
.p-castory__conversion__price p {
  color: #CD2272;
  font-size: 34px;
  font-weight: bold;
  font-family: var(--font-en);
}
@media screen and (max-width: 810px) {
  .p-castory__conversion__price p {
    text-align: center;
    font-size: 24px;
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 810px) {
  .p-castory__conversion__price img {
    max-width: 295px;
  }
}
.p-castory__conversion__title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 810px) {
  .p-castory__conversion__title {
    font-size: 20px;
    text-align: center;
  }
}
.p-castory__conversion__lead {
  font-size: 18px;
  font-weight: bold;
  line-height: 2; /* 36px */
}
@media screen and (max-width: 810px) {
  .p-castory__conversion__lead {
    font-size: 16px;
  }
}

@media (max-width: 810px) {
  .c-service .c-inner1280 {
    max-width: 650px;
  }
}
.c-service .u-text-align-right {
  text-align: right;
}
@media (min-width: 811px) {
  .c-service .c-marquee01 {
    padding: 0 40px;
  }
}
.c-service__title01 {
  padding: 0 0 35px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  background: url(../img/common/line01.svg);
  background-position: left bottom, left top;
  background-repeat: repeat-x;
}
@media (min-width: 811px) {
  .c-service__title01 {
    padding: 0 0 55px;
    font-size: 58px;
  }
}
.c-service__concept {
  padding: 60px 0;
}
@media (min-width: 811px) {
  .c-service__concept {
    padding: 120px 0 100px;
  }
}
.c-service__concept__title01 {
  margin: 0 0 35px;
}
@media (min-width: 811px) {
  .c-service__concept__title01 {
    margin: 0 0 70px;
  }
}
.c-service__concept__title01 .is-english {
  display: block;
  margin: 0 0 20px;
  text-align: center;
  letter-spacing: 0.06em;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: bold;
  color: #00a9ca;
}
@media (min-width: 811px) {
  .c-service__concept__title01 .is-english {
    margin: 0 0 40px;
    font-size: 34px;
  }
}
.c-service__concept__title01 .is-japanese {
  text-align: center;
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
}
@media (min-width: 811px) {
  .c-service__concept__title01 .is-japanese {
    font-size: 46px;
  }
}
.c-service__concept__lead {
  text-align: center;
  line-height: 2.4;
}
@media (min-width: 811px) {
  .c-service__concept__lead {
    line-height: 2.8;
  }
}
.c-service__concept__list01 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 50px 0 0;
}
@media (min-width: 811px) {
  .c-service__concept__list01 {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 100px;
    margin: 80px 0 0;
  }
}
.c-service__concept__list01 > li {
  padding: 0 20px;
}
.c-service__concept__list01__image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  padding: 50px;
  width: 200px;
  height: 200px;
  text-align: center;
  border-radius: 50%;
  border: 1px #EEE solid;
}
@media (min-width: 811px) {
  .c-service__concept__list01__image-box {
    width: 240px;
    height: 240px;
  }
}
.c-service__concept__list01__text-box {
  text-align: center;
  line-height: 1.5;
}
.c-service__concept__list01__title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: bold;
}
.c-service__concept__list01__text {
  font-size: 16px;
  font-weight: bold;
}
.c-service__concept__image {
  margin-top: 50px;
  text-align: center;
}
@media (min-width: 811px) {
  .c-service__concept__image {
    margin-top: 80px;
  }
}
.c-service__orders {
  padding: 60px 0 0;
}
@media (min-width: 811px) {
  .c-service__orders {
    padding: 80px 0 0;
  }
}
.c-service__orders__title01 {
  margin: 0 0 45px;
}
@media (min-width: 811px) {
  .c-service__orders__title01 {
    margin: 0 0 75px;
  }
}
.c-service__orders__title01 .is-english {
  display: block;
  margin: 0 0 20px;
  text-align: center;
  letter-spacing: 0.06em;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: bold;
  color: #00a9ca;
}
@media (min-width: 811px) {
  .c-service__orders__title01 .is-english {
    margin: 0 0 20px;
    font-size: 34px;
  }
}
.c-service__orders__title01 .is-japanese {
  text-align: center;
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
}
@media (min-width: 811px) {
  .c-service__orders__title01 .is-japanese {
    font-size: 24px;
  }
}
.c-service__orders__navi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px 3.6%;
  width: 100%;
}
@media (min-width: 811px) {
  .c-service__orders__navi {
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 auto;
    max-width: 1100px;
  }
}
.c-service__orders__navi > li {
  position: relative;
}
@media (min-width: 811px) {
  .c-service__orders__navi > li {
    width: 17.12%;
    min-width: 120px;
  }
}
.c-service__orders__navi > li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 1px;
  background: url(../img/common/line01.svg);
  background-position: left bottom, left top;
  background-repeat: repeat-x;
}
@media (min-width: 811px) {
  .c-service__orders__navi > li:not(:last-child)::before {
    left: auto;
    right: -12%;
    top: 0;
    bottom: auto;
    width: 1px;
    height: 100%;
    background: url(../img/common/line02.svg);
    background-repeat: repeat-y;
  }
}
.c-service__orders__navi > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px 20px;
  padding: 0 40px 0 0;
  height: 100%;
  color: #333333;
  font-weight: bold;
}
@media (min-width: 811px) {
  .c-service__orders__navi > li > a {
    flex-direction: column;
    align-items: center;
    padding: 0 0 35px;
  }
}
@media (any-hover: hover) {
  .c-service__orders__navi > li > a {
    transition: 0.3s ease;
  }
  .c-service__orders__navi > li > a:hover {
    opacity: 0.7;
  }
}
.c-service__orders__navi > li > a ::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transform: rotate(90deg);
  width: 11px;
  height: 10px;
  background: url("../img/common/icon_triangle01_yellow_right.svg") no-repeat center/contain;
}
@media (min-width: 811px) {
  .c-service__orders__navi > li > a ::before {
    right: 0;
    left: 0;
    top: auto;
    bottom: 10px;
    margin: 0 auto;
  }
}
.c-service__orders__navi__image-box {
  flex-shrink: 0;
}
.c-service__orders__navi__image-box img {
  width: 50px;
}
@media (min-width: 811px) {
  .c-service__orders__navi__image-box img {
    width: auto;
    height: 50px;
  }
}
.c-service__orders__navi__text-box {
  width: 100%;
}
@media (min-width: 811px) {
  .c-service__orders__navi__text-box {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.c-service__orders__navi__text-box .is-sub {
  display: block;
  font-size: 24px;
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #00a9ca;
}
@media (min-width: 811px) {
  .c-service__orders__navi__text-box .is-sub {
    text-align: center;
  }
}
.c-service__orders__navi__text-box .is-main {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 811px) {
  .c-service__orders__navi__text-box .is-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
  }
}
@media (min-width: 811px) {
  .c-service__orders__navi.is-6column > li {
    width: 13.6666666667%;
  }
}
@media (min-width: 811px) {
  .c-service__orders__navi.is-6column > li:not(:last-child)::before {
    right: -14%;
  }
}
@media (min-width: 811px) {
  .c-service__orders__navi--nowrap {
    flex-wrap: nowrap;
  }
}
.c-service__conversion {
  margin: 60px 0 0;
  padding: 100px 0;
  background: #EBF5F7;
}
@media (min-width: 811px) {
  .c-service__conversion {
    gap: 20px;
    margin: 80px 0 0;
  }
}
.c-service__conversion__container {
  display: flex;
  flex-direction: column;
}
.c-service__conversion__button-wrap {
  margin: 0 auto 16px;
  max-width: 540px;
  width: 100%;
}
@media (min-width: 811px) {
  .c-service__conversion__button-wrap {
    margin: 0 auto 20px;
  }
}
.c-service__conversion__button {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  padding: 17px 20px;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background: #D39A44;
  text-align: center;
}
@media (any-hover: hover) {
  .c-service__conversion__button {
    transition: 0.3s ease;
  }
  .c-service__conversion__button:hover {
    opacity: 0.7;
  }
}
.c-service__conversion__button::after {
  content: url("../img/common/icon_triangle01_white_right.svg");
}
.c-service__conversion__button.is-blue {
  background: #00A9CA;
}
@media (max-width: 810px) {
  .c-service__conversion.is-mt0-sp {
    margin: 0;
  }
}
.c-service__section01 {
  position: relative;
  z-index: 1;
}
.c-service__section01__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 650px;
}
@media (min-width: 811px) {
  .c-service__section01__inner {
    margin: 0 auto;
    max-width: 1920px;
  }
}
.c-service__section01__container01 {
  position: relative;
  margin: 0 0 35px;
  padding: 250px 16px 0;
}
@media (max-width: 811px) {
  .c-service__section01__container01.is-pdlr20 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 811px) {
  .c-service__section01__container01 {
    margin: 0 0 50px;
    padding: 290px 80px 0;
  }
}
@media (min-width: 811px) {
  .c-service__section01__container01.is-center .c-service__section01__number {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 811px) {
  .c-service__section01__container01.is-center .c-service__section01__title01 .is-english {
    text-align: center;
  }
  .c-service__section01__container01.is-center .c-service__section01__title01 .is-japanese {
    text-align: center;
  }
}
@media (min-width: 811px) {
  .c-service__section01__container01.is-center .c-service__section01__lead {
    text-align: center;
  }
}
@media (min-width: 811px) {
  .c-service__section01__container01.is-center .c-service__section01__logo-box {
    text-align: center;
  }
}
@media (min-width: 811px) {
  .c-service__section01__container01.is-right .c-service__section01__number {
    left: auto;
    right: -10px;
    transform: none;
  }
}
@media (min-width: 811px) {
  .c-service__section01__container01.is-right .c-service__section01__title01 .is-english {
    text-align: right;
  }
  .c-service__section01__container01.is-right .c-service__section01__title01 .is-japanese {
    text-align: right;
  }
}
@media (min-width: 811px) {
  .c-service__section01__container01.is-right .c-service__section01__lead {
    text-align: right;
  }
}
@media (min-width: 811px) {
  .c-service__section01__container01.is-right .c-service__section01__logo-box {
    text-align: right;
  }
}
.c-service__section01__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(119, 190, 204, 0.1490196078);
  font-family: var(--font-en);
  font-size: 380px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
@media (min-width: 811px) {
  .c-service__section01__number {
    left: -30px;
    transform: none;
    font-size: 480px;
  }
}
@media (min-width: 811px) {
  .c-service__section01__column-box {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 0 0 80px;
  }
}
.c-service__section01__title01 {
  margin: 0 0 35px;
}
.c-service__section01__title01 .is-head {
  position: relative;
  text-align: center;
}
@media (min-width: 811px) {
  .c-service__section01__title01 .is-head {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .c-service__section01__title01 .is-head.is-right {
    justify-content: flex-end;
  }
  .c-service__section01__title01 .is-head .is-english {
    margin-bottom: 0;
  }
}
.c-service__section01__title01 .is-theme {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 20px 6px;
  border-radius: 2px;
  background: #d39a44;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 811px) {
  .c-service__section01__title01 .is-theme {
    margin-bottom: 0;
  }
}
.c-service__section01__title01 .is-english {
  display: block;
  margin: 0 0 5px;
  text-align: center;
  letter-spacing: 0.06em;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: bold;
  color: #00a9ca;
}
@media (min-width: 811px) {
  .c-service__section01__title01 .is-english {
    text-align: left;
    font-size: 58px;
  }
}
.c-service__section01__title01 .is-japanese {
  text-align: center;
  line-height: 1.4;
  font-size: 32px;
  font-weight: bold;
}
@media (min-width: 811px) {
  .c-service__section01__title01 .is-japanese {
    text-align: left;
    font-size: 46px;
  }
}
.c-service__section01__title01--s .is-japanese {
  font-size: var(--fz22);
}
@media (min-width: 811px) {
  .c-service__section01__title01--s .is-japanese {
    font-size: var(--fz46);
  }
}
.c-service__section01__title02 {
  margin: 0 0 20px;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  background: #00A9CA;
  border-radius: 5px;
}
.c-service__section01__title03 {
  margin: 0 auto 80px;
  padding: 10px;
  width: calc(100% - 32px);
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  background: #00A9CA;
  border-radius: 5px;
  line-height: 1.8;
}
@media (min-width: 811px) {
  .c-service__section01__title03 {
    padding: 20px;
    width: calc(100% - 160px);
    font-size: 24px;
    line-height: 2;
  }
}
.c-service__section01__lead {
  line-height: 2;
  font-weight: bold;
}
@media (min-width: 811px) {
  .c-service__section01__lead {
    font-size: 18px;
  }
}
.c-service__section01__lead span.is-strong {
  color: #d39a44;
  font-size: var(--fz20);
}
@media (min-width: 811px) {
  .c-service__section01__lead span.is-strong {
    font-size: var(--fz24);
  }
}
.c-service__section01__logo-box {
  margin: 50px 0 0;
  text-align: center;
}
@media (min-width: 811px) {
  .c-service__section01__logo-box {
    margin: 60px 0 0;
    text-align: left;
  }
}
.c-service__section01__logo {
  height: 60px;
}
@media (min-width: 811px) {
  .c-service__section01__logo {
    height: 80px;
  }
}
.c-service__section01__logo:not(:last-child) {
  margin: 0 0 40px;
}
.c-service__section01__image01 {
  margin: 0 auto;
  max-width: 1920px;
}
.c-service__section01__image01 img {
  width: 100%;
}
.c-service__section01__select-section {
  max-width: 355px;
}
.c-service__section01__select-month {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin: 0 0 20px;
}
.c-service__section01__select-month > dt {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: bold;
}
.c-service__section01__select-month > dd {
  position: relative;
  z-index: 1;
  width: 100%;
}
.c-service__section01__select-month > dd::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%) rotate(90deg);
  width: 14px;
  height: 13px;
  background: url(../img/common/icon_triangle01_blue_right.svg) no-repeat center/contain;
  pointer-events: none;
}
.c-service__section01__select-month > dd select {
  position: relative;
  z-index: 1;
  padding: 6px 50px 6px 20px;
  width: 100%;
  border: 2px #EEE solid;
  border-radius: 3px;
  font-size: 24px;
  pointer-events: none;
}
.c-service__section01__users {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 20px;
  font-family: var(--font-en);
}
.c-service__section01__users > dt {
  font-size: 28px;
  letter-spacing: 0.06em;
  color: #00A9CA;
  font-weight: bold;
}
@media (min-width: 811px) {
  .c-service__section01__users > dt {
    font-size: 32px;
  }
}
.c-service__section01__users > dd {
  font-size: 62px;
  font-weight: bold;
}
@media (min-width: 811px) {
  .c-service__section01__users > dd {
    font-size: 68px;
  }
}
.c-service__section01__marquee {
  position: absolute;
  top: 290px;
  left: 0;
  width: calc(100% - 500px);
  overflow: hidden;
}
.c-service__section01__marquee::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  filter: blur(4px);
  height: 100%;
  content: "";
}
.c-service__section01.is-background::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 190px);
  background: rgba(119, 190, 204, 0.1490196078);
}
@media (min-width: 811px) {
  .c-service__section01.is-background::before {
    height: calc(100% - 220px);
  }
}

.p-think-bot__feature01__image {
  position: relative;
  height: 260px;
}
@media (min-width: 811px) {
  .p-think-bot__feature01__image {
    height: 520px;
  }
}
.p-think-bot__feature01__image img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 770px;
  min-width: 770px;
}
@media (min-width: 811px) {
  .p-think-bot__feature01__image img {
    width: 1600px;
    min-width: 1600px;
  }
}
@media (min-width: 811px) {
  .p-think-bot__feature02__inner {
    padding: 0 0 200px;
    min-height: 720px;
  }
}
@media (min-width: 811px) {
  .p-think-bot__feature02__container {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    margin: 0;
  }
}
.p-think-bot__feature02__image {
  position: relative;
  z-index: 1;
  height: 370px;
}
@media (min-width: 811px) {
  .p-think-bot__feature02__image {
    padding: 140px 0 0;
    max-width: calc(100% - 500px);
    margin: 0 -5% 0 auto;
    width: 62%;
    height: auto;
  }
}
@media (min-width: 1101px) {
  .p-think-bot__feature02__image {
    padding: 90px 0 0;
  }
}
@media (max-width: 810px) {
  .p-think-bot__feature02__image img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 426px;
    min-width: 426px;
  }
}
@media (min-width: 811px) {
  .p-think-bot__feature02__marquee {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}
.p-think-bot__feature03 {
  padding: 0 0 60px;
}
@media (min-width: 811px) {
  .p-think-bot__feature03 {
    padding: 0 0 80px;
  }
}
.p-think-bot__feature03__image {
  padding: 0 20px;
  width: 1430px;
  max-width: 100%;
}
@media (min-width: 811px) {
  .p-think-bot__feature03__image {
    padding: 0 200px;
  }
}
@media (min-width: 811px) {
  .p-think-bot__feature04__inner {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 811px) {
  .p-think-bot__feature04__container {
    flex-shrink: 0;
    margin: 0;
    padding: 290px 60px 0 80px;
  }
}
.p-think-bot__feature04__image {
  max-width: 500px;
}
@media (min-width: 811px) {
  .p-think-bot__feature04__image {
    padding: 60px 40px 0 0;
    max-width: 850px;
  }
}
@media (min-width: 1101px) {
  .p-think-bot__feature04__image {
    padding: 100px 40px 0 0;
  }
}
.p-think-bot__feature05 {
  padding: 0 0 60px;
}
@media (min-width: 811px) {
  .p-think-bot__feature05 {
    padding: 0;
  }
}
@media (min-width: 811px) {
  .p-think-bot__feature05__inner {
    padding: 0 0 280px;
    min-height: 820px;
  }
}
.p-think-bot__feature05__container {
  position: relative;
  z-index: 2;
}
@media (min-width: 811px) {
  .p-think-bot__feature05__container {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
  }
}
.p-think-bot__feature05__image {
  position: relative;
  z-index: 1;
  height: 398px;
}
@media (min-width: 811px) {
  .p-think-bot__feature05__image {
    margin: 0 auto 0 -7%;
    padding: 500px 0 0;
    width: 65%;
    height: auto;
    max-width: calc(100% - 500px);
  }
}
@media (min-width: 1101px) {
  .p-think-bot__feature05__image {
    margin: 0 auto 0 -11%;
    padding: 330px 0 0;
  }
}
.p-think-bot__feature05__image img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 589px;
  min-width: 589px;
}
@media (min-width: 811px) {
  .p-think-bot__feature05__image img {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    min-width: 0%;
  }
}
@media (min-width: 811px) {
  .p-think-bot__feature05__marquee {
    position: absolute;
    bottom: 80px;
    width: 100%;
  }
}

@media (min-width: 811px) {
  .p-customer-rank-forecast__feature02__container {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    margin: 0;
  }
}
@media (max-width: 810px) {
  .p-customer-rank-forecast__feature02__image01 {
    display: none;
  }
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature02__image01 {
    padding: 100px 80px 0 80px;
    text-align: right;
  }
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature02__image01 img {
    margin: 0 8% 0 0;
    width: 82.4%;
    min-height: 1170px;
  }
}
.p-customer-rank-forecast__feature02__image02 {
  position: relative;
  z-index: 1;
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature02__image02 {
    padding: 0 80px;
  }
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature02__image02::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 94%;
    transform: translateX(-50%);
    width: calc((100% - 160px) * 0.836);
    height: 82px;
    background: url(../img/service/customer-rank-forecast/p-customer-rank-forecast_feature02-deco.svg) no-repeat center bottom/contain;
  }
}
.p-customer-rank-forecast__feature03 {
  padding: 0 0 60px;
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature03 {
    padding: 0 0 80px;
  }
}
.p-customer-rank-forecast__feature03__image01 {
  margin: 0 0 50px;
}
.p-customer-rank-forecast__feature03__image02 {
  padding: 0 0 10px;
  overflow-x: auto;
  text-align: center;
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature03__image02 {
    padding: 0 80px 10px;
  }
}
.p-customer-rank-forecast__feature03__image02 img {
  width: 520px;
  min-width: 520px;
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature03__image02 img {
    width: 1280px;
    min-width: 1280px;
  }
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature04__inner {
    padding: 0 0 280px;
  }
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature04__container {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    margin: 0;
  }
}
.p-customer-rank-forecast__feature04__image {
  position: relative;
  z-index: 1;
  height: 313px;
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature04__image {
    padding: 150px 0 0;
    margin: 0 auto 0 600px;
    min-width: 1035px;
    width: 70%;
    height: auto;
  }
}
@media (max-width: 810px) {
  .p-customer-rank-forecast__feature04__image img {
    position: absolute;
    left: calc(50% + 130px);
    top: 0;
    transform: translateX(-50%);
    width: 520px;
    min-width: 520px;
  }
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature04__marquee {
    position: absolute;
    bottom: 80px;
    width: 100%;
  }
}
.p-customer-rank-forecast__feature05 {
  margin: 0 0 250px;
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature05 {
    margin: 0;
    padding: 0 0 80px;
  }
}
.p-customer-rank-forecast__feature05__inner {
  min-height: 1200px;
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature05__inner {
    padding: 0 0 280px;
    min-height: 900px;
  }
}
@media (min-width: 1001px) {
  .p-customer-rank-forecast__feature05__inner {
    min-height: 1240px;
  }
}
.p-customer-rank-forecast__feature05__container {
  position: relative;
  z-index: 2;
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature05__container {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
  }
}
.p-customer-rank-forecast__feature05__image {
  position: absolute;
  left: 50%;
  bottom: -250px;
  transform: translateX(-50%);
  z-index: 1;
  height: 663px;
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature05__image {
    bottom: -520px;
    left: -15%;
    transform: none;
    height: auto;
    width: 600px;
  }
}
@media (min-width: 1001px) {
  .p-customer-rank-forecast__feature05__image {
    width: 863px;
  }
}
.p-customer-rank-forecast__feature05__image img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 400px;
  min-width: 400px;
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature05__image img {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    min-width: 0%;
  }
}
@media (min-width: 811px) {
  .p-customer-rank-forecast__feature05__marquee {
    position: absolute;
    bottom: 80px;
    width: 100%;
    overflow: hidden;
  }
}

@media (min-width: 811px) {
  .p-royal-customer__step01__inner {
    padding: 400px 0 0;
  }
}
@media (min-width: 811px) {
  .p-royal-customer__step01__container {
    position: absolute;
    left: 0;
    top: 350px;
    z-index: 2;
    margin: 0;
  }
}
.p-royal-customer__step01__image01 {
  margin: 0 0 40px;
}
@media (min-width: 811px) {
  .p-royal-customer__step01__image01 {
    position: absolute;
    left: 400px;
    top: 150px;
    width: 100%;
    height: 583px;
    margin: 0;
  }
}
@media (min-width: 811px) {
  .p-royal-customer__step01__image01 img {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 2310px;
    height: 100%;
  }
}
@media (max-width: 810px) {
  .p-royal-customer__step01__image02 {
    display: none;
  }
}
@media (min-width: 811px) {
  .p-royal-customer__step01__image02 {
    padding: 400px 80px 0 80px;
    text-align: right;
  }
}
@media (min-width: 811px) {
  .p-royal-customer__step01__image02 img {
    margin: 0 8% 0 0;
    width: 100%;
  }
}
.p-royal-customer__step01__image03 {
  position: relative;
  z-index: 1;
}
@media (min-width: 811px) {
  .p-royal-customer__step01__image03 {
    padding: 0 80px;
  }
}
@media (min-width: 811px) {
  .p-royal-customer__step01__image03::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 94%;
    transform: translateX(-50%);
    width: calc((100% - 160px) * 0.836);
    height: 82px;
    background: url(../img/service/customer-rank-forecast/p-customer-rank-forecast_feature02-deco.svg) no-repeat center bottom/contain;
  }
}
.p-royal-customer__step02__image03 {
  margin: 160px 0 0;
}
.p-royal-customer__step03__container {
  position: relative;
  z-index: 2;
}
.p-royal-customer__step03__image {
  position: relative;
  z-index: 1;
  height: 247px;
}
@media (min-width: 811px) {
  .p-royal-customer__step03__image {
    position: absolute;
    top: 180px;
    right: -15px;
    height: auto;
    width: 937px;
    max-width: calc(100% - 400px);
  }
}
.p-royal-customer__step03__image img {
  position: absolute;
  right: 0;
  top: 0;
  width: 629px;
  min-width: 629px;
  height: 100%;
}
@media (min-width: 811px) {
  .p-royal-customer__step03__image img {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    min-width: 0%;
    height: auto;
  }
}
.p-royal-customer__step03__image02 {
  margin: 80px 0 0;
  position: relative;
}
@media (min-width: 811px) {
  .p-royal-customer__step03__image02 {
    margin: -100px 0 0 80px;
    width: 570px;
  }
}
.p-royal-customer__step03__container01 {
  margin: 80px 0 0;
}
.p-royal-customer__step04 {
  padding: 0 0 60px;
}
@media (min-width: 811px) {
  .p-royal-customer__step04 {
    margin: -260px 0 0;
    padding: 0;
  }
}
@media (min-width: 811px) {
  .p-royal-customer__step04__inner {
    padding: 0 0 280px;
    min-height: 1150px;
  }
}
.p-royal-customer__step04__container {
  position: relative;
  z-index: 2;
}
@media (min-width: 811px) {
  .p-royal-customer__step04__container {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
  }
}
.p-royal-customer__step04__image {
  position: relative;
  z-index: 1;
}
@media (min-width: 811px) {
  .p-royal-customer__step04__image {
    margin: 0 auto 0 -6%;
    padding: 320px 0 0;
    width: 55%;
    height: auto;
    max-width: 800px;
  }
}
@media (min-width: 811px) {
  .p-royal-customer__step04__image img {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    min-width: 0%;
  }
}
@media (min-width: 811px) {
  .p-royal-customer__step04__marquee {
    position: absolute;
    bottom: 80px;
    width: 100%;
  }
}
@media (min-width: 811px) {
  .p-royal-customer__step05__inner {
    padding: 0 0 280px;
  }
}
@media (min-width: 811px) {
  .p-royal-customer__step05__container {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    margin: 0;
  }
}
.p-royal-customer__step05__image {
  position: relative;
  z-index: 1;
  height: 313px;
}
@media (min-width: 811px) {
  .p-royal-customer__step05__image {
    padding: 150px 0 0;
    margin: 0 auto 0 600px;
    min-width: 1035px;
    width: 70%;
    height: auto;
  }
}
@media (max-width: 810px) {
  .p-royal-customer__step05__image img {
    position: absolute;
    left: calc(50% + 130px);
    top: 0;
    transform: translateX(-50%);
    width: 520px;
    min-width: 520px;
  }
}
@media (min-width: 811px) {
  .p-royal-customer__step05__marquee {
    position: absolute;
    bottom: 80px;
    width: 100%;
  }
}

.p-ai-outbound-package__service-steps {
  display: flex;
  flex-direction: column;
  gap: 40px clamp(20px, 1.875vw, 27.5px);
  margin-top: 50px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__service-steps {
    flex-direction: row;
    justify-content: center;
    margin-top: 80px;
  }
}
.p-ai-outbound-package__service-step {
  display: grid;
  gap: 15px 20px;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  grid-auto-flow: row;
  grid-template-areas: "p-ai-outbound-package__service-step__title p-ai-outbound-package__service-step__title" "p-ai-outbound-package__service-step__icon p-ai-outbound-package__service-step__list";
}
@media (min-width: 811px) {
  .p-ai-outbound-package__service-step {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content min-content auto;
    grid-template-areas: "p-ai-outbound-package__service-step__icon" "p-ai-outbound-package__service-step__title" "p-ai-outbound-package__service-step__list";
  }
}
.p-ai-outbound-package__service-step__title {
  grid-area: p-ai-outbound-package__service-step__title;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__service-step__title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--fz20);
  }
}
.p-ai-outbound-package__service-step__icon {
  display: flex;
  align-items: center;
  grid-area: p-ai-outbound-package__service-step__icon;
  width: 120px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__service-step__icon {
    width: auto;
    padding: 0 10px 5px;
  }
}
.p-ai-outbound-package__service-step__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  grid-area: p-ai-outbound-package__service-step__list;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__service-step__list {
    align-self: flex-start;
  }
}
.p-ai-outbound-package__service-step__item {
  padding: 4px 10px 5px;
  border-radius: 4px;
  background: #ebf5f7;
  color: #12acca;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__service-step__item {
    font-size: var(--fz14);
  }
}
.p-ai-outbound-package__service-step__item--gold {
  background-color: #fbf5ec;
  color: #d39a44;
}
.p-ai-outbound-package__service-step__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__service-step__text-flex-pc {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.p-ai-outbound-package__feature01__icon {
  margin: 40px 0 65px;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__icon {
    margin: 60px 0 88px;
  }
}
.p-ai-outbound-package__feature01__branch-head {
  margin: 0 auto 30px;
  padding: 0 20px;
  max-width: 1440px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__branch-head {
    margin-bottom: 40px;
    padding: 0 80px;
  }
}
.p-ai-outbound-package__feature01__branch-head__inner {
  position: relative;
  border-radius: 8px;
  border: 2px solid #D39A44;
  padding: 40px 20px 20px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__branch-head__inner {
    padding: 45px 20px 30px;
  }
}
.p-ai-outbound-package__feature01__branch-head__top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 200px;
  border-radius: 9999px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz20);
  font-weight: bold;
  line-height: 55px;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__branch-head__top {
    font-size: var(--fz24);
    line-height: 58px;
  }
}
.p-ai-outbound-package__feature01__branch-head__text {
  color: #d39a44;
  font-size: var(--fz20);
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__branch-head__text {
    font-size: var(--fz24);
    line-height: 56px;
  }
}
.p-ai-outbound-package__feature01__branch {
  display: flex;
  flex-direction: column;
  gap: 30px clamp(20px, 2.78vw, 40px);
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__branch {
    flex-direction: row;
    padding: 0 80px;
  }
}
.p-ai-outbound-package__feature01__branch__item {
  padding-left: 40px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__branch__item {
    padding: 0;
    width: 100%;
    padding-top: 65px;
  }
}
.p-ai-outbound-package__feature01__branch__title {
  position: relative;
  margin-bottom: 40px;
  padding: 7px 10px;
  border-radius: 4px;
  background: #00a9ca;
  color: #ffffff;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__branch__title {
    margin-bottom: 105px;
  }
}
.p-ai-outbound-package__feature01__branch__title::before, .p-ai-outbound-package__feature01__branch__title::after {
  position: absolute;
  line-height: 0;
}
.p-ai-outbound-package__feature01__branch__title::before {
  top: 50%;
  left: -20px;
  transform: translate(-100%, -50%);
  content: url("../img/service/ai-outbound-package/feature01_arrow01_sp.svg");
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__branch__title::before {
    top: -40px;
    left: 50%;
    transform: translate(-50%, -100%);
    content: url("../img/service/ai-outbound-package/feature01_arrow01_pc.svg");
  }
}
.p-ai-outbound-package__feature01__branch__title::after {
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 100%);
  content: url("../img/service/ai-outbound-package/feature01_arrow02_sp.svg");
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__branch__title::after {
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, 100%);
    content: url("../img/service/ai-outbound-package/feature01_arrow02_pc.svg");
  }
}
.p-ai-outbound-package__feature01__branch__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__branch__list {
    gap: 10px;
  }
}
.p-ai-outbound-package__feature01__branch__list > li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 5px) / 2);
  padding: 8px 10px 9px;
  border-radius: 9999px;
  background: #ebf5f7;
  color: #00a9ca;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__branch__list > li {
    width: calc((100% - 10px) / 2);
    padding: 12px 10px;
    font-size: clamp(var(--fz12), 1.12vw, var(--fz16));
  }
}
.p-ai-outbound-package__feature01__diagram {
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature01__diagram {
    padding: 0 80px;
  }
}
.p-ai-outbound-package__feature02__container01 {
  padding-top: 300px;
}
.p-ai-outbound-package__feature02__container01 .c-service__section01__number {
  top: 50px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__container01 .c-service__section01__number {
    top: 0;
  }
}
.p-ai-outbound-package__feature02__case {
  margin: 0 auto 60px;
  padding: 50px 20px 0;
  max-width: 650px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case {
    max-width: 100%;
    margin: 0 auto 80px;
    padding: 80px 80px 0;
  }
}
.p-ai-outbound-package__feature02__case__item {
  max-width: 1280px;
  margin: 0 auto;
}
.p-ai-outbound-package__feature02__case__item:has(+ .p-ai-outbound-package__feature02__case__item) {
  margin-bottom: 40px;
  padding-bottom: 43px;
  background: url("../img/service/ai-outbound-package/bg_line_sp.svg") repeat-x;
  background-position: left bottom;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__item:has(+ .p-ai-outbound-package__feature02__case__item) {
    margin-bottom: 60px;
    padding-bottom: 63px;
    background-image: url("../img/service/ai-outbound-package/bg_line_pc.svg");
  }
}
.p-ai-outbound-package__feature02__case__detail {
  display: grid;
  gap: 60px;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature02__case__detail {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-ai-outbound-package__feature02__case__detail__before {
  position: relative;
  padding: 15px;
  border: 1px solid #00a9ca;
  border-radius: 10px;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature02__case__detail__before {
    margin-right: 80px;
    padding: 20px;
  }
}
.p-ai-outbound-package__feature02__case__detail__before::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 100%);
  line-height: 0;
  content: url("../img/service/ai-outbound-package/feature02_case_arrow02.svg");
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature02__case__detail__before::after {
    top: 50%;
    right: -40px;
    bottom: auto;
    transform: translate(100%, -50%);
    content: url("../img/service/ai-outbound-package/feature02_case_arrow04.svg");
  }
}
.p-ai-outbound-package__feature02__case__detail__after {
  padding: 15px;
  border: 1px solid #d39a44;
  border-radius: 10px;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature02__case__detail__after {
    padding: 20px;
  }
}
.p-ai-outbound-package__feature02__case__detail__title01 {
  margin-bottom: 20px;
  padding: 5px 10px;
  border-radius: 4px;
  background: #00a9ca;
  color: #ffffff;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__title01 {
    margin-bottom: 30px;
    padding: 11px 10px;
  }
}
.p-ai-outbound-package__feature02__case__detail__title02 {
  margin-bottom: 20px;
  padding: 11px 10px;
  border-radius: 4px;
  background: #D39A44;
  color: #ffffff;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__title02 {
    margin-bottom: 30px;
  }
}
.p-ai-outbound-package__feature02__case__detail__lead01 {
  margin-bottom: 20px;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__lead01 {
    font-size: var(--fz18);
    margin-bottom: 30px;
  }
}
.p-ai-outbound-package__feature02__case__detail__flow01 {
  display: grid;
  gap: 36px 56px;
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 4px;
  background: #ebf5f7;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__flow01 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-ai-outbound-package__feature02__case__detail__flow01__item {
  position: relative;
  padding: 10px 0;
}
.p-ai-outbound-package__feature02__case__detail__flow01__item:not(:last-child)::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 100%);
  line-height: 0;
  content: url("../img/service/ai-outbound-package/feature02_case_arrow01.svg");
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__flow01__item:not(:last-child)::after {
    top: 50%;
    right: -20px;
    bottom: auto;
    left: auto;
    transform: translate(100%, -50%);
    content: url("../img/service/ai-outbound-package/feature02_case_arrow05.svg");
  }
}
.p-ai-outbound-package__feature02__case__detail__flow01__icon {
  margin-bottom: 15px;
}
.p-ai-outbound-package__feature02__case__detail__flow01__icon-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 106px;
  height: 50px;
  background: #00a9ca;
  color: #ffffff;
  margin: 0 auto 15px;
  border-radius: 9999px;
}
.p-ai-outbound-package__feature02__case__detail__flow01__icon-text span {
  font-weight: 700;
}
.p-ai-outbound-package__feature02__case__detail__flow01__icon-text span:nth-child(1) {
  width: 100%;
  height: 10px;
  margin-bottom: 6px;
  font-size: var(--fz14);
  line-height: 1.5;
  text-align: center;
}
.p-ai-outbound-package__feature02__case__detail__flow01__icon-text span:nth-child(2) {
  font-family: var(--font-en);
  font-size: var(--fz30);
  text-align: center;
}
.p-ai-outbound-package__feature02__case__detail__flow01__icon-text span:nth-child(3) {
  padding-top: 4px;
  font-family: var(--font-en);
  font-size: var(--fz18);
  text-align: center;
}
.p-ai-outbound-package__feature02__case__detail__flow01__text {
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.5;
}
.p-ai-outbound-package__feature02__case__detail__flow02 {
  display: grid;
  gap: 56px 36px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__flow02 {
    grid-template-columns: auto;
    gap: 36px 56px;
    margin-bottom: 30px;
  }
}
.p-ai-outbound-package__feature02__case__detail__flow02__box01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px 15px;
  position: relative;
  padding: 15px 10px 10px;
  border-radius: 4px;
  background: #ebf5f7;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__flow02__box01 {
    flex-direction: row;
    align-items: center;
    grid-area: 1/1/2/2;
    padding: 10px 20px;
  }
}
.p-ai-outbound-package__feature02__case__detail__flow02__box01__icon {
  flex-shrink: 0;
  text-align: center;
}
.p-ai-outbound-package__feature02__case__detail__flow02__box01__text {
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.5;
}
.p-ai-outbound-package__feature02__case__detail__flow02__box01::after {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translate(100%, -50%);
  line-height: 0;
  content: url("../img/service/ai-outbound-package/feature02_case_arrow10.svg");
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__flow02__box01::after {
    top: auto;
    right: auto;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 100%);
    content: url("../img/service/ai-outbound-package/feature02_case_arrow11.svg");
  }
}
.p-ai-outbound-package__feature02__case__detail__flow02__box02 {
  display: flex;
  align-items: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__flow02__box02 {
    grid-area: 2/1/3/2;
  }
}
.p-ai-outbound-package__feature02__case__detail__flow02__list {
  display: grid;
  gap: 10px;
  flex-grow: 1;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__flow02__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-ai-outbound-package__feature02__case__detail__flow02__list > li {
  padding: 6px 10px;
  border-radius: 9999px;
  background: #ebf5f7;
  color: #12acca;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.p-ai-outbound-package__feature02__case__detail__flow02__result {
  grid-area: 2/1/3/3;
  position: relative;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__flow02__result {
    grid-area: 1/2/3/2;
    align-self: center;
  }
}
.p-ai-outbound-package__feature02__case__detail__flow02__result::before {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -100%);
  line-height: 0;
  content: url("../img/service/ai-outbound-package/feature02_case_arrow03.svg");
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__flow02__result::before {
    top: 50%;
    left: -20px;
    transform: translate(-100%, -50%);
    content: url("../img/service/ai-outbound-package/feature02_case_arrow06.svg");
  }
}
.p-ai-outbound-package__feature02__case__detail__flow02__result > div {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 0px 10px;
  grid-template-areas: "span01 span01" "span02 span03";
  width: 145px;
  height: 145px;
  margin: 0 auto;
  border-radius: 50%;
  background: #d39a44;
  color: #ffffff;
  font-weight: 700;
}
.p-ai-outbound-package__feature02__case__detail__flow02__result > div span:nth-child(1) {
  width: 100%;
  font-size: var(--fz18);
  line-height: 1.5;
  grid-area: span01;
  align-self: flex-end;
  text-align: center;
}
.p-ai-outbound-package__feature02__case__detail__flow02__result > div span:nth-child(2) {
  font-family: var(--font-en);
  font-size: var(--fz78);
  grid-area: span02;
  text-align: right;
}
.p-ai-outbound-package__feature02__case__detail__flow02__result > div span:nth-child(3) {
  font-family: var(--font-en);
  font-size: var(--fz34);
  grid-area: span03;
  text-align: left;
  align-self: center;
}
.p-ai-outbound-package__feature02__case__detail__check {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}
.p-ai-outbound-package__feature02__case__detail__check::before {
  flex-shrink: 0;
  display: block;
  width: 64px;
  min-height: 64px;
  background: url("../img/service/ai-outbound-package/feature02_case_check.svg") no-repeat center;
  background-color: #00a9ca;
  content: "";
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__check::before {
    width: 84px;
    min-height: 84px;
  }
}
.p-ai-outbound-package__feature02__case__detail__check__text {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 8px 10px 8px 15px;
  background: #ebf5f7;
  color: #00a9ca;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__check__text {
    padding: 20px;
    font-size: var(--fz18);
  }
}
.p-ai-outbound-package__feature02__case__detail__good {
  display: flex;
  overflow: hidden;
  border-radius: 4px;
}
.p-ai-outbound-package__feature02__case__detail__good::before {
  display: block;
  flex-shrink: 0;
  width: 64px;
  min-height: 64px;
  background: url("../img/service/ai-outbound-package/feature02_case_circle.svg") no-repeat center;
  background-color: #d39a44;
  content: "";
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__good::before {
    width: 84px;
    min-height: 84px;
  }
}
.p-ai-outbound-package__feature02__case__detail__good__text {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 8px 10px 8px 15px;
  background: #f6ebda;
  color: #d39a44;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__good__text {
    padding: 20px;
    font-size: var(--fz18);
  }
}
.p-ai-outbound-package__feature02__case__detail__method01 {
  display: grid;
  gap: 56px;
  margin-bottom: 20px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__method01 {
    display: flex;
    gap: 36px;
    justify-content: center;
    margin-bottom: 30px;
  }
}
.p-ai-outbound-package__feature02__case__detail__method01__icon {
  display: grid;
  gap: 15px;
  position: relative;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__method01__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.p-ai-outbound-package__feature02__case__detail__method01__icon::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 100%);
  line-height: 0;
  content: url("../img/service/ai-outbound-package/feature02_case_arrow03.svg");
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__method01__icon::after {
    top: 50%;
    right: -10px;
    bottom: auto;
    left: auto;
    transform: translate(100%, -50%);
    content: url("../img/service/ai-outbound-package/feature02_case_arrow06.svg");
  }
}
.p-ai-outbound-package__feature02__case__detail__method01__result {
  text-align: center;
}
.p-ai-outbound-package__feature02__case__detail__method02 {
  display: grid;
  gap: 27px;
  margin-bottom: 20px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__method02 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
}
.p-ai-outbound-package__feature02__case__detail__method02__icon {
  display: grid;
  gap: 15px;
  position: relative;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__method02__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__method02__icon span:nth-child(2) {
    display: none;
  }
}
.p-ai-outbound-package__feature02__case__detail__method02__balloon {
  position: relative;
  padding: 9px 10px;
  border-radius: 5px;
  background: #00a9ca;
  color: #ffffff;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__method02__balloon {
    padding: 10px 20px;
    font-size: var(--fz16);
  }
}
.p-ai-outbound-package__feature02__case__detail__method02__balloon::after {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -100%);
  line-height: 0;
  content: url("../img/service/ai-outbound-package/feature02_case_arrow07.svg");
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__method02__balloon::after {
    left: 10px;
    top: 50%;
    transform: translate(-100%, -50%);
    content: url("../img/service/ai-outbound-package/feature02_case_arrow09.svg");
  }
}
.p-ai-outbound-package__feature02__case__detail__graph01 {
  display: grid;
  gap: 10px;
}
.p-ai-outbound-package__feature02__case__detail__graph01__item {
  position: relative;
  padding: 10px;
  background: #ebf5f7;
}
.p-ai-outbound-package__feature02__case__detail__graph01__item.is-gold {
  background: #f6ebda;
}
.p-ai-outbound-package__feature02__case__detail__graph01__content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.p-ai-outbound-package__feature02__case__detail__graph01__head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  margin-bottom: 10px;
  border-radius: 9999px;
  background: #d39a44;
  color: #ffffff;
  font-weight: 700;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__graph01__head {
    position: absolute;
    margin: 0;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    flex-wrap: wrap;
    width: 106px;
    height: 50px;
    text-align: center;
    z-index: 2;
  }
}
.p-ai-outbound-package__feature02__case__detail__graph01__head span:nth-child(1) {
  margin-right: 6px;
  font-size: var(--fz14);
  line-height: 1.5;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__graph01__head span:nth-child(1) {
    width: 100%;
    line-height: 10px;
  }
}
.p-ai-outbound-package__feature02__case__detail__graph01__head span:nth-child(2) {
  font-family: var(--font-en);
  font-size: var(--fz30);
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__graph01__head span:nth-child(2) {
    line-height: 18px;
  }
}
.p-ai-outbound-package__feature02__case__detail__graph01__head span:nth-child(3) {
  font-family: var(--font-en);
  font-size: var(--fz18);
  padding-top: 5px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__graph01__head span:nth-child(3) {
    line-height: 18px;
    padding-top: 3px;
  }
}
.p-ai-outbound-package__feature02__case__detail__graph01__icon {
  flex-shrink: 0;
}
.p-ai-outbound-package__feature02__case__detail__graph01__bar {
  flex-grow: 1;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__graph01__bar {
    max-width: calc(100% - 284px);
  }
}
.p-ai-outbound-package__feature02__case__detail__graph01__bar::before {
  display: block;
  width: 100%;
  height: 20px;
  border-radius: 0 2px 2px 0;
  background: #00a9ca;
  content: "";
}
.p-ai-outbound-package__feature02__case__detail__graph01__bar.is-gold::before {
  background: #d39a44;
}
.p-ai-outbound-package__feature02__case__detail__graph01__bar.is-no2::before {
  width: 62%;
}
.p-ai-outbound-package__feature02__case__detail__graph01__bar.is-no3::before {
  width: 50%;
}
.p-ai-outbound-package__feature02__case__detail__balloon01 {
  position: relative;
  margin-top: 22px;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 5px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__case__detail__balloon01 {
    margin-bottom: 30px;
  }
}
.p-ai-outbound-package__feature02__case__detail__balloon01::after {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -100%);
  line-height: 0;
  content: url("../img/service/ai-outbound-package/feature02_case_arrow08.svg");
}
.p-ai-outbound-package__feature02__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 80px;
  margin: 50px auto;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__logo {
    flex-direction: row;
    justify-content: center;
    margin: 100px auto;
  }
}
.p-ai-outbound-package__feature02__diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__diagram {
    flex-direction: row;
    justify-content: center;
    padding: 0 80px;
  }
}
.p-ai-outbound-package__feature02__diagram02 {
  text-align: center;
}
.p-ai-outbound-package__feature02__strong {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__strong {
    padding: 0 80px;
  }
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature02__strong {
    flex-direction: row;
  }
}
.p-ai-outbound-package__feature02__strong__item {
  width: 100%;
}
.p-ai-outbound-package__feature02__strong__title {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
  color: #00a9ca;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 19.98px;
  letter-spacing: 0.06em;
  text-align: right;
}
.p-ai-outbound-package__feature02__strong__title::after {
  color: #d39a44;
  font-size: var(--fz68);
  line-height: 50px;
  letter-spacing: 0;
  content: attr(data-no);
}
.p-ai-outbound-package__feature02__strong__box {
  padding: 20px;
  border: 2px solid #12acca;
  border-radius: 10px;
}
.p-ai-outbound-package__feature02__strong__box__title01 {
  margin-bottom: 20px;
  color: #00a9ca;
  font-size: var(--fz20);
  font-weight: 700;
  line-height: 29.6px;
  text-align: center;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature02__strong__box__title01 {
    font-size: var(--fz24);
    line-height: 35.52px;
  }
}
.p-ai-outbound-package__feature02__strong__box__title02 {
  margin-bottom: 15px;
  color: #00a9ca;
  font-size: var(--fz20);
  font-weight: 700;
  line-height: 29.6px;
  text-align: center;
}
.p-ai-outbound-package__feature02__strong__box__catch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 4px;
  background: #f6ebda;
  color: #d39a44;
  font-size: 20px;
  font-size: var(--fz20);
  font-weight: 700;
  line-height: 29.6px;
}
.p-ai-outbound-package__feature02__strong__box__catch::before {
  display: block;
  width: 58px;
  height: 60px;
  line-height: 0;
  background: url("../img/service/ai-outbound-package/feature02_strong_icon01.svg") no-repeat;
  background-size: contain;
  background-position: center;
  content: "";
}
.p-ai-outbound-package__feature02__strong__box__catch02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px 17px;
  border-radius: 4px;
  background: #EBF5F7;
  color: #00A9CA;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 23.68px;
}
.p-ai-outbound-package__feature02__strong__box__catch02::before {
  order: 1;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 0;
  background: url("../img/service/ai-outbound-package/feature02_strong_icon02.svg") no-repeat;
  background-size: contain;
  background-position: center;
  content: "";
}
.p-ai-outbound-package__feature02__strong__box__catch02::after {
  width: 40px;
  height: 40px;
  order: 2;
  display: block;
  line-height: 0;
  background: url("../img/service/ai-outbound-package/feature02_strong_icon03.svg") no-repeat;
  background-size: contain;
  background-position: center;
  content: "";
}
.p-ai-outbound-package__feature02__strong__box__catch02 span {
  order: 3;
}
.p-ai-outbound-package__feature02__strong__box__catch03 {
  margin-bottom: 20px;
}
.p-ai-outbound-package__feature02__strong__box__catch03__deco {
  position: relative;
  top: 1px;
  line-height: 0;
  text-align: center;
}
.p-ai-outbound-package__feature02__strong__box__catch03__in {
  position: relative;
  padding: 20px 20px 20px 74px;
  border-radius: 4px;
  background: #d39a44;
}
.p-ai-outbound-package__feature02__strong__box__catch03__in::before {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  content: url("../img/service/ai-outbound-package/feature02_strong_icon05.svg");
}
.p-ai-outbound-package__feature02__strong__box__catch03__text {
  padding: 6px 10px;
  border-radius: 4px;
  background: #ffffff;
  color: #d39a44;
  font-weight: bold;
  line-height: 23.68px;
  text-align: center;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature02__strong__box__catch03__text {
    font-size: var(--fz16);
  }
}
.p-ai-outbound-package__feature02__strong__box__catch03__plus {
  margin: 6px 0;
  line-height: 0;
  text-align: center;
}
.p-ai-outbound-package__feature02__strong__box__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.p-ai-outbound-package__feature02__strong__box__list > li {
  padding: 6px 10px;
  border-radius: 9999px;
  background: #ebf5f7;
  color: #12acca;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.p-ai-outbound-package__feature02__strong__box__lead {
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature02__strong__box__lead {
    font-size: var(--fz16);
  }
}
.p-ai-outbound-package__feature02__strong__box__graph-head {
  margin-bottom: 15px;
  color: #999999;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 20.72px;
}
.p-ai-outbound-package__feature02__strong__box__graph {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.p-ai-outbound-package__feature02__strong__box__graph > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border-radius: 2px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz14);
  font-weight: bold;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature02__strong__box__graph > div {
    font-size: clamp(var(--fz12), 0.98vw, var(--fz14));
  }
}
.p-ai-outbound-package__feature02__strong__box__graph > div:nth-child(2) {
  width: 80.7%;
  background: #00a9ca;
}
.p-ai-outbound-package__feature02__strong__box__graph > div:nth-child(3) {
  width: 75.6%;
  background: #00a9ca;
}
.p-ai-outbound-package__feature02__strong__box__graph > div:nth-child(4) {
  width: 68.1%;
  color: #00A9CA;
  background: #ebf5f7;
}
.p-ai-outbound-package__feature02__strong__box__graph > div:nth-child(5) {
  width: 62.1%;
  color: #00A9CA;
  background: #ebf5f7;
}
.p-ai-outbound-package__feature02__strong__box__graph > div:nth-child(6) {
  width: 60.6%;
  color: #00A9CA;
  background: #ebf5f7;
}
.p-ai-outbound-package__feature02__title01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__title01 {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
  }
}
.p-ai-outbound-package__feature02__title01__no {
  width: 100%;
  padding: 0 20px;
  border-radius: 4px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz18);
  line-height: 37px;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__title01__no {
    width: auto;
    font-size: var(--fz20);
    line-height: 43px;
  }
}
.p-ai-outbound-package__feature02__title01__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 10px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__title01__body {
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 7px;
  }
}
.p-ai-outbound-package__feature02__title01__text {
  font-size: var(--fz20);
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__title01__text {
    font-size: var(--fz24);
    line-height: 1;
  }
}
.p-ai-outbound-package__feature02__title01__strong {
  color: #d39a44;
  font-size: var(--fz28);
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__title01__strong {
    font-size: var(--fz32);
  }
}
.p-ai-outbound-package__feature02__laed {
  margin-bottom: 20px;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature02__laed {
    margin-bottom: 40px;
  }
}
.p-ai-outbound-package__feature03.is-background::before {
  height: calc(100% - 200px);
}
.p-ai-outbound-package__feature03__container {
  padding-top: 280px;
}
.p-ai-outbound-package__feature03__content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature03__content {
    padding: 0 80px;
    padding-top: 280px;
  }
}
@media (min-width: 1300px) {
  .p-ai-outbound-package__feature03__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
  }
}
.p-ai-outbound-package__feature03__content__image {
  text-align: center;
}
.p-ai-outbound-package__feature03__content__image--pc {
  display: none;
}
@media (min-width: 1300px) {
  .p-ai-outbound-package__feature03__content__image--sp {
    display: none;
  }
  .p-ai-outbound-package__feature03__content__image--pc {
    display: block;
    margin-top: 80px;
  }
}
.p-ai-outbound-package__feature03__lists {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature03__lists {
    padding-top: 330px;
  }
}
@media (min-width: 1300px) {
  .p-ai-outbound-package__feature03__lists {
    width: 650px;
    max-width: calc((100% - 60px) / 2);
    padding-top: 80px;
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .p-ai-outbound-package__feature03__lists {
    max-width: calc(50% + 10px);
  }
}
.p-ai-outbound-package__feature03__lists__title {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--font-en);
}
.p-ai-outbound-package__feature03__lists__title span:nth-child(1) {
  color: #d39a44;
  font-size: 68px;
  font-weight: 700;
  line-height: 51px;
}
.p-ai-outbound-package__feature03__lists__title span:nth-child(2) {
  color: #00a9ca;
  font-size: 18px;
  font-weight: 700;
  line-height: 19.98px;
  letter-spacing: 0.06em;
}
.p-ai-outbound-package__feature03__lists__content {
  padding: 15px;
  background: #fff;
  border: 2px solid rgba(0, 169, 202, 0.2509803922);
  border-radius: 10px;
}
.p-ai-outbound-package__feature03__lists__title02 {
  margin-bottom: 10px;
  padding: 2px 10px 3px;
  border-radius: 4px;
  background: #00a9ca;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.p-ai-outbound-package__feature03__lists__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-ai-outbound-package__feature03__lists__list > li {
  padding: 6px 16px 7px;
  border-radius: 4px;
  color: #12ACCA;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  background: #EBF5F7;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature03__lists__list > li {
    font-size: 16px;
    padding: 6px 20px;
  }
}
.p-ai-outbound-package__feature03__lists__list > li:last-child {
  padding-left: 10px;
  padding-right: 10px;
  background: none;
}
.p-ai-outbound-package__feature03__diagram {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature03__diagram {
    flex-direction: column;
    align-items: center;
    padding: 510px 80px 0;
  }
}
@media (min-width: 1360px) {
  .p-ai-outbound-package__feature03__diagram {
    flex-direction: row;
    align-items: flex-end;
    padding: 280px 80px 0;
  }
}
.p-ai-outbound-package__feature03__marquee {
  padding: 60px 0;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature03__marquee {
    padding: 100px 0 80px;
  }
}
.p-ai-outbound-package__feature04__container {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature04__container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.p-ai-outbound-package__feature04__title01 {
  margin: 50px auto 40px;
  color: #12acca;
  font-size: var(--fz20);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  max-width: 1280px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature04__title01 {
    margin: 100px auto 50px;
    font-size: var(--fz24);
    text-align: left;
  }
}
.p-ai-outbound-package__feature04__comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 10px;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison {
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 1280px;
    margin: 0 auto;
    gap: 40px;
  }
}
.p-ai-outbound-package__feature04__comparison__item {
  width: calc((100% - 10px) / 2);
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__item {
    position: relative;
  }
  .p-ai-outbound-package__feature04__comparison__item::after {
    display: block;
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background: url("../img/service/ai-outbound-package/feature04_line.svg");
    content: "";
  }
}
.p-ai-outbound-package__feature04__comparison__title01 {
  margin-bottom: 15px;
  color: #12ACCA;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  line-height: 26.64px;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature04__comparison__title01 {
    margin-bottom: 25px;
    font-size: var(--fz48);
    text-align: left;
  }
}
.p-ai-outbound-package__feature04__comparison__title02 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 68px;
  margin-bottom: 15px;
  border-radius: 4px;
  background: #00a9ca;
  color: #ffffff;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature04__comparison__title02 {
    margin-bottom: 20px;
    font-size: var(--fz20);
    min-height: auto;
    padding: 6px 10px 7px;
  }
}
.p-ai-outbound-package__feature04__comparison__title03 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 68px;
  margin-bottom: 15px;
  border-radius: 4px;
  background: #D39A44;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
}
.p-ai-outbound-package__feature04__comparison__content {
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #12ACCA;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature04__comparison__content {
    padding: 20px;
  }
}
.p-ai-outbound-package__feature04__comparison__sample {
  margin-bottom: 15px;
  padding: 6px 10px;
  background: #eeeeee;
  color: #999999;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature04__comparison__sample {
    width: 76px;
    margin: 0 auto 20px;
    font-size: var(--fz16);
  }
}
.p-ai-outbound-package__feature04__comparison__sample02 {
  width: 74px;
  margin: 0 auto 20px;
  padding: 6px 10px;
  background: #eeeeee;
  color: #999999;
  font-size: 14px;
  font-weight: 700;
  line-height: 20.72px;
  text-align: center;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__sample02 {
    width: 76px;
    margin: 0;
    padding: 0;
    font-size: var(16px);
    line-height: 35px;
  }
}
.p-ai-outbound-package__feature04__comparison__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}
.p-ai-outbound-package__feature04__comparison__list > p {
  padding: 6px;
  background: #ebf5f7;
  color: #00a9ca;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature04__comparison__list > p {
    font-size: var(--fz16);
  }
}
.p-ai-outbound-package__feature04__comparison__icon01 {
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature04__comparison__icon01 {
    margin: 20px 0;
  }
}
.p-ai-outbound-package__feature04__comparison__result {
  padding: 10px;
  border: 2px solid #d39a44;
  border-radius: 10px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature04__comparison__result {
    padding: 20px;
  }
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__result__in {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 30px;
  }
}
.p-ai-outbound-package__feature04__comparison__result__detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  color: #d39a44;
  font-weight: 700;
}
.p-ai-outbound-package__feature04__comparison__result__detail span:nth-child(1) {
  width: 100%;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__result__detail span:nth-child(1) {
    width: auto;
    margin: 0;
  }
}
.p-ai-outbound-package__feature04__comparison__result__detail span:nth-child(2) {
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__result__detail span:nth-child(2) {
    font-size: 88px;
    margin: 0 10px;
    line-height: 78px;
  }
}
.p-ai-outbound-package__feature04__comparison__result__detail span:nth-child(3) {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__result__detail span:nth-child(3) {
    font-size: 20px;
    line-height: 1;
  }
}
.p-ai-outbound-package__feature04__comparison__result__detail02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 6px;
  align-items: flex-end;
  text-align: center;
  color: #d39a44;
  font-weight: 700;
}
.p-ai-outbound-package__feature04__comparison__result__detail02 span:nth-child(1) {
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__result__detail02 span:nth-child(1) {
    font-size: 88px;
  }
}
.p-ai-outbound-package__feature04__comparison__result__detail02 span:nth-child(2) {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  font-size: 20px;
}
.p-ai-outbound-package__feature04__comparison__result__detail02 span:nth-child(4) {
  width: 57px;
  background: #f6ebda;
  font-size: 14px;
  font-weight: 700;
  line-height: 32px;
}
.p-ai-outbound-package__feature04__comparison__result__note {
  margin-top: 20px;
  font-size: var(--fz12);
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__result__note {
    text-align: center;
    font-size: var(--fz14);
  }
}
.p-ai-outbound-package__feature04__comparison__roi {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__roi {
    max-width: 230px;
    padding-top: 50px;
  }
}
.p-ai-outbound-package__feature04__comparison__roi__before {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 111px;
  border-radius: 10px;
  background: #12acca;
  color: #ffffff;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__roi__before {
    display: grid;
    flex-wrap: wrap;
    flex-grow: 1;
  }
}
.p-ai-outbound-package__feature04__comparison__roi__before span:nth-child(1) {
  margin-right: 20px;
  font-size: 28px;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__roi__before span:nth-child(1) {
    grid-area: 1/1/2/3;
    align-self: flex-end;
  }
}
.p-ai-outbound-package__feature04__comparison__roi__before span:nth-child(2) {
  font-family: var(--font-en);
  font-size: 68px;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__roi__before span:nth-child(2) {
    grid-area: 2/1/3/2;
    align-self: flex-start;
  }
}
.p-ai-outbound-package__feature04__comparison__roi__before span:nth-child(3) {
  margin-left: 5px;
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__roi__before span:nth-child(3) {
    grid-area: 2/2/3/3;
    padding-top: 14px;
    align-self: flex-start;
  }
}
.p-ai-outbound-package__feature04__comparison__roi__after {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 111px;
  border-radius: 10px;
  background: #D39A44;
  color: #ffffff;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__roi__after {
    display: grid;
    flex-grow: 1;
    max-height: 208px;
  }
}
.p-ai-outbound-package__feature04__comparison__roi__after span:nth-child(1) {
  margin-right: 20px;
  font-size: 28px;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__roi__after span:nth-child(1) {
    grid-area: 1/1/2/3;
    align-self: flex-end;
  }
}
.p-ai-outbound-package__feature04__comparison__roi__after span:nth-child(2) {
  font-family: var(--font-en);
  font-size: 68px;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__roi__after span:nth-child(2) {
    grid-area: 2/1/3/2;
    align-self: flex-start;
  }
}
.p-ai-outbound-package__feature04__comparison__roi__after span:nth-child(3) {
  margin-left: 5px;
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature04__comparison__roi__after span:nth-child(3) {
    grid-area: 2/2/3/3;
    padding-top: 14px;
    align-self: flex-start;
  }
}
.p-ai-outbound-package__feature04__comparison__roi__icon {
  text-align: center;
}
.p-ai-outbound-package__feature04__diagram {
  text-align: center;
}
.p-ai-outbound-package__feature04__image {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature04__image {
    position: absolute;
    top: 80px;
    right: 80px;
    z-index: -1;
    max-width: 45%;
    margin-top: 0;
  }
}
@media (min-width: 1300px) {
  .p-ai-outbound-package__feature04__image {
    max-width: 50%;
  }
}
.p-ai-outbound-package__feature05__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 0;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature05__container {
    justify-content: center;
    gap: 60px;
    padding-right: 80px;
    padding-bottom: 140px;
    padding-left: 80px;
  }
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature05__container {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 60px;
    padding-right: 80px;
    padding-bottom: 140px;
    padding-left: 80px;
  }
}
.p-ai-outbound-package__feature05__score-list {
  padding: 15px;
  border: 2px solid rgba(0, 169, 202, 0.2509803922);
  border-radius: 10px;
  background: #ffffff;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature05__score-list {
    width: 100%;
  }
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature05__score-list {
    max-width: 642px;
    margin-left: auto;
  }
}
.p-ai-outbound-package__feature05__score-list__title {
  margin-bottom: 20px;
  padding: 14px 20px;
  border-radius: 4px;
  background: #00a9ca;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
}
.p-ai-outbound-package__feature05__score-list__lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 28.8px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature05__score-list__lead {
    text-align: center;
  }
}
.p-ai-outbound-package__feature05__score-list__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-ai-outbound-package__feature05__score-list__list > li {
  width: calc((100% - 10px) / 2);
  padding: 4px 10px 5px;
  border-radius: 3px;
  background: #ebf5f7;
  color: #12acca;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature05__score-list__list > li {
    width: calc((100% - 30px) / 4);
  }
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature05__title {
    margin-left: auto;
  }
}
.p-ai-outbound-package__feature05__image {
  text-align: center;
}
@media (min-width: 1100px) {
  .p-ai-outbound-package__feature05__image {
    margin-left: auto;
  }
}
.p-ai-outbound-package__feature05__triangle {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.p-ai-outbound-package__feature05__score {
  position: relative;
  padding-top: 80px;
  background: url("../img/service/ai-outbound-package/feature05_bg.svg");
  background-position: bottom 65% right 76%;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature05__score {
    padding-top: 100px;
    background-position: center;
    background-size: cover;
  }
}
.p-ai-outbound-package__feature05__score__title01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: #ffffff;
  font-size: var(--fz28);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature05__score__title01 {
    margin-bottom: -50px;
    font-size: var(--fz34);
  }
}
.p-ai-outbound-package__feature05__score__title01::after {
  font-family: var(--font-en);
  font-size: var(--fz24);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.06em;
  content: attr(data-en);
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature05__score__title01::after {
    font-size: var(--fz28);
  }
}
.p-ai-outbound-package__feature05__score__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: -20px;
  padding: 0 20px 18px;
}
.p-ai-outbound-package__feature05__score__text__top {
  border-radius: 2px;
  background: #ebf5f7;
  color: #00a9ca;
  font-size: 14px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}
.p-ai-outbound-package__feature05__score__text__bottom {
  position: relative;
  padding: 13px 10px;
  border-radius: 5px;
  background: #d39a44;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
.p-ai-outbound-package__feature05__score__text__bottom::after {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translate(-50%, 100%);
  line-height: 0;
  content: url("../img/service/ai-outbound-package/feature05_icon01.svg");
}
.p-ai-outbound-package__feature05__score__device {
  position: relative;
  top: 40px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature05__score__device {
    top: 110px;
  }
}
.p-ai-outbound-package__feature05__marquee {
  margin-top: 80px;
}
@media (min-width: 811px) {
  .p-ai-outbound-package__feature05__marquee {
    margin-top: 190px;
  }
}

.c-service-navi01 {
  display: grid;
  gap: 50px clamp(20px, 2.78vw, 40px);
}
@media (min-width: 811px) {
  .c-service-navi01 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-service-navi01--five {
    grid-template-columns: repeat(5, 1fr);
  }
}
.c-service-navi01__link {
  display: grid;
  align-items: center;
  gap: 0 20px;
  grid-template-columns: max-content 1fr;
  position: relative;
  padding: 0 40px 0 20px;
}
@media (min-width: 811px) {
  .c-service-navi01__link {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: subgrid;
    padding: 10px 0 35px;
    text-align: center;
    transition: var(--hover-transition);
    grid-row: span 3;
  }
  .c-service-navi01__link:hover {
    opacity: var(--hover-opacity);
  }
}
.c-service-navi01__link::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  line-height: 0;
  content: url("../img/service/common/navi_arrow01_sp.svg");
}
@media (min-width: 811px) {
  .c-service-navi01__link::after {
    top: auto;
    right: auto;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.c-service-navi01__link:not(:last-child)::before {
  display: block;
  position: absolute;
  bottom: -25px;
  width: 100%;
  height: 1px;
  background: #eeeeee;
  content: "";
}
@media (min-width: 811px) {
  .c-service-navi01__link:not(:last-child)::before {
    right: calc(clamp(5px, 1.38vw, 20px) * -1);
    bottom: 0;
    width: 1px;
    height: 100%;
  }
}
.c-service-navi01__icon-container {
  grid-area: 1/1/3/2;
}
@media (min-width: 811px) {
  .c-service-navi01__icon-container {
    grid-area: auto;
    margin-bottom: 15px;
  }
}
.c-service-navi01__icon {
  width: 50px;
}
.c-service-navi01__number {
  grid-area: 1/2/2/3;
  color: #00a9ca;
  font-family: var(--font-en);
  font-size: var(--fz24);
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: 0.06em;
}
.c-service-navi01__number--letter-s2 {
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (min-width: 811px) {
  .c-service-navi01__number {
    grid-area: auto;
    font-size: clamp(var(--fz20), 2.47vw, var(--fz24));
  }
}
.c-service-navi01__description {
  grid-area: 2/2/3/3;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 811px) {
  .c-service-navi01__description {
    grid-area: auto;
  }
}

.p-first-party-data__section02.is-background::before {
  z-index: -1;
  height: calc(100% - 200px);
}
@media (min-width: 811px) {
  .p-first-party-data__section02 .c-service__section01__container01.is-right .c-service__section01__number {
    right: -46px;
    line-height: 1.03;
  }
}
@media (min-width: 1300px) {
  .p-first-party-data__section02 .is-problem02 {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding-top: 280px;
  }
}
.p-first-party-data__title01 {
  font-size: 25px;
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 811px) {
  .p-first-party-data__title01 {
    font-size: 58px;
    width: 1280px;
    max-width: calc(100% - 160px);
  }
}
.p-first-party-data__title01__in {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1px 0 0;
  text-align: left;
}
@media (min-width: 811px) {
  .p-first-party-data__title01__in {
    padding: 0;
    text-align: center;
  }
  .p-first-party-data__title01__in > span {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.p-first-party-data__lead01 {
  font-weight: 700;
  text-align: left;
}
@media (min-width: 811px) {
  .p-first-party-data__lead01 {
    font-size: var(--fz18);
    text-align: center;
  }
}
.p-first-party-data__lead01 span {
  color: #d39a44;
  font-size: var(--fz20);
}
@media (min-width: 811px) {
  .p-first-party-data__lead01 span {
    font-size: var(--fz24);
  }
}
.p-first-party-data__service-features {
  position: relative;
  margin-top: 50px;
  padding: 40px 20px 20px;
  border: 2px solid #00a9ca;
  border-radius: 8px;
}
@media (min-width: 811px) {
  .p-first-party-data__service-features {
    margin-top: 120px;
    padding: 60px;
  }
}
.p-first-party-data__service-features__logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 265px;
}
@media (min-width: 811px) {
  .p-first-party-data__service-features__logo {
    width: auto;
    height: 88px;
  }
}
.p-first-party-data__service-features__categories {
  display: grid;
  gap: 57px 97px;
}
@media (min-width: 1100px) {
  .p-first-party-data__service-features__categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-first-party-data__service-features__category {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
  min-height: 129px;
  padding: 20px;
  border-radius: 4px;
  background: #ebf5f7;
}
@media (min-width: 1100px) {
  .p-first-party-data__service-features__category {
    display: grid;
    grid-template-rows: auto min-content;
    min-height: 159px;
  }
}
.p-first-party-data__service-features__category:not(:last-child)::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  line-height: 0;
  content: url("../img/service/1st-party-data/concept_icon01.svg");
}
@media (min-width: 1100px) {
  .p-first-party-data__service-features__category:not(:last-child)::after {
    top: 50%;
    right: -20px;
    bottom: auto;
    left: auto;
    transform: translate(100%, -50%);
  }
}
.p-first-party-data__service-features__category-title {
  color: #00a9ca;
  font-size: var(--fz20);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.p-first-party-data__service-features__category-description {
  color: #d39a44;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: 0.06em;
  text-align: center;
}
.p-first-party-data__orders {
  margin-bottom: 80px;
}
@media (min-width: 811px) {
  .p-first-party-data__orders {
    margin-bottom: 180px;
  }
}
.p-first-party-data__orders__title01 {
  margin: 50px 0 25px;
  padding: 6px 20px 7px;
  border-radius: 2px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz20);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__orders__title01 {
    margin: 60px 0 40px;
    padding: 8px 20px 9px;
  }
}
.p-first-party-data__problem01-content01 {
  max-width: 650px;
  margin: 40px auto 0;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01 {
    max-width: 1440px;
    margin-top: 100px;
    padding: 0 80px;
  }
}
.p-first-party-data__problem01-content01__container {
  display: grid;
  gap: 60px 62px;
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__container {
    display: flex;
  }
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__block {
    display: grid;
    flex-grow: 1;
    grid-template-rows: auto 1fr;
    max-width: 15.625%;
  }
}
.p-first-party-data__problem01-content01__block.is-data {
  position: relative;
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__block.is-data {
    max-width: 100%;
  }
}
.p-first-party-data__problem01-content01__block.is-data::before, .p-first-party-data__problem01-content01__block.is-data::after {
  position: absolute;
  left: 50%;
  line-height: 0;
}
.p-first-party-data__problem01-content01__block.is-data::before {
  top: -20px;
  transform: translate(-50%, -100%);
  content: url("../img/service/1st-party-data/problem01_icon02.svg");
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__block.is-data::before {
    top: 50%;
    left: -20px;
    transform: translate(-100%, -50%);
    content: url("../img/service/1st-party-data/problem01_icon03.svg");
  }
}
.p-first-party-data__problem01-content01__block.is-data::after {
  bottom: -20px;
  transform: translate(-50%, 100%);
  content: url("../img/service/1st-party-data/problem01_icon02.svg");
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__block.is-data::after {
    top: 50%;
    right: -20px;
    bottom: auto;
    left: auto;
    transform: translate(100%, -50%);
    content: url("../img/service/1st-party-data/problem01_icon04.svg");
  }
}
.p-first-party-data__problem01-content01__heading {
  margin-bottom: 15px;
  color: #00a9ca;
  font-family: var(--font-en);
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: 0.06em;
  text-align: center;
}
.p-first-party-data__problem01-content01__heading.is-gold {
  color: #d39a44;
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__heading {
    margin-bottom: 20px;
  }
}
.p-first-party-data__problem01-content01__heading02 {
  margin-bottom: 10px;
  padding: 4px 0;
  border-radius: 4px;
  background: #ffffff;
  color: #00a9ca;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__heading02 {
    margin-bottom: 20px;
    font-size: var(--fz20);
  }
}
.p-first-party-data__problem01-content01__description {
  padding: 20px 60px;
  border-radius: 4px;
  background: #ebf5f7;
  color: #00a9ca;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__description {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: var(--fz20);
  }
}
.p-first-party-data__problem01-content01__description02 {
  color: #ffffff;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.48;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__description02 {
    font-size: clamp(var(--fz22), 1.94vw, var(--fz28));
  }
  .p-first-party-data__problem01-content01__description02 .is-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.p-first-party-data__problem01-content01__data-container {
  padding: 20px;
  border-radius: 4px;
  background: #00a9ca;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__data-container {
    display: grid;
    justify-content: center;
    padding: 40px 20px;
  }
}
.p-first-party-data__problem01-content01__icon {
  width: 80px;
  margin: 0 auto 20px;
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__icon {
    width: auto;
    margin-bottom: 40px;
  }
}
.p-first-party-data__problem01-content01__summary {
  position: relative;
  margin-top: 56px;
  padding: 9px 20px;
  border-radius: 5px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 68px;
    padding: 27px 20px;
    font-size: var(--fz24);
  }
}
.p-first-party-data__problem01-content01__summary::before {
  display: block;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 22px;
  height: 20px;
  background: url("../img/service/common/arrow_gold_top.svg") no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 0;
  content: "";
}
@media (min-width: 811px) {
  .p-first-party-data__problem01-content01__summary::before {
    top: -28px;
    width: 40px;
    height: 36px;
  }
}
.p-first-party-data__problem02-content01 {
  display: grid;
  gap: 40px;
  position: relative;
  max-width: 650px;
  margin: 50px auto 370px;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .p-first-party-data__problem02-content01 {
    max-width: 1440px;
    padding: 0 80px;
  }
}
@media (min-width: 1300px) {
  .p-first-party-data__problem02-content01 {
    margin-bottom: 0;
    padding-top: 360px;
  }
}
.p-first-party-data__problem02-content01::after {
  display: block;
  position: absolute;
  bottom: -370px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  height: 385px;
  background-image: url("../img/service/1st-party-data/problem02_bg_sp.svg");
  background-position: right center;
  background-repeat: no-repeat;
  content: "";
}
@media (min-width: 1300px) {
  .p-first-party-data__problem02-content01::after {
    bottom: -312px;
    height: 596px;
    background-image: url("../img/service/1st-party-data/problem02_bg_pc.svg");
  }
}
@media (min-width: 1300px) {
  .p-first-party-data__problem02-content01__item {
    max-width: calc(100% - 745px);
  }
}
.p-first-party-data__problem02-content01__header {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 15px;
  font-family: var(--font-en);
  font-weight: 700;
}
.p-first-party-data__problem02-content01__number {
  color: #d39a44;
  font-size: var(--fz68);
  line-height: 46px;
}
.p-first-party-data__problem02-content01__status {
  color: #00a9ca;
  font-size: var(--fz18);
  line-height: 1.11;
  letter-spacing: 0.06em;
}
.p-first-party-data__problem02-content01__content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 2px solid rgba(0, 169, 202, 0.2509803922);
  border-radius: 8px;
  background: #ffffff;
}
@media (min-width: 811px) {
  .p-first-party-data__problem02-content01__content {
    padding: 30px 40px;
  }
}
.p-first-party-data__problem02-content01__icon {
  flex-shrink: 0;
  width: 60px;
}
@media (min-width: 811px) {
  .p-first-party-data__problem02-content01__icon {
    width: 80px;
  }
}
.p-first-party-data__problem02-content01__info {
  font-weight: 700;
}
.p-first-party-data__problem02-content01__label {
  margin-bottom: 8px;
  font-size: var(--fz20);
  line-height: 1.5;
}
@media (min-width: 811px) {
  .p-first-party-data__problem02-content01__label {
    font-size: var(--fz24);
  }
}
.p-first-party-data__problem02-content01__label-eng {
  color: #d39a44;
  font-family: var(--font-en);
  font-size: var(--fz18);
  line-height: 1.11;
  letter-spacing: 0.06em;
}
.p-first-party-data__problem02-content01__result {
  position: relative;
  padding-top: 60px;
}
.p-first-party-data__problem02-content01__result::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 22px;
  height: 20px;
  background: url("../img/service/common/arrow_gold_bottom.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.p-first-party-data__problem02-content01__result-text {
  padding: 16px 20px 16px 20px;
  border-radius: 5px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__problem02-content01__result-text {
    padding: 30px;
    font-size: var(--fz24);
  }
}
.p-first-party-data__problem02-marquee {
  padding: 60px 0;
}
@media (min-width: 811px) {
  .p-first-party-data__problem02-marquee {
    padding: 100px 0 80px;
  }
}
@media (min-width: 1300px) {
  .p-first-party-data__problem02-marquee {
    width: calc(100% - 600px);
  }
}
.p-first-party-data__proposal01-content01 {
  display: grid;
  gap: 60px;
  max-width: 650px;
  margin: 50px auto 0;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal01-content01 {
    display: flex;
    gap: clamp(60px, 13.61vw, 196px);
    max-width: 1440px;
    margin-top: 100px;
    padding: 0 80px;
  }
}
.p-first-party-data__proposal01-content01__before {
  position: relative;
}
.p-first-party-data__proposal01-content01__before::after {
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 22px;
  height: 20px;
  background: url("../img/service/common/arrow_gold_bottom.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media (min-width: 811px) {
  .p-first-party-data__proposal01-content01__before::after {
    top: 50%;
    right: calc(clamp(20px, 5.56vw, 80px) * -1);
    bottom: auto;
    left: auto;
    transform: translate(100%, -50%);
    width: 36px;
    height: 40px;
    background-image: url("../img/service/common/arrow_gold_right.svg");
  }
}
.p-first-party-data__proposal01-content01__fees {
  margin-bottom: 20px;
  padding: 11px 10px;
  border-radius: 4px;
  background: #00a9ca;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
.p-first-party-data__proposal01-content01__fee-label, .p-first-party-data__proposal01-content01__fee-unit {
  font-size: var(--fz16);
  line-height: 1.5;
}
.p-first-party-data__proposal01-content01__fee-value {
  margin: 0 10px;
  font-size: var(--fz24);
  line-height: 18px;
}
.p-first-party-data__proposal01-content01__graph {
  text-align: center;
}
.p-first-party-data__proposal01-content01__explanation {
  position: relative;
  margin-top: 22px;
  padding: 16px 10px;
  border-radius: 5px;
  background: #d39a44;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
.p-first-party-data__proposal01-content01__explanation::before {
  display: block;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 22px;
  height: 20px;
  background: url("../img/service/common/arrow_gold_top.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.p-first-party-data__proposal01-content01__explanation-main {
  font-size: var(--fz16);
}
.p-first-party-data__proposal01-content01__explanation-sub {
  margin-top: 10px;
  font-size: var(--fz14);
}
.p-first-party-data__proposal01-content01__after {
  padding: 15px;
  border: 2px solid #d39a44;
  border-radius: 10px;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal01-content01__after {
    display: grid;
    flex-grow: 1;
    grid-template-rows: auto 1fr auto auto;
  }
}
.p-first-party-data__proposal01-content01__strategy {
  margin-bottom: 15px;
  padding: 7px 10px;
  border-radius: 4px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.p-first-party-data__proposal01-content01__cost-estimation {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal01-content01__cost-estimation {
    margin-bottom: 20px;
  }
}
.p-first-party-data__proposal01-content01__cost-estimation-text {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  background: #f6ebda;
  color: #d39a44;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}
.p-first-party-data__proposal01-content01__cost-estimation-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.p-first-party-data__proposal01-content01__icon {
  margin-bottom: 15px;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal01-content01__icon {
    margin-bottom: 20px;
  }
}
.p-first-party-data__proposal01-content01__icon img {
  width: 60px;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal01-content01__icon img {
    width: 80px;
  }
}
.p-first-party-data__proposal01-content01__benefits {
  display: grid;
  gap: 10px;
}
.p-first-party-data__proposal01-content01__benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  border-radius: 4px;
  background: #ebf5f7;
  color: #12acca;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.5;
}
.p-first-party-data__proposal01-content01__benefit::before {
  flex-shrink: 0;
  width: 17px;
  height: 13px;
  background: url("../img/service/1st-party-data/proposal01_check.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.p-first-party-data__proposal02-content01 {
  display: grid;
  gap: 100px;
  max-width: 650px;
  margin: 50px auto 0;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal02-content01 {
    display: flex;
    gap: clamp(20px, 14.8vw, 213px);
    max-width: 1440px;
    margin-top: 100px;
    padding: 0 80px;
  }
}
.p-first-party-data__proposal02-content01__before {
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
}
.p-first-party-data__proposal02-content01__before::after {
  display: block;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 22px;
  height: 20px;
  background: url("../img/service/common/arrow_gold_bottom.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media (min-width: 811px) {
  .p-first-party-data__proposal02-content01__before::after {
    top: 50%;
    right: calc(clamp(20px, 6.12vw, 88px) * -1);
    bottom: auto;
    left: auto;
    transform: translate(100%, -50%);
    width: 36px;
    height: 40px;
    background-image: url("../img/service/common/arrow_gold_right.svg");
  }
}
.p-first-party-data__proposal02-content01__balloon {
  position: relative;
  margin-bottom: 42px;
  padding: 8px 8px 18px 8px;
  border-radius: 4px;
  background: #d39a44;
  font-weight: 700;
  text-align: center;
}
.p-first-party-data__proposal02-content01__balloon::after {
  display: block;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 33px;
  height: 30px;
  background: url("../img/service/common/arrow_gold_bottom.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.p-first-party-data__proposal02-content01__balloon-top {
  margin-bottom: 17px;
  padding: 10px;
  border-radius: 2px;
  background: #ffffff;
  color: #d39a44;
  font-size: var(--fz16);
  line-height: 1.5;
}
.p-first-party-data__proposal02-content01__balloon-bottom {
  color: #ffffff;
  font-size: var(--fz18);
}
@media (min-width: 811px) {
  .p-first-party-data__proposal02-content01__balloon-bottom {
    font-size: clamp(var(--fz16), 1.25vw, var(--fz18));
  }
}
.p-first-party-data__proposal02-content01__graph01 {
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal02-content01__graph01 {
    align-self: flex-end;
  }
}
.p-first-party-data__proposal02-content01__graph02 {
  text-align: center;
}
.p-first-party-data__proposal02-content01__headding {
  display: grid;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}
.p-first-party-data__proposal02-content01__headding-jp {
  margin-bottom: 18px;
  color: #00a9ca;
  font-size: var(--fz24);
  line-height: 1.6;
}
.p-first-party-data__proposal02-content01__headding-en {
  color: #d39a44;
  font-family: var(--font-en);
  font-size: var(--fz18);
  line-height: 1.11;
  letter-spacing: 0.06em;
}
.p-first-party-data__proposal02-content02 {
  margin-top: 40px;
}
.p-first-party-data__proposal02-content02.pc {
  position: absolute;
  padding: 0 0 0 12.5vw;
  margin-top: 10px;
}
.p-first-party-data__proposal02-content02__headding {
  display: grid;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal02-content02__headding {
    margin-bottom: 20px;
  }
}
.p-first-party-data__proposal02-content02__headding-jp {
  margin-bottom: 10px;
  color: #00a9ca;
  font-size: var(--fz28);
  line-height: 1.48;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal02-content02__headding-jp {
    font-size: var(--fz34);
  }
}
.p-first-party-data__proposal02-content02__headding-en {
  color: #d39a44;
  font-family: var(--font-en);
  font-size: var(--fz18);
  line-height: 1.11;
  letter-spacing: 0.06em;
}
.p-first-party-data__proposal02-content02__arrow {
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal02-content02__arrow img {
    width: 217px;
  }
}
.p-first-party-data__proposal02-marquee {
  padding: 60px 0;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal02-marquee {
    padding: 100px 0 80px;
  }
}
.p-first-party-data__proposal03-content01 {
  display: grid;
  gap: 30px 20px;
  max-width: 650px;
  margin: 50px auto 0;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal03-content01 {
    max-width: 1440px;
    margin-top: 100px;
    padding: 0 80px;
  }
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal03-content01 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-first-party-data__proposal03-content01__head {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--font-en);
  font-weight: 700;
}
.p-first-party-data__proposal03-content01__head-en {
  color: #00a9ca;
  font-size: var(--fz18);
  line-height: 1.11;
  letter-spacing: 0.06em;
  text-align: right;
}
.p-first-party-data__proposal03-content01__head-no {
  color: #d39a44;
  font-size: var(--fz68);
  line-height: 48px;
}
.p-first-party-data__proposal03-content01__box {
  display: grid;
  gap: 30px;
  padding: 15px;
  border: 2px solid rgba(0, 169, 202, 0.2509803922);
  border-radius: 10px;
  background: #ffffff;
  text-align: center;
}
.p-first-party-data__proposal03-content01__box-title {
  padding: 11px 10px 12px;
  border-radius: 4px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz18);
  font-weight: 700;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal03-content01__box-title {
    font-size: clamp(var(--fz18), 1.38vw, var(--fz20));
  }
}
@media (min-width: 811px) {
  .p-first-party-data__proposal03-content01__box-icon img {
    height: 80px;
  }
}
.p-first-party-data__proposal03-content01__box-content {
  display: grid;
  gap: 15px;
}
.p-first-party-data__proposal03-content01__box-content-text {
  padding: 6px 10px;
  border-radius: 4px;
  background: #ebf5f7;
  color: #00a9ca;
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.48;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal03-content01__box-content-text {
    font-size: var(--fz18);
  }
}
.p-first-party-data__proposal03-bg {
  display: none;
  position: absolute;
  top: -40px;
  right: 0;
  z-index: -1;
  max-width: 50vw;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal03-bg {
    display: block;
  }
}
.p-first-party-data__proposal04-content01 {
  display: grid;
  gap: 20px;
  max-width: 650px;
  margin: 50px auto 0;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal04-content01 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1440px;
    margin-top: 100px;
    padding: 0 80px;
  }
}
.p-first-party-data__proposal04-content01__item {
  display: grid;
  gap: 20px;
  grid-template-rows: auto 1fr;
}
.p-first-party-data__proposal04-content01__head {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 700;
}
.p-first-party-data__proposal04-content01__head-en {
  color: #00a9ca;
  font-size: var(--fz18);
  line-height: 1.11;
  letter-spacing: 0.06em;
  text-align: right;
}
.p-first-party-data__proposal04-content01__head-no {
  color: #d39a44;
  font-size: var(--fz68);
  line-height: 48px;
}
.p-first-party-data__proposal04-content01__box {
  display: grid;
  gap: 10px;
  grid-template-rows: auto 1fr;
  padding: 15px;
  border: 2px solid rgba(0, 169, 202, 0.2509803922);
  border-radius: 10px;
  background: #ffffff;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal04-content01__box {
    gap: 25px;
  }
}
.p-first-party-data__proposal04-content01__box-title {
  padding: 11px 10px 12px;
  border-radius: 4px;
  background: #d39a44;
  color: #ffffff;
  font-size: var(--fz18);
  font-weight: 700;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal04-content01__box-title {
    font-size: clamp(var(--fz16), 1.38vw, var(--fz20));
  }
}
.p-first-party-data__proposal04-content01__box-list {
  display: grid;
  gap: 10px;
}
.p-first-party-data__proposal04-content01__box-list-item {
  padding: 10px;
  border-radius: 4px;
  background: #ebf5f7;
  color: #00a9ca;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.48;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal04-content01__box-list-item {
    font-size: clamp(var(--fz14), 1.12vw, var(--fz16));
  }
}
.p-first-party-data__proposal04-bg {
  margin-top: 60px;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal04-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    max-width: 46.11vw;
    margin-top: 80px;
    padding: 0;
  }
}
@media (min-width: 811px) {
  .p-first-party-data__proposal05__lead {
    width: 100%;
    max-width: 873px;
  }
}
.p-first-party-data__proposal05__related-link {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal05__related-link {
    font-size: var(--fz16);
  }
}
.p-first-party-data__proposal05__related-link a {
  color: #3399CC;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal05__related-link a {
    transition: var(--hover-transition);
  }
  .p-first-party-data__proposal05__related-link a:hover {
    opacity: var(--hover-opacity);
  }
}
.p-first-party-data__proposal05-content01 {
  max-width: 650px;
  margin: 50px auto 0;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal05-content01 {
    max-width: 1440px;
    margin-top: 100px;
    padding: 0 80px;
  }
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01 {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-first-party-data__proposal05-content01__box {
  position: relative;
  padding: 15px 15px 20px;
  border-radius: 4px 4px 4px 0;
  background: #ebf5f7;
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__box {
    border-radius: 4px 0 4px 4px;
  }
}
.p-first-party-data__proposal05-content01__box--02 {
  border-radius: 4px 0 4px 4px;
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__box--02 {
    border-radius: 4px 4px 4px 0;
  }
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__box {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 387px;
    padding: 20px;
  }
}
.p-first-party-data__proposal05-content01__box-in {
  display: grid;
  justify-content: center;
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__box-in {
    align-self: center;
  }
}
.p-first-party-data__proposal05-content01__box-title01 {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 4px;
  background: #00a9ca;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__box-title01 {
    margin-bottom: 0;
    font-size: var(--fz20);
  }
}
.p-first-party-data__proposal05-content01__box-title02 {
  margin-bottom: 25px;
  padding: 0 10px;
  border-radius: 4px;
  background: #d39a44;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.p-first-party-data__proposal05-content01__box-data {
  text-align: center;
}
.p-first-party-data__proposal05-content01__box-data span {
  color: #d39a44;
}
.p-first-party-data__proposal05-content01__box-data span:nth-child(1) {
  font-size: 88px;
  font-weight: 700;
  line-height: 65px;
}
.p-first-party-data__proposal05-content01__box-data span:nth-child(2) {
  font-size: var(--fz24);
  font-weight: 700;
}
.p-first-party-data__proposal05-content01__box-arrow01, .p-first-party-data__proposal05-content01__box-arrow02 {
  position: absolute;
  height: 162px;
  padding: 20px 10px;
  background: #ebf5f7;
  color: #00a9ca;
  font-size: var(--fz16);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-align: center;
}
@media (max-width: 1099px) {
  .p-first-party-data__proposal05-content01__box-arrow01, .p-first-party-data__proposal05-content01__box-arrow02 {
    writing-mode: vertical-rl;
  }
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__box-arrow01, .p-first-party-data__proposal05-content01__box-arrow02 {
    width: calc(100% + 13px);
    height: auto;
    font-size: var(--fz20);
    letter-spacing: 0;
  }
}
.p-first-party-data__proposal05-content01__box-arrow01 {
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  border-radius: 0 0 10px 10px;
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__box-arrow01 {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateX(100%);
    border-radius: 0 10px 10px 0;
  }
}
.p-first-party-data__proposal05-content01__box-arrow01::before {
  position: absolute;
  bottom: 12px;
  left: 0;
  transform: translateY(100%);
  width: 36px;
  height: 33px;
  background: url("../img/service/1st-party-data/proposal05_icon01.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__box-arrow01::before {
    top: 0;
    right: 8px;
    bottom: auto;
    left: auto;
    transform: translateX(100%);
    width: 56px;
    height: 60px;
    background-image: url("../img/service/1st-party-data/proposal05_icon03.svg");
  }
}
.p-first-party-data__proposal05-content01__box-arrow02 {
  top: 0;
  right: 0;
  transform: translateY(-100%);
  border-radius: 10px 10px 0 0;
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__box-arrow02 {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    border-radius: 10px 0 0 10px;
  }
}
.p-first-party-data__proposal05-content01__box-arrow02::before {
  position: absolute;
  top: 12px;
  right: 0;
  transform: translateY(-100%);
  width: 36px;
  height: 33px;
  background: url("../img/service/1st-party-data/proposal05_icon02.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__box-arrow02::before {
    top: 0;
    right: auto;
    left: 8px;
    transform: translateX(-100%);
    width: 56px;
    height: 60px;
    background-image: url("../img/service/1st-party-data/proposal05_icon04.svg");
  }
}
.p-first-party-data__proposal05-content01__list {
  display: grid;
  gap: 5px;
  width: calc(100% - 112px);
  margin: 18px auto;
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__list {
    align-self: center;
    width: auto;
    margin: 0;
  }
}
.p-first-party-data__proposal05-content01__list-item {
  padding: 8px 10px;
  border: 1px solid #00a9ca;
  border-radius: 4px;
  color: #00a9ca;
  font-size: var(--fz14);
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}
@media (min-width: 1100px) {
  .p-first-party-data__proposal05-content01__list-item {
    padding: 10px;
    font-size: var(--fz16);
  }
}
.p-first-party-data__proposal05-bg {
  margin-top: 40px;
  text-align: right;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal05-bg {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 45vw;
    margin-top: 100px;
  }
}
@media (min-width: 1200px) {
  .p-first-party-data__proposal05-bg {
    max-width: 55.625vw;
  }
}
.p-first-party-data__proposal05-bg img {
  width: 100%;
}
.p-first-party-data__proposal05-marquee {
  padding: 40px 0 60px;
}
@media (min-width: 811px) {
  .p-first-party-data__proposal05-marquee {
    padding: 100px 0 80px;
  }
}
.p-first-party-data__conversion {
  margin-top: 0;
}
.p-first-party-data__section-title {
  display: grid;
  gap: 55px 30px;
  max-width: 650px;
  margin: 60px auto 0;
  padding: 0 20px;
}
@media (min-width: 811px) {
  .p-first-party-data__section-title {
    display: flex;
    max-width: 1440px;
    margin-top: 180px;
    margin-bottom: 20px;
    padding: 0 80px;
  }
}
.p-first-party-data__section-title-jp {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #00A9CA;
  font-size: var(--fz28);
  font-weight: 700;
  margin: 0 auto;
  line-height: 38px;
}
@media (min-width: 811px) {
  .p-first-party-data__section-title-jp {
    font-size: 38px;
    line-height: 45px;
  }
}
.p-first-party-data__section-title-jp::before, .p-first-party-data__section-title-jp::after {
  line-height: 0;
}
.p-first-party-data__section-title-jp::before {
  content: url("../img/service/1st-party-data/section-title_left_sp.svg");
}
@media (min-width: 811px) {
  .p-first-party-data__section-title-jp::before {
    content: url("../img/service/1st-party-data/section-title_left_pc.svg");
  }
}
.p-first-party-data__section-title-jp::after {
  content: url("../img/service/1st-party-data/section-title_right_sp.svg");
}
@media (min-width: 811px) {
  .p-first-party-data__section-title-jp::after {
    content: url("../img/service/1st-party-data/section-title_right_pc.svg");
  }
}
.p-first-party-data__section-title-jp span {
  position: relative;
}
.p-first-party-data__section-title-jp span::after {
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 16px;
  height: 15px;
  margin: 0 auto;
  background: url("../img/service/common/arrow_gold_bottom.svg") no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media (min-width: 811px) {
  .p-first-party-data__section-title-jp span::after {
    bottom: -25px;
  }
}
.p-first-party-data__section-title-en {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 700;
  line-height: 37.74px;
  text-align: center;
  color: #00A9CA;
}
@media (min-width: 811px) {
  .p-first-party-data__section-title-en {
    flex-grow: 1;
  }
}
.p-first-party-data__section-title-en span {
  flex-shrink: 0;
}
.p-first-party-data__section-title-en::before, .p-first-party-data__section-title-en::after {
  flex-grow: 1;
  display: block;
  width: 100%;
  height: 2px;
  background: #00a9ca;
  content: "";
}
@media (min-width: 811px) {
  .p-first-party-data__section-title-en::after {
    display: none;
  }
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 810px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 811px) {
  .sp {
    display: none !important;
  }
}

@media (min-width: 1000px) {
  .br900 {
    display: none !important;
  }
}

@media (min-width: 1000px) {
  .br1000 {
    display: none !important;
  }
}

@media (max-width: 1000px) {
  .br1000pc {
    display: none !important;
  }
}

@media (max-width: 1099px) {
  .br1100pc {
    display: none !important;
  }
}

.br811-1000 {
  display: none;
}
@media (min-width: 811px) and (max-width: 1000px) {
  .br811-1000 {
    display: block;
  }
}

.u-visibility-hidden {
  visibility: hidden;
}

.u-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.u-layer01 {
  position: relative;
  z-index: 2;
}

.u-layer-white01 {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}

.u-fw-bold {
  font-weight: bold;
}

.u-tc-blue {
  color: #00a9ca;
}

.u-tc-yellow {
  color: #d39a44;
}

.u-tc-red {
  color: #ef336c;
}

.u-bg-white {
  padding: 15px;
  border-radius: 3px;
  background: #ffffff;
}
@media (min-width: 811px) {
  .u-bg-white {
    padding: 20px;
  }
}

.u-bg-gray {
  padding: 15px;
  border-radius: 3px;
  background: rgba(51, 51, 51, 0.1);
}
@media (min-width: 811px) {
  .u-bg-gray {
    padding: 20px;
  }
}

.u-bg-blue {
  padding: 15px;
  border-radius: 3px;
  background: rgba(119, 190, 204, 0.1);
}
@media (min-width: 811px) {
  .u-bg-blue {
    padding: 20px;
  }
}

.u-bg-yellow {
  padding: 15px;
  border-radius: 3px;
  background: rgba(211, 154, 68, 0.2);
}
@media (min-width: 811px) {
  .u-bg-yellow {
    padding: 20px;
  }
}

.u-bg-red {
  padding: 15px;
  border-radius: 3px;
  background: rgba(239, 51, 108, 0.1);
}
@media (min-width: 811px) {
  .u-bg-red {
    padding: 20px;
  }
}

.u-bg-dot01 {
  padding-bottom: 30px;
  background-image: url("../img/common/dot01.svg");
  background-position: left bottom;
  background-repeat: repeat-x;
}
@media (min-width: 811px) {
  .u-bg-dot01 {
    padding-bottom: 60px;
  }
}

.u-bg-dot02 {
  padding-bottom: 30px;
  background-image: url("../img/common/dot01.svg");
  background-position: left bottom;
  background-repeat: repeat-x;
}

.u-bg-dot03 {
  padding-bottom: 60px;
  background-image: url("../img/common/dot01.svg");
  background-position: left bottom;
  background-repeat: repeat-x;
}

.u-bg-dot04 {
  padding: 30px 0;
  background-image: url("../img/common/dot01.svg"), url("../img/common/dot01.svg");
  background-position: left bottom, left top;
  background-repeat: repeat-x;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

@media (max-width: 810px) {
  .u-fz16sp {
    font-size: var(--fz16);
  }
  .u-mt40sp {
    margin-top: 40px;
  }
  .u-mt50sp {
    margin-top: 50px;
  }
  .u-mt60sp {
    margin-top: 60px;
  }
  .u-mb0sp {
    margin-bottom: 0;
  }
  .u-mb10sp {
    margin-bottom: 10px;
  }
  .u-mb20sp {
    margin-bottom: 20px;
  }
  .u-mb30sp {
    margin-bottom: 30px;
  }
  .u-mb40sp {
    margin-bottom: 40px;
  }
  .u-mb60sp {
    margin-bottom: 60px;
  }
  .u-mb100sp {
    margin-bottom: 100px;
  }
  .u-pt0sp {
    padding-top: 0;
  }
  .u-pt20sp {
    padding-top: 20px;
  }
  .u-pb0sp {
    padding-bottom: 0;
  }
  .u-line-height-normal-sp {
    line-height: normal;
  }
}
@media (min-width: 811px) {
  .u-fz20pc {
    font-size: var(--fz20);
  }
  .u-fz32pc {
    font-size: var(--fz32);
  }
  .u-mt60pc {
    margin-top: 60px;
  }
  .u-mt80pc {
    margin-top: 80px;
  }
  .u-mt96pc {
    margin-top: 96px;
  }
  .u-mt100pc {
    margin-top: 100px;
  }
  .u-mb20pc {
    margin-bottom: 20px;
  }
  .u-mb30pc {
    margin-bottom: 30px;
  }
  .u-mb40pc {
    margin-bottom: 40px;
  }
  .u-mb60pc {
    margin-bottom: 60px;
  }
  .u-mb80pc {
    margin-bottom: 80px;
  }
  .u-mb100pc {
    margin-bottom: 100px;
  }
  .u-mb120pc {
    margin-bottom: 120px;
  }
  .u-text-align-center-pc {
    text-align: center;
  }
  .u-letter-spacing-002-pc {
    letter-spacing: -0.02em;
  }
}
.u-text-align-center {
  text-align: center;
}

.u-text-align-right {
  text-align: right;
}

.u-margin-center {
  margin: 0 auto;
}

.u-line-height-1 {
  line-height: 1;
}