@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap");
/*
Theme Name: wakupa
Author: ryo
*/
body {
  position: relative;
  width: 100%;
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  letter-spacing: 1px;
}

a {
  color: #061a2c;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all ease 0.3s;
}

main {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

ul {
  padding: 0;
  margin: 0;
}

table {
  border-spacing: 0;
}

p {
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 1px;
}

html {
  scroll-behavior: smooth;
}

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

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li {
  list-style: none;
}

.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 25px 0 0;
}
.l-header-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 675px;
  padding: 10px 30px;
  background-color: #fff;
  box-shadow: 5px 5px 8px rgba(98, 98, 98, 0.3137254902);
  transition: all ease 0.2s;
}
.l-header-inner-logo {
  width: 155px;
  padding-top: 7px;
}
.l-header-inner-logo a {
  display: inline-block;
  width: 100%;
}
.l-header-inner-logo a img {
  width: 100%;
}
.l-header-inner-hamburger {
  display: block;
  position: relative;
  background: transparent;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 100;
  margin-top: 3px;
}
.l-header-inner-hamburger span {
  width: 60%;
  height: 2px;
  position: absolute;
  background: #061a2c;
  margin: auto;
  transition: all 0.8s;
}
.l-header-inner-hamburger span:nth-of-type(1) {
  top: calc(37.037037037% - 1.5px);
  left: 0;
  right: 0;
}
.l-header-inner-hamburger span:nth-of-type(2) {
  top: calc(50% - 1.5px);
  left: 0;
  right: 0;
}
.l-header-inner-hamburger span:nth-of-type(3) {
  top: calc(62.5% - 1.5px);
  left: 0;
  right: 0;
}
.l-header-inner-hamburger.is-active span:nth-of-type(1) {
  transform: translate(0, 6px) rotate(-315deg);
}
.l-header-inner-hamburger.is-active span:nth-of-type(2) {
  display: none;
}
.l-header-inner-hamburger.is-active span:nth-of-type(3) {
  transform: translate(0, -6px) rotate(315deg);
}

.is-active.l-header {
  padding: 10px 0 0;
}

.is-active.l-header-inner {
  box-shadow: none;
  width: 100%;
}

.u-hamburger__menu {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  width: 100%;
  max-width: 750px;
  height: 100%;
  background-color: #FFF;
  transition: all ease-out 0.3s;
  padding: 120px 0 0;
}
.u-hamburger__menu .u-navi__container {
  width: 95%;
  max-width: calc(100% - 30px);
  margin: 0 auto;
  position: relative;
}
.u-hamburger__menu .u-navi__container .u-navi__menu {
  width: 100%;
  margin-bottom: 30px;
}
.u-hamburger__menu .u-navi__container .u-navi__menu li {
  position: relative;
  text-align: left;
  border-bottom: 1px solid #002694;
}
.u-hamburger__menu .u-navi__container .u-navi__menu li a {
  font-size: 20px;
  color: #002694;
  font-weight: 700;
  line-height: 1.3;
  display: inline-block;
  transition: all ease 0.3s;
  padding: 20px 15px;
  width: 100%;
  font-family: "Fjalla One", sans-serif;
}
.u-hamburger__menu .u-navi__container .u-navi__menu li a:hover {
  opacity: 0.8;
}
.u-hamburger__menu .u-navi__logo {
  position: absolute;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.u-hamburger__menu .u-navi__logo p {
  color: #111;
  font-size: 0.6rem;
  margin-right: 10px;
}
.u-hamburger__menu .u-navi__logo img {
  width: 180px;
  margin-bottom: 15px;
}

.is-active.u-hamburger__menu {
  display: block;
}

@media (max-width: 960px) {
  .l-header {
    padding: 10px 0 0;
  }
  .l-header-inner {
    width: 95%;
    max-width: calc(100% - 20px);
    padding: 0 10px;
  }
  .l-header-inner-logo {
    width: 99px;
    padding-left: 10px;
    padding-top: 5px;
  }
  .l-header-inner-menu {
    display: none;
  }
  .l-header-inner-hamburger {
    display: block;
  }
}
.l-footer {
  width: 100%;
  background-color: #002694;
  padding: 30px 0 30px;
}
.l-footer-inner {
  text-align: center;
}
.l-footer-inner p {
  font-size: 14px;
  color: #fff;
}

@media (max-width: 520px) {
  .l-footer {
    padding: 20px 0 20px;
  }
  .l-footer-inner p {
    font-size: 12px;
  }
}
.main-btn {
  display: block;
  max-width: 300px;
  width: 90%;
}
.main-btn img {
  width: 100%;
}
.main-btn .btn-block {
  transition: all ease 0.3s;
}
.main-btn .btn-hover {
  display: none;
  transition: all ease 0.3s;
}
.main-btn:hover .btn-block {
  display: none;
  transition: all ease 0.3s;
}
.main-btn:hover .btn-hover {
  display: block;
  transition: all ease 0.3s;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
#box-loading {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  transition: all 0.3s;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #061a2c;
}

#box-loading {
  transition: opacity 0.5s ease;
}

