/*================================
Reset CSS
================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
video,
canvas,
svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  object-fit: cover;
  object-position: center;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
  padding: 0;
}

figure {
  margin: 0;
}

img {
  vertical-align: text-bottom;
  vertical-align: -webkit-baseline-middle;
  max-width: 100%;
  height: auto;
  width/***/: auto;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 16px;
}

input[type=button],
input[type=text],
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/*================================
Base
================================*/
html,
body {
  color: #515158;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 10px;
  background: #ffffff;
  margin-top: 0 !important;
}

p {
  font-size: 1.6rem;
  line-height: 200%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 1.4rem;
  }
}

a {
  font-size: 1.6rem;
  line-height: 200%;
  font-weight: 500;
  text-decoration: none;
  transition: ease 0.3s;
  color: #515158;
}
@media screen and (max-width: 767px) {
  a {
    font-size: 1.4rem;
  }
}
a:hover {
  transition: ease 0.3s;
  text-decoration: none;
}

figure {
  line-height: 1;
}

img {
  width: 100%;
}

ul {
  line-height: 100%;
}
ul li {
  list-style: none;
  text-align: justify;
  line-height: 100%;
}

@media screen and (min-width: 1281px) {
  br.pc {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  br.pcOnly {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  br.pcTb {
    display: none;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.sp {
    display: block;
  }
}
br.tb {
  display: none;
}
@media screen and (max-width: 1024px) {
  br.tb {
    display: block;
  }
}
br.tbOnly {
  display: none;
}
@media screen and (max-width: 1024px) {
  br.tbOnly {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  br.tbOnly {
    display: none;
  }
}
br.pc-smallOnly {
  display: none;
}
@media screen and (max-width: 1280px) {
  br.pc-smallOnly {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  br.pc-smallOnly {
    display: none;
  }
}

span.grd {
  background: linear-gradient(138deg, #81f9ff, #5188f1 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
span.en {
  font-family: "Geologica", sans-serif;
  letter-spacing: 0.05em;
}

.scroll-hint-icon {
  top: 15%;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pcTb {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.tb {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tb {
    display: block !important;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.js-text-fade p {
  opacity: 0;
  transition: opacity 2s ease;
}
.js-text-fade.is-show p {
  opacity: 1;
}
.js-text-fade.is-show p:nth-child(2) {
  transition-delay: 0.2s;
}
.js-text-fade.is-show p:nth-child(3) {
  transition-delay: 0.3s;
}

.js-fadeIn > * {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-fadeUp > * {
  opacity: 0;
  transform: translateY(10px);
}

.fadeUp {
  animation-name: fadeUp;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-section__btn {
  width: min(100%, 320px);
  line-height: 100%;
  margin: 0 auto;
  position: relative;
}
.c-section__btn::before {
  display: block;
  content: "";
  position: absolute;
  z-index: 5;
  background: url("../images/common/ico_next_white.svg") center no-repeat;
  background-size: 100% auto;
  width: 17px;
  height: 11px;
  pointer-events: none;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-section__btn {
    max-width: none;
    width: 100%;
  }
}
.c-section__btn a {
  width: 100%;
  display: inline-block;
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 2.7rem 6.4rem;
  line-height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  color: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-section__btn a {
    font-size: 1.4rem;
    padding: 2.4rem 3.2rem;
  }
}
.c-section__btn a::before, .c-section__btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 1.2s ease;
}
.c-section__btn a::before {
  background: linear-gradient(138deg, #81f9ff, #5188f1 43%);
  opacity: 1;
  transform: scale(1);
}
.c-section__btn a::after {
  background: linear-gradient(138deg, #5188f1 57%, #81f9ff);
  opacity: 0;
  transform: scale(1.15);
}
.c-section__btn a:hover::before {
  opacity: 0;
  transform: scale(1);
}
.c-section__btn a:hover::after {
  opacity: 1;
  transform: scale(1.15);
}
.c-contact__btn {
  width: min(100%, 320px);
  line-height: 100%;
}
.c-contact__btn-center {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-contact__btn {
    max-width: none;
    width: 100%;
  }
}
.c-contact__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 2.7rem 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-contact__btn a {
    font-size: 1.4rem;
    padding: 2.4rem 3.2rem;
  }
}
.c-contact__btn a::before, .c-contact__btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 1.2s ease;
}
.c-contact__btn a::before {
  background: linear-gradient(138deg, #81f9ff, #5188f1 43%);
  opacity: 1;
  transform: scale(1);
}
.c-contact__btn a::after {
  background: linear-gradient(138deg, #5188f1 57%, #81f9ff);
  opacity: 0;
  transform: scale(1.15);
}
.c-contact__btn a:hover::before {
  opacity: 0;
  transform: scale(1);
}
.c-contact__btn a:hover::after {
  opacity: 1;
  transform: scale(1.15);
}
.c-contact__btn a img {
  width: 1.6rem;
}
.c-contact__btn a p {
  line-height: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.c-prev__btn {
  width: min(100%, 320px);
  line-height: 100%;
  margin: 0 auto;
  position: relative;
}
.c-prev__btn::before {
  display: block;
  content: "";
  position: absolute;
  z-index: 5;
  background: url("../images/common/ico_prev_white.svg") center no-repeat;
  background-size: 100% auto;
  width: 17px;
  height: 11px;
  pointer-events: none;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-prev__btn {
    max-width: none;
    width: 100%;
  }
}
.c-prev__btn a {
  width: 100%;
  display: inline-block;
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 2.7rem 6.4rem;
  line-height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  color: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-prev__btn a {
    font-size: 1.4rem;
    padding: 2.4rem 3.2rem;
  }
}
.c-prev__btn a::before, .c-prev__btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 1.2s ease;
}
.c-prev__btn a::before {
  background: linear-gradient(138deg, #81f9ff, #5188f1 43%);
  opacity: 1;
  transform: scale(1);
}
.c-prev__btn a::after {
  background: linear-gradient(138deg, #5188f1 57%, #81f9ff);
  opacity: 0;
  transform: scale(1.15);
}
.c-prev__btn a:hover::before {
  opacity: 0;
  transform: scale(1);
}
.c-prev__btn a:hover::after {
  opacity: 1;
  transform: scale(1.15);
}

.c-section__bg {
  width: 30%;
  height: auto;
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-section__bg {
    max-width: none;
    width: 100%;
  }
}
.c-section__bg--topRight {
  top: 0;
  right: 0;
  animation: bg01 10s ease-in-out infinite alternate;
}
.c-section__bg--topLeft {
  top: 10%;
  left: 0;
  animation: bg02 10s ease-in-out infinite alternate;
}
.c-section__bg--bottomLeft {
  bottom: 0;
  left: 0;
  animation: bg03 10s ease-in-out infinite alternate;
}
.c-section__bg--bottomRight {
  bottom: 0;
  right: 0;
  animation: bg04 10s ease-in-out infinite alternate;
}

@keyframes bg01 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10rem, 40rem) rotate(180deg);
  }
  100% {
    transform: translate(0, 50rem) rotate(360deg);
  }
}
@keyframes bg02 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10rem, 40rem) rotate(180deg);
  }
  100% {
    transform: translate(0, 50rem) rotate(360deg);
  }
}
@keyframes bg03 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10rem, -30rem) rotate(90deg);
  }
  100% {
    transform: translate(0, -60rem) rotate(180deg);
  }
}
@keyframes bg04 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10rem, -30rem) rotate(90deg);
  }
  100% {
    transform: translate(0, -60rem) rotate(180deg);
  }
}
.c-section__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-section__heading {
    margin-bottom: 2.4rem;
    gap: 2.4rem;
  }
}
.c-section__heading--mb40 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .c-section__heading--mb40 {
    margin-bottom: 3.2rem;
  }
}
.c-section__heading--center {
  margin-bottom: 4rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-section__heading--center {
    margin-bottom: 2.4rem;
  }
}
.c-section__heading-jp {
  font-size: 4.2rem;
  line-height: 100%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-section__heading-jp {
    font-size: 2.8rem;
  }
}
.c-section__heading-jp--wht {
  color: #ffffff;
}
.c-section__heading-en {
  order: -1;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.05em;
  display: inline-block;
  padding-right: 2rem;
  font-family: "Geologica", sans-serif;
  position: relative;
  background: linear-gradient(90deg, #81f9ff, #5188f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .c-section__heading-en {
    font-size: 2.2rem;
  }
}
.c-section__heading-en::after {
  position: absolute;
  bottom: 0.6rem;
  right: 0.3rem;
  display: block;
  content: "";
  background: url("../images/common/ico_ttl_blue.svg") top center no-repeat;
  background-size: 100% auto;
  width: 1.4rem;
  height: 1.2rem;
}
.c-section__heading-en--wht {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.c-section__heading-en--wht::after {
  position: absolute;
  bottom: 0.6rem;
  right: 0;
  display: block;
  content: "";
  background: url("../images/common/ico_ttl_white.svg") top center no-repeat;
  background-size: 100% auto;
  width: 1.4rem;
  height: 1.2rem;
}

.c-section__form {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 20px rgba(81, 136, 241, 0.15), inset 0 0 60px rgba(81, 136, 241, 0.1);
  width: 100%;
  padding: 6.4rem 5.6rem 7.2rem;
}
@media screen and (max-width: 1024px) {
  .c-section__form {
    padding: 6.4rem 4rem 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section__form {
    border-radius: 2rem;
    padding: 4rem 1.6rem;
    width: 100%;
  }
}
.c-section__form table tr {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-section__form table tr {
    margin-bottom: 3.2rem;
  }
}
.c-section__form table tr th p {
  line-height: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  align-items: center;
}
.c-section__form table tr th p.sub {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  color: #c1c1c1;
  text-align: left;
}
.c-section__form table tr th p span {
  text-align: left;
  font-size: 1.6rem;
}
.c-section__form table tr th p span.required {
  font-size: 12px;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  line-height: 100%;
  font-size: 1.2rem;
  background: #5188f1;
  color: #ffffff;
  border-radius: 5rem;
}
.c-section__form table tr td {
  font-size: 1.6rem;
  line-height: 150%;
  white-space: normal;
  display: block;
  width: 100%;
}
@media (max-width: 600px) {
  .c-section__form table tr td {
    display: block !important;
    width: 100% !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
  }
}
.c-section__form table tr td .wpcf7-spinner {
  display: none !important;
}
.c-section__form table tr td .wpcf7-list-item {
  margin: 0;
}
.c-section__form table tr td option:first-child {
  display: none;
}
.c-section__form table tr td input,
.c-section__form table tr td textarea,
.c-section__form table tr td select {
  font-weight: 500;
  -webkit-appearance: auto !important;
  width: 100%;
  padding: 2rem 2.4rem;
  color: #515158;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  line-height: 150%;
  background: #f0f6ff;
}
@media screen and (max-width: 767px) {
  .c-section__form table tr td input,
  .c-section__form table tr td textarea,
  .c-section__form table tr td select {
    padding: 1.6rem;
  }
}
.c-section__form table tr td input:focus,
.c-section__form table tr td textarea:focus,
.c-section__form table tr td select:focus {
  outline: #d0e4fb 2px solid;
}
.c-section__form table tr td input::placeholder,
.c-section__form table tr td textarea::placeholder,
.c-section__form table tr td select::placeholder {
  color: #c1c1c1;
}
.c-section__form table tr td textarea {
  height: 18rem;
}
@media screen and (max-width: 767px) {
  .c-section__form table tr td textarea {
    height: 15rem;
  }
}
.c-section__form__btn {
  width: min(100%, 320px);
  line-height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.c-section__form__btn::before {
  display: block;
  content: "";
  position: absolute;
  z-index: 5;
  background: url("../images/common/ico_next_white.svg") center no-repeat;
  background-size: 100% auto;
  width: 17px;
  height: 11px;
  pointer-events: none;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-section__form__btn:hover p::before {
  opacity: 0;
  transform: scale(1);
}
.c-section__form__btn:hover p::after {
  opacity: 1;
  transform: scale(1.15);
}
.c-section__form__btn p {
  pointer-events: all;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-radius: 50px;
}
.c-section__form__btn p::before, .c-section__form__btn p::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 1.2s ease;
}
.c-section__form__btn p::before {
  background: linear-gradient(138deg, #81f9ff, #5188f1 43%);
  opacity: 1;
  transform: scale(1);
}
.c-section__form__btn p::after {
  background: linear-gradient(138deg, #5188f1 57%, #81f9ff);
  opacity: 0;
  transform: scale(1.15);
}
@media screen and (max-width: 767px) {
  .c-section__form__btn p {
    max-width: none;
    width: 100%;
  }
}
.c-section__form__btn input {
  cursor: pointer;
  width: 100%;
  display: inline-block;
  border-radius: 50px;
  padding: 2.7rem 6.4rem;
  line-height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  color: #ffffff;
  position: relative;
  border: none;
  z-index: 5;
  background: none;
  overflow: hidden !important;
}
@media screen and (max-width: 767px) {
  .c-section__form__btn input {
    padding: 2.4rem 3.2rem;
    font-size: 1.4rem;
  }
}
.c-section__form__link {
  margin-bottom: 4rem;
  text-align: center;
}
.c-section__form__link a {
  text-decoration: underline;
}
.c-section__form__link input[type=checkbox] {
  display: none;
}
.c-section__form__link .wpcf7-list-item-label {
  position: relative;
  padding-left: 3.2rem;
  display: inline-block;
}
.c-section__form__link .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 0.3rem;
  background: #f0f6ff;
  position: absolute;
  left: 0;
  top: 0.4rem;
  box-sizing: border-box;
}
.c-section__form__link input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.2rem;
  position: absolute;
  left: 0.4rem;
  top: 1rem;
  background: url("../images/common/ico_form_check.svg") center no-repeat;
  background-size: 100% auto;
}

.wpcf7-radio {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem 0;
}
@media screen and (max-width: 767px) {
  .wpcf7-radio {
    gap: 0.5rem;
  }
}
.wpcf7-radio .wpcf7-list-item {
  width: 31.7%;
  background: #f0f6ff;
  border-radius: 0.8rem;
  margin: 0 !important;
}
@media screen and (max-width: 1024px) {
  .wpcf7-radio .wpcf7-list-item {
    width: 48%;
  }
}
@media screen and (max-width: 1024px) {
  .wpcf7-radio .wpcf7-list-item {
    width: 100%;
  }
}
.wpcf7-radio .wpcf7-list-item label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 2.4rem 1rem 2.4rem 5.2rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .wpcf7-radio .wpcf7-list-item label {
    padding: 1.6rem 1rem 1.6rem 4.2rem;
  }
}
.wpcf7-radio .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 1.8rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: #f0f6ff url("../images/common/ico_radio.svg") center left no-repeat;
  background-size: 100% auto;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 5rem;
  content: "";
  z-index: 5;
  display: block;
}
.wpcf7-radio .wpcf7-list-item label input[type=radio] {
  display: none;
}
.wpcf7-radio .wpcf7-list-item label::before {
  position: absolute;
  top: 50%;
  left: 1.4rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: #ffffff;
  border-radius: 5rem;
  content: "";
  z-index: 3;
}
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 1.6rem;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 1.4rem;
  }
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-spinner {
  display: none;
}

.c-page-mv__container {
  background: url("../images/common/bg_main.png") center no-repeat;
  background-size: cover;
  padding: 19rem 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-page-mv__container {
    padding: 8rem 0 1rem;
  }
}
.c-page-mv__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
}
.c-page-mv__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-page-mv__heading {
    gap: 1.6rem;
    margin-bottom: 4rem;
  }
}
.c-page-mv__heading-jp {
  font-size: 3.2rem;
  line-height: 100%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-page-mv__heading-jp {
    font-size: 2.2rem;
  }
}
.c-page-mv__heading-en {
  font-size: 1.8rem;
  line-height: 100%;
  font-weight: 400;
  color: #5188f1;
  font-family: "Geologica", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-page-mv__heading-en {
    font-size: 1.6rem;
  }
}
.c-page-mv__pan-item {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .c-page-mv__pan-item {
    font-size: 1.1rem;
  }
}
.c-page-mv__pan-item a {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .c-page-mv__pan-item a {
    font-size: 1.1rem;
  }
}
.c-page-mv__pan-item a:hover {
  color: #5188f1;
}
.c-page-mv__pan-item a::after {
  content: "";
  background: url("../images/common/ico_pan.svg") center no-repeat;
  background-size: 100% auto;
  display: inline-block;
  margin: 0 0.3rem 0 0.8rem;
  width: 5px;
  height: 7px;
  vertical-align: baseline;
}

