@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
	cursor: pointer;
}

img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

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

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

h1,
h2,
h3,
p,
a {
  margin: 0;
}

body,
h2,
h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

body {
  color: #333;
}

html {
  font-size: 4.2666666667vw;
}
@media (min-width: 376px) {
  html {
    font-size: 1rem;
  }
}

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

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
  color: inherit;
}

a:focus {
  outline: none !important;
  box-shadow: none;
}

.c-section {
  padding-block: 100px;
}
@media screen and (max-width: 768px) {
  .c-section {
    padding-block: 50px;
  }
}

.c-section__title {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .c-section__title {
    font-size: 2rem;
  }
}
.c-section__title .char-inner {
  display: inline-block;
  background: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 共通アニメーション設定 */
.anime-up {
  display: block;
  overflow: hidden;
  line-height: 1;
}
.anime-up .char-outer {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  will-change: transform, opacity;
}
.anime-up .char-inner {
  display: inline-block;
}

/* アニメーション定義 */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/* 文字色の透明化（グラデーションない場合用） */
.c-section__title.anime-up {
  color: transparent;
}

.c-section__title:not(.anime-up):not(.--security):not(.--recruit) {
  background: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-section__title.--security {
  color: #fff;
}

.c-top-section .c-section__title {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .c-top-section .c-section__title {
    margin-top: 16px;
  }
}

.c-section__title.--product br {
  display: none;
}
@media screen and (max-width: 1360px) {
  .c-section__title.--product br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-section__title.--product br {
    display: none;
  }
}

.p-sponsor .c-section__title {
  color: #fff;
}

.c-section__lead {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-section__lead {
    font-size: 1rem;
  }
}

.c-section__lead.--service {
  max-width: 900px;
  margin-inline: auto;
}

.c-section__lead.--bold {
  font-weight: 700;
}

.c-section__lead.--left {
  text-align: left;
}

.c-section__lead.--center {
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.c-section__lead.--narrow {
  line-height: 1.5;
}

.c-section__lead span {
  color: #208a55;
}

.c-section__lead span.--bold {
  color: #333;
  font-weight: 700;
}
.c-section__lead.--cate {
    line-height: 1;
    margin-right: 14px;
}
.c-section__text {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-section__text {
    font-size: 1rem;
    letter-spacing: 0em;
  }
}

.c-section__text.--center {
  text-align: center;
}

.c-top-section .c-section__text {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .c-top-section .c-section__text {
    margin-top: 16px;
  }
}

.c-section__top-sub {
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  border-radius: 50px;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  padding: 12px 16px 12px 40px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-section__top-sub {
    font-size: 0.875rem;
    letter-spacing: 0em;
  }
}

.c-section__top-sub::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  border-radius: 999px;
}

.c-section__btn {
  color: #fff;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .c-section__btn {
    margin-top: 32px;
  }
}

.c-section__btn.--page {
  margin-top: 24px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-section__btn.--page {
    margin-top: 16px;
    text-align: center;
  }
}

.c-section__btn.--center {
  margin-inline: auto;
}

.c-section__btn.--center .c-section__btn-link {
  margin-inline: auto;
}

.c-section__btn.--company {
  margin-top: 0;
}

.c-section__btn-link {
  display: block;
  padding: 19px;
  text-align: center;
  width: 220px;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background-color: #22c55e;
  border-radius: 50px;
  position: relative;
}

.c-section__btn-link span {
  padding-right: 28px;
}

.c-section__btn-link::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/more-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 25%;
  transform: translateY(-50%);
  z-index: 1;
}

.c-section__btn-link.--right {
  margin-left: auto;
}

.c-section__top-btn {
  margin-bottom: 100px;
  margin-inline: auto;
  max-width: 220px;
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-section__top-btn {
    margin-bottom: 50px;
  }
}

.c-section__top-link {
  max-width: 100%;
  background: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
}

.c-section__fadeUp {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-section__fadeUp2 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp2 1s ease-out forwards;
  animation-delay: 1s;
}

@keyframes fadeUp2 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-section__fadeUp3,
.c-section__fadeUp4 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.c-section__fadeUp3.is-show,
.c-section__fadeUp4.is-show {
  opacity: 1;
  transform: translateY(0);
}

.c-top-section {
  padding-block: 148px 100px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c-top-section {
    padding-block: 80px 50px;
  }
}

.c-top-section.--gr {
  background-color: #efefef;
}

.c-top-section__band {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-top-section__band {
    top: 0;
  }
}

.c-top-section__band-track {
  display: inline-flex;
}

.c-top-section__band-text {
  padding-inline: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 8.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-top-section__band-text {
    font-size: 5.625rem;
  }
}

.c-top-section__band-text.--gr {
  color: #efefef;
}

.c-top-section__body {
  max-width: 1590px;
  width: 100%;
  margin-inline: auto;
  position: relative;
}

