@charset "UTF-8";
html {
  font-size: 16px;
}
@media screen and (max-width: 1214px) {
  html {
    font-size: 1.3179571664vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.0712468193vw;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 4.0712468193vw;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #222;
  line-height: 1.6875;
  letter-spacing: 0;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-header {
  width: 100%;
  height: 6.25rem;
  background-color: #F20003;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: 0.5s all;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 3.9375rem;
  }
}

.l-header__inner.l-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: inherit;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .l-header__inner.l-inner {
    padding-left: 1.5625rem;
    padding-right: 4.25rem;
  }
}

.l-header__logo {
  flex-shrink: 0;
}
.l-header__logo a {
  display: block;
}
.l-header__logo a img {
  width: 10rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-header__logo a img {
    width: 6.875rem;
  }
}

.l-pcNav {
  height: inherit;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 2.375rem;
}
@media screen and (max-width: 767px) {
  .l-pcNav {
    display: none;
  }
}

.l-pcNav__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.l-pcNav__item {
  height: inherit;
  padding: 0 0.625rem;
}
@media screen and (max-width: 1024px) {
  .l-pcNav__item {
    padding: 0 0.625rem;
  }
}
@media screen and (max-width: 1440px) {
  .l-pcNav__item {
    padding: 0 0.5rem;
  }
}

.l-pcNav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1024px) {
  .l-pcNav__link {
    font-size: 0.75rem;
  }
}
.l-pcNav__link span {
  position: relative;
}
.l-pcNav__link span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -4px;
  background-color: #fff;
  transition: width 0.3s;
}
.l-pcNav__link:hover span::after {
  width: 100%;
}

.l-header__cta {
  display: flex;
  height: inherit;
  align-items: center;
  gap: 1rem;
}
.l-header__ctaBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5625rem;
  height: 3.8125rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.625rem;
  transition: opacity 0.3s;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .l-header__ctaBtn {
    width: 8.125rem;
    height: 2.25rem;
    font-size: 0.875rem;
    padding: 0 0.625rem;
  }
}
.l-header__ctaBtn:hover {
  opacity: 0.8;
}
.l-header__ctaBtn--document {
  background-color: #fff;
  color: #032D69;
  border: 2px solid #032D69;
  display: none;
}
.l-header__ctaBtn--contact {
  background-color: #032D69;
  color: #fff;
}

.l-header__ctaIcon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .l-header__ctaIcon {
    width: 1.125rem;
    height: 1.125rem;
    margin-right: 0.375rem;
  }
}
.l-header__ctaIcon--document {
  background-image: url(../img/common/icon_book.svg);
}
.l-header__ctaIcon--mail {
  background-image: url(../img/common/icon_mail.svg);
}

.l-header__ctaTxt {
  white-space: nowrap;
}

.l-hamburger-outer {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-hamburger-outer {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.9375rem;
    height: 3.9375rem;
    background-color: #F20003;
    cursor: pointer;
    z-index: 60;
  }
}

.l-hamburger {
  width: 2rem;
  height: 1.6875rem;
  position: relative;
}
.l-hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.3s;
  left: 0;
}
.l-hamburger span:nth-child(1) {
  top: 0;
}
.l-hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l-hamburger span:nth-child(3) {
  bottom: 0;
}

.js-open .l-hamburger span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.js-open .l-hamburger span:nth-child(2) {
  opacity: 0;
}
.js-open .l-hamburger span:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
  transform: translateY(50%) rotate(-45deg);
}

.l-spNav {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-spNav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 13rem;
    box-shadow: -0.3125rem 0 0.375rem rgba(0, 0, 0, 0.16);
    height: auto;
    background-color: #F20003;
    z-index: 55;
    opacity: 0;
    visibility: hidden;
    clip-path: inset(0% 0% 0% 40%);
    transition: opacity 0.4s cubic-bezier(0.6, 0, 0.33, 1), visibility 0.4s cubic-bezier(0.6, 0, 0.33, 1), clip-path 0.4s cubic-bezier(0.6, 0, 0.33, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom-left-radius: 1.25rem;
  }
}
.l-spNav.js-open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0% 0% 0% 0%);
}

.l-spNav__inner {
  padding: 2.5rem 1.25rem 2rem;
}

.l-spNav__items {
  margin-top: 0.625rem;
}

.l-spNav__link {
  display: block;
  padding: 0.875rem 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.l-spNav__cta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.8125rem;
}

.l-spNav__ctaBtn {
  display: flex;
  align-items: center;
  height: 3rem;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  width: 9.875rem;
  max-width: 100%;
}
.l-spNav__ctaBtn--document {
  background-color: #fff;
  color: #032D69;
  border: 2px solid #032D69;
  padding-left: 3.4375rem;
}
.l-spNav__ctaBtn--contact {
  background-color: #032D69;
  color: #fff;
  padding-left: 2.6875rem;
}

.l-spNav__ctaIcon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.625rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l-spNav__ctaIcon--document {
  background-image: url(../img/common/icon_book.svg);
  left: 0.875rem;
}
.l-spNav__ctaIcon--mail {
  background-image: url(../img/common/icon_mail.svg);
  left: 1rem;
}

body.noscroll {
  overflow: hidden;
}

.l-inner {
  width: 79rem;
  max-width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.l-sec {
  padding: 3.75rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-sec {
    padding: 5rem 0 6.25rem;
  }
}
.l-sec01 {
  padding: 3.5rem 0 6.875rem;
}
@media screen and (max-width: 767px) {
  .l-sec01 {
    padding: 4.5rem 0 5.75rem;
  }
}

.c-cat {
  min-width: 6.25rem;
  font-size: 0.75rem;
  background-color: #F20003;
  padding: 0.25rem 0.625rem;
  color: #fff;
  text-align: center;
  display: inline-block;
}

.c-column2 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}

.c-column2--gap60 {
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-column2--gap60 {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .c-column2--gapSp20 {
    gap: 1.25rem;
  }
}

.c-column3 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-column4 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .c-column4--sp2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-headline {
  text-align: center;
  color: #222;
}

.c-headline__label {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.6875rem;
  font-weight: 600;
  color: #032D69;
  opacity: 0.1;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-headline__label {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-headline__label.--small {
    font-size: 1.875rem;
  }
}

.c-headline__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-top: -1.75rem;
}
@media screen and (max-width: 767px) {
  .c-headline__title {
    font-size: 1.5rem;
    margin-top: -1.25rem;
  }
}

.c-headline__subtitle {
  display: inline-block;
  margin-top: 0.625rem;
  padding-inline: 1.9375rem;
  padding-block: 0.25rem;
  background-color: #F20003;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4375rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-headline__subtitle {
    font-size: 1.5rem;
    padding-inline: 0.9375rem;
    margin-top: 0.3125rem;
  }
}

