@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

@media screen and (max-width: 1119px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1120 * 100vw);
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #313131;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #F5EFE6;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    width: clamp(42.5rem, -6.25rem + 101.5625vw, 75rem);
    padding-inline: 40px;
    margin-inline: auto;
  }
}

.c-button {
  padding: 20px 50px 20px 30px;
  background: #2C3E50;
  color: #ffffff;
}
.c-button::after {
  content: "";
  position: absolute;
  background: url() no-repeat center center/cover;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 12px;
}

.c-animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  -webkit-transition: translate 0.7s ease, opacity 0.7s ease;
  transition: translate 0.7s ease, opacity 0.7s ease;
}
.c-animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.c-animated__slideIn--left {
  opacity: 0;
  translate: -1000px 0;
  -webkit-transition: translate 0.7s ease, opacity 0.7s ease;
  transition: translate 0.7s ease, opacity 0.7s ease;
}
.c-animated__slideIn--left.js-show {
  opacity: 1;
  translate: 0 0;
}

.c-animated__slideIn--right {
  opacity: 0;
  translate: 1000px 0;
  -webkit-transition: translate 0.7s ease, opacity 0.7s ease;
  transition: translate 0.7s ease, opacity 0.7s ease;
}
.c-animated__slideIn--right.js-show {
  opacity: 1;
  translate: 0 0;
}

@-webkit-keyframes lineGrow {
  0% {
    width: 0;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    width: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes lineGrow {
  0% {
    width: 0;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    width: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-section-title {
  display: inline-block;
  text-align: center;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#4361ee), to(#7209b7));
  background: linear-gradient(90deg, #4361ee, #7209b7);
  border-radius: 2px;
  opacity: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-section-title.is-animated::after {
  -webkit-animation: lineGrow 0.8s forwards 0.8s;
          animation: lineGrow 0.8s forwards 0.8s;
  opacity: 1;
}

.c-section-title__en {
  display: block;
  font-size: 2.5rem;
  color: #313131;
  font-weight: 700;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.c-section-title.is-animated .c-section-title__en {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 3.75rem;
  }
}

.c-section-title__ja {
  display: block;
  font-size: 1.25rem;
  color: #313131;
  margin-top: 1.25rem;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.c-section-title.is-animated .c-section-title__ja {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .c-section-title__ja {
    font-size: 1.75rem;
    margin-top: 1.5625rem;
  }
}

.c-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(29, 60, 143, 0.9), rgba(74, 6, 102, 0.9));
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  z-index: 100;
}
.c-to-top::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translateY(2px) rotate(45deg);
          transform: translateY(2px) rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  margin-top: -4px;
}
.c-to-top.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-to-top:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, rgb(29, 60, 143), rgb(74, 6, 102));
}
.c-to-top:active {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-to-top {
    width: 45px;
    height: 45px;
    right: 15px;
    bottom: 15px;
  }
}

.p-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 60, 143, 0.95)), to(rgba(74, 6, 102, 0.95)));
  background: linear-gradient(90deg, rgba(29, 60, 143, 0.95), rgba(74, 6, 102, 0.95));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-inline: 1.25rem;
}
.p-header.is-scrolled {
  padding-block: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 60, 143, 0.98)), to(rgba(74, 6, 102, 0.98)));
  background: linear-gradient(90deg, rgba(29, 60, 143, 0.98), rgba(74, 6, 102, 0.98));
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.p-header.is-scrolled .p-header__inner {
  padding-block: 0.625rem;
}
.p-header.is-scrolled .p-header__logo {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
@media screen and (min-width: 768px) {
  .p-header {
    padding-inline: 2.5rem;
  }
}

.p-header__inner {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 18.75rem 1fr;
  padding-block: 1.0625rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-header__logo {
  font-size: 1.875rem;
  font-weight: 700;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  letter-spacing: 0.5px;
  display: inline-block;
}
.p-header__logo:hover {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
.p-header__list li {
  position: relative;
}
.p-header__list li a {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.3125rem 0.625rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.p-header__list li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.p-header__list li a:hover {
  opacity: 0.9;
}
.p-header__list li a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.p-header__list li a.is-active {
  font-weight: 700;
}
.p-header__list li a.is-active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-drawer__icon {
  position: fixed;
  z-index: 102;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 23px;
  right: 20px;
  width: 24px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .p-drawer__icon {
    display: none;
  }
}

.p-drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #fff;
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.p-drawer {
  position: fixed;
  z-index: 101;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 278px;
  height: 100vh;
  height: 100svh;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 60, 143, 0.98)), to(rgba(74, 6, 102, 0.98)));
  background: linear-gradient(90deg, rgba(29, 60, 143, 0.98), rgba(74, 6, 102, 0.98));
}

.p-drawer__icon--bar {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-drawer {
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.p-drawer.js-show {
  translate: 0;
}

.p-drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 88px 40px;
  padding-left: 34px;
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
  margin-bottom: 40px;
  color: #fff;
}
.p-drawer__list li a {
  font-size: 20px;
  font-weight: 400;
}

.p-drawer__btn {
  display: inline-block;
  padding: 6px 30px;
  background: #fff;
  font-size: 20px;
  font-weight: 400;
}

.p-footer {
  padding: 30px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 60, 143, 0.98)), to(rgba(74, 6, 102, 0.98)));
  background: linear-gradient(90deg, rgba(29, 60, 143, 0.98), rgba(74, 6, 102, 0.98));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.p-footer::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  bottom: -120px;
  right: -80px;
  z-index: 0;
}