#box-loading.hide {
  opacity: 0;
  pointer-events: none;
}

.wave-gradient {
  width: 200px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.wave-gradient::before {
  content: "";
  position: absolute;
  width: 400%;
  height: 400%;
  background: conic-gradient(from 0deg, transparent 0deg, #667eea 90deg, #764ba2 180deg, #f093fb 270deg, transparent 360deg);
  animation: wave-rotate 4s linear infinite;
}

.wave-gradient::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #1a1a2e;
  border-radius: 36px;
}

@keyframes wave-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.p-page-404 {
  padding: 180px 0 100px;
  width: 90%;
  max-width: calc(100% - 100px);
  margin: -80px auto 0;
}
.p-page-404-inner {
  width: 100%;
}
.p-page-404-inner p {
  font-size: 16px;
}
.p-page-404-inner-btn {
  margin: 60px 0;
}

@media (max-width: 560px) {
  .p-page-404 {
    padding: 40px 0 40px;
    width: 95%;
    max-width: calc(100% - 40px);
    margin: -50px auto 0px;
  }
  .p-page-404-inner {
    width: 100%;
  }
  .p-page-404-inner p {
    font-size: 16px;
  }
  .p-page-404-inner-btn {
    margin: 60px 0;
  }
}
.p-page-thank {
  padding: 180px 0 100px;
  width: 90%;
  max-width: calc(100% - 100px);
  margin: -80px auto 0;
}
.p-page-thank-inner {
  width: 100%;
}
.p-page-thank-inner p {
  font-size: 16px;
}
.p-page-thank-inner-btn {
  margin: 60px 0;
}

@media (max-width: 560px) {
  .p-page-thank {
    padding: 40px 0 40px;
    width: 95%;
    max-width: calc(100% - 40px);
    margin: -50px auto 0px;
  }
  .p-page-thank-inner {
    width: 100%;
  }
  .p-page-thank-inner p {
    font-size: 16px;
  }
  .p-page-thank-inner-btn {
    margin: 60px 0;
  }
}
.u-request__form {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.u-request__form .u-request__form_dl {
  display: block;
  width: 90%;
  margin: 0 auto 30px;
}
.u-request__form .u-request__form_dl .u-request__form_dt {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-align: left;
  margin-bottom: 10px;
}
.u-request__form .u-request__form_dl .u-request__form_dt .required {
  margin-left: 15px;
  padding: 3px 8px 4px;
  background-color: #061a2c;
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
}
.u-request__form .u-request__form_dl .u-request__form_dt .any {
  margin-left: 15px;
  padding: 3px 8px 4px;
  background-color: #868688;
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
}
.u-request__form .u-request__form_dl .u-request__form_dd {
  width: 100%;
}
.u-request__form .u-request__form_dl .u-request__form_dd .content_liner {
  width: 100%;
  height: 52px;
  padding: 9px 18px;
  border: none;
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 16px;
  border: 1px solid #868688;
}
.u-request__form .u-request__form_dl .u-request__form_dd .content_liner::-moz-placeholder {
  color: #929293;
}
.u-request__form .u-request__form_dl .u-request__form_dd .content_liner::placeholder {
  color: #929293;
}
.u-request__form .u-request__form_dl .u-request__form_dd .content_box {
  width: 100%;
  height: 140px;
  padding: 9px 18px;
  border: none;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
  border: 1px solid #868688;
}
.u-request__form .u-request__form_dl .u-request__form_dd .content_box::-moz-placeholder {
  color: #929293;
}
.u-request__form .u-request__form_dl .u-request__form_dd .content_box::placeholder {
  color: #929293;
}
.u-request__form .u-request__form_dl .form_customer-type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 20px;
}
.u-request__form .u-request__form_dl .form_customer-type .u-request__form_check {
  display: inline-block;
  position: relative;
  padding-right: 30px;
  color: #333;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0.3px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 30px;
}
.u-request__form .u-request__form_dl .form_customer-type .u-request__form_check input[type=radio] {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  cursor: pointer;
  display: none;
}
.u-request__form .u-request__form_dl .form_customer-type .u-request__form_check input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  cursor: auto;
}
.u-request__form .u-request__form_dl .form_customer-type .u-request__form_check .customer_type_name .wpcf7-list-item-label{
  display: inline-block;
  position: relative;
  padding-left: 31px;
  cursor: pointer;
	margin-right: 30px;
}
.u-request__form .u-request__form_dl .form_customer-type .u-request__form_check .customer_type_name .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 3px solid #061a2c;
  border-radius: 50%;
  cursor: pointer;
}
.u-request__form .u-request__form_dl .form_customer-type .u-request__form_check .customer_type_name .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #061a2c;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
}
.u-request__form .u-request__form_dl .u-request__form_privacy {
  margin-top: 30px;
}
.u-request__form .u-request__form_dl .u-request__form_privacy .u-request__form_check {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  color: #3D3D3D;
  cursor: pointer;
  margin-right: 20px;
}
.u-request__form .u-request__form_dl .u-request__form_privacy .u-request__form_check input[type=checkbox] {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  cursor: pointer;
  display: none;
}
.u-request__form .u-request__form_dl .u-request__form_privacy .u-request__form_check input[type=checkbox]:checked + .u-request__form_check_box::after {
  opacity: 1;
}
.u-request__form .u-request__form_dl .u-request__form_privacy .u-request__form_check .u-request__form_check_box {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 45px;
  letter-spacing: 0.3px;
  position: relative;
}
.u-request__form .u-request__form_dl .u-request__form_privacy .u-request__form_check .u-request__form_check_box::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 2px solid #f3f9fc;
  background-color: #fff;
  z-index: 0;
}
.u-request__form .u-request__form_dl .u-request__form_privacy .u-request__form_check .u-request__form_check_box::after {
  position: absolute;
  top: 50%;
  left: 6.2%;
  transform: translate(-50%, -50%) rotate(50deg);
  width: 10px;
  height: 18px;
  border-right: 4px solid #061a2c;
  border-bottom: 4px solid #061a2c;
  content: "";
  z-index: 1;
  opacity: 0;
}
.u-request__form .request__form_button {
  margin-top: 20px;
  text-align: center;
}
.u-request__form .request__form_button .request__form_button {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 300px;
  padding: 20px 20px;
  border-radius: 50px;
  background-color: #061a2c;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.8px;
  transition: all ease 0.3s;
  opacity: 1;
}
.u-request__form .request__form_button .request__form_button:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .u-request__form .u-request__form_dl {
    margin-bottom: 24px;
  }
  .u-request__form .u-request__form_dl .u-request__form_dt {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .u-request__form .u-request__form_dl .form_customer-type {
    width: 100%;
    padding-top: 20px;
  }
  .u-request__form .u-request__form_dl .form_customer-type .u-request__form_check {
    padding-right: 30px;
    font-size: 14px;
    margin-bottom: 0px;
  }
  .u-request__form .u-request__form_dl .form_customer-type .u-request__form_check:nth-child(odd) {
    width: 80%;
  }
  .u-request__form .u-request__form_dl .form_customer-type .u-request__form_check:nth-child(even) {
    width: 55%;
  }
  .u-request__form .u-request__form_dl .u-request__form_privacy {
    margin-top: 20px;
  }
  .u-request__form .request__form_button {
    margin-top: 40px;
  }
  .u-request__form .request__form_button .request__form_button {
    width: 300px;
    font-size: 18px;
    opacity: 1;
  }
}
.c-faq__item__q {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  display: block;
  padding: 20px 50px 20px 20px;
  transition: all 0.3s;
}
.c-faq__item__q::before, .c-faq__item__q::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.c-faq__item__q::before {
  transform: translate(0, -50%) rotate(-180deg);
}
.c-faq__item__q::after {
  transform: translate(0, -50%) rotate(-90deg);
}
.c-faq__item__q span {
  color: #fff;
}