.c-headline--white {
  color: #fff;
}

.c-headline--white .c-headline__label {
  color: #fff;
  opacity: 0.2;
}

.c-headline--white .c-headline__title {
  color: #fff;
}

.c-hoverRun {
  text-decoration: none;
  color: #000;
  background-image: linear-gradient(90deg, #000, #000);
  background-repeat: no-repeat;
  display: inline;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.5s;
}

@media screen and (min-width: 768px) {
  .c-hoverRun:hover {
    background-size: 100% 1px;
  }
}
.c-hoverUnderline {
  position: relative;
  display: inline-block;
}

.c-hoverUnderline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

@media screen and (min-width: 768px) {
  .c-hoverUnderline:hover::after {
    opacity: 1;
  }
}
.c-hoverUnderline {
  position: relative;
  display: inline-block;
}

.c-hoverUnderline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
  .c-hoverUnderline:hover::after {
    opacity: 1;
  }
}
.c-imgHover {
  position: relative;
}

.c-imgHover img {
  width: 2.25rem;
  transition: 0.5s opacity;
}

.c-imgHover img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s opacity;
}

@media screen and (min-width: 769px) {
  .c-imgHover:hover img:nth-of-type(1) {
    opacity: 0;
    transition: 0.5s opacity;
  }
  .c-imgHover:hover img:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity;
  }
}
.c-imgZoom {
  position: relative;
  overflow: hidden;
}
.c-imgZoom img {
  -o-object-fit: cover;
  object-fit: cover;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
}

@media screen and (min-width: 769px) {
  .c-imgZoom:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
  }
}
.c-link {
  position: relative;
  line-height: 1;
}

.c-link::after {
  position: absolute;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  right: -0.9375rem;
  top: 0.3em;
  background: url(../img/common/link.svg) center center/contain no-repeat;
}

.c-marker {
  background: linear-gradient(transparent 70%, #FCF65F 0%);
  display: inline;
}

.c-tag {
  font-size: 0.875rem;
  color: #000;
  border: 1px solid #D9D9D9;
  padding: 0.375rem 0.5rem;
  display: inline-block;
}

.c-underBar {
  position: relative;
  display: inline-block;
}
.c-underBar::before {
  background-color: #333;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  opacity: 1;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: 0.5s;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-underBar:hover:before {
    opacity: 0;
    transition: 0.5s all;
  }
}
.p-mv__titleSub,
.p-mv__titleMain,
.p-mv__lead,
.p-mv__points,
.p-mv__cta {
  overflow: hidden;
}

.p-mv__titleMain > span {
  display: inline-block;
}