.p-footer__inner {
  width: min(1120px, 100%);
  padding-inline: 40px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.p-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-footer__sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.p-footer__sns-link:hover {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.p-footer__sns-link:hover .p-footer__sns-icon {
  fill: #fff;
}

.p-footer__sns-icon {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.9);
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.p-footer__copy {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-footer {
    padding: 25px 0;
  }
  .p-footer__inner {
    gap: 15px;
  }
  .p-footer__copy {
    font-size: 0.75rem;
  }
}
.p-fv {
  position: relative;
  margin-top: 7.125rem;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding-bottom: 2.5rem;
    margin-top: 3.75rem;
  }
}

.p-fv__swiper-wrapper {
  width: 80%;
  height: auto;
  margin-inline: auto;
  padding-right: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-fv__swiper-wrapper {
    width: 100%;
    height: 80vh;
    padding-inline: 0;
    margin-inline: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__swiper-slide {
    height: 100%;
  }
}

.p-fv__swiper-container {
  position: relative;
}

.p-fv__swiper-img {
  width: 80%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-fv__swiper-img {
    width: 100%;
    height: 100%;
  }
}
.p-fv__swiper-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-fv__swiper-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.p-fv__pagination {
  position: absolute;
  top: 0;
  left: calc(100% - 3.75rem);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .p-fv__pagination {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0.9375rem;
    left: auto;
    gap: 0.5rem;
  }
}

.p-fv__pagination-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8125rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-fv__pagination-item {
    gap: 0.625rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-fv__pagination-bar {
  width: 1px;
  height: 4.5rem;
  background-color: #d9d9d9;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-fv__pagination-bar {
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.5);
  }
}

.p-fv__progress-bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #313131;
  -webkit-transform-origin: top;
          transform-origin: top;
}
@media screen and (max-width: 767px) {
  .p-fv__progress-bar-inner {
    background-color: #fff;
  }
}