.c-faq__item__a {
  height: 0;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
}
.c-faq__item__a .c-faq__item__a_container {
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  padding: 20px 20px 20px 20px;
  background-color: #002694;
}
.c-faq__item__a .c-faq__item__a_container p {
  line-height: 1.7;
  font-weight: 500;
  color: #fff;
}
.c-faq__item__a .c-faq__item__a_container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-image: repeating-linear-gradient(to right, #fff 0 4px, transparent 4px 8px);
  z-index: 1;
}

.p-faq__item {
  border: 2px solid #fff;
  cursor: pointer;
  margin-bottom: 30px;
}
.p-faq__item .c-faq__item__q.j_accordion::before {
  display: none;
}
.p-faq__item .c-faq__item__q.j_accordion::after {
  transform: rotate(180deg);
}
.p-faq__item .c-faq__item__a.j_accordion {
  transition: all 0.3s;
}

/*==========
ポートフォリオ：TOPページ
==========*/
.p-fv-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.p-fv-section img {
  width: 100%;
}

.p-message-section {
  width: 100%;
  max-width: 750px;
  margin: -93px auto 0;
  background-color: #002694;
  padding: 153px 0 80px;
}
.p-message-section-head {
  width: 33%;
  margin: 0 auto 40px;
}
.p-message-section-head img {
  width: 100%;
}
.p-message-section-text {
  width: 90%;
  margin: 0 auto;
}
.p-message-section-text-txt {
  font-size: clamp(14px, 2vw, 24px);
  color: #fff;
  line-height: 2.4;
  font-weight: 500;
  text-align: center;
}
.p-message-section-text-txt .yellow-line {
  display: inline-block;
  background: #ffe600;
  color: #002694;
  margin-right: 5px;
  font-weight: 700;
  line-height: 1.6;
  padding: 0 10px;
}