@-webkit-keyframes line {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes line {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes mvMove {
  from {
    clip-path: inset(0% 100% 0% 0%);
  }
  to {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes mvMove {
  from {
    clip-path: inset(0% 100% 0% 0%);
  }
  to {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animation-line {
  -webkit-animation: line 0.8s cubic-bezier(0.6, 0, 0.33, 1) forwards;
  animation: line 0.8s cubic-bezier(0.6, 0, 0.33, 1) forwards;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  opacity: 0;
}
.animation-line.--1 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.animation-line.--2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.animation-line.--3 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.animation-line.--4 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.animation-line.--5 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.p-mv__visual {
  -webkit-animation: mvMove 1.2s cubic-bezier(0.6, 0, 0.33, 1) forwards;
  animation: mvMove 1.2s cubic-bezier(0.6, 0, 0.33, 1) forwards;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  clip-path: inset(0% 100% 0% 0%);
}

@media screen and (max-width: 767px) {
  .p-mv__visual {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }
  .animation-line {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }
  .animation-line.--1 {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
  }
  .animation-line.--2 {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
  }
  .animation-line.--3 {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
  }
  .animation-line.--4 {
    -webkit-animation-delay: 1.9s;
    animation-delay: 1.9s;
  }
  .animation-line.--5 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
  }
}
.l-header.--sub,
.l-hamburger-outer {
  -webkit-animation: fade 0.8s cubic-bezier(0.6, 0, 0.33, 1) forwards;
  animation: fade 0.8s cubic-bezier(0.6, 0, 0.33, 1) forwards;
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
  opacity: 0;
}

.page-template-page-thanks-php .l-header.--sub,
.page-template-page-thanks-php .l-hamburger-outer {
  -webkit-animation: none;
  animation: none;
  opacity: 1;
}

/* ===============================================
# タイトルアニメーション
=============================================== */
.m-ttlAniBox .m-ttlAniTarget {
  clip-path: inset(0 100% 0 0);
}
.m-ttlAniBox.is-on .m-ttlAniTarget {
  -webkit-animation: ttlAni 1s forwards;
  animation: ttlAni 1s forwards;
}
.m-ttlAniBox.is-on .m-ttlAniTargetSlow {
  -webkit-animation: ttlAni 2.5s forwards;
  animation: ttlAni 2.5s forwards;
}

.m-ttlAni {
  clip-path: inset(0 100% 0 0);
}
.m-ttlAni.is-on {
  -webkit-animation: ttlAni 1s forwards;
  animation: ttlAni 1s forwards;
}

@-webkit-keyframes ttlAni {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}

@keyframes ttlAni {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
.m-fadeIn {
  opacity: 0;
}
.m-fadeIn.is-on {
  opacity: 1;
  transition: opacity 1.4s;
}
.m-fadeIn-bottom {
  opacity: 0;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
}
.m-fadeIn-bottom.is-on {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: opacity 1.4s cubic-bezier(0.6, 0, 0.33, 1), -webkit-transform 1.4s cubic-bezier(0.6, 0, 0.33, 1);
  transition: transform 1.4s cubic-bezier(0.6, 0, 0.33, 1), opacity 1.4s cubic-bezier(0.6, 0, 0.33, 1);
  transition: transform 1.4s cubic-bezier(0.6, 0, 0.33, 1), opacity 1.4s cubic-bezier(0.6, 0, 0.33, 1), -webkit-transform 1.4s cubic-bezier(0.6, 0, 0.33, 1);
}
.m-fadeIn-top {
  opacity: 0;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}
.m-fadeIn-top.is-on {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: opacity 1.4s cubic-bezier(0.6, 0, 0.33, 1), -webkit-transform 1.4s cubic-bezier(0.6, 0, 0.33, 1);
  transition: transform 1.4s cubic-bezier(0.6, 0, 0.33, 1), opacity 1.4s cubic-bezier(0.6, 0, 0.33, 1);
  transition: transform 1.4s cubic-bezier(0.6, 0, 0.33, 1), opacity 1.4s cubic-bezier(0.6, 0, 0.33, 1), -webkit-transform 1.4s cubic-bezier(0.6, 0, 0.33, 1);
}

@media screen and (max-width: 767px) {
  .m-fadeInSp-bottom {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  .m-fadeInSp-bottom.is-on {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: opacity 1.4s, -webkit-transform 1.4s;
    transition: transform 1.4s, opacity 1.4s;
    transition: transform 1.4s, opacity 1.4s, -webkit-transform 1.4s;
  }
}

.m-delay1 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}

.m-delay2 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

.m-delay3 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.m-delay4 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
  transition-delay: 0.4s !important;
}

.m-delay5 {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}

.m-delay6 {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}

.m-delay7 {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
  transition-delay: 0.7s !important;
}

.m-delay8 {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
  transition-delay: 0.8s !important;
}

.m-delay9 {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}

.m-delay10 {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
  transition-delay: 1s !important;
}

.m-delay11 {
  -webkit-animation-delay: 1.1s !important;
  animation-delay: 1.1s !important;
  transition-delay: 1.1s !important;
}

.m-delay12 {
  -webkit-animation-delay: 1.2s !important;
  animation-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}

.m-delay13 {
  -webkit-animation-delay: 1.3s !important;
  animation-delay: 1.3s !important;
  transition-delay: 1.3s !important;
}

.m-delay14 {
  -webkit-animation-delay: 1.4s !important;
  animation-delay: 1.4s !important;
  transition-delay: 1.4s !important;
}

.m-delay15 {
  -webkit-animation-delay: 1.5s !important;
  animation-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.m-delay16 {
  -webkit-animation-delay: 1.6s !important;
  animation-delay: 1.6s !important;
  transition-delay: 1.6s !important;
}

.m-delay17 {
  -webkit-animation-delay: 1.7s !important;
  animation-delay: 1.7s !important;
  transition-delay: 1.7s !important;
}

.m-delay18 {
  -webkit-animation-delay: 1.8s !important;
  animation-delay: 1.8s !important;
  transition-delay: 1.8s !important;
}

.m-delay19 {
  -webkit-animation-delay: 1.9s !important;
  animation-delay: 1.9s !important;
  transition-delay: 1.9s !important;
}

.m-delay20 {
  -webkit-animation-delay: 2s !important;
  animation-delay: 2s !important;
  transition-delay: 2s !important;
}

.m-delay21 {
  -webkit-animation-delay: 2.1s !important;
  animation-delay: 2.1s !important;
  transition-delay: 2.1s !important;
}

.m-delay22 {
  -webkit-animation-delay: 2.2s !important;
  animation-delay: 2.2s !important;
  transition-delay: 2.2s !important;
}

.m-delay23 {
  -webkit-animation-delay: 2.3s !important;
  animation-delay: 2.3s !important;
  transition-delay: 2.3s !important;
}

.m-delay24 {
  -webkit-animation-delay: 2.4s !important;
  animation-delay: 2.4s !important;
  transition-delay: 2.4s !important;
}

.m-delay25 {
  -webkit-animation-delay: 2.5s !important;
  animation-delay: 2.5s !important;
  transition-delay: 2.5s !important;
}

.m-delay26 {
  -webkit-animation-delay: 2.6s !important;
  animation-delay: 2.6s !important;
  transition-delay: 2.6s !important;
}

.m-delay27 {
  -webkit-animation-delay: 2.7s !important;
  animation-delay: 2.7s !important;
  transition-delay: 2.7s !important;
}

.m-delay28 {
  -webkit-animation-delay: 2.8s !important;
  animation-delay: 2.8s !important;
  transition-delay: 2.8s !important;
}

.m-delay29 {
  -webkit-animation-delay: 2.9s !important;
  animation-delay: 2.9s !important;
  transition-delay: 2.9s !important;
}

.m-delay30 {
  -webkit-animation-delay: 3s !important;
  animation-delay: 3s !important;
  transition-delay: 3s !important;
}

.p-about {
  padding-block: 4.75rem 4.6875rem;
  background: linear-gradient(to bottom, #F20003, #FF6568);
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 3.75rem 0;
  }
}

.p-about__box {
  background-color: #fff;
  border-radius: 1.5625rem;
  padding-block: 3.125rem 4.25rem;
  padding-inline: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-about__box {
    padding: 1.875rem 1.25rem;
  }
}

.p-about__content {
  margin-top: 1.5rem;
  max-width: 58.75rem;
  margin-inline: auto;
}

.p-about__text {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 0.875rem;
    text-align: left;
    margin-top: 0.9375rem;
  }
}
.p-about__text:first-child {
  margin-top: 0;
}

.p-contact {
  background-color: rgba(222, 222, 222, 0.79);
  padding-block: 5rem 4.375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 3.125rem;
  }
}

.p-contact__inner {
  width: 100%;
  max-width: 90.875rem;
}

.p-contact__form {
  margin-top: 3.3125rem;
  width: 100%;
  max-width: 60.375rem;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 1.5625rem;
  padding-block: 2.9375rem 3.5rem;
  padding-inline: 5rem 5.9375rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    padding: 1.875rem 1.25rem;
    border-radius: 0.9375rem;
    margin-top: 1.875rem;
  }
}

.p-contact__row {
  margin-top: 1.75rem;
}
.p-contact__row:first-child {
  margin-top: 0;
}

.p-contact__field {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__field {
    flex-direction: column;
    gap: 0.625rem;
  }
}

.p-contact__field--textarea {
  align-items: flex-start;
}

.p-contact__labelWrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 11.25rem;
  padding-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__labelWrap {
    min-width: auto;
    padding-top: 0;
  }
}

.p-contact__labelText {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}

.p-contact__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #F20003;
  color: #fff;
  font-family: "Yu Gothic", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.625rem;
  line-height: 1;
  min-width: 2.5rem;
  height: 1.25rem;
}

.p-contact__input {
  width: 36.1875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input {
    width: 100%;
  }
}

.p-contact__inputGroup {
  display: flex;
  gap: 1.25rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-contact__inputGroup {
    flex-direction: column;
    gap: 0.625rem;
  }
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.p-contact__form input[type=text],
.p-contact__form input[type=email],
.p-contact__form input[type=tel],
.p-contact__form textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid #BEBEBE;
  border-radius: 0.3125rem;
  padding: 0.625rem 0.9375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  color: #222;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.p-contact__form input[type=text]::-webkit-input-placeholder, .p-contact__form input[type=email]::-webkit-input-placeholder, .p-contact__form input[type=tel]::-webkit-input-placeholder, .p-contact__form textarea::-webkit-input-placeholder {
  color: #BEBEBE;
}
.p-contact__form input[type=text]:-ms-input-placeholder, .p-contact__form input[type=email]:-ms-input-placeholder, .p-contact__form input[type=tel]:-ms-input-placeholder, .p-contact__form textarea:-ms-input-placeholder {
  color: #BEBEBE;
}
.p-contact__form input[type=text]::-ms-input-placeholder, .p-contact__form input[type=email]::-ms-input-placeholder, .p-contact__form input[type=tel]::-ms-input-placeholder, .p-contact__form textarea::-ms-input-placeholder {
  color: #BEBEBE;
}
.p-contact__form input[type=text]::placeholder,
.p-contact__form input[type=email]::placeholder,
.p-contact__form input[type=tel]::placeholder,
.p-contact__form textarea::placeholder {
  color: #BEBEBE;
}
.p-contact__form input[type=text]:focus,
.p-contact__form input[type=email]:focus,
.p-contact__form input[type=tel]:focus,
.p-contact__form textarea:focus {
  border-color: #032D69;
  box-shadow: 0 0.1875rem 0.375rem rgba(3, 45, 105, 0.2);
}

.p-contact__form input[type=text],
.p-contact__form input[type=email],
.p-contact__form input[type=tel] {
  height: 2.75rem;
}

.p-contact__form textarea {
  height: 5.5rem;
  resize: vertical;
  min-height: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form textarea {
    height: 7.5rem;
    min-height: 7.5rem;
  }
}

.p-contact__inputGroup .wpcf7-form-control-wrap {
  flex: 1;
}

.p-contact__privacy {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  margin-top: 1.25rem;
  margin-left: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy {
    font-size: 0.875rem;
    margin-top: 1.25rem;
    margin-left: 0rem;
  }
}
.p-contact__privacy a {
  color: #F20003;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-contact__privacy a:hover {
    opacity: 0.7;
  }
}