.c-top-section__img {
  max-width: 600px;
  width: 40%;
  position: absolute;
  top: -24px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .c-top-section__img {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .c-top-section__img {
    width: 100%;
    position: static;
  }
}

.c-top-section__img.--right {
  right: 0;
}

.c-top-section__wrap {
  display: flex;
  align-items: center;
  padding: 24px 100px;
  border-radius: 15px;
  position: relative;
  min-height: 450px;
}
@media screen and (max-width: 1024px) {
  .c-top-section__wrap {
    padding: 16px 50px;
  }
}
@media screen and (max-width: 768px) {
  .c-top-section__wrap {
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
}

.c-top-section__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  pointer-events: none;
  width: 365px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .c-top-section__wrap::before {
    width: 220px;
  }
}
@media screen and (max-width: 768px) {
  .c-top-section__wrap::before {
    width: 100%;
    height: auto;
    aspect-ratio: 359/236;
  }
}

.c-top-section__wrap.--gr::before {
  right: 0;
  background: linear-gradient(to right, rgba(163, 230, 53, 0.4), rgba(34, 197, 94, 0.4));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 27.5% 100%);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
@media screen and (max-width: 768px) {
  .c-top-section__wrap.--gr::before {
    left: 0;
    background: linear-gradient(to right, rgba(163, 230, 53, 0.4), rgba(34, 197, 94, 0.4));
    clip-path: polygon(0 0, 100% 0, 72.5% 100%, 0 100%);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
}

.c-top-section__wrap.--wh::before {
  left: 0;
  background: linear-gradient(to right, rgba(163, 230, 53, 0.4), rgba(34, 197, 94, 0.4));
  clip-path: polygon(0 0, 100% 0, 72.5% 100%, 0 100%);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media screen and (max-width: 768px) {
  .c-top-section__wrap.--wh::before {
    left: 0;
    background: linear-gradient(to right, rgba(163, 230, 53, 0.4), rgba(34, 197, 94, 0.4));
    clip-path: polygon(0 0, 100% 0, 72.5% 100%, 0 100%);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
}

.c-top-section__wrap.--wh {
  background-color: #fff;
}

.c-top-section__wrap.--gr {
  background-color: #f7f7f7;
}

.c-top-section__cnt {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .c-top-section__cnt {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .c-top-section__cnt {
    padding: 24px 8px 32px;
    width: 100%;
  }
}

.c-top-section__cnt.--right {
  margin-left: auto;
}

.c-top-section__bgL {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-top-section__bgL {
    position: relative;
  }
}

.c-top-section__bgL img {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.c-top-section__bgL::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  z-index: 2;
}

.c-top-section__bgL.active::before {
  animation: slide-bg 1s forwards;
}

.c-top-section__bgL.show img {
  opacity: 1;
}

/* 擬似要素アニメーション */
@keyframes slide-bg {
  0% {
    left: -100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.c-page-section__lead {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #208a55;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .c-page-section__lead {
    font-size: 1.5rem;
  }
}

.c-page-section__lead.--center {
  text-align: center;
}

.c-page-section__head {
  margin-bottom: 76px;
  padding-left: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-page-section__head {
    margin-bottom: 14px;
    padding-left: 0;
  }
}

.c-page-section__head.--other {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-page-section__head.--other {
    margin-bottom: 0;
  }
}

.c-page-section__head-container {
  position: relative;
}

.c-page-section__head-container img {
  border-bottom-left-radius: 15px;
	  border-bottom-right-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .c-page-section__head-container img {
    aspect-ratio: 2.5/1;
  }
}
@media screen and (max-width: 768px) {
  .c-page-section__head-container img {
    border-radius: 0;
  }
}
@media screen and (max-width: 600px) {
  .c-page-section__head-container img {
    aspect-ratio: 2/1;
  }
}

.c-page-section__head-container:not(.--security)::before {
  content: "";
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 54%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.c-page-section__head-container.--security::before {
  content: "";
  border-bottom-left-radius: 15px;
  width: 37%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media screen and (max-width: 1200px) {
  .c-page-section__head-container.--security::before {
  width: 46%;
  }
}
@media screen and (max-width: 1000px) {
  .c-page-section__head-container.--security::before {
  width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .c-page-section__head-container.--security::before {
    border-bottom-left-radius: 0; 
	  width: 80%;
	  max-width: 320px;
  }
}

.c-page-section__head-wrap:not(.--security) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  width: 350px;
  aspect-ratio: 350/240;
  border-bottom-right-radius: 15px;
  position: absolute;
  top: 80px;
  left: 0;
}
@media screen and (max-width: 1280px) {
  .c-page-section__head-wrap:not(.--security) {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .c-page-section__head-wrap:not(.--security) {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .c-page-section__head-wrap:not(.--security) {
    background-color: rgba(255, 255, 255, 0.8);
   width: 57%;
        aspect-ratio: 180 / 72;
    top: 50px;
  }
}
@media screen and (max-width: 530px) {
  .c-page-section__head-wrap:not(.--security) {
    background-color: rgba(255, 255, 255, 0.8);
            width: 82%;
  }
}

.c-page-section__head-title-wrap {
  position: absolute;
  top: 56%;
  left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
	/*追加*/
	top: 50%;
	padding-right: 20px;
    padding-left: 20px;
    background-color: white;
    padding-bottom: 22px;
    padding-top: 42px;
    min-height: 240px;
	border-bottom-right-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .c-page-section__head-title-wrap {
    top: 70%;
	   top: 56%;
	    padding-bottom: 10px;
    min-height: unset;
  }
}
@media screen and (max-width: 768px) {
  .c-page-section__head-title-wrap {
    top: 56%;
    left: 16px;
	    padding-right: initial;
    padding-left: initial;
    background-color: initial;
    padding-bottom: initial;
    padding-top: initial;
    min-height: unset;
	border-bottom-right-radius: initial;
  }
}
.c-page-section__head-title-wrap.--security {
	top: 56%;
	padding-right: initial;
    padding-left: initial;
    background-color: initial;
    padding-bottom: initial;
    padding-top: initial;
    min-height: initial;
}
@media screen and (max-width: 1024px) {
  .c-page-section__head-title-wrap.--security {
    top: 60%;
  }
}
@media screen and (max-width: 768px) {
  .c-page-section__head-title-wrap.--security {
    top: 56%;
    left: 16px;
  }
}

.c-page-section__head-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

.c-page-section__head-lead {
  display: inline-block;
  margin-top: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .c-page-section__head-lead {
    margin-top: 16px;
  }
}
@media screen and (max-width: 600px) {
  .c-page-section__head-lead {
    margin-top: 8px;
  }
}

.c-page-section__head-lead.--security {
  color: #fff;
}

.c-page-section__cnt {
  padding-bottom: 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-page-section__cnt {
    padding-bottom: 50px;
  }
}

.c-page-section__cnt::before {
  content: "";
  background-image: url(../images/page-head-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.c-page-section__cnt-inner {
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  .c-page-section__cnt-inner {
    padding-left: 0;
  }
}

.c-page-section__cnt-lead span {
  font-family: "Poppins", sans-serif;
  font-size: 8.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
  color: #efefef;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-page-section__cnt-lead span {
    font-size: 2rem;
  }
}

.c-page-section__cnt-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.c-page-section__cnt-wrap {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .c-page-section__cnt-wrap {
    margin-top: 20px;
  }
}

.c-page-section__items {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 48px;
}
@media screen and (max-width: 1024px) {
  .c-page-section__items {
    flex-direction: column;
    gap: 64px;
  }
}
@media screen and (max-width: 768px) {
  .c-page-section__items {
    margin-top: 32px;
  }
}

.c-page-section__item {
  width: calc((100% - 80px) / 2);
}
@media screen and (max-width: 1024px) {
  .c-page-section__item {
    max-width: 625px;
    margin-inline: auto;
    width: 100%;
  }
}

.c-page-section__items.--second {
  gap: 36px;
}

.c-page-section__items.--second .c-page-section__item {
  width: calc((100% - 36px) / 2);
}
@media screen and (max-width: 1024px) {
  .c-page-section__items.--second .c-page-section__item {
    max-width: 625px;
    margin-inline: auto;
    width: 100%;
  }
}

.c-page-section__item-img {
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-page-section__item-img {
    margin-bottom: 24px;
  }
}

.c-page-section__item-sub {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  right: 16px;
  bottom: 16px;
}
@media screen and (max-width: 1280px) {
  .c-page-section__item-sub {
    font-size: 2.5rem;
  }
}

.c-page-section__title {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 24px;
  margin-bottom: 24px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #208a55;
  word-break: keep-all;
  overflow-wrap: break-word;
  background-image: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
}
@media screen and (max-width: 768px) {
  .c-page-section__title {
    padding-bottom: 16px;
    margin-bottom: 32px;
    font-size: 1.5rem;
	  margin-top: 12px;
  }
}
.c-post-eyecatch img{
	    max-height: 300px;
    object-fit: contain;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-left: 16px;
  }
}

.p-page-security .breadcrumb,
.p-page-protection .breadcrumb,
.p-page-zeroTrust .breadcrumb,
.p-page-user .breadcrumb,
.p-page-remote .breadcrumb,
.p-page-cloud .breadcrumb,
.p-page-flow .breadcrumb,
.p-page-product .breadcrumb {
  width: 40%;
}
@media screen and (max-width: 1280px) {
  .p-page-security .breadcrumb,
  .p-page-protection .breadcrumb,
  .p-page-zeroTrust .breadcrumb,
  .p-page-user .breadcrumb,
  .p-page-remote .breadcrumb,
  .p-page-cloud .breadcrumb,
  .p-page-flow .breadcrumb,
  .p-page-product .breadcrumb {
    width: 100%;
  }
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.breadcrumb__home img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}

.breadcrumb__sep {
  width: 10px;
  height: 14px;
  margin: 0 6px;
}

.c-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
}

.c-scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.c-scroll-top span {
  display: inline-block;
  margin-top: 15px;
}

.c-scroll-top::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  background-image: url(../images/top-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-page-privacy__wrap {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .c-page-privacy__wrap {
    margin-bottom: 32px;
  }
}

.c-page-privacy__text {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .c-page-privacy__text {
    margin-top: 16px;
  }
}

.c-page-privacy__lead {
  margin-block: 48px 24px;
  padding-bottom: 16px;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-page-privacy__lead {
    margin-top: 32px;
  }
}

.c-page-privacy__lead::before {
  content: "";
  width: 320px;
  height: 2px;
  background-image: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-page-privacy__lead::before {
    width: 200px;
  }
}

.c-page-privacy__lists {
  counter-reset: item;
  list-style: none;
  padding-left: 25px;
}

.c-page-privacy__list {
  counter-increment: item;
  position: relative;
}

.c-page-privacy__list::before {
  content: "(" counter(item) ")";
  font-size: 1.125rem;
  position: absolute;
  left: -25px;
  top: 8px;
}

.c-page-privacy__item.--margin {
  margin-block: 24px;
}
@media screen and (max-width: 768px) {
  .c-page-privacy__item.--margin {
    margin-top: 16px;
  }
}

.c-page-privacy__item a {
  color: #1784fb;
}

.c-page-privacy__counter {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .c-page-privacy__counter {
    margin-top: 40px;
  }
}

.c-page-privacy__dots {
  list-style-type: disc;
  list-style-position: inside;
}

.c-page-privacy__dots.--margin {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .c-page-privacy__dots.--margin {
    margin-top: 16px;
  }
}

.c-page-company__inner {
  max-width: 1240px;
  margin-inline: auto;
  margin-bottom: 100px;
  padding-inline: 80px;
}
@media screen and (max-width: 768px) {
  .c-page-company__inner {
    margin-bottom: 50px;
    padding-inline: 16px;
  }
}

.c-page-company__text {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .c-page-company__text {
    margin-top: 16px;
  }
}

.c-page-company__text.--margin {
  margin-top: 48px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-page-company__text.--margin {
    margin-top: 32px;
  }
}

.c-cta__container {
  margin-top: 100px;
  width: 100%;
  padding-block: 100px;
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)), url("../images/cta_bg.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .c-cta__container {
    margin-top: 50px;
    padding-block: 50px;
  }
}

.c-cta__items {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 960px) {
  .c-cta__items {
    flex-direction: column;
    gap: 16px;
  }
}

.c-cta__item-link,
.c-cta__bottom-link {
  display: inline-block;
  width: 100%;
  background-color: #fff;
  padding: 22.5px 120px 22.5px 40px;
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cta__item-link,
  .c-cta__bottom-link {
    padding: 12.5px 55px 12.5px 24px;
  }
}

.c-cta__item-link::before,
.c-cta__bottom-link::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-cta__item-link::before,
  .c-cta__bottom-link::before {
    right: 10px;
  }
}

.c-cta__lead {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #208a55;
}
@media screen and (max-width: 768px) {
  .c-cta__lead {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.c-cta__bottom {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .c-cta__bottom {
    margin-top: 16px;
  }
}

.c-cta__footer {
  padding-block: 32px;
}
@media screen and (max-width: 768px) {
  .c-cta__footer {
    padding-block: 24px;
  }
}

.c-cta-contact__container {
  padding: 100px 16px;
  background-image: url(../images/contact_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .c-cta-contact__container {
    padding-block: 50px;
  }
}

.c-cta-contact__body-sub {
  display: block;
  margin-bottom: 32px;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cta-contact__body-sub {
    margin-bottom: 24px;
    font-size: 2rem;
  }
}

.c-cta-contact__body-sub::before {
  content: "";
  background-image: url(../images/cta_contact.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 636px;
  width: 100%;
  aspect-ratio: 636/150;
  position: absolute;
  left: 50%;
  bottom: -19px;
  transform: translateX(-50%);
}

.c-cta-contact__body-title {
  color: #fff;
}

.c-cta-contact__btn {
  margin-top: 48px;
  max-width: 440px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-cta-contact__btn {
    margin-top: 32px;
    font-size: 1rem;
  }
}

.c-cta-contact__btn-link {
  display: block;
  padding: 22px;
  background-color: #fc7628;
  border-radius: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cta-contact__btn-link {
    padding: 14px;
  }
}

.c-cta-contact__btn-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../images/arrow-wh.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .c-cta-contact__btn-link::before {
    right: 5%;
  }
}

.c-page-security__nav-wrap {
  max-width: 677px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 80px;
}
@media screen and (max-width: 1280px) {
  .c-page-security__nav-wrap {
    position: static;
    margin-block: 24px 100px;
  }
}
@media screen and (max-width: 768px) {
  .c-page-security__nav-wrap {
    margin-block: 16px 50px;
    padding-inline: 24px;
    max-width: 400px;
  }
}

.c-page-security__nav {
  background-color: #fff;
  border: solid 3px #22c55e;
  border-radius: 15px;
}

.c-page-security__nav-items {
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-page-security__nav-items {
    flex-wrap: wrap;
  }
}

.c-page-security__nav-item {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .c-page-security__nav-item {
    width: 50%;
  }
}

.c-page-security__nav-item:not(:last-child) {
  position: relative;
}

.c-page-security__nav-item:not(:last-child)::before {
  content: "";
  width: 2px;
  height: 78px;
  background-color: #efefef;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-page-security__nav-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .c-page-security__nav-link {
    font-size: 1rem;
  }
}

.c-page-security__nav-link.is-open {
  background-color: rgba(217, 217, 217, 0.4);
}

.c-page-security__nav-link img {
  width: 48px;
}

.c-page-security__nav-link {
  padding: 24px 10px;
}
@media screen and (max-width: 768px) {
  .c-page-security__nav-link {
    padding: 16px 8px;
  }
}

.c-page-security__drawer {
  position: absolute;
  left: 0;
  top: 92%;
}
@media screen and (max-width: 1280px) {
  .c-page-security__drawer {
    left: 80px;
    top: 98%;
  }
}
@media screen and (max-width: 768px) {
  .c-page-security__drawer {
    left: 24px;
  }
}

.c-page-security__drawer-inner {
  max-width: 442px;
  padding-inline: 24px;
  border-radius: 15px;
  background-color: #fff;
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  border-radius: 15px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .c-page-security__drawer-inner {
    padding-inline: 16px;
  }
}

.c-page-security__drawer.is-open .c-page-security__drawer-inner {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  padding-bottom: 24px;
  border: solid 2px #efefef;
}
@media screen and (max-width: 768px) {
  .c-page-security__drawer.is-open .c-page-security__drawer-inner {
    padding-bottom: 16px;
  }
}

.c-page-security__drawer-overlay {
  display: none;
}

.c-page-security__drawer.is-open .c-page-security__drawer-overlay {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 90;
}

.c-page-security__drawer-nav ul li a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 16px;
  padding-right: 58px;
  border-bottom: solid 2px #efefef;
  position: relative;
}

.c-page-security__drawer-nav ul li a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-page-security__wrap {
  padding-block: 100px;
}
@media screen and (max-width: 768px) {
  .c-page-security__wrap {
    padding-block: 50px;
  }
}

.c-page-security__wrap.--gray {
  background-color: #f7f7f7;
}

.c-page-security__flex {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .c-page-security__flex {
    gap: 64px;
  }
}
@media screen and (max-width: 768px) {
  .c-page-security__flex {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .c-page-security__flex-wrap {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .c-page-security__flex-wrap {
    width: 100%;
  }
}

.c-page-security__flex-img {
  max-width: 278px;
  width: 100%;
}

.c-page-security__lead {
  margin-bottom: 48px;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  padding-left: 13px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-page-security__lead {
    margin-bottom: 32px;
    font-size: 1.5rem;
  }
}

.c-page-security__lead::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 5px;
  height: 32px;
  background-color: #22c55e;
}

.c-page-security__lists {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .c-page-security__lists {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .c-page-security__lists {
    gap: 24px;
  }
}

.c-page-security__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc((100% - 80px) / 3);
  padding: 16px 24px 16px 72px;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-page-security__list {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-page-security__list {
    padding-left: 45px;
  }
}

.c-page-security__list.--gray {
  background-color: #f7f7f7;
  width: -moz-fit-content;
  width: fit-content;
}

.c-page-security__list::before {
  content: "";
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
}
@media screen and (max-width: 768px) {
  .c-page-security__list::before {
    left: 16px;
  }
}

.c-page-security__cards {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}
@media screen and (max-width: 1024px) {
  .c-page-security__cards {
    flex-direction: column;
    margin-top: 32px;
  }
}

.c-page-security__card {
  padding: 16px 24px;
  width: calc((100% - 80px) / 3);
  border-radius: 15px;
  border: solid 3px #22c55e;
}
@media screen and (max-width: 1024px) {
  .c-page-security__card {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-page-security__card {
    padding: 16px;
  }
}

.c-page-security__cards.--user .c-page-security__card {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1024px) {
  .c-page-security__cards.--user .c-page-security__card {
    width: 100%;
  }
}

.c-page-security__cards.--cloud .c-page-security__card:nth-child(1) {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .c-page-security__cards.--cloud .c-page-security__card:nth-child(1) {
    width: 100%;
  }
}

.c-page-security__cards.--cloud .c-page-security__card:nth-child(2) {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .c-page-security__cards.--cloud .c-page-security__card:nth-child(2) {
    width: 100%;
  }
}

.c-page-security__card-lead {
  display: block;
  margin-inline: auto;
  margin-bottom: 24px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #22c55e;
  border-radius: 50px;
  padding: 8px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-page-security__card-lead {
    margin-bottom: 16px;
  }
}

.c-page-security__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-page-security__items {
    gap: 24px;
  }
}

.c-page-security__item {
  padding: 24px 40px;
  background-color: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .c-page-security__item {
    padding: 16px 24px;
  }
}

.c-page-security__item.--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .c-page-security__item.--flex {
    flex-direction: column;
    gap: 40px;
  }
}

.c-page-security__item-lead {
  display: block;
  margin-bottom: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #208a55;
}
@media screen and (max-width: 768px) {
  .c-page-security__item-lead {
    margin-bottom: 16px;
    font-size: 1rem;
  }
}

.c-page-security__item.--flex .c-page-security__item-wrap {
  max-width: 760px;
  width: 100%;
}

.c-page-security__item-img {
  max-width: 400px;
  width: 100%;
}

.c-page-security__item-img.--remote {
  max-width: 960px;
  margin: 24px auto 0;
}
@media screen and (max-width: 768px) {
  .c-page-security__item-img.--remote {
    margin-top: 16px;
  }
}

@media screen and (max-width: 768px) {
  .c-recruit {
    margin-top: 50px;
  }
}

.c-recruit__head {
  position: relative;
  margin-bottom: 20px;
}

.c-recruit__head img {
  aspect-ratio: 1440/420;
}

.c-recruit__head-title {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 80px;
}
@media screen and (max-width: 768px) {
  .c-recruit__head-title {
    left: 16px;
  }
}

.c-recruit__title {
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-recruit__title {
    font-size: 1.5rem;
  }
}

.c-recruit__lead {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.3;
  color: #208a55;
}
@media screen and (max-width: 768px) {
  .c-recruit__lead {
    font-size: 1.125rem;
  }
}

.c-recruit__item-lead {
  padding-bottom: 16px;
  margin-bottom: 24px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-recruit__item-lead {
    font-size: 1rem;
  }
}

.c-recruit__item-lead::before {
  content: "";
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
  position: absolute;
  left: 0;
  bottom: 0;
}

.c-recruit__body:not(.--not) {
  margin-top: 48px;
  padding-bottom: 100px;
  background: linear-gradient(to bottom, #fff, #f7f7f7, #efefef);
}
@media screen and (max-width: 768px) {
  .c-recruit__body:not(.--not) {
    padding-bottom: 50px;
  }
}

.c-recruit__body-wrap {
  padding-top: 80px;
  margin-bottom: 48px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-recruit__body-wrap {
    padding-top: 64px;
    margin-bottom: 32px;
  }
}

.c-recruit__body-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.p-recruit-support .c-recruit__body-wrap::before {
  background-image: url(../images/support-title.png);
  max-width: 570px;
  width: 100%;
  aspect-ratio: 570/111;
}

.p-recruit-benefits .c-recruit__body-wrap::before {
  background-image: url(../images/benefits-title.png);
  max-width: 664px;
  width: 100%;
  aspect-ratio: 664/142;
}

.p-recruit-faq .c-recruit__body-wrap::before {
  background-image: url(../images/q&a-title.png);
  max-width: 261px;
  width: 100%;
  aspect-ratio: 261/117;
}

.p-recruit-new .c-recruit__body-wrap::before {
  background-image: url(../images/new-title.png);
  max-width: 545px;
  width: 100%;
  aspect-ratio: 545/120;
}

.p-recruit-new__process .c-recruit__body-wrap::before {
  background-image: url(../images/process-title.png);
  max-width: 638px;
  width: 100%;
  aspect-ratio: 638/139;
}

.p-recruit-works .c-recruit__body-wrap::before {
  background-image: url(../images/works-title.png);
  max-width: 702px;
  width: 100%;
  aspect-ratio: 702/116;
}

.p-recruit-contact .c-recruit__body-wrap::before {
  background-image: url(../images/entry-title.png);
  max-width: 336px;
  width: 100%;
  aspect-ratio: 336/104;
}

.p-recruit-company .c-recruit__body-wrap::before {
  background-image: url(../images/company-title.png);
  max-width: 569px;
  width: 100%;
  aspect-ratio: 569/111;
}

.c-recruit__body-sub {
  position: relative;
  z-index: 1;
}

.c-recruit__body-title {
  margin-top: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #208a55;
}
@media screen and (max-width: 768px) {
  .c-recruit__body-title {
    font-size: 1rem;
  }
}

.l-header {
  background-color: #fff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-inline: 80px;
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .l-header__inner {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    height: 50px;
  }
}

.l-header__inner.--recruit {
  padding-inline: 16px;
}
@media screen and (max-width: 1280px) {
  .l-header__inner.--recruit {
    padding-inline: 24px;
  }
}

.l-header__logo {
  max-width: 292px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    max-width: 176px;
  }
}

@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 375px;
    width: 100%;
    height: 100vh;
    z-index: 100;
    transition: right 0.3s ease;
  }
}

body.open .l-header__nav {
  right: 0;
}

.l-header__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
@media screen and (max-width: 1280px) {
  .l-header__items {
    gap: 6px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__items {
    flex-direction: column;
  }
}

.l-header__item {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .l-header__item.--contact {
    margin-top: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .l-header__item.--recruit {
    margin-top: 30px;
  }
}

.l-header__item.--drawer {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__item.--drawer {
    display: block;
  }
}

.l-header__item-link {
  display: block;
  width: 100%;
  padding: 5px;
}
@media screen and (max-width: 1024px) {
  .l-header__item-link {
    padding: 10px;
  }
}

.l-header__item-link.--contact {
  padding: 15px 32px 15px 59px;
  border-radius: 50px;
  background: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  color: #fff;
  position: relative;
}

.l-header__item-link.--contact::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../images/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
}

/* .l-header__item-link.--recruit {
  background-color: #fc7628;
  border-radius: 50px;
  padding: 15px 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
} */

.l-header__item-link.--new,
.l-header__item-link.--mid {
  padding: 15px 32px;
  border-radius: 50px;
  background-color: #d1f39a;
  color: #333;
  position: relative;
}

.l-header__hamburger-wrap {
  width: 35px;
  height: 35px;
  position: relative;
  z-index: 500;
  cursor: pointer;
}

.l-header__hamburger-line {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

.l-header__hamburger-wrap span:nth-child(1) {
  top: 4px;
}

.l-header__hamburger-wrap span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.l-header__hamburger-wrap span:nth-child(3) {
  bottom: 4px;
}

.l-header__hamburger.open .l-header__hamburger-line {
  width: 35px;
  left: 0;
}

.l-header__hamburger.open .l-header__hamburger-wrap span:nth-child(1) {
  transform: rotate(45deg);
  top: 17px;
}

.l-header__hamburger.open .l-header__hamburger-wrap span:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.open .l-header__hamburger-wrap span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 16px;
}

@media screen and (max-width: 1900px) {
  .l-header-recruit__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 375px;
    width: 100%;
    height: 100vh;
    z-index: 100;
    transition: right 0.3s ease;
  }
}

body.open .l-header-recruit__nav {
  right: 0;
}

.l-header-recruit__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
@media screen and (max-width: 1280px) {
  .l-header-recruit__items {
    gap: 6px;
  }
}
@media screen and (max-width: 1900px) {
  .l-header-recruit__items {
    flex-direction: column;
  }
}

@media screen and (max-width: 1900px) {
  .l-header-recruit__menu {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.l-header-recruit__hamburger {
  display: none;
}
@media screen and (max-width: 1900px) {
  .l-header-recruit__hamburger {
    display: flex;
  }
}

.l-header-recruit__items.--second {
  display: none;
}
@media screen and (max-width: 1900px) {
  .l-header-recruit__items.--second {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header-recruit__items.--second {
    display: none;
  }
}

@media screen and (max-width: 1900px) {
  .l-header-recruit__items .l-header__item-link:not(.--new):not(.--mid):not(.--contact) {
    padding: 10px;
  }
}

.l-header__inner.--recruit .l-header-recruit__items .l-header__item-link.--recruit {
  background-color: #fc7628;
  border-radius: 50px;
  padding: 15px 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
}
.l-header__item-link.--recruit {
  background-color: #fc7628;
  border-radius: 50px;
  padding: 15px 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
}
.l-header-recruit__hamburger.open .l-header__hamburger-line {
  width: 35px;
  left: 0;
}

.l-header-recruit__hamburger.open .l-header__hamburger-wrap span:nth-child(1) {
  transform: rotate(45deg);
  top: 17px;
}

.l-header-recruit__hamburger.open .l-header__hamburger-wrap span:nth-child(2) {
  opacity: 0;
}

.l-header-recruit__hamburger.open .l-header__hamburger-wrap span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 16px;
}

.l-footer {
  background-color: #f7f7f7;
}

.l-footer__inner {
  max-width: 1096px;
  margin-inline: auto;
  padding: 60px 8px;
}
@media screen and (max-width: 1024px) {
  .l-footer__inner {
    padding-block: 30px;
  }
}

.l-footer__container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .l-footer__container {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__container {
    gap: 24px;
  }
}

.l-footer__logo {
  max-width: 295px;
}
@media screen and (max-width: 1024px) {
  .l-footer__logo {
    margin-inline: auto;
  }
}

.l-footer__logo-sub {
  display: inline-block;
  margin-top: 18px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.l-footer__logo-bottom {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  width: 100%;
}

.l-footer__logo-bottom img {
  width: calc((100% - 32px) / 3);
	object-fit: contain;
}
.l-footer__logo-bottom img.--logo01 {
	width: 92px;
}
.l-footer__logo-bottom img.--logo02 {
	    width: 98px;
}
.l-footer__logo-bottom img.--logo03 {
	width: 98px;
}
.l-footer__nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 640px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav {
    flex-direction: column;
  }
}

.l-footer__nav.--recruit {
  max-width: 434px;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav.--recruit {
    max-width: 100%;
  }
}

.l-footer__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .l-footer__items {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__items {
    gap: 22px;
  }
}

.l-footer__item {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.l-footer__copy {
  padding: 30px 8px;
  background-color: #333;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    padding-block: 16px;
    font-size: 0.875rem;
  }
}

.l-footer__wrap-items {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-footer__wrap-items {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__wrap-items {
    gap: 16px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 600px) {
  .l-footer__wrap-items {
    flex-direction: column;
  }
}

.l-footer__wrap-link {
  display: block;
  padding: 8px 36px 8px 10px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(34, 197, 94, 0.1);
  position: relative;
}

.l-footer__wrap-link::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}

.l-inner {
  width: 100%;
  max-width: 1440px;
  padding-right: 80px;
  padding-left: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    max-width: 600px;
    padding-right: 16px;
    padding-left: 16px;
  }
}

.l-margin {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .l-margin {
    margin-bottom: 50px;
  }
}

.p-fv {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-fv {
    margin-top: 50px;
  }
}

.p-fv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 28%, rgba(255, 255, 255, 0.3) 74%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-fv__overlay {
    display: none;
  }
}

.p-fv__inner {
  width: 100%;
  padding-inline: 8px;
  position: absolute;
  top: 20%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-fv__inner {
    top: auto;
    bottom: 5%;
  }
}

.p-fv__wrap {
  padding: 16px 80px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-fv__wrap {
    padding: 16px 5px;
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
  }
}

.p-fv__title {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-fv__title {
    font-size: 2rem;
  }
}

.p-fv__title span {
  background: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-fv__text {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .p-fv__text {
    margin-top: 32px;
  }
}

@media screen and (max-width: 768px) {
  .p-fv__slide img {
    aspect-ratio: 375/600;
  }
}

.p-about {
  background-image: url(../images/about-img.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.p-news {
  padding-block: 100px;
}
@media screen and (max-width: 768px) {
  .p-news {
    padding-block: 50px;
  }
}

.p-news__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .p-news__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

.p-news__wrap {
  max-width: 830px;
  width: 100%;
}

.p-news__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 16px;
  border-bottom: solid 2px #efefef;
}
@media screen and (max-width: 1024px) {
  .p-news__item-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.p-news__item:not(:first-child) .p-news__item-link {
  padding-top: 16px;
}

.p-news__item-title {
  width: 100%;
  padding-right: 64px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-news__item-title {
    padding-right: 40px;
  }
}

.p-news__item-title::before {
  content: "";
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.p-news__item-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .p-news__item-head {
    max-width: 100%;
  }
}

.p-news__item-date {
  width: 110px;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-news__item-date {
    width: 90px;
    letter-spacing: 0em;
  }
}

.p-news__item-cat {
  padding: 12px 16px;
  background-color: #d1f39a;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-news__item-cat {
    padding: 10px 20px;
  }
}

.p-news__item-title {
  max-width: 542px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-news__item-title {
    max-width: 100%;
  }
}

.p-sponsor {
  position: relative;
  padding-block: 64px;
}
@media screen and (max-width: 768px) {
  .p-sponsor {
    padding-block: 50px;
  }
}

.p-sponsor::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(163, 230, 53, 0.4), rgba(34, 197, 94, 0.4)), url("../images/sponsor-bg.jpg") center/cover no-repeat;
  z-index: -1;
}

.p-sponsor__title {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-sponsor__title {
    font-size: 2rem;
  }
}

.p-sponsor__wrap {
  max-width: 650px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.p-sponsor__wrap img {
  margin: 48px auto 0;
  max-width: 342px;
  aspect-ratio: 342/240;
}
@media screen and (max-width: 768px) {
  .p-sponsor__wrap img {
    margin-top: 32px;
  }
}

.p-page-service__text {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-page-service__text {
    margin-top: 16px;
  }
}

.p-page-development__body {
  display: flex;
  gap: 124px;
  margin-inline: auto;
  padding-right: 80px;
  max-width: 1440px;
}
@media screen and (max-width: 1024px) {
  .p-page-development__body {
    max-width: 600px;
    flex-direction: column;
    gap: 80px;
    padding-inline: 24px;
  }
}

.p-page-development__img {
  position: relative;
}

.p-page-development__img img {
  aspect-ratio: 636/560;
}

.p-page-development__img::before {
  content: "";
  background: linear-gradient(to right, rgba(163, 230, 53, 0.4), rgba(34, 197, 94, 0.4));
  width: calc(100% + 24px);
  aspect-ratio: 660/560;
  position: absolute;
  top: 24px;
  left: 0;
  z-index: -1;
}

.p-page-development__item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-page-development__item:not(:last-child) {
    margin-bottom: 24px;
  }
}

.p-page-development__wrap {
  margin-top: 24px;
  padding: 16px 40px;
  background-color: #f7f7f7;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .p-page-development__wrap {
    margin-top: 16px;
  }
}

.p-page-contact__wrap {
  background-color: #f7f7f7;
  border-radius: 15px;
  padding: 48px;
}
@media screen and (max-width: 768px) {
  .p-page-contact__wrap {
    padding: 32px;
  }
}

.p-page-contact__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .p-page-contact__item {
    flex-direction: column;
    margin-bottom: 16px;
  }
}

.p-page-contact__item-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-page-contact__item-label {
    font-size: 1rem;
  }
}

.p-page-contact__item-label span:last-child {
  background-color: #e05760;
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.p-page-contact__item-label {
  width: 222px;
}
@media screen and (max-width: 1024px) {
  .p-page-contact__item-label {
    width: 205px;
  }
}

.p-page-contact__item input[type=text],
.p-page-contact__item input[type=tel],
.p-page-contact__item input[type=email],
.p-page-contact__item textarea,
select {
  width: 100%;
  padding: 12px;
  background-color: #fff;
  border: 1px solid rgba(196, 196, 196, 0.5);
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

select {
  padding: 16px;
}

.p-page-contact__item-confirm {
  width: 100%;
}

.p-page-contact__item.--line .p-page-contact__item-label span:first-child {
  line-height: 1.6;
}

.p-page-contact__item.--line .p-page-contact__item-label span:last-child {
  margin-top: 3px;
}

.p-page-contact__item.--line .p-page-contact__item-confirm {
  flex: 1;
}

.p-page-contact__item.--line .p-page-contact__item-confirm input {
  width: 100%;
}

.p-page-contact__item--note {
  display: block;
  margin-top: 8px;
  font-size: 0.875rem;
  color: #333;
  letter-spacing: 0.04em;
}

.wpcf7-form-control-wrap {
  flex: 1;
  width: 100%;
}

.p-page-contact__item input::-moz-placeholder, .p-page-contact__item textarea::-moz-placeholder {
  color: #757575;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.p-page-contact__item input::placeholder,
.p-page-contact__item textarea::placeholder {
  color: #757575;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-page-contact__item input::-moz-placeholder, .p-page-contact__item textarea::-moz-placeholder {
    font-size: 0.875rem;
  }
  .p-page-contact__item input::placeholder,
  .p-page-contact__item textarea::placeholder {
    font-size: 0.875rem;
  }
}

.p-page-contact__chk-wrap {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-page-contact__chk-wrap {
    font-size: 0.875rem;
  }
}

.p-page-contact__chk-wrap a {
  color: #e05760;
}

.p-page-contact__btn input {
  width: 320px;
  padding: 19px;
  background-color: #22c55e;
  border-radius: 50px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-page-contact__btn input {
    width: 200px;
    font-size: 1rem;
  }
}
.p-page-contact__btn.--back input {
	  background-color: #757575;
}
.p-page-contact__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 48px auto 0;
  position: relative;
}
.p-page-contact__btn.--second {
	  margin: 18px auto 0;
}

.p-page-contact__btn::before {
  content: "";
  background-image: url(../images/arrow-wh.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-page-contact__btn::before {
    right: 10%;
  }
}
.p-page-contact__btn.--back::before  {
left: 10%;
	transform: translate(-50%, -50%) rotate(180deg);
}


.wpcf7-spinner {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.wpcf7-list-item {
  margin: 0;
}

.p-page-contact input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(196, 196, 196, 0.5);
  background-color: #fff;
  border-radius: 3px;
  position: relative;
  top: 5px;
  cursor: pointer;
}

.p-page-contact input[type=checkbox]:checked::after {
  content: "✔";
  position: absolute;
  top: 0;
  left: 3px;
  font-size: 16px;
  color: #333;
}

.c-page-contact__select {
  flex: 1;
  width: 100%;
  position: relative;
  display: inline-block;
  width: 100%;
}

.c-page-contact__select::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 100%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #22c55e;
  pointer-events: none;
}

.c-page-contact__select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 12px;
  height: 10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  pointer-events: none;
  z-index: 1;
}

.p-page-confirm__item {
  width: calc(100% - 234px);
}
@media screen and (max-width: 768px) {
  .p-page-confirm__item {
    width: 100%;
  }
}

.p-page-sitemap__wrap {
  background-color: #f7f7f7;
  border-radius: 15px;
  padding: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .p-page-sitemap__wrap {
    padding: 32px;
    margin-bottom: 32px;
  }
}

.p-page-sitemap__items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-page-sitemap__items {
    gap: 24px;
  }
}

.p-page-sitemap__item {
  width: calc((100% - 80px) / 3);
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 24px;
}
@media screen and (max-width: 1024px) {
  .p-page-sitemap__item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-page-sitemap__item {
    width: 100%;
  }
}

.p-page-sitemap__lead {
  margin-bottom: 24px;
  background-image: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
}
@media screen and (max-width: 768px) {
  .p-page-sitemap__lead {
    margin-bottom: 16px;
  }
}

.p-page-sitemap__lead-link {
  display: inline-block;
  padding-right: 48px;
  padding-bottom: 10px;
  color: #208a55;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2;
  position: relative;
}

.p-page-sitemap__lead-link::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-page-sitemap__list {
  border-bottom: solid 2px #efefef;
  margin-bottom: 16px;
}

.p-page-sitemap__list-link {
  display: inline-block;
  padding-right: 58px;
  padding-bottom: 10px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page-sitemap__list-link {
    font-size: 1rem;
  }
}

.p-page-sitemap__list-link::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-page-sitemap__sub-link {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-page-sitemap__sub-link {
    font-size: 1rem;
  }
}

.p-page-sustainability__lead {
  padding-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__lead {
    padding-bottom: 16px;
  }
}

.p-page-sustainability__lead::before {
  content: "";
  width: 320px;
  height: 2px;
  background-image: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__lead::before {
    width: 200px;
  }
}

.p-page-sustainability__text {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__text {
    margin-top: 16px;
  }
}

.p-page-sustainability__thought {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__thought {
    margin-bottom: 50px;
  }
}

.p-page-sustainability__thought-item {
  padding-block: 8px;
  position: relative;
}

.p-page-sustainability__thought-item:last-child {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__thought-item:last-child {
    margin-top: 32px;
  }
}

.p-page-sustainability__thought-wrap {
  max-width: 960px;
  width: 75%;
  background-color: rgba(247, 247, 247, 0.7);
  border-radius: 15px;
  padding: 40px 48px;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__thought-wrap {
    width: 100%;
    padding: 24px 32px;
    margin-top: 100px;
  }
}

.p-page-sustainability__thought-wrap.--left {
  margin-left: auto;
}

.p-page-sustainability__thought-img {
  max-width: 400px;
  width: 40%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__thought-img {
    width: 50%;
  }
}

.p-page-sustainability__thought-img.--right {
  right: auto;
  left: 0;
}

.p-page-sustainability__materiality {
  background-color: #f7f7f7;
  padding-block: 100px;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__materiality {
    padding-block: 50px;
  }
}

.p-page-sustainability__materiality-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  row-gap: 48px;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__materiality-items {
    margin-top: 32px;
    row-gap: 32px;
  }
}

.p-page-sustainability__materiality-item {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1024px) {
  .p-page-sustainability__materiality-item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__materiality-item {
    width: 100%;
  }
}

.p-page-sustainability__materiality-item img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.p-page-sustainability__materiality-bottom {
  background-color: #fff;
  padding: 16px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.p-page-sustainability__materiality-lead {
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-page-sustainability__esg {
  margin-block: 100px;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__esg {
    margin-block: 50px;
  }
}

.p-page-sustainability__esg-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  row-gap: 48px;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__esg-items {
    margin-top: 32px;
    row-gap: 32px;
  }
}

.p-page-sustainability__esg-item {
  background-color: #f7f7f7;
  border-radius: 15px;
  width: calc((100% - 80px) / 3);
  padding: 24px 16px;
}
@media screen and (max-width: 1024px) {
  .p-page-sustainability__esg-item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__esg-item {
    width: 100%;
  }
}

.p-page-sustainability__esg-img {
  padding-inline: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__esg-img {
    padding: 0;
  }
}

.p-page-sustainability__esg-sub {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  right: 48px;
  bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .p-page-sustainability__esg-sub {
    right: 32px;
  }
}

.p-page-sustainability__esg-sub span {
  display: block;
  text-align: right;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .p-page-sustainability__esg-sub span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__esg-sub span {
    font-size: 1.5rem;
  }
}

.p-page-sustainability__esg-bottom {
  margin-block: 24px 16px;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__esg-bottom {
    margin-top: 16px;
  }
}

.p-page-sustainability__esg-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__esg-text {
    font-size: 1rem;
  }
}

.p-page-sustainability__esg-lists {
  list-style-type: disc;
  list-style-position: inside;
}

.p-page-sustainability__esg-list {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-page-sustainability__esg-list {
    font-size: 1rem;
  }
}

.p-page-sustainability__esg-list:not(:last-child) {
  margin-bottom: 10px;
}

.p-page-productItems__top {
  display: flex;
  align-items: center;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-page-productItems__top {
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
  }
}

.p-page-productItems__top-img {
  max-width: 600px;
  position: relative;
  left: -80px;
}
@media screen and (max-width: 768px) {
  .p-page-productItems__top-img {
    left: 0;
  }
}

.p-page-productItems__top-img.--right {
  right: -80px;
  left: auto;
}
@media screen and (max-width: 768px) {
  .p-page-productItems__top-img.--right {
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-page-productItems__top-img img {
    border-radius: 15px;
  }
}

.p-page-productItems__top-wrap {
  text-align: left;
}

.p-page-productItems__top-lead {
  line-height: 1.3;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-page-productItems__top-lead {
    margin-bottom: 16px;
  }
}

.p-page-productItems__bottom {
  margin-top: 48px;
  padding-block: 48px;
  background-color: #efefef;
}
@media screen and (max-width: 768px) {
  .p-page-productItems__bottom {
    margin-top: 32px;
    padding-block: 32px;
  }
}

.p-page-productItems__bottom-items {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .p-page-productItems__bottom-items {
    flex-direction: column;
  }
}

.p-page-productItems__bottom-item {
  width: 100%;
  padding: 24px;
  background-color: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .p-page-productItems__bottom-item {
    padding: 16px;
  }
}

.p-page-productItems__bottom-items.--first .p-page-productItems__bottom-item:nth-child(1) {
  max-width: 398px;
}
@media screen and (max-width: 1024px) {
  .p-page-productItems__bottom-items.--first .p-page-productItems__bottom-item:nth-child(1) {
    max-width: 600px;
  }
}

.p-page-productItems__bottom-items.--first .p-page-productItems__bottom-item:nth-child(2) {
  max-width: 450px;
}
@media screen and (max-width: 1024px) {
  .p-page-productItems__bottom-items.--first .p-page-productItems__bottom-item:nth-child(2) {
    max-width: 600px;
  }
}

.p-page-productItems__bottom-items.--first .p-page-productItems__bottom-item:nth-child(3) {
  max-width: 400px;
}
@media screen and (max-width: 1024px) {
  .p-page-productItems__bottom-items.--first .p-page-productItems__bottom-item:nth-child(3) {
    max-width: 600px;
  }
}

.p-page-productItems__bottom-items.--second .p-page-productItems__bottom-item:nth-child(1) {
  max-width: 280px;
}
@media screen and (max-width: 1024px) {
  .p-page-productItems__bottom-items.--second .p-page-productItems__bottom-item:nth-child(1) {
    max-width: 600px;
  }
}

.p-page-productItems__bottom-items.--second .p-page-productItems__bottom-item:nth-child(2) {
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .p-page-productItems__bottom-items.--second .p-page-productItems__bottom-item:nth-child(2) {
    max-width: 600px;
  }
}

.p-page-productItems__bottom-items.--second .p-page-productItems__bottom-item:nth-child(3) {
  max-width: 305px;
}
@media screen and (max-width: 1024px) {
  .p-page-productItems__bottom-items.--second .p-page-productItems__bottom-item:nth-child(3) {
    max-width: 600px;
  }
}

.p-page-productItems__bottom-items.--second .p-page-productItems__bottom-item:nth-child(4) {
  max-width: 347px;
}
@media screen and (max-width: 1024px) {
  .p-page-productItems__bottom-items.--second .p-page-productItems__bottom-item:nth-child(4) {
    max-width: 600px;
  }
}

@media screen and (max-width: 1024px) {
  .p-page-productItems__bottom-item {
    margin-inline: auto;
  }
}

.p-page-productItems__bottom-lead {
  display: block;
  line-height: 1.5;
  margin-bottom: 16px;
  padding-bottom: 16px;
  position: relative;
  word-break: break-word;
}

.p-page-productItems__bottom-lead::before {
  content: "";
  width: 160px;
  height: 2px;
  background-color: #208a55;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1280px) {
  .p-page-principles__container {
    margin-bottom: 50px;
  }
}

.p-page-principles__body {
  display: flex;
  justify-content: flex-end;
  max-width: 1440px;
  gap: 60px;
  margin-inline: auto;
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  .p-page-principles__body {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-inline: 16px;
  }
}

.p-page-principles__lead {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 2;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .p-page-principles__lead {
    font-size: 1rem;
  }
}

.p-page-principles__lead span {
  color: #22c55e;
}

.p-page-principles__wrap {
  max-width: 640px;
  width: 55%;
}
@media screen and (max-width: 768px) {
  .p-page-principles__wrap {
    max-width: 600px;
    width: 100%;
  }
}

.p-page-principles__img {
  max-width: 560px;
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-page-principles__img {
    max-width: 600px;
    width: 100%;
  }
}

.p-page-greeting__body {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-page-greeting__body {
    flex-direction: column;
  }
}

.p-page-greeting__img {
  max-width: 448px;
  width: 42%;
}
@media screen and (max-width: 768px) {
  .p-page-greeting__img {
    max-width: 600px;
    margin-inline: auto;
    width: 100%;
  }
}

.p-page-greeting__lead {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page-greeting__lead {
    padding-block: 24px;
    margin-inline: auto;
    max-width: 600px;
    width: 100%;
  }
}

.p-page-greeting__lead::before {
  content: "";
  background-image: url(../images/greeting-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-page-greetings__lead-text {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 2;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-page-greetings__lead-text {
    font-size: 1.125rem;
    writing-mode: horizontal-tb;
  }
}

.p-page-greeting__wrap {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-page-greeting__wrap {
    margin-top: 32px;
  }
}

.p-page-information__table {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 2;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .p-page-information__table {
    font-size: 1rem;
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-page-information__table-tr {
    display: block;
    width: 100%;
  }
}

.p-page-information__table-th,
.p-page-information__table-td {
  border-bottom: 1px solid #efefef;
  padding: 24px 40px;
}
@media screen and (max-width: 768px) {
  .p-page-information__table-th,
  .p-page-information__table-td {
    display: block;
    padding: 16px 24px;
    width: 100%;
  }
}

.p-page-information__table-th {
  width: 220px;
  padding-right: 10px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-page-information__table-th {
    width: 100%;
  }
}

.p-page-information__table-td {
  font-weight: 400;
}

.p-page-information__table td.--flex,
.p-page-information__table td p {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-page-information__table td img {
  width: 80px;
}

.p-page-information__table-tr:nth-child(odd) .p-page-information__table-th {
  background-color: #efefef;
}

.p-page-information__table-tr:nth-child(even) .p-page-information__table-th {
  background-color: #f7f7f7;
}

.p-page-information__table-tr:first-of-type .p-page-information__table-td:first-of-type {
  border-top: 1px solid #efefef;
}

.p-page-information__table a {
  color: #1784fb;
}

.p-page-information__license-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-page-information__license-table {
    display: block;
    width: 100%;
  }
}

.p-page-information tbody {
  display: block;
}

@media screen and (max-width: 1024px) {
  .p-page-information__license-table tr {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-page-information__license-table tr {
    display: block;
    width: 100%;
  }
}

.p-page-information__license-table th,
.p-page-information__license-table td {
  border-bottom: 1px solid #efefef;
  border-right: 1px solid #efefef;
}
@media screen and (max-width: 1024px) {
  .p-page-information__license-table th,
  .p-page-information__license-table td {
    display: block;
    border-left: 1px solid #efefef;
  }
}

.p-page-information__license-table td:first-of-type {
  border-top: 1px solid #efefef;
}

.p-page-information__license-table th {
  width: 216px;
  background-color: #f7f7f7;
  font-weight: normal;
  padding: 23px;
}
@media screen and (max-width: 1024px) {
  .p-page-information__license-table th {
    width: 100%;
  }
}

.p-page-information__license-table td {
  padding: 16px;
}
.p-page-history__timeline {
  position: relative;
}

/* 線を引く */
.p-page-history__timeline-line {
  width: 2px;
  left: 236px;
  position: absolute;
  background: linear-gradient(to bottom, #22c55e, #a3e635);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-page-history__timeline-line {
    left: 11px;
  }
}

/* 各項目 */
.p-page-history__timeline-item {
  display: flex;
  align-items: center;
  gap: 104px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page-history__timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
    margin-left: 40px;
  }
}

/* 年号 */
.p-page-history__timeline-date {
  width: 185px;
  font-size: 2rem;
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page-history__timeline-date {
    font-size: 1.5rem;
  }
}

.p-page-history__timeline-date::before {
  content: "";
  width: 24px;
  height: 24px;
  background: linear-gradient(to right, #22c55e, #a3e635);
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  right: -64px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-page-history__timeline-date::before {
    right: auto;
    left: -40px;
  }
}

/* 吹き出し部分 */
.p-page-history__timeline-content {
  width: 100%;
  background-color: #f7f7f7;
  padding: 24px 40px;
  border-radius: 15px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-page-history__timeline-content {
    padding: 16px 24px;
  }
}

.p-page-access__container {
  max-width: 1440px;
  margin-inline: auto;
  padding-right: 80px;
}
@media screen and (max-width: 1024px) {
  .p-page-access__container {
    padding-right: 64px;
  }
}
@media screen and (max-width: 768px) {
  .p-page-access__container {
    padding-inline: 16px;
  }
}

.p-page-access__top {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .p-page-access__top {
    gap: 64px;
  }
}
@media screen and (max-width: 768px) {
  .p-page-access__top {
    flex-direction: column;
    gap: 64px;
  }
}

.p-page-access__top-wrap {
  max-width: 687px;
  width: 100%;
  font-weight: 400;
}

.p-page-access__top-map {
  max-width: 600px;
  width: 100%;
}

.p-page-access__top-map iframe {
  max-width: 100%;
}

.p-page-access__top-dl {
  max-width: 800px;
  margin: 0 auto;
}

.p-page-access__top-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.p-page-access__top-label {
  background: #22c55e;
  color: #fff;
  min-width: 120px;
  font-weight: 700;
  border-radius: 50px;
  padding: 5px;
  text-align: center;
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  .p-page-access__top-label {
    margin-right: 16px;
  }
}

.p-page-access__top-value {
  flex: 1;
}

.p-page-health__inner {
  max-width: 1080px;
  margin-inline: auto;
}

.p-page-health__top {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .p-page-health__top {
    flex-direction: column;
    gap: 16px;
  }
}

.p-page-health__top-wrap {
  padding: 40px 24px;
  background-color: rgba(247, 247, 247, 0.9);
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .p-page-health__top-wrap {
    padding: 24px 16px;
  }
}

.p-page-health__lead {
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 24px;
  margin-bottom: 24px;
  position: relative;
}

.p-page-health__lead::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #22c55e, #a3e635);
}

.p-page-health__plan,
.p-page-health__attempt {
  padding-block: 100px;
  background-color: #f7f7f7;
}
@media screen and (max-width: 768px) {
  .p-page-health__plan,
  .p-page-health__attempt {
    padding-block: 50px;
  }
}

.p-page-health__plan-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-page-health__plan-items {
    gap: 32px;
  }
}

.p-page-health__plan-item {
  width: calc((100% - 80px) / 3);
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 24px;
}
@media screen and (max-width: 768px) {
  .p-page-health__plan-item {
    width: 100%;
    padding: 24px 16px;
  }
}

.p-page-health__plan-lead,
.p-page-health__attempt-lead {
  display: block;
  margin-block: 24px 16px;
  text-align: center;
  font-size: 1.5rem;
  color: #208a55;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-page-health__plan-lead,
  .p-page-health__attempt-lead {
    font-size: 1.125rem;
  }
}

.p-page-health__plan-item img {
  width: 64px;
  height: 64px;
  margin-inline: auto;
}

.p-page-health__system {
  margin-block: 100px;
}
@media screen and (max-width: 768px) {
  .p-page-health__system {
    margin-block: 50px;
  }
}

.p-page-health__system-img {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-page-health__system-img {
    -moz-animation-timing-function: 32px;
  }
}

.p-page-health__attempt-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-page-health__attempt-items {
    gap: 32px;
  }
}

.p-page-health__attempt-item {
  width: calc((100% - 40px) / 2);
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 40px 40px 50px;
}
@media screen and (max-width: 768px) {
  .p-page-health__attempt-item {
    width: 100%;
    padding: 24px 24px 24px 34px;
  }
}

.p-page-health__attempt-img {
  max-width: 300px;
  margin-inline: auto;
}

.p-page-health__attempt-lists {
  list-style-type: disc;
}

.p-page-health__attempt-list {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-page-health__attempt-list {
    font-size: 1rem;
  }
}

.p-page-health__cta {
  position: relative;
  padding-block: 100px;
}
@media screen and (max-width: 768px) {
  .p-page-health__cta {
    padding-block: 50px;
  }
}

.p-page-health__cta::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(163, 230, 53, 0.4), rgba(34, 197, 94, 0.4)), url("../images/health-cta.jpg") center/cover no-repeat;
  z-index: -1;
}

.p-page-health__cta-items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .p-page-health__cta-items {
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
}

.p-page-health__cta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  width: calc((100% - 80px) / 2);
}
@media screen and (max-width: 768px) {
  .p-page-health__cta-item {
    width: 100%;
  }
}

.p-page-health__cta-top {
  border: solid 3px #208a55;
  border-bottom: none;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.p-page-health__cta-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: solid 3px #208a55;
  border-top: none;
  background-color: #208a55;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.p-page-health__cta-lead {
  display: block;
  text-align: center;
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-page-health__cta-lead {
    font-size: 1.125rem;
  }
}

.p-page-health__cta-text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-page-health__cta-text {
    font-size: 1rem;
  }
}

.p-page-health__cta-top {
  background-color: #fff;
  padding: 24px;
}

.p-page-health__cta-img {
  margin-inline: auto;
}

.p-page-health__cta-item:nth-child(1) .p-page-health__cta-img {
  width: 147px;
}

.p-page-health__cta-item:nth-child(2) .p-page-health__cta-img {
  max-width: 400px;
}

.p-page-health__cta-bottom {
  padding: 24px 16px;
}

.p-page-flow__process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin-block: 48px 100px;
}
@media screen and (max-width: 768px) {
  .p-page-flow__process {
    margin-block: 32px 50px;
  }
}

