@charset "UTF-8";
/*================================
Reset CSS
================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

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

img,
picture,
video,
canvas,
svg {
  width: 100%;
  vertical-align: top;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  border-radius: 0;
}

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

#root,
#__next {
  isolation: isolate;
}

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

a {
  color: #5486D5;
  text-decoration: none;
}

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

/*================================
Base
================================*/
html,
body {
  background-color: transparent;
  color: #1C1C1C;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: calc(0.0256410256 * var(--vw, 1vw) * 100);
}
@media screen and (min-width: 1024px) {
  html,
  body {
    font-size: calc(0.0073206442 * var(--vw, 1vw) * 100);
  }
}

.l_inner {
  width: calc(var(--vw, 1vw) * 100 - 6rem);
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l_inner {
    width: 1143px;
  }
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

br._hide {
  display: none;
}
@media screen and (min-width: 1024px) {
  br._hide {
    display: inline;
  }
}
@media screen and (min-width: 1024px) {
  br._lg_hide {
    display: none;
  }
}

.e_heading {
  display: flex;
  flex-direction: column;
  row-gap: 0.4rem;
  font-weight: 700;
}
@media screen and (min-width: 1280px) {
  .e_heading {
    row-gap: 8px;
  }
}
.e_heading .jp {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 1280px) {
  .e_heading .jp {
    font-size: 40px;
  }
}
.e_heading .jp._black {
  color: #1C1C1C;
}
.e_heading .en {
  margin-left: 0.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 1280px) {
  .e_heading .en {
    font-size: 18px;
  }
}
.e_heading .en._yellow {
  color: #F8D24E;
}
.e_heading._center {
  text-align: center;
}

/* Header */
.c_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 6rem;
  transition: transform 0.5s ease;
}
@media screen and (min-width: 1280px) {
  .c_header {
    align-items: center;
    height: 10rem;
    background-color: rgba(255, 255, 255, 0.3);
  }
}
.c_header_inner {
  display: flex;
  position: relative;
  z-index: 99;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1280px) {
  .c_header_inner {
    display: none;
  }
}
.c_header_button {
  position: relative;
  display: inline-block;
  width: 6rem;
  height: 100%;
  margin-left: auto;
  padding: 0;
  background-color: #FFFFFF;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .c_header_button {
    display: none;
  }
}
.c_header_button span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 2.4rem;
  height: 0.2rem;
  border-radius: 100vh;
  background-color: #F8D24E;
  transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease, opacity 0.3s ease;
}
@media screen and (min-width: 1280px) {
  .c_header_button span {
    width: 4rem;
    height: 0.4rem;
  }
}
.c_header_button span:nth-of-type(1) {
  top: calc(50% - 0.4rem);
}
@media screen and (min-width: 1280px) {
  .c_header_button span:nth-of-type(1) {
    top: calc(50% - 0.6rem);
  }
}
.c_header_button span:nth-of-type(2) {
  top: calc(50% + 0.4rem);
}
@media screen and (min-width: 1280px) {
  .c_header_button span:nth-of-type(2) {
    top: calc(50% + 0.6rem);
  }
}
.c_header_button[aria-expanded=true] span:nth-of-type(1) {
  top: 50%;
  transform: translateX(-50%) rotate(40deg);
}
.c_header_button[aria-expanded=true] span:nth-of-type(2) {
  top: 50%;
  transform: translateX(-50%) rotate(-40deg);
}
.c_headerMenu {
  display: none;
  justify-content: center;
  overflow: scroll;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  padding: 6rem 3rem 0;
  background-color: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 1280px) {
  .c_headerMenu {
    display: flex;
    overflow: hidden;
    position: relative;
    height: auto;
    padding: 0;
    background-color: transparent;
  }
}
.c_headerMenuList {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2.4rem;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .c_headerMenuList {
    flex-direction: row;
    column-gap: 36px;
  }
}
.c_headerMenuList_item {
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .c_headerMenuList_item {
    width: auto;
  }
}
.c_headerMenuList_item a {
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 1280px) {
  .c_headerMenuList_item a {
    color: #1C1C1C;
    font-size: 16px;
  }
}
.c_headerMenuList_item a._button {
  display: inline-block;
  width: 100%;
  padding: 2rem 0;
  background-color: #F8D24E;
  font-size: 2rem;
}
@media screen and (min-width: 1280px) {
  .c_headerMenuList_item a._button {
    padding: 12px 24px;
    color: #1C1C1C;
    font-size: 20px;
  }
}
.c_headerMenu.is-open {
  display: flex;
}
.c_header._hide {
  transform: translateY(-100%);
}