.p-contact__submit {
  text-align: center;
  margin-top: 1.875rem;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact__submit {
    margin-top: 1.5625rem;
  }
}

.p-contact__form input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22.75rem;
  max-width: 100%;
  height: 5rem;
  background-color: #032D69;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  border-radius: 2.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-contact__form input[type=submit]:hover {
    opacity: 0.8;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
@media screen and (max-width: 767px) {
  .p-contact__form input[type=submit] {
    width: 100%;
    height: 3.75rem;
    font-size: 1.125rem;
    border-radius: 1.875rem;
  }
}

.wpcf7-not-valid-tip {
  display: block;
  color: #F20003;
  font-size: 0.75rem;
  margin-top: 0.3125rem;
}

.wpcf7-response-output {
  text-align: center;
  margin-top: 1.25rem;
  padding: 0.9375rem;
  border-radius: 0.3125rem;
  font-size: 0.875rem;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #F20003;
  color: #F20003;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #032D69;
  color: #032D69;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

.p-cta {
  padding-block: 3.3125rem 3.75rem;
  background: linear-gradient(210deg, #F20003 0%, #FF6568 80%);
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 3.125rem 0;
  }
}

.p-cta__inner {
  text-align: center;
}

.p-cta__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.5rem;
    margin-bottom: 1.5625rem;
  }
}

.p-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem;
  }
}

.p-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  transition: opacity 0.3s;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    width: 100%;
    max-width: 18.75rem;
    padding: 1.125rem 2.1875rem;
    font-size: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-cta__btn:hover {
    opacity: 0.8;
  }
}
.p-cta__btn--document {
  background-color: #fff;
  color: #032D69;
  border: 2px solid #032D69;
  padding-block: 1.25rem;
  padding-inline: 1.8125rem 2.5rem;
}
.p-cta__btn--contact {
  background-color: #032D69;
  color: #fff;
  padding-block: 1.25rem;
  padding-inline: 1.5625rem 2.5rem;
}

.p-cta__icon {
  display: inline-block;
  margin-right: 1.4375rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-cta__icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.625rem;
  }
}
.p-cta__icon--document {
  background-image: url(../img/common/icon_book.svg);
  width: 1.875rem;
  height: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-cta__icon--document {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-cta__icon--mail {
  background-image: url(../img/common/icon_mail.svg);
  width: 2.875rem;
  height: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-cta__icon--mail {
    width: 1.25rem;
    height: 1.875rem;
  }
}

.p-faq {
  padding-block: 6.25rem 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 3.75rem 0;
  }
}

.p-faq__list {
  margin-inline: auto;
  margin-top: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    margin-top: 2.5rem;
  }
}

.p-faq__item {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    margin-bottom: 0.9375rem;
  }
}
.p-faq__item:last-child {
  margin-bottom: 0;
}

.p-faq__question {
  display: flex;
  align-items: center;
  background-color: #F5F5F5;
  border-radius: 1.5625rem;
  padding-block: 0.375rem;
  padding-inline: 2.625rem 7.5rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    padding: 0.75rem 1.25rem;
    padding-block: 0.75rem;
    padding-inline: 1.25rem 5.625rem;
    align-items: flex-start;
  }
}

.p-faq__q {
  font-size: 2rem;
  font-weight: 700;
  color: #F20003;
  margin-right: 2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    font-size: 1.5rem;
    margin-right: 0.625rem;
    line-height: 1;
    position: relative;
    top: -0.125rem;
  }
}

.p-faq__questionText {
  font-size: 1.125rem;
  font-weight: 700;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-faq__questionText {
    font-size: 0.875rem;
  }
}

.p-faq__toggle {
  width: 2rem;
  height: 2rem;
  background-color: #F20003;
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-faq__toggle {
    width: 1.25rem;
    height: 1.25rem;
    right: 1.25rem;
  }
}
.p-faq__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1.125rem;
  height: 0.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-faq__toggle::before {
    width: 0.625rem;
    height: 3px;
  }
}
.p-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.25rem;
  height: 1.125rem;
  background-color: #fff;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-faq__toggle::after {
    width: 3px;
    height: 0.625rem;
  }
}

.p-faq__answer {
  display: flex;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-block: 0;
  padding-inline: 2.875rem 8.125rem;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    padding: 0 1.25rem;
  }
}

.p-faq__item.is-open .p-faq__toggle::before {
  display: none;
}
.p-faq__item.is-open .p-faq__toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.p-faq__item.is-open .p-faq__answer {
  max-height: 31.25rem;
  opacity: 1;
  padding-block: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item.is-open .p-faq__answer {
    padding-block: 0.9375rem;
    padding-inline: 1.375rem 1.25rem;
  }
}

.p-faq__a {
  font-size: 1.625rem;
  font-weight: 700;
  color: #000;
  margin-right: 2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-faq__a {
    font-size: 1.25rem;
    margin-right: 0.625rem;
  }
}

.p-faq__answerText {
  font-size: 1rem;
  line-height: 2;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__answerText {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-flow {
  padding-block: 5rem 5.8125rem;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 3.75rem 0;
  }
}

.p-flow__inner.l-inner {
  width: 69.6875rem;
}

.p-flow__list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 4.1875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-top: 2rem;
  }
}