.p-page-flow__process-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.p-page-flow__process-item {
  display: flex;
  position: relative;
  max-width: 210px;
  width: 16.6666666667%;
  height: auto;
  padding: 11px 47px 11px 11px;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__process-item {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .p-page-flow__process-item {
    width: 50%;
  }
}

.p-page-flow__process-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  z-index: -2;
}

.p-page-flow__process-item::after {
  content: "";
  width: calc(100% - 14px);
  height: calc(100% - 6px);
  position: absolute;
  top: 3px;
  left: 3px;
  background-color: #fff;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  z-index: -1;
}

.p-page-flow__process-num {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
  min-height: 16px;
}

.p-page-flow__process-title {
  margin-block: 8px 16px;
  line-height: 1.3;
  min-height: 47px;
}
@media screen and (max-width: 768px) {
  .p-page-flow__process-title {
    min-height: 42px;
  }
}

.p-page-flow__process-period {
  background: #f7f7f7;
  border-radius: 15px;
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 16px;
  min-height: 32px;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.p-page-flow__process-text {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: left;
}

/* 各カラー */
.p-page-flow__process-item.--color01 {
  border-color: #facc15;
}

.p-page-flow__process-item.--color02 {
  border-color: #c9da2a;
}

.p-page-flow__process-item.--color03 {
  border-color: #7dd83d;
}

.p-page-flow__process-item.--color04 {
  border-color: #22c55e;
}

.p-page-flow__process-item.--color05 {
  border-color: #2ca5e0;
}

.p-page-flow__process-item.--color06 {
  border-color: #3b82f6;
}

.p-page-flow__process-item.--color01 span {
  color: #facc15;
}

.p-page-flow__process-item.--color02 span {
  color: #c9da2a;
}

.p-page-flow__process-item.--color03 span {
  color: #7dd83d;
}

.p-page-flow__process-item.--color04 span {
  color: #22c55e;
}

.p-page-flow__process-item.--color05 span {
  color: #2ca5e0;
}

.p-page-flow__process-item.--color06 span {
  color: #3b82f6;
}

.p-page-flow__process-item.--color01::before {
  background-color: #facc15;
}

.p-page-flow__process-item.--color02::before {
  background-color: #c9da2a;
}

.p-page-flow__process-item.--color03::before {
  background-color: #7dd83d;
}

.p-page-flow__process-item.--color04::before {
  background-color: #22c55e;
}

.p-page-flow__process-item.--color05::before {
  background-color: #2ca5e0;
}

.p-page-flow__process-item.--color06::before {
  background-color: #3b82f6;
}

.p-page-flow__item {
  display: flex;
  justify-content: space-between;
}

.p-page-flow__item:not(:last-child) {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .p-page-flow__item:not(:last-child) {
    margin-bottom: 32px;
  }
}

.p-page-flow__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-page-flow__item-num {
    margin-bottom: 16px;
  }
}