.p-service-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background: url(./image/service-top-bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0 40px;
}
.p-service-section-top {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 90%;
}
.p-service-section-top img {
  width: 100%;
}
.p-service-section-text {
  width: 90%;
  margin: 0 auto 30px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: clamp(14px, 2vw, 24px);
}
.p-service-section-link {
  width: 90%;
  margin: 0 auto;
}
.p-service-section-link-more {
  display: inline-block;
  border: 2px solid #fff;
  position: relative;
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 700;
  padding: 10px;
  width: 100%;
}
.p-service-section-link-more::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 10px solid #fff;
  border-bottom: 0;
  z-index: 1;
}

.p-service-head {
  width: 100%;
  max-width: 750px;
  margin: -93px auto 0;
  text-align: center;
  padding: 153px 0 40px;
}
.p-service-head img {
  width: 19%;
  display: block;
  margin: 0 auto;
}

.p-pv-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.p-pv-section img {
  width: 100%;
}
.p-pv-section-man {
  position: absolute;
  width: 39%;
  top: 12.1%;
  left: 67%;
  z-index: 1;
}

.p-web-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.p-web-section img {
  width: 100%;
}
.p-web-section-man {
  position: absolute;
  width: 40%;
  top: 5.4%;
  left: 1%;
  z-index: 1;
}

.p-sns-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.p-sns-section img {
  width: 100%;
}
.p-sns-section-man {
  position: absolute;
  width: 43%;
  top: 8.5%;
  left: 61%;
  z-index: 1;
}

.p-service-id {
  margin-top: -93px;
  padding-top: 93px;
}

.p-service-text {
  background-color: #002694;
  padding: 40px 0;
  width: 100%;
  max-width: 750px;
  margin: 0 auto 40px;
}
.p-service-text-inner {
  width: 90%;
  margin: 0 auto;
}
.p-service-text-inner-head {
  color: #fff;
  line-height: 1.5;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 20px;
}
.p-service-text-inner-head .s-txt {
  font-size: clamp(16px, 1.8vw, 24px);
}
.p-service-text-inner-txt {
  color: #fff;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.6;
  padding-bottom: 30px;
}
.p-service-text-inner-box {
  width: 100%;
  padding-top: 40px;
}
.p-service-text-inner-box-list {
  width: 100%;
}
.p-service-text-inner-box-list-head {
  width: 25%;
  margin: 0 auto 30px;
}
.p-service-text-inner-box-list-head img {
  width: 100%;
}
.p-service-text-inner-box-list-items {
  width: 100%;
}