.p-flow__item {
  position: relative;
  text-align: center;
}
.p-flow__item::before {
  position: absolute;
  content: "";
  width: 3.3125rem;
  height: 2.5625rem;
  left: 100%;
  top: 6.875rem;
  background: url(../img/tokutei-ginou/deco_arrow.svg) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-flow__item::before {
    width: 1.875rem;
    height: 1.5625rem;
    top: auto;
    bottom: -2.1875rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
  }
}
.p-flow__item:last-child::before {
  display: none;
}

.p-flow__icon {
  width: 14.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-flow__icon {
    width: 9.375rem;
  }
}

.p-flow__content {
  text-align: left;
  margin-top: -1.125rem;
}
@media screen and (max-width: 767px) {
  .p-flow__content {
    margin-top: 0rem;
    text-align: center;
  }
}

.p-flow__num {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  color: #032D69;
  line-height: 1;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .p-flow__num {
    font-size: 3rem;
  }
}

.p-flow__itemTitle {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-flow__itemTitle {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
  }
}

.p-flow__itemText {
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-flow__itemText {
    font-size: 0.875rem;
    text-align: left;
  }
}

.p-footer {
  padding-block: 2.5rem;
  text-align: center;
  background-color: #F20003;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 1.25rem;
  }
}

.p-footer__copyright {
  font-size: 1rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 0.875rem;
  }
}

.p-hoge {
  font-size: 6.25rem;
  color: blue;
}

.p-hoge2 {
  font-size: 1.875rem;
  color: pink;
}

.p-industries {
  padding-block: 4.125rem 6.125rem;
  background: linear-gradient(to bottom, rgba(242, 0, 3, 0.7), rgba(255, 101, 104, 0.7));
}
@media screen and (max-width: 767px) {
  .p-industries {
    padding: 3.75rem 0;
  }
}

@media screen and (max-width: 767px) {
  .p-industries__head {
    margin-bottom: 2.5rem;
  }
}

.p-industries__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-industries__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
  }
}

.p-industries__item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 3.125rem;
  padding: 0.75rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-industries__item {
    padding: 0.75rem 0.9375rem;
    flex-direction: column;
    border-radius: 0.625rem;
  }
}

.p-industries__icon {
  margin-right: 0.9375rem;
  width: 4.875rem;
}
@media screen and (max-width: 767px) {
  .p-industries__icon {
    width: 4.375rem;
    margin-right: 0.5rem;
    margin-inline: auto;
  }
}

.p-industries__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #032D69;
}
@media screen and (max-width: 767px) {
  .p-industries__name {
    font-size: 0.875rem;
    flex: 1;
    margin-top: 0.625rem;
  }
}

.l-main {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 3.75rem;
  }
}

.u-marker {
  background: linear-gradient(transparent 60%, #FFE66D 60%);
  padding: 0 0.3125rem;
}

.u-strong {
  color: #F20003;
  font-weight: 700;
}

.u-accent {
  color: #F20003;
}

.p-media {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-media {
    flex-direction: column-reverse;
  }
}

.foo {
  font-size: 6.25rem;
}

.p-media__head {
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-media__head {
    font-size: 6.25rem;
  }
}

.p-media__txt {
  font-size: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .p-media__txt {
    color: pink;
  }
}
@media screen and (max-width: 767px) {
  .p-media__txt {
    font-size: 2.5rem;
    color: red;
  }
}

.p-media__img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-media__img {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-media__body {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-media__body {
    width: 100%;
    margin-top: 1.875rem;
  }
}

.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 100;
  display: none;
}

.p-modal__block {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 27.5rem;
  background-color: #FEAEBB;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-modal__block {
    width: 80%;
  }
}

.p-modal__wrap {
  position: relative;
  padding: 3.75rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-modal__wrap {
    padding: 2.5rem 0 1.875rem;
  }
}

.p-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #FFFFFF !important;
  padding-block: 2.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding-top: 0.625rem;
    padding-bottom: 1.6875rem;
  }
}

.p-mv__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92.4375rem;
  padding-right: 1.5625rem;
  max-width: 100%;
  margin-inline: auto;
  gap: 0.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    width: 100%;
    flex-direction: column;
    padding-right: 0;
    align-items: flex-start;
  }
}

.p-mv__visual {
  width: 52.9375rem;
  position: relative;
  z-index: 1;
  margin-left: -2.875rem;
  top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__visual {
    width: 25.5rem;
    margin-left: -1.4375rem;
  }
}

.p-mv__visual img {
  width: 100%;
  height: auto;
}

.p-mv__content {
  flex: 1;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    padding-left: 0;
    width: 100%;
    margin-top: -0.3125rem;
  }
}

.p-mv__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.p-mv__titleMain {
  display: block;
  font-size: 3.9375rem;
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1.2;
  margin-top: -0.125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__titleMain {
    margin-top: 0.175rem;
    font-size: 2.6875rem;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
  }
}

.u-text-red {
  color: #F20003;
}

.p-mv__titleSub {
  display: flex;
  align-items: center;
  margin-top: 0.625rem;
  font-size: 3.125rem;
  line-height: 2.02;
  gap: 0.625rem;
  white-space: nowrap;
  padding-left: 3.1875rem;
}
@media screen and (max-width: 767px) {
  .p-mv__titleSub {
    font-size: 2.125rem;
    padding-left: 0;
    align-items: flex-end;
    gap: 0.3125rem;
    white-space: normal;
    justify-content: center;
  }
}

.p-mv__titleHighlight {
  background-color: #032D69;
  color: #fff;
  padding: 0.875rem 1.25rem;
  margin-right: 0.625rem;
  display: inline-block;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-mv__titleHighlight {
    margin-right: 0;
    padding-block: 0.5625rem;
    padding-inline: 1.125rem;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-mv__titleWord {
    position: relative;
    top: 0.625rem;
  }
}

.p-mv__lead {
  margin-top: 0.625rem;
  padding-left: 1.6875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-mv__lead {
    font-size: 1.25rem;
    text-align: center;
    margin-right: 0;
    padding-left: 0;
  }
}
.p-mv__lead span {
  display: block;
}

.p-mv__points {
  display: flex;
  gap: 0.9375rem;
  margin-top: 1.25rem;
  padding-left: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__points {
    justify-content: center;
    margin-top: 0.625rem;
    padding-left: 0;
    gap: 0.625rem;
  }
}

.p-mv__pointItem {
  width: 8.5625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__pointItem {
    width: 6.25rem;
  }
}

.p-mv__pointItem img {
  width: 100%;
  height: auto;
}

.p-mv__cta {
  margin-top: 1.4375rem;
  padding-left: 1.625rem;
  display: flex;
  transition: 0.3s all;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-filter: drop-shadow(0 0.5rem 0.375rem rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 0.5rem 0.375rem rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 767px) {
  .p-mv__cta {
    justify-content: center;
    margin-top: 1.375rem;
    margin-inline: auto;
    padding-left: 0;
  }
}
@media (any-hover: hover) {
  .p-mv__cta:hover {
    opacity: 0.8;
  }
}

.p-mv__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  width: 28.5rem;
  height: 3.875rem;
  background-color: #F20003;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5625rem;
  font-weight: 700;
  border-radius: 0.625rem;
  transition: opacity 0.3s;
  text-decoration: none;
  position: relative;
}
box .p-mv__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-mv__btn {
    width: 22.0625rem;
    max-width: 100%;
    height: 2.9375rem;
    font-size: 1.25rem;
  }
}