.p-page-flow__item-num.--color01 {
  background-color: #facc15;
}

.p-page-flow__item-num.--color02 {
  background-color: #c9da2a;
}

.p-page-flow__item-num.--color03 {
  background-color: #7dd83d;
}

.p-page-flow__item-num.--color04 {
  background-color: #22c55e;
}

.p-page-flow__item-num.--color05 {
  background-color: #2ca5e0;
}

.p-page-flow__item-num.--color06 {
  background-color: #3b82f6;
}

.p-page-flow__item-wrap {
  width: calc(100% - 100px);
}

.p-page-flow__item-lead {
  color: #333;
  background-color: #f7f7f7;
  padding: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-page-flow__item-lead {
    margin-bottom: 16px;
  }
}

.p-page-zeroTrust__accordion {
  margin-top: 48px;
  background-color: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .p-page-zeroTrust__accordion {
    margin-top: 32px;
  }
}

.p-page-zeroTrust__accordion-wrap {
  max-width: 1112px;
  margin-inline: auto;
  padding: 23px 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page-zeroTrust__accordion-wrap {
    padding: 16px 40px;
  }
}

.p-page-zeroTrust__accordion-wrap::before {
  content: "";
  background-image: url(../images/security_glass.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}
@media screen and (max-width: 768px) {
  .p-page-zeroTrust__accordion-wrap::before {
    left: 8px;
  }
}

.p-page-zeroTrust__accordion-wrap::after {
  content: "";
  background-image: url(../images/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-page-zeroTrust__accordion-wrap::after {
    right: 8px;
  }
}

.p-page-zeroTrust__accordion-wrap.is-open::after {
  background-image: url(../images/minus.svg);
}

.p-page-zeroTrust__accordion-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  border-top: solid 2px #efefef;
}

.p-page-zeroTrust__accordion.is-open .p-page-zeroTrust__accordion-body {
  max-height: 4000px;
  padding: 48px 24px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-page-zeroTrust__accordion.is-open .p-page-zeroTrust__accordion-body {
    padding-block: 32px 16px;
  }
}

.js-zeroTrust__accordion {
  cursor: pointer;
}

.p-page-zeroTrust__accordion-item .c-page-security__lead {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-page-zeroTrust__accordion-item .c-page-security__lead {
    margin-bottom: 16px;
  }
}

.p-page-zeroTrust__accordion-item:not(:last-child) {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: solid 2px #efefef;
}
@media screen and (max-width: 768px) {
  .p-page-zeroTrust__accordion-item:not(:last-child) {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
}

.p-page-zeroTrust__accordion-list {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-page-zeroTrust__accordion-list {
    margin-top: 16px;
  }
}

.p-page-zeroTrust__accordion-img {
  margin-top: 24px;
  max-width: 960px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-page-zeroTrust__accordion-img {
    margin-top: 16px;
  }
}

.p-page-product__container {
  background-color: #f7f7f7;
  padding-block: 28px 100px;
}
@media screen and (max-width: 768px) {
  .p-page-product__container {
    padding-block: 28px 50px;
  }
}

.p-page-product__extraction-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.p-page-product__extraction-body.is-open {
  max-height: 2000px;
}

.p-page-product__extraction-body form {
  background-color: #fff;
  padding: 48px;
  border: solid 3px #efefef;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .p-page-product__extraction-body form {
    padding: 32px;
  }
}

.p-page-product__extraction-span {
  display: block;
  padding-bottom: 10px;
  margin-bottom: 16px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #208a55;
  background-image: linear-gradient(to right, #22c55e, #a3e635);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
}
@media screen and (max-width: 768px) {
  .p-page-product__extraction-span {
    font-size: 1rem;
  }
}

.p-page-product__extraction-span:not(.--first) {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-page-product__extraction-span:not(.--first) {
    margin-top: 32px;
  }
}

.p-page-product__extraction-wrap {
  cursor: pointer;
  padding: 19px 32px;
  background-color: #22c55e;
  border-radius: 50px;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translateY(50%);
}

.p-page-product__extraction-body label {
  display: inline-block;
  margin-right: 24px;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  font-weight: 400;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-page-product__extraction-body label {
    margin-right: 16px;
    margin-bottom: 16px;
  }
}

.p-page-product__extraction-body input[type=checkbox] {
  margin-right: 8px;
}

.p-page-product__extraction-text {
  display: block;
  padding-right: 36px;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page-product__extraction-text {
    font-size: 1rem;
  }
}

.p-page-product__extraction-text::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/minus2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: 0.3s;
}

.p-page-product__extraction-wrap.is-open .p-page-product__extraction-text::before {
  background-image: url(../images/plus2.svg);
}

.p-page-product input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid #333;
  background-color: #fff;
  border-radius: 2px;
  position: relative;
  top: 1px;
  cursor: pointer;
}