.p-fv__pagination-number {
  color: #313131;
  font-family: "Zen Old Mincho", serif;
  font-size: max(0.875rem, 11.2px);
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.0714285714em;
}
@media screen and (max-width: 767px) {
  .p-fv__pagination-number {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__pagination-number {
    font-size: max(0.625rem, 8px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-fv__pagination-number {
    font-size: 0.625rem;
  }
}

.p-fv__pagination-item .is-past .p-fv__progress-bar-inner {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transition: none;
  transition: none; /* アニメーションは不要 */
}

.p-fv__pagination-item .is-active .p-fv__progress-bar-inner {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transition: -webkit-transform 3s linear;
  transition: -webkit-transform 3s linear;
  transition: transform 3s linear;
  transition: transform 3s linear, -webkit-transform 3s linear; /* アニメーションを適用 */
}

.p-fv__pagination-item .is-future .p-fv__progress-bar-inner {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-fv__title {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  mix-blend-mode: difference;
  position: absolute;
  left: -20px;
  bottom: 20px;
  z-index: 10;
  font-size: max(3.125rem, 40px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.0304em;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    font-size: 3.125rem;
  }
}
.p-fv__title .char {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    font-size: max(2.5rem, 32px);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
    top: 1.25rem;
    bottom: auto;
    left: 1.25rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-fv__title {
    font-size: 2.5rem;
  }
}

.p-fv__scroll {
  position: absolute;
  right: 2.75rem;
  bottom: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .p-fv__scroll {
    left: 50%;
    translate: -50%;
    bottom: auto;
    top: calc(80vh + 1.25rem);
    text-align: center;
  }
}

.p-fv__scroll-text {
  font-family: "Roboto", sans-serif;
  font-size: max(0.75rem, 9.6px);
  font-weight: 400;
  line-height: 1.0833333333;
  letter-spacing: 0.4833333333em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-fv__scroll-text {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__scroll-text {
    font-size: max(0.5rem, 6.4px);
    font-weight: 400;
    line-height: 1.125;
    letter-spacing: 0.4em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-fv__scroll-text {
    font-size: 0.5rem;
  }
}
.p-fv__scroll-text::before {
  content: "";
  position: absolute;
  width: 7rem;
  height: 1px;
  background: #000;
  left: 50%;
  translate: -50%;
  bottom: -0.75rem;
}
@media screen and (max-width: 767px) {
  .p-fv__scroll-text::before {
    width: 4.5rem;
    height: 0.5px;
    bottom: -0.375rem;
  }
}
.p-fv__scroll-text::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 1.125rem;
  left: 50%;
  translate: -50%;
  bottom: -50px;
  background: url(../img/arrow.svg) no-repeat center center/cover;
  -webkit-animation: scrollDown 2s ease forwards infinite;
          animation: scrollDown 2s ease forwards infinite;
}
@media screen and (max-width: 767px) {
  .p-fv__scroll-text::after {
    width: 0.375rem;
    height: 0.6875rem;
    bottom: -36px;
    -webkit-animation: scrollDownSp 2s ease forwards infinite;
            animation: scrollDownSp 2s ease forwards infinite;
  }
}

@-webkit-keyframes scrollDown {
  0% {
    bottom: -50px;
  }
  80% {
    bottom: -58px;
  }
  100% {
    bottom: -58px;
  }
}

@keyframes scrollDown {
  0% {
    bottom: -50px;
  }
  80% {
    bottom: -58px;
  }
  100% {
    bottom: -58px;
  }
}
@-webkit-keyframes scrollDownSp {
  0% {
    bottom: -36px;
  }
  80% {
    bottom: -40px;
  }
  100% {
    bottom: -40px;
  }
}
@keyframes scrollDownSp {
  0% {
    bottom: -36px;
  }
  80% {
    bottom: -40px;
  }
  100% {
    bottom: -40px;
  }
}
/* 1行を囲むspan(はみ出た部分を隠すマスクの役割) */
.line-wrap {
  display: block; /* 改行を維持するため */
  overflow: hidden;
}

/* アニメーションさせるテキスト本体 */
.line-inner {
  display: block;
}

.p-service {
  margin-top: 60px;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}
.p-service::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.05);
  top: -100px;
  left: -100px;
  z-index: 0;
}
.p-service::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(114, 9, 183, 0.03);
  bottom: -50px;
  right: -50px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding: 60px 0;
  }
}

.p-service__inner {
  width: min(1120px, 100%);
  padding-inline: 40px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.p-service__title {
  margin-bottom: 50px;
}

.p-service__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-service__cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.p-service__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 30px 40px;
  gap: 40px;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.p-service__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#4361ee), to(#7209b7));
  background: linear-gradient(90deg, #4361ee, #7209b7);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-service__card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.p-service__card:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media screen and (max-width: 767px) {
  .p-service__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }
}

.p-service-card__img {
  width: 30%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-service-card__img img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 767px) {
  .p-service-card__img {
    width: 120px;
  }
}
.p-service__card:hover .p-service-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: drop-shadow(0 8px 16px rgba(67, 97, 238, 0.2));
          filter: drop-shadow(0 8px 16px rgba(67, 97, 238, 0.2));
}

.p-service-card__body {
  width: auto;
}

