@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Roboto:wght@300;400;500;700;900&display=swap");
/**
 * Responsive Styles
 */
/**
 * Required Variables
 */
/**
  * Root Media Query Variables
  */
:root {
  --responsive--spacing-horizontal: calc(2 * var(--global--spacing-horizontal) * 0.6);
  --responsive--aligndefault-width: calc(100vw - var(--responsive--spacing-horizontal));
  --responsive--alignwide-width: calc(100vw - var(--responsive--spacing-horizontal));
  --responsive--alignfull-width: 100%;
  --responsive--alignright-margin: var(--global--spacing-horizontal);
  --responsive--alignleft-margin: var(--global--spacing-horizontal);
}

@media only screen and (min-width: 481px) {
  :root {
    --responsive--aligndefault-width: min(
      calc(100vw - 4 * var(--global--spacing-horizontal)),
      610px
    );
    --responsive--alignwide-width: calc(100vw - 4 * var(--global--spacing-horizontal));
    --responsive--alignright-margin: calc(0.5 * (100vw - var(--responsive--aligndefault-width)));
    --responsive--alignleft-margin: calc(0.5 * (100vw - var(--responsive--aligndefault-width)));
  }
}
@media only screen and (min-width: 951px) {
  :root {
    --responsive--aligndefault-width: min(
      calc(100vw - 8 * var(--global--spacing-horizontal)),
      610px
    );
    --responsive--alignwide-width: min(
      calc(100vw - 8 * var(--global--spacing-horizontal)),
      1240px
    );
  }
}
/**
  * Extends
  */
.default-max-width {
  max-width: var(--responsive--aligndefault-width);
  margin-left: auto;
  margin-right: auto;
}