.p-mv__btnIcon {
  position: absolute;
  right: 0.8125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
  width: 3.5rem;
  height: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-mv__btnIcon {
    width: 2.75rem;
    height: 0.375rem;
  }
}

.p-pageTop {
  position: fixed;
  right: 1.875rem;
  bottom: 1.875rem;
  z-index: 50;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-pageTop {
    right: 1.5625rem;
    bottom: 1.25rem;
  }
}

.p-pageTop__wrap {
  position: relative;
}

.p-pageTop__wrap img {
  width: 3.125rem;
}

.p-pageTop__wrap img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s opacity;
}

@media screen and (min-width: 768px) {
  .p-pageTop__wrap:hover img:nth-of-type(1) {
    opacity: 0;
    transition: 0.5s opacity;
  }
  .p-pageTop__wrap:hover img:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity;
  }
}
.p-problem {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #DEDEDE;
}
@media screen and (max-width: 767px) {
  .p-problem {
    padding: 3.75rem 0;
  }
}

.p-problem__inner {
  position: relative;
  width: 100%;
  max-width: 62.8125rem;
  margin-inline: auto;
  z-index: 1;
}

.p-problem__head {
  text-align: center;
  width: 100%;
  position: relative;
}

.p-problem__watermark {
  position: absolute;
  top: -3.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.6875rem;
  font-weight: 600;
  color: #000;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-problem__watermark {
    font-size: 2.5rem;
    top: -1.875rem;
  }
}

.p-problem__title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-problem__title {
    font-size: 1.5rem;
  }
}

.p-problem__tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #F20003;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.1875rem;
  padding: 0.125rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-problem__tag {
    font-size: 1.5rem;
  }
}

.p-problem__list {
  display: grid;
  gap: 1.625rem 2.25rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-problem__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.p-problem__itemInner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 1.4375rem 1.875rem;
  border-radius: 0.625rem;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-problem__itemInner {
    min-height: 4.875rem;
    padding: 0.625rem 0.9375rem;
  }
}
.p-problem__itemInner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: url("../img/tokutei-ginou/nayami_deco.png") no-repeat top left;
  background-size: contain;
  z-index: 0;
}
.p-problem__itemInner > * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-problem__itemInner {
    padding: 1.25rem;
  }
}

.p-problem__text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-problem__text {
    font-size: 1rem;
  }
}

.p-reason {
  padding-block: 7.375rem 8.4375rem;
}
@media screen and (max-width: 767px) {
  .p-reason {
    padding-block: 3.75rem;
  }
}

.p-reason__inner {
  width: 100%;
  max-width: 72.5rem;
  margin-inline: auto;
}

.p-reason__list {
  margin-top: 5.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-reason__list {
    grid-template-columns: 1fr;
    margin-top: 1.875rem;
    gap: 2.8125rem;
  }
}

.p-reason__item {
  position: relative;
  background-color: #F2F2F2;
  border-radius: 0.625rem;
  padding-top: 2.75rem;
  padding-inline: 2.25rem;
  padding-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-reason__item {
    padding-inline: 1.25rem;
    padding-block: 1.875rem;
  }
}

.p-reason__itemHeader {
  display: flex;
  align-items: flex-start;
  gap: 0.3125rem;
  position: absolute;
  top: -1.375rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-reason__itemHeader {
    top: -1.25rem;
  }
}

.p-reason__itemDeco {
  width: 2.3125rem;
  height: 3.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-reason__itemDeco {
    width: 1.5625rem;
    height: 2.1875rem;
  }
}

.p-reason__itemNum {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.6875rem;
  font-weight: 600;
  color: #032D69;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-reason__itemNum {
    font-size: 2.5rem;
  }
}

.p-reason__itemTitle {
  margin-top: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-reason__itemTitle {
    font-size: 1.125rem;
    margin-top: 0.75rem;
  }
}

.p-reason__itemText {
  margin-top: 0.75rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-reason__itemText {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.p-service {
  background-color: #F6F6F6;
  overflow: hidden;
}

.p-service__bg {
  padding-block: 4.5625rem 9.0625rem;
  width: 90.875rem;
  max-width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-service__bg {
    padding-block: 3.75rem;
  }
}
.p-service__bg::before {
  position: absolute;
  content: "";
  width: 72.5rem;
  height: auto;
  aspect-ratio: 1031/1477;
  right: -28.125rem;
  top: 0;
  background: url(../img/tokutei-ginou/service_bg.png) center center/cover no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-service__bg::before {
    right: -65.5rem;
    height: 100%;
    width: auto;
  }
}

.p-service__inner {
  position: relative;
  z-index: 2;
}

.p-service__head {
  position: relative;
  z-index: 2;
}

.p-service__list {
  margin-top: 2.6875rem;
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-service__list {
    margin-top: 1.875rem;
    gap: 1.5rem;
  }
}

.p-service__item {
  display: flex;
  max-width: 100%;
  gap: 3.5625rem;
  background-color: #fff;
  padding-block: 2.375rem;
  padding-inline: 2.1875rem;
  border-radius: 0.625rem;
  box-shadow: 0 0.375rem 0.375rem rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-service__item {
    flex-direction: column;
    gap: 1rem;
    padding-block: 1.5625rem;
    padding-inline: 0.9375rem;
  }
}

.p-service__itemImage {
  width: 25.625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-service__itemImage {
    width: 100%;
  }
}

.p-service__itemContent {
  width: 39.625rem;
  max-width: 100%;
}

.p-service__itemTitleWrap {
  display: flex;
  gap: 2.0625rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-service__itemTitleWrap {
    gap: 0.9375rem;
  }
}

.p-service__itemNum {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.6875rem;
  font-weight: 600;
  color: #032D69;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-service__itemNum {
    font-size: 2.5rem;
  }
}

.p-service__itemTitle {
  display: inline-block;
  margin-top: 0.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-service__itemTitle {
    font-size: 1.125rem;
  }
}

.p-service__itemText {
  margin-top: 1.125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  line-height: 1.6875;
}
@media screen and (max-width: 767px) {
  .p-service__itemText {
    font-size: 0.875rem;
    margin-top: 0.75rem;
  }
}

.p-slider {
  width: 100%;
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
.p-slider .swiper-slide-active .p-slider__img,
.p-slider .swiper-slide-duplicate-active .p-slider__img,
.p-slider .swiper-slide-prev .p-slider__img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
  animation: zoomUp 10s linear 0s 1 normal both;
}
.p-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    text-align: center;
  }
}
.p-slider .swiper-pagination-bullet {
  background-color: transparent;
  background: url(../img/) center center/contain no-repeat;
  border-radius: unset;
  height: 15px;
  width: 15px;
  opacity: 1;
}
.p-slider .swiper-pagination-bullet-active {
  background-color: transparent;
  background: url(../img/) center center/contain no-repeat;
  border-radius: unset;
  height: 15px;
  opacity: 1;
  width: 15px;
}