.p-page-product input[type=checkbox]:checked {
  background-color: #22c55e;
}

.p-page-product__extraction-choice {
  margin-top: 48px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-page-product__extraction-choice {
    margin-top: 32px;
  }
}

.p-page-product__extraction-choice span {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #208a55;
}
@media screen and (max-width: 768px) {
  .p-page-product__extraction-choice span {
    font-size: 1rem;
  }
}

.p-page-product__extraction-maker,
.p-page-product__extraction-category,
.p-page-product__extraction-industry {
  line-height: 2;
  text-align: center;
}

.p-page-product__items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 76px;
}
@media screen and (max-width: 768px) {
  .p-page-product__items {
    margin-top: 60px;
  }
}

.p-page-product__items.is-open {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-page-product__items.is-open {
    margin-top: 32px;
  }
}

.p-page-product__extraction-wrap.is-open .p-page-product__items {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-page-product__extraction-wrap.is-open .p-page-product__items {
    margin-top: 0;
  }
}

.p-page-product__item {
  width: calc((100% - 80px) / 3);
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
	    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .p-page-product__item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-page-product__item {
    width: 100%;
  }
}

.p-page-product__item-img {
  width: 100%;
}

.p-page-product__item-img img {
  height: auto;
  aspect-ratio: 4/3;
	max-height: 300px;
    object-fit: contain;
}