/* Footer */
.c_footer {
  padding: 6rem 0 2.4rem;
  background-color: #F8D24E;
}
@media screen and (min-width: 1280px) {
  .c_footer {
    padding: 80px 0 40px;
  }
}
.c_footerMenu {
  flex-direction: column;
  row-gap: 1.6rem;
}
@media screen and (min-width: 1280px) {
  .c_footerMenu {
    flex-direction: row;
    justify-content: center;
    column-gap: 24px;
  }
}
.c_footerMenu_item a {
  color: #1C1C1C;
  font-size: 1.4rem;
}
@media screen and (min-width: 1280px) {
  .c_footerMenu_item a {
    font-size: 16px;
    font-weight: 700;
  }
}
.c_footerCompany {
  margin-bottom: 6rem;
}
@media screen and (min-width: 1280px) {
  .c_footerCompany {
    margin-bottom: 60px;
  }
}
.c_footerCompany_logo {
  width: 8rem;
}
@media screen and (min-width: 1280px) {
  .c_footerCompany_logo {
    margin: 0 auto;
    width: 80px;
  }
}

/* Form */
.c_form {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media screen and (min-width: 1280px) {
  .c_form {
    row-gap: 3.4rem;
    width: 120rem;
    margin: 0 auto;
  }
}
.c_form_item {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
}
@media screen and (min-width: 1280px) {
  .c_form_item {
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 6.5rem;
    row-gap: 3.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_item._large {
    align-items: start;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_item._large .c_form_title {
    margin-top: 3rem;
  }
}
.c_form_item._submit {
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .c_form_item._submit {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_item._submit .c_form_input {
    width: 77.8rem;
  }
}
.c_form_title {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
@media screen and (min-width: 1280px) {
  .c_form_title {
    justify-content: space-between;
    font-size: 2.9rem;
  }
}
.c_form_title span {
  display: inline-block;
  margin-left: 1rem;
  margin-top: 0.3rem;
  padding: 0.4rem 1rem 0.5rem 1.2rem;
  border-radius: 6px;
  background-color: #000;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 1280px) {
  .c_form_title span {
    margin-left: 0;
    margin-top: 0.7rem;
    padding: 1rem 2rem 1.2rem 2.2rem;
    font-size: 1.8rem;
  }
}
.c_form_title span._any {
  padding: 0.3rem 1rem 0.4rem 1.2rem;
  border: solid 1px #000;
  background-color: #FFFFFF;
  color: #000;
}
@media screen and (min-width: 1280px) {
  .c_form_title span._any {
    padding: 1rem 2rem 1.1rem 2.2rem;
  }
}
.c_form_input input[type=text],
.c_form_input input[type=tel],
.c_form_input input[type=email],
.c_form_input select,
.c_form_input textarea {
  width: 100%;
  border-radius: 5px;
  background-color: #F5F5F5;
  font-size: 1.6rem;
}
@media screen and (min-width: 1280px) {
  .c_form_input input[type=text],
  .c_form_input input[type=tel],
  .c_form_input input[type=email],
  .c_form_input select,
  .c_form_input textarea {
    width: 77.8rem;
    font-size: 2.9rem;
  }
}
.c_form_input input[type=text],
.c_form_input input[type=tel],
.c_form_input input[type=email],
.c_form_input select {
  height: 5.4rem;
  padding: 0 1em;
}
@media screen and (min-width: 1024px) {
  .c_form_input input[type=text],
  .c_form_input input[type=tel],
  .c_form_input input[type=email],
  .c_form_input select {
    height: 10rem;
  }
}
.c_form_input textarea {
  padding: 1em 1.2em;
}
.c_form_input input[type=submit] {
  width: calc(100% - 3rem);
  height: 6rem;
  margin: 1rem auto 0;
  border-radius: calc(var(--vh, 1vh) * 100);
  background-color: #000000;
  color: #FFFFFF;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .c_form_input input[type=submit] {
    width: 46.1rem;
    height: 8.6rem;
    margin-top: 4rem;
    font-size: 2.4rem;
  }
}

.wpcf7-not-valid-tip {
  margin-top: 0.6rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 1280px) {
  .wpcf7-not-valid-tip {
    font-size: 1.6rem;
  }
}

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

.wpcf7 form .wpcf7-response-output {
  margin: 2rem auto 0;
  padding: 1em;
  font-size: 1.6rem;
}
@media screen and (min-width: 1280px) {
  .wpcf7 form .wpcf7-response-output {
    width: 120rem;
    margin: 4rem auto 0;
    font-size: 2.4rem;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 4px solid rgb(227, 65, 196);
  border-image: linear-gradient(216deg, rgb(227, 65, 196) 0%, rgb(65, 227, 225) 100%);
  border-image-slice: 1;
}

.p_mv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.p_mv_text {
  position: absolute;
  z-index: 2;
  top: 12rem;
  left: 3rem;
  width: calc(100% - 6rem);
}
@media screen and (min-width: 1280px) {
  .p_mv_text {
    top: 50%;
    left: 11rem;
    transform: translateY(-50%);
    width: 59.6rem;
  }
}
.p_mv_service {
  position: absolute;
  bottom: 4rem;
  left: 3rem;
  width: calc(100% - 6rem);
}
@media screen and (min-width: 1280px) {
  .p_mv_service {
    top: 50%;
    right: 11rem;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
    width: 49.6rem;
  }
}
.p_mv_bg {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.p_mv_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.p_project {
  padding: 6rem 0;
  background-color: #F8D24E;
}
@media screen and (min-width: 1280px) {
  .p_project {
    padding: 120px 0;
  }
}
.p_projectList {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
  margin-top: 8rem;
}
@media screen and (min-width: 1280px) {
  .p_projectList {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
}
.p_projectList_item {
  border-radius: 2rem;
  filter: drop-shadow(0 0.6rem 1.2rem rgba(0, 0, 0, 0.16));
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .p_projectList_item {
    border-radius: 20px;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.16));
  }
}
@media screen and (min-width: 1280px) {
  .p_projectList_item:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
@media screen and (min-width: 1280px) {
  .p_projectList_item:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1280px) {
  .p_projectList_item:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

.p_service {
  position: relative;
  padding: 6rem 0;
}
@media screen and (min-width: 1280px) {
  .p_service {
    padding: 120px 0;
  }
}
.p_service_detaile {
  margin-top: 2.4rem;
  color: #1C1C1C;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8em;
}
@media screen and (min-width: 1280px) {
  .p_service_detaile {
    margin-top: 40px;
    font-size: 24px;
    line-height: 1.6em;
  }
}
.p_service_detaile span {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 1280px) {
  .p_service_detaile span {
    font-size: 28px;
  }
}
.p_service_detaile span::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 28px;
  background-color: #F8D24E;
}
.p_serviceList {
  counter-reset: number 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 8rem;
  margin-top: 8rem;
}
@media screen and (min-width: 1280px) {
  .p_serviceList {
    grid-row-gap: 120px;
    margin-top: 160px;
  }
}
.p_serviceList_item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  width: 36rem;
}
@media screen and (min-width: 1280px) {
  .p_serviceList_item {
    align-items: center;
    flex-direction: row;
    width: calc(1143px + (var(--vw, 1vw) * 100 - 1143px) / 2);
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .p_serviceList_item:nth-of-type(1) {
    justify-content: space-between;
  }
}
.p_serviceList_item:nth-of-type(1) .p_serviceList_text p {
  line-height: 2.4em;
}
@media screen and (min-width: 1280px) {
  .p_serviceList_item:nth-of-type(2) {
    flex-direction: row-reverse;
    margin-right: 0;
    margin-left: auto;
  }
}
.p_serviceList_item:nth-of-type(2)::before {
  right: 20px;
  left: auto;
}
.p_serviceList_item:nth-of-type(odd) {
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0.6rem 0.6rem 2rem rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1280px) {
  .p_serviceList_item:nth-of-type(odd) {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .p_serviceList_item:nth-of-type(odd) .p_serviceList_text {
    padding: 0 80px 0 calc((var(--vw, 1vw) * 100 - 1143px) / 2);
  }
}
.p_serviceList_item:nth-of-type(even) {
  margin-left: auto;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  box-shadow: -0.6rem 0.6rem 2rem rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1280px) {
  .p_serviceList_item:nth-of-type(even) {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .p_serviceList_item:nth-of-type(even) .p_serviceList_text {
    padding: 0 calc((var(--vw, 1vw) * 100 - 1143px) / 2) 0 80px;
  }
}
.p_serviceList_text {
  margin-top: -1.2rem;
  padding: 3rem;
}
@media screen and (min-width: 1280px) {
  .p_serviceList_text {
    flex: 1;
    margin-top: -22px;
  }
}
.p_serviceList_text::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) " ";
  margin-left: -6px;
  color: #1C1C1C;
  font-size: 7.2rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  opacity: 0.2;
}
@media screen and (min-width: 1280px) {
  .p_serviceList_text::before {
    font-size: 120px;
  }
}
.p_serviceList_heading {
  position: relative;
  padding-top: 2.4rem;
  margin-bottom: 2.4rem;
  font-size: 2rem;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 1280px) {
  .p_serviceList_heading {
    margin-bottom: 24px;
    padding-top: 26px;
    font-size: 32px;
  }
}
.p_serviceList_heading span {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #F8D24E;
  font-size: 4.8rem;
  font-family: "Montserrat", sans-serif;
  opacity: 0.15;
}
@media screen and (min-width: 1280px) {
  .p_serviceList_heading span {
    top: 0;
    left: -4px;
    font-size: 64px;
    line-height: 1;
  }
}
.p_serviceList p {
  padding: 2.4rem;
  background-color: rgba(254, 210, 61, 0.17);
  border-radius: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 1280px) {
  .p_serviceList p {
    padding: 24px;
    border-radius: 12px;
    font-size: 16px;
  }
}
.p_serviceList p span {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 1280px) {
  .p_serviceList p span {
    font-size: 28px;
  }
}
.p_serviceList p span::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1em;
  background-color: #F8D24E;
}
@media screen and (min-width: 1280px) {
  .p_serviceList p span::before {
    bottom: 4px;
  }
}
@media screen and (min-width: 1280px) {
  .p_serviceList_image {
    width: 570px;
  }
}

.p_realization {
  position: relative;
  padding: 6rem 0;
  background: #FFF5E2;
}
@media screen and (min-width: 1280px) {
  .p_realization {
    padding: 120px 0;
  }
}
.p_realization .e_heading {
  margin-bottom: 6rem;
}
@media screen and (min-width: 1280px) {
  .p_realization .e_heading {
    margin-bottom: 120px;
  }
}
.p_realization_content {
  position: relative;
}
@media screen and (min-width: 1280px) {
  .p_realization_text {
    flex: 1;
  }
}
.p_realization_text p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2em;
}
@media screen and (min-width: 1280px) {
  .p_realization_text p {
    font-size: 20px;
  }
}
.p_realization_text p span {
  position: relative;
  z-index: 1;
  padding-bottom: 0.8em;
  background-position: left -100% center;
  background-size: 200% 0.6em;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #F8D24E 0%);
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 1280px) {
  .p_realization_text p span {
    font-size: 28px;
  }
}
.p_realization_copy {
  margin-top: 2.4rem;
  margin-bottom: 4rem;
  padding: 1.2rem 1.8rem 1.6rem;
  background-color: #F8D24E;
  font-size: 2.2rem;
}
@media screen and (min-width: 1280px) {
  .p_realization_copy {
    display: inline-block;
  }
}
.p_realization_image {
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .p_realization_image {
    position: absolute;
    right: -112px;
    bottom: -12px;
    width: 631px;
  }
}

.p_flow {
  padding: 6rem 0;
  background-color: #F8D24E;
}
@media screen and (min-width: 1280px) {
  .p_flow {
    padding: 120px 0;
  }
}
.p_flow .e_heading {
  margin-bottom: 6rem;
}
@media screen and (min-width: 1280px) {
  .p_flow .e_heading {
    margin-bottom: 120px;
  }
}
.p_flowList {
  position: relative;
  grid-template-columns: 1fr;
  row-gap: 4rem;
}
@media screen and (min-width: 1280px) {
  .p_flowList {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 40px;
  }
}
.p_flowList::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: calc(50% - 0.2rem);
  width: 0.4rem;
  height: 100%;
  background-color: #FFFFFF;
}
@media screen and (min-width: 1280px) {
  .p_flowList::after {
    top: calc(50% + 16px);
    left: 0;
    width: 100%;
    height: 4px;
  }
}
.p_flowList_item {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0.6rem 2rem rgba(0, 0, 0, 0.16));
}

.p_contact {
  padding: 6rem 0;
}
@media screen and (min-width: 1280px) {
  .p_contact {
    padding: 120px 0;
  }
}
.p_contact .e_heading {
  margin-bottom: 6rem;
}
@media screen and (min-width: 1280px) {
  .p_contact .e_heading {
    margin-bottom: 120px;
  }
}
.p_contactForm {
  flex-direction: column;
  row-gap: 2.4rem;
}
@media screen and (min-width: 1280px) {
  .p_contactForm {
    width: 640px;
    margin: 0 auto;
    row-gap: 40px;
  }
}
.p_contactForm_item {
  width: 100%;
}
.p_contactForm_title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #1C1C1C;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 1280px) {
  .p_contactForm_title {
    font-size: 20px;
  }
}
.p_contactForm_title::after {
  content: "必須";
  margin-left: 0.6rem;
  padding: 0.4rem 1.2rem;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  background-color: #F8D24E;
  color: #1C1C1C;
}
@media screen and (min-width: 1280px) {
  .p_contactForm_title::after {
    font-size: 16px;
  }
}
.p_contactForm_input input,
.p_contactForm_input textarea {
  width: 100%;
  padding: 1.2rem;
  border: solid 0.1rem #1C1C1C;
  border-radius: 0.6rem;
  background-color: #FFFFFF;
  font-size: 1.6rem;
}
@media screen and (min-width: 1280px) {
  .p_contactForm_input input,
  .p_contactForm_input textarea {
    padding: 16px 24px;
    border-radius: 6px;
    font-size: 20px;
  }
}
.p_contactForm_input textarea {
  height: 8em;
  font-size: 1.6rem;
}
@media screen and (min-width: 1280px) {
  .p_contactForm_input textarea {
    height: 200px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .p_contactForm_submit {
    text-align: center;
  }
}
.p_contactForm_submit button {
  width: 100%;
  height: 4.6rem;
  background-color: #F8D24E;
  border-radius: 0.6rem;
  color: #1C1C1C;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1280px) {
  .p_contactForm_submit button {
    width: 280px;
    height: 80px;
    font-size: 16px;
  }
}

.p_company {
  padding: 6rem 0;
  background-color: #FFF5E2;
}
@media screen and (min-width: 1280px) {
  .p_company {
    padding: 80px 0;
  }
}
.p_company .e_heading {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 1280px) {
  .p_company .e_heading {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .p_company_content {
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
  }
}
.p_companyList {
  position: relative;
  margin-bottom: 6rem;
}
@media screen and (min-width: 1280px) {
  .p_companyList {
    margin-bottom: 0;
  }
}
.p_companyList:last-of-type {
  margin-bottom: 0;
}
.p_companyList_item {
  display: grid;
  position: relative;
  z-index: 1;
  padding: 1.8rem 0;
  border-bottom: solid 1px #1C1C1C;
}
@media screen and (min-width: 1280px) {
  .p_companyList_item {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 24px 0;
  }
}
.p_companyList_item:first-of-type {
  padding-top: 0;
}
.p_companyList_title {
  margin-right: 0;
  margin-bottom: 0.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1280px) {
  .p_companyList_title {
    margin-bottom: 0;
    padding-left: 16px;
    font-size: 16px;
  }
}
.p_companyList_detail {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1280px) {
  .p_companyList_detail {
    width: 340px;
    font-size: 16px;
  }
}