.p-service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  color: #333;
  position: relative;
  padding-bottom: 12px;
}
.p-service-card__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #4361ee;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-service-card__title::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-service__card:hover .p-service-card__title::after {
  width: 60px;
}

.p-service-card__text {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6c757d;
}

.p-works {
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.p-works::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(67, 97, 238, 0.03);
  top: 10%;
  right: -250px;
  z-index: -1;
}

.p-works__inner {
  position: relative;
}

.p-works__title {
  margin-bottom: 3.75rem;
}

.p-works__cards {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-works__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.p-works__card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 1.25rem;
  -webkit-box-shadow: 0px 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  border: 1px solid rgba(240, 240, 240, 0.8);
  position: relative;
}
.p-works__card:hover .p-works__img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.p-works__img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p-works__body {
  margin-top: 1.5625rem;
}

.p-works__text {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  color: #333;
  position: relative;
  padding-bottom: 0.9375rem;
}
.p-works__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.5rem;
  height: 0.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#4361ee), to(#7209b7));
  background: linear-gradient(90deg, #4361ee, #7209b7);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.p-works__card:hover .p-works__text::after {
  width: 3.75rem;
}

.p-works__categorys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.p-works__category {
  padding: 0.375rem 0.9375rem;
  font-size: 0.8125rem;
  background: -webkit-gradient(linear, left top, right top, from(#4361ee), to(#7209b7));
  background: linear-gradient(90deg, #4361ee, #7209b7);
  color: #ffffff;
  border-radius: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 3px 8px rgba(114, 9, 183, 0.2);
          box-shadow: 0 3px 8px rgba(114, 9, 183, 0.2);
}

.p-works__table {
  margin-top: 1.5625rem;
  border-radius: 0.625rem;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.p-works__table table {
  border-collapse: collapse;
  margin-inline: auto;
  width: 100%;
}

.p-works__table th, .p-works__table td {
  padding: 0.75rem 0.625rem;
  font-size: 0.8125rem;
  word-break: break-all;
  border-bottom: 1px solid #eee;
}

.p-works__table th {
  width: 35%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
}

.p-works__table tr:last-child th,
.p-works__table tr:last-child td {
  border-bottom: none;
}

.p-works__table a {
  color: #2C3E50;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.p-works__table a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: -2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-works__table a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.p-works__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.p-works__filter-btn {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}

.p-works__filter-btn.is-active {
  background: #333;
  color: #fff;
  border-color: #333;
}

.p-about {
  padding: 100px 0 120px;
  position: relative;
  background: #F5EFE6;
  overflow: hidden;
}
.p-about::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(114, 9, 183, 0.02);
  top: -150px;
  right: -150px;
  z-index: 0;
}
.p-about::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(29, 60, 143, 0.02);
  bottom: -100px;
  left: -100px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 80px 0;
  }
}

.p-about__inner {
  position: relative;
  z-index: 1;
}

.p-about__title {
  margin-bottom: 60px;
}

.p-about__body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-about__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.p-about__img img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-about__img {
    max-width: 80%;
    margin: 0 auto;
  }
}

.p-about__text {
  color: #333;
  letter-spacing: 0.01em;
}

.p-about__intro {
  margin-bottom: 40px;
}
.p-about__intro h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1d3c8f;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.p-about__intro h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#1d3c8f), to(#4a0666));
  background: linear-gradient(90deg, #1d3c8f, #4a0666);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.p-about__intro h3:hover::after {
  width: 100%;
}
.p-about__intro p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.p-about__intro p:last-child {
  margin-bottom: 0;
}

.p-about__strength-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1d3c8f;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.p-about__strength-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#1d3c8f), to(#4a0666));
  background: linear-gradient(90deg, #1d3c8f, #4a0666);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.p-about__strength-title:hover::after {
  width: 100%;
}

.p-about__strengths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-about__strengths {
    grid-template-columns: 1fr;
  }
}

.p-about__strength-item {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-about__strength-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.p-about__strength-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #333;
}
.p-about__strength-item h4::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4a0666;
  font-weight: 700;
}
.p-about__strength-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #666;
  padding-left: 25px;
}

/* JavaScriptでアニメーションを追加する場合 */
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}
.p-contact::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(29, 60, 143, 0.03);
  top: -200px;
  right: -200px;
  z-index: 0;
}
.p-contact::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(114, 9, 183, 0.02);
  bottom: -150px;
  left: -150px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 80px 0;
  }
}