.p-page-product__item-wrap {
  padding: 16px 24px;
}
@media screen and (max-width: 768px) {
  .p-page-product__item-wrap {
    padding: 16px;
  }
}

.p-page-product__item-field {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 2;
}

.p-page-product__sub {
  font-size: 1rem;
  color: #208a55;
}

.p-page-product__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-page-product__pagination {
    gap: 5px;
    font-size: 1rem;
  }
}

.page-numbers:not(.prev):not(.next) {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #208a55;
  background-color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .page-numbers:not(.prev):not(.next) {
    width: 24px;
    height: 24px;
  }
}

@media (any-hover: hover) {
  .page-numbers:not(.prev):not(.next):not(.dots):not(.current):hover {
    text-decoration: underline;
  }
}

.page-numbers.next,
.page-numbers.prev {
  color: #208a55;
}

.page-numbers:not(.prev):not(.next).current {
  color: #fff;
  background-color: #208a55;
}

.p-page-company {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-page-company {
    padding-bottom: 50px;
  }
}

.p-page-company::before {
  content: "";
  max-width: 801px;
  aspect-ratio: 801/480;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../images/about-img.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  z-index: -1;
}

.p-page-company__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 24px;
}
@media screen and (max-width: 768px) {
  .p-page-company__wrap {
    padding-inline: 16px;
  }
}
@media screen and (max-width: 600px) {
  .p-page-company__wrap {
    flex-direction: column;
    gap: 16px;
  }
}