.wide-max-width {
  max-width: var(--responsive--alignwide-width);
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 481px) {
  .full-max-width {
    max-width: var(--responsive--alignfull-width);
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
/*                ヘッダー
======================================================= 
*/
.l-header {
  border-bottom: rgba(102, 102, 102, 0.3) 1px solid;
  width: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .l-header {
    border-bottom: none;
    top: 0;
  }
}
.l-header-wrapper {
  padding: 30px 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
@media only screen and (max-width: 950px) {
  .l-header-wrapper {
    padding: 30px;
    border-bottom: none;
  }
}
@media only screen and (max-width: 768px) {
  .l-header-wrapper {
    padding: 0 0 0 19px;
    border-bottom: none;
  }
}
.l-header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .l-header-logo {
    width: 170px;
  }
}
@media only screen and (max-width: 590px) {
  .l-header-logo {
    width: 130px;
    z-index: 100;
  }
}
.l-header-logo-link {
  display: block;
}
.l-header-logo-image {
  width: 100%;
  height: 100%;
}
.l-header-nav {
  display: flex;
  position: relative;
}
.l-header-nav-list {
  display: flex;
}
.l-header-nav-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 45px;
}
@media only screen and (max-width: 950px) {
  .l-header-nav-list-item {
    padding-right: 30px;
  }
}
.l-header-nav-list-item-link {
  position: relative;
}
.l-header-nav-list-item-link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #820982;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}
.l-header-nav-list-item-link:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
@media only screen and (max-width: 768px) {
  .l-header-nav {
    display: none;
  }
}
.l-header-nav-contact {
  color: #fff;
  background-color: #820982;
  padding: 10px 20px;
  border-radius: 20px;
}
.l-header-nav-contact:hover {
  color: #820982;
  background: #fff;
  border: 1px solid #820982;
  padding: 9px 19px;
}
.l-header-nav-sp {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: absolute;
  top: 50px;
  left: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  padding: 75px 24px 15px;
}
.l-header-nav-sp.is-active {
  transform: translateX(0);
}
.l-header-nav-sp-item {
  border-top: 0.25px solid #000;
  font-weight: bold;
}
.l-header-nav-sp-item:last-child {
  border-bottom: 0.25px solid #000;
}
.l-header-nav-sp-item-link {
  font-size: 12px;
  display: block;
  padding: 25px 0;
}
.l-header-nav-sp-text {
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}
.l-header-nav-sp-text-tel-number {
  margin-top: 10px;
  font-size: 25px;
}
.l-header-nav-sp-text-mail {
  margin-top: 30px;
}
.l-header-nav-sp-text-mail-address {
  margin: 0 auto;
  display: inline-block;
  color: #fff;
  background-color: #820982;
  border-radius: 20px;
  margin-top: 10px;
}
.l-header-nav-sp-text-mail-link {
  padding: 10px 15px;
  display: block;
  font-size: 12px;
}
.l-header-nav-sp-text-mail-link .sp-header-allow {
  color: rgba(255, 255, 255, 0.6196078431);
  padding-left: 10px;
}
.l-header-nav-sp-copyright {
  text-align: center;
  font-size: 10px;
  margin-top: 40px;
}
.l-header .humburger-btn {
  display: none;
  z-index: 100;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-header .humburger-btn {
    width: 50px;
    height: 50px;
    background-color: #820982;
    padding: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.l-header .humburger-btn .bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  border-radius: 30px;
  transition: 0.3s;
  background-color: #fff;
}
.l-header .humburger-btn .bar:nth-child(1) {
  top: 20px;
}
.l-header .humburger-btn .bar:nth-child(2) {
  top: 30px;
}
.l-header .humburger-btn.is-active .bar:nth-child(1) {
  transform: translateX(-50%) translateY(5px) rotate(45deg);
}
.l-header .humburger-btn.is-active .bar:nth-child(2) {
  transform: translateX(-50%) translateY(-5px) rotate(-45deg);
}

/*                ヘッダー
======================================================= 
*/
.l-footer-wrapper {
  padding: 32px 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
@media only screen and (max-width: 950px) {
  .l-footer-wrapper {
    padding: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer-wrapper {
    padding: 0;
    border-bottom: none;
    flex-direction: column;
    padding: 20px;
  }
}
.l-footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}
@media only screen and (max-width: 768px) {
  .l-footer-logo {
    order: 1;
    margin: 10px auto 10px 0;
  }
}
@media only screen and (max-width: 590px) {
  .l-footer-logo {
    margin: 0px auto 10px 0;
  }
}
.l-footer-logo-link {
  display: block;
}
.l-footer-logo-image {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .l-footer-logo-image {
    width: 150px;
    height: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer-nav {
    order: 0;
    width: 100%;
  }
}
.l-footer-nav-list {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
}
@media only screen and (max-width: 590px) {
  .l-footer-nav-list {
    font-size: 11px;
  }
}
.l-footer-nav-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 35px;
}
@media only screen and (max-width: 1024px) {
  .l-footer-nav-list-item {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer-nav-list-item {
    margin-left: 0px;
  }
}
.l-footer-nav-list-item-link {
  display: block;
}
.l-footer-nav-list-item-link:hover {
  color: #820982;
}
.l-footer-nav-list-item-link.contact {
  color: #000;
  border: 1px solid #000;
  padding: 12px 24px;
  border-radius: 20px;
}
.l-footer-nav-list-item-link.contact:hover {
  color: #820982;
  border: 1px solid #820982;
}
.l-footer-privacy-policy {
  font-size: 13px;
}
.l-footer-privacy-policy:hover {
  color: #820982;
}
@media only screen and (max-width: 590px) {
  .l-footer-privacy-policy {
    font-size: 11px;
  }
}
.l-footer-privacy-copyright {
  color: #808080;
  margin-top: 5px;
  text-align: right;
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  .l-footer-privacy-copyright {
    text-align: left;
  }
}
@media only screen and (max-width: 590px) {
  .l-footer-privacy-copyright {
    font-size: 11px;
  }
}
.l-footer .right-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-footer .right-block {
    width: 100%;
  }
}
.l-footer .left-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-footer .left-block {
    flex-direction: column;
    border-bottom: 1px solid #808080;
    width: 100%;
  }
}

.to-up-button {
  border-radius: 50px;
  border: 1px solid #000;
  height: 40px;
  width: 40px;
  position: relative;
  margin-left: 45px;
  background-color: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 950px) {
  .to-up-button {
    margin-left: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .to-up-button {
    transform: translate(-50%, -50%);
  }
}
.to-up-button::before {
  content: "↑";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: #000;
}
@media only screen and (max-width: 768px) {
  .to-up-button::after {
    width: 100px;
    text-align: center;
    content: "PAGE TOP";
    position: absolute;
    bottom: 0px;
    right: 50%;
    transform: translate(50%, 150%);
    color: #000;
  }
}
@media only screen and (max-width: 768px) and (max-width: 590px) {
  .to-up-button::after {
    font-size: 10px;
  }
}

.p-company {
  background-color: #4D4D4D;
}
.p-company .wrapper {
  padding: 80px 0 80px 80px;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .p-company .wrapper {
    text-align: center;
    padding: 0;
  }
}
.p-company-text {
  color: #fff;
  width: 55%;
  font-size: 15px;
  padding-right: 30px;
}
@media only screen and (max-width: 1024px) {
  .p-company-text {
    width: 60%;
  }
}
@media only screen and (max-width: 768px) {
  .p-company-text {
    width: 100%;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-company-text-title {
    padding: 50px 0px 300px;
    background-image: url("../../assets/image/home/company.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
@media only screen and (max-width: 480px) {
  .p-company-text-title {
    padding: 35px 0px 150px;
  }
}
.p-company-text-title-main {
  font-size: 53px;
  margin-bottom: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 590px) {
  .p-company-text-title-main {
    font-size: 32px;
    margin-top: 8px;
  }
}
.p-company-text-title-sub {
  font-size: 18px;
}
@media only screen and (max-width: 590px) {
  .p-company-text-title-sub {
    font-size: 11px;
    margin-top: 8px;
  }
}
.p-company-text-information {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .p-company-text-information {
    padding: 20px 20px 40px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 590px) {
  .p-company-text-information {
    font-size: 12px;
  }
}
.p-company-text-information-title {
  width: 25%;
  font-weight: normal;
  padding: 10px 20px 10px 0;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 590px) {
  .p-company-text-information-title {
    text-align: left;
    line-height: 1.7;
  }
}
.p-company-text-information-content {
  width: 75%;
  padding: 10px 0;
  line-height: 20px;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  .p-company-text-information-content {
    text-align: left;
  }
}
.p-company-image {
  width: 45%;
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  .p-company-image {
    margin-top: 16px;
    display: none;
  }
}
.p-company-image-item {
  width: 100%;
  height: 100%;
}

.p-news .wrapper {
  padding: 80px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .p-news .wrapper {
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 590px) {
  .p-news .wrapper {
    padding: 50px 19px;
  }
}
.p-news-text {
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .p-news-text {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .p-news-text {
    width: 100%;
    padding-right: 0px;
    position: relative;
    text-align: left;
  }
}
.p-news-text-title {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-news-text-title {
    padding-top: 0px;
  }
}
.p-news-text-title-main {
  font-size: 53px;
  color: #820982;
}
@media only screen and (max-width: 590px) {
  .p-news-text-title-main {
    font-size: 32px;
  }
}
.p-news-text-title-sub {
  margin-top: 16px;
  font-size: 18px;
}
@media only screen and (max-width: 590px) {
  .p-news-text-title-sub {
    font-size: 11px;
    margin-top: 8px;
  }
}
.p-news-text-toList {
  font-weight: bold;
  position: relative;
  border-bottom: 1px solid #000;
  width: 80%;
  padding: 5px 0px;
}
@media only screen and (max-width: 768px) {
  .p-news-text-toList {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
  }
}
@media only screen and (max-width: 590px) {
  .p-news-text-toList {
    font-size: 12px;
    font-weight: 500;
    width: 85px;
  }
}
.p-news-text-toList::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 53%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #000;
}
@media only screen and (max-width: 590px) {
  .p-news-text-toList::after {
    right: -3px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #000;
  }
}
.p-news-text-toList-link {
  display: block;
}
.p-news-contents {
  width: 100%;
  max-width: 750px;
}
@media only screen and (max-width: 768px) {
  .p-news-contents {
    margin-top: 20px;
  }
}
.p-news-contents-item {
  display: flex;
  border-bottom: 1px solid #000;
  padding: 30px 30px 30px 0px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-news-contents-item {
    display: block;
    border-bottom: none;
    border-top: 1px solid #000;
    padding: 20px 0;
    text-align: left;
  }
}
@media only screen and (max-width: 590px) {
  .p-news-contents-item {
    font-size: 12px;
  }
}
.p-news-contents-item::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .p-news-contents-item::after {
    display: none;
  }
}
.p-news-contents-item-date {
  padding-right: 30px;
  display: flex;
  align-items: center;
}
.p-news-contents-item-title {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .p-news-contents-item-title {
    padding-top: 10px;
    font-weight: 500;
  }
}

.p-works {
  background-color: #E6E6E6;
}
@media only screen and (max-width: 768px) {
  .p-works {
    background-color: #fff;
  }
}
.p-works .wrapper {
  padding: 50px 0 50px 80px;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .p-works .wrapper {
    display: block;
    text-align: center;
    padding: 50px 19px;
  }
}
.p-works-text {
  width: 50%;
  padding-right: 30px;
}
@media only screen and (max-width: 1024px) {
  .p-works-text {
    width: 60%;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .p-works-text {
    width: 100%;
    padding-right: 0px;
  }
}
.p-works-text-title {
  font-weight: bold;
  padding-top: 50px;
}
@media only screen and (max-width: 768px) {
  .p-works-text-title {
    padding-top: 0px;
  }
}
.p-works-text-title-main {
  font-size: 53px;
  color: #820982;
}
@media only screen and (max-width: 590px) {
  .p-works-text-title-main {
    font-size: 32px;
  }
}
.p-works-text-title-sub {
  margin-top: 16px;
  font-size: 18px;
}
@media only screen and (max-width: 590px) {
  .p-works-text-title-sub {
    font-size: 11px;
    margin-top: 8px;
  }
}
.p-works-text-contents {
  margin-top: 40px;
}
.p-works-text-contents-head {
  font-size: 28px;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .p-works-text-contents-head {
    font-size: 22px;
  }
}
@media only screen and (max-width: 590px) {
  .p-works-text-contents-head {
    font-size: 20px;
  }
}
.p-works-text-contents-main {
  width: 100%;
  line-height: 32px;
  margin-top: 30px;
}
@media only screen and (max-width: 1024px) {
  .p-works-text-contents-main {
    line-height: 24px;
  }
}
@media only screen and (max-width: 950px) {
  .p-works-text-contents-main {
    text-align: left;
  }
}
@media only screen and (max-width: 590px) {
  .p-works-text-contents-main {
    font-size: 12px;
    line-height: 20px;
  }
}
.p-works-text-more {
  width: 195px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .p-works-text-more {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .p-works-image {
    margin-top: 16px;
  }
}
.p-works-image-item {
  width: 100%;
  height: 100%;
}
.p-works-more.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-works-more.sp {
    width: 45%;
    display: block;
    margin: 40px auto 0;
    color: #820982;
    border-radius: 30px;
    overflow: hidden;
  }
}

.p-information .wrapper {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .p-information .wrapper {
    display: block;
  }
}
.p-information-card {
  width: 50%;
  text-align: center;
  color: #fff;
  padding: 9% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 768px) {
  .p-information-card {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .p-information-card + .p-information-card {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .p-information-card {
    padding: 50px 0;
  }
}
.p-information-card.recruit {
  background-image: url("../../assets/image/home/recruit.png");
}
.p-information-card.contact {
  background-image: url("../../assets/image/home/contact.png");
}
.p-information-card-title {
  font-weight: bold;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .p-information-card-title {
    padding-top: 0px;
  }
}
.p-information-card-title-main {
  font-size: 53px;
}
@media only screen and (max-width: 590px) {
  .p-information-card-title-main {
    font-size: 32px;
  }
}
.p-information-card-title-sub {
  margin-top: 10px;
  font-size: 18px;
}
@media only screen and (max-width: 590px) {
  .p-information-card-title-sub {
    font-size: 11px;
    margin-top: 8px;
  }
}
.p-information-card-more {
  width: 195px;
  transform: translateY(100%);
}
@media only screen and (max-width: 768px) {
  .p-information-card-more {
    transform: translateY(-20px);
    width: 35%;
    display: block;
    margin: 40px auto 0;
    color: #820982;
    border-radius: 30px;
    overflow: hidden;
  }
}
.p-information-card-more-link {
  display: block;
}

.p-firstview .wrapper {
  background: linear-gradient(180deg, #fff 55%, #E6E6E6 45%);
  width: 100%;
  display: flex;
  align-items: center;
}
.p-firstview-contents {
  height: auto;
  width: 90%;
}
@media only screen and (max-width: 768px) {
  .p-firstview-contents {
    width: 100%;
    height: auto;
  }
}
.p-firstview-contents-video {
  height: 100%;
}
.p-firstview-contents-video-item {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.p-firstview .to-bottom-button {
  border-radius: 50px;
  border: 1px solid #000;
  height: 50px;
  width: 50px;
  transform: translate(-50%, -50%);
  position: relative;
  margin-left: 45px;
}
@media only screen and (max-width: 768px) {
  .p-firstview .to-bottom-button {
    display: none;
  }
}
.p-firstview .to-bottom-button::after {
  content: "↓";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: #000;
}

.p-catchcopy-wrapper {
  margin: 0 auto;
  max-width: 1100px;
  padding: 210px 0 60px;
}
@media only screen and (max-width: 768px) {
  .p-catchcopy-wrapper {
    padding: 120px 20px 20px;
  }
}
.p-catchcopy-top {
  font-size: 50px;
  font-weight: bold;
  line-height: 70px;
  letter-spacing: 3px;
}
@media only screen and (max-width: 768px) {
  .p-catchcopy-top {
    font-size: 40px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 590px) {
  .p-catchcopy-top {
    font-size: 29px;
    line-height: 45px;
    letter-spacing: 1px;
  }
}
.p-catchcopy-top .base-color {
  color: #820982;
}
.p-catchcopy-bottom {
  display: flex;
  align-items: center;
  margin-top: 30px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .p-catchcopy-bottom {
    font-size: 17px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 590px) {
  .p-catchcopy-bottom {
    font-size: 14px;
  }
}
@media only screen and (max-width: 590px) {
  .p-catchcopy-bottom-text {
    font-size: 11px;
  }
}
.p-catchcopy-bottom::before {
  content: "";
  width: 140px;
  height: 1px;
  display: block;
  margin-right: 15px;
  background: #000;
}
@media only screen and (max-width: 590px) {
  .p-catchcopy-bottom::before {
    width: 90px;
  }
}

.p-concept .background-image {
  background-image: url("../../assets/image/home/concept-bg-pc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  z-index: 1;
}
.p-concept .wrapper {
  padding: 100px 80px;
  color: #fff;
}
@media only screen and (max-width: 950px) {
  .p-concept .wrapper {
    padding: 80px 0px;
  }
}
@media only screen and (max-width: 480px) {
  .p-concept .wrapper {
    padding: 60px 0px;
  }
}
.p-concept-title {
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .p-concept-title {
    text-align: center;
  }
}
.p-concept-title-main {
  font-size: 53px;
}
@media only screen and (max-width: 590px) {
  .p-concept-title-main {
    font-size: 32px;
  }
}
.p-concept-title-sub {
  margin-top: 16px;
  font-size: 18px;
}
@media only screen and (max-width: 590px) {
  .p-concept-title-sub {
    font-size: 11px;
    margin-top: 8px;
  }
}
.p-concept-contents {
  position: relative;
}
.p-concept-contents-context {
  width: 72%;
  padding: 50px 60px 0 80px;
}
@media only screen and (max-width: 1024px) {
  .p-concept-contents-context {
    width: 65%;
    padding: 50px 60px 0 50px;
  }
}
@media only screen and (max-width: 950px) {
  .p-concept-contents-context {
    width: 100%;
    padding: 25px 20px 0;
  }
}
.p-concept-contents-context-head {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .p-concept-contents-context-head {
    font-size: 30px;
  }
}
@media only screen and (max-width: 590px) {
  .p-concept-contents-context-head {
    font-size: 20px;
  }
}
.p-concept-contents-context-main {
  width: 100%;
  max-width: 700px;
  line-height: 32px;
  margin-top: 30px;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 1024px) {
  .p-concept-contents-context-main {
    line-height: 24px;
  }
}
@media only screen and (max-width: 590px) {
  .p-concept-contents-context-main {
    font-size: 12px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 950px) {
  .p-concept-contents-images {
    display: none;
  }
}
.p-concept-contents-images-top {
  background-image: url("../../assets/image/home/concept-image.png");
  width: 465px;
  height: 600px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
}
.p-concept-contents-images-bottom {
  background-image: url("../../assets/image/home/concept-image.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 465px;
  height: 600px;
  position: absolute;
  bottom: 0;
  right: -80px;
  z-index: 1;
}
.p-concept-bottom {
  padding: 100px 0;
  text-align: center;
}
@media only screen and (max-width: 950px) {
  .p-concept-bottom {
    height: 500px;
    background-image: url("../../assets/image/home/concept1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
    padding: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .p-concept-bottom {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 590px) {
  .p-concept-bottom {
    height: 385px;
  }
}
.p-concept-bottom-text {
  font-weight: bold;
  line-height: 2;
  font-size: 22px;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 950px) {
  .p-concept-bottom-text {
    color: #fff;
  }
}
@media only screen and (max-width: 590px) {
  .p-concept-bottom-text {
    font-size: 12px;
  }
}
.p-concept .u-sp-only {
  display: none;
}
@media only screen and (max-width: 950px) {
  .p-concept .u-sp-only {
    display: block;
  }
}

.p-greeting {
  background-color: #E6E6E6;
}
.p-greeting-wrapper {
  padding: 78px 0px;
  max-width: 1150px;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 950px) {
  .p-greeting-wrapper {
    padding: 40px 25px;
  }
}
@media only screen and (max-width: 768px) {
  .p-greeting-wrapper {
    background-color: #fff;
  }
}
.p-greeting-title {
  font-weight: bold;
}
.p-greeting-title-main {
  color: #820982;
  font-size: 53px;
}
@media only screen and (max-width: 590px) {
  .p-greeting-title-main {
    font-size: 32px;
  }
}
.p-greeting-title-sub {
  font-size: 20px;
  margin-top: 10px;
}
@media only screen and (max-width: 590px) {
  .p-greeting-title-sub {
    font-size: 11px;
    margin-top: 8px;
  }
}
.p-greeting-context {
  margin-top: 54px;
  line-height: 32px;
  font-weight: bold;
}
@media only screen and (max-width: 590px) {
  .p-greeting-context {
    margin-top: 30px;
  }
}
.p-greeting-context-main {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 950px) {
  .p-greeting-context-main {
    text-align: left;
  }
}
@media only screen and (max-width: 590px) {
  .p-greeting-context-main {
    font-size: 12px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 950px) {
  .p-greeting-context-main .u-pc-only {
    display: none;
  }
}
.p-greeting-about {
  margin-top: 54px;
}
@media only screen and (max-width: 950px) {
  .p-greeting-about {
    text-align: left;
  }
}
@media only screen and (max-width: 590px) {
  .p-greeting-about {
    margin-top: 50px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 950px) {
  .p-greeting-about-signature {
    display: flex;
    align-items: center;
  }
}
.p-greeting-about-signature-role {
  margin-top: 10px;
}
@media only screen and (max-width: 590px) {
  .p-greeting-about-signature-role {
    margin-top: 0px;
  }
}
.p-greeting-about-signature-name {
  width: 90px;
  margin: 18px auto 0;
}
@media only screen and (max-width: 590px) {
  .p-greeting-about-signature-name {
    width: 75px;
    margin: 0 auto 0 20px;
  }
}

.p-works-detail-wrapper {
  padding-top: 200px;
  width: 90%;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .p-works-detail-wrapper {
    width: 100%;
    margin-left: 0;
    padding-top: 120px;
    padding-left: 19px;
  }
}
.p-works-detail-content-title {
  font-weight: bold;
}
.p-works-detail-content-title-main {
  font-size: 50px;
  color: #820982;
}
@media only screen and (max-width: 590px) {
  .p-works-detail-content-title-main {
    font-size: 32px;
  }
}
.p-works-detail-content-title-sub {
  margin-top: 16px;
  font-size: 18px;
}
@media only screen and (max-width: 590px) {
  .p-works-detail-content-title-sub {
    font-size: 11px;
    margin-top: 8px;
  }
}
.p-works-detail-content-image {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .p-works-detail-content-image {
    margin-top: 30px;
  }
}
.p-works-detail-content-image-item {
  height: 100%;
  width: 100%;
}
.p-works-detail-content-image-item.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-works-detail-content-image-item.pc {
    display: none;
  }
  .p-works-detail-content-image-item.sp {
    display: block;
  }
}
.p-works-detail-about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0;
  width: 90%;
}
@media only screen and (max-width: 768px) {
  .p-works-detail-about-wrapper {
    display: block;
    text-align: center;
    padding: 30px 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-works-detail-about-title {
    padding-top: 0px;
    text-align: left;
  }
}
.p-works-detail-about-title-main {
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 590px) {
  .p-works-detail-about-title-main {
    font-size: 18px;
    line-height: 30px;
  }
}
.p-works-detail-about-title-sub {
  margin-top: 25px;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .p-works-detail-about-title-sub {
    font-size: 16px;
    margin-top: 16px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 590px) {
  .p-works-detail-about-title-sub {
    font-size: 12px;
    line-height: 20px;
  }
}
.p-works-detail-about-image {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .p-works-detail-about-image {
    margin-top: 25px;
  }
}
.p-works-detail-about-image-item {
  width: 670px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .p-works-detail-about-image-item {
    width: 100%;
  }
}

.p-works-strength {
  background-color: #E6E6E6;
}
.p-works-strength-wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0 100px;
}
@media only screen and (max-width: 768px) {
  .p-works-strength-wrapper {
    display: block;
    width: 100%;
    padding: 60px 19px;
  }
}
.p-works-strength-title {
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-works-strength-title {
    text-align: left;
  }
}
.p-works-strength-title-main {
  font-size: 50px;
  color: #820982;
}
@media only screen and (max-width: 590px) {
  .p-works-strength-title-main {
    font-size: 32px;
  }
}
.p-works-strength-title-sub {
  margin-top: 16px;
  font-size: 18px;
}
@media only screen and (max-width: 590px) {
  .p-works-strength-title-sub {
    font-size: 11px;
    margin-top: 8px;
  }
}
.p-works-strength-description {
  text-align: center;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .p-works-strength-description {
    margin-top: 30px;
    text-align: left;
  }
}
.p-works-strength-description-main {
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 590px) {
  .p-works-strength-description-main {
    font-size: 20px;
    line-height: 30px;
  }
}
.p-works-strength-description-sub {
  margin-top: 25px;
  font-size: 16px;
}
@media only screen and (max-width: 1024px) {
  .p-works-strength-description-sub {
    font-size: 16px;
    margin-top: 16px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 590px) {
  .p-works-strength-description-sub {
    font-size: 12px;
    line-height: 20px;
  }
}
.p-works-strength-main {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  position: relative;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .p-works-strength-main {
    margin-top: 40px;
  }
}
.p-works-strength-main-image {
  text-align: left;
}
.p-works-strength-main-image.right {
  text-align: right;
}
.p-works-strength-main-image-item {
  width: 80%;
  height: 500px;
}
@media only screen and (max-width: 768px) {
  .p-works-strength-main-image-item {
    width: 100%;
    height: auto;
  }
}
.p-works-strength-main-text {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 480px;
  padding: 45px;
  background-color: rgba(255, 255, 255, 0.65);
}
@media only screen and (max-width: 768px) {
  .p-works-strength-main-text {
    position: static;
    width: 100%;
    transform: translateY(0);
    background-color: transparent;
    padding: 30px 0 0 0;
  }
}
.p-works-strength-main-text.left {
  left: 0;
  right: auto;
}
.p-works-strength-main-text-title {
  font-weight: bold;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .p-works-strength-main-text-title {
    padding-top: 0px;
  }
}
@media only screen and (max-width: 590px) {
  .p-works-strength-main-text-title {
    font-size: 14px;
  }
}
.p-works-strength-main-text-content {
  padding-top: 10px;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .p-works-strength-main-text-content {
    line-height: 30px;
  }
}
@media only screen and (max-width: 590px) {
  .p-works-strength-main-text-content {
    font-size: 12px;
    line-height: 20px;
  }
}
.p-works-strength .u-sp-only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-works-strength .u-sp-only {
    display: block;
  }
}

.p-works-vehicles-wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .p-works-vehicles-wrapper {
    display: block;
    width: 100%;
    padding: 60px 19px;
  }
}
.p-works-vehicles-title {
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-works-vehicles-title {
    text-align: left;
  }
}
.p-works-vehicles-title-main {
  font-size: 50px;
  color: #820982;
}
@media only screen and (max-width: 590px) {
  .p-works-vehicles-title-main {
    font-size: 32px;
  }
}
.p-works-vehicles-title-sub {
  margin-top: 16px;
  font-size: 18px;
}
@media only screen and (max-width: 590px) {
  .p-works-vehicles-title-sub {
    font-size: 11px;
    margin-top: 8px;
  }
}
.p-works-vehicles-description {
  text-align: center;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .p-works-vehicles-description {
    margin-top: 20px;
    text-align: left;
  }
}
.p-works-vehicles-description-main {
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .p-works-vehicles-description-main {
    font-size: 22px;
    line-height: 30px;
  }
}
.p-works-vehicles-description-sub {
  margin-top: 25px;
  font-size: 16px;
}
@media only screen and (max-width: 1024px) {
  .p-works-vehicles-description-sub {
    font-size: 16px;
    margin-top: 16px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 590px) {
  .p-works-vehicles-description-sub {
    font-size: 12px;
    line-height: 20px;
    margin-top: 22px;
  }
}
.p-works-vehicles-image {
  display: none;
  margin-top: 30px;
}
.p-works-vehicles-image-title {
  font-weight: bold;
}
@media only screen and (max-width: 590px) {
  .p-works-vehicles-image-title {
    font-size: 14px;
    font-weight: 400;
    margin-left: -8px;
  }
}
.p-works-vehicles-image-item {
  width: 100%;
  height: 100%;
  margin-top: 20px;
}
@media only screen and (max-width: 590px) {
  .p-works-vehicles-image-item {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .p-works-vehicles-image {
    display: block;
    width: 100%;
  }
}
.p-works-vehicles-table {
  width: 100%;
  max-width: 940px;
  height: auto;
  margin: 80px auto 0;
}
@media only screen and (max-width: 768px) {
  .p-works-vehicles-table {
    margin-top: 20px;
  }
}
.p-works-vehicles-table-row {
  width: 100%;
}
.p-works-vehicles-table-row-title {
  width: 375px;
  padding-bottom: none;
  padding: 30px 25px 0;
  border: solid 1px #ddd;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-works-vehicles-table-row-title {
    display: none;
  }
}
.p-works-vehicles-table-row-title.border-bottom-none {
  border-bottom: none;
}
.p-works-vehicles-table-row-text {
  flex: 1;
  vertical-align: middle;
  padding: 20px 30px;
  border: solid 1px #ddd;
}
@media only screen and (max-width: 590px) {
  .p-works-vehicles-table-row-text {
    font-size: 12px;
    padding: 10px 18px;
  }
}
.p-works-vehicles-table-row-value {
  width: 115px;
  vertical-align: middle;
  border: solid 1px #ddd;
  text-align: center;
}
@media only screen and (max-width: 590px) {
  .p-works-vehicles-table-row-value {
    font-size: 12px;
  }
}
.p-works-vehicles-table-row-image {
  width: 375px;
  text-align: center;
  padding: 0 25px 30px;
  border: solid 1px #ddd;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .p-works-vehicles-table-row-image {
    display: none;
  }
}
.p-works-vehicles-table-row-image.border-top-none {
  border-top: none;
}
.p-works-vehicles-table-row-image.right {
  text-align: right;
}
.p-works-vehicles-table-row-image-item {
  width: 100%;
}
.p-works-vehicles-table-row-image-item.garage {
  width: 220px;
}
.p-works-vehicles-table-text {
  font-size: 14px;
  text-align: right;
  width: 100%;
  max-width: 940px;
  height: auto;
  margin: 10px auto 0;
}
.p-works-vehicles .u-sp-only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-works-vehicles .u-sp-only {
    display: block;
  }
}

.p-works-safety {
  background-color: #4D4D4D;
}
.p-works-safety-wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .p-works-safety-wrapper {
    display: block;
    width: 100%;
    padding: 45px 20px;
  }
}
@media only screen and (max-width: 590px) {
  .p-works-safety-wrapper {
    font-size: 12px;
  }
}
.p-works-safety-text {
  color: #fff;
  padding: 20px;
  border-right: #fff 1px solid;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .p-works-safety-text {
    padding: 0 0 30px;
    width: 100%;
    border-right: none;
    border-bottom: #fff 1px solid;
  }
}
.p-works-safety-text-title {
  font-weight: bold;
  font-size: 22px;
}
@media only screen and (max-width: 590px) {
  .p-works-safety-text-title {
    font-size: 18px;
  }
}
.p-works-safety-text-main {
  margin-top: 20px;
  line-height: 25px;
}
@media only screen and (max-width: 590px) {
  .p-works-safety-text-main {
    font-size: 12px;
    line-height: 20px;
  }
}
.p-works-safety-list {
  color: #fff;
  padding: 20px 0 20px 50px;
}
@media only screen and (max-width: 768px) {
  .p-works-safety-list {
    padding: 20px 0 0;
  }
}
.p-works-safety-list-item {
  position: relative;
  padding-left: 20px;
}
@media only screen and (max-width: 590px) {
  .p-works-safety-list-item {
    font-size: 12px;
  }
}
.p-works-safety-list-item + .p-works-safety-list-item {
  margin-top: 20px;
}
@media only screen and (max-width: 590px) {
  .p-works-safety-list-item + .p-works-safety-list-item {
    margin-top: 10px;
  }
}
.p-works-safety-list-item::before {
  content: "";
  width: 12.5px;
  height: 12.5px;
  position: absolute;
  border: #fff 1px solid;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-works-safety-list-item.pdf::after {
  content: "";
  background-image: url("../../assets/image/works/icon-pdf.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 15px;
  height: 20px;
  display: inline-block;
  margin-left: 10px;
  position: absolute;
}
@media only screen and (max-width: 590px) {
  .p-works-safety-list-item.pdf::after {
    margin-left: 5px;
    top: -3px;
  }
}
.p-works-safety .u-pc-only {
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-works-safety .u-pc-only {
    display: none;
  }
}

.p-privacy {
  background-color: #E6E6E6;
}
@media only screen and (max-width: 768px) {
  .p-privacy {
    background-color: #fff;
  }
}
.p-privacy-wrapper {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 200px 0 100px;
}
@media only screen and (max-width: 768px) {
  .p-privacy-wrapper {
    display: block;
    width: 100%;
    padding: 120px 24px 60px;
  }
}
.p-privacy-title {
  padding-bottom: 50px;
  text-align: center;
  font-weight: bold;
}
.p-privacy-title-main {
  font-size: 20px;
}
@media only screen and (max-width: 590px) {
  .p-privacy-title-main {
    font-size: 18px;
  }
}
.p-privacy-main-list {
  padding: 150px;
  background-color: #fff;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .p-privacy-main-list {
    padding: 0px;
  }
}
@media only screen and (max-width: 590px) {
  .p-privacy-main-list {
    font-size: 11px;
  }
}
.p-privacy-main-list-record {
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .p-privacy-main-list-record {
    padding: 10px 0;
  }
}
.p-privacy-main-list-title {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-privacy-main-list-title {
    background-color: #fff;
  }
}
.p-privacy-main-list-title.contact {
  margin-top: 35px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .p-privacy-main-list-description {
    padding-top: 0;
  }
}
.p-privacy .border-bottom-wrapper {
  padding: 0 30px;
}
.p-privacy .border-bottom-wrapper-item {
  width: 100%;
  height: 1px;
  background-color: #000;
}

.p-recruit-wrapper {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .p-recruit-wrapper {
    display: block;
    width: 100%;
    padding: 45px 19px 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-recruit-wrapper .u-pc-only {
    display: none;
  }
}
.p-recruit-wrapper .u-sp-only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-recruit-wrapper .u-sp-only {
    display: block;
  }
}
.p-recruit-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .p-recruit-title {
    text-align: left;
    margin-bottom: 15px;
  }
}
.p-recruit-title-main {
  font-size: 50px;
  color: #820982;
}
@media only screen and (max-width: 590px) {
  .p-recruit-title-main {
    font-size: 32px;
  }
}
.p-recruit-title-sub {
  margin-top: 16px;
  font-size: 18px;
}
@media only screen and (max-width: 950px) {
  .p-recruit-title-sub {
    font-size: 11px;
    margin-top: 8px;
  }
}

.p-recruit-detail-wrapper {
  padding: 200px 0 50px;
  width: 90%;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .p-recruit-detail-wrapper {
    width: 100%;
    margin-left: 0;
    padding-top: 120px;
    padding-left: 19px;
  }
}
.p-recruit-detail-content-title {
  font-weight: bold;
}
.p-recruit-detail-content-title-main {
  font-size: 50px;
  color: #820982;
}
@media only screen and (max-width: 590px) {
  .p-recruit-detail-content-title-main {
    font-size: 32px;
  }
}
.p-recruit-detail-content-title-sub {
  margin-top: 16px;
  font-size: 18px;
}
@media only screen and (max-width: 590px) {
  .p-recruit-detail-content-title-sub {
    font-size: 11px;
    margin-top: 8px;
  }
}
.p-recruit-detail-content-image {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .p-recruit-detail-content-image {
    margin-top: 30px;
  }
}
.p-recruit-detail-content-image-item {
  height: 100%;
  width: 100%;
}
.p-recruit-detail-content-image-item.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-recruit-detail-content-image-item.pc {
    display: none;
  }
  .p-recruit-detail-content-image-item.sp {
    display: block;
  }
}
.p-recruit-detail-content-text {
  margin-top: 50px;
  font-size: 18px;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-recruit-detail-content-text {
    margin-top: 30px;
    text-align: left;
  }
}
@media only screen and (max-width: 590px) {
  .p-recruit-detail-content-text {
    font-size: 12px;
    line-height: 20px;
  }
}

.p-recruit-voice {
  background-color: #E6E6E6;
}
@media only screen and (max-width: 590px) {
  .p-recruit-voice-main {
    padding-bottom: 20px;
  }
}
.p-recruit-voice-main-image {
  border-radius: 30px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-recruit-voice-main-image {
    border-radius: 10px;
  }
}
.p-recruit-voice-main-image-item {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .p-recruit-voice-main-image-item {
    display: none;
  }
}
.p-recruit-voice-main-image-item.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-recruit-voice-main-image-item.sp {
    display: block;
  }
}
.p-recruit-voice-main-text {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .p-recruit-voice-main-text {
    margin-top: 25px;
  }
}
.p-recruit-voice-main-text-catchcopy {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 590px) {
  .p-recruit-voice-main-text-catchcopy {
    font-size: 20px;
  }
}
.p-recruit-voice-main-text-who {
  margin-top: 10px;
  font-weight: bold;
}
@media only screen and (max-width: 590px) {
  .p-recruit-voice-main-text-who {
    font-size: 12px;
  }
}
.p-recruit-voice-main-text-list {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .p-recruit-voice-main-text-list {
    margin-top: 0;
  }
}
.p-recruit-voice-main-text-list-item {
  padding: 20px 0;
}
.p-recruit-voice-main-text-list-item + .p-recruit-voice-main-text-list-item {
  border-top: 1px solid #000;
}
.p-recruit-voice-main-text-list-title {
  background-color: #000;
  color: #fff;
  padding: 8px 14px;
  display: inline-block;
  font-weight: 400;
}
@media only screen and (max-width: 590px) {
  .p-recruit-voice-main-text-list-title {
    font-size: 12px;
  }
}
.p-recruit-voice-main-text-list-description {
  margin-top: 10px;
  line-height: 30px;
}
@media only screen and (max-width: 590px) {
  .p-recruit-voice-main-text-list-description {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 590px) {
  .p-recruit-question-main {
    margin-bottom: 30px;
  }
}
.p-recruit-question-main-list {
  margin-top: 20px;
}
.p-recruit-question-main-list-item {
  padding: 20px 60px;
}
@media only screen and (max-width: 768px) {
  .p-recruit-question-main-list-item {
    padding: 20px 0 20px 45px;
  }
}
@media only screen and (max-width: 590px) {
  .p-recruit-question-main-list-item {
    font-size: 14px;
  }
}
.p-recruit-question-main-list-item + .p-recruit-question-main-list-item {
  border-top: 1px dotted #000;
}
.p-recruit-question-main-list-question {
  font-weight: bold;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}
@media only screen and (max-width: 590px) {
  .p-recruit-question-main-list-question {
    font-size: 14px;
    padding: 5px 0;
  }
}
.p-recruit-question-main-list-question::before {
  content: "Q";
  font-size: 24px;
  font-weight: 400;
  background-color: #000;
  color: #fff;
  height: 33px;
  width: 34px;
  position: absolute;
  left: -60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 3px;
}
@media only screen and (max-width: 590px) {
  .p-recruit-question-main-list-question::before {
    font-size: 19px;
    width: 27px;
    height: 27px;
    left: -45px;
  }
}
.p-recruit-question-main-list-answer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
  line-height: 1.6;
}
@media only screen and (max-width: 590px) {
  .p-recruit-question-main-list-answer {
    font-size: 12px;
  }
}
.p-recruit-question-main-list-answer::before {
  content: "A";
  font-size: 24px;
  font-weight: 400;
  background-color: #820982;
  color: #fff;
  height: 33px;
  width: 33px;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 3px;
}
@media only screen and (max-width: 768px) {
  .p-recruit-question-main-list-answer::before {
    top: 10px;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 590px) {
  .p-recruit-question-main-list-answer::before {
    font-size: 19px;
    width: 27px;
    height: 27px;
    left: -45px;
  }
}

.p-recruit-appguidelines {
  background-color: #E6E6E6;
}
@media only screen and (max-width: 768px) {
  .p-recruit-appguidelines-main {
    padding: 15px 0;
  }
}
.p-recruit-appguidelines-main-list {
  padding: 60px 70px;
  background-color: #fff;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .p-recruit-appguidelines-main-list {
    background-color: #E6E6E6;
    padding: 0;
    margin-bottom: 30px;
  }
}
.p-recruit-appguidelines-main-list-record {
  display: flex;
  padding: 20px 0;
  border-top: 1px solid #999;
}
@media only screen and (max-width: 768px) {
  .p-recruit-appguidelines-main-list-record {
    display: block;
    border: none;
    padding: 10px 0;
  }
}
@media only screen and (max-width: 590px) {
  .p-recruit-appguidelines-main-list-record {
    padding: 10px 0;
  }
}
.p-recruit-appguidelines-main-list-record:last-child {
  border-bottom: 1px solid #999;
}
@media only screen and (max-width: 768px) {
  .p-recruit-appguidelines-main-list-record:last-child {
    border: none;
  }
}
.p-recruit-appguidelines-main-list-title {
  width: 20%;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .p-recruit-appguidelines-main-list-title {
    background-color: #fff;
    width: 100%;
    padding: 5px;
  }
}
@media only screen and (max-width: 590px) {
  .p-recruit-appguidelines-main-list-title {
    font-size: 12px;
  }
}
.p-recruit-appguidelines-main-list-description {
  width: 80%;
  line-height: 25px;
}
@media only screen and (max-width: 768px) {
  .p-recruit-appguidelines-main-list-description {
    width: 100%;
    padding-top: 10px;
  }
}
@media only screen and (max-width: 590px) {
  .p-recruit-appguidelines-main-list-description {
    font-size: 12px;
    line-height: 20px;
    padding-top: 5px;
  }
}
.p-recruit-appguidelines-btn-link {
  color: #fff;
  padding: 50px 0;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  display: block;
  height: 100%;
  background-color: #820982;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-recruit-appguidelines-btn-link {
    font-size: 12px;
    padding: 20px;
    margin-bottom: 30px;
  }
}

.p-news-wrapper {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 200px 0 100px;
}
@media only screen and (max-width: 768px) {
  .p-news-wrapper {
    display: block;
    width: 100%;
    padding: 120px 19px 60px;
  }
}
.p-news-title {
  padding-bottom: 50px;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 590px) {
  .p-news-title {
    padding-bottom: 30px;
  }
}
.p-news-title-main {
  font-size: 20px;
}
@media only screen and (max-width: 590px) {
  .p-news-title-main {
    font-size: 18px;
  }
}

.p-news-list-main-items {
  padding: 50px 0 60px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .p-news-list-main-items {
    padding: 0px;
  }
}
.p-news-list-main-items-record {
  display: flex;
  border-bottom: 1px solid #000;
  padding: 50px 30px 50px 0px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-news-list-main-items-record {
    display: block;
    padding: 20px 0;
    text-align: left;
  }
}
@media only screen and (max-width: 590px) {
  .p-news-list-main-items-record {
    font-size: 12px;
  }
}
.p-news-list-main-items-record-date {
  padding-right: 30px;
  display: flex;
  align-items: center;
  color: #808080;
  font-weight: normal;
}
.p-news-list-main-items-record-title {
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .p-news-list-main-items-record-title {
    padding-top: 10px;
  }
}

.p-news-detail-article {
  border-bottom: 1px solid #000;
  padding: 20px 0;
}
@media only screen and (max-width: 590px) {
  .p-news-detail-article {
    font-size: 12px;
  }
}
.p-news-detail-article-date {
  color: #808080;
}
.p-news-detail-article-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
  line-height: 1.6;
}
@media only screen and (max-width: 590px) {
  .p-news-detail-article-title {
    font-size: 14px;
  }
}
.p-news-detail-article-context {
  margin-top: 15px;
  letter-spacing: 0.1px;
  line-height: 25px;
}
.p-news-detail-article-image {
  margin-top: 30px;
}
.p-news-detail-article-image-item {
  width: 100%;
}
.p-news-detail .p-news-detail-back {
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .p-news-detail .p-news-detail-back {
    margin-top: 50px;
  }
}
.p-news-detail .p-news-detail-back-btn {
  margin: 0 auto;
  background-color: #B3B3B3;
  color: #fff;
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .p-news-detail .p-news-detail-back-btn {
    width: 60%;
  }
}
.p-news-detail .p-news-detail-back-link {
  display: block;
  text-align: center;
  padding: 40px 0;
}
@media only screen and (max-width: 768px) {
  .p-news-detail .p-news-detail-back-link {
    padding: 20px 0;
  }
}

.p-contact-wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 200px 0 100px;
}
@media only screen and (max-width: 768px) {
  .p-contact-wrapper {
    display: block;
    width: 100%;
    padding: 120px 19px 60px;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-wrapper .u-pc-only {
    display: none;
  }
}
.p-contact-title {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .p-contact-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.wpcf7-spinner {
  display: none;
}

.p-contact-form {
  background-color: #E6E6E6;
}
@media only screen and (max-width: 768px) {
  .p-contact-form {
    background-color: #fff;
  }
}
.p-contact-form-main {
  background-color: #fff;
  padding: 60px;
}
@media only screen and (max-width: 950px) {
  .p-contact-form-main {
    padding: 60px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main {
    padding: 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-form-main {
    font-size: 12px;
  }
}
.p-contact-form-main-text {
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-text {
    padding-bottom: 10px;
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-form-main-text {
    font-size: 10px;
  }
}
.p-contact-form-main-list {
  width: 90%;
  padding: 50px 0;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 1024px) {
  .p-contact-form-main-list {
    width: 100%;
  }
}
.p-contact-form-main-list-record {
  display: flex;
  margin-top: 20px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-list-record {
    display: block;
    height: auto;
  }
}
.p-contact-form-main-list-title {
  width: 25%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: end;
  padding-right: 30px;
  text-align: right;
  flex-wrap: wrap;
}
@media only screen and (max-width: 950px) {
  .p-contact-form-main-list-title {
    padding-right: 15px;
    font-size: 15px;
    width: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-list-title {
    width: 100%;
    text-align: left;
    padding-right: 0;
    margin-bottom: 10px;
    display: flex;
    justify-content: left;
  }
}
@media only screen and (max-width: 590px) {
  .p-contact-form-main-list-title {
    font-size: 12px;
  }
}
.p-contact-form-main-list-title.required::after {
  content: "*";
  color: red;
  font-size: 10px;
}
.p-contact-form-main-list-description {
  width: 75%;
  position: relative;
}
@media only screen and (max-width: 950px) {
  .p-contact-form-main-list-description {
    width: 80%;
  }
}
.p-contact-form-main-list-description label input[type=radio] {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-list-description {
    width: 100%;
  }
}
.p-contact-form-main-list-description p {
  height: 57px;
}
@media only screen and (max-width: 590px) {
  .p-contact-form-main-list-description p {
    height: 45px;
  }
}
.p-contact-form-main-list-description.confirm {
  font-weight: bold;
  padding-left: 30px;
}
.p-contact-form-main-list-description.confirm.address {
  position: relative;
}
.p-contact-form-main-list-description.confirm.address::before {
  content: "〒";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-weight: b;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-list-description.confirm.address::before {
    transform: translateY(-45%);
    left: 15px;
  }
}
.p-contact-form-main-list-description.confirm p {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.p-contact-form-main-list-textInput {
  border: #000 solid 1px;
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  position: relative;
}
@media only screen and (max-width: 590px) {
  .p-contact-form-main-list-textInput {
    padding-left: 0.6rem;
  }
}
.p-contact-form-main-list-radio {
  display: flex;
  justify-content: space-between;
}
.p-contact-form-main-list-radio-item {
  border: #000 solid 1px;
  width: 30%;
}
@media only screen and (max-width: 950px) {
  .p-contact-form-main-list-radio-item {
    width: 32%;
  }
}
.p-contact-form-main-list-radio-input[type=radio]:checked + .p-contact-form-main-list-radio-label {
  color: #820982;
  position: relative;
}
.p-contact-form-main-list-radio-input[type=radio]:checked + .p-contact-form-main-list-radio-label:before, .p-contact-form-main-list-radio-input[type=radio]:checked + .p-contact-form-main-list-radio-label:after {
  content: "";
  display: block;
  position: absolute;
}
.p-contact-form-main-list-radio-input[type=radio]:checked + .p-contact-form-main-list-radio-label:before {
  background: #820982;
}
.p-contact-form-main-list-radio-input[type=radio]:checked + .p-contact-form-main-list-radio-label:after {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.p-contact-form-main-list-radio-label {
  padding: 15px 0 15px 15px;
  display: block;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .p-contact-form-main-list-radio-label {
    padding: 15px 0 15px 5px;
  }
}
.p-contact-form-main-list-radio-label:before, .p-contact-form-main-list-radio-label:after {
  content: "";
  display: block;
  position: absolute;
}
.p-contact-form-main-list-radio-label:before {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #CCC;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-list-radio-label:before {
    right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-form-main-list-radio-label:before {
    width: 15px;
    height: 15px;
    right: 10px;
  }
}
.p-contact-form-main-list-radio-label:after {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 14px;
  height: 6px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  top: 48%;
  right: 20px;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-list-radio-label:after {
    right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-form-main-list-radio-label:after {
    width: 10px;
    height: 4px;
    right: 10px;
  }
}
.p-contact-form-main-list .contact-sub {
  display: block;
  font-size: 14px;
  width: 100%;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-list .contact-sub {
    font-size: 12px;
  }
}
.p-contact-form-main-textarea {
  width: 90%;
  padding: 40px 0;
}
@media only screen and (max-width: 1024px) {
  .p-contact-form-main-textarea {
    width: 100%;
  }
}
.p-contact-form-main-textarea-record {
  display: flex;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-textarea-record {
    display: block;
  }
}
.p-contact-form-main-textarea-title {
  width: 25%;
  align-items: center;
  flex-direction: row;
  justify-content: end;
  padding-right: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 950px) {
  .p-contact-form-main-textarea-title {
    padding-right: 15px;
    font-size: 15px;
    width: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-textarea-title {
    width: 100%;
  }
}
.p-contact-form-main-textarea-title-sub {
  font-size: 14px;
  font-weight: normal;
  margin-top: 10px;
}
.p-contact-form-main-textarea-description {
  width: 75%;
  height: 300px;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-textarea-description {
    width: 100%;
    margin-top: 15px;
  }
}
.p-contact-form-main-textarea-description p {
  height: 100%;
}
.p-contact-form-main-textarea-description.confirm {
  height: auto;
  font-weight: bold;
  padding-left: 30px;
}
@media only screen and (max-width: 950px) {
  .p-contact-form-main-textarea-description.confirm {
    padding: 0;
  }
}
.p-contact-form-main-textarea-check {
  text-align: center;
  position: relative;
}
.p-contact-form-main-textarea-check::before {
  content: "";
  width: 280px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: -3px;
  left: 52%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 590px) {
  .p-contact-form-main-textarea-check::before {
    width: 245px;
    left: 40px;
    transform: translateX(0);
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-form-main-textarea-check::before {
    left: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-form-main-textarea-check {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 590px) {
  .p-contact-form-main-textarea-check {
    text-align: left;
    font-size: 11px;
  }
}
.p-contact-form-main-textarea-link {
  color: #00f;
}
.p-contact-form-main-textarea-textInput {
  border: #000 solid 1px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  position: relative;
  line-height: 1.4;
}
.p-contact-form-submit {
  margin: 100px auto 0;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-submit {
    padding-bottom: 40px;
    border-bottom: #000 solid 1px;
    margin: 40px auto 0;
  }
}
.p-contact-form-submit-wrapper {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 590px) {
  .p-contact-form-submit-wrapper {
    width: 35%;
    font-size: 12px;
  }
}
.p-contact-form-submit-wrapper div {
  display: flex;
  justify-content: space-around;
  width: 100%;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-submit-wrapper div {
    gap: 10px;
  }
}
.p-contact-form-submit-wrapper div .wpcf7-form-control {
  color: #fff;
  padding: 60px 0px;
  width: 100%;
  display: block;
  height: 100%;
  background-color: #820982;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-submit-wrapper div .wpcf7-form-control {
    padding: 20px 0px;
  }
}
.p-contact-form-submit {
  margin: 100px auto 0;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-submit {
    padding-bottom: 40px;
    border-bottom: #000 solid 1px;
    margin: 0 auto;
  }
}
.p-contact-form-submit-wrapper {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.p-contact-form-submit-wrapper input[type=submit] {
  color: #fff;
  padding: 50px 0;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  display: block;
  height: 100%;
  background-color: #820982;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-submit-wrapper input[type=submit] {
    padding: 20px 40px;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-form-submit-wrapper input[type=submit] {
    padding: 20px;
  }
}
.p-contact-form-submit-wrapper.confirm {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-submit-wrapper.confirm {
    width: 85%;
  }
}
.p-contact-form-submit-wrapper.confirm p {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-submit-wrapper.confirm p {
    gap: 10px;
  }
}
.p-contact-form-submit-wrapper.confirm p .wpcf7-form-control {
  color: #fff;
  padding: 50px 0px;
  width: 100%;
  max-width: 450px;
  margin: 0;
  display: block;
  height: 100%;
  background-color: #820982;
}
@media only screen and (max-width: 768px) {
  .p-contact-form-submit-wrapper.confirm p .wpcf7-form-control {
    padding: 20px 0px;
  }
}
.p-contact-form-submit-wrapper.confirm p .wpcf7-form-control.wpcf7-previous {
  background-color: #999;
  width: 100%;
  max-width: 450px;
}
.p-contact-form-submit-wrapper.confirm .wpcf7-spinner {
  display: none !important;
}
@media only screen and (max-width: 590px) {
  .p-contact-form .wpcf7-list-item-label {
    font-size: 14px;
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-form .wpcf7-list-item-label {
    font-size: 14px;
    padding: 20px 5px;
  }
}
.p-contact-form .wpcf7-radio {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 950px) {
  .p-contact-form .wpcf7-radio {
    gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-form .wpcf7-radio {
    gap: 10px;
  }
}
.p-contact-form .wpcf7-radio .wpcf7-list-item {
  width: 100%;
  height: auto;
  margin: 0;
  cursor: pointer;
}
.p-contact-form .wpcf7-radio .wpcf7-list-item label {
  width: 100%;
  height: auto;
}
.p-contact-form .wpcf7-radio .wpcf7-list-item-label {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid #ccc;
  padding: 20px;
  display: block;
}
@media only screen and (max-width: 480px) {
  .p-contact-form .wpcf7-radio .wpcf7-list-item-label {
    font-size: 11px;
    padding: 15px 10px;
  }
}
.p-contact-form .wpcf7-radio .wpcf7-list-item-label:before, .p-contact-form .wpcf7-radio .wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
}
.p-contact-form .wpcf7-radio .wpcf7-list-item-label:before {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #CCC;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .p-contact-form .wpcf7-radio .wpcf7-list-item-label:before {
    right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-form .wpcf7-radio .wpcf7-list-item-label:before {
    width: 15px;
    height: 15px;
    right: 10px;
  }
}
.p-contact-form .wpcf7-radio .wpcf7-list-item-label:after {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 11px;
  height: 6px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  top: 45%;
  right: 27px;
}
@media only screen and (max-width: 768px) {
  .p-contact-form .wpcf7-radio .wpcf7-list-item-label:after {
    right: 12px;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-form .wpcf7-radio .wpcf7-list-item-label:after {
    width: 10px;
    height: 4px;
    right: 10px;
  }
}
.p-contact-form .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label {
  color: #820982;
  border: 1px solid #820982;
}
.p-contact-form .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label:before {
  background: #820982;
}
.p-contact-form .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label:after {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.p-contact-form .wpcf7-radio .wpcf7-radio {
  display: flex;
  gap: 20px;
}

.p-contact-form-submit-wrapper > div {
  display: block !important;
}

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

.p-contact-complete {
  background-color: #E6E6E6;
}
@media only screen and (max-width: 768px) {
  .p-contact-complete {
    background-color: #fff;
  }
}
.p-contact-complete-wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 200px 0 100px;
}
@media only screen and (max-width: 768px) {
  .p-contact-complete-wrapper {
    display: block;
    width: 100%;
    padding: 120px 0 60px;
  }
}
.p-contact-complete-title {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .p-contact-complete-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.p-contact-complete-main {
  background-color: #fff;
  padding: 145px 0 120px;
  text-align: center;
}
@media only screen and (max-width: 950px) {
  .p-contact-complete-main {
    padding: 60px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-complete-main {
    font-size: 14px;
    padding: 19px;
    background-color: #E6E6E6;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-complete-main {
    font-size: 12px;
    padding: 20px;
  }
}
.p-contact-complete-main-text {
  background-color: #fff;
  border-radius: 30px;
}
@media only screen and (max-width: 768px) {
  .p-contact-complete-main-text {
    padding: 30px 19px;
  }
}
@media only screen and (max-width: 590px) {
  .p-contact-complete-main-text {
    padding: 30px 10px;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-complete-main-text {
    padding: 65px 0 55px;
  }
}
.p-contact-complete-main-text-top {
  font-size: 20px;
}
@media only screen and (max-width: 590px) {
  .p-contact-complete-main-text-top {
    font-size: 14px;
  }
}
.p-contact-complete-main-text-message {
  margin-top: 20px;
  line-height: 30px;
}
@media only screen and (max-width: 590px) {
  .p-contact-complete-main-text-message {
    font-size: 11px;
  }
}
.p-contact-complete-main-text-company {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .p-contact-complete-submit {
    padding: 40px 0;
    border-bottom: #000 solid 1px;
    margin: 0 14px;
  }
}
.p-contact-complete-submit-wrapper {
  text-align: center;
  width: 50%;
  margin: 100px auto 0;
}
@media only screen and (max-width: 768px) {
  .p-contact-complete-submit-wrapper {
    margin: 0 auto;
  }
}
.p-contact-complete-submit-button {
  color: #fff;
  font-size: 17px;
  padding: 55px 0;
  width: 100%;
  display: block;
  height: 100%;
  background-color: #999;
}
@media only screen and (max-width: 768px) {
  .p-contact-complete-submit-button {
    font-size: 14px;
    padding: 20px 40px;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-complete-submit-button {
    padding: 15px 0;
    font-size: 11px;
  }
}

.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease-in-out;
}
.js-fade.active {
  opacity: 1;
  transform: translateY(0);
}

html {
  font-family: "Noto Sans JP", sans-serif;
}

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