.p-contact__inner {
  position: relative;
  z-index: 1;
}

.p-contact__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    margin-bottom: 40px;
  }
}

.p-contact__form {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    padding: 30px 20px;
  }
}

.p-contact__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 30px;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__row {
    grid-template-columns: 1fr;
    margin-bottom: 25px;
    gap: 5px;
  }
}
.p-contact__row.aifs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-contact__head {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}
.p-contact__head span {
  position: relative;
  display: inline-block;
}
.p-contact__head .must {
  position: relative;
}
.p-contact__head .must::after {
  content: "必須";
  font-size: 0.75rem;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#1d3c8f), to(#4a0666));
  background: linear-gradient(90deg, #1d3c8f, #4a0666);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
}

.p-contact__data {
  width: 100%;
}
.p-contact__data input[type=text],
.p-contact__data input[type=email],
.p-contact__data textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9375rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-contact__data input[type=text]:focus,
.p-contact__data input[type=email]:focus,
.p-contact__data textarea:focus {
  outline: none;
  border-color: rgba(29, 60, 143, 0.5);
  -webkit-box-shadow: 0 0 0 3px rgba(29, 60, 143, 0.1);
          box-shadow: 0 0 0 3px rgba(29, 60, 143, 0.1);
}
.p-contact__data input[type=text]::-webkit-input-placeholder, .p-contact__data input[type=email]::-webkit-input-placeholder, .p-contact__data textarea::-webkit-input-placeholder {
  color: #aaa;
}
.p-contact__data input[type=text]::-moz-placeholder, .p-contact__data input[type=email]::-moz-placeholder, .p-contact__data textarea::-moz-placeholder {
  color: #aaa;
}
.p-contact__data input[type=text]:-ms-input-placeholder, .p-contact__data input[type=email]:-ms-input-placeholder, .p-contact__data textarea:-ms-input-placeholder {
  color: #aaa;
}
.p-contact__data input[type=text]::-ms-input-placeholder, .p-contact__data input[type=email]::-ms-input-placeholder, .p-contact__data textarea::-ms-input-placeholder {
  color: #aaa;
}
.p-contact__data input[type=text]::placeholder,
.p-contact__data input[type=email]::placeholder,
.p-contact__data textarea::placeholder {
  color: #aaa;
}
.p-contact__data textarea {
  height: 180px;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .p-contact__data textarea {
    height: 150px;
  }
}

.p-contact__data-checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .p-contact__data-checkbox {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.p-contact__data-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  padding-top: 3px;
}
.p-contact__data-checkbox label input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.p-contact__data-checkbox label input[type=checkbox] + span {
  position: relative;
  padding-left: 30px;
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.4;
}
.p-contact__data-checkbox label input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.p-contact__data-checkbox label input[type=checkbox]:checked + span::before {
  background-color: #1d3c8f;
  border-color: #1d3c8f;
}
.p-contact__data-checkbox label input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-contact__data-checkbox label input[type=checkbox]:focus + span::before {
  -webkit-box-shadow: 0 0 0 3px rgba(29, 60, 143, 0.2);
          box-shadow: 0 0 0 3px rgba(29, 60, 143, 0.2);
}
.p-contact__data-checkbox label:hover input[type=checkbox] + span::before {
  border-color: #1d3c8f;
}

.p-contact__submit {
  margin-top: 40px;
  text-align: center;
}
.p-contact__submit input[type=submit] {
  background: -webkit-gradient(linear, left top, right top, from(#1d3c8f), to(#4a0666));
  background: linear-gradient(90deg, #1d3c8f, #4a0666);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 60px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 5px 15px rgba(74, 6, 102, 0.3);
          box-shadow: 0 5px 15px rgba(74, 6, 102, 0.3);
  letter-spacing: 0.05em;
}
.p-contact__submit input[type=submit]:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(74, 6, 102, 0.4);
          box-shadow: 0 8px 20px rgba(74, 6, 102, 0.4);
}
.p-contact__submit input[type=submit]:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media screen and (max-width: 767px) {
  .p-contact__submit input[type=submit] {
    padding: 15px 40px;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Roboto", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media screen and (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}