.p-page-protection__img {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-page-protection__img {
    margin-top: 32px;
  }
}

.p-page-security__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .p-page-security__items {
    flex-wrap: wrap;
  }
}

.p-page-security__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc((100% - 80px) / 3);
  padding: 40px 24px;
  border-radius: 15px;
  background-color: #f7f7f7;
}
@media screen and (max-width: 1024px) {
  .p-page-security__item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-page-security__item {
    width: 100%;
  }
}

.p-page-security__img {
  width: 80px;
  margin-inline: auto;
}

.p-page-security__lead {
  text-align: center;
  font-size: 1.5rem;
  margin-block: 24px;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.3;
  color: #208a55;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .p-page-security__lead {
    font-size: 1rem;
    margin-block: 16px;
  }
}

.p-recruit {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-recruit {
    margin-top: 50px;
  }
}

.p-recruit__bg {
  position: relative;
}

.p-recruit__bg::before {
  content: "";
  width: 100%;
  height: 80%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #a3e635, #22c55e);
  opacity: 0.8;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}
@media screen and (max-width: 768px) {
  .p-recruit__bg::before {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  }
}

.p-recruit__bg::after {
  content: "";
  width: 100%;
  aspect-ratio: 1440/424;
  background-image: url(../images/recruit_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.p-recruit__top {
  padding-left: 40px;
  padding-bottom: 36px;
  margin-inline: auto;
  max-width: 1440px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit__top {
    padding-left: 24px;
  }
}

.p-recruit__slide {
  max-width: 960px;
  width: 60%;
  margin-left: auto;
}
@media screen and (max-width: 1280px) {
  .p-recruit__slide {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit__slide {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__slide {
    width: 100%;
  }
}

.p-recruit__slide img {
  aspect-ratio: 960/640;
}

.p-recruit__top-wrap {
  position: absolute;
  left: 40px;
  bottom: 0;
}
@media screen and (max-width: 1280px) {
  .p-recruit__top-wrap {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    bottom: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit__top-wrap {
    position: static;
    flex-direction: column;
  }
}

.p-recruit__title {
  margin-bottom: 48px;
  font-family: "Shippori Mincho", serif;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1280px) {
  .p-recruit__title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__title {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__title {
    font-size: 1.5rem;
  }
}

.p-recruit__title span {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__title span {
    font-size: 2rem;
  }
}

.p-recruit__top-item {
  background-color: #fff;
  padding: 8px 32px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-recruit__top-item {
    padding: 3px 16px;
  }
}

.p-recruit__top-item:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 1280px) {
  .p-recruit__top-item:not(:last-child) {
    margin-bottom: 24px;
  }
}

.p-recruit__top-item::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: -16px;
  top: -24px;
}

.p-recruit__top-item:nth-child(1):before {
  background-image: url(../images/recruit_top1.png);
  width: 105px;
  aspect-ratio: 105/50;
}

.p-recruit__top-item:nth-child(2):before {
  background-image: url(../images/recruit_top2.png);
  width: 107px;
  aspect-ratio: 107/50;
}

.p-recruit__top-item:nth-child(3):before {
  background-image: url(../images/recruit_top3.png);
  width: 162px;
  aspect-ratio: 162/50;
}

.p-recruit__body {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-recruit__body {
    padding-bottom: 50px;
  }
}

.p-recruit__body-img {
  position: absolute;
}

.p-recruit__body-img.--first {
  max-width: 320px;
  aspect-ratio: 320/400;
  width: 23%;
  top: -36px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .p-recruit__body-img.--first {
    width: 25%;
    top: -90px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__body-img.--first {
    top: -70px;
  }
}

.p-recruit__body-img.--second {
  max-width: 270px;
  aspect-ratio: 270/300;
  width: 19%;
  top: 0;
  right: 0;
}

.p-recruit__body-img.--third {
  max-width: 320px;
  aspect-ratio: 320/200;
  width: 23%;
  top: 33%;
  right: 0;
}

.p-recruit__body-wrap {
  max-width: 615px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-recruit__body-wrap {
    margin-bottom: 150px;
    padding-inline: 16px;
  }
}

.p-recruit__lead {
  display: block;
  margin-bottom: 32px;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit__lead {
    margin-bottom: 24px;
    font-size: 2rem;
  }
}

.p-recruit__lead::before {
  content: "";
  background-image: url(../images/recruit_message.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 650px;
  width: 100%;
  aspect-ratio: 650/160;
  position: absolute;
  left: 50%;
  bottom: -19px;
  transform: translateX(-50%);
}

.p-recruit__sub {
  margin-bottom: 48px;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-recruit__sub {
    margin-bottom: 32px;
    font-size: 1rem;
  }
}

.p-recruit__sub span {
  display: block;
  font-weight: 700;
}

.p-recruit__text {
  color: #fff;
}

.p-recruit__description {
  max-width: 800px;
  margin-inline: auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 24px;
}

.p-recruit__description-lead {
  display: block;
  margin-bottom: 24px;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-recruit__description-lead {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }
}

.p-recruit__description-items {
  display: flex;
  max-width: 540px;
  margin-inline: auto;
  gap: 24px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-recruit__description-items {
    justify-content: center;
  }
}

.p-recruit__description-btn {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.p-recruit__description-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 60.5px;
  background-color: #22c55e;
  border-radius: 100%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 600px) {
  .p-recruit__description-link {
    padding: 15px;
    gap: 16px;
  }
}

.p-recruit__description-link img {
  width: 80px;
  aspect-ratio: 80/80;
}
@media screen and (max-width: 600px) {
  .p-recruit__description-link img {
    width: 40px;
  }
}

.p-recruit__wrap {
  position: relative;
  background: linear-gradient(to bottom, #fff, #f7f7f7, #efefef);
}

.p-recruit__wrap::before,
.p-recruit__wrap::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.p-recruit__wrap::before {
  background-image: url(../images/recruit_wrap1.png);
  width: 350px;
  aspect-ratio: 350/300;
  top: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .p-recruit__wrap::before {
    width: 50%;
  }
}

.p-recruit__wrap::after {
  background-image: url(../images/recruit_wrap2.png);
  width: 290px;
  aspect-ratio: 290/300;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .p-recruit__wrap::after {
    width: 40%;
  }
}

.p-recruit__items {
  display: flex;
  flex-wrap: wrap;
  padding: 100px 80px;
  max-width: 1240px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-recruit__items {
    padding: 50px 40px;
  }
}

.p-recruit__item {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .p-recruit__item {
    width: 100%;
  }
}

.p-recruit__item.--wide {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-recruit__item.--wide {
    width: 100%;
  }
}

.p-recruit__item img {
  margin-bottom: 24px;
  width: 64px;
  aspect-ratio: 64/64;
}
@media screen and (max-width: 768px) {
  .p-recruit__item img {
    margin-bottom: 16px;
  }
}

.p-recruit__item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
  background-color: #fff;
  border: solid 1px #f7f7f7;
  position: relative;
  transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 768px) {
  .p-recruit__item-link {
    padding: 32px;
    font-size: 1rem;
  }
}

.p-recruit__item-link span {
  display: block;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #22c55e;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .p-recruit__item-link span {
    font-size: 1rem;
  }
}

.p-recruit__item-link::before,
.p-recruit__item-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}

.p-recruit__item-link::before {
  background: linear-gradient(to right, rgba(163, 230, 53, 0.8) 0%, rgba(34, 197, 94, 0.8) 85%, rgba(34, 197, 94, 0.8) 100%);
  width: 100%;
  height: 100%;
}

.p-recruit__item-link::after {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-recruit__item-link::after {
    font-size: 1.5rem;
  }
}

.p-recruit__item:nth-child(1) .p-recruit__item-link::after {
  content: "about us";
}

.p-recruit__item:nth-child(2) .p-recruit__item-link::after {
  content: "work style";
}

.p-recruit__item:nth-child(3) .p-recruit__item-link::after {
  content: "support";
}

.p-recruit__item:nth-child(4) .p-recruit__item-link::after {
  content: "benefits";
}

.p-recruit__item:nth-child(5) .p-recruit__item-link::after {
  content: "faq";
}

@media (any-hover: hover) {
  .p-recruit__item-link:hover::before,
  .p-recruit__item-link:hover::after {
    opacity: 1;
  }
}

@media (any-hover: hover) {
  .p-recruit__item-link:hover::after {
    letter-spacing: 0.1em;
  }
}

.p-recruit__item-link:hover {
  transform: scale(0.9);
}

.p-recruit__bottom {
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit__bottom {
    padding-bottom: 50px;
  }
}

.p-recruit__bottom::before {
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d1f39a;
  opacity: 0.6;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  z-index: -1;
}

.p-recruit__bottom-img {
  display: inline-block;
  overflow: hidden;
}

.p-recruit__bottom-img img {
  width: 100%;
  height: auto;
  clip-path: inset(0 100% 0 0); /* 最初は見えない */
  opacity: 0;
  transition: clip-path 1.5s ease-out, opacity 1.5s ease-out;
}

/* 画面に入ったときに発火 */
.p-recruit__bottom-img.active img {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.p-recruit-company__container {
  background-image: url(../images/recruit_company-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-recruit-company__wrap {
  padding-block: 100px;
}
@media screen and (max-width: 768px) {
  .p-recruit-company__wrap {
    padding-block: 50px;
  }
}

.p-recruit-company__text {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-recruit-company__text {
    margin-bottom: 16px;
  }
}

.p-recruit-company__items {
  display: flex;
  gap: 24px;
  padding-block: 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .p-recruit-company__items {
    gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit-company__items {
    max-width: 600px;
    margin-inline: auto;
    padding-inline: 16px;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-company__items {
    padding-block: 50px;
  }
}

.p-recruit-company__item {
  width: calc((100% - 48px) / 3);
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-recruit-company__item {
    width: calc((100% - 32px) / 3);
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit-company__item {
    width: 100%;
  }
}

.p-recruit-company__item-img img {
  aspect-ratio: 464/422;
}

.p-recruit-company__item-wrap {
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
	min-height: 220px;
}
@media screen and (max-width: 1280px) {
  .p-recruit-company__item-wrap {
    padding: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-company__item-wrap {
    padding: 16px;
	  min-height: initial;
  }
}

.p-recruit-company__item-lead {
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .p-recruit-company__item-lead {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-company__item-lead {
    margin-bottom: 16px;
  }
}

.p-recruit-support__container {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-recruit-support__container {
    margin-top: 64px;
  }
}

.p-recruit-support__lead {
  display: block;
  padding: 8px;
  margin-top: 64px;
  margin-bottom: 16px;
  max-width: 220px;
  width: 220px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background-color: #22c55e;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .p-recruit-support__lead {
    margin-top: 60px;
    font-size: 1.125rem;
  }
}

.p-recruit-support__item {
  border-radius: 15px;
  box-shadow: 4px 4px 8px -2px rgba(0, 0, 0, 0.2);
  padding: 24px 40px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit-support__item {
    padding: 16px 24px;
  }
}

.p-recruit-support__item.--arrow::before {
  content: "";
  width: 70px;
  height: 35px;
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  background-color: #22c55e;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 768px) {
  .p-recruit-support__item.--arrow::before {
    width: 60px;
    height: 30px;
    bottom: -40px;
  }
}

.p-recruit-support__item:not(:last-child) {
  margin-bottom: 80px;
}

.p-recruit-support__item-lead {
  margin-bottom: 16px;
}

.p-recruit-benefits__item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-recruit-benefits__item {
    flex-direction: column;
    margin-top: 32px;
    gap: 16px;
  }
}

.p-recruit-benefits__item.--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-recruit-benefits__item.--reverse {
    flex-direction: column;
  }
}

.p-recruit-benefits__item-img {
  max-width: 420px;
  width: 100%;
}

.p-recruit-benefits__item-img img {
  aspect-ratio: 420/300;
}

.p-recruit-benefits__item-wrap {
  padding: 24px;
  width: 100%;
  border-radius: 15px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-recruit-benefits__item-wrap {
    padding: 16px;
  }
}

.p-recruit-benefits__item-lead {
  padding-bottom: 16px;
  margin-bottom: 24px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-recruit-benefits__item-lead {
    font-size: 1rem;
  }
}

.p-recruit-benefits__item-lists {
  list-style: disc;
  list-style-position: outside;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .p-recruit-benefits__item-lists {
    padding-left: 16px;
  }
}

.p-recruit-faq__item {
  border: solid 1px #efefef;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 4px 4px 8px -2px rgba(0, 0, 0, 0.2);
}

.p-recruit-faq__item:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-recruit-faq__item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.p-recruit-faq__item-link {
  display: block;
  margin-top: 12px;
  max-width: 228px;
  width: 100%;
}

.p-recruit-faq__item-lead {
  padding: 23px 66px 23px 62px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit-faq__item-lead {
    padding: 23px 58px 23px 54px;
    font-size: 1rem;
  }
}

.p-recruit-faq__item-lead::before {
  content: "";
  background-image: url(../images/faq_q.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 26px;
  height: 32px;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-recruit-faq__item-lead::before {
    left: 16px;
  }
}

.p-recruit-faq__item-lead::after {
  content: "";
  background-image: url(../images/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-recruit-faq__item-lead::after {
    right: 16px;
  }
}

.p-recruit-faq__item.is-open .p-recruit-faq__item-lead::after {
  background-image: url(../images/minus.svg);
}

.p-recruit-faq__item-body {
  border: solid 1px #efefef;
  padding-inline: 62px 24px;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding-block 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit-faq__item-body {
    padding-inline: 54px 16px;
  }
}

.p-recruit-faq__item.is-open .p-recruit-faq__item-body {
  border-top: solid 1px #efefef;
  opacity: 1;
}

.p-recruit-faq__item-body::before {
  content: "";
  background-image: url(../images/faq_a.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 23px;
  height: 32px;
  position: absolute;
  top: 24px;
  left: 24px;
}
@media screen and (max-width: 768px) {
  .p-recruit-faq__item-body::before {
    left: 16px;
  }
}

.js-faq-toggle {
  cursor: pointer;
}

.p-recruit-new__wrap,
.p-recruit-new__lead {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .p-recruit-new__wrap,
  .p-recruit-new__lead {
    margin-bottom: 32px;
  }
}

.p-recruit-new__lead {
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit-new__lead {
    padding-bottom: 12px;
  }
}

.p-recruit-new__lead::before {
  content: "";
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-recruit-new__table {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 2;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .p-recruit-new__table {
    font-size: 1rem;
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-recruit-new__table-tr {
    display: block;
    width: 100%;
  }
}

.p-recruit-new__table-th,
.p-recruit-new__table-td {
  border-bottom: 1px solid #efefef;
  padding: 24px 40px;
}
@media screen and (max-width: 768px) {
  .p-recruit-new__table-th,
  .p-recruit-new__table-td {
    display: block;
    padding: 16px 24px;
    width: 100%;
  }
}

.p-recruit-new__table-th {
  width: 220px;
  padding-right: 10px;
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-recruit-new__table-th {
    width: 100%;
  }
}

.p-recruit-new__table-td {
  font-weight: 400;
  background-color: #fff;
}

.p-recruit-new__table td.--flex,
.p-recruit-new__table td p {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-recruit-new__table td img {
  display: block;
  margin-top: 10px;
  width: 228px;
}

.p-recruit-new__table-tr:nth-child(odd) .p-recruit-new__table-th {
  background-color: #efefef;
}

.p-recruit-new__table-tr:nth-child(even) .p-recruit-new__table-th {
  background-color: #f7f7f7;
}

.p-recruit-new__table-tr:first-of-type .p-recruit-new__table-td:first-of-type {
  border-top: 1px solid #efefef;
}

.p-recruit-new__table ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 16px;
}

.p-recruit-new__process {
  position: relative;
}

.p-recruit-new__process-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  border: solid 1px #efefef;
}
@media screen and (max-width: 768px) {
  .p-recruit-new__process-table {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .p-recruit-new__process-tr {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-new__process-tr {
    display: block;
    width: 100%;
  }
}

.p-recruit-new__process-th {
  padding: 16px;
  width: 215px;
  background-color: #efefef;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .p-recruit-new__process-th {
    width: 100%;
  }
}

.p-recruit-new__process-td {
  padding: 16px;
}

.p-recruit-new__process-step {
  padding: 40px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 4px 4px 8px -2px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .p-recruit-new__process-step {
    padding: 24px;
  }
}

.p-recruit-new__process-step:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-recruit-new__process-step:not(:last-child) {
    margin-bottom: 24px;
  }
}

.p-recruit-new__process-lead {
  padding-bottom: 16px;
  margin-bottom: 24px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit-new__process-lead {
    margin-bottom: 16px;
    font-size: 1.5rem;
  }
}

.p-recruit-new__process-lead span {
  display: inline-block;
  margin-right: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #208a55;
}
@media screen and (max-width: 768px) {
  .p-recruit-new__process-lead span {
    display: block;
  }
}

.p-recruit-new__process-lead::before {
  content: "";
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #22c55e 15%, #a3e635 100%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-recruit-new__process-text {
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .p-recruit-new__process-table tbody {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .p-recruit-new__process-table tr {
    display: flex;
    flex-direction: column;
  }
}

.p-recruit-new__br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-recruit-new__br {
    display: block;
  }
}

.p-recruit-works__item-wrap {
  padding: 24px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 4px 4px 8px -2px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item-wrap {
    padding: 16px;
  }
}

.p-recruit-works__item:not(:first-child) {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item:not(:first-child) {
    margin-top: 32px;
  }
}

.p-recruit-works__item.--flex {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .p-recruit-works__item.--flex {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item.--flex {
    gap: 0;
  }
}

.p-recruit-works__item.--flex.--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item.--flex.--reverse {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .p-recruit-works__item {
    flex-direction: column;
  }
}

.p-recruit-works__item-lead {
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #208a55;
  max-width: 365px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item-lead {
    font-size: 1.5rem;
  }
}

.p-recruit-works__item-img {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item-img {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 1024px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-recruit-works__item:first-child .p-recruit-works__item-img img {
    width: calc((100% - 16px) / 2);
  }
}

.p-recruit-works__item:first-child .p-recruit-works__item-img img:last-child {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item:first-child .p-recruit-works__item-img img:last-child {
    margin-top: 0;
  }
}

.p-recruit-works__item-img.--flex {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  max-width: 1024px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item-img.--flex {
    gap: 16px;
  }
}

.p-recruit-works__item-img.--flex img {
  max-width: 490px;
  width: calc((100% - 48px) / 2);
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item-img.--flex img {
    width: calc((100% - 16px) / 2);
  }
}

.p-recruit-works__item-wrap.--column {
  padding-bottom: 180px;
}
@media screen and (max-width: 1024px) {
  .p-recruit-works__item-wrap.--column {
    padding-bottom: 17%;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item-wrap.--column {
    padding: 16px;
  }
}

.p-recruit-works__item.--position {
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .p-recruit-works__item.--position {
    padding-bottom: 21%;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item.--position {
    position: static;
    padding-bottom: 21%;
  }
}

.p-recruit-works__item-img.--position {
  max-width: 1024px;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-recruit-works__item-img.--position {
    position: static;
    transform: translate(0);
  }
}

.p-recruit-works__item-lists {
  margin-top: 24px;
  padding: 14.5px 24px;
  background-color: #f9f6f0;
  border-radius: 15px;
}

.p-recruit-works__item-list {
  position: relative;
  padding-left: 32px;
}

.p-recruit-works__item-list::before {
  content: "";
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

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

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

@media screen and (max-width: 1024px) {
  .u-pc-tb {
    display: none;
  }
}
.wpcf7-previous {
  display: inline-block !important;
}

/*確認画面と完了画面を非表示*/
    .confirm_area,
    .thanks_area {
        display: none;
    }

    /*デフォルトのサンクスメッセージを非表示*/
    .wpcf7-response-output{
        display: none;
    }
.p-page-contact__confirm-value {
	width: 80%;
}

.p-page-contact__note {
    font-size: 1em;
    font-weight: normal;
    margin-top: 12px;
    display: block;
    color: #dc3232;
    padding: 6px;}

.cf7-hidden-submit{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
/*# sourceMappingURL=style.css.map */