.p-slider__img {
  height: 100%;
}
.p-slider__img img {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-slider__slide {
  overflow: hidden;
  position: relative;
}

.p-slider__title {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 6.25rem;
  color: red;
}

.p-slider__btn {
  width: 60px;
  height: 60px;
}

.p-slider__pagination {
  position: absolute;
  bottom: 30px !important;
  right: auto;
  left: auto;
  width: auto;
}

.p-solution {
  padding-top: 3.125rem;
  padding-bottom: 3.75rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-solution {
    padding: 3.75rem 0;
  }
}

.p-solution__head {
  text-align: center;
}

.p-solution__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-solution__title {
    font-size: 1.5rem;
  }
}
.p-solution__title span {
  font-size: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-solution__title span {
    font-size: 1.75rem;
  }
}

.p-solution__list {
  margin-top: 1.875rem;
  margin-inline: auto;
  padding-top: 2.5rem;
  border-top: 3px solid #F20003;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.4375rem;
  max-width: 66rem;
}
@media screen and (max-width: 767px) {
  .p-solution__list {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.9375rem;
  }
}

.p-solution__item {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-solution__item {
    width: 17.5rem;
    margin-inline: auto;
  }
}

.p-solution__itemImage {
  position: relative;
  width: 100%;
}
.p-solution__itemImage img {
  width: 100%;
  height: auto;
}

.p-solution__itemText {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-solution__itemText {
    font-size: 0.875rem;
  }
}
.p-solution__itemText--red {
  color: #F20003;
}
.p-solution__itemText.--01 {
  top: 64%;
}
.p-solution__itemText.--02 {
  top: 68%;
}
.p-solution__itemText.--03 {
  top: 65%;
}
@media screen and (max-width: 767px) {
  .p-solution__itemText.--03 {
    top: 62%;
  }
}

.p-solution__lead {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-solution__lead {
    font-size: 1.125rem;
  }
}

.p-solution__logo {
  height: 3.125rem;
  width: auto;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-solution__logo {
    height: 2.1875rem;
  }
}

body.page-template-page-thanks-php {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.page-template-page-thanks-php > main {
  flex: 1;
  display: flex;
}

.p-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  padding-block: 7.5rem 5rem;
  padding-inline: 25px;
  background-color: rgba(222, 222, 222, 0.79);
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-block: 6.25rem 3.75rem;
    padding-inline: 20px;
  }
}

.p-thanks__inner {
  text-align: center;
  width: 100%;
  max-width: 50rem;
  background-color: #fff;
  border-radius: 1.5625rem;
  padding: 3.75rem 5rem;
  box-sizing: border-box;
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-thanks__inner {
    padding: 2.5rem 1.25rem;
    border-radius: 0.9375rem;
  }
}

.p-thanks__icon {
  margin-bottom: 1.875rem;
}
.p-thanks__icon svg {
  width: 5rem;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__icon svg {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__icon {
    margin-bottom: 1.25rem;
  }
}

.p-thanks__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #032D69;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: 1.375rem;
  }
}

.p-thanks__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  line-height: 1.8;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__text {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.p-thanks__btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__btn {
    margin-top: 1.875rem;
  }
}

.p-thanks__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18.75rem;
  max-width: 100%;
  height: 4rem;
  background-color: #032D69;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-thanks__link:hover {
    opacity: 0.8;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__link {
    width: 100%;
    height: 3.5rem;
    font-size: 1rem;
  }
}

.p-voice {
  padding-block: 3.8125rem 6.8125rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding-block: 3.75rem;
  }
}

.p-voice__list {
  display: flex;
  flex-direction: column;
  gap: 2.3125rem;
}
.swiper-initialized .p-voice__list {
  flex-direction: row;
  gap: 0;
}

.p-voice__item {
  background-color: rgba(217, 217, 217, 0.5);
  border-radius: 0.625rem;
  padding-block: 2.875rem 2rem;
  padding-inline: 3.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.875rem;
  min-height: 19.3125rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item {
    flex-direction: column;
    align-items: center;
    padding: 1.875rem 1.25rem;
    gap: 1.25rem;
  }
}

.p-voice__itemImage {
  flex-shrink: 0;
  width: 13.125rem;
  height: 13.125rem;
}
@media screen and (max-width: 767px) {
  .p-voice__itemImage {
    width: 9.375rem;
    height: 9.375rem;
  }
}

.p-voice__itemContent {
  flex: 1;
}

.p-voice__itemMeta {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 1.25rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-voice__itemMeta {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0.9375rem;
    gap: 0.625rem;
  }
}