.p-service-text.third {
  margin: 0 auto;
}

.p-company {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #eee;
  padding: 60px 0 60px;
}
.p-company-head {
  width: 23%;
  margin: 0 auto 40px;
}
.p-company-head img {
  width: 100%;
}
.p-company-box {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.p-company-box-inner {
  display: block;
  z-index: 10;
  background-color: #fff;
  padding: 45px;
  position: relative;
  z-index: 1;
}
.p-company-box-inner-list {
  display: block;
  width: 100%;
}
.p-company-box-inner-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 2px solid #002694;
  padding: 20px 0;
}
.p-company-box-inner-list-item-head {
  display: block;
  width: 30%;
  font-size: clamp(14px, 2vw, 24px);
  color: #333;
  font-weight: 500;
  letter-spacing: 1px;
}
.p-company-box-inner-list-item-text {
  display: block;
  width: 70%;
  font-size: clamp(16px, 2vw, 24px);
  color: #333;
  font-weight: 500;
  letter-spacing: 1px;
}
.p-company-box-inner-list-item-text a {
  text-decoration: underline;
  color: #002694;
}
.p-company-box::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #002694;
}

.p-company-id {
  margin-top: -93px;
  padding-top: 93px;
}

.p-contact {
  width: 100%;
  max-width: 750px;
  margin: -93px auto 0;
  padding: 153px 0 60px;
}
.p-contact-head {
  width: 21%;
  margin: 0 auto 40px;
}
.p-contact-head img {
  width: 100%;
}
.p-contact-text {
  font-size: clamp(14px, 2vw, 24px);
  text-align: center;
  padding-bottom: 60px;
}
.p-contact-text .sp-br {
  display: none;
}

@media (max-width: 750px) {
  .p-message-section {
    padding: 118px 0 50px;
    margin: -58px auto 0;
  }
  .p-service-section {
    padding: 40px 0 30px;
  }
  .p-service-section-link-more {
    margin-bottom: 20px;
  }
  .p-service-head {
    padding: 118px 0 40px;
    margin: -58px auto 0;
  }
  .p-service-head img {
    width: 25%;
  }
  .p-service-text {
    padding: 20px 0;
    margin: 0 auto 40px;
  }
  .p-service-text-inner-head {
    font-size: clamp(21px, 2vw, 24px);
  }
  .p-service-text-inner-head .s-txt {
    font-size: clamp(15px, 1.6vw, 20px);
  }
  .p-service-text-inner-txt {
    font-size: clamp(14px, 1.8vw, 20px);
  }
  .p-company {
    padding: 60px 0;
  }
  .p-company-head {
    width: 28%;
  }
  .p-company-box-inner {
    padding: 20px;
  }
  .p-company-box-inner-list-item {
    padding: 15px 0;
    align-items: flex-start;
  }
  .p-company-box-inner-list-item-head {
    width: 25%;
    font-size: clamp(14px, 2vw, 24px);
  }
  .p-company-box-inner-list-item-text {
    width: 75%;
    font-size: clamp(14px, 2vw, 24px);
  }
  .p-company-box::after {
    top: 5px;
    left: 5px;
  }
  .p-company-id {
    margin-top: -58px;
    padding-top: 58px;
  }
  .p-contact {
    margin: -58px auto 0;
    padding: 118px 0 60px;
  }
  .p-contact-head {
    width: 25%;
  }
  .p-contact-text {
    font-size: clamp(14px, 2vw, 24px);
    text-align: center;
    padding-bottom: 60px;
  }
  .p-contact-text .sp-br {
    display: block;
  }
	.pc{
		display: none;
	}
}
.wpcf7-form-control-wrap {
    position: relative;
}
.u-request__form .u-request__form_dl .form_customer-type .u-request__form_check .wpcf7-list-item {
    display: inline-block;
    margin: 0 0 20px 0;
}
.u-request__form .u-request__form_dl .form_customer-type .u-request__form_check .wpcf7-not-valid-tip{
	display: none;
}
.wpcf7-list-item-label{
	position: relative;
}
.wpcf7-list-item{
	margin: 0;
}
.u-request__form .u-request__form_dl .form_customer-type .u-request__form_check .wpcf7-not-valid-tip{
	display: none;
}

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