.c-pagination {
  margin-top: 8rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 4rem;
    gap: 2.4rem;
  }
}
.c-pagination a {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 100%;
  background: none;
  padding: 0.8rem 1.2rem 0.9rem;
}
.c-pagination a.prev {
  display: inline-block;
  background: url("../images/common/ico_left.svg") center right no-repeat;
  background-size: 100% auto;
  width: 21px;
  height: 13px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-pagination a.prev {
    width: 17px;
    height: 10px;
  }
}
.c-pagination a.next {
  display: inline-block;
  background: url("../images/common/ico_right.svg") center right;
  background-size: 100% auto;
  width: 21px;
  height: 13px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-pagination a.next {
    width: 17px;
    height: 10px;
  }
}
.c-pagination span {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 100%;
  background: #5188f1;
  color: #ffffff;
  padding: 0.8rem 1.2rem 0.9rem;
}
.c-pagination span.dots {
  padding: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 3.2rem 3.2rem;
  box-sizing: border-box;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 1.2rem 1.6rem;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.l-header__logo {
  display: block;
  width: 18rem;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 12rem;
  }
}
.l-header__logo__ttl a {
  display: block;
  width: 100%;
}
.l-header__logo__ttl a:hover {
  opacity: 0.75;
}
.l-header__logo__ttl a img {
  vertical-align: middle;
  transition: 0.3s ease-out;
}
.l-header__nav {
  width: calc(100% - 19rem);
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media screen and (max-width: 1280px) {
  .l-header__nav-list {
    gap: 1.2rem;
  }
}
.l-header__nav-list__item a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  line-height: 100%;
  transition: ease 0.3s;
}
@media screen and (max-width: 1280px) {
  .l-header__nav-list__item a {
    font-size: 1.4rem;
  }
}
.l-header__nav-list__item a:hover {
  color: #5188f1;
}
.l-header__nav-btn {
  width: 21.5rem;
}
@media screen and (max-width: 1280px) {
  .l-header__nav-btn {
    width: 19.1rem;
  }
}
.l-header__nav-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  width: 100%;
  padding: 2rem 4.8rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .l-header__nav-btn a {
    padding: 1.6rem 3.2rem;
  }
}
.l-header__nav-btn a::before, .l-header__nav-btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 1.2s ease;
}
.l-header__nav-btn a::before {
  background: linear-gradient(138deg, #81f9ff, #5188f1 43%);
  opacity: 1;
  transform: scale(1);
}
.l-header__nav-btn a::after {
  background: linear-gradient(138deg, #5188f1 57%, #81f9ff);
  opacity: 0;
  transform: scale(1.15);
}
.l-header__nav-btn a:hover::before {
  opacity: 0;
  transform: scale(1);
}
.l-header__nav-btn a:hover::after {
  opacity: 1;
  transform: scale(1.15);
}
.l-header__nav-btn a img {
  width: 1.6rem;
}
.l-header__nav-btn a p {
  line-height: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.l-header__menu {
  z-index: 9999;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  transition: all 0.5s;
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__menu {
    display: block;
  }
}
.l-header__menu__inner {
  position: relative;
  cursor: pointer;
  width: 2.4rem;
  height: 2.4rem;
  box-sizing: border-box;
}
.l-header__menu__inner span {
  display: inline-block;
  transition: all 0.5s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2.4rem;
  height: 0.2rem;
  background: #515158;
}
.l-header__menu__inner span:nth-of-type(1) {
  top: 0.5rem;
}
.l-header__menu__inner span:nth-of-type(2) {
  top: 1.2rem;
}
.l-header__menu__inner span:nth-of-type(3) {
  top: 1.9rem;
}
.l-header__menu__inner.is-active span:nth-of-type(1) {
  top: 1.1rem;
  left: 0.3rem;
  transform: translateY(0) rotate(-45deg) translateX(0);
  background: #515158;
}
.l-header__menu__inner.is-active span:nth-of-type(2) {
  display: none;
}
.l-header__menu__inner.is-active span:nth-of-type(3) {
  top: 1.1rem;
  left: 0.3rem;
  transform: translateY(0px) rotate(45deg) translateX(0);
  background: #515158;
}
.l-header__spNav {
  position: fixed;
  z-index: 999;
  opacity: 0;
  background: #d0e4fb;
  overflow-y: scroll;
  transition: 0.5s;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  margin: 0 auto;
  padding: 3.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-header__spNav {
    padding: 1.2rem 1.6rem;
  }
}
.l-header__spNav.is-open {
  opacity: 1;
  transition: 0.5s;
  visibility: visible;
}
.l-header__spNav__logo {
  display: block;
  width: 18rem;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .l-header__spNav__logo {
    width: 12rem;
  }
}
.l-header__spNav__logo a {
  width: 100%;
  display: block;
}
.l-header__spNav__logo a img {
  vertical-align: middle;
}
.l-header__spNav-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 90%;
  margin: 0 auto;
}
.l-header__spNav-list__item a {
  display: block;
  width: 100%;
  padding: 1.6rem;
  font-size: 1.4rem;
  background-color: rgba(255, 255, 255, 0.25);
  background-image: url("../images/common/ico_right.svg");
  background-repeat: no-repeat;
  background-position: center right 1.6rem;
  background-size: 2.4rem auto;
  border-radius: 0.8rem;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 20px rgba(81, 136, 241, 0.15), inset 0 0 60px rgba(81, 136, 241, 0.1);
}
.l-header__spNav-list__item a img {
  width: 24px;
  margin-right: 1.2rem;
  vertical-align: middle;
}
.l-header__spNav-list__item a:hover {
  color: #5188f1;
}
.l-header__spNav-btn {
  margin: 4rem auto 2.4rem;
  width: 90%;
}
.l-header__spNav-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  width: 100%;
  padding: 2rem 4.8rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.l-header__spNav-btn a::before, .l-header__spNav-btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 1.2s ease;
}
.l-header__spNav-btn a::before {
  background: linear-gradient(138deg, #81f9ff, #5188f1 43%);
  opacity: 1;
  transform: scale(1);
}
.l-header__spNav-btn a::after {
  background: linear-gradient(138deg, #5188f1 57%, #81f9ff);
  opacity: 0;
  transform: scale(1.15);
}
.l-header__spNav-btn a:hover::before {
  opacity: 0;
  transform: scale(1);
}
.l-header__spNav-btn a:hover::after {
  opacity: 1;
  transform: scale(1.15);
}
.l-header__spNav-btn a img {
  width: 1.6rem;
}
.l-header__spNav-btn a p {
  line-height: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.l-footer__container {
  background: url("../images/common/bg_footer.png") center no-repeat;
  background-size: cover;
}
.l-footer__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 16rem 0 6.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 8rem 0 5.6rem;
  }
}
.l-footer__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4.8rem;
  padding-bottom: 10rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .l-footer__wrap {
    margin-bottom: 2.4rem;
    padding-bottom: 5rem;
  }
}
.l-footer__logo {
  width: 38rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__logo {
    width: 100%;
    margin-bottom: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    margin-bottom: 4rem;
  }
}
.l-footer__logo a {
  display: block;
  width: min(100%, 200px);
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo a {
    width: min(100%, 150px);
    margin-bottom: 3.2rem;
  }
}
.l-footer__logo a:hover {
  opacity: 0.75;
}
.l-footer__logo p {
  font-size: 2.4rem;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 175%;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-footer__logo p {
    font-size: 1.8rem;
  }
}
.l-footer__logo p span.ico {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav {
    width: 100%;
  }
}
.l-footer__nav-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 4.8rem 8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list {
    grid-auto-flow: row;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 3.2rem 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list__item {
    width: 50%;
  }
}
.l-footer__nav-list__item a {
  display: block;
  font-size: 1.6rem;
  line-height: 100%;
  font-weight: 700;
  width: 100%;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list__item a {
    font-size: 1.3rem;
  }
}
.l-footer__nav-list__item a:hover {
  color: #d0e4fb;
}
.l-footer__sub {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-footer__sub {
    gap: 1.6rem;
  }
}
.l-footer__sub-copy p {
  font-size: 1.2rem;
  letter-spacing: 0;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-footer__sub-copy p {
    font-size: 1.1rem;
  }
}
.l-footer__sub-list {
  display: flex;
  justify-content: flex-end;
  gap: 2.4rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer__sub-list {
    order: -1;
    gap: 2rem;
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
}
.l-footer__sub-list__item a {
  display: block;
  font-size: 1.2rem;
  line-height: 100%;
  font-weight: 700;
  width: 100%;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-footer__sub-list__item a {
    font-size: 1.1rem;
  }
}
.l-footer__sub-list__item a:hover {
  color: #d0e4fb;
  opacity: 0.75;
}
.l-footer__sub-list__item a img {
  height: 1.8rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .l-footer__sub-list__item a img {
    height: 1.6rem;
  }
}

.p-top {
  overflow: hidden;
}
.p-top-mv {
  width: 100%;
  position: relative;
  overflow: visible;
  z-index: 5;
}
.p-top-mv::before {
  display: block;
  content: "";
  position: absolute;
  z-index: -2;
  background: url("../images/top/bg_main.png") top center no-repeat;
  background-size: cover;
  width: 100%;
  height: 120vh;
}
.p-top-mv__container {
  position: relative;
  width: 100%;
}
.p-top-mv__movie {
  mix-blend-mode: overlay;
  position: absolute;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.1;
  width: 100%;
  height: 120vh;
}
.p-top-mv__inner {
  position: relative;
  width: 100%;
  height: 90vh;
}
.p-top-mv__heading {
  position: absolute;
  bottom: 7.2rem;
  left: 10rem;
  z-index: 5;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-top-mv__heading {
    left: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mv__heading {
    bottom: 4rem;
    left: 1.6rem;
  }
}
.p-top-mv__heading-ttl {
  font-size: 3.8rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
  font-feature-settings: "palt";
  line-height: 175%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-mv__heading-ttl {
    width: 96%;
    font-size: 2.8rem;
  }
}
.p-top-mv__heading-ttl span.grd {
  font-weight: 700;
}
.p-top-mv__heading-ttl span.ico {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.p-top-mv__heading-txt {
  line-height: 220%;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-mv__heading-txt {
    width: 96%;
  }
}
.p-top-mv__heading-txt span.ico {
  font-family: "Noto Sans JP", sans-serif;
}
.p-top-about {
  position: relative;
  z-index: 5;
}
.p-top-about__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.p-top-about__bg img {
  height: 100%;
}
.p-top-about__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 12rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    padding: 8rem 0;
  }
}
.p-top-about__info {
  width: 35.1rem;
}
@media screen and (max-width: 1024px) {
  .p-top-about__info {
    margin-bottom: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__info {
    margin-bottom: 4rem;
  }
}
.p-top-about__wrap {
  width: calc(100% - 35.5rem);
  display: flex;
  flex-direction: column;
  gap: 4rem;
  color: #ffffff;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .p-top-about__wrap {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__wrap {
    width: 90%;
  }
}
.p-top-about__wrap-txt {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__wrap-txt {
    gap: 2.4rem;
  }
}
.p-top-about__wrap-txt p {
  font-weight: 700;
  line-height: 250%;
}
.p-top-about__btn {
  width: min(100%, 320px);
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-about__btn {
    max-width: none;
    width: 100%;
  }
}
.p-top-about__btn a {
  width: 100%;
  display: inline-block;
  border-radius: 5rem;
  padding: 2.7rem 6.4rem;
  line-height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border: 2px solid #ffffff;
  background: #ffffff url("../images/common/ico_next_blue.svg") center right 20px no-repeat;
  background-size: 17px auto;
  color: #5188f1;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-top-about__btn a {
    padding: 2.4rem 3.2rem;
    font-size: 1.4rem;
  }
}
.p-top-about__btn a:hover {
  background: #5188f1 url("../images/common/ico_next_white.svg") center right 20px no-repeat;
  background-size: 17px auto;
  color: #ffffff;
}
.p-top-works__container {
  background: url("../images/top/bg_works.png") center bottom no-repeat;
  background-size: cover;
}
.p-top-works__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 14rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-works__inner {
    padding: 8rem 0;
  }
}
.p-top-works__info {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__info {
    margin-bottom: 4rem;
  }
}
.p-top-works__contents {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2.5%;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 1024px) {
  .p-top-works__contents {
    gap: 6.4rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__contents {
    margin-bottom: 4rem;
  }
}
.p-top-works__content {
  width: 31.6%;
}
@media screen and (max-width: 1024px) {
  .p-top-works__content {
    width: 100%;
  }
}
.p-top-works__content a {
  display: block;
  width: 100%;
}
.p-top-works__content a:hover img {
  transform: scale(1.05);
}
.p-top-works__content-img {
  margin-bottom: 2.4rem;
  border-radius: 1.2rem;
  overflow: hidden;
}
.p-top-works__content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 380/457;
  transition: transform 0.8s ease;
}
.p-top-works__detail-cate {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 100%;
  padding: 0.8rem 1.6rem;
  box-sizing: border-box;
  border: 2px solid #5188f1;
  color: #5188f1;
  margin-bottom: 1.6rem;
  border-radius: 50px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-top-works__detail-cate {
    font-size: 1.2rem;
  }
}
.p-top-works__detail-ttl {
  font-size: 2.4rem;
  line-height: 175%;
}
@media screen and (max-width: 767px) {
  .p-top-works__detail-ttl {
    font-size: 2rem;
    padding-right: 4rem;
    background: url(../images/common/ico_right.svg) center right 0px no-repeat;
    background-size: 30px auto;
  }
}
.p-top-works__detail-name {
  margin-bottom: 2.4rem;
  color: #c1c1c1;
}
@media screen and (max-width: 767px) {
  .p-top-works__detail-name {
    margin-bottom: 1.6rem;
  }
}
.p-top-works__detail-tagList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem 0.5rem;
}
.p-top-works__detail-tagList li {
  font-size: 1.2rem;
  line-height: 100%;
  background: #d0e4fb url("../images/common/ico_tag.svg") top 8px left 10px no-repeat;
  background-size: 8px auto;
  padding: 0.5rem 1rem 0.7rem 2rem;
  border-radius: 50px;
}
.p-top-service {
  position: relative;
}
.p-top-service__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 14rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-service__inner {
    padding: 8rem 0;
  }
}
.p-top-service__info {
  text-align: center;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__info {
    text-align: left;
    margin-bottom: 4rem;
  }
}
.p-top-service__contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4.8rem 0;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__contents {
    gap: 3.2rem 0;
    margin-bottom: 4rem;
  }
}
.p-top-service__content {
  width: 48.7%;
  padding: 4.8rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 20px rgba(81, 136, 241, 0.15), inset 0 0 60px rgba(81, 136, 241, 0.1);
}
@media screen and (max-width: 1280px) {
  .p-top-service__content {
    padding: 4.8rem 3.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-top-service__content {
    padding: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__content {
    width: 100%;
    padding: 3.2rem 2.4rem;
    border-radius: 2rem;
  }
}
.p-top-service__ttl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .p-top-service__ttl {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__ttl {
    margin-bottom: 1.6rem;
  }
}
.p-top-service__ttl-txt {
  width: calc(100% - 12rem);
  padding-top: 8rem;
}
@media screen and (max-width: 1280px) {
  .p-top-service__ttl-txt {
    width: calc(100% - 10rem);
  }
}
@media screen and (max-width: 1024px) {
  .p-top-service__ttl-txt {
    width: 100%;
    padding: 0;
  }
}
.p-top-service__ttl-txt p {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  line-height: 100%;
}
@media screen and (max-width: 1024px) {
  .p-top-service__ttl-txt p {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__ttl-txt p {
    margin-bottom: 0.8rem;
  }
}
.p-top-service__ttl-txt h4 {
  font-size: 3.2rem;
  line-height: 175%;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .p-top-service__ttl-txt h4 {
    font-size: 2.8rem;
  }
}
.p-top-service__ttl-ico {
  width: 12rem;
}
@media screen and (max-width: 1280px) {
  .p-top-service__ttl-ico {
    width: 10rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-top-service__ttl-ico {
    width: 8rem;
    order: -1;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__ttl-ico {
    margin-bottom: -1rem;
  }
}
.p-top-service ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.8rem 0;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-service ul {
    margin-bottom: 1.6rem;
  }
}
.p-top-service ul li {
  text-align: left;
  width: 48.9%;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 120%;
  border-radius: 8px;
  background: #f0f6ff url("../images/common/ico_check.svg") top 16px left 16px no-repeat;
  background-size: 15px auto;
  padding: 1.6rem 1rem 1.6rem 3.6rem;
}
@media screen and (max-width: 1280px) {
  .p-top-service ul li {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-top-service ul li {
    width: 100%;
  }
}
.p-top-cta {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta {
    margin-bottom: 6rem;
  }
}
.p-top-cta__container {
  background: url("../images/top/bg_cta.png") center bottom no-repeat;
  background-size: cover;
  width: 97.2%;
  border-radius: 5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-cta__container {
    border-radius: 3rem;
    width: 96%;
  }
}
.p-top-cta__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 12rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-top-cta__inner {
    padding: 8rem 0;
  }
}
.p-top-cta__ttl {
  width: 32rem;
}
@media screen and (max-width: 1024px) {
  .p-top-cta__ttl {
    width: 26rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-cta__ttl {
    width: 100%;
  }
}
.p-top-cta__ttl-txt {
  font-size: 4.2rem;
  margin-bottom: 4.8rem;
  font-weight: 700;
  line-height: 175%;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .p-top-cta__ttl-txt {
    font-size: 3.6rem;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-cta__ttl-txt {
    font-size: 3.2rem;
    margin-bottom: 3.2rem;
  }
}
.p-top-cta__btn {
  width: min(100%, 320px);
  line-height: 100%;
}
@media screen and (max-width: 1024px) {
  .p-top-cta__btn {
    width: min(100%, 280px);
  }
}
@media screen and (max-width: 767px) {
  .p-top-cta__btn {
    margin: 0 auto;
  }
}
.p-top-cta__btn a {
  width: 100%;
  display: inline-block;
  border-radius: 50px;
  background: #ffffff;
  padding: 2.7rem 6.4rem;
  line-height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-cta__btn a {
    padding: 2.4rem 3.2rem;
    font-size: 1.4rem;
  }
}
.p-top-cta__btn a::before, .p-top-cta__btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 1.2s ease;
}
.p-top-cta__btn a::before {
  background: linear-gradient(138deg, #81f9ff, #fff 43%);
  opacity: 1;
  transform: scale(1);
}
.p-top-cta__btn a::after {
  background: linear-gradient(138deg, #fff 57%, #81f9ff);
  opacity: 0;
  transform: scale(1.15);
}
.p-top-cta__btn a:hover::before {
  opacity: 0;
  transform: scale(1);
}
.p-top-cta__btn a:hover::after {
  opacity: 1;
  transform: scale(1.15);
}
.p-top-cta__btn a img {
  width: 1.8rem;
  height: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta__btn a img {
    width: 1.6rem;
    height: 1rem;
  }
}
.p-top-cta__btn a p {
  line-height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #5188f1;
}
@media screen and (max-width: 767px) {
  .p-top-cta__btn a p {
    font-size: 1.4rem;
  }
}
.p-top-cta__detail {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .p-top-cta__detail {
    width: calc(100% - 32rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-cta__detail {
    max-width: none;
    width: 100%;
    gap: 1.6rem;
    margin-bottom: 4rem;
  }
}
.p-top-cta__detail p {
  line-height: 250%;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .p-top-cta__detail p {
    font-size: 1.6rem;
    line-height: 200%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-cta__detail p {
    font-size: 1.4rem;
  }
}
.p-top-column__container {
  position: relative;
  overflow: hidden;
}
.p-top-column__container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/top/bg_column.png") center no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
  z-index: 0;
  pointer-events: none;
}
.p-top-column__container.is-active::after {
  opacity: 1;
}
.p-top-column__inner {
  width: min(90%, 1000px);
  margin: 0 auto;
  padding: 12rem 0;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-top-column__inner {
    padding: 8rem 0;
  }
}
.p-top-column__info {
  margin-bottom: 4rem;
}
.p-top-column__list {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.p-top-column__item a {
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url("../images/common/ico_right.svg");
  background-size: 40px auto;
  background-position: center right 4rem;
  background-repeat: no-repeat;
  border-radius: 2rem;
  padding: 3.2rem 10rem 3.2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__item a {
    background-image: url("../images/common/ico_right.svg");
    background-size: 30px auto;
    background-position: center right 2rem;
    padding: 2.4rem 5rem 2.4rem 2.4rem;
  }
}
.p-top-column__item a {
  width: 100%;
  display: block;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.p-top-column__item a:hover {
  background-color: #d0e4fb;
}
@media screen and (max-width: 767px) {
  .p-top-column__item a {
    gap: 1rem;
  }
}
.p-top-column__item-date {
  font-size: 1.4rem;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-column__item-date {
    font-size: 1.3rem;
  }
}
.p-top-column__item-cate {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 100%;
  border-radius: 5rem;
  border: 0.2rem solid #5188f1;
  padding: 0.5rem 1.6rem;
  color: #5188f1;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-column__item-cate {
    font-size: 1.2rem;
    padding: 0.3rem 1.6rem;
  }
}
.p-top-column__item-ttl {
  line-height: 175%;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-column__item-ttl {
    width: calc(100% - 1rem);
    font-size: 1.4rem;
    text-align: left;
  }
}
.p-top-contact {
  position: relative;
}
.p-top-contact__inner {
  width: min(90%, 1000px);
  margin: 0 auto;
  padding: 12rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__inner {
    padding: 8rem 0;
  }
}
.p-top-contact__info {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__info {
    margin-bottom: 4rem;
  }
}
.p-top-contact__contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4.8rem 0;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__contents {
    gap: 4rem 0;
    margin-bottom: 4rem;
  }
}

.p-thanks {
  overflow: hidden;
}
.p-thanks-intro {
  position: relative;
  z-index: 0;
  z-index: 0;
}
.p-thanks-intro__container {
  position: relative;
}
.p-thanks-intro__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 12rem 0;
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-thanks-intro__inner {
    padding: 8rem 0;
    gap: 4rem;
  }
}
.p-thanks-intro__wrap {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-thanks-intro__wrap {
    gap: 2.4rem;
  }
}
.p-thanks-intro__wrap h3 {
  font-size: 3.2rem;
  text-align: center;
  line-height: 175%;
}
@media screen and (max-width: 767px) {
  .p-thanks-intro__wrap h3 {
    font-size: 2.6rem;
  }
}
.p-thanks-intro__wrap p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks-intro__wrap p {
    text-align: left;
  }
}

.p-about {
  overflow: clip;
  z-index: 1;
}
.p-about-intro {
  position: relative;
  z-index: 0;
}
.p-about-intro__container {
  position: relative;
  z-index: 1;
}
.p-about-intro__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .p-about-intro__inner {
    padding: 8rem 0;
  }
}
.p-about-intro__wrap {
  display: flex;
  align-items: flex-start;
  gap: 10rem;
}
@media screen and (max-width: 1024px) {
  .p-about-intro__wrap {
    gap: 5.6rem;
    flex-wrap: wrap;
  }
}
.p-about-intro__ttl {
  width: 39rem;
  position: sticky;
  top: 20rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-about-intro__ttl {
    width: 100%;
    position: relative;
    top: 0;
  }
}
.p-about-intro__ttl p {
  color: #5188f1;
  font-size: 2.4rem;
  line-height: 100%;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 1024px) {
  .p-about-intro__ttl p {
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-intro__ttl p {
    font-size: 2rem;
  }
}
.p-about-intro__ttl img {
  width: 66%;
}
@media screen and (max-width: 1024px) {
  .p-about-intro__ttl img {
    width: 38%;
  }
}
@media screen and (max-width: 767px) {
  .p-about-intro__ttl img {
    width: 66%;
  }
}
.p-about-intro__contents {
  width: calc(100% - 49rem);
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 1024px) {
  .p-about-intro__contents {
    width: 100%;
    gap: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-intro__contents {
    gap: 4rem;
  }
}
.p-about-intro__content p span.en {
  display: inline-block;
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-about-intro__content p span.en {
    font-size: 2rem;
  }
}
.p-about-intro__content h3 {
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  line-height: 175%;
}
@media screen and (max-width: 767px) {
  .p-about-intro__content h3 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
.p-about-intro__content-txt {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.p-about-intro__content-txt p {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-about-intro__content-txt p {
    font-size: 1.4rem;
  }
}
.p-about-message {
  overflow: hidden;
}
.p-about-message__container {
  background: url("../images/top/bg_works.png") center bottom no-repeat;
  background-size: cover;
}
.p-about-message__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 14rem 0;
}
@media screen and (max-width: 767px) {
  .p-about-message__inner {
    padding: 8rem 0;
  }
}
.p-about-message__info {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__info {
    margin-bottom: 4rem;
  }
}
.p-about-message__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.p-about-message__wrap-txt {
  width: 72.5%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap-txt {
    width: 100%;
  }
}
.p-about-message__wrap-txt h4 {
  color: #5188f1;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap-txt h4 {
    font-size: 1.8rem;
  }
}
.p-about-message__wrap-pht {
  width: 20%;
}
.p-about-message__wrap-pht img {
  border-radius: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap-pht {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }
  .p-about-message__wrap-pht picture {
    width: 40%;
  }
  .p-about-message__wrap-pht h4 {
    width: 57%;
  }
}
@media screen and (max-width: 320px) {
  .p-about-message__wrap-pht picture {
    width: 24%;
  }
  .p-about-message__wrap-pht h4 {
    width: 74%;
  }
}

.p-sitemap {
  overflow: clip;
}
.p-sitemap-intro {
  position: relative;
  z-index: 0;
}
.p-sitemap-intro__container {
  position: relative;
}
.p-sitemap-intro__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .p-sitemap-intro__inner {
    padding: 8rem 0;
  }
}
.p-sitemap-intro__wrap {
  display: flex;
  align-items: flex-start;
  gap: 10rem;
}
@media screen and (max-width: 1024px) {
  .p-sitemap-intro__wrap {
    gap: 5.6rem;
    flex-wrap: wrap;
  }
}
.p-sitemap-intro-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3.2rem 5%;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-sitemap-intro-list {
    gap: 1.6rem;
  }
}
.p-sitemap-intro-list__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .p-sitemap-intro-list__item {
    width: 47.5%;
  }
}
@media screen and (max-width: 767px) {
  .p-sitemap-intro-list__item {
    width: 100%;
  }
}
.p-sitemap-intro-list__item a {
  display: block;
  width: 100%;
  padding: 1.6rem;
  font-size: 1.6rem;
  background-color: rgba(255, 255, 255, 0.25);
  background-image: url("../images/common/ico_right.svg");
  background-repeat: no-repeat;
  background-position: center right 1.6rem;
  background-size: 2.4rem auto;
  border-radius: 0.8rem;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 20px rgba(81, 136, 241, 0.15), inset 0 0 60px rgba(81, 136, 241, 0.1);
}
@media screen and (max-width: 767px) {
  .p-sitemap-intro-list__item a {
    font-size: 1.4rem;
  }
}
.p-sitemap-intro-list__item a:hover {
  background-color: #f0f6ff;
}
.p-sitemap-intro-list__item a img {
  width: 24px;
  margin-right: 1.2rem;
  vertical-align: middle;
}
.p-sitemap-intro-list__item a:hover {
  color: #5188f1;
}

.p-works-archive {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.p-works-archive-works__container {
  position: relative;
  z-index: 1;
}
.p-works-archive-works__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .p-works-archive-works__inner {
    padding: 8rem 0;
  }
}
.p-works-archive-works__contents {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8rem 2.5%;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 1024px) {
  .p-works-archive-works__contents {
    gap: 4rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-works-archive-works__contents {
    margin-bottom: 4rem;
  }
}
.p-works-archive-works__content {
  width: 31.6%;
}
@media screen and (max-width: 1024px) {
  .p-works-archive-works__content {
    width: 100%;
  }
}
.p-works-archive-works__content a {
  display: block;
  width: 100%;
}
.p-works-archive-works__content a:hover img {
  transform: scale(1.05);
}
.p-works-archive-works__content-img {
  margin-bottom: 2.4rem;
  border-radius: 1.2rem;
  overflow: hidden;
}
.p-works-archive-works__content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 380/457;
  transition: transform 0.8s ease;
}
.p-works-archive-works__detail-cate {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 100%;
  padding: 0.8rem 1.6rem;
  box-sizing: border-box;
  border: 2px solid #5188f1;
  color: #5188f1;
  margin-bottom: 1.6rem;
  border-radius: 50px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-works-archive-works__detail-cate {
    font-size: 1.2rem;
  }
}
.p-works-archive-works__detail-ttl {
  font-size: 2.4rem;
  line-height: 175%;
}
@media screen and (max-width: 767px) {
  .p-works-archive-works__detail-ttl {
    font-size: 2rem;
  }
}
.p-works-archive-works__detail-name {
  margin-bottom: 2.4rem;
  color: #c1c1c1;
}
@media screen and (max-width: 767px) {
  .p-works-archive-works__detail-name {
    margin-bottom: 1.6rem;
  }
}
.p-works-archive-works__detail-tagList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem 0.5rem;
}
.p-works-archive-works__detail-tagList li {
  font-size: 1.2rem;
  line-height: 100%;
  background: #d0e4fb url("../images/common/ico_tag.svg") top 8px left 10px no-repeat;
  background-size: 8px auto;
  padding: 0.5rem 1rem 0.7rem 2rem;
  border-radius: 50px;
}
.p-works-single {
  overflow: hidden;
}
.p-works-single-body {
  position: relative;
}
.p-works-single-body img {
  border-radius: 0.8rem;
}
.p-works-single-body__inner {
  width: min(90%, 800px);
  margin: 0 auto;
  padding: 10rem 0 14rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-works-single-body__inner {
    padding: 6.4rem 0 8rem;
  }
}
.p-works-single-body__ttl-cate {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 100%;
  padding: 0.8rem 1.6rem;
  box-sizing: border-box;
  border: 2px solid #5188f1;
  color: #5188f1;
  margin-bottom: 2.4rem;
  border-radius: 50px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-works-single-body__ttl-cate {
    font-size: 1.4rem;
  }
}
.p-works-single-body__ttl-ttl {
  font-size: 3.2rem;
  line-height: 175%;
}
@media screen and (max-width: 767px) {
  .p-works-single-body__ttl-ttl {
    font-size: 2.4rem;
  }
}
.p-works-single-body__ttl-name {
  margin-bottom: 2.4rem;
  color: #c1c1c1;
}
.p-works-single-body__ttl-tagList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem 0.5rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-works-single-body__ttl-tagList {
    margin-bottom: 4rem;
  }
}
.p-works-single-body__ttl-tagList li {
  font-size: 1.2rem;
  line-height: 100%;
  background: #d0e4fb url("../images/common/ico_tag.svg") top 8px left 10px no-repeat;
  background-size: 8px auto;
  padding: 0.5rem 1rem 0.7rem 2rem;
  border-radius: 50px;
}
.p-works-single-body__detail {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  padding-top: 2.4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-works-single-body__detail {
    padding-top: 1.6rem;
    gap: 6.4rem;
  }
}
.p-works-single-body__detail h3 {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  color: #515158;
  border-radius: 0.8rem;
  padding: 0 0 1.2rem;
  position: relative;
}
.p-works-single-body__detail h3::before {
  position: absolute;
  width: 4rem;
  height: 3px;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  background: linear-gradient(138deg, #81f9ff, #5188f1 50%);
}
@media screen and (max-width: 767px) {
  .p-works-single-body__detail h3 {
    font-size: 2rem;
  }
}
.p-works-single-body__detail h4 {
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-works-single-body__detail h4 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
}
.p-works-single-body__detail p {
  line-height: 175%;
  color: #515158;
  text-align: justify;
}
.p-works-single-body__detail strong {
  font-weight: 700;
  color: #5188f1;
}
.p-works-single-body__detail img {
  border-radius: 0.8rem;
}
.p-works-single-body__detail a {
  text-decoration: underline;
  color: #5188f1;
}
.p-works-single-body__detail a:hover {
  color: #d0e4fb;
}
.p-works-single-body__detail .imgItem figure {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-works-single-body__detail .imgItem figure {
    margin-bottom: 1.6rem;
  }
}

.p-notfound {
  overflow: clip;
}
.p-notfound-intro {
  position: relative;
  z-index: 0;
}
.p-notfound-intro__container {
  position: relative;
}
.p-notfound-intro__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .p-notfound-intro__inner {
    padding: 8rem 0;
  }
}
.p-notfound-intro__inner p {
  text-align: center;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-notfound-intro__inner p {
    text-align: left;
    margin-bottom: 4rem;
  }
}
.p-notfound-intro-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3.2rem 5%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-notfound-intro-list {
    gap: 1.6rem;
  }
}
.p-notfound-intro-list__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .p-notfound-intro-list__item {
    width: 47.5%;
  }
}
@media screen and (max-width: 767px) {
  .p-notfound-intro-list__item {
    width: 100%;
  }
}
.p-notfound-intro-list__item a {
  display: block;
  width: 100%;
  padding: 1.6rem;
  font-size: 1.6rem;
  background-color: rgba(255, 255, 255, 0.25);
  background-image: url("../images/common/ico_right.svg");
  background-repeat: no-repeat;
  background-position: center right 1.6rem;
  background-size: 2.4rem auto;
  border-radius: 0.8rem;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 20px rgba(81, 136, 241, 0.15), inset 0 0 60px rgba(81, 136, 241, 0.1);
}
@media screen and (max-width: 767px) {
  .p-notfound-intro-list__item a {
    font-size: 1.4rem;
  }
}
.p-notfound-intro-list__item a:hover {
  background-color: #f0f6ff;
}
.p-notfound-intro-list__item a img {
  width: 24px;
  margin-right: 1.2rem;
  vertical-align: middle;
}
.p-notfound-intro-list__item a:hover {
  color: #5188f1;
}

.p-column {
  z-index: 1;
}
.p-column-archive {
  overflow: hidden;
  position: relative;
}
.p-column-archive-column__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .p-column-archive-column__inner {
    padding: 8rem 0;
  }
}
.p-column-archive-column__list {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.p-column-archive-column__item a {
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #ffffff;
  box-shadow: 0 6px 20px rgba(81, 136, 241, 0.15), inset 0 0 60px rgba(81, 136, 241, 0.1);
  background-image: url("../images/common/ico_right.svg");
  background-size: 40px auto;
  background-position: center right 4rem;
  background-repeat: no-repeat;
  border-radius: 2rem;
  padding: 3.2rem 10rem 3.2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-column-archive-column__item a {
    background-image: url("../images/common/ico_right.svg");
    background-size: 30px auto;
    background-position: center right 2rem;
    padding: 2.4rem 5rem 2.4rem 2.4rem;
  }
}
.p-column-archive-column__item a {
  width: 100%;
  display: block;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.p-column-archive-column__item a:hover {
  background-color: #d0e4fb;
}
@media screen and (max-width: 767px) {
  .p-column-archive-column__item a {
    gap: 1rem;
  }
}
.p-column-archive-column__item-date {
  font-size: 1.4rem;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-column-archive-column__item-date {
    font-size: 1.3rem;
  }
}
.p-column-archive-column__item-cate {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 100%;
  border-radius: 5rem;
  border: 0.2rem solid #5188f1;
  padding: 0.5rem 1.6rem;
  color: #5188f1;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-column-archive-column__item-cate {
    font-size: 1.2rem;
    padding: 0.3rem 1.6rem;
  }
}
.p-column-archive-column__item-ttl {
  line-height: 175%;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-column-archive-column__item-ttl {
    width: calc(100% - 1rem);
    font-size: 1.4rem;
    text-align: left;
  }
}
.p-column-single {
  overflow: hidden;
}
.p-column-single-body {
  position: relative;
}
.p-column-single-body__inner {
  width: min(90%, 800px);
  margin: 0 auto;
  padding: 10rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .p-column-single-body__inner {
    padding: 6.4rem 0 8rem;
  }
}
.p-column-single-body__container {
  position: relative;
  z-index: 1;
}
.p-column-single-body__ttl-cate {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 100%;
  padding: 0.8rem 1.6rem;
  box-sizing: border-box;
  border: 2px solid #5188f1;
  color: #5188f1;
  margin-bottom: 2.4rem;
  border-radius: 50px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-column-single-body__ttl-cate {
    font-size: 1.4rem;
  }
}
.p-column-single-body__ttl-ttl {
  font-size: 3.2rem;
  line-height: 175%;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-column-single-body__ttl-ttl {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
.p-column-single-body__detail {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-column-single-body__detail {
    gap: 6.4rem;
  }
}
.p-column-single-body__detail h3 {
  font-size: 2.4rem;
  color: #515158;
  background: #f0f6ff;
  border-radius: 0.8rem;
  padding: 1.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-column-single-body__detail h3 {
    font-size: 2rem;
  }
}
.p-column-single-body__detail h4 {
  font-size: 2rem;
  color: #515158;
  border-radius: 0.8rem;
  padding: 0 0 1.2rem;
  position: relative;
}
.p-column-single-body__detail h4::before {
  position: absolute;
  width: 4rem;
  height: 3px;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  background: linear-gradient(138deg, #81f9ff, #5188f1 50%);
}
@media screen and (max-width: 767px) {
  .p-column-single-body__detail h4 {
    font-size: 1.8rem;
  }
}
.p-column-single-body__detail p {
  line-height: 175%;
  color: #515158;
}
.p-column-single-body__detail a {
  text-decoration: underline;
  color: #5188f1;
}
.p-column-single-body__detail a:hover {
  color: #d0e4fb;
}
.p-column-single-body__detail .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.p-column-single-body__detail .wp-block-image {
  background: #f8f8f8;
  text-align: center;
  padding: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-column-single-body__detail .wp-block-image {
    padding: 1.6rem;
  }
}
.p-column-single-body__detail .wp-block-image img {
  max-width: 60rem !important;
  width: 100% !important;
}
.p-column-single-body__detail .introItem {
  border-radius: 0.8rem;
  padding: 1.6rem 2.4rem;
  border: 2px solid #c1c1c1;
}
.p-column-single-body__detail .code-block-pro-copy-button:not([data-has-text-button]) {
  color: #5188f1 !important;
  opacity: 1 !important;
}
.p-column-single-body__detail .code-block-pro-copy-button:not([data-has-text-button]):hover {
  opacity: 0.75 !important;
}
.p-column-single-body__detail pre {
  font-size: 1.6rem !important;
}
@media screen and (max-width: 767px) {
  .p-column-single-body__detail pre {
    font-size: 1.4rem !important;
  }
}

.p-privacy {
  overflow: hidden;
}
.p-privacy-body {
  position: relative;
  z-index: 0;
}
.p-privacy-body__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .p-privacy-body__inner {
    padding: 6rem 0;
  }
}
.p-privacy-body__contents {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-body__contents {
    gap: 4rem;
  }
}
.p-privacy-body__content-ttl {
  font-size: 2rem;
  margin-bottom: 1.6rem;
  color: #515158;
  border-radius: 0.8rem;
  padding: 0 0 1.2rem;
  position: relative;
}
.p-privacy-body__content-ttl::before {
  position: absolute;
  width: 100%;
  height: 2px;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  background: linear-gradient(138deg, #81f9ff, #5188f1 50%);
}
@media screen and (max-width: 767px) {
  .p-privacy-body__content-ttl {
    font-size: 1.8rem;
  }
}
.p-privacy-body__content-txt {
  line-height: 175%;
}
.p-privacy-body__content a {
  text-decoration: underline;
  font-size: 1.6rem;
  word-break: break-all;
  color: #5188f1;
}
@media screen and (max-width: 767px) {
  .p-privacy-body__content a {
    font-size: 1.4rem;
  }
}
.p-privacy-body__content a:hover {
  color: #5188f1;
}
.p-privacy-body__list {
  margin-top: 1.6rem;
}
.p-privacy-body__item {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .p-privacy-body__item {
    font-size: 1.2rem;
  }
}
.p-privacy-body__item--indent {
  text-indent: -2.7em;
  padding-left: 2.7em;
}