.p-voice__industry {
  display: inline-block;
  background: linear-gradient(to bottom, #032D69, #1B53A2);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.3125rem 1.25rem;
  border-radius: 1rem;
  line-height: 1;
  min-width: 9.375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-voice__industry {
    font-size: 0.875rem;
    padding: 0.25rem 0.9375rem;
    min-width: 6.25rem;
  }
}

.p-voice__company {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-voice__company {
    font-size: 1.25rem;
  }
}

.p-voice__itemText {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-voice__itemText {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-voice__inner {
    overflow: visible;
  }
}

.p-voice__slider {
  margin-top: 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-voice__slider {
    margin-top: 2rem;
    position: relative;
    overflow: visible;
    padding-inline: 1.875rem;
    margin-inline: -1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-voice__slider .swiper-wrapper {
    align-items: stretch;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  }
}

@media screen and (max-width: 767px) {
  .p-voice__item.swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
  }
}

.p-voice__navBtn {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-voice__navBtn {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #032D69;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    transition: opacity 0.3s ease;
  }
  .p-voice__navBtn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .p-voice__navBtn--prev {
    left: 0.625rem;
  }
  .p-voice__navBtn--prev::before {
    -webkit-transform: translate(-30%, -50%) rotate(-135deg);
    transform: translate(-30%, -50%) rotate(-135deg);
  }
  .p-voice__navBtn--next {
    right: 0.625rem;
  }
  .p-voice__navBtn--next::before {
    -webkit-transform: translate(-70%, -50%) rotate(45deg);
    transform: translate(-70%, -50%) rotate(45deg);
  }
  .p-voice__navBtn:hover {
    opacity: 0.8;
  }
  .p-voice__navBtn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
}

.u-base1 {
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.u-base2 {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.u-flex {
  display: flex;
}

.u-font14 {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 2;
}

.u-font16 {
  font-size: 1rem;
}

.u-font18 {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .u-font18 {
    font-size: 1rem;
  }
}

.u-font20 {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .u-font20 {
    font-size: 1rem;
  }
}

.u-font22 {
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .u-font22 {
    font-size: 1.125rem;
  }
}

.u-font24 {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .u-font24 {
    font-size: 1.125rem;
  }
}

.u-font28 {
  font-size: 1.75rem;
}

.u-font32 {
  font-size: 2rem;
}

.u-font40 {
  font-size: 2.5rem;
}

.u-hover {
  transition: opacity 0.5s;
}

.u-hover:hover {
  opacity: 0.6;
  transition: opacity 0.5s;
}

.u-lh10 {
  line-height: 1;
}

.u-lh13 {
  line-height: 1.3;
}

.u-lh15 {
  line-height: 1.5;
}

.u-lh16 {
  line-height: 1.6;
}

.u-lh20 {
  line-height: 2;
}

.u-ls05 {
  letter-spacing: 0.05em;
}

.u-ls10 {
  letter-spacing: 0.1em;
}

.u-ls15 {
  letter-spacing: 0.15em;
}

.u-ls20 {
  letter-spacing: 0.2em;
}

.u-mt10 {
  margin-top: 10px !important;
  margin-top: 0.625rem !important;
}

.u-mt20 {
  margin-top: 20px !important;
  margin-top: 1.25rem !important;
}

.u-mt30 {
  margin-top: 30px !important;
  margin-top: 1.875rem !important;
}

.u-mt40 {
  margin-top: 40px !important;
  margin-top: 2.5rem !important;
}

.u-mt50 {
  margin-top: 50px !important;
  margin-top: 3.125rem !important;
}

.u-mt60 {
  margin-top: 60px !important;
  margin-top: 3.75rem !important;
}

.u-mt70 {
  margin-top: 70px !important;
  margin-top: 4.375rem !important;
}

.u-mt80 {
  margin-top: 80px !important;
  margin-top: 5rem !important;
}

.u-mt90 {
  margin-top: 90px !important;
  margin-top: 5.625rem !important;
}

.u-mt100 {
  margin-top: 100px !important;
  margin-top: 6.25rem !important;
}

.u-mt110 {
  margin-top: 110px !important;
  margin-top: 6.875rem !important;
}

.u-mt120 {
  margin-top: 120px !important;
  margin-top: 7.5rem !important;
}

.u-mt130 {
  margin-top: 130px !important;
  margin-top: 8.125rem !important;
}

.u-mt140 {
  margin-top: 140px !important;
  margin-top: 8.75rem !important;
}

.u-mt150 {
  margin-top: 150px !important;
  margin-top: 9.375rem !important;
}

.u-mt160 {
  margin-top: 160px !important;
  margin-top: 10rem !important;
}

.u-mt170 {
  margin-top: 170px !important;
  margin-top: 10.625rem !important;
}

.u-mt180 {
  margin-top: 180px !important;
  margin-top: 11.25rem !important;
}

.u-mt190 {
  margin-top: 190px !important;
  margin-top: 11.875rem !important;
}

.u-mt200 {
  margin-top: 200px !important;
  margin-top: 12.5rem !important;
}

@media screen and (max-width: 767px) {
  .u-mt100 {
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .u-mtSp10 {
    margin-top: 10px !important;
    margin-top: 0.625rem !important;
  }
  .u-mtSp20 {
    margin-top: 20px !important;
    margin-top: 1.25rem !important;
  }
  .u-mtSp30 {
    margin-top: 30px !important;
    margin-top: 1.875rem !important;
  }
  .u-mtSp40 {
    margin-top: 40px !important;
    margin-top: 2.5rem !important;
  }
  .u-mtSp50 {
    margin-top: 50px !important;
    margin-top: 3.125rem !important;
  }
  .u-mtSp60 {
    margin-top: 60px !important;
    margin-top: 3.75rem !important;
  }
  .u-mtSp70 {
    margin-top: 70px !important;
    margin-top: 4.375rem !important;
  }
  .u-mtSp80 {
    margin-top: 80px !important;
    margin-top: 5rem !important;
  }
  .u-mtSp90 {
    margin-top: 90px !important;
    margin-top: 5.625rem !important;
  }
  .u-mtSp100 {
    margin-top: 100px !important;
    margin-top: 6.25rem !important;
  }
  .u-mtSp110 {
    margin-top: 110px !important;
    margin-top: 6.875rem !important;
  }
  .u-mtSp120 {
    margin-top: 120px !important;
    margin-top: 7.5rem !important;
  }
  .u-mtSp130 {
    margin-top: 130px !important;
    margin-top: 8.125rem !important;
  }
  .u-mtSp140 {
    margin-top: 140px !important;
    margin-top: 8.75rem !important;
  }
  .u-mtSp150 {
    margin-top: 150px !important;
    margin-top: 9.375rem !important;
  }
  .u-mtSp160 {
    margin-top: 160px !important;
    margin-top: 10rem !important;
  }
  .u-mtSp170 {
    margin-top: 170px !important;
    margin-top: 10.625rem !important;
  }
  .u-mtSp180 {
    margin-top: 180px !important;
    margin-top: 11.25rem !important;
  }
  .u-mtSp190 {
    margin-top: 190px !important;
    margin-top: 11.875rem !important;
  }
  .u-mtSp200 {
    margin-top: 200px !important;
    margin-top: 12.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-shadow {
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.16);
}

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

.u-textLeft {
  text-align: Left !important;
}

.u-textCenter {
  text-align: Center !important;
}

.u-textRight {
  text-align: Right !important;
}

.u-textJustify {
  text-align: Justify !important;
}

@media screen and (max-width: 767px) {
  .u-textMdLeft {
    text-align: Left !important;
  }
  .u-textMdCenter {
    text-align: Center !important;
  }
  .u-textMdRight {
    text-align: Right !important;
  }
  .u-textMdJustify {
    text-align: Justify !important;
  }
}
.u-text-red {
  color: #F20003;
}

.u-w300 {
  font-weight: 300;
}

.u-w400 {
  font-weight: 400;
}

.u-w500 {
  font-weight: 500;
}

.u-w600 {
  font-weight: 600;
}

.u-w700 {
  font-weight: 700;
}

.u-w900 {
  font-weight: 900;
}
/*# sourceMappingURL=sourcemaps/style.css.map */