@-webkit-keyframes topanimation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

@keyframes topanimation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

@-webkit-keyframes hover {
  0% {
    opacity: 0;
  }

  10% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hover {
  0% {
    opacity: 0;
  }

  10% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

@font-face {
  font-family: "Dela Gothic One";
  font-weight: normal;
  src: url("../fonts/DelaGothicOne-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 600;
  src: url("../fonts/NotoSansJP-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Work Sans";
  font-weight: 600;
  src: url("../fonts/WorkSans-SemiBold.woff2") format("woff2");
}

body {
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 400;
  background-color: #eee;
}

body.is-menu-open {
  height: 100%;
  overflow: hidden;
}

*:where(:not(html,iframe,canvas,img,svg,video,audio):not(svg *,symbol *)) {
  all: unset;
  display: revert;
}

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

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::-webkit-input-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

.js-fadeIn {
  opacity: 0;
}

.is-fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.c-breadcrumb {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  margin-top: 22px;
}

.c-breadcrumb>li {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.c-breadcrumb>li>a {
  display: block;
  color: #b7b7b7;
}

.c-breadcrumb>li>span {
  display: block;
  color: #150000;
}

.c-breadcrumb>li:not(:last-child)::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background-color: #edc02d;
  position: absolute;
  top: 50%;
  right: -24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-btn {
  width: 240px;
  height: 60px;
  margin: 0 auto;
}

.c-btn>a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid #150000;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 2px 2px 0px 0px #150000;
  transition: .3s;
  position: relative;
  font-size: 16px;
  font-weight: 700;
}

.c-btn>a::after {
  content: "";
  background-image: url(../images/common/icon_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: .3s;
}

.c-btn>a:hover {
  box-shadow: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.c-btn.small {
  margin: 0;
}

.c-btn.down-arrow {
  width: 248px;
  height: 63px;
}

.c-btn.down-arrow>a {
  font-size: 18px;
  padding-right: 28px;
}

.c-btn.down-arrow>a::after {
  background-image: url(../images/common/icon_arrow_down.svg);
  width: 28px;
  height: 28px;
  right: 18px;
}

.c-btn.md {
  width: 274px;
}

.c-btn.lg {
  width: 438px;
}

.c-btn.back>a {
  padding-left: 10px;
}

.c-btn.back>a::after {
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.c-btn-yellow {
  width: 282px;
  height: 60px;
}

.c-btn-yellow>a {
  color: #150000;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 20px;
  font-weight: 400;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 66px;
  border-radius: 30px;
  background: #edc02d;
  box-shadow: 0 4px 24px 0 rgba(255,255,255,.6) inset;
}

.c-card__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.c-card__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px;
  border-radius: 10px;
  background-color: #f8f5eb;
  box-shadow: 0px 4px 40px 0px rgba(103,91,50,.05);
  height: 100%;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.c-card__link__img {
  position: relative;
  aspect-ratio: 302/260;
  margin-bottom: 20px;
}

.c-card__link__img.voices {
  aspect-ratio: 302/190;
}

.c-card__link__img>img {
  display: block;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.c-card__link__img__bg {
  width: 97%;
  height: 97%;
  border: 1px solid #150000;
  box-shadow: 0px 4px 40px 0px rgba(103,91,50,.05);
  transition: .3s;
}

.c-card__link__img__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: .3s;
}

.c-card__link__cat {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  background-color: #150000;
  padding: 4px 10px;
  margin-bottom: 8px;
}

.c-card__link__categories {
  position: absolute;
  z-index: 2;
  right: 6px;
  bottom: 10px;
}

.c-card__link__category {
  color: #150000;
  font-size: 12px;
  font-weight: 700;
  border-radius: 18.952px;
  background: #edc02d;
  padding: 2px 8px 3px 8px;
}

.c-card__link__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.c-card__link .voices-card-title .c-card__link__title,
.c-card__link .voices-card-title p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.c-card__link__name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4166;
  color: #9d938d;
}

.c-card__link__tag {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.c-card__link__tag>li {
  color: #968f79;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.c-card__link__bottom {
  border-top: 1px solid #e5e0d2;
  margin-top: 10px;
}

.c-card__link__bottom>span {
  display: block;
  width: 46px;
  height: 22px;
  border-radius: 50px;
  background: #150000;
  margin-top: 10px;
  position: relative;
  margin-left: auto;
}

.c-card__link__bottom>span::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.c-cv__wrap {
  width: 1360px;
  max-width: 95%;
  margin: 0 auto;
  height: 296px;
  border-radius: 8px;
  border: 3px solid #150000;
  box-shadow: 0px 4px 40px 0px rgba(103,91,50,.05);
  background-image: url("../images/top/cv_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  position: relative;
}

.c-cv__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.c-cv__link__item {
  width: 360px;
  height: 87px;
  border-radius: 70px;
  transition: .3s;
}

.c-cv__link__item>a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 24px;
  font-weight: 400;
  box-shadow: inset 0px 4px 16px 0px rgba(255,255,255,.6);
  border-radius: 70px;
}

.c-cv__link__item.black {
  color: #fff;
  background: #150000;
}

.c-cv__link__item.yellow {
  color: #150000;
  background: #edc02d;
}

.c-cv__img {
  display: block;
  position: absolute;
  height: auto;
}

.c-cv__img.img01 {
  width: 14%;
  max-width: 186px;
  bottom: 0;
  left: min(7.7vw,122px);
}

.c-cv__img.img02 {
  width: 20%;
  max-width: 264px;
  bottom: 0;
  right: min(4.6vw,77px);
}

.c-cv__img.img03 {
  width: 50%;
  max-width: 678px;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.c-form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-form .c-form_field {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  border-bottom: solid 1px #d8d8d8;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.c-form .c-form_field .c-form_field_label {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  width: 240px;
}

.c-form .c-form_field .c-form_field_label>p {
  line-height: 1.6;
  letter-spacing: .65px;
  font-weight: 700;
  font-size: 16px;
}

.c-form .c-form_field .c-form_field_label span {
  font-size: 12px;
  display: block;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_label .c-form_field_label_required {
  font-size: 12px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: .65px;
  background-color: #edc02d;
  padding: 2px 8px;
  border-radius: 9999px;
  margin-left: 5px;
}

.c-form .c-form_field .c-form_field_label--start {
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.c-form .c-form_field .c-form_field_contents {
  width: calc(100% - 240px);
}

.c-form .c-form_field .c-form_name-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 16px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-form .c-form_field .c-form_name-wrapper .c-form_name-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-form .c-form_field .c-form_name-wrapper .c-form_name-item>p {
  font-size: 16px;
}

.c-form .c-form_field .c-form_field_day-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 20px;
  position: relative;
}

.c-form .c-form_field .c-form_field_day-wrapper .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e10000;
  margin-top: 20px;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_input {
  width: 108px;
  position: relative;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_input input {
  width: 100%;
  padding: 15px 10px;
  font-size: 16px;
  margin: 0 auto;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  border-radius: 4px;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_input input::-webkit-input-placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_input input:-ms-input-placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_input input::placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_input__2col {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_input__2col--box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_input__2col--box span {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_input--file {
  width: 300px;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_checkbox>span>span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px 50px;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_checkbox>span>span>span {
  margin: 0;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_checkbox>span>span>span>label {
  font-size: 16px;
  cursor: pointer;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_checkbox>span>span>span>label input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_checkbox>span>span>span>label input:checked+span:after {
  content: "";
  position: absolute;
  left: 4px;
  display: block;
  border-radius: 1px;
  width: 10px;
  height: 10px;
  background-color: #edc02d;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_checkbox>span>span>span>label span {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 32px;
  word-break: keep-all;
  font-weight: bold;
}

.c-form .c-form_field .c-form_field_day-wrapper .c-form_field_checkbox>span>span>span>label span:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0px;
  display: block;
  border: 1px solid #d8d8d8;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background-color: #fff;
}

.c-form .c-form_field .c-form_sns-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 14px 40px;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-form .c-form_field .c-form_sns-wrapper .c-form_sns-item-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.c-form .c-form_field .c-form_sns-wrapper .c-form_sns-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.c-form .c-form_field .c-form_sns-wrapper .c-form_sns-item>p {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  width: 80px;
}

.c-form .c-form_field .c-form_sns-wrapper .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e10000;
  margin-top: 10px;
  display: block;
}

.c-form .c-form_field .c-form_field_input {
  width: 100%;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_input input {
  width: 100%;
  padding: 15px 10px;
  font-size: 16px;
  margin: 0 auto;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  border-radius: 4px;
}

.c-form .c-form_field .c-form_field_input input::-webkit-input-placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_input input:-ms-input-placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_input input::placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_input .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e10000;
  margin-top: 10px;
}

.c-form .c-form_field .c-form_field_input__2col {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.c-form .c-form_field .c-form_field_input__2col--box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-form .c-form_field .c-form_field_input__2col--box span {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}

.c-form .c-form_field .c-form_field_input--file {
  width: 50%;
}

.c-form .c-form_field .c-form_field_input--text {
  position: relative;
}

.c-form .c-form_field .c-form_field_input--text input {
  padding-right: 30px !important;
}

.c-form .c-form_field .c-form_field_input--text::after {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #150000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.c-form .c-form_field .c-form_field_input--text.month::after {
  content: "月";
}

.c-form .c-form_field .c-form_field_input--text.day::after {
  content: "日";
}

.c-form .c-form_field .c-form_field_input--text.year::after {
  content: "年";
}

.c-form .c-form_field .c-form_field_input--text.yen input {
  text-align: right;
}

.c-form .c-form_field .c-form_field_input--text.yen::after {
  content: "円";
}

.c-form .c-form_field .c-form_field_input--text.zip input {
  padding-right: 10px !important;
  padding-left: 30px !important;
}

.c-form .c-form_field .c-form_field_input--text.zip::after {
  content: "〒";
  right: initial;
  left: 10px;
}

.c-form .c-form_field .c-form_field_checkbox>span>span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px 50px;
}

.c-form .c-form_field .c-form_field_checkbox>span>span>span {
  margin: 0;
}

.c-form .c-form_field .c-form_field_checkbox>span>span>span>label {
  font-size: 16px;
  cursor: pointer;
}

.c-form .c-form_field .c-form_field_checkbox>span>span>span>label input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.c-form .c-form_field .c-form_field_checkbox>span>span>span>label input:checked+span:after {
  content: "";
  position: absolute;
  left: 4px;
  display: block;
  border-radius: 1px;
  width: 10px;
  height: 10px;
  background-color: #edc02d;
}

.c-form .c-form_field .c-form_field_checkbox>span>span>span>label span {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 32px;
  word-break: keep-all;
  font-weight: bold;
}

.c-form .c-form_field .c-form_field_checkbox>span>span>span>label span:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0px;
  display: block;
  border: 1px solid #d8d8d8;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background-color: #fff;
}

.c-form .c-form_field .c-form_field_checkbox .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e10000;
  margin-top: 10px;
}

.c-form .c-form_field .c-form_field_radiobutton>span>span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px 50px;
}

.c-form .c-form_field .c-form_field_radiobutton>span>span>span {
  margin: 0;
}

.c-form .c-form_field .c-form_field_radiobutton>span>span>span>label {
  font-size: 16px;
  cursor: pointer;
}

.c-form .c-form_field .c-form_field_radiobutton>span>span>span>label input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.c-form .c-form_field .c-form_field_radiobutton>span>span>span>label input:checked+span:after {
  content: "";
  position: absolute;
  left: 4px;
  display: block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #edc02d;
}

.c-form .c-form_field .c-form_field_radiobutton>span>span>span>label span {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 32px;
  word-break: keep-all;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.c-form .c-form_field .c-form_field_radiobutton>span>span>span>label span:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0px;
  display: block;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.c-form .c-form_field .c-form_field_radiobutton .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e10000;
  margin-top: 10px;
}

.c-form .c-form_field .c-form_field_textarea {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_textarea textarea {
  width: 100%;
  height: 240px;
  padding: 15px 10px;
  font-size: 16px;
  margin: 0 auto;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  border-radius: 4px;
}

.c-form .c-form_field .c-form_field_textarea textarea::-webkit-input-placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_textarea textarea:-ms-input-placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_textarea textarea::placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field .c-form_field_textarea .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e10000;
  margin-top: 10px;
}

.c-form .c-form_field .c-form_field_textarea__2col {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.c-form .c-form_field .c-form_field_textarea__2col--box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-form .c-form_field .c-form_field_textarea__2col--box span {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}

.c-form .c-form_field.pr-10 {
  padding-right: 10px;
}

.c-form .c-form_field .c-form_thumbnail-group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.c-form .c-form_field .c-form_thumbnail-group>p {
  font-size: 12px;
}

.c-form .c-form_field .c-form_thumbnail-group .c-form_thumbnail-note {
  padding: 8px 0 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-form .c-form_field .c-form_thumbnail-group .c-form_thumbnail-note>span {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.c-form .c-form_field .c-form_textarea-group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-form .c-form_field .c-form_textarea-group .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e10000;
  margin-top: 10px;
  display: block;
  position: static;
}

.c-form .c-form_field .c-form_textarea-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.c-form .c-form_field .c-form_address-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 25px;
}

.c-form .c-form_field .c-form_address-wrapper .c-form_field_contents:first-child {
  width: 200px;
}

.c-form .c-form_field .c-form_address-wrapper .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e10000;
  margin-top: 10px;
  display: block;
}

.c-form .c-form_field .c-nda {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 13px;
}

.c-form .c-form_field .c-nda .c-nda_wrapper {
  max-height: 178px;
  overflow-y: auto;
  padding: 16px;
  background-color: #e7e7e7;
  scrollbar-width: thin;
  border-radius: 4px;
}

.c-form .c-form_field .c-nda .c-nda_wrapper_heading {
  padding: 0;
  margin-bottom: 23.8px;
}

.c-form .c-form_field .c-nda .c-nda_wrapper_heading h2 {
  font-size: 14px;
  font-weight: 700;
  line-height: 170%;
}

.c-form .c-form_field .c-nda .c-nda_wrapper_heading p {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
}

.c-form .c-form_field .c-nda .c-nda_section h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 170%;
}

.c-form .c-form_field .c-nda .c-nda_section li {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
}

.c-form .c-form_field .c-nda .c-nda_section .c-nda_list {
  list-style-type: decimal;
  padding-left: 16px;
}

.c-form .c-form_field .c-nda .c-nda_section .c-nda_list .c-nda_list_sub {
  list-style-type: lower-alpha;
  padding-left: 1.5em;
}

.c-form .c-form_field .c-nda .c-nda_section .c-nda_list .c-nda_list_item_sub {
  margin-top: .25em;
}

.c-form .c-form_field .c-nda .c-nda_footer_note {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
}

.c-form .c-form_field_txt {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 5px;
  border-bottom: solid 1px #d8d8d8;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.c-form .c-form_field_txt .c-form_field_label {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  width: 240px;
}

.c-form .c-form_field_txt .c-form_field_label>p {
  line-height: 1.6;
  letter-spacing: .65px;
  font-weight: 700;
  font-size: 16px;
}

.c-form .c-form_field_txt .c-form_field_label span {
  font-size: 12px;
  display: block;
  font-weight: normal;
}

.c-form .c-form_field_txt .c-form_field_label_required {
  font-size: 12px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: .65px;
  background-color: #edc02d;
  padding: 2px 8px;
  border-radius: 9999px;
  margin-left: 5px;
}

.c-form .c-form_field_txt--start {
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.c-form .c-form_field_txt .c-form_field_contents {
  width: calc(100% - 240px);
}

.c-form .c-form_field_txt .c-form_field_input {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  font-weight: normal;
}

.c-form .c-form_field_txt .c-form_field_input input {
  width: 100%;
  padding: 15px 10px;
  font-size: 16px;
  margin: 0 auto;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  border-radius: 4px;
}

.c-form .c-form_field_txt .c-form_field_input input::-webkit-input-placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field_txt .c-form_field_input input:-ms-input-placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field_txt .c-form_field_input input::placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field_txt .c-form_price-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.c-form .c-form_field_txt .c-form_price-wrapper-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.c-form .c-form_field_txt .c-form_price-wrapper-item>p {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.c-form .c-form_field_txt .c-form_price-group {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-form .c-form_field_txt .c-form_field_price {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-form .c-form_field_txt .c-form_field_price .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e10000;
  margin-top: 10px;
  display: block;
}

.c-form .c-form_field_txt .c-form_textarea-group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-form .c-form_field_txt .c-form_textarea-group .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e10000;
  margin-top: 10px;
  display: block;
}

.c-form .c-form_field_txt .c-form_field_textarea {
  width: 100%;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  font-weight: normal;
}

.c-form .c-form_field_txt .c-form_field_textarea textarea {
  width: 100%;
  height: 240px;
  padding: 15px 10px;
  font-size: 16px;
  margin: 0 auto;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  border-radius: 4px;
}

.c-form .c-form_field_txt .c-form_field_textarea textarea::-webkit-input-placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field_txt .c-form_field_textarea textarea:-ms-input-placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_field_txt .c-form_field_textarea textarea::placeholder {
  color: #989898;
  font-weight: normal;
}

.c-form .c-form_illustration_checkbox {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.c-form .c-form_illustration_checkbox .c-form_illustration_checkbox_btn>span>span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 32px;
}

.c-form .c-form_illustration_checkbox .c-form_illustration_checkbox_btn>span>span>span {
  margin: 0;
}

.c-form .c-form_illustration_checkbox .c-form_illustration_checkbox_btn>span>span>span>label {
  font-size: 16px;
  cursor: pointer;
}

.c-form .c-form_illustration_checkbox .c-form_illustration_checkbox_btn>span>span>span>label input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.c-form .c-form_illustration_checkbox .c-form_illustration_checkbox_btn>span>span>span>label input:checked+span:after {
  content: "";
  position: absolute;
  left: 4px;
  display: block;
  border-radius: 1px;
  width: 10px;
  height: 10px;
  background-color: #edc02d;
}

.c-form .c-form_illustration_checkbox .c-form_illustration_checkbox_btn>span>span>span>label span {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 26px;
  text-align: center;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
}

.c-form .c-form_illustration_checkbox .c-form_illustration_checkbox_btn>span>span>span>label span:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0px;
  display: block;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  content: "";
  width: 18px;
  height: 18px;
}

.c-form .c-form_illustration_checkbox .wpcf7-not-valid-tip {
  text-align: center;
  display: block !important;
  margin-top: 6px;
}

.c-form .c-form_genre_checkbox {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.c-form .c-form_genre_checkbox .c-form_genre_checkbox_btn>span>span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.c-form .c-form_genre_checkbox .c-form_genre_checkbox_btn>span>span>span {
  margin: 0;
}

.c-form .c-form_genre_checkbox .c-form_genre_checkbox_btn>span>span>span>label {
  font-size: 16px;
  cursor: pointer;
}

.c-form .c-form_genre_checkbox .c-form_genre_checkbox_btn>span>span>span>label input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.c-form .c-form_genre_checkbox .c-form_genre_checkbox_btn>span>span>span>label input:checked+span:after {
  content: "";
  position: absolute;
  left: 4px;
  display: block;
  border-radius: 1px;
  width: 10px;
  height: 10px;
  background-color: #edc02d;
}

.c-form .c-form_genre_checkbox .c-form_genre_checkbox_btn>span>span>span>label span {
  width: 100%;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 26px;
  text-align: center;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.c-form .c-form_genre_checkbox .c-form_genre_checkbox_btn>span>span>span>label span:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0px;
  display: block;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  content: "";
  width: 18px;
  height: 18px;
}

.c-form .c-form_privacy_checkbox {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px 20px;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn>span>span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 50px;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn>span>span>span {
  margin: 0;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn>span>span>span>label {
  font-size: 16px;
  cursor: pointer;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn>span>span>span>label input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn>span>span>span>label input:checked+span:after {
  content: "";
  position: absolute;
  left: 4px;
  display: block;
  border-radius: 1px;
  width: 10px;
  height: 10px;
  background-color: #edc02d;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn>span>span>span>label span {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 26px;
  text-align: center;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn>span>span>span>label span:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0px;
  display: block;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  content: "";
  width: 18px;
  height: 18px;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn_signup {
  position: relative;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn_signup>span>span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 50px;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn_signup>span>span>span {
  margin: 0;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn_signup>span>span>span>label {
  font-size: 16px;
  cursor: pointer;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn_signup>span>span>span>label input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn_signup>span>span>span>label input:checked+span:after {
  content: "";
  position: absolute;
  left: 4px;
  display: block;
  border-radius: 1px;
  width: 10px;
  height: 10px;
  background-color: #edc02d;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn_signup>span>span>span>label span {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 26px;
  text-align: center;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn_signup>span>span>span>label span:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0px;
  display: block;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  content: "";
  width: 18px;
  height: 18px;
}

.c-form .c-form_privacy_checkbox .wpcf7-not-valid-tip {
  text-align: center;
  display: block !important;
  margin-top: 6px;
}

.c-form a {
  color: #a17d0b;
  font-weight: 700;
  text-decoration: underline;
}

.c-form .c-form_desc-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.c-form .c-form_desc-wrapper .recaptcha-note {
  text-align: center;
  line-height: 1.5;
  font-size: 14px;
}

.c-form .c-form_privacy {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px 0 64px;
}

.c-form .c-form_desc {
  text-align: center;
  margin: -24px 0 40px;
}

.c-form .c-form_desc>p {
  font-size: 15px;
}

.c-form .c-form_desc_signup {
  margin: 0;
}

.c-form .c-form_desc_signup>p {
  font-size: 14px;
}

.c-form .c-form_desc_sub {
  margin: 0;
  text-align: justify;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-form .c-form_desc_sub>p {
  font-size: 12px;
}

.c-form .c-form_desc_sub>p>span {
  display: inline;
  box-shadow: inset 0 -0.5em #edc02d;
}

.c-form .c-form_desc_sub_point {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-form .c-form_desc_sub_point>p {
  font-size: 12px;
  font-weight: 700;
}

.c-form .c-form_desc_sub_point>p>span {
  display: inline;
  box-shadow: inset 0 -0.5em #edc02d;
}

.c-form .c-form_desc_sub_point>img {
  width: 21px;
}

.c-form .c-form_desc_sub_point_txt {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-form .c-form_desc_sub_point_txt>p {
  margin: 10px 0 0;
}

.c-form .c-form_submit {
  position: relative;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.c-form .c-form_submit--button {
  position: relative;
  background-color: #edc02d;
  width: 250px;
  height: 60px;
  margin: auto;
  border-radius: 9999px;
  transition: .3s;
  cursor: pointer;
}

.c-form .c-form_submit--button:hover {
  -webkit-transform: scale(1.03, 1.06);
  transform: scale(1.03, 1.06);
}

.c-form .c-form_submit--button::after {
  content: "";
  background-image: url(../images/common/icon_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: .3s;
}

.c-form .c-form_submit--button>input {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .44px;
  box-shadow: inset 0px 4px 16px 0px rgba(255,255,255,.6);
  border-radius: 9999px;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e10000;
  position: absolute;
  left: 0;
  bottom: -20px;
  z-index: 1;
}

.wpcf7-response-output {
  margin-top: 24px;
  text-align: center;
}

.c-page-header {
  height: 368px;
  background-color: #f3f3f3;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
}

.c-page-header.p404 {
  background: #eee;
}

.c-page-header.single {
  padding-bottom: 64px;
  height: 400px;
}

.c-page-header.single .c-page-header__inner {
  height: auto;
}

.c-page-header.risk-training {
  height: 616px;
  padding-top: 136px;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.c-page-header.risk-training .c-page-header__inner {
  height: auto;
}

.c-page-header.risk-training .c-page-header__inner .c-page-header__text .c-breadcrumb {
  margin-top: 0;
  margin-bottom: 48px;
}

.c-page-header.risk-training .c-page-header__inner .c-page-header__text .c-page-header__title {
  font-size: 44px;
}

.c-page-header__inner {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 200px;
}

.c-page-header__text {
  position: relative;
  z-index: 1;
}

.c-page-header__title {
  font-family: "Dela Gothic One",sans-serif;
  font-size: 48px;
  font-weight: 400;
}

.c-page-header__title span {
  color: #e28d00;
}

.c-page-header__desc {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 16px;
}

.c-page-header__btn {
  margin: 40px auto 0;
}

.c-page-header__bg-text {
  display: block;
  width: 200vw;
  max-width: 1956px;
  color: #eee;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 100px;
  font-weight: 400;
  position: absolute;
  top: -52px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
}

.c-page-header__img {
  position: absolute;
}

.c-page-header__img>img {
  display: block;
  width: 100%;
  height: auto;
}

.c-page-header__img.about {
  width: 352px;
  right: -51px;
  bottom: 0;
}

.c-page-header__img.company {
  width: 157px;
  right: 24px;
  bottom: 64px;
}

.c-page-header__img.flow {
  width: 345px;
  right: -35px;
  bottom: 0;
}

.c-page-header__img.works {
  width: 469px;
  left: 50%;
  bottom: -2px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.c-page-header__img.promotion {
  width: 620px;
  right: -121px;
  bottom: 0;
}

.c-page-header__img.service {
  width: 620px;
  right: -121px;
  bottom: 0;
}

.c-page-header__img.sns-promotion {
  width: 620px;
  right: -121px;
  bottom: 10px;
}

.c-page-header__img.promotion-recruit {
  width: 383px;
  right: -57px;
  bottom: 0;
}

.c-page-header__img.promotion-internal-pr {
  width: 285px;
  right: -1px;
  bottom: 59px;
}

.c-page-header__img.column {
  width: 201px;
  right: 20px;
  bottom: 0;
}

.c-page-header__img.voices {
  width: 600px;
  bottom: 13px;
  right: -141px;
}

.c-page-header__img.contact {
  width: 175px;
  bottom: 86px;
  right: -24px;
}

.c-page-header__img.download {
  width: 265px;
  bottom: 0;
  right: -10px;
}

.c-page-header__img.webiner {
  width: 250px;
  bottom: 0;
  right: 37px;
}

.c-page-header__img.type {
  width: 395px;
  bottom: 75px;
  right: 0;
}

.c-page-header__img.risk-training {
  width: 465px;
  top: 62px;
  right: 0;
}

.c-page-header.bg-arch {
  position: relative;
  height: 397px;
}

.c-page-header.bg-arch .c-page-header__inner {
  height: 230px;
}

.c-page-header.bg-arch .c-page-header__text {
  z-index: 1000;
}

.c-page-header.bg-arch::before {
  content: "";
  width: 100vw;
  height: 8.4vw;
  background-image: url(../images/page-header/bg.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
  z-index: 10;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.c-page-header.bg-arch.promotion {
  padding: 4px 4px 0;
}

.c-pagenavi {
  text-align: center;
  margin-top: 80px;
}

.c-pagenavi>.page-numbers {
  max-width: 100%;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2px;
  height: 48px;
  background-color: #fff;
  border-radius: 40px;
  border: 2px solid #150000;
  padding-inline: 16px;
}

.c-pagenavi>.page-numbers>li {
  min-width: 40px;
  height: 40px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-pagenavi>.page-numbers>li>a,
.c-pagenavi>.page-numbers>li span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
}

.c-pagenavi>.page-numbers>li .current {
  background-color: #edc02d;
  border-radius: 50%;
}

.c-pagenavi>.page-numbers>li .prev,
.c-pagenavi>.page-numbers>li .next {
  width: 46px;
  height: 100%;
  position: relative;
}

.c-pagenavi>.page-numbers>li .prev::before,
.c-pagenavi>.page-numbers>li .next::before {
  content: "";
  width: 2px;
  height: calc(100% + 4px);
  background-color: #150000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-pagenavi>.page-numbers>li .prev {
  border-radius: 40px 0 0 40px;
}

.c-pagenavi>.page-numbers>li .prev::before {
  right: 0;
}

.c-pagenavi>.page-numbers>li .prev>img {
  -webkit-transform: translateX(-8px) rotate(180deg);
  transform: translateX(-8px) rotate(180deg);
}

.c-pagenavi>.page-numbers>li .next {
  border-radius: 0px 40px 40px 0px;
}

.c-pagenavi>.page-numbers>li .next::before {
  left: 0;
}

.c-pagenavi>.page-numbers>li .next>img {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

.c-pagetop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 24px;
  right: 24px;
  transition: .3s;
  width: 68px;
  height: 68px;
  transition: 1s;
  z-index: 1001;
}

.c-pagetop>div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all .3s ease-out;
  cursor: pointer;
}

.c-pagetop>div>span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 14px;
  height: 28px;
  background-image: url(../images/common/pagetop.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}

.c-pagetop>div::before {
  background-color: #edc02d;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 12px 12px 40px 0px rgba(92,29,29,.06);
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s ease-out;
  border: 2px solid #150000;
}

.c-pagetop.active {
  opacity: 1;
  visibility: visible;
}

.c-qa__item {
  border-radius: 4px;
  border: 2px solid #150000;
  background: #fff;
  padding: 21px 24px;
  margin-bottom: 16px;
}

.c-qa__item:last-child {
  margin-bottom: 0;
}

.promotion-qa .c-qa__item {
  padding: 31px 25px;
  margin-bottom: 13px;
}

.promotion-qa .c-qa__item:last-child {
  margin-bottom: 0;
}

.c-qa__item-q,
.c-qa__item-a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.c-qa__item-q span,
.c-qa__item-a span {
  border-radius: 50%;
  background: #edc02d;
  color: #150000;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  height: 36px;
  width: 36px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-qa__item-q h3,
.c-qa__item-a h3 {
  color: #150000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-qa__item-q p,
.c-qa__item-a p {
  color: #150000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-qa__item-a {
  border-top: 1px dashed #150000;
  margin-top: 16px;
  padding-top: 16px;
}

.c-qa__item-a span {
  background: #150000;
  color: #fff;
}

.c-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.c-title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 36px;
  font-weight: 400;
  background-blend-mode: screen;
}

.c-title>img {
  width: 38px;
  height: auto;
}

.c-title>span {
  display: block;
}

.c-title.mb {
  margin-bottom: 12px;
}

.c-title.row {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 14px;
}

.c-title.col {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.c-title.col.flex-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-title.lower {
  font-size: 26px;
  gap: 8px;
}

.c-title.lower>img {
  width: 28px;
}

.c-title.sm {
  font-size: 26px;
  line-height: 1.2;
  gap: 14px;
}

.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"),url("./fonts/slick.woff") format("woff"),url("./fonts/slick.ttf") format("truetype"),url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: rgba(0,0,0,0);
  color: rgba(0,0,0,0);
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: rgba(0,0,0,0);
  color: rgba(0,0,0,0);
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #fff;
  opacity: .75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

.slick-dotted.slick-slider {
  margin-bottom: 40px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: rgba(0,0,0,0);
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: rgba(0,0,0,0);
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: #000;
  opacity: .25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #000;
  opacity: .75;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid rgba(0,0,0,0);
}

.slick-arrow.slick-hidden {
  display: none;
}

.l-footer {
  position: relative;
  background-color: #150000;
  color: #fff;
  padding-block: 40px;
  z-index: 1300;
}

.l-footer.lower {
  padding-top: 200px;
}

.l-footer__cv {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: -150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-inline: 20px;
}

.l-footer__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 40px;
}

.l-footer__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.l-footer__head__logo {
  display: block;
  padding-top: 40px;
  width: 219px;
}

.l-footer__head__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer__head__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.l-footer__head__privacy {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.l-footer__head__privacy>img {
  width: 10px;
  display: inline-block;
  position: relative;
  bottom: 4px;
}

.l-footer__nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
  border-right: 1px solid #3a3a3a;
  border-left: 1px solid #3a3a3a;
  padding: 40px 64px;
}

.l-footer__nav__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.l-footer__nav__list>li>a {
  font-size: 16px;
  font-weight: 700;
  transition: .3s;
}

.l-footer__nav__list>li>div {
  font-size: 16px;
  font-weight: 700;
}

.l-footer__nav__list__child {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.l-footer__nav__list__child>li>a {
  color: #ababab;
  font-size: 11px;
  font-weight: 500;
  transition: .3s;
}

.l-footer__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
}

.l-footer__link__item {
  width: 280px;
  height: 104px;
  border-radius: 10px;
  transition: .3s;
}

.l-footer__link__item>a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .44px;
  box-shadow: inset 0px 4px 16px 0px rgba(255,255,255,.6);
  border-radius: 10px;
}

.l-footer__link__item>a::after {
  content: "";
  background-image: url(../images/common/icon_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: .3s;
}

.l-footer__link__item.white {
  color: #150000;
  background-color: #fff;
}

.l-footer__link__item.yellow {
  color: #150000;
  background-color: #edc02d;
}

.l-footer__link__tel {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 6px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}

.l-footer__link__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  text-align: right;
  margin-top: -14px;
}

.l-footer__copy {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.l-footer__sp-wrap {
  display: contents;
}

.g-nav {
  border-radius: 70px;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(103,91,50,.1);
}

.g-nav.is-menu {
  opacity: 1;
  visibility: visible;
}

.g-nav__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px min(2.8vw,40px);
  gap: 36px;
  position: relative;
  overflow: visible;
}

.g-nav__menu {
  list-style: none;
  display: block;
  width: 100%;
  overflow-y: auto;
}

.g-nav__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(2.8vw,36px);
}

.g-nav__list__child {
  display: none;
  opacity: 0;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #150000;
  position: absolute;
  top: 85px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 20px 24px;
  gap: 12px;
  border-radius: 8px;
  transition: .3s;
}

.g-nav__list__child.open {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  max-width: 1027px;
  width: 100vw;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.g-nav__list__child__item {
  width: calc(50% - 6px);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 12px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  border-radius: 7px;
  border: 2px solid #150000;
  background-color: #fff;
  transition: .3s;
}

.g-nav__list__child__item__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.g-nav__list__child__item__head>p {
  font-family: "Dela Gothic One",sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.g-nav__list__child__item__head>span {
  display: block;
  width: 30px;
  height: 14px;
  border-radius: 50px;
  background: #150000;
  position: relative;
  transition: .3s;
}

.g-nav__list__child__item__head>span::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 9px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.g-nav__list__child__item__cat {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.g-nav__list__child__item__cat>li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 6px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #edc02d;
  font-size: 11px;
  font-weight: 700;
}

.g-nav__list__child__item:hover .g-nav__list__child__item__head>span {
  background-color: #edc02d;
}

.g-nav__list__child__item:hover .g-nav__list__child__item__head>span::after {
  background-image: url(../images/common/icon_arrow_black.svg);
}

.g-nav__toggle {
  display: block;
  width: 10px;
  aspect-ratio: 1/.8660254038;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(45deg, #150000, #150000);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  transition: .3s;
  margin-top: 2px;
}

.g-nav__toggle.open {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  margin-top: -4px;
}

.g-nav__link {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: min(1vw,15px);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.g-nav__link.child {
  padding-right: 22px;
}

.g-nav__link .pc-arrow {
  display: none;
}

.g-nav__btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  font-size: 21px;
  padding: 10px 34px 8px 60px;
  line-height: 1;
}

.g-nav__bottom {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.g-nav__bottom__item {
  width: 100%;
  max-width: 500px;
  height: 69px;
  border-radius: 10px;
}

.g-nav__bottom__item>a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .4px;
  box-shadow: inset 0px 4px 16px 0px rgba(255,255,255,.6);
  border-radius: 10px;
}

.g-nav__bottom__item>a::after {
  content: "";
  background-image: url(../images/common/icon_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: .3s;
}

.g-nav__bottom__item.white {
  color: #150000;
  background-color: #fff;
}

.g-nav__bottom__item.yellow {
  color: #150000;
  background-color: #edc02d;
}

.l-header {
  width: 1440px;
  max-width: 100%;
  padding-right: 24px;
  padding-left: 40px;
  position: relative;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1400;
}

.l-header__wrap {
  width: 100%;
  height: 120px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.l-header__logo {
  width: 200px;
}

.l-header__logo>a {
  display: block;
}

.l-header__logo>a>img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.l-header__logo>a>img.close {
  display: none;
}

.l-header__logo>a>span {
  display: block;
  font-size: 13.2px;
  font-weight: 500;
  text-align: center;
  padding-left: 2px;
  white-space: nowrap;
}

.l-header__logo.open {
  background-color: initial;
}

.l-header__logo.open>a>span {
  color: #fff;
}

.l-header__nav {
  position: relative;
  z-index: 1300;
}

.l-header__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.l-header__link__item {
  width: 164px;
  height: 62px;
  border-radius: 44px;
  transition: .3s;
}

.l-header__link__item>a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .32px;
  box-shadow: inset 0px 4px 16px 0px rgba(255,255,255,.6);
  border-radius: 44px;
}

.l-header__link__item.black {
  color: #fff;
  background: #150000;
}

.l-header__link__item.black>a {
  letter-spacing: .64px;
}

.l-header__link__item.yellow {
  color: #150000;
  background: #edc02d;
  position: relative;
}

.l-header__link>img {
  display: block;
  width: 46px;
  height: auto;
  position: absolute;
  top: 10px;
  right: 40px;
  z-index: -1;
  -webkit-animation: moveUpAndDown 5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  animation: moveUpAndDown 5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

@-webkit-keyframes moveUpAndDown {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes moveUpAndDown {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.l-main {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.l-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1140px;
}

.l-container.min {
  max-width: 1140px;
}

.l-container.wide {
  max-width: 1448px;
}

.nav-btn {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1300;
  cursor: pointer;
  width: 90px;
  height: 80px;
  padding: 7px 0px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0px 0px 0px 10px;
  border-bottom: 2px solid var(--black, #150000);
  border-left: 2px solid var(--black, #150000);
  background: #fff;
  box-shadow: 2px 2px 0px 0px #150000;
}

.nav-btn__text {
  color: #150000;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.34;
}

.nav-btn__text.close {
  display: none;
}

.nav-btn__icon {
  display: block;
  width: 46px;
  height: auto;
}

.nav-btn__wrap {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav-btn__wrap__box {
  margin: 0 auto;
  position: relative;
  width: 24px;
  height: 12px;
  z-index: 1201;
}

.nav-btn__line {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1100;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all .3s;
  display: none;
}

.nav-btn__line:nth-of-type(1) {
  top: 0px;
}

.nav-btn__line:nth-of-type(2) {
  bottom: 0;
}

.nav-btn__bg {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #150000;
}

.nav-btn.is-close .nav-btn__text {
  display: none;
}

.nav-btn.is-close .nav-btn__wrap__box {
  width: 20px;
  height: 20px;
}

.nav-btn.is-close .nav-btn__line {
  display: block;
}

.nav-btn.is-close .nav-btn__line:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

.nav-btn.is-close .nav-btn__line:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}

.l-single {
  padding: 24px 0 200px;
}

.l-single.voices {
  padding: 24px 0 120px;
}

.l-single__wrap {
  padding: 80px;
  border-radius: 16px;
  background: #fff;
}

.l-single__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
}

.l-single__head__date {
  color: #989898;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.l-single__head__cat {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.l-single__head__cat>li {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  background-color: #150000;
  padding: 4px 10px;
}

.l-single__head__cat.voices>li {
  border-radius: 18.952px;
  background: #edc02d;
  padding: 2px 12px 3px 12px;
  color: #150000;
  font-size: 14px;
  font-weight: 700;
}

.l-single__name {
  color: #9d938d;
  font-size: 20px;
  font-weight: 700;
}

.l-single__title {
  color: var(--black, #150000);
  font-family: "Noto Sans JP",sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 3px dashed #edc02d;
  padding-bottom: 48px;
}

.l-single__thumb {
  aspect-ratio: 940/526;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  margin-top: 40px;
}

.l-single__thumb.voices {
  aspect-ratio: auto;
}

.l-single__thumb>img {
  display: block;
  width: 100%;
  height: 100%;
}

.l-single__lead {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  border-radius: 4px;
  border: 1px solid #a17d0b;
  margin-block: 40px;
}

.l-single__lead>img {
  display: block;
  width: 70px;
  height: auto;
}

.l-single__content #toc_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  border-radius: 2px;
  background: #f8f8f8;
}

.l-single__content #toc_container .toc_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  border-left: 2px solid #edc02d;
  padding-left: 16px;
}

.l-single__content #toc_container .toc_list>li {
  padding-left: 12px;
}

.l-single__content #toc_container .toc_list>li>a {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.l-single__content #toc_container .toc_list>li>a::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #a17d0b;
  position: absolute;
  top: 10px;
  left: -12px;
}

.l-single__content #toc_container .toc_list>li>ul {
  padding-left: 12px;
}

.l-single__content #toc_container .toc_list>li>ul>li>a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.l-single__content #toc_container .toc_list>li>ul>li>a::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #a17d0b;
  position: absolute;
  top: 10px;
  left: -12px;
}

.l-single__content #toc_container .toc_list>li>ul>li>ul {
  padding-left: 12px;
}

.l-single__content #toc_container .toc_list>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  color: #b1b1b1;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.l-single__content>h1 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 24px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px 8px 0px 0px;
  background: #edc02d;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-block: 40px;
}

.l-single__content>h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 16px;
  border-bottom: 1px solid #a17d0b;
  margin-block: 40px;
}

.l-single__content>h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-left: 13px;
  margin-block: 16px;
}

.l-single__content>h3::before {
  content: "";
  width: 3px;
  height: 22px;
  background-color: #a17d0b;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-single__content>h4 {
  color: #150000;
  font-size: 16px;
  font-weight: 700;
  line-height: 110%;
  position: relative;
  padding-left: 13px;
}

.l-single__content>h4::before {
  content: "";
  width: 1px;
  height: 18px;
  background-color: #a17d0b;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-single__content>p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  margin-block: 30px;
}

.l-single__content strong {
  font-weight: bold;
}

.l-single__content em {
  font-style: italic;
}

.l-single__content>ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  background: #f8f5eb;
  margin-block: 40px;
}

.l-single__content>ul li {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.l-single__content>ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #a17d0b;
  position: absolute;
  top: 10px;
  left: 0;
}

.l-single__content>ol {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  background: #f8f5eb;
  counter-reset: number 0;
  margin-block: 40px;
}

.l-single__content>ol li {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.l-single__content>ol li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  color: #a17d0b;
  position: absolute;
  top: 0;
  left: 0;
}

.l-single__content .wp-block-image .wp-element-caption {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

.l-single__content>figure {
  margin-block: 40px;
}

.l-single__content>figure table {
  border: 1px solid #e7e7e7;
  border-collapse: collapse;
}

.l-single__content>figure table tbody tr td {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #e7e7e7;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  padding: 8px 16px;
}

.l-single__content>figure table tbody tr td:first-child {
  color: #fff;
  background: #a17d0b;
  -webkit-flex: initial;
  -ms-flex: initial;
  flex: initial;
  width: 30%;
  font-weight: 700;
}

.l-single__content a {
  color: #a17d0b;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
}

.l-single__related {
  margin-top: 80px;
}

.l-single__related .c-btn {
  margin-top: 48px;
}

.l-single__related-voices {
  background-color: #edc02d;
  padding: 90px 0 190px;
}

.single-voices .l-page,
.single-column .l-page {
  padding-top: 160px;
}

.p-404 {
  padding-bottom: 120px;
}

.p-404__text {
  text-align: center;
}

.p-404__text__title {
  font-family: "Dela Gothic One",sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}

.p-404__back {
  text-align: center;
  margin-top: 64px;
}

.p-about__head {
  background: #edc02d;
  padding: 90px 0 120px;
}

.p-about__head__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 48px;
  gap: 16px;
}

.p-about__head__title__icon {
  display: block;
  width: 78px;
  height: auto;
}

.p-about__head__title__text {
  display: block;
  width: 785px;
  max-width: 100%;
  height: auto;
}

.p-about__head__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.p-about__head__item {
  position: relative;
  width: 100%;
  background-color: #f8f5eb;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  padding: 40px;
  gap: 40px;
}

.p-about__head__item__img {
  width: 50%;
  max-width: 470px;
}

.p-about__head__item__img>img {
  display: block;
  width: 100%;
  height: auto;
}

.p-about__head__item__text {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-about__head__item__text__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.p-about__head__item__text__title>img {
  display: block;
  width: 35px;
  margin-top: -4px;
}

.p-about__head__item__text__title>p {
  font-family: "Dela Gothic One",sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.p-about__head__item__text__title>p>span {
  color: #e28d00;
}

.p-about__head__item__text__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #dfdacd;
  margin-top: 24px;
}

.p-about__head__item__text__list>li {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  padding-left: 35px;
}

.p-about__head__item__text__list>li::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 17px;
  height: 10px;
  border-left: 3px solid #edc02d;
  border-bottom: 3px solid #edc02d;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p-about__head__item__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a69c82;
  position: absolute;
}

.p-about__head__item__dot.top-l {
  top: 6px;
  left: 8px;
}

.p-about__head__item__dot.top-r {
  top: 6px;
  right: 8px;
}

.p-about__head__item__dot.bottom-l {
  bottom: 9px;
  left: 8px;
}

.p-about__head__item__dot.bottom-r {
  bottom: 9px;
  right: 8px;
}

.p-about__head__item:nth-child(even) {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-about__bg-gray {
  position: relative;
  z-index: 1250;
  background-color: #f3f3f3;
  background-image: url(../images/top/bg_grid.svg);
  background-repeat: repeat-y;
  background-size: cover;
  padding: 100px 0 250px;
}

.p-about__howto {
  margin-bottom: 80px;
}

.p-about__howto__content {
  margin-top: 40px;
}

.p-about__howto__content__img {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-about__howto__content__img>img {
  display: block;
  width: 100%;
  height: auto;
}

.p-about__howto__inner {
  display: contents;
}

.p-about__solution__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px 0;
  margin-top: 24px;
}

.p-about__solution__list__item {
  width: calc(33.3333333333% - 10px);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 16px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  border-radius: 10px;
  border: 2px solid #150000;
  background-color: #fff;
  box-shadow: 5px 5px 0px 0px #150000;
  transition: .3s;
}

.p-about__solution__list__item__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.p-about__solution__list__item__head>p {
  color: #150000;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.p-about__solution__list__item__head>span {
  display: block;
  width: 46px;
  height: 22px;
  border-radius: 50px;
  background: #150000;
  position: relative;
  transition: .3s;
}

.p-about__solution__list__item__head>span::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.p-about__solution__list__item__cat {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.p-about__solution__list__item__cat>li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 8px 3px 8px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #edc02d;
  font-size: 12px;
  font-weight: 700;
}

.p-about__solution__list__item:hover {
  box-shadow: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.p-about__solution__list__item:hover .p-about__solution__list__item__head>span {
  background-color: #edc02d;
}

.p-about__solution__list__item:hover .p-about__solution__list__item__head>span::after {
  background-image: url(../images/common/icon_arrow_black.svg);
}

.p-about__solution__list::after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 10px);
}

.p-column {
  padding: 70px 0 280px;
}

.p-column__cat {
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
}

.p-column__cat select {
  padding: 12px 75px 12px 20px;
  border-radius: 4px;
  border: 2px solid #e7e7e7;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  word-break: keep-all;
}

.p-column__cat::after {
  content: "";
  background-color: #150000;
  width: 8px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-column__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.p-column__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #d8d8d8;
  padding-block: 24px;
}

.p-column__item:first-child {
  border-top: 1px solid #d8d8d8;
}

.p-column__item__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.p-column__item__link__wrap__text {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.p-column__item__link__img {
  aspect-ratio: 250/140;
  overflow: hidden;
  max-width: 250px;
  border-radius: 4px;
  border: 1px solid #dbdbdb;
}

.p-column__item__link__img>img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-column__item__link__date {
  color: #989898;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.p-column__item__link__cat {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.p-column__item__link__cat>li {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  background-color: #150000;
  padding: 4px 10px;
}

.p-column__item__link__title {
  color: var(--black, #150000);
  font-family: "Noto Sans JP",sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.blog-card {
  word-wrap: break-word;
  max-width: 100%;
  border: 1px solid #dcdcde;
  padding: 15px;
  margin-bottom: 30px;
}

.blog-card-column-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-card a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.blog-card-thumbnail {
  width: 40%;
  overflow: hidden;
}

.blog-card-thumbnail>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.blog-card-title {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.4;
  color: #150000;
}

.blog-card-title:hover {
  text-decoration: underline;
}

.blog-card-excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #8c8f94;
}

.blog-card-works .blog-card-thumbnail {
  aspect-ratio: 25/14;
}

.blog-card-column .blog-card-thumbnail {
  aspect-ratio: 25/14;
}

.blog-card-2column {
  border: 1px solid #dcdcde;
  padding: 15px;
  width: calc(50% - 7.5px);
}

.blog-card-2column a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.blog-card-2column-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: #150000;
  margin-bottom: 15px;
  text-decoration: none;
}

.blog-card-2column-title:hover {
  text-decoration: underline;
}

.blog-card-2column-excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #8c8f94;
  text-decoration: none;
}

.blog-card-2column-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-2column-thumbnail>img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  display: block;
}

.blog-card-3column-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-card-3column {
  border: 1px solid #dcdcde;
  padding: 15px;
  width: calc(33.3333333333% - 10px);
}

.blog-card-3column a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.blog-card-3column-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #150000;
  margin-bottom: 10px;
  text-decoration: none;
}

.blog-card-3column-title:hover {
  text-decoration: underline;
}

.blog-card-3column-excerpt {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #8c8f94;
  text-decoration: none;
}

.blog-card-3column-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-3column-thumbnail>img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  display: block;
}

.wp-block-embed-twitter {
  width: 40%;
}

.p-company {
  padding: 80px 0 226px;
}

.p-company__table {
  border-radius: 4px;
  border: 1px solid #150000;
  overflow: hidden;
}

.p-company__table__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #150000;
}

.p-company__table__item__head {
  background: #edc02d;
  padding: 24px 20px;
  border-right: 1px solid #150000;
  width: 200px;
}

.p-company__table__item__head>p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.p-company__table__item__content {
  padding: 24px 20px;
  background-color: #fff;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-company__table__item__content>p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.p-company__table__item__content>p>span {
  display: inline-block;
  color: #6a6a6a;
  font-size: 12px;
  margin-left: 10px;
}

.p-company__table__item:last-child {
  border: none;
}

.p-company__table__item__map {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  width: 148px;
  height: 38px;
  padding: 0 22px 0 16px;
  border-radius: 42px;
  border: 1px solid #150000;
  background: #fff;
  font-family: "Work Sans",sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .28px;
  margin-left: 24px;
  transition: .3s;
}

.p-company__table__item__map:hover {
  opacity: .7;
}

.p-contact {
  padding: 80px 0 120px;
}

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

.p-contact__thanks__title {
  font-family: "Dela Gothic One",sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}

.p-contact__thanks__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 70px;
}

.p-contact__thanks__link {
  display: block;
  width: 870px;
  max-width: 100%;
  margin: 0 auto 40px;
  box-shadow: 0px 4px 40px 0px rgba(103,91,50,.05);
  transition: .3s;
}

.p-contact__thanks__link:hover {
  opacity: .7;
}

.p-contact__thanks__link>img {
  display: block;
  width: 100%;
  height: auto;
}

.p-contact__head {
  margin-bottom: 120px;
}

.p-contact__head__img {
  margin-bottom: 30px;
}

.p-contact__head__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-contact__head__img:last-child {
  margin-bottom: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.p-flow__anker-wrap {
  position: absolute;
  top: -32px;
  left: calc(50% - clamp(31.25rem,24.148rem + 11.36vw,34.375rem));
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.p-flow__step {
  position: relative;
  background: #edc02d;
  padding: 120px 0;
}

.p-flow__step__desc {
  margin: 16px 0 40px;
}

.p-flow__step__items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 64px 40px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-radius: 8px;
  background: #f3cc50;
}

.p-flow__step__head {
  width: 100%;
  padding-bottom: 48px;
  border-bottom: 1px solid #e6b519;
}

.p-flow__step__head__text {
  width: 545px;
  margin: 0 auto 24px;
}

.p-flow__step__head__text>img {
  display: block;
  width: 100%;
  height: auto;
}

.p-flow__step__head__content {
  max-width: 700px;
  margin: 0 auto;
}

.p-flow__step__head__content>img {
  display: block;
  width: 100%;
  height: auto;
}

.p-flow__step__item {
  width: 100%;
  padding-bottom: 48px;
  border-bottom: 1px solid #e6b519;
}

.p-flow__step__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-flow__step__item__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.p-flow__step__item__title>img {
  display: block;
  width: 35px;
  height: auto;
}

.p-flow__step__item__title>p {
  font-family: "Dela Gothic One",sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.p-flow__step__item__subtitle {
  text-align: center;
  margin-bottom: 32px;
}

.p-flow__step__item__subtitle__wrap {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-right: 16px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border: 2px solid #150000;
  background: #fff;
  min-height: 30px;
}

.p-flow__step__item__subtitle__wrap span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  background: #edc02d;
  padding: 8px 4px;
}

.p-flow__step__item__subtitle__wrap p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.p-flow__step__item__content {
  max-width: 700px;
  margin: 0 auto 32px;
}

.p-flow__step__item__content>img {
  display: block;
  width: 100%;
  height: auto;
}

.p-flow__step__item__check {
  width: 700px;
  max-width: 100%;
  padding: 24px 32px;
  border-radius: 10px;
  background: #f8f5eb;
  margin: 0 auto;
  box-shadow: 0px 4px 40px 0px rgba(103,91,50,.05);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.p-flow__step__item__check__title {
  font-family: "Dela Gothic One",sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.p-flow__step__item__check__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.p-flow__step__item__check__list>li {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  padding-left: 35px;
}

.p-flow__step__item__check__list>li::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 17px;
  height: 10px;
  border-left: 3px solid #edc02d;
  border-bottom: 3px solid #edc02d;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p-flow__step__item__check__list>li>span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 4px;
}

.p-flow__step__item__check__desc {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 16px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid #dfdacd;
}

.p-flow__step__item__check__desc>span {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  padding-left: 32px;
}

.p-flow__step__item__check__desc>span::before {
  content: "";
  background-image: url(../images/flow/alert.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 17.655px;
}

.p-flow__qa {
  background-color: #f3f3f3;
  padding: 100px 0 250px;
}

.p-flow__qa .c-qa {
  margin-top: 40px;
}

.p-promotion__bg-yellow {
  background-color: #edc02d;
  padding-top: 30px;
  padding-bottom: 120px;
}

.p-promotion__heading-wrap {
  position: relative;
  z-index: 0;
}

.p-promotion__heading {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  background: #f8f5eb;
  padding: 24px 40px;
  position: relative;
  z-index: 2;
  position: relative;
}

.p-promotion__heading__item__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a69c82;
  position: absolute;
}

.p-promotion__heading__item__dot.top-l {
  top: 10px;
  left: 10px;
}

.p-promotion__heading__item__dot.top-r {
  top: 10px;
  right: 10px;
}

.p-promotion__heading__item__dot.bottom-l {
  bottom: 10px;
  left: 10px;
}

.p-promotion__heading__item__dot.bottom-r {
  bottom: 10px;
  right: 10px;
}

.p-promotion__heading p {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #150000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  border-left: 1px dotted #150000;
  padding: 10px 0 10px;
  padding-right: 12px;
  padding-left: 32px;
  margin-left: 32px;
}

.p-promotion__heading-bg {
  position: absolute;
  bottom: -8px;
  right: -2px;
}

.p-promotion__tab-toggle {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-top: 71px;
  gap: 4px;
}

.p-promotion__tab-toggle--col3 {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.p-promotion__tab-toggle-btn {
  border-radius: 4px 4px 0px 0px;
  border-top: 2px solid #150000;
  border-right: 2px solid #150000;
  border-left: 2px solid #150000;
  height: 66px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f8f5eb;
  cursor: pointer;
}

.p-promotion__tab-toggle-btn p {
  color: #150000;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.p-promotion__tab-toggle-btn.active {
  background-color: #150000;
}

.p-promotion__tab-toggle-btn.active p {
  color: #fff;
}

.p-promotion__tab {
  padding: 38px 38px 78px 38px;
  border-radius: 0px 0px 4px 4px;
  border: 2px solid #150000;
  background: #fff;
}

.p-promotion__tab--notab {
  margin-top: 71px;
}

.p-promotion__tab-sample p {
  color: #150000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 8px;
}

.p-promotion__tab-sample-col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.p-promotion__tab-sample-col3.col2-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 24px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-promotion__tab-sample-col3.col2-flex>img {
  max-width: 321px;
}

.p-promotion__tab-point-title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-promotion__tab-point-col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.p-promotion__tab-effect-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 16px 0 64px;
}

.p-promotion__tab-effect-grid-item {
  height: 61px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 13px;
  padding-left: 20px;
  border-radius: 4px;
  border: 1px solid #150000;
  background: #fbf7e6;
}

.p-promotion__tab-effect-grid-item img {
  width: 15px;
}

.p-promotion__tab-effect-grid-item p {
  color: #150000;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.p-promotion__tab-point-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 4px;
  background: #edc02d;
  padding: 8px 20px 16px 20px;
  box-shadow: 0px 4px 16px 0px rgba(255,255,255,.6) inset;
}

.p-promotion__tab-point-item h3 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-promotion__tab-point-item h3.h60 {
  height: 60px;
  gap: 7px;
}

.p-promotion__tab-point-item h3>span {
  color: #150000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.p-promotion__tab-point-item h3>img {
  width: 25px;
  padding-bottom: 11px;
}

.p-promotion__purpose {
  margin-top: 65px;
}

.p-promotion__purpose-flex {
  margin-top: 25px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
}

.p-promotion__purpose-flex.heading {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-promotion__purpose-flex-item {
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid #150000;
  padding: 20px;
  box-shadow: 2px 2px 0 0 #150000;
  position: relative;
  transition: .3s;
  max-width: 542px;
  width: 100%;
}

.p-promotion__purpose-flex-item__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.p-promotion__purpose-flex-item__inner img {
  width: 180px;
}

.p-promotion__purpose-flex-item__inner a:hover img {
  -webkit-filter: initial;
  filter: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.p-promotion__purpose-flex-item__arrow {
  display: block;
  width: 46px;
  height: 22px;
  border-radius: 50px;
  background: #150000;
  position: absolute;
  bottom: 11px;
  right: 12px;
}

.p-promotion__purpose-flex-item__arrow::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.p-promotion__purpose-flex-item__text {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 292px;
}

.p-promotion__purpose-flex-item__text span {
  font-size: 24px;
  font-weight: 700;
}

.p-promotion__purpose-flex-item__text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
}

.p-promotion__purpose-flex-item:hover {
  box-shadow: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.p-promotion__purpose-flex-item:hover .p-promotion__purpose-flex-item__arrow {
  background-color: #edc02d;
}

.p-promotion__purpose-flex-item:hover .p-promotion__purpose-flex-item__arrow::after {
  background-image: url(../images/common/icon_arrow_black.svg);
}

.p-promotion__tab-works {
  margin-top: 72px;
}

.p-promotion__tab-works>.c-title {
  margin-bottom: 34px;
}

.p-promotion__tab-works>.c-btn {
  margin-top: -10px;
}

.p-promotion__tab-works--private {
  margin-top: 30px !important;
}

.p-promotion__purpose {
  margin-top: 65px;
}

.p-promotion__purpose-grid {
  margin-top: 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 6px;
}

.p-promotion__purpose-grid-item a {
  display: block;
}

.p-promotion__purpose-grid-item a img {
  -webkit-filter: drop-shadow(2px 2px 0px #150000);
  filter: drop-shadow(2px 2px 0px #150000);
  transition: .3s;
}

.p-promotion__purpose-grid-item a:hover img {
  -webkit-filter: initial;
  filter: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.p-promotion__bg-white {
  background-color: #fff;
}

.p-promotion__channel {
  padding: 120px 0 92px;
}

.p-promotion__channel-grid {
  margin-top: 22px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.p-promotion__channel-grid.grid-3col {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.p-promotion__cv {
  background: linear-gradient(to bottom, #fff 50%, transparent 50%);
  padding: 0 20px;
  position: relative;
  z-index: 1300;
  top: 148px;
  margin-top: -148px;
}

.p-promotion__bg-grey {
  position: relative;
  z-index: 1250;
  background-color: #f3f3f3;
  background-image: url(../images/top/bg_grid.svg);
  background-repeat: repeat;
  background-size: 100%;
  background-position: center top;
  padding-top: 268px;
  padding-bottom: 270px;
}

.p-promotion__step-wrap {
  border-radius: 8px;
  background: #f8f5eb;
  padding: 36px;
  margin-top: 24px;
  position: relative;
}

.p-promotion__step-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a69c82;
  position: absolute;
}

.p-promotion__step-dot.step-dot-top-r {
  top: 6px;
  right: 8px;
}

.p-promotion__step-dot.step-dot-top-l {
  top: 6px;
  left: 8px;
}

.p-promotion__step-dot.step-dot-bottom-r {
  bottom: 9px;
  right: 8px;
}

.p-promotion__step-dot.step-dot-bottom-l {
  bottom: 9px;
  left: 8px;
}

.p-promotion__step-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #e5e0d2;
  margin-bottom: 31px;
  padding-bottom: 31px;
}

.p-promotion__step-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.p-promotion__step-item p {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #150000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
}

.p-promotion__step-heading {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  width: 240px;
}

.p-promotion__step-heading>img {
  width: 48px;
}

.p-promotion__step-heading h3 {
  color: #150000;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.p-promotion__step-heading h3 span {
  display: block;
  color: #a17d0b;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.p-promotion__qa {
  margin-top: 90px;
}

.p-promotion__qa .c-title {
  margin-bottom: 32px;
}

.p-risk-training__head {
  background-color: #edc02d;
  padding-block: 120px;
}

.p-risk-training__head__title {
  margin-bottom: 32px;
}

.p-risk-training__head__title span {
  display: block;
  text-align: center;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 4px;
}

.p-risk-training__head__title img {
  display: block;
  width: 525px;
  margin: 0 auto;
}

.p-risk-training__head__content {
  margin-bottom: 32px;
}

.p-risk-training__head__content__inner {
  background-color: #f3cc50;
  padding-block: 40px;
  border-radius: 8px;
}

.p-risk-training__head__content__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  border: 2px solid #150000;
  max-width: 700px;
  margin: 0 auto;
}

.p-risk-training__head__content__wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.p-risk-training__head__content__wrap img:not(:last-child) {
  margin-bottom: -4px;
}

.p-risk-training__head__bottom__item {
  position: relative;
  width: 100%;
  background-color: #f8f5eb;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  padding: 40px;
  gap: 32px;
}

.p-risk-training__head__bottom__item__title span {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 10px;
}

.p-risk-training__head__bottom__item__title p {
  text-align: center;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
}

.p-risk-training__head__bottom__item__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 37px;
  position: relative;
  left: -10px;
}

.p-risk-training__head__bottom__item__content__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.p-risk-training__head__bottom__item__content__item img {
  display: block;
  height: auto;
}

.p-risk-training__head__bottom__item__content__item p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.p-risk-training__head__bottom__item__content__item.whomor img {
  width: 242px;
}

.p-risk-training__head__bottom__item__content__item.eltes img {
  width: 188px;
}

.p-risk-training__head__bottom__item__text {
  text-align: center;
}

.p-risk-training__head__bottom__item__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a69c82;
  position: absolute;
}

.p-risk-training__head__bottom__item__dot.top-l {
  top: 6px;
  left: 8px;
}

.p-risk-training__head__bottom__item__dot.top-r {
  top: 6px;
  right: 8px;
}

.p-risk-training__head__bottom__item__dot.bottom-l {
  bottom: 9px;
  left: 8px;
}

.p-risk-training__head__bottom__item__dot.bottom-r {
  bottom: 9px;
  right: 8px;
}

.p-risk-training__head__bottom__item:nth-child(even) {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-risk-training__riskcomic {
  background-image: url(../images/risk-training/riskcomic_bg.webp);
  background-size: 100%;
  background-repeat: repeat;
  background-color: #fff;
  padding-block: 120px;
}

.p-risk-training__riskcomic__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
}

.p-risk-training__riskcomic__title p {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.46;
}

.p-risk-training__riskcomic__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 80px;
  margin-top: 56px;
}

.p-risk-training__riskcomic__list__item {
  width: calc(33.3333333333% - 54px);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  cursor: pointer;
}

.p-risk-training__riskcomic__list__item.is-active {
  cursor: default;
}

.p-risk-training__riskcomic__list__item:hover .p-risk-training__riskcomic__list__item__img {
  opacity: .7;
}

.p-risk-training__riskcomic__list__item__img {
  transition: .3s;
}

.p-risk-training__riskcomic__list__item__img img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 50px 0 rgba(103,91,50,.2);
}

.p-risk-training__riskcomic__list__item__text {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.p-risk-training__riskcomic__list__item__text p {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.p-risk-training__riskcomic__list__item__text span {
  display: block;
  width: 46px;
  height: 22px;
  border-radius: 50px;
  background: #150000;
  margin-top: 10px;
  position: relative;
  margin-left: auto;
}

.p-risk-training__riskcomic__list__item__text span::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.p-risk-training__riskcomic__list__item:hover .p-risk-training__riskcomic__list__item__text>span {
  background-color: #edc02d;
}

.p-risk-training__riskcomic__list__item:hover .p-risk-training__riskcomic__list__item__text>span::after {
  background-image: url(../images/common/icon_arrow_black.svg);
}

.p-risk-training__riskcomic__list__item__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18,18,18,.7);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.p-risk-training__riskcomic__list__item__modal__inner {
  width: 1100px;
  max-width: 90vw;
  height: 81%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #f8f5eb;
  border-radius: 4px;
  padding: 48px 78px;
  overflow-y: auto;
}

.p-risk-training__riskcomic__list__item__modal__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.8;
}

.p-risk-training__riskcomic__list__item__modal__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: min(4vw,56px);
  margin-bottom: 18px;
}

.p-risk-training__riskcomic__list__item__modal__content__video video {
  aspect-ratio: 16/9;
  width: 500px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-risk-training__riskcomic__list__item__modal__content__video__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.p-risk-training__riskcomic__list__item__modal__content__video__title img {
  display: block;
  width: 24px;
  height: auto;
  position: relative;
  top: -4px;
}

.p-risk-training__riskcomic__list__item__modal__content__video__title p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.p-risk-training__riskcomic__list__item__modal__content__img {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 60px;
}

.p-risk-training__riskcomic__list__item__modal__content__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-risk-training__riskcomic__list__item__modal__content__text span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 24px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px 4px 0 0;
  background: #150000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border-radius: 4px 4px 0 0;
  width: 80px;
}

.p-risk-training__riskcomic__list__item__modal__content__text p {
  padding: 16px 24px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.p-risk-training__riskcomic__list__item__modal__content__close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background-color: #000;
  border-radius: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: .3s;
}

.p-risk-training__riskcomic__list__item__modal__content__close svg {
  width: 26px;
  height: 26px;
}

.p-risk-training__riskcomic__list__item__modal__content__close:hover {
  opacity: .7;
}

.p-risk-training__riskcomic__list__item__modal.is-active {
  opacity: 1;
  visibility: visible;
}

.p-risk-training__case {
  padding-block: 120px;
}

.p-risk-training__case__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 72px;
  margin-top: 32px;
}

.p-risk-training__case__content__img {
  width: 43%;
  max-width: 470px;
}

.p-risk-training__case__content__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-risk-training__case__content__text {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-risk-training__case__content__text__desc {
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 45px;
}

.p-risk-training__case__content__text__btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.p-risk-training__case__content__text__btn__link {
  width: 250px;
  margin: 0;
}

.p-risk-training__case__content__text__btn>p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.p-risk-training__service {
  padding-block: 120px;
  background-color: #fff;
}

.p-risk-training__service__table {
  border-radius: 4px;
  border: 1px solid #150000;
  overflow: hidden;
  margin-top: 20px;
}

.p-risk-training__service__table__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #150000;
}

.p-risk-training__service__table__item__head {
  background: #edc02d;
  padding: 24px 20px;
  border-right: 1px solid #150000;
  width: 200px;
}

.p-risk-training__service__table__item__head>p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.p-risk-training__service__table__item__content {
  padding: 24px 20px;
  background-color: #fff;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-risk-training__service__table__item__content>p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.p-risk-training__service__table__item__content>p>span {
  display: inline-block;
  color: #6a6a6a;
  font-size: 12px;
  margin-left: 10px;
}

.p-risk-training__service__table__item:last-child {
  border: none;
}

.p-risk-training__service__table__item__map {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  width: 148px;
  height: 38px;
  padding: 0 22px 0 16px;
  border-radius: 42px;
  border: 1px solid #150000;
  background: #fff;
  font-family: "Work Sans",sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .28px;
  margin-left: 24px;
  transition: .3s;
}

.p-risk-training__service__table__item__map:hover {
  opacity: .7;
}

.p-risk-training__form {
  padding-block: 120px;
}

.p-risk-training__form__content {
  margin-top: 54px;
}

.p-service__bg-yellow {
  background-color: #edc02d;
  padding-top: 30px;
  padding-bottom: 266px;
}

.p-service__heading-wrap {
  position: relative;
  z-index: 0;
}

.p-service__heading {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  background: #f8f5eb;
  padding: 24px 40px;
  position: relative;
  z-index: 2;
  position: relative;
}

.p-service__heading__item__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a69c82;
  position: absolute;
}

.p-service__heading__item__dot.top-l {
  top: 10px;
  left: 10px;
}

.p-service__heading__item__dot.top-r {
  top: 10px;
  right: 10px;
}

.p-service__heading__item__dot.bottom-l {
  bottom: 10px;
  left: 10px;
}

.p-service__heading__item__dot.bottom-r {
  bottom: 10px;
  right: 10px;
}

.p-service__heading p {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #150000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  border-left: 1px dotted #150000;
  padding: 10px 0 10px;
  padding-right: 12px;
  padding-left: 32px;
  margin-left: 32px;
}

.p-service__heading-bg {
  position: absolute;
  bottom: -8px;
  right: -2px;
}

.p-service__tab-toggle {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-top: 71px;
  gap: 4px;
}

.p-service__tab-toggle--col3 {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.p-service__tab-toggle-btn {
  border-radius: 4px 4px 0px 0px;
  border-top: 2px solid #150000;
  border-right: 2px solid #150000;
  border-left: 2px solid #150000;
  height: 66px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f8f5eb;
  cursor: pointer;
}

.p-service__tab-toggle-btn p {
  color: #150000;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.p-service__tab-toggle-btn.active {
  background-color: #150000;
}

.p-service__tab-toggle-btn.active p {
  color: #fff;
}

.p-service__tab {
  padding: 38px 38px 78px 38px;
  border-radius: 0px 0px 4px 4px;
  border: 2px solid #150000;
  background: #fff;
}

.p-service__tab--notab {
  margin-top: 71px;
}

.p-service__tab-sample p {
  color: #150000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 8px;
}

.p-service__tab-sample-col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.p-service__tab-sample-col3.col2-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 24px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-service__tab-sample-col3.col2-flex>img {
  max-width: 321px;
}

.p-service__tab-point-title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-service__tab-point-col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.p-service__tab-effect-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 16px 0 64px;
}

.p-service__tab-effect-grid-item {
  height: 61px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 13px;
  padding-left: 20px;
  border-radius: 4px;
  border: 1px solid #150000;
  background: #fbf7e6;
}

.p-service__tab-effect-grid-item img {
  width: 15px;
}

.p-service__tab-effect-grid-item p {
  color: #150000;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.p-service__tab-point-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 4px;
  background: #edc02d;
  padding: 8px 20px 16px 20px;
  box-shadow: 0px 4px 16px 0px rgba(255,255,255,.6) inset;
}

.p-service__tab-point-item h3 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-service__tab-point-item h3.h60 {
  height: 60px;
  gap: 7px;
}

.p-service__tab-point-item h3>span {
  color: #150000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.p-service__tab-point-item h3>img {
  width: 25px;
}

.p-service__purpose {
  margin-top: 65px;
}

.p-service__purpose-flex {
  margin-top: 25px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.p-service__purpose-flex.heading {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-service__purpose-flex-item {
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid #150000;
  padding: 20px;
  box-shadow: 2px 2px 0 0 #150000;
  transition: .3s;
  width: 100%;
}

.p-service__purpose-flex-item__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-service__purpose-flex-item__inner img {
  width: 311px;
}

.p-service__purpose-flex-item__inner a:hover img {
  -webkit-filter: initial;
  filter: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.p-service__purpose-flex-item__arrow {
  display: block;
  width: 46px;
  height: 22px;
  border-radius: 50px;
  background: #150000;
  position: relative;
}

.p-service__purpose-flex-item__arrow::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.p-service__purpose-flex-item__text {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  max-width: 603px;
}

.p-service__purpose-flex-item__text span {
  font-family: "Dela Gothic One",sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.p-service__purpose-flex-item__text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
}

.p-service__purpose-flex-item:hover {
  box-shadow: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.p-service__purpose-flex-item:hover .p-service__purpose-flex-item__arrow {
  background-color: #edc02d;
}

.p-service__purpose-flex-item:hover .p-service__purpose-flex-item__arrow::after {
  background-image: url(../images/common/icon_arrow_black.svg);
}

.p-service__tab-works {
  margin-top: 72px;
}

.p-service__tab-works>.c-title {
  margin-bottom: 34px;
}

.p-service__tab-works>.c-btn {
  margin-top: -10px;
}

.p-service__tab-works--private {
  margin-top: 30px !important;
}

.p-service__purpose {
  margin-top: 65px;
}

.p-service__purpose-grid {
  margin-top: 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 6px;
}

.p-service__purpose-grid-item a {
  display: block;
}

.p-service__purpose-grid-item a img {
  -webkit-filter: drop-shadow(2px 2px 0px #150000);
  filter: drop-shadow(2px 2px 0px #150000);
  transition: .3s;
}

.p-service__purpose-grid-item a:hover img {
  -webkit-filter: initial;
  filter: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.p-service__bg-white {
  background-color: #fff;
}

.p-service__channel {
  padding: 120px 0 92px;
}

.p-service__channel-grid {
  margin-top: 22px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.p-service__channel-grid.grid-3col {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.p-service__cv {
  background: linear-gradient(to bottom, #fff 50%, transparent 50%);
  padding: 0 20px;
  position: relative;
  z-index: 1300;
  top: 148px;
  margin-top: -148px;
}

.p-service__bg-grey {
  position: relative;
  z-index: 1250;
  background-color: #f3f3f3;
  background-image: url(../images/top/bg_grid.svg);
  background-repeat: repeat;
  background-size: 100%;
  background-position: center top;
  padding-top: 268px;
  padding-bottom: 270px;
}

.p-service__step-wrap {
  border-radius: 8px;
  background: #f8f5eb;
  padding: 36px;
  margin-top: 24px;
  position: relative;
}

.p-service__step-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a69c82;
  position: absolute;
}

.p-service__step-dot.step-dot-top-r {
  top: 6px;
  right: 8px;
}

.p-service__step-dot.step-dot-top-l {
  top: 6px;
  left: 8px;
}

.p-service__step-dot.step-dot-bottom-r {
  bottom: 9px;
  right: 8px;
}

.p-service__step-dot.step-dot-bottom-l {
  bottom: 9px;
  left: 8px;
}

.p-service__step-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #e5e0d2;
  margin-bottom: 31px;
  padding-bottom: 31px;
}

.p-service__step-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.p-service__step-item p {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #150000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
}

.p-service__step-heading {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  width: 240px;
}

.p-service__step-heading>img {
  width: 48px;
}

.p-service__step-heading h3 {
  color: #150000;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.p-service__step-heading h3 span {
  display: block;
  color: #a17d0b;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.p-service__qa {
  margin-top: 90px;
}

.p-service__qa .c-title {
  margin-bottom: 32px;
}

.top main {
  padding-top: 120px;
}

.p-top__fv {
  margin: 102px 0 60px;
}

.p-top__fv__arrow {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.p-top__fv__arrow__item {
  display: block;
  width: 68px;
  height: 32px;
  border-radius: 80px;
  background: #a17d0b;
  position: relative;
  cursor: pointer;
  transition: .3s;
}

.p-top__fv__arrow__item::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.p-top__fv__arrow__item.prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}

.p-top__fv__arrow__item.left {
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-top__fv__arrow__item.right {
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-top__fv__slider {
  position: relative;
  margin: 0 auto;
  margin-bottom: 80px;
}

.p-top__fv__slider__wrap {
  position: relative;
}

.p-top__fv__slider .slick-list {
  overflow: visible;
}

.p-top__fv__slider .slick-track {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-top__fv__slider__item {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1019607843);
  width: calc(20% - 16px) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  transition: box-shadow .4s ease,margin .4s ease,-webkit-transform .4s ease;
  transition: transform .4s ease,box-shadow .4s ease,margin .4s ease;
  transition: transform .4s ease,box-shadow .4s ease,margin .4s ease,-webkit-transform .4s ease;
  opacity: 1;
  margin: 0 8px;
  cursor: pointer;
}

.p-top__fv__slider__item:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  box-shadow: 0 4px 50px 0 rgba(103,91,50,.2);
  z-index: 10;
  margin: 0 30px;
}

.p-top__fv__slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.p-top__fv__slider__item__cat {
  position: absolute;
  top: 14px;
}

.p-top__fv__slider__item__cat__text {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: min(2vw,35px);
  padding: 3.6px 9.6px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #150000;
  background: #150000;
  font-size: min(1vw,14.4px);
  color: #fff;
  font-weight: 700;
}

.p-top__fv__slider__item__title {
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 10;
}

.p-top__fv__slider__item__title__text {
  padding: 3.6px 9.6px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #150000;
  font-size: min(1.3vw,21.6px);
  font-weight: 700;
  background: #fff;
  line-height: 1.3;
  border: .538px solid #150000;
}

.p-top__fv__slider__item__title__text>span {
  color: #e28d00;
}

.p-top__fv__slider__item.slick-active {
  opacity: 1;
}

.p-top__fv__slider__item.slick-current {
  position: relative;
  z-index: 1200;
  opacity: 1;
}

.p-top__corporation {
  position: relative;
  padding: 60px 0 60px;
}

.p-top__corporation__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  width: 1400px;
  max-width: 100%;
  padding-inline: 20px;
  margin: 0 auto;
}

.p-top__corporation__list>li {
  width: calc(12.5% - 14px);
  max-width: 156px;
  border-radius: 3px;
}

.p-top__corporation__list>li img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__corporation__loop {
  display: none;
}

.p-top__corporation__loop__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 455%;
  -webkit-animation: slide 20s linear infinite;
  animation: slide 20s linear infinite;
}

.p-top__corporation__loop__list.second {
  width: 398%;
  margin-top: 6px;
  -webkit-animation: slide 18.2s linear infinite;
  animation: slide 18.2s linear infinite;
}

.p-top__corporation__loop__item>img {
  display: block;
  object-fit: cover;
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.p-top__head {
  position: relative;
  padding: 11px 0 0;
  background-image: url("../images/top/fv_bg.svg");
  background-repeat: no-repeat;
  background-position: center -4px;
  background-size: 100%;
}

.p-top__head__wrap {
  position: relative;
  z-index: 5;
}

.p-top__head__img {
  display: block;
  width: 676px;
  margin: 0 auto 52px;
}

.p-top__head__copy {
  display: block;
  width: 815px;
  margin: 0 auto;
}

.p-top__head::before {
  content: "";
  background-color: #edc02d;
  width: 200vw;
  height: 166vw;
  border-radius: 50% 50% 0 0;
  position: absolute;
  top: 149px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-top__works {
  position: relative;
  background-color: #edc02d;
  padding: 56px 0 100px;
}

.p-top__works__content__cat {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
  margin: 41px 0 32px;
}

.p-top__works__content__cat>li>a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 52px;
  padding: 0 44px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 2px solid #150000;
  background: #fff;
  box-shadow: 2px 2px 0px 0px #150000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: .3s;
}

.p-top__works__content__cat>li>a:hover {
  box-shadow: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.p-top__works__img {
  display: block;
  position: absolute;
}

.p-top__works__img.img01 {
  width: 119px;
  top: -94px;
  right: 0;
}

.p-top__works__img.img02 {
  width: 96px;
  top: 25%;
  left: 30px;
}

.p-top__works__img.img03 {
  width: 180px;
  bottom: 20px;
  right: 5px;
}

.p-top__cv {
  position: relative;
  background: linear-gradient(to bottom, #edc02d 50%, transparent 50%);
  position: relative;
  z-index: 1300;
  top: 148px;
  margin-top: -148px;
}

.p-top__bg-gray {
  position: relative;
  z-index: 1250;
  background-color: #f3f3f3;
  background-image: url(../images/top/bg_grid.svg);
  background-repeat: repeat;
  background-size: 100%;
  background-position: center top;
}

.p-top__reason {
  padding-top: 268px;
  margin-bottom: 80px;
}

.p-top__reason__head {
  height: 320px;
  position: relative;
  margin-top: 80px;
}

.p-top__reason__head__deco-l {
  display: block;
  position: absolute;
  top: 63px;
  left: 17px;
  width: 251px;
}

.p-top__reason__head__deco-r {
  display: block;
  position: absolute;
  top: 63px;
  right: 12px;
  width: 251px;
}

.p-top__reason__head__chara {
  display: block;
  position: absolute;
  width: 352px;
  left: 50%;
  bottom: -28px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-top__reason__head__list {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.p-top__reason__head__list__item {
  width: 222px;
  height: 165px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-filter: drop-shadow(0 4px 10px rgba(103, 91, 50, 0.1));
  filter: drop-shadow(0 4px 10px rgba(103, 91, 50, 0.1));
}

.p-top__reason__head__list__item:nth-child(1) {
  background-image: url(../images/top/reason_bg01.webp);
}

.p-top__reason__head__list__item:nth-child(2) {
  background-image: url(../images/top/reason_bg02.webp);
  margin-top: 40px;
}

.p-top__reason__head__list__item:nth-child(3) {
  background-image: url(../images/top/reason_bg03.webp);
}

.p-top__reason__head__list__item p:nth-child(1) {
  font-size: 18px;
  font-weight: 700;
}

.p-top__reason__head__list__item p:nth-child(2) {
  font-family: "Dela Gothic One",sans-serif;
  font-size: 44px;
  font-weight: 400;
}

.p-top__reason__head__list__item p:nth-child(2)>span {
  font-family: "Noto Sans JP",sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.p-top__reason__head__list__item p:nth-child(3) {
  font-size: 14px;
  font-weight: 700;
}

.p-top__reason__content {
  width: 100%;
  background-color: #f8f5eb;
  position: relative;
  z-index: 10;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 40px 40px 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 40px 0px rgba(103,91,50,.05);
  margin-bottom: 40px;
}

.p-top__reason__content__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  width: 50%;
}

.p-top__reason__content__item>.c-text {
  min-height: 143px;
}

.p-top__reason__content__item__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 10px;
}

.p-top__reason__content__item__title>img {
  display: block;
  width: 35px;
}

.p-top__reason__content__item__title>span {
  font-family: "Dela Gothic One",sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  display: block;
}

.p-top__reason__content__item__title>span .color-og {
  color: #e28d00;
}

.p-top__reason__content__item>img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__reason__content__item:first-child {
  border-right: 1px solid #e5e0d2;
  padding-right: 32px;
}

.p-top__reason__content__item:nth-child(2) {
  padding-left: 32px;
}

.p-top__reason__content__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a69c82;
  position: absolute;
}

.p-top__reason__content__dot.top-l {
  top: 6px;
  left: 8px;
}

.p-top__reason__content__dot.top-r {
  top: 6px;
  right: 8px;
}

.p-top__reason__content__dot.bottom-l {
  bottom: 9px;
  left: 8px;
}

.p-top__reason__content__dot.bottom-r {
  bottom: 9px;
  right: 8px;
}

.p-top__assignment {
  position: relative;
  padding-bottom: 220px;
}

.p-top__assignment__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px 0;
  margin-top: 24px;
}

.p-top__assignment__list__item {
  width: calc(33.3333333333% - 10px);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 16px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  border-radius: 10px;
  border: 2px solid #150000;
  background-color: #fff;
  box-shadow: 5px 5px 0px 0px #150000;
  transition: .3s;
}

.p-top__assignment__list__item__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.p-top__assignment__list__item__head>p {
  color: #150000;
  font-family: "Dela Gothic One",sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.p-top__assignment__list__item__head>span {
  display: block;
  width: 46px;
  height: 22px;
  border-radius: 50px;
  background: #150000;
  position: relative;
  transition: .3s;
}

.p-top__assignment__list__item__head>span::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.p-top__assignment__list__item__cat {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.p-top__assignment__list__item__cat>li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 8px 3px 8px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #edc02d;
  font-size: 12px;
  font-weight: 700;
}

.p-top__assignment__list__item:hover {
  box-shadow: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.p-top__assignment__list__item:hover .p-top__assignment__list__item__head>span {
  background-color: #edc02d;
}

.p-top__assignment__list__item:hover .p-top__assignment__list__item__head>span::after {
  background-image: url(../images/common/icon_arrow_black.svg);
}

.p-top__assignment__list::after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 10px);
}

.p-top__assignment__illust {
  position: absolute;
  right: 200px;
  bottom: -8px;
  width: 151px;
}

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

.p-top__voice {
  background-color: #f3f3f3;
  background-image: url(../images/top/voice_bg.webp);
  background-repeat: repeat-y;
  background-size: 100%;
  padding-top: 80px;
  padding-bottom: 50px;
  border-radius: 50px 50px 0 0;
}

.p-top__voice .l-container {
  position: relative;
}

.p-top__voice__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-top__voice__head .c-btn {
  margin: 0;
}

.p-top__voice__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

.p-top__voice__list .slick-list {
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

.p-top__voice__list .slick-list .slick-track {
  padding-top: 30px;
  padding-bottom: 80px;
}

.p-top__voice__list__item {
  width: 370px !important;
  max-width: 90%;
  height: 400px;
  transition: .5s;
}

.p-top__voice__list__item.slick-current {
  position: relative;
  z-index: 1200;
}

.p-top__voice__list__item.left {
  -webkit-transform: rotate(-10deg) translate(27px, 43px);
  transform: rotate(-10deg) translate(27px, 43px);
  z-index: 180;
  opacity: 1;
}

.p-top__voice__list__item.left2 {
  -webkit-transform: rotate(-20deg) translate(40px, 130px);
  transform: rotate(-20deg) translate(40px, 130px);
  z-index: 1000;
  opacity: 0;
}

.p-top__voice__list__item.right {
  -webkit-transform: rotate(10deg) translate(-27px, 43px);
  transform: rotate(10deg) translate(-27px, 43px);
  z-index: 1100;
}

.p-top__voice__list__item.right2 {
  -webkit-transform: rotate(20deg) translate(-40px, 130px);
  transform: rotate(20deg) translate(-40px, 130px);
  z-index: 1000;
  opacity: 0;
}

.p-top__voice__list__item__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  background-color: #f8f5eb;
  height: 100%;
}

.p-top__voice__list__item__link__img {
  position: relative;
  aspect-ratio: 330/200;
  overflow: hidden;
  margin-bottom: 23px;
}

.p-top__voice__list__item__link__img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top__voice__list__item__link__tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
}

.p-top__voice__list__item__link__tag>li {
  font-size: 12px;
  font-weight: 700;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 8px 3px 8px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #edc02d;
}

.p-top__voice__list__item__link__corp {
  color: #9d938d;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.p-top__voice__list__item__link__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.p-top__voice__list__item__link__title>span {
  color: #e28d00;
}

.p-top__voice__list__item__link__bottom {
  border-top: 1px solid #e5e0d2;
  margin-top: 24px;
}

.p-top__voice__list__item__link__bottom>span {
  display: block;
  width: 46px;
  height: 22px;
  border-radius: 50px;
  background: #150000;
  margin-top: 10px;
  position: relative;
  margin-left: auto;
}

.p-top__voice__list__item__link__bottom>span::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.p-top__voice__arrow {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-top__voice__arrow__item {
  display: block;
  width: 64px;
  height: 30px;
  border-radius: 80px;
  background: #a17d0b;
  position: relative;
  cursor: pointer;
  transition: .3s;
}

.p-top__voice__arrow__item::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.p-top__voice__arrow__item.prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}

.p-top__voice__arrow__item:hover {
  background: #bc9821;
}

.p-top__flow {
  margin-top: 248px;
  padding-bottom: 120px;
}

.p-top__flow__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 27px;
}

.p-top__flow__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-top__flow__text__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.p-top__flow__text p {
  color: #150000;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
}

.p-top__flow__content {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-top__flow__content>img {
  display: block;
  width: calc(25% - 7px);
  height: auto;
}

.p-top__faq {
  position: relative;
  z-index: 1000;
  margin-bottom: -75px;
}

.p-top__faq__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 150px;
  position: relative;
  padding: 0 80px;
  border-radius: 10px 0px 0px 10px;
  background-image: linear-gradient(90deg, #e9b714 0%, #eec130 48%, #f3cc4e 100%);
  box-shadow: 0px 4px 16px 0px rgba(255,255,255,.6) inset;
  margin-right: calc(50% - 50vw);
  transition: .3s;
}

.p-top__faq__wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px 0px 0px 10px;
  background-image: linear-gradient(90deg, #facb34 0%, #f9d150 48%, #ffe285 100%);
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: .3s;
  z-index: 1;
}

.p-top__faq__wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/top/faq_questions.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 187px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.p-top__faq__head {
  position: relative;
  z-index: 3;
  width: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-top__faq__head>span {
  display: block;
  width: 64px;
  height: 30px;
  border-radius: 80px;
  background: #a17d0b;
  position: relative;
  margin-left: auto;
}

.p-top__faq__head>span::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.p-top__faq__content {
  position: relative;
  z-index: 3;
  position: absolute;
  bottom: 0;
  right: 16vw;
}

.p-top__faq__content>img {
  display: block;
  width: 345px;
}

.p-top__faq__title {
  position: absolute;
  top: -30px;
  left: -28px;
  z-index: 3;
  width: 100px;
  display: block;
}

.p-top__column {
  position: relative;
  padding: 180px 0;
  background-color: #fff;
}

.p-top__column__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 96px;
}

.p-top__column__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-top__column__list {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-top__column__list__item {
  border-bottom: 1px solid #e7e7e7;
}

.p-top__column__list__item:first-child {
  border-top: 1px solid #e7e7e7;
}

.p-top__column__list__item__link {
  padding: 32px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  transition: .3s;
}

.p-top__column__list__item__link__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-top__column__list__item__link__head__time {
  color: #968f79;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin-right: 8px;
}

.p-top__column__list__item__link__head__cat {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.p-top__column__list__item__link__head__cat>li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 8px;
  height: 20px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  background-color: #150000;
}

.p-top__column__list__item__link__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.p-top__column__illust {
  display: block;
  width: 87px;
  position: absolute;
  top: 75px;
  left: 40px;
}

.p-top__column__whomor {
  display: block;
  width: 110px;
  position: absolute;
  bottom: 0;
  right: 30px;
}

.p-type {
  background-color: #edc02d;
  padding: 70px 0 280px;
}

.p-type__cat__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 80px;
}

.p-type__cat__list>li>a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 52px;
  padding: 0 58px 0 40px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 2px solid #150000;
  background: #fff;
  box-shadow: 2px 2px 0px 0px #150000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: .3s;
}

.p-type__cat__list>li>a::after {
  content: "";
  background-image: url(../images/common/icon_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 32px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  transition: .3s;
}

.p-type__cat__list>li>a:hover {
  box-shadow: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

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

.p-type__content__title {
  font-size: 30px;
  gap: 12px;
  margin-bottom: 16px;
}

.p-type__content__title>img {
  width: 50px;
}

.p-type__content__desc {
  margin-bottom: 32px;
}

.p-type__content__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: max-content;
  gap: 24px;
  margin-bottom: 32px;
}

.p-type__content__list__wrap {
  overflow-x: auto;
  margin-right: calc(50% - 50vw);
}

.p-type__content__list__wrap::-webkit-scrollbar {
  background: #d1ad38;
  height: 16px;
  border-radius: 8px;
}

.p-type__content__list__wrap::-webkit-scrollbar-thumb {
  background-color: #a17d0b;
  border-radius: 8px;
}

.p-type__content__list__item {
  width: 350px;
}

.p-type__content__list__item__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px;
  border-radius: 10px;
  background-color: #f8f5eb;
  box-shadow: 0px 4px 40px 0px rgba(103,91,50,.05);
  height: 100%;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.p-type__content__list__item__link__img {
  position: relative;
  aspect-ratio: 302/260;
  margin-bottom: 20px;
}

.p-type__content__list__item__link__img>img {
  display: block;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-type__content__list__item__link__img__bg {
  width: 97%;
  height: 97%;
  border: 1px solid #150000;
  box-shadow: 0px 4px 40px 0px rgba(103,91,50,.05);
  transition: .3s;
}

.p-type__content__list__item__link__img__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: .3s;
  border: 2px solid #150000;
  border-radius: 10px;
}

.p-type__content__list__item__link__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.p-type__content__list__item__link__title>p {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.p-type__content__list__item__link__title>span {
  display: block;
  width: 46px;
  height: 22px;
  border-radius: 50px;
  background: #150000;
  position: relative;
}

.p-type__content__list__item__link__title>span::after {
  content: "";
  background-image: url(../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}

.p-type__content__more {
  margin: 32px 0 0;
}

.p-works-single__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.p-works-single__head__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 35px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 32px;
  min-width: 120px;
  border-radius: 30px;
  border: 2px solid #150000;
  box-shadow: 2px 2px 0px 0px #150000;
  transition: .3s;
}

.p-works-single__head__item.cat {
  background-color: #edc02d;
}

.p-works-single__head__item.tag {
  background-color: #fff;
}

.p-works-single__head__item:hover {
  box-shadow: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.p-works-single__img {
  background: linear-gradient(to bottom, #f3f3f3 50%, #edc02d 50%);
}

.p-works-single__img .l-container {
  position: relative;
}

.p-works-single__img__arrow {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  position: absolute;
  top: 55px;
  right: 0;
  z-index: 1001;
}

.p-works-single__img__arrow__item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #a17d0b;
  cursor: pointer;
}

.p-works-single__img__arrow__item::after {
  content: "";
  background-image: url(../images/common/icon_arrow_slide.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 25px;
  height: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-left: 2px;
}

.p-works-single__img__arrow__item.next::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
  margin-left: 0;
  margin-right: 2px;
}

.p-works-single__img__dots {
  display: none;
}

.p-works-single__img__slide {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: calc(50% - 50vw);
  margin-bottom: 0 !important;
}

.p-works-single__img__slide .slick-list .slick-track {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
}

.p-works-single__img__slide__wrap {
  width: 1230px;
  margin: 0 auto;
}

.p-works-single__img__slide__item {
  aspect-ratio: 500/715;
  width: 500px;
  -webkit-transform: scale(0.76);
  transform: scale(0.76);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  transition: .5s;
}

.p-works-single__img__slide__item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-works-single__img__slide__item.slick-current {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.p-works-single__img__slide__item.right {
  -webkit-transform: translatex(-42px) scale(0.76);
  transform: translatex(-42px) scale(0.76);
}

.p-works-single__img__slide__item.right2 {
  -webkit-transform: translatex(-144px) scale(0.76);
  transform: translatex(-144px) scale(0.76);
}

.p-works-single__img__slide__item.square {
  width: 550px;
  aspect-ratio: 1;
}

.p-works-single__youtube {
  background: linear-gradient(to bottom, #f3f3f3 50%, #edc02d 50%);
}

.p-works-single__youtube__inner {
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1140px;
}

.p-works-single__youtube__inner iframe {
  width: 100%;
  height: 100%;
}

.p-works-single__bg-yellow {
  background-color: #edc02d;
  padding: 80px 0 200px;
}

.p-works-single__detail {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 24px;
  gap: 16px;
  border-radius: 4px;
  background-color: #f8f5eb;
  margin-bottom: 80px;
}

.p-works-single__detail__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  width: calc(50% - 10px);
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e0d2;
}

.p-works-single__detail__item>p:nth-child(1) {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  padding: 4px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  background: #150000;
}

.p-works-single__detail__item>p:nth-child(2) {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.p-works-single__detail__item:nth-child(1) {
  width: 100%;
}

.p-works-single__assignment {
  margin-bottom: 48px;
}

.p-works-single__suggestion {
  margin-bottom: 80px;
}

.p-works-single__related {
  margin-bottom: 80px;
}

.p-works-single__related:last-child {
  margin-bottom: 0;
}

.p-works-single__related__title {
  margin-bottom: 24px;
}

.p-works-single__related__dots {
  display: none;
}

.p-works {
  background-color: #edc02d;
  padding: 70px 0 280px;
}

.p-works__content__list {
  padding-top: 80px;
}

.p-works__content__list.type {
  margin-top: 12px;
  padding-top: 0;
}

.p-works__current-type {
  margin-top: 24px;
}

.p-works__cat__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.p-works__cat__list>li>a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 52px;
  padding: 0 44px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 2px solid #150000;
  background: #fff;
  box-shadow: 2px 2px 0px 0px #150000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: .3s;
}

.p-works__cat__list>li>a:hover {
  box-shadow: initial;
  -webkit-transform: translateX(2px) translateY(2px);
  transform: translateX(2px) translateY(2px);
}

.p-works__cat__list .current>a {
  background: #f8de8b;
}

.p-works__tag {
  margin-top: 32px;
}

.p-works__tag__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  border-radius: 8px;
  background: #f3cc50;
  margin-top: 12px;
}

.p-works__tag__list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.p-works__tag__list__item__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
  width: 150px;
  margin-right: 8px;
}

.p-works__tag__list__item__title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/common/icon_star.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
}

.p-works__tag__list__item__child {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.p-works__tag__list__item__child>li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 30px;
  background: #f8f5eb;
}

.p-works__tag__list__item__child>li>a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px 24px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  transition: .3s;
}

.p-works__tag__list__item__child>li>a:hover {
  opacity: .7;
}

.p-works__tag__list__item__child .current {
  color: #fff;
  background: #a17d0b;
}

.p-works__tag__list__item:not(:last-child) {
  border-bottom: 1px solid #eebd20;
  padding-bottom: 20px;
}

.p-works__company-newsletter {
  color: var(--black, #150000);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 32px;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
  -ms-text-justify: inter-ideograph !important;
  text-justify: inter-ideograph !important;
}

.u-bc-white {
  background-color: #fff;
}

.u-bdr-t {
  border-top: 1px solid !important;
}

.u-bdr-b {
  border-bottom: 1px solid !important;
}

.u-bdr-l {
  border-left: 1px solid !important;
}

.u-bdr-r {
  border-right: 1px solid !important;
}

.u-bdr-n {
  border: none !important;
}

.u-c-black {
  color: #000 !important;
}

.u-c-white {
  color: #fff !important;
}

.u-c-blue {
  color: #00bfff !important;
}

.u-cs-a {
  cursor: auto;
}

.u-cs-p {
  cursor: pointer;
}

.u-sp-hide {
  display: none !important;
}

.u-d-none {
  display: none !important;
}

.u-d-i {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-b {
  display: block !important;
}

.u-sp-hide-f {
  display: none !important;
}

.u-sp-hide-ib {
  display: none !important;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-fs-8 {
  font-size: 8px !important;
}

.u-fs-9 {
  font-size: 9px !important;
}

.u-fs-10 {
  font-size: 10px !important;
}

.u-fs-11 {
  font-size: 11px !important;
}

.u-fs-12 {
  font-size: 12px !important;
}

.u-fs-13 {
  font-size: 13px !important;
}

.u-fs-14 {
  font-size: 14px !important;
}

.u-fs-15 {
  font-size: 15px !important;
}

.u-fs-16 {
  font-size: 16px !important;
}

.u-fs-17 {
  font-size: 17px !important;
}

.u-fs-18 {
  font-size: 18px !important;
}

.u-fs-19 {
  font-size: 19px !important;
}

.u-fs-20 {
  font-size: 20px !important;
}

.u-fs-21 {
  font-size: 21px !important;
}

.u-fs-22 {
  font-size: 22px !important;
}

.u-fs-23 {
  font-size: 23px !important;
}

.u-fs-24 {
  font-size: 24px !important;
}

.u-fs-25 {
  font-size: 25px !important;
}

.u-fs-26 {
  font-size: 26px !important;
}

.u-fs-27 {
  font-size: 27px !important;
}

.u-fs-28 {
  font-size: 28px !important;
}

.u-fs-29 {
  font-size: 29px !important;
}

.u-fs-30 {
  font-size: 30px !important;
}

.u-fs-31 {
  font-size: 31px !important;
}

.u-fs-32 {
  font-size: 32px !important;
}

.u-fs-33 {
  font-size: 33px !important;
}

.u-fs-34 {
  font-size: 34px !important;
}

.u-fs-35 {
  font-size: 35px !important;
}

.u-fs-36 {
  font-size: 36px !important;
}

.u-fs-37 {
  font-size: 37px !important;
}

.u-fs-38 {
  font-size: 38px !important;
}

.u-fs-39 {
  font-size: 39px !important;
}

.u-fs-40 {
  font-size: 40px !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pt-5 {
  padding-top: 5px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pt-55 {
  padding-top: 55px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pt-65 {
  padding-top: 65px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pt-75 {
  padding-top: 75px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pt-85 {
  padding-top: 85px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pt-95 {
  padding-top: 95px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pb-55 {
  padding-bottom: 55px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-fs-o {
  font-style: oblique !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

.u-fw-500 {
  font-weight: 500 !important;
}

@media screen and (min-width: 768px) {
  .g-nav__link {
    transition: .3s;
  }

  .g-nav__link:hover {
    opacity: .7;
  }
}

@media screen and (min-width: 1000px) {
  .c-card__link:hover .c-card__link__img__bg {
    width: 100%;
    height: 100%;
  }

  .c-card__link:hover .c-card__link__img__thumb {
    -webkit-transform: translate(-50%, -50%) rotate(-4deg);
    transform: translate(-50%, -50%) rotate(-4deg);
  }

  .c-card__link:hover .c-card__link__img__thumb.voices {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .c-card__link:hover .c-card__link__bottom>span {
    background-color: #edc02d;
  }

  .c-card__link:hover .c-card__link__bottom>span::after {
    background-image: url(../images/common/icon_arrow_black.svg);
  }

  .c-cv__link__item:hover {
    -webkit-transform: scale(1.02, 1.11);
    transform: scale(1.02, 1.11);
  }

  .c-pagetop>div:hover::before {
    background-color: #fad661;
  }

  .l-footer__head__privacy:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .l-footer__nav__list>li>a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .l-footer__nav__list__child>li>a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .l-footer__link__item:hover {
    -webkit-transform: scale(1.03, 1.09);
    transform: scale(1.03, 1.09);
  }

  .l-header__logo>a {
    transition: .3s;
  }

  .l-header__logo>a:hover {
    opacity: .7;
  }

  .l-header__link__item:hover {
    -webkit-transform: scale(1.03, 1.06);
    transform: scale(1.03, 1.06);
  }

  .l-header__link__item:hover>img {
    z-index: -1000;
  }

  .p-top__fv__arrow__item {
    background: #bc9821;
  }

  .p-top__voice__list__item__link:hover .p-top__voice__list__item__link__bottom>span {
    background-color: #edc02d;
  }

  .p-top__voice__list__item__link:hover .p-top__voice__list__item__link__bottom>span::after {
    background-image: url(../images/common/icon_arrow_black.svg);
  }

  .p-top__faq__wrap:hover::before {
    opacity: 1;
  }

  .p-top__column__list__item__link:hover {
    background-color: #f7f7f7;
  }

  .p-type__content__list__item__link:hover .p-type__content__list__item__link__img__bg {
    width: 100%;
    height: 100%;
  }

  .p-type__content__list__item__link:hover .p-type__content__list__item__link__img__thumb {
    -webkit-transform: translate(-50%, -50%) rotate(-4deg);
    transform: translate(-50%, -50%) rotate(-4deg);
  }

  .p-type__content__list__item__link:hover .p-type__content__list__item__link__img__thumb.voices {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .p-type__content__list__item__link:hover .p-type__content__list__item__link__title>span {
    background-color: #edc02d;
  }

  .p-type__content__list__item__link:hover .p-type__content__list__item__link__title>span::after {
    background-image: url(../images/common/icon_arrow_black.svg);
  }

  .u-sp-hide {
    display: block !important;
  }

  .u-pc-hide {
    display: none !important;
  }

  .u-sp-hide-f {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .u-sp-hide-ib {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1920px) {
  .c-page-header.bg-arch::before {
    bottom: -1vw;
    background-image: url(../images/page-header/bg_1920.webp);
  }
}

@media screen and (max-width: 1380px) {
  .p-top__works__img.img01 {
    display: none;
  }

  .p-top__works__img.img02 {
    display: none;
  }

  .p-top__works__img.img03 {
    display: none;
  }

  .p-top__column__illust {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .c-breadcrumb {
    margin-top: 8px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 32px;
  }

  .c-breadcrumb>li>span {
    line-height: 19px;
  }

  .c-btn>a {
    font-size: 14px;
  }

  .c-btn.small {
    width: 134px;
    height: 50px;
  }

  .c-btn.small>a {
    padding-right: 20px;
  }

  .c-btn.down-arrow {
    width: 142px;
    height: 45px;
  }

  .c-btn.down-arrow>a {
    font-size: 13px;
    padding-right: 20px;
  }

  .c-btn.down-arrow>a::after {
    width: 20px;
    height: 20px;
    right: 8px;
  }

  .c-btn.lg {
    width: 100%;
    height: 78px;
  }

  .c-card__wrap {
    gap: 16px 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .c-card__link {
    padding: 16px;
  }

  .c-card__link__img.voices {
    aspect-ratio: 293/176;
  }

  .c-card__link__img__thumb {
    width: 90%;
    height: 90%;
  }

  .c-card__link__img__thumb.voices {
    width: 100%;
    height: 100%;
  }

  .c-card__link__category {
    padding: 2px 7px 3px 7px;
    font-size: 11px;
  }

  .c-card__link .voices-card-title .c-card__link__title,
  .c-card__link .voices-card-title p {
    font-size: 16px;
  }

  .c-cv__wrap {
    background-image: url("../images/top/cv_bg_sp.webp");
    padding: 40px 24px 0px;
    height: auto;
    width: 100%;
    max-width: 800px;
  }

  .c-cv__link {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: static;
    -webkit-transform: initial;
    transform: initial;
    gap: 8px;
    margin-top: 16px;
  }

  .c-cv__link__item {
    width: 100%;
    height: 77px;
  }

  .c-cv__img {
    position: static;
  }

  .c-cv__img.img03 {
    width: 100%;
    -webkit-transform: initial;
    transform: initial;
    margin: 0 auto;
  }

  .c-cv__img.img04 {
    display: block;
    width: 192px;
    margin: 15px auto 0;
  }

  .c-form .c-form_field {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }

  .c-form .c-form_field .c-form_field_label {
    width: 100%;
  }

  .c-form .c-form_field .c-form_field_label>p {
    font-size: 15px;
    letter-spacing: .6px;
  }

  .c-form .c-form_field .c-form_field_label .c-form_field_label_required {
    font-size: 12px;
    letter-spacing: .6px;
  }

  .c-form .c-form_field .c-form_field_contents {
    width: 100%;
  }

  .c-form .c-form_field .c-form_name-wrapper .c-form_name-item {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 4px;
  }

  .c-form .c-form_field .c-form_name-wrapper .c-form_name-item>p {
    font-size: 12px;
  }

  .c-form .c-form_field .c-form_field_day-wrapper {
    gap: 8px;
  }

  .c-form .c-form_field .c-form_field_day-wrapper .wpcf7-not-valid-tip {
    width: 108px;
  }

  .c-form .c-form_field .c-form_field_day-wrapper .c-form_field_checkbox>span>span {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-form .c-form_field .c-form_sns-wrapper {
    gap: 8px;
  }

  .c-form .c-form_field .c-form_sns-wrapper .c-form_sns-item-wrapper {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .c-form .c-form_field .c-form_sns-wrapper .c-form_sns-item {
    width: 100%;
  }

  .c-form .c-form_field .c-form_sns-wrapper .c-form_sns-item>p {
    font-size: 12px;
    font-weight: 700;
  }

  .c-form .c-form_field .c-form_field_input--file {
    width: 100%;
  }

  .c-form .c-form_field .c-form_field_checkbox>span>span {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-form .c-form_field .c-form_field_radiobutton>span>span {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-form .c-form_field .c-form_thumbnail-group {
    margin-bottom: 8px;
    gap: 4px;
  }

  .c-form .c-form_field .c-form_textarea-group {
    gap: 24px;
  }

  .c-form .c-form_field .c-nda .c-nda_wrapper_heading h2 {
    font-size: 13px;
  }

  .c-form .c-form_field .c-nda .c-nda_wrapper_heading p {
    font-size: 13px;
  }

  .c-form .c-form_field .c-nda .c-nda_section h3 {
    font-size: 13px;
  }

  .c-form .c-form_field .c-nda .c-nda_section li {
    font-size: 13px;
  }

  .c-form .c-form_field .c-nda .c-nda_footer_note {
    font-size: 13px;
  }

  .c-form .c-form_field_txt {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }

  .c-form .c-form_field_txt .c-form_field_label {
    width: 100%;
  }

  .c-form .c-form_field_txt .c-form_field_label>p {
    font-size: 15px;
    letter-spacing: .6px;
  }

  .c-form .c-form_field_txt .c-form_field_label_required {
    font-size: 12px;
    letter-spacing: .6px;
  }

  .c-form .c-form_field_txt .c-form_field_contents {
    width: 100%;
  }

  .c-form .c-form_field_txt .c-form_price-wrapper {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }

  .c-form .c-form_field_txt .c-form_price-wrapper-item>p {
    font-size: 12px;
    font-weight: 700;
    width: 80px;
  }

  .c-form .c-form_field_txt .c-form_field_price {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }

  .c-form .c-form_illustration_checkbox {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
  }

  .c-form .c-form_illustration_checkbox .c-form_illustration_checkbox_btn>span>span {
    gap: 16px;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-form .c-form_illustration_checkbox .c-form_illustration_checkbox_btn>span>span>span>label input:checked+span:after {
    left: 3px;
  }

  .c-form .c-form_illustration_checkbox .c-form_illustration_checkbox_btn>span>span>span>label span {
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: .6px;
    text-align: left;
  }

  .c-form .c-form_genre_checkbox {
    gap: 16px;
  }

  .c-form .c-form_genre_checkbox .c-form_genre_checkbox_btn>span>span {
    gap: 16px;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-form .c-form_genre_checkbox .c-form_genre_checkbox_btn>span>span>span>label input:checked+span:after {
    left: 3px;
  }

  .c-form .c-form_genre_checkbox .c-form_genre_checkbox_btn>span>span>span>label span {
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: .6px;
    text-align: left;
  }

  .c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn>span>span>span>label input:checked+span:after {
    left: 3px;
  }

  .c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn>span>span>span>label span {
    font-size: 12px;
    letter-spacing: .6px;
    text-align: left;
  }

  .c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn_signup>span>span>span>label input:checked+span:after {
    left: 3px;
  }

  .c-form .c-form_privacy_checkbox .c-form_privacy_checkbox_btn_signup>span>span>span>label span {
    font-size: 15px;
    letter-spacing: .6px;
    text-align: left;
  }

  .c-form .c-form_desc-wrapper {
    gap: 20px;
  }

  .c-form .c-form_desc-wrapper .recaptcha-note {
    font-size: 11px;
  }

  .c-form .c-form_desc>p {
    font-size: 14px;
  }

  .c-form .c-form_desc_signup>p {
    font-size: 11px;
  }

  .c-form .c-form_desc_sub>p {
    line-height: 170%;
  }

  .c-form .c-form_desc_sub_point {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .c-form .c-form_desc_sub_point>img {
    width: 22px;
  }

  .c-form .c-form_desc_sub_point_txt>p {
    margin: 0;
  }

  .c-form .c-form_submit--button:hover {
    -webkit-transform: initial;
    transform: initial;
  }

  .c-page-header {
    height: 210px;
  }

  .c-page-header.flow {
    height: 240px;
    padding-bottom: 40px;
  }

  .c-page-header.single {
    padding-top: 100px;
    padding-bottom: 40px;
    height: auto;
  }

  .c-page-header.risk-training {
    height: auto;
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .c-page-header.risk-training .c-page-header__inner {
    width: 100%;
    display: block;
  }

  .c-page-header.risk-training .c-page-header__inner .c-page-header__text .c-breadcrumb {
    margin-bottom: 32px;
  }

  .c-page-header.risk-training .c-page-header__inner .c-page-header__text .c-page-header__title {
    font-size: 26px;
  }

  .c-page-header__inner {
    height: 106px;
  }

  .c-page-header__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .c-page-header__desc {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .c-page-header__bg-text {
    font-size: 50px;
    top: -20px;
  }

  .c-page-header__img.about {
    width: 98px;
    right: -16px;
  }

  .c-page-header__img.company {
    width: 70px;
    right: 6px;
    bottom: -20px;
  }

  .c-page-header__img.flow {
    display: none;
  }

  .c-page-header__img.works {
    display: none;
  }

  .c-page-header__img.promotion {
    display: none;
  }

  .c-page-header__img.service {
    display: none;
  }

  .c-page-header__img.sns-promotion {
    display: none;
  }

  .c-page-header__img.promotion-recruit {
    display: none;
  }

  .c-page-header__img.promotion-internal-pr {
    display: none;
  }

  .c-page-header__img.column {
    width: 98px;
    right: -16px;
  }

  .c-page-header__img.voices {
    display: none;
  }

  .c-page-header__img.contact {
    width: 80px;
    bottom: -34px;
    right: 0;
  }

  .c-page-header__img.download {
    width: 80px;
  }

  .c-page-header__img.webiner {
    width: 80px;
  }

  .c-page-header__img.type {
    display: none;
  }

  .c-page-header__img.risk-training {
    display: none;
  }

  .c-page-header.bg-arch {
    height: 251px;
  }

  .c-page-header.bg-arch .c-page-header__inner {
    height: 151px;
  }

  .c-page-header.bg-arch::before {
    background-image: url(../images/page-header/bg_tab.webp);
    height: 18vw;
    bottom: -4vw;
  }

  .c-pagenavi {
    margin-top: 32px;
  }

  .c-pagenavi>.page-numbers>li>a,
  .c-pagenavi>.page-numbers>li span {
    font-size: 13px;
  }

  .c-pagetop {
    right: 10px;
    bottom: 10px;
    width: 56px;
    height: 56px;
  }

  .c-pagetop>div>span {
    width: 10px;
    height: 24px;
  }

  .c-qa__item {
    padding: 22px 12px;
  }

  .promotion-qa .c-qa__item {
    padding: 16px 12px;
  }

  .c-qa__item-q,
  .c-qa__item-a {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .c-qa__item-q span,
  .c-qa__item-a span {
    height: 28px;
    width: 28px;
    font-size: 12px;
  }

  .c-qa__item-q h3,
  .c-qa__item-a h3 {
    font-size: 15px;
  }

  .c-qa__item-q p,
  .c-qa__item-a p {
    font-size: 13px;
  }

  .c-qa__item-a {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .c-text {
    font-size: 14px;
  }

  .c-title {
    font-size: 24px;
    gap: 8px;
  }

  .c-title>img {
    width: 28px;
  }

  .c-title.row {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .c-title.col {
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .c-title.lower {
    font-size: 24px;
  }

  .c-title.sm {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 24px;
    gap: 8px;
  }

  .c-title.sm>img {
    width: 28px;
  }

  .c-title.sm>span {
    text-align: center;
  }

  .c-title.sp-center {
    text-align: center;
    font-size: 20px;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-title.sp-sm {
    font-size: 22px;
    gap: 8px;
    line-height: 1.2;
  }

  .c-title.sp-sm>img {
    width: 28px;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 35px;
  }

  .l-footer.lower {
    padding-top: 360px;
  }

  .l-footer__cv {
    top: -236px;
  }

  .l-footer__wrap {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 32px;
  }

  .l-footer__head {
    gap: 16px;
  }

  .l-footer__head__logo {
    padding-top: 0;
  }

  .l-footer__nav {
    padding: 0;
    border-right: initial;
    border-left: initial;
    border-top: 1px solid #3a3a3a;
    border-bottom: 1px solid #3a3a3a;
    padding: 40px 0;
    margin-top: 40px;
  }

  .l-footer__nav__list>li>a {
    font-size: 14px;
  }

  .l-footer__nav__list>li>div {
    font-size: 14px;
  }

  .l-footer__link {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .l-footer__link__item {
    width: 100%;
    max-width: 500px;
    height: 69px;
  }

  .l-footer__link__item>a {
    font-size: 20px;
  }

  .l-footer__link__tel {
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    font-size: 20px;
  }

  .l-footer__link__text {
    text-align: left;
  }

  .l-footer__sp-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 100%;
  }

  .g-nav {
    color: #fff;
    background-color: #150000;
    transition: .5s;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1200;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    overflow-y: auto;
  }

  .g-nav__inner {
    -webkit-overflow-scrolling: touch;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 120px 20px 80px;
    overflow-y: auto;
    gap: 24px;
  }

  .g-nav__list {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 0;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .g-nav__list__child {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    position: static;
    -webkit-transform: initial;
    transform: initial;
    padding: 0;
    border-radius: 0;
    width: auto;
    padding-left: 24px;
  }

  .g-nav__list__child__item {
    width: 100%;
    padding: 0;
    border: initial;
    background-color: initial;
  }

  .g-nav__list__child__item__head>p {
    font-family: "Noto Sans JP",sans-serif;
    font-size: 12px;
    font-weight: 700;
  }

  .g-nav__list__child__item__head>span {
    background-color: #6b6767;
  }

  .g-nav__list__child__item__cat {
    display: none;
  }

  .g-nav__item {
    width: calc(50% - 10px);
    border-bottom: 1px solid #6b6767;
    padding-bottom: 16px;
  }

  .g-nav__item.child {
    width: 100%;
  }

  .g-nav__toggle {
    display: none;
  }

  .g-nav__link {
    font-size: 15px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .g-nav__link.child {
    padding-right: 0;
    margin-bottom: 16px;
  }

  .g-nav__link .pc-arrow {
    display: block;
    width: 30px;
    height: 14px;
    border-radius: 50px;
    position: relative;
    transition: .3s;
    background-color: #6b6767;
  }

  .g-nav__link .pc-arrow::after {
    content: "";
    background-image: url(../images/common/icon_arrow_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 9px;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: .3s;
  }

  .l-header {
    width: 100%;
    padding-inline: 0;
    padding-left: 0;
    padding-right: 0;
    left: 0;
    -webkit-transform: initial;
    transform: initial;
  }

  .l-header__wrap {
    height: 80px;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .l-header__logo {
    width: 191px;
    height: 100%;
    padding: 10px 15px 0px 6px;
    border-radius: 0px 0px 20px 0px;
    background: #fff;
    box-shadow: 0px 4px 40px 0px rgba(103,91,50,.05);
    position: relative;
    z-index: 1500;
  }

  .l-header__logo>a>img {
    width: 166px;
    height: 36px;
    margin-bottom: 6px;
  }

  .l-header__logo>a>span {
    font-size: 11px;
    outline: 0;
  }

  .l-header__link {
    display: none;
  }

  .l-container.works {
    position: relative;
    z-index: 5;
  }

  .nav-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .l-single {
    padding: 40px 0 300px;
  }

  .l-single.voices {
    padding: 24px 0 80px;
  }

  .l-single__wrap {
    padding: 40px 16px;
  }

  .l-single__head__cat.voices>li {
    padding: 2px 7px 3px 7px;
    font-size: 11px;
  }

  .l-single__name {
    font-size: 12px;
  }

  .l-single__title {
    font-size: 24px;
    padding-bottom: 32px;
  }

  .l-single__lead {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .l-single__content>h4 {
    font-size: 14px;
  }

  .l-single__content>p {
    margin-block: 20px;
  }

  .l-single__content>figure table tbody tr td:first-child {
    width: 40%;
  }

  .l-single__related-voices {
    padding: 64px 0 290px;
  }

  .single-voices .l-page,
  .single-column .l-page {
    padding-top: 104px;
  }

  .p-404 {
    padding-bottom: 80px;
    padding-top: 30px;
  }

  .p-404__text {
    text-align: left;
  }

  .p-404__text__title {
    font-size: 24px;
  }

  .p-404__back {
    margin-top: 24px;
  }

  .p-about__head {
    padding: 48px 0 72px;
  }

  .p-about__head__title {
    margin-bottom: 24px;
  }

  .p-about__head__title__icon {
    width: 53px;
  }

  .p-about__head__item {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 24px 16px;
    gap: 24px;
  }

  .p-about__head__item__img {
    width: 100%;
  }

  .p-about__head__item__text__title {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
  }

  .p-about__head__item__text__title>img {
    width: 29px;
  }

  .p-about__head__item__text__title>p {
    font-size: 22px;
  }

  .p-about__head__item__text__list {
    padding: 16px 12px;
    margin-top: 16px;
  }

  .p-about__head__item__text__list>li {
    font-size: 13px;
    padding-left: 20px;
  }

  .p-about__head__item__text__list>li::before {
    width: 12px;
    height: 8px;
  }

  .p-about__head__item:nth-child(even) {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .p-about__bg-gray {
    padding: 72px 0 308px;
  }

  .p-about__howto__content {
    margin-top: 24px;
    overflow-x: scroll;
    padding-bottom: 24px;
    margin-bottom: -24px;
  }

  .p-about__howto__content::-webkit-scrollbar {
    width: 8px;
    height: 3px;
  }

  .p-about__howto__content::-webkit-scrollbar-thumb {
    background-color: #a17d0b;
  }

  .p-about__howto__content__img {
    -webkit-flex: initial;
    -ms-flex: initial;
    flex: initial;
  }

  .p-about__howto__inner {
    display: block;
    width: 690px;
  }

  .p-about__solution__list {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-about__solution__list__item {
    width: 100%;
  }

  .p-about__solution__list__item__head>p {
    font-size: 20px;
  }

  .p-about__solution__list::after {
    content: none;
  }

  .p-column {
    padding: 30px 0 300px;
  }

  .p-column__item__link {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 16px;
  }

  .p-column__item__link__img {
    max-width: 100%;
  }

  .p-column__item__link__cat>li {
    padding: 1px 8px 2px 8px;
  }

  .p-column__item__link__title {
    font-size: 15px;
  }

  .blog-card {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .blog-card-column-wrap {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .blog-card a {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .blog-card-works .blog-card-thumbnail {
    max-width: none;
  }

  .blog-card-column .blog-card-thumbnail {
    max-width: none;
  }

  .blog-card-2column {
    max-width: 500px;
  }

  .blog-card-3column-wrap {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .blog-card-3column {
    max-width: 500px;
    width: 100%;
  }

  .wp-block-embed-twitter {
    width: 100%;
  }

  .p-company {
    padding: 40px 0 310px;
  }

  .p-company__table__item {
    display: block;
  }

  .p-company__table__item__head {
    width: 100%;
    padding: 12px 20px;
    border-right: none;
  }

  .p-company__table__item__head>p {
    font-size: 14px;
  }

  .p-company__table__item__content>p {
    font-size: 14px;
  }

  .p-company__table__item__map {
    margin-left: 0;
    margin-top: 10px;
  }

  .p-contact {
    padding: 48px 0 80px;
  }

  .p-contact__thanks {
    text-align: left;
  }

  .p-contact__thanks__title {
    font-size: 24px;
    line-height: 1.2;
  }

  .p-contact__thanks__text {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .p-contact__thanks__link:hover {
    opacity: 1;
  }

  .p-contact__head {
    margin-bottom: 80px;
  }

  .p-contact__head__img {
    margin-bottom: 20px;
  }

  .p-flow .l-container {
    padding-inline: 24px;
  }

  .p-flow__anker-wrap {
    left: 10px;
    top: -12px;
    gap: 5px;
  }

  .p-flow__step {
    padding: 72px 0;
  }

  .p-flow__step .l-container {
    padding-inline: 8px;
  }

  .p-flow__step__title {
    padding-inline: 16px;
  }

  .p-flow__step__desc {
    margin: 12px 0;
    padding-inline: 16px;
  }

  .p-flow__step__items {
    padding: 32px 16px;
    gap: 24px;
  }

  .p-flow__step__head {
    padding-bottom: 24px;
  }

  .p-flow__step__head__text {
    max-width: 264px;
    margin: 0 0 16px;
  }

  .p-flow__step__item {
    padding-bottom: 24px;
  }

  .p-flow__step__item__title {
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .p-flow__step__item__title>p {
    font-size: 24px;
  }

  .p-flow__step__item__subtitle {
    text-align: left;
    margin-bottom: 16px;
  }

  .p-flow__step__item__subtitle__wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 8px;
  }

  .p-flow__step__item__subtitle__wrap p {
    font-size: 15px;
  }

  .p-flow__step__item__content {
    margin: 0 auto 16px;
  }

  .p-flow__step__item__check {
    padding: 20px 16px;
    gap: 12px;
    border-radius: 4px;
  }

  .p-flow__step__item__check__title {
    font-size: 20px;
  }

  .p-flow__step__item__check__list {
    gap: 4px;
  }

  .p-flow__step__item__check__list>li {
    font-size: 14px;
    padding-left: 24px;
  }

  .p-flow__step__item__check__list>li::before {
    width: 12px;
    height: 8px;
  }

  .p-flow__step__item__check__desc {
    padding: 10px 12px;
    border-radius: 2px;
  }

  .p-flow__step__item__check__desc>span {
    font-size: 13px;
    padding-left: 28px;
  }

  .p-flow__step__item__check__desc>span::before {
    width: 16px;
    height: 14.124px;
  }

  .p-flow__qa {
    padding: 70px 0 305px;
  }

  .p-flow__qa .c-title>img {
    width: 28px;
  }

  .p-flow__qa .c-qa {
    margin-top: 25px;
  }

  .p-promotion__bg-yellow {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .p-promotion__heading {
    display: block;
    padding: 32px 20px;
  }

  .p-promotion__heading p {
    border-left: none;
    margin: 0;
    padding: 0;
    margin-top: 24px;
    font-size: 14px;
  }

  .p-promotion__tab-toggle {
    margin-top: 48px;
  }

  .p-promotion__tab-toggle-btn {
    height: 68px;
  }

  .p-promotion__tab-toggle-btn p {
    font-size: 15px;
  }

  .p-promotion__tab {
    padding: 24px 18px 64px 18px;
  }

  .p-promotion__tab--notab {
    margin-top: 48px;
  }

  .p-promotion__tab-sample p {
    font-size: 14px;
  }

  .p-promotion__tab-sample-col3 {
    -ms-grid-columns: 211px 211px 211px;
    grid-template-columns: 211px 211px 211px;
    overflow: scroll;
  }

  .p-promotion__tab-sample-col3.col2-flex {
    overflow: scroll;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .p-promotion__tab-sample-col3.col2-flex>img {
    max-width: 221px;
  }

  .p-promotion__tab-point-title {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-promotion__tab-point-col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .p-promotion__tab-effect-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 16px 0 32px;
  }

  .p-promotion__tab-effect-grid-item {
    height: 50px;
  }

  .p-promotion__tab-effect-grid-item p {
    font-size: 16px;
  }

  .p-promotion__tab-point-item {
    padding: 4px 20px 12px;
  }

  .p-promotion__tab-point-item>img {
    display: none;
  }

  .p-promotion__tab-point-item h3.h60 {
    height: auto;
  }

  .p-promotion__tab-point-item h3 {
    margin: 0;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-promotion__tab-point-item h3>span {
    font-size: 16px;
  }

  .p-promotion__tab-point-item h3>img {
    width: 21px;
  }

  .p-promotion__purpose {
    margin-top: 40px;
  }

  .p-promotion__purpose-flex {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .p-promotion__purpose-flex-item {
    width: 100%;
    padding: 24px 12px;
  }

  .p-promotion__purpose-flex-item__inner {
    gap: 22px;
  }

  .p-promotion__purpose-flex-item__inner img {
    width: 100px;
  }

  .p-promotion__purpose-flex-item__arrow {
    width: 36px;
    height: 17px;
    bottom: 8px;
  }

  .p-promotion__purpose-flex-item__text {
    gap: 8px;
  }

  .p-promotion__purpose-flex-item__text span {
    font-size: 16px;
  }

  .p-promotion__purpose-flex-item__text p {
    font-size: 12px;
  }

  .p-promotion__tab-works>.c-title {
    margin-bottom: 30px;
  }

  .p-promotion__tab-works--private {
    margin-top: 20px !important;
  }

  .p-promotion__purpose {
    margin-top: 40px;
  }

  .p-promotion__purpose-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-promotion__channel {
    padding: 80px 0 64px;
  }

  .p-promotion__channel-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .p-promotion__channel-grid.grid-3col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .p-promotion__cv {
    top: 228px;
    margin-top: -228px;
  }

  .p-promotion__step-wrap {
    padding: 36px 18px;
  }

  .p-promotion__step-item {
    display: block;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .p-promotion__step-item p {
    font-size: 13px;
  }

  .p-promotion__step-heading {
    margin-bottom: 12px;
  }

  .p-promotion__step-heading h3 {
    font-size: 18px;
  }

  .p-risk-training__head {
    padding-block: 58px;
  }

  .p-risk-training__head__title {
    margin-bottom: 22px;
  }

  .p-risk-training__head__title span {
    font-size: 16px;
  }

  .p-risk-training__head__title img {
    width: 306px;
  }

  .p-risk-training__head__content__inner {
    padding: 32px 16px;
  }

  .p-risk-training__head__content__wrap {
    border-radius: 4px;
  }

  .p-risk-training__head__bottom__item {
    padding: 40px 24px;
    gap: 24px;
  }

  .p-risk-training__head__bottom__item__title span {
    font-size: 14px;
  }

  .p-risk-training__head__bottom__item__title p {
    font-size: 20px;
  }

  .p-risk-training__head__bottom__item__content {
    gap: 7px;
    left: 0;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-risk-training__head__bottom__item__content__item p {
    font-size: 12px;
  }

  .p-risk-training__head__bottom__item__content__item.whomor img {
    width: 197px;
  }

  .p-risk-training__head__bottom__item__content__item.eltes img {
    width: 153px;
  }

  .p-risk-training__head__bottom__item__text {
    text-align: left;
  }

  .p-risk-training__head__bottom__item:nth-child(even) {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .p-risk-training__riskcomic {
    padding-block: 58px;
    background-size: 220%;
  }

  .p-risk-training__riskcomic__title {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 0;
  }

  .p-risk-training__riskcomic__title p {
    font-size: 14px;
  }

  .p-risk-training__riskcomic__list {
    gap: 48px;
    margin-top: 40px;
  }

  .p-risk-training__riskcomic__list__item {
    width: 85%;
    margin: 0 auto;
    gap: 16px;
  }

  .p-risk-training__riskcomic__list__item__text p {
    font-size: 16px;
  }

  .p-risk-training__riskcomic__list__item__modal__inner {
    min-height: initial;
    padding: 48px 20px 32px;
  }

  .p-risk-training__riskcomic__list__item__modal__title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 28px;
  }

  .p-risk-training__riskcomic__list__item__modal__content {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 28px;
    margin-bottom: 16px;
  }

  .p-risk-training__riskcomic__list__item__modal__content__video__title p {
    font-size: 16px;
  }

  .p-risk-training__riskcomic__list__item__modal__content__img {
    padding: 0 20px;
  }

  .p-risk-training__riskcomic__list__item__modal__content__text p {
    font-size: 14px;
  }

  .p-risk-training__riskcomic__list__item__modal__content__close {
    width: 32px;
    height: 32px;
  }

  .p-risk-training__riskcomic__list__item__modal__content__close svg {
    width: 10px;
    height: 10px;
  }

  .p-risk-training__case {
    padding-block: 58px;
  }

  .p-risk-training__case__content {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }

  .p-risk-training__case__content__img {
    width: 100%;
  }

  .p-risk-training__case__content__text__desc {
    font-weight: 500;
    margin-bottom: 0;
  }

  .p-risk-training__case__content__text__btn {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  .p-risk-training__service {
    padding-block: 58px;
  }

  .p-risk-training__service__table__item {
    display: block;
  }

  .p-risk-training__service__table__item__head {
    width: 100%;
    padding: 12px 20px;
    border-right: none;
  }

  .p-risk-training__service__table__item__head>p {
    font-size: 14px;
  }

  .p-risk-training__service__table__item__content>p {
    font-size: 14px;
  }

  .p-risk-training__service__table__item__map {
    margin-left: 0;
    margin-top: 10px;
  }

  .p-risk-training__form {
    padding-block: 58px;
  }

  .p-risk-training__form__content {
    margin-top: 24px;
  }

  .p-service__bg-yellow {
    padding-top: 30px;
    padding-bottom: 270px;
  }

  .p-service__heading {
    display: block;
    padding: 32px 20px;
  }

  .p-service__heading p {
    border-left: none;
    margin: 0;
    padding: 0;
    margin-top: 24px;
    font-size: 14px;
  }

  .p-service__tab-toggle {
    margin-top: 48px;
  }

  .p-service__tab-toggle-btn {
    height: 68px;
  }

  .p-service__tab-toggle-btn p {
    font-size: 15px;
  }

  .p-service__tab {
    padding: 24px 18px 64px 18px;
  }

  .p-service__tab--notab {
    margin-top: 48px;
  }

  .p-service__tab-sample p {
    font-size: 14px;
  }

  .p-service__tab-sample-col3 {
    -ms-grid-columns: 211px 211px 211px;
    grid-template-columns: 211px 211px 211px;
    overflow: scroll;
  }

  .p-service__tab-sample-col3.col2-flex {
    overflow: scroll;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .p-service__tab-sample-col3.col2-flex>img {
    max-width: 221px;
  }

  .p-service__tab-point-title {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-service__tab-point-col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .p-service__tab-effect-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 16px 0 32px;
  }

  .p-service__tab-effect-grid-item {
    height: 50px;
  }

  .p-service__tab-effect-grid-item p {
    font-size: 16px;
  }

  .p-service__tab-point-item {
    padding: 4px 20px 12px;
  }

  .p-service__tab-point-item>img {
    display: none;
  }

  .p-service__tab-point-item h3.h60 {
    height: auto;
  }

  .p-service__tab-point-item h3 {
    margin: 0;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-service__tab-point-item h3>span {
    font-size: 16px;
  }

  .p-service__tab-point-item h3>img {
    width: 21px;
  }

  .p-service__purpose {
    margin-top: 40px;
  }

  .p-service__purpose-flex {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .p-service__purpose-flex-item {
    width: 100%;
    padding: 12px;
  }

  .p-service__purpose-flex-item__inner {
    gap: 10px;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-service__purpose-flex-item__inner img {
    width: 100%;
  }

  .p-service__purpose-flex-item__text {
    max-width: 100%;
    margin-top: 12px;
  }

  .p-service__purpose-flex-item__text span {
    font-size: 20px;
  }

  .p-service__purpose-flex-item__text p {
    font-size: 12px;
  }

  .p-service__tab-works>.c-title {
    margin-bottom: 30px;
  }

  .p-service__tab-works--private {
    margin-top: 20px !important;
  }

  .p-service__purpose {
    margin-top: 40px;
  }

  .p-service__purpose-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-service__channel {
    padding: 80px 0 64px;
  }

  .p-service__channel-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .p-service__channel-grid.grid-3col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .p-service__cv {
    top: 228px;
    margin-top: -228px;
  }

  .p-service__step-wrap {
    padding: 36px 18px;
  }

  .p-service__step-item {
    display: block;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .p-service__step-item p {
    font-size: 13px;
  }

  .p-service__step-heading {
    margin-bottom: 12px;
  }

  .p-service__step-heading h3 {
    font-size: 18px;
  }

  .top main {
    padding-top: 80px;
  }

  .p-top__fv {
    margin: 0;
  }

  .p-top__fv__arrow__item {
    width: 58px;
    height: 27px;
  }

  .p-top__fv__slider {
    margin-bottom: 24px;
  }

  .p-top__fv__slider__item {
    height: auto;
    margin: 0 5px;
  }

  .p-top__fv__slider__item:hover {
    margin: 0 15px;
  }

  .p-top__fv__slider__item__cat__text {
    height: 28px;
    padding: 0 12px;
    font-size: 12px;
  }

  .p-top__fv__slider__item__title__text {
    min-height: 40px;
    padding: 6px 12px;
    font-size: 16px;
  }

  .p-top__corporation {
    padding: max(18vw,92px) 0 0;
    z-index: 2;
  }

  .p-top__head {
    background-size: 200%;
    background-position: center 13px;
    padding: 21px 10px 26px;
  }

  .p-top__head__img {
    width: 354px;
    height: auto;
    margin: 0 auto 46px;
  }

  .p-top__head__copy {
    width: 280px;
  }

  .p-top__head::before {
    width: 244vw;
    height: 300vw;
    top: 100px;
  }

  .p-top__works {
    padding: 40px 0 120px;
  }

  .p-top__works__content__cat {
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .p-top__works__content__cat>li>a {
    height: 45px;
    font-size: 14px;
    padding: 0 32px;
  }

  .p-top__works__img.img03 {
    display: block;
    width: 112px;
    bottom: -127px;
    right: 30px;
  }

  .p-top__cv {
    padding-inline: 20px;
    top: 228px;
    margin-top: -228px;
  }

  .p-top__reason {
    padding-top: 292px;
  }

  .p-top__reason__head {
    height: 253px;
    margin-top: 24px;
  }

  .p-top__reason__head__deco-l {
    width: 98px;
    top: 112px;
    left: 0;
  }

  .p-top__reason__head__deco-r {
    width: 98px;
    top: 112px;
    right: 0;
  }

  .p-top__reason__head__chara {
    width: 137px;
    bottom: -12px;
  }

  .p-top__reason__head__list {
    width: 292px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4px 24px;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-top__reason__head__list__item {
    width: 134px;
    height: 100px;
  }

  .p-top__reason__head__list__item:nth-child(1) {
    background-image: url(../images/top/reason_bg01_sp.webp);
  }

  .p-top__reason__head__list__item:nth-child(2) {
    background-image: url(../images/top/reason_bg02_sp.webp);
    margin-top: 0;
  }

  .p-top__reason__head__list__item:nth-child(3) {
    background-image: url(../images/top/reason_bg03_sp.webp);
  }

  .p-top__reason__head__list__item p:nth-child(1) {
    font-size: 13px;
  }

  .p-top__reason__head__list__item p:nth-child(2) {
    font-size: 26px;
  }

  .p-top__reason__head__list__item p:nth-child(2)>span {
    font-size: 10px;
  }

  .p-top__reason__head__list__item p:nth-child(3) {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .p-top__reason__content {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px 24px 40px;
    margin-bottom: 24px;
  }

  .p-top__reason__content__item {
    width: 100%;
  }

  .p-top__reason__content__item>.c-text {
    min-height: auto;
  }

  .p-top__reason__content__item__title {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-top__reason__content__item__title>img {
    width: 26px;
  }

  .p-top__reason__content__item__title>span {
    font-size: 20px;
  }

  .p-top__reason__content__item:first-child {
    border-right: initial;
    border-bottom: 1px solid #e5e0d2;
    padding-right: 0;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .p-top__reason__content__item:nth-child(2) {
    padding-left: 0;
  }

  .p-top__assignment {
    padding-bottom: 64px;
  }

  .p-top__assignment__list {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-top__assignment__list__item {
    width: 100%;
  }

  .p-top__assignment__list__item__head>p {
    font-size: 20px;
  }

  .p-top__assignment__list::after {
    content: none;
  }

  .p-top__assignment__illust {
    display: none;
  }

  .p-top__voice {
    background-image: url(../images/top/voice_bg_sp.webp);
    border-radius: 40px 40px 0 0;
    padding-top: 56px;
  }

  .p-top__voice__list {
    gap: 16px 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 0 calc(50% - 50vw);
  }

  .p-top__voice__list .slick-list .slick-track {
    padding-top: 14px;
    padding-bottom: 20px;
  }

  .p-top__voice__list__item {
    width: 320px !important;
    height: 367px;
  }

  .p-top__voice__list__item.left {
    -webkit-transform: rotate(-10deg) translate(26px, 40px);
    transform: rotate(-10deg) translate(26px, 40px);
  }

  .p-top__voice__list__item.left2 {
    -webkit-transform: initial;
    transform: initial;
  }

  .p-top__voice__list__item.right {
    -webkit-transform: rotate(10deg) translate(-26px, 40px);
    transform: rotate(10deg) translate(-26px, 40px);
  }

  .p-top__voice__list__item.right2 {
    -webkit-transform: initial;
    transform: initial;
  }

  .p-top__voice__list__item__link {
    padding: 16px;
    border-radius: 8px;
  }

  .p-top__voice__arrow {
    position: static;
    -webkit-transform: initial;
    transform: initial;
    margin-bottom: 42px;
  }

  .p-top__voice__arrow__item {
    width: 46px;
    height: 22px;
  }

  .p-top__voice__arrow__item::after {
    width: 16px;
    height: 7px;
  }

  .p-top__flow {
    margin-top: 285px;
    padding-bottom: 72px;
  }

  .p-top__flow__wrap {
    gap: 20px;
  }

  .p-top__flow__head {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
    width: auto;
  }

  .p-top__flow__head .c-btn {
    margin: 0;
  }

  .p-top__flow__text__wrap {
    gap: 32px;
  }

  .p-top__flow__text p {
    font-size: 14px;
  }

  .p-top__flow__content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
    gap: 24px 0;
  }

  .p-top__flow__content>img {
    width: calc(50% - 6px);
  }

  .p-top__faq {
    margin-bottom: 0;
    margin-bottom: 72px;
  }

  .p-top__faq__wrap {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    height: 192px;
    padding: 32px 20px 0;
  }

  .p-top__faq__wrap::after {
    width: 316px;
    height: 42px;
    left: 0;
    top: 30px;
  }

  .p-top__faq__head {
    width: 230px;
    gap: 0;
  }

  .p-top__faq__head>.c-title {
    line-height: 1;
  }

  .p-top__faq__head>span {
    margin-left: 40px;
    width: 44px;
    height: 23px;
  }

  .p-top__faq__content {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .p-top__faq__content>img {
    width: 150px;
  }

  .p-top__faq__title {
    width: 72px;
    top: -21px;
    left: -14px;
  }

  .p-top__column {
    padding: 50px 0 160px;
  }

  .p-top__column__wrap {
    display: block;
  }

  .p-top__column__head {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 32px;
  }

  .p-top__column__head .c-title {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-top__column__list {
    margin-bottom: 32px;
  }

  .p-top__column__illust {
    display: block;
    width: 52px;
    top: 8px;
    left: 12px;
  }

  .p-top__column__whomor {
    width: 84px;
    right: 10px;
  }

  .p-type {
    padding: 30px 0 300px;
  }

  .p-type__cat__list {
    margin-bottom: 32px;
  }

  .p-type__cat__list>li>a {
    height: 36px;
    font-size: 13px;
    padding: 0 24px;
  }

  .p-type__cat__list>li>a::after {
    content: none;
  }

  .p-type__content:not(:last-child) {
    margin-bottom: 32px;
  }

  .p-type__content__title {
    font-size: 24px;
    gap: 8px;
  }

  .p-type__content__title>img {
    width: 28px;
  }

  .p-type__content__desc {
    margin-bottom: 16px;
  }

  .p-type__content__list {
    gap: 8px;
    margin-bottom: 16px;
  }

  .p-type__content__list__wrap::-webkit-scrollbar {
    height: 4px;
    border-radius: 2px;
  }

  .p-type__content__list__wrap::-webkit-scrollbar-thumb {
    border-radius: 2px;
  }

  .p-type__content__list__item {
    width: 335px;
  }

  .p-type__content__list__item__link {
    padding: 16px;
  }

  .p-type__content__list__item__link__img__thumb {
    border: 1.8px solid #150000;
    border-radius: 9px;
  }

  .p-type__content__list__item__link__title>p {
    font-size: 15px;
  }

  .p-type__content__more {
    margin: 24px auto 0;
  }

  .p-works-single__head {
    gap: 6px;
    margin-bottom: 15px;
  }

  .p-works-single__head__item {
    min-width: 120px;
    font-size: 12px;
    min-width: 100px;
    padding: 0 24px;
    height: 28px;
  }

  .p-works-single__img {
    background: linear-gradient(to bottom, #f3f3f3 0%, #f3f3f3 30%, #edc02d 30%, #edc02d 100%);
  }

  .p-works-single__img__arrow {
    display: none;
  }

  .p-works-single__img__dots {
    display: block;
  }

  .p-works-single__img__dots .slick-dots {
    width: calc(100vw - 40px);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    top: 16px;
  }

  .p-works-single__img__dots .slick-dots>li {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #d1ad38;
    height: 4px;
    margin: 0;
  }

  .p-works-single__img__dots .slick-dots>li>button::before {
    content: none;
  }

  .p-works-single__img__dots .slick-dots .slick-active {
    background-color: #a17d0b;
  }

  .p-works-single__img__slide__item {
    max-width: 329px;
  }

  .p-works-single__img__slide__item.right {
    -webkit-transform: translatex(-30px) scale(0.76);
    transform: translatex(-30px) scale(0.76);
  }

  .p-works-single__img__slide__item.right2 {
    -webkit-transform: translatex(-99px) scale(0.76);
    transform: translatex(-99px) scale(0.76);
  }

  .p-works-single__youtube {
    background: linear-gradient(to bottom, #f3f3f3 0%, #f3f3f3 30%, #edc02d 30%, #edc02d 100%);
  }

  .p-works-single__bg-yellow {
    padding: 40px 0 300px;
  }

  .p-works-single__detail {
    padding: 24px;
    margin-bottom: 56px;
  }

  .p-works-single__detail__item {
    padding-bottom: 14px;
    width: 100%;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
  }

  .p-works-single__detail__item>p:nth-child(1) {
    font-size: 12px;
  }

  .p-works-single__detail__item>p:nth-child(2) {
    font-size: 14px;
    font-weight: 700;
  }

  .p-works-single__suggestion {
    margin-bottom: 56px;
  }

  .p-works-single__related {
    margin-bottom: 56px;
  }

  .p-works-single__related__title {
    margin-bottom: 12px;
  }

  .p-works-single__related__wrap {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 24px;
  }

  .p-works-single__related__wrap .slick-list .slick-track {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
  }

  .p-works-single__related__wrap .slick-list .c-card {
    width: 100%;
    max-width: 335px;
  }

  .p-works-single__related__dots {
    display: block;
  }

  .p-works-single__related__dots .slick-dots {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    top: -16px;
  }

  .p-works-single__related__dots .slick-dots>li {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #d1ad38;
    height: 4px;
    margin: 0;
  }

  .p-works-single__related__dots .slick-dots>li>button::before {
    content: none;
  }

  .p-works-single__related__dots .slick-dots .slick-active {
    background-color: #a17d0b;
  }

  .p-works {
    padding: 30px 0 300px;
  }

  .p-works__content__list {
    padding-top: 32px;
  }

  .p-works__current-type {
    margin-top: 32px;
  }

  .p-works__cat__list {
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .p-works__cat__list>li>a {
    height: 45px;
    font-size: 14px;
    padding: 0 32px;
  }

  .p-works__tag__list {
    padding: 24px 16px;
  }

  .p-works__tag__list__item {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }

  .p-works__tag__list__item__child>li>a {
    font-size: 12px;
    padding: 4px 10px;
  }

  .p-works__company-newsletter {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__wrap {
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .l-footer__link {
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .p-top__corporation__list {
    display: none;
  }

  .p-top__corporation__loop {
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .c-page-header__img.works {
    display: block;
    width: 158px;
    left: initial;
    -webkit-transform: initial;
    transform: initial;
    right: -10px;
    bottom: 29px;
  }

  .c-page-header.bg-arch::before {
    background-image: url(../images/page-header/bg_sp.webp);
    height: 18vw;
    bottom: -4px;
  }
}

@media screen and (max-width: 500px) {
  .l-footer.lower {
    padding-top: 260px;
  }
}