@charset "UTF-8";
/*
 * サイト共通部品 @Component
 * ボタン周り
 * 接頭辞「c-」を使用した方が分かりやすいが、
 * これまでの管理上、接頭辞なしで運用中
 */
.footer {
  padding-bottom: 32px;
  background-color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer {
    padding-bottom: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 9.3333333333vw;
  }
}

.footer-inner {
  max-width: 1080px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-inner {
    max-width: 84.375vw;
  }
}
@media (max-width: 767px) {
  .footer-inner {
    display: block;
    position: relative;
    width: 100%;
    padding: 8.5333333333vw 0;
  }
}

.footer-col:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 32px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-col:nth-child(1) {
    margin-top: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer-col:nth-child(1) {
    margin-top: 0;
    display: block;
  }
}

@media (max-width: 767px) {
  .footer-col:nth-child(2) {
    position: absolute;
    top: 4.2666666667vw;
    right: 6.4vw;
  }
}

.footer-logo {
  width: 128px;
  height: auto;
  display: inline-block;
  margin-right: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-logo {
    width: 10vw;
    margin-right: 3.75vw;
  }
}
@media (max-width: 767px) {
  .footer-logo {
    width: 26.9333333333vw;
    display: block;
    margin: 0 auto 0 6.4vw;
  }
}

.footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-list {
    gap: 1.875vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4.2666666667vw 8vw;
    margin-top: 8vw;
  }
}

.footer-nav-item a {
  color: #07080C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-item a {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-item a {
    font-size: 3.2vw;
  }
}

.footer-icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-icon-list a img {
  width: 80px;
  height: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-icon-list a img {
    width: 6.25vw;
  }
}
@media (max-width: 767px) {
  .footer-icon-list a img {
    width: 16vw;
  }
}

.footer-copyright {
  width: 100%;
  color: #666;
  font-size: 10px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  margin: 16px auto 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-copyright {
    font-size: 0.78125vw;
    margin: 1.25vw auto 0;
  }
}
@media (max-width: 767px) {
  .footer-copyright {
    display: block;
    text-align: center;
    font-size: 3.2vw;
    color: #666;
    padding: 1.0666666667vw;
    background-color: unset;
    margin-top: 0;
  }
}

.footer-privacymark {
  width: 72px;
  height: 72px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-privacymark {
    width: 5.625vw;
    height: 5.625vw;
  }
}
@media (max-width: 767px) {
  .footer-privacymark {
    width: 16vw;
    height: 16vw;
  }
}

/* ------------------------
  reset
------------------------ */
html,
body {
  height: 100%;
}

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

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

pre,
textarea {
  overflow: auto;
}

[hidden],
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

audio:not([controls]) {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border-style: none;
  background-color: transparent;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
}

ol,
ul {
  list-style: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset {
  border: 0;
}

em {
  font-style: normal;
}

/* --------------------------------
  general
-------------------------------- */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2rem);
            transform: translateY(-2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-in-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2rem);
            transform: translateY(-2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade-in-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-in-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2rem);
            transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2rem);
            transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes rotate-front {
  0% {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes rotate-front {
  0% {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@-webkit-keyframes rotate-back {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
}
@keyframes rotate-back {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
}
/* --------------------------------
  to-b
-------------------------------- */
@-webkit-keyframes bar-graph {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
@keyframes bar-graph {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
@-webkit-keyframes chart-text {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
@keyframes chart-text {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
@-webkit-keyframes doughnut-chart-text {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(-210%);
    clip-path: inset(-210%);
  }
}
@keyframes doughnut-chart-text {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(-210%);
    clip-path: inset(-210%);
  }
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* --------------------------------
  to-c
-------------------------------- */
@-webkit-keyframes speech-bubble {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translateY(2rem);
            transform: scale(0) translateY(2rem);
  }
  100% {
    opacity: 1;
    scale: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@keyframes speech-bubble {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translateY(2rem);
            transform: scale(0) translateY(2rem);
  }
  100% {
    opacity: 1;
    scale: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
.l-contents {
  position: relative;
}

@media (max-width: 767.98px) {
  .l-contents {
    margin: 0 6rem;
  }
}
@media (min-width: 768px) {
  .l-contents {
    margin: 0 auto;
    width: 100%;
    max-width: 122rem;
    padding: 0 6rem;
  }
}
.l-section-body {
  padding-top: var(--section-padding-top, 12.8rem);
  padding-bottom: var(--section-padding-bottom, 12.8rem);
}

@media (min-width: 768px) {
  .l-section-body {
    padding-top: var(--section-padding-top, 8.8rem);
    padding-bottom: var(--section-padding-bottom, 8.8rem);
  }
}
.l-section-body.-pb-0 {
  padding-bottom: 0;
}

.c-text {
  letter-spacing: 0.1em;
  text-align: justify;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .c-text {
    line-height: 2.1;
  }
}
.c-text-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  vertical-align: text-bottom;
  line-height: 1.5;
}

.c-text-link::after {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  top: 0.1em;
  left: 0;
  margin-left: 1rem;
  border-style: solid;
  border-width: 0.2rem 0.2rem 0 0;
  width: 0.5em;
  height: 0.5em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (min-width: 768px) {
  .c-text-link::after {
    margin-left: 0.6rem;
    border-width: 0.1rem 0.1rem 0 0;
  }
}
@media (hover: hover) {
  .c-text-link {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
  }
  .c-text-link::after {
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  }
  .c-text-link:hover {
    opacity: 0.7;
  }
  .c-text-link:hover::after {
    -webkit-transform: translateX(0.4rem) rotate(45deg);
            transform: translateX(0.4rem) rotate(45deg);
  }
}
.c-heading {
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
  font-size: 2rem;
  color: #000;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .c-heading {
    font-size: 2.6rem;
  }
}
.c-heading > em {
  font-size: 4.8rem;
}

@media (min-width: 768px) {
  .c-heading > em {
    font-size: 4rem;
    line-height: 1.6;
    letter-spacing: 0.07em;
  }
}
.c-arrow {
  position: relative;
}

.c-arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -1em;
  bottom: 0;
  margin: auto;
  width: 0.36em;
  height: 0.72em;
  background-color: #000;
  -webkit-clip-path: polygon(0.5px 0, 100% 50%, 0.5px 100%, 0 calc(100% - 0.5px), calc(100% - 1px) 50%, 0 0.5px);
  clip-path: polygon(0.5px 0, 100% 50%, 0.5px 100%, 0 calc(100% - 0.5px), calc(100% - 1px) 50%, 0 0.5px);
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: var(--button-bg-color, #000);
  -webkit-box-shadow: 0.5rem 0.2rem 2rem 0 rgba(64, 64, 65, 0.2);
          box-shadow: 0.5rem 0.2rem 2rem 0 rgba(64, 64, 65, 0.2);
  padding-right: 2em;
  padding-left: 2em;
  letter-spacing: 0.1em;
  line-height: 1.3;
  font-size: 4rem;
  font-weight: 700;
  width: 100%;
  min-height: 10rem;
  border-radius: 9999px;
  color: #fff;
}

@media (hover: hover) {
  .c-button {
    -webkit-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
    cursor: pointer;
  }
  .c-button:hover {
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    opacity: 0.7;
    text-decoration: none;
  }
}
@media (min-width: 768px) {
  .c-button {
    font-size: 2.2rem;
    min-height: 6rem;
  }
}
.c-button.-arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  width: 0.36em;
  height: 0.72em;
  background-color: #fff;
  -webkit-clip-path: polygon(1px 0, 100% 50%, 1px 100%, 0 calc(100% - 1px), calc(100% - 2px) 50%, 0 1px);
  clip-path: polygon(1px 0, 100% 50%, 1px 100%, 0 calc(100% - 1px), calc(100% - 2px) 50%, 0 1px);
}

.c-button.-arrow.-down::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-button.-small {
  min-height: 7.6rem;
  font-size: 2.4rem;
}

@media (min-width: 768px) {
  .c-button.-small {
    min-height: 4rem;
    font-size: 1.6rem;
  }
}
.c-button.-small::after {
  right: 0.6em;
}

.c-button.-attention {
  background-color: var(--button-bg-color, #000);
  color: #fff;
}

.c-button[target=_blank]::after,
[target=_blank] .c-button::after {
  content: "";
  display: block;
  position: absolute;
  right: 2.4rem;
  width: 1em;
  height: 1em;
  background: top/100% no-repeat url("/img/common/icon_another-window.png");
}

@media (min-width: 768px) {
  .c-button[target=_blank]::after,
  [target=_blank] .c-button::after {
    right: 1.5rem;
  }
}
.c-icon {
  max-width: 1em;
  max-height: 1.2em;
}

.c-ring-chart {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.c-ring-chart-container {
  position: relative;
}

.c-ring-chart-item {
  position: relative;
  width: 31rem !important;
  height: 31rem !important;
}

@media (max-width: 767.98px) {
  .c-ring-chart-item {
    top: -2rem;
    left: -1rem;
  }
}
@media (min-width: 768px) {
  .c-ring-chart-item {
    top: -1rem;
    left: -1rem;
    width: 22rem !important;
    height: 22rem !important;
  }
}
.c-marker {
  background-position: 0 85%;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--decoration-color, #e3ec29, var(--decoration-color, #e3ec29))));
  background-image: linear-gradient(var(--decoration-color, #e3ec29, var(--decoration-color, #e3ec29)));
  background-size: 100% 5%;
}

.u-hidden-up-sm {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-down-sm {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 768px) {
  .u-hidden-up-md {
    display: none !important;
    visibility: hidden;
  }
}
@media (max-width: 1023.98px) {
  .u-hidden-down-md {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 1024px) {
  .u-hidden-up-lg {
    display: none !important;
    visibility: hidden;
  }
}
@media (max-width: 1279.98px) {
  .u-hidden-down-lg {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 1280px) {
  .u-hidden-up-xl {
    display: none !important;
    visibility: hidden;
  }
}
.u-hidden-down-xl {
  display: none !important;
  visibility: hidden;
}

.u-visuallyhidden {
  position: absolute;
  overflow: hidden;
  border: 0;
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  clip: rect(0 0 0 0);
}

.u-overflow-hidden {
  overflow: hidden !important;
}

.u-upper-case {
  text-transform: uppercase;
}

.u-bold {
  font-weight: 500;
}

.u-tac {
  text-align: center;
}

.u-tal {
  text-align: left;
}

.u-lh-0 {
  line-height: 0;
}

.u-font-crimson {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
}

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

:root {
  font-family: "A P-OTF Gothic MB101 Pr6N", "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.85;
  color: #000;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: 1.3333333vw;
}

@media (min-width: 768px) {
  :root {
    font-size: 10px;
  }
}
@media (min-width: 1024px) {
  :root {
    font-size: 10px;
  }
}
@media (min-width: 1280px) {
  :root {
    font-size: 10px;
  }
}
body {
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  max-width: 2000px;
  margin: 0 auto;
  font-size: 2.8rem;
}

@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}
@media (min-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    cursor: text;
  }
}
button {
  letter-spacing: inherit;
}

ul,
li {
  list-style: none;
}

picture,
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  line-height: 1;
  font-size: 0;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 1px;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.modal-container {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 0 4.5rem;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s, visibility 0s 0.3s;
}

.modal-container.is-active {
  overflow-y: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s, visibility 0s 0s;
  transition: opacity 0.3s, visibility 0s 0s;
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
}

.modal-inner {
  position: relative;
  width: 100%;
  pointer-events: none;
  max-width: 800px;
}

.modal-content {
  display: none;
  position: relative;
  pointer-events: painted;
  max-width: 100rem;
  margin: 0 auto;
}

.modal-content::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}

.modal-content iframe {
  border: none;
}

.modal-content iframe,
.modal-content img,
.modal-content video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.modal-container.is-active .modal-content {
  overflow-y: auto;
  display: block;
}

.modal_backdrop {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
}

.modal_close-btn {
  position: absolute;
  z-index: 1;
  top: -9rem;
  right: -3rem;
  pointer-events: painted;
  width: 10rem;
  height: 10rem;
  min-height: auto;
}

@media (min-width: 768px) {
  .modal_close-btn {
    top: -7rem;
    right: -3rem;
    width: 8rem;
    height: 8rem;
  }
}
.modal_close-btn::before,
.modal_close-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 3rem;
  height: 2px;
  background-color: var(--button-gradation-color-1, #0005cb);
}

.modal_close-btn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal_close-btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

:root {
  --button-gradation-color-1: #fff;
  --button-gradation-color-2: #fff;
}

/* --------------------------------
  header
-------------------------------- */
.header {
  z-index: 10;
  width: 100%;
  top: 0;
}
@media (min-width: 768px) {
  .header {
    position: sticky;
    max-width: 2000px;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
    background-color: #fff;
  }
}
@media (min-width: 768px) {
  .header.-is-black {
    background-color: #fff;
  }
}
.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 767.98px) {
  .header_inner {
    padding: 3rem 2.6rem;
  }
}
@media (min-width: 768px) {
  .header_inner {
    padding: 0.4rem 4rem;
    margin: 0 auto;
  }
}

.header_logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) {
  .header_logo {
    margin-right: 2rem;
  }
}
.header_logo svg {
  width: 15.2rem;
  height: 4.8rem;
}

@media (min-width: 768px) {
  .header_logo svg {
    width: 10rem;
    height: 3.2rem;
  }
}
.-is-black .header_logo svg {
  fill: #000;
}

.header_logo-text {
  font-family: "Noto Sans JP", sans-sans-serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .header_logo-text {
    margin-left: 1.6rem;
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .header_logo-text {
    margin-right: 2rem;
    font-size: 1.4rem;
  }
}
.-is-black .header_logo-text {
  color: #000;
}

.header_link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767.98px) {
  .header_link-container {
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
  .header_link-container.is-active {
    opacity: 1;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
}
@media (max-width: 767.98px) {
  .header_link-container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: fixed;
    bottom: 4rem;
    right: 0;
  }
}
@media (min-width: 768px) {
  .header_link-container {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: auto;
    padding: 1rem 0;
  }
}
.header_text-link {
  font-family: "Noto Sans JP", sans-sans-serif;
  margin-right: 4rem;
}

@media (min-width: 768px) {
  .header_text-link {
    letter-spacing: 0.1em;
  }
}
.-is-black .header_text-link {
  color: #000;
}

.header_button {
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 767.98px) {
  .header_button .c-button {
    font-size: 2.8rem;
    width: 42rem;
    height: 12rem;
    padding-left: 1rem;
    padding-right: 2rem;
    gap: 1rem;
    background-color: #d6df20;
  }
}
@media (min-width: 768px) {
  .header_button .c-button {
    padding-right: 4.7rem;
    padding-left: 3.7rem;
  }
}
.header_button .c-button.-arrow::after {
  right: 1em;
}

.header_button svg {
  fill: currentColor;
}

.header_button img {
  margin: 0 auto;
  width: auto;
  height: 2rem;
}

@media (min-width: 768px) {
  .header_button img {
    height: 1.6rem;
  }
}
/* --------------------------------
  main-visual
-------------------------------- */
.main-visual {
  position: relative;
}
.main-visual_button {
  z-index: 2;
}
.main-visual_tamaki {
  position: absolute;
  bottom: 0;
  width: 50%;
  left: 10%;
}
@media (max-width: 767.98px) {
  .main-visual_tamaki {
    position: absolute;
    bottom: 0;
    width: 70%;
    left: inherit;
    top: inherit;
    right: 0;
  }
}
.main-visual_txt {
  position: absolute;
  width: 43%;
  position: absolute;
  top: 50%;
  right: 13%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (max-width: 767.98px) {
  .main-visual_txt {
    width: 70%;
    position: absolute;
    bottom: -12%;
    left: 3%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    right: inherit;
    top: inherit;
    padding-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .main-visual_button {
    position: fixed;
    right: 0;
    width: 42.1rem;
    height: 12rem;
    opacity: 0;
    -webkit-transition: opacity 0.2s, top 0.2s;
    transition: opacity 0.2s, top 0.2s;
    bottom: 5%;
  }
}
@media (min-width: 768px) {
  .main-visual_button {
    bottom: 4%;
    right: 19%;
    width: 31%;
    height: 15%;
    position: absolute;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .main-visual_button {
    -webkit-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
    cursor: pointer;
  }
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .main-visual_button {
    bottom: 10% !important;
    right: 52% !important;
    width: 23% !important;
    height: 15% !important;
    position: absolute !important;
  }
}
@media (min-width: 1024px) {
  .main-visual_button {
    bottom: 10%;
    right: 52%;
    width: 23%;
    height: 15%;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .main-visual_button:hover {
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    opacity: 0.7;
    text-decoration: none;
    color: inherit;
  }
}
.main-visual_button a {
  display: block;
}
@media (max-width: 767.98px) {
  .main-visual_button.-is-active {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .main-visual_button.-is-fixed {
    top: 88rem;
  }
}

/* --------------------------------
  about
-------------------------------- */
.about {
  position: relative;
}

@media (min-width: 768px) {
  .about {
    --section-padding-top: 6.5rem;
    --section-padding-bottom: 9.5rem;
  }
}
.about::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(208, 223, 0, 0)), to(rgba(208, 223, 0, 0.3)));
  background: linear-gradient(180deg, rgba(208, 223, 0, 0) 0%, rgba(208, 223, 0, 0.3) 100%);
}

.about_sub-heading {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.4285714286;
  font-weight: 700;
}

@media (min-width: 768px) {
  .about_sub-heading {
    font-size: 2rem;
  }
}
.about_heading {
  margin-top: 0.8rem;
}

.about_heading > em {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #D0DF00), color-stop(90%, transparent));
  background: linear-gradient(transparent 60%, #D0DF00 60% 90%, transparent 90%);
}

@media (max-width: 767.98px) {
  .about_heading {
    margin: 0 -6rem;
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  .about_heading > em {
    margin-right: -0.5em;
    font-size: 3.6rem;
  }
}
.about_body {
  text-align: left;
}

@media (min-width: 768px) {
  .about_body {
    margin-top: 5.8rem;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .about_img {
    margin-top: 5rem;
  }
}
@media (min-width: 768px) {
  .about_img {
    -ms-flex-preferred-size: calc((100% - 6.2rem) / 2);
        flex-basis: calc((100% - 6.2rem) / 2);
  }
}
.about_text-container {
  font-family: "Noto Sans JP", sans-sans-serif;
}

.about_text {
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 40px;
}

@media (max-width: 767.98px) {
  .about_text {
    font-size: 2.8rem;
    margin-top: 5px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .about_text {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}
.about_text > picture,
.about_text img {
  max-width: 24.6rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .about_text > picture,
  .about_text img {
    max-width: 20.5rem;
  }
}
.about_text em {
  display: block;
  color: #000;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .about_text em {
    margin: 3.5rem -5rem;
    font-size: 2.9rem;
    letter-spacing: 0;
    line-height: 1.6470588235;
  }
}
@media (min-width: 768px) {
  .about_text em {
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-size: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.5833333333;
  }
}
.about_text + .about_text {
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .about_text + .about_text {
    margin-top: 3.2rem;
  }
}
.about_text-decoration {
  position: relative;
}

.about_text-decoration::after,
.about_text-decoration::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background-color: #000;
  height: 1px;
  width: calc(50% - 22.5rem);
}

.about_text-decoration::before {
  left: 5.5rem;
}

@media (max-width: 767.98px) {
  .about_text-decoration::before {
    left: 0rem;
  }
}
.about_text-decoration::after {
  right: 5.5rem;
}

@media (max-width: 767.98px) {
  .about_text-decoration::after {
    right: 0rem;
  }
}
.results-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 900px) {
  .results-list {
    display: block;
  }
}
.results-list .results-list-item {
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 25px;
  position: relative;
  margin-top: 20px;
  width: 100%;
  display: grid;
  place-items: center;
}
@media (max-width: 900px) {
  .results-list .results-list-item {
    padding: 25px;
    margin-top: 54px;
  }
}
.results-list .results-list-item .results-list-item-title {
  display: inline-block;
  position: absolute;
  top: -20px;
  letter-spacing: -0.3px;
  line-height: 1.4;
  background: #d0e000;
  font-size: 20px;
  font-weight: 700;
  border-radius: 40px;
  padding: 3px 15px;
}
@media (max-width: 1200px) {
  .results-list .results-list-item .results-list-item-title {
    font-size: 18px;
    top: -18px;
  }
}
@media (max-width: 1000px) {
  .results-list .results-list-item .results-list-item-title {
    font-size: 16px;
    top: -16px;
  }
}
@media (max-width: 900px) {
  .results-list .results-list-item .results-list-item-title {
    font-size: 18px;
    top: -18px;
  }
}
.results-list .results-list-item .results-list-item-body {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.results-list .results-list-item .results-list-item-body strong {
  font-size: 72px;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media screen and (min-width: 900px) and (max-width: 1200px) {
  .results-list .results-list-item .results-list-item-body strong {
    font-size: 50px;
  }
}
.results-list .results-list-item .results-list-item-body .l-font {
  font-size: 40px;
}
@media screen and (min-width: 900px) and (max-width: 1200px) {
  .results-list .results-list-item .results-list-item-body .l-font {
    font-size: 30px;
  }
}
.results-list .results-list-item .results-list-item-body .align-right {
  text-align: right;
}
.results-list .results-list-item .results-list-item-notice {
  position: absolute;
  bottom: -24px;
  right: 0;
  color: #CCC;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.about_text-message {
  margin: 65px 0 15px;
  font-size: 20px;
  line-height: 40px;
  font-weight: 400;
}
@media (max-width: 900px) {
  .about_text-message {
    font-size: 15px;
    text-align: center;
    line-height: 28px;
    margin-top: 45px;
  }
  .about_text-message br.is-sp {
    display: block;
  }
}

.about_text-message-marker {
  display: inline;
  font-size: 26px;
  font-weight: 700;
  margin-top: 14px;
  line-height: 32px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #D0DF00));
  background: linear-gradient(transparent 75%, #D0DF00 75%);
}
@media (max-width: 900px) {
  .about_text-message-marker {
    font-size: 18px;
    line-height: 18px;
    display: block;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.about_text-container br.is-sp {
  display: none;
}
@media (max-width: 900px) {
  .about_text-container br.is-sp {
    display: block;
  }
}

.about_min {
  display: inline;
  vertical-align: baseline;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .about_min {
    font-size: 4.8rem;
  }
}
@media (min-width: 768px) {
  .about_min {
    font-size: 2.8rem;
  }
}
.logo-container .clt_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767.98px) {
  .logo-container .clt_logo {
    width: 100%;
  }
}
.logo-container .clt_logo li {
  width: 25%;
}
@media (max-width: 767.98px) {
  .logo-container .clt_logo li {
    width: 33%;
  }
}

/* --------------------------------
  point
-------------------------------- */
.point {
  overflow: hidden;
  position: relative;
  --section-padding-top: 15.8rem;
}

@media (min-width: 768px) {
  .point {
    --section-padding-top: 9.2rem;
    --section-padding-bottom: 9.2rem;
  }
}
.point_heading {
  position: relative;
  text-align: center;
  color: #000;
}

.point_text {
  font-family: "Noto Sans JP", sans-sans-serif;
  position: relative;
  z-index: 1;
  margin-top: 2.6rem;
  text-align: center;
}

@media (min-width: 768px) {
  .point_text {
    margin-top: 3.6rem;
    line-height: 2;
  }
}
.point_description-list {
  margin-top: 6.2rem;
}

@media (min-width: 768px) {
  .point_description-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 4rem;
    gap: 4.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.point_description-list-inner {
  border: 0.4rem solid rgba(0, 142, 163, 0.5);
  border-radius: 2rem;
  padding: 2.4rem 2.4rem 4rem;
}

@media (min-width: 768px) {
  .point_description-list-inner {
    border: 0.2rem solid rgba(0, 142, 163, 0.5);
    border-radius: 1rem;
    -ms-flex-preferred-size: 33rem;
        flex-basis: 33rem;
    padding: 1.6rem 2.2rem 2.8rem;
  }
}
@media (max-width: 767.98px) {
  .point_description-list-inner + .point_description-list-inner {
    margin-top: 3.2rem;
  }
}
.point_description-list-inner > dt {
  border-radius: 1rem;
  background-color: #00a4bc;
  color: #fff;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  padding: 1.6rem 0;
}

@media (min-width: 768px) {
  .point_description-list-inner > dt {
    border-radius: 0.5rem;
    font-size: 2.4rem;
    padding: 1rem 0;
  }
}
.point_description-list-inner > dd {
  font-family: "A P-OTF Gothic MB101 Pr6N", sans-serif;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .point_description-list-inner > dd {
    margin-top: 2rem;
  }
}
.point_description-list-inner > dd span {
  font-size: 7rem;
  font-weight: normal;
}

@media (min-width: 768px) {
  .point_description-list-inner > dd span {
    font-size: 4.8rem;
    margin-right: 0.1em;
    margin-top: -0.2em;
  }
}
.point_description-list-img {
  width: 17rem;
  height: 17rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .point_description-list-img {
    margin-top: -2rem;
  }
}
@media (min-width: 768px) {
  .point_description-list-img {
    width: 8.2rem;
    height: 8.2rem;
  }
}
.point_description-list-text {
  font-size: 3.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3684210526;
}

@media (min-width: 768px) {
  .point_description-list-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 4.4rem;
    margin-top: 2.4rem;
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }
}
/* --------------------------------
  voice
-------------------------------- */
.voice {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .voice {
    --section-padding-top: 13.6rem;
    --section-padding-bottom: 11.8rem;
  }
}
@media (min-width: 768px) {
  .voice {
    --section-padding-top: 10rem;
    --section-padding-bottom: 10rem;
  }
}
.voice_box {
  background: radial-gradient(50% 50% at 50% 50%, rgba(208, 223, 0, 0.2) 0%, rgba(208, 223, 0, 0) 100%);
}

.voice_heading {
  position: relative;
  color: #000;
  font-size: 4.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .voice_heading {
    margin-top: 7.5rem;
  }
}
@media (max-width: 767.98px) {
  .voice_heading {
    margin-left: -6rem;
    margin-right: -6rem;
    margin-top: 8rem;
  }
}
.voice_heading em {
  display: block;
}

@media (min-width: 768px) {
  .voice_heading em {
    font-size: 3.2rem;
    line-height: 1.3125;
  }
}
@media (max-width: 767.98px) {
  .voice_heading em {
    font-size: 4rem;
    line-height: 1.45;
  }
}
.voice_heading span {
  position: relative;
  z-index: 1;
}

.voice_heading img {
  position: absolute;
  z-index: 0;
  top: -1.4rem;
  left: -2.2rem;
  right: 0;
  margin: 0 auto;
  width: 47rem;
}

@media (min-width: 768px) {
  .voice_heading img {
    top: -3.6rem;
    width: 58.5rem;
  }
}
.voice_lead_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767.98px) {
  .voice_lead_container {
    margin-top: 0.8rem;
    margin-right: 3rem;
    margin-left: 3rem;
    padding-bottom: 4.2rem;
  }
}
@media (min-width: 768px) {
  .voice_lead_container {
    gap: 2rem;
    margin-top: 3.2rem;
    padding-bottom: 3rem;
  }
}
.voice_lead-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .voice_lead-left {
    gap: 2.8rem;
  }
}
@media (min-width: 768px) {
  .voice_lead_icon {
    width: 9rem;
    height: 4.7rem;
  }
}
.voice_lead-ring {
  position: relative;
}

@media (max-width: 767.98px) {
  .voice_lead-ring {
    width: 15.4rem;
    height: 15.4rem;
  }
}
@media (min-width: 768px) {
  .voice_lead-ring {
    width: 10.2rem;
    height: 10.2rem;
  }
}
.voice_lead-ring-chart {
  position: absolute;
  top: 0;
  left: 0;
}

.voice_lead {
  color: #000;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 767.98px) {
  .voice_lead {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .voice_lead {
    font-size: 2.8rem;
  }
}
.voice_lead-ring {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.08em;
}

@media (max-width: 767.98px) {
  .voice_lead-ring {
    padding-top: 2.6rem;
  }
}
@media (min-width: 768px) {
  .voice_lead-ring {
    padding-top: 1rem;
  }
}
.voice_lead-ring em {
  letter-spacing: -0.05em;
  margin-right: 0.1em;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .voice_lead-ring em {
    font-size: 5rem;
  }
}
@media (min-width: 768px) {
  .voice_lead-ring em {
    font-size: 4rem;
  }
}
.voice_lead-ring sup {
  top: -0.6em;
  margin-left: -1rem;
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .voice_lead-ring sup {
    margin-left: -2rem;
  }
}
.voice_adviser {
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767.98px) {
  .voice_adviser {
    font-size: 4rem;
    letter-spacing: 0em;
    line-height: 1.6;
    margin: 0 -4rem;
  }
}
@media (min-width: 768px) {
  .voice_adviser {
    font-size: 4rem;
    line-height: 1.45;
  }
}
.voice_adviser em::after {
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  content: "";
  width: 100%;
  background-color: #d6df20;
}

@media (max-width: 767.98px) {
  .voice_adviser em::after {
    height: 0.6rem;
  }
}
@media (min-width: 768px) {
  .voice_adviser em::after {
    height: 0.4rem;
  }
}
.voice_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767.98px) {
  .voice_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 6rem;
    gap: 4rem;
  }
}
@media (min-width: 768px) {
  .voice_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 5.5rem;
    gap: 2.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .voice_list > li {
    min-width: 350px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 5rem) / 3);
            flex: 0 0 calc((100% - 5rem) / 3);
  }
}
.voice_card-adviser {
  position: relative;
  text-align: justify;
  line-height: 1.7;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #e5f6f8;
  background-position: top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(208, 223, 0, 0.3);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

/* .voice_card-adviser:first-child {
  background-image: url(../img/voice_list-bg-1.jpg);
}

.voice_card-adviser:nth-child(2) {
  background-image: url(../img/voice_list-bg-2.jpg);
}

.voice_card-adviser:last-child {
  background-image: url(../img/voice_list-bg-3.jpg);
} */
@media (max-width: 767.98px) {
  .voice_card-adviser {
    padding: 3rem;
  }
}
@media (min-width: 768px) {
  .voice_card-adviser {
    padding: 2rem;
    height: 100%;
    font-size: 1.4rem;
  }
}
.voice_card-adviser_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
}

.voice_card-adviser_txt {
  width: 150%;
}

.voice_card-adviser_inner {
  width: 85%;
}

.voice_card-adviser_tag {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.5rem;
  font-weight: bold;
  font-size: 2.4rem;
}

@media (min-width: 768px) {
  .voice_card-adviser_tag {
    padding-left: 0.1rem;
    font-size: 1.35rem;
  }
}
.voice_card-adviser_name {
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: left;
  font-size: 4.4rem;
}

@media (min-width: 768px) {
  .voice_card-adviser_name {
    margin-top: -0.3rem 0 -0.4rem;
    font-size: 2.8rem;
  }
}
.voice_card-adviser_name span {
  color: #A8A8A8;
  display: block;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .voice_card-adviser_name span {
    font-size: 2.4rem;
    margin-top: -0.6rem;
  }
}
@media (min-width: 768px) {
  .voice_card-adviser_name span {
    font-size: 1.4rem;
  }
}
.voice_card-adviser_text {
  font-size: 2.4rem;
  margin-top: 2rem;
}

@media (max-width: 767.98px) {
  .voice_card-adviser_text {
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .voice_card-adviser_text {
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 20px;
    font-family: "Noto Sans JP", sans-serif;
  }
}
.voice_card-worker {
  position: relative;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767.98px) {
  .voice_card-worker {
    gap: 2.4rem;
    margin-top: 3.4rem;
    padding: 3rem 5.5rem 5rem;
  }
}
@media (min-width: 768px) {
  .voice_card-worker {
    margin-top: 1.2rem;
    padding: 2rem;
    height: 25.6rem;
  }
}
.voice_card-worker_success-icon {
  position: absolute;
}

@media (max-width: 767.98px) {
  .voice_card-worker_success-icon {
    top: -1.5rem;
    left: -1.5rem;
    width: 12rem;
    height: 12rem;
  }
}
@media (min-width: 768px) {
  .voice_card-worker_success-icon {
    top: -1rem;
    left: -1rem;
    width: 5.6rem;
    height: 5.6rem;
  }
}
@media (min-width: 768px) {
  .voice_card-worker_text {
    margin-top: 2rem;
    margin-bottom: auto;
    font-family: "Noto Sans CJK JP", sans-serif;
  }
}
@media (min-width: 768px) {
  .voice_card-worker_text + .voice_card-worker_text {
    margin-top: 0.5rem;
  }
}
.voice_card-worker_text-icon {
  position: relative;
  padding-left: 3.3rem;
}

@media (max-width: 767.98px) {
  .voice_card-worker_text-icon {
    padding-left: 5.6rem;
  }
}
.voice_card-worker_text-icon::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  content: "";
  background-image: url(../img/man_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 767.98px) {
  .voice_card-worker_text-icon::before {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.voice_card-worker_text-icon.-woman::before {
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../img/woman_icon.png);
}

@media (max-width: 767.98px) {
  .voice_card-worker_text-icon.-woman::before {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media (max-width: 767.98px) {
  .voice_card-worker_annual-income {
    margin-top: 2rem;
  }
}
@media (min-width: 768px) {
  .voice_card-worker_annual-income {
    height: 8.4rem;
  }
}
.voice_note {
  margin-top: 3.2rem;
  font-size: 2.4rem;
  text-align: left;
  color: #ccc;
}
@media (max-width: 767.98px) {
  .voice_note {
    padding-left: 1.8rem;
    text-indent: -1.2rem;
  }
}
@media (min-width: 768px) {
  .voice_note {
    font-size: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .voice_note {
    text-align: center;
  }
}

/* --------------------------------
  reason
-------------------------------- */
.reason {
  position: relative;
  background: bottom/auto 51rem no-repeat url("../img/img_reason-bottom_sm.webp");
}

@media (min-width: 768px) {
  .reason {
    overflow-x: hidden;
    background: bottom/auto 276px no-repeat url("../img/img_reason-bottom_lg.webp");
  }
}
@media (max-width: 767.98px) {
  .reason {
    --section-padding-top: 7.6rem;
    --section-padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .reason {
    --section-padding-top: 8.8rem;
    --section-padding-bottom: 2rem;
  }
}
.reason::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#41cbdf), to(#fff));
  background-image: linear-gradient(to top, #41cbdf, #fff);
}

.reason_sub-heading {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.4285714286;
  font-weight: 700;
}

@media (min-width: 768px) {
  .reason_sub-heading {
    font-size: 2rem;
  }
}
.reason_heading {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .reason_heading > em {
    font-size: 4.6rem;
  }
}
@media (min-width: 768px) {
  .reason_body {
    text-align: center;
    margin-top: 4rem;
  }
}
@media (max-width: 767.98px) {
  .reason_img {
    margin-top: 5rem;
  }
}
@media (min-width: 768px) {
  .reason_img {
    -ms-flex-preferred-size: calc((100% - 6.2rem) / 2);
        flex-basis: calc((100% - 6.2rem) / 2);
  }
}
.reason_text-container {
  font-family: "Noto Sans JP", sans-sans-serif;
}

@media (max-width: 767.98px) {
  .reason_text-container {
    margin-top: 8.2rem;
  }
}
@media (min-width: 768px) {
  .reason_text-container {
    margin-top: 2rem;
    -ms-flex-preferred-size: calc((100% - 6.2rem) / 2);
        flex-basis: calc((100% - 6.2rem) / 2);
  }
}
.reason_text {
  line-height: 2;
  letter-spacing: 0.08em;
}

@media (max-width: 767.98px) {
  .reason_text::first-line {
    letter-spacing: 0.01em;
  }
}
.reason_text > picture,
.reason_text img {
  display: block;
  max-width: 46.4rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .reason_text > picture,
  .reason_text img {
    max-width: 38.4rem;
  }
}
.reason_text + .reason_text {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .reason_text + .reason_text {
    margin-top: 1.2rem;
  }
}
.reason_description-list {
  margin-top: 8.8rem;
}

@media (max-width: 767.98px) {
  .reason_description-list {
    margin-bottom: 12rem;
  }
}
@media (min-width: 768px) {
  .reason_description-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8rem 5rem;
  }
}
.reason_description-list-inner {
  display: grid;
  grid-template: "heading heading" auto "content1 content2" 1fr/1fr 1fr;
  gap: 3rem 5rem;
}

@media (min-width: 768px) {
  .reason_description-list-inner {
    -ms-flex-preferred-size: calc((100% - 5rem) / 2);
        flex-basis: calc((100% - 5rem) / 2);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.reason_description-list-inner > dt {
  grid-area: heading;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 700;
  font-size: 4rem;
}

@media (min-width: 768px) {
  .reason_description-list-inner > dt {
    font-size: 2.8rem;
  }
}
.reason_description-list-inner > dt::after {
  content: "";
  display: block;
  position: relative;
  bottom: 0;
  width: 100%;
  height: 3.6rem;
  background: top/100% no-repeat url("../img/speech-balloon_sm.png");
}

.reason_description-list-inner > dd:nth-of-type(1) {
  grid-area: content1;
}

.reason_description-list-inner > dd:nth-of-type(2) {
  grid-area: content2;
}

@media (max-width: 767.98px) {
  .reason_description-list-inner + .reason_description-list-inner {
    margin-top: 8.8rem;
  }
}
.reason_description-list-img {
  position: relative;
  border-radius: 50%;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  vertical-align: bottom;
}

@media (max-width: 767.98px) {
  .reason_description-list-img {
    width: 29rem;
    height: 29rem;
  }
}
@media (min-width: 768px) {
  .reason_description-list-img {
    width: 20rem;
    height: 20rem;
  }
}
.reason_description-list-text {
  font-family: "Noto Sans JP", sans-sans-serif;
  margin-top: 4rem;
  line-height: 1.5;
  text-align: justify;
}

@media (min-width: 768px) {
  .reason_description-list-text {
    margin-top: 3.2rem;
  }
}
.reason_description-list-note {
  font-family: "Noto Sans JP", sans-sans-serif;
  margin-top: 4rem;
  text-align: right;
  font-weight: 2rem;
}

.reason_count-up-4 {
  position: absolute;
  color: #008ea3;
  font-size: 10rem;
  letter-spacing: -0.05em;
  font-weight: bold;
}

@media (min-width: 768px) {
  .reason_count-up-4 {
    font-size: 6.4rem;
  }
}
.reason_count-up-4.-left {
  letter-spacing: -0.1em;
  top: 7.5rem;
  left: 8rem;
}

@media (min-width: 768px) {
  .reason_count-up-4.-left {
    top: 5.4rem;
    left: 5.4rem;
  }
}
.reason_count-up-4.-right {
  top: 7.5rem;
  left: 7.5rem;
}

@media (min-width: 768px) {
  .reason_count-up-4.-right {
    top: 5.4rem;
    left: 5.4rem;
  }
}
.reason_count-up-5 {
  position: absolute;
  top: 8rem;
  left: 8rem;
  color: #008ea3;
  font-size: 10rem;
  letter-spacing: -0.05em;
  font-weight: bold;
}

@media (min-width: 768px) {
  .reason_count-up-5 {
    font-size: 6.4rem;
  }
}
.reason_count-up-5.-left {
  top: 7.5rem;
  left: 8rem;
}

@media (min-width: 768px) {
  .reason_count-up-5.-left {
    top: 5.4rem;
    left: 5.4rem;
  }
}
.reason_count-up-5.-right {
  top: 7rem;
  left: 7rem;
}

@media (min-width: 768px) {
  .reason_count-up-5.-right {
    top: 5.4rem;
    left: 5rem;
  }
}
/* --------------------------------
  conversion
-------------------------------- */
.conversion {
  --section-padding-top: 8rem;
  --section-padding-bottom: 8rem;
}

@media (min-width: 768px) {
  .conversion {
    --section-padding-top: 4.4rem;
    --section-padding-bottom: 4.4rem;
  }
}
.conversion_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.conversion_lead {
  font-size: 2.8rem;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .conversion_lead {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .conversion_lead {
    font-size: 2rem;
  }
}
.conversion_button {
  width: 100%;
}

@media (max-width: 767.98px) {
  .conversion_button {
    margin-top: 2rem;
    text-align: center;
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
  }
}
@media (min-width: 768px) {
  .conversion_button {
    margin-top: 1.2rem;
    width: 45rem;
  }
}
.conversion_button .c-button {
  padding: 2rem 1.4rem 2.4rem 0;
  font-size: 3.6rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

@media (min-width: 768px) {
  .conversion_button .c-button {
    padding: 1.8rem 0 1.8rem 0;
    font-size: 2.2rem;
  }
}
@media (max-width: 767.98px) {
  .conversion_button .c-button {
    width: 95%;
    min-height: 9rem;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(255, 255, 255, 0.5);
            box-shadow: 0px 0px 40px 0px rgba(255, 255, 255, 0.5);
  }
}
.conversion_button svg {
  fill: currentColor;
}

.conversion_button img {
  margin: 0 auto;
  width: auto;
  height: 3.8rem;
}

@media (min-width: 768px) {
  .conversion_button img {
    height: 2.2rem;
  }
}
@media (max-width: 767.98px) {
  .voice_conversion-container {
    --section-padding-top: 0;
    --section-padding-bottom: 0;
  }
}
/* --------------------------------
  contact
-------------------------------- */
.contact {
  --section-padding-top: 13.2rem;
}

.contact_inner {
  background-color: #D5E033;
  color: #000;
}

@media (min-width: 768px) {
  .contact_inner {
    --section-padding-bottom: 15rem;
  }
}
.contact_text {
  font-size: 2.6rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .contact_text {
    margin: 0 -3rem;
  }
  .contact_lead {
    margin-top: 12px;
  }
  .l-section-body {
    padding-top: var(--section-padding-top, 8.8rem);
    padding-bottom: var(--section-padding-bottom, 8.8rem);
  }
}
@media (min-width: 768px) {
  .contact_text {
    font-size: 2rem;
  }
}
.contact_lead {
  font-family: "A P-OTF Gothic MB101 Pr6N", "Noto Sans JP", sans-serif;
  font-size: 4.4rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4074074074;
}

@media (min-width: 768px) {
  .contact_lead {
    margin-top: 0.8rem;
    font-size: 4.6rem;
    line-height: 1.2777777778;
  }
}
.contact-form_input-list {
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .contact-form_input-list {
    margin: 5rem auto 0;
    max-width: 80rem;
  }
}
@media (min-width: 768px) {
  .contact-form_input-list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact-form_input-list > li + li {
  margin-top: 2.4rem;
}

@media (min-width: 768px) {
  .contact-form_input-list > li + li {
    margin-top: 3rem;
  }
}
.contact-form_input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.8rem;
  color: #000;
}

@media (min-width: 768px) {
  .contact-form_input-container {
    width: 100%;
  }
}
.contact-form_input-container > .contact-form__input--half {
  margin-left: 2rem;
}

@media (min-width: 768px) {
  .contact-form_input-container > .contact-form__input--half {
    margin-left: 4rem;
  }
}
.contact-form_input-container.-spinbtn {
  position: relative;
}

.contact-form_input-container.-spinbtn::before,
.contact-form_input-container.-spinbtn::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.5rem;
  margin: auto 0;
  border-right: #666 2px solid;
  border-bottom: #666 2px solid;
  width: 1rem;
  height: 1rem;
}

.contact-form_input-container.-spinbtn::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: -1rem;
}

.contact-form_input-container.-spinbtn::after {
  top: 1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contact-form_input {
  padding: 1.5rem 2rem;
  width: 100%;
  border: 1px solid #c7c7c7;
  border-radius: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
}

.contact-form_input::-moz-placeholder {
  color: #c7c7c7;
}

.contact-form_input:-ms-input-placeholder {
  color: #c7c7c7;
}

.contact-form_input::-webkit-input-placeholder {
  color: #c7c7c7;
}

.contact-form_input::-ms-input-placeholder {
  color: #c7c7c7;
}

.contact-form_input::placeholder {
  color: #c7c7c7;
}

@media (min-width: 768px) {
  .contact-form_input {
    width: 100%;
    padding: 1.3rem 2rem;
    font-size: 2rem;
  }
}
.contact-form_select {
  padding: 1.5rem 2.5rem;
  width: 100%;
  border: 1px solid #c7c7c7;
  border-radius: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #666;
  font-size: 3.2rem;
  background-color: #fff;
}
@media (min-width: 768px) {
  .contact-form_select {
    font-size: 2rem;
  }
}

.contact-form_note {
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767.98px) {
  .contact-form_note {
    margin-top: 6.2rem;
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .contact-form_note {
    margin-top: 8rem;
  }
}
.contact-form_button {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .contact-form_button {
    margin: 2rem auto 0;
    max-width: 46rem;
  }
}
.contact-form_button small {
  font-size: 1.7rem;
}

@media (min-width: 768px) {
  .contact-form_button small {
    font-size: 1.3rem;
  }
}
.contact-form_button > .c-button {
  padding-bottom: 3.5rem;
  font-family: "Noto Serif JP", serif;
}

/* --------------------------------
  problem
-------------------------------- */
.problem .l-section-body {
  padding-bottom: 0;
}
.problem-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 35px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .problem-title {
    font-size: 19px;
  }
}
.problem-title::before {
  content: "";
  width: 55px;
  height: 57px;
  display: inline;
  background-image: url("/content_assets/38nr/img/problem_title_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767.98px) {
  .problem-title::before {
    width: 34px;
    height: 45px;
  }
}
.problem-anc {
  border-radius: 8px;
  -webkit-box-shadow: 6px 12px 36px 0px rgba(66, 69, 21, 0.12);
          box-shadow: 6px 12px 36px 0px rgba(66, 69, 21, 0.12);
  position: relative;
}
@media (max-width: 767.98px) {
  .problem-anc {
    display: block;
  }
}
.problem-anc:hover {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  opacity: 0.7;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .problem-anc + .problem-anc {
    margin-top: 20px;
  }
}
.problem-anc-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 72px;
}
@media (max-width: 767.98px) {
  .problem-anc-box {
    display: block;
    margin-top: 47px;
  }
}
.problem-anc-img {
  position: relative;
}
.problem-anc-img::before {
  content: "";
  width: 120px;
  height: 100px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/content_assets/38nr/img/problem_anc01_flag.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-anc-img::before {
    width: 10vw;
    height: 9vw;
  }
}
@media (max-width: 767.98px) {
  .problem-anc-img::before {
    width: 91px;
    height: 76px;
  }
}
.problem-anc[href*="#anc-answer02"] .problem-anc-img::before {
  background-image: url("/content_assets/38nr/img/problem_anc02_flag.svg");
}
.problem-anc[href*="#anc-answer03"] .problem-anc-img::before {
  background-image: url("/content_assets/38nr/img/problem_anc03_flag.svg");
}
.problem-anc-txt {
  background-color: #fff;
  padding: 24px 0 45px 0;
  text-align: center;
  border-radius: 0 0 8px 8px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-anc-txt {
    padding: 2.1818181818vw 0 4.0909090909vw 0;
  }
}
@media (max-width: 767.98px) {
  .problem-anc-txt {
    padding: 14px 20px;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.problem-anc-txt::after {
  content: "";
  width: 15px;
  height: 7.5px;
  background-image: url("/content_assets/38nr/img/problem_anc_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 19px;
  left: calc(50% - 7.5px);
}
@media (max-width: 767.98px) {
  .problem-anc-txt::after {
    position: unset;
  }
}
.problem-anc-txt p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .problem-anc-txt p {
    font-size: 16px;
  }
}
.problem-appeal {
  position: relative;
  z-index: 1;
  margin-top: 90px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(249, 253, 68)), color-stop(rgb(224, 238, 56)), to(rgb(193, 224, 0)));
  background-image: linear-gradient(rgb(249, 253, 68), rgb(224, 238, 56), rgb(193, 224, 0));
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-appeal {
    margin-top: 8.1818181818vw;
  }
}
@media (max-width: 767.98px) {
  .problem-appeal {
    margin-top: 40px;
    background: none;
  }
}
.problem-appeal::before {
  content: "";
  display: block;
  width: 100%;
  background-color: #fff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: relative;
  z-index: 2;
  height: 90px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-appeal::before {
    height: 8.1818181818vw;
  }
}
@media (max-width: 767.98px) {
  .problem-appeal::before {
    display: none;
  }
}
.problem-appeal::after {
  content: "";
  display: block;
  width: 100%;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 50% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 50% 100%, 0 100%);
  position: relative;
  z-index: 3;
  height: 90px;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-appeal::after {
    height: 8.1818181818vw;
  }
}
@media (max-width: 767.98px) {
  .problem-appeal::after {
    display: none;
  }
}
.problem-appeal-01::after {
  background: -webkit-gradient(linear, right top, left top, from(#fff), color-stop(99.99%, #ececec), to(#e0e0e0)) !important;
  background: linear-gradient(-90deg, #fff 0%, #ececec 99.99%, #e0e0e0 100%) !important;
}
@media (max-width: 767.98px) {
  .problem-appeal-01::after {
    display: block;
    -webkit-clip-path: unset;
            clip-path: unset;
    margin-top: -90px;
    position: relative;
    z-index: 1;
  }
}
.problem-appeal-02 {
  margin-top: 0;
}
.problem-appeal-02::before {
  background: -webkit-gradient(linear, right top, left top, from(#fff), color-stop(99.99%, #ececec), to(#ececec)) !important;
  background: linear-gradient(-90deg, #fff 0%, #ececec 99.99%, #ececec 100%) !important;
}
@media (max-width: 767.98px) {
  .problem-appeal-02::before {
    display: block !important;
    -webkit-clip-path: unset;
            clip-path: unset;
    margin-bottom: -90px;
  }
}
.problem-appeal-02::after {
  height: 130px !important;
  -webkit-transform: translateY(1px) !important;
          transform: translateY(1px) !important;
  -webkit-clip-path: polygon(0 0, 50% 80%, 100% 0, 100% 100%, 50% 100%, 0 100%) !important;
          clip-path: polygon(0 0, 50% 80%, 100% 0, 100% 100%, 50% 100%, 0 100%) !important;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-appeal-02::after {
    height: 11.8181818182vw !important;
  }
}
.problem-appeal-02 .problem-appeal-inner {
  max-width: 835px;
  margin: -107px auto -145px auto;
  padding-bottom: 10px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-appeal-02 .problem-appeal-inner {
    max-width: 75.9090909091vw;
    margin: -9.7272727273vw auto -13.1818181818vw auto;
    padding-bottom: 0.9090909091vw;
  }
}
@media (max-width: 767.98px) {
  .problem-appeal-02 .problem-appeal-inner {
    margin: 0 auto;
  }
}
.problem-appeal-02 .problem-appeal-inner img {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media (max-width: 767.98px) {
  .problem-appeal-02 .problem-appeal-inner img {
    -webkit-transform: unset;
            transform: unset;
  }
}
.problem-appeal-inner {
  max-width: 919px;
  margin: -107px auto;
  padding-bottom: 10px;
  position: relative;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-appeal-inner {
    max-width: 83.5454545455vw;
    margin: -9.7272727273vw auto;
    padding-bottom: 0.9090909091vw;
  }
}
@media (max-width: 767.98px) {
  .problem-appeal-inner {
    margin: 0 auto;
  }
}
.problem-appeal-inner img {
  position: relative;
  z-index: 3;
}
.problem-appeal-btn {
  z-index: 3;
  border-radius: 38px;
  background: #000;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-appeal-btn {
    border-radius: 3.4545454545vw;
  }
}
@media (max-width: 767.98px) {
  .problem-appeal-btn {
    -webkit-transform: unset;
            transform: unset;
  }
}
.problem-appeal-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 38px;
  display: block;
  -webkit-box-shadow: 0px 4px 18px 0px rgba(133, 145, 20, 0.5);
          box-shadow: 0px 4px 18px 0px rgba(133, 145, 20, 0.5);
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 4;
}
.problem-appeal-btn:hover {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  opacity: 0.7;
  text-decoration: none;
}
.problem-appeal-btn-layer1 {
  position: absolute;
  top: 286px;
  left: 0;
  z-index: 20;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-appeal-btn-layer1 {
    top: 26vw;
  }
}
@media (max-width: 767.98px) {
  .problem-appeal-btn-layer1 {
    position: unset;
    top: 44.358974359vw;
    left: calc(50% - 43.075vw);
    width: 86%;
    margin: -28.9743589744vw auto 7.6923076923vw auto;
  }
}
.problem-appeal-btn-layer2 {
  position: relative;
}
.problem-appeal-btn-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 420px;
  height: 70px;
  border-radius: 38px;
  background: #000;
  z-index: 3;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-appeal-btn-inner {
    width: 38.1818181818vw;
    height: 6.3636363636vw;
  }
}
@media (max-width: 767.98px) {
  .problem-appeal-btn-inner {
    width: 86.15vw;
    height: 53px;
  }
}
.problem-appeal-btn-inner::after {
  content: "";
  background-image: url("/content_assets/38nr/img/problem_appeal_btn_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 6px;
  position: absolute;
  top: calc(50% - 3px);
  right: 30px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-appeal-btn-inner::after {
    width: 1.0909090909vw;
    height: 0.5454545455vw;
    top: calc(50% - 0.2727272727vw);
    right: 2.7272727273vw;
  }
}
@media (max-width: 767.98px) {
  .problem-appeal-btn-inner::after {
    right: 24px;
  }
}
.problem-appeal-btn-inner span {
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-appeal-btn-inner span {
    font-size: 2vw;
  }
}
@media (max-width: 767.98px) {
  .problem-appeal-btn-inner span {
    font-size: 19px;
  }
}
.problem-answer-sec {
  padding: 120px 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(153, 153, 153, 0)), color-stop(99.99%, rgba(153, 153, 153, 0.18)), to(rgba(153, 153, 153, 0.3)));
  background: linear-gradient(-90deg, rgba(153, 153, 153, 0) 0%, rgba(153, 153, 153, 0.18) 99.99%, rgba(153, 153, 153, 0.3) 100%);
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-sec {
    padding: 10.9090909091vw 0;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-sec {
    padding: 52px 0;
  }
}
.problem-answer-sec:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(rgba(153, 153, 153, 0)), color-stop(99.99%, rgba(153, 153, 153, 0.18)), to(rgba(153, 153, 153, 0.3)));
  background: linear-gradient(90deg, rgba(153, 153, 153, 0) 0%, rgba(153, 153, 153, 0.18) 99.99%, rgba(153, 153, 153, 0.3) 100%);
}
.problem-answer-sec:nth-child(even) .problem-answer-box .problem-answer-col:nth-child(1) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.problem-answer-sec:nth-child(even) .problem-answer-box .problem-answer-col:nth-child(2) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.problem-answer-box.l-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  padding: 0;
  width: 100%;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-box.l-contents {
    gap: 3.6363636364vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-box.l-contents {
    display: block;
    width: unset;
  }
}
.problem-answer-col:nth-child(1) {
  max-width: 484px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-col:nth-child(1) {
    max-width: 44vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-col:nth-child(1) {
    max-width: unset;
  }
}
.problem-answer-col:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 512px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-col:nth-child(2) {
    max-width: 46.5454545455vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-col:nth-child(2) {
    max-width: unset;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
.problem-answer-bubble {
  margin-top: 40px;
  margin-bottom: 35px;
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 6px 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #3D3D3D;
  position: relative;
  line-height: 1.2;
  z-index: 1;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-bubble {
    gap: 0.3636363636vw;
    margin-top: 3.6363636364vw;
    margin-bottom: 3.1818181818vw;
    padding: 0.5454545455vw 1.3636363636vw;
    font-size: 2.1818181818vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-bubble {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 16px;
    padding: 12px 5px;
    width: 100%;
  }
}
.problem-answer-bubble span {
  color: #D0DF00;
  font-size: 28px;
  font-weight: 600;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-bubble span {
    font-size: 2.5454545455vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-bubble span {
    font-size: 20px;
  }
}
.problem-answer-bubble:before {
  content: "";
  display: block;
  background-image: url("/content_assets/38nr/img/problem_answer_bubble_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-bubble:before {
    width: 1.8181818182vw;
    height: 1.8181818182vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-bubble:before {
    width: 17px;
    height: 17px;
  }
}
.problem-answer-bubble:after {
  content: "";
  position: absolute;
  margin: 0;
  bottom: -24px;
  left: 140px;
  display: block;
  border-top: 40px solid #3D3D3D;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  z-index: -1;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-bubble:after {
    bottom: -2.1818181818vw;
    left: 12.7272727273vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-bubble:after {
    bottom: -18px;
  }
}
.problem-answer-heading {
  font-size: 28px;
  font-weight: 600;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-heading {
    font-size: 2.5454545455vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-heading {
    font-size: 20px;
    text-align: center;
  }
}
.problem-answer-heading strong {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #D0DF00));
  background: linear-gradient(transparent 75%, #D0DF00 75%);
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-heading strong {
    font-size: 3.6363636364vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-heading strong {
    font-size: 27px;
  }
}
.problem-answer-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 31px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-cards {
    gap: 2.8181818182vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-cards {
    margin-top: 40px;
    gap: 20px;
  }
}
.problem-answer-card {
  background: #FFF;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  width: 270px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card {
    width: 24.5454545455vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card {
    width: 47.25%;
  }
}
.problem-answer-card:nth-child(2) {
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .problem-answer-card:nth-child(2) {
    margin-top: 26px;
  }
}
.problem-answer-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 75px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(208, 223, 0, 0.1)), to(rgba(208, 223, 0, 0.5)));
  background: linear-gradient(180deg, rgba(208, 223, 0, 0.1) 0%, rgba(208, 223, 0, 0.5) 100%);
}
@media (max-width: 767.98px) {
  .problem-answer-card__title {
    height: 40px;
  }
}
.problem-answer-card__title span {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__title span {
    font-size: 2.1818181818vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__title span {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__title span span {
    font-size: 14px;
  }
}
.problem-answer-card__title span small {
  font-size: 16px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__title span small {
    font-size: 1.4545454545vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__title span small {
    font-size: 10px;
    display: block;
    margin-bottom: -20px;
  }
}
.problem-answer-card__inner {
  text-align: center;
  padding: 30px 5px;
  position: relative;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__inner {
    padding: 2.7272727273vw 0.4545454545vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__inner {
    padding: 14px 0;
  }
}
.problem-answer-card__txt {
  margin-top: 36px;
  font-weight: 600;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt {
    margin-top: 3.2727272727vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt {
    margin-top: 9px;
  }
}
.problem-answer-card__txt strong {
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.problem-answer-card__txt01 {
  font-size: 20px;
  text-align: right;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt01 {
    font-size: 1.8181818182vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt01 {
    font-size: 14px;
    margin: 9px 10px 0 5px;
  }
}
.problem-answer-card__txt01 strong {
  font-size: 72px;
  line-height: 0.7;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt01 strong {
    font-size: 6.5454545455vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt01 strong {
    font-size: 54px;
  }
}
.problem-answer-card__txt02 {
  font-size: 35px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt02 {
    font-size: 3.1818181818vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt02 {
    font-size: 20px;
  }
}
.problem-answer-card__txt02 strong {
  font-size: 110px;
  line-height: 0.7;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt02 strong {
    font-size: 10vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt02 strong {
    font-size: 70px;
  }
}
.problem-answer-card__txt03 {
  font-size: 20px;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt03 {
    font-size: 1.8181818182vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt03 {
    font-size: 14px;
  }
}
.problem-answer-card__txt03 strong {
  font-size: 63px;
  line-height: 0.6;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt03 strong {
    font-size: 5.7272727273vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt03 strong {
    font-size: 48px;
    margin-top: 10px;
    display: inline-block;
  }
}
.problem-answer-card__txt04 {
  font-size: 35px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt04 {
    font-size: 3.1818181818vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt04 {
    font-size: 20px;
  }
}
.problem-answer-card__txt04 strong {
  font-size: 110px;
  line-height: 0.8;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt04 strong {
    font-size: 10vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt04 strong {
    font-size: 70px;
  }
}
.problem-answer-card__txt04 strong span {
  letter-spacing: -0.1em;
  margin-right: 12px;
}
.problem-answer-card__txt05 {
  font-size: 35px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt05 {
    font-size: 3.1818181818vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt05 {
    font-size: 20px;
  }
}
.problem-answer-card__txt05 strong {
  font-size: 110px;
  line-height: 0.8;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt05 strong {
    font-size: 10vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt05 strong {
    font-size: 70px;
  }
}
.problem-answer-card__txt05 strong span {
  letter-spacing: -0.08em;
  margin-right: 10px;
}
.problem-answer-card__txt06 {
  font-size: 35px;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt06 {
    font-size: 1.8181818182vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt06 {
    font-size: 14px;
  }
}
.problem-answer-card__txt06 strong {
  font-size: 110px;
  line-height: 0.8;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__txt06 strong {
    font-size: 10vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt06 strong {
    font-size: 70px;
  }
}
.problem-answer-card__txt06 strong span {
  margin: 0 5px;
  letter-spacing: 0;
}
@media (max-width: 767.98px) {
  .problem-answer-card__txt06 em {
    font-size: 20px;
  }
}
.problem-answer-card__notice {
  position: absolute;
  bottom: -24px;
  right: 0;
  color: #CCC;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (min-width: 767.98px) and (max-width: 1100px) {
  .problem-answer-card__notice {
    bottom: -2.1818181818vw;
    font-size: 1.0909090909vw;
  }
}
@media (max-width: 767.98px) {
  .problem-answer-card__notice {
    font-size: 10px;
    bottom: -20px;
  }
}

.contact-form__input-list-item {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.contact-form__input-jobtype-container {
  position: relative;
  padding-top: 3.875rem;
}

.contact-form__input-jobtype-container::before {
  content: "";
  position: absolute;
  border-bottom: 2px solid #fff !important;
  border-right: 2px solid #fff !important;
  height: 2rem !important;
  width: 2rem !important;
  rotate: 45deg !important;
  top: 5px !important;
  left: 50%;
  translate: -50% 0;
}

.contact-form__select--jobtype {
  pointer-events: none;
  color: #c7c7c7;
}

.selected .contact-form__select--jobtype {
  pointer-events: auto;
  color: #666;
}

.contact-form__input-list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .contact-form__input-list-item-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-form_input {
  padding: 10px 20px;
  color: #666;
}

.contact-form__input-group-wrapper {
  width: 100%;
}

.select_jobtype_kibo .contact-form__input-list-item-inner,
.select_jobtype_gakusyu .contact-form__input-list-item-inner {
  width: 100%;
}

.select_jobtype_kibo .contact-form__input-container,
.select_jobtype_gakusyu .contact-form__input-container {
  width: 100%;
}

.add-select-form .contact-form__input-container {
  width: 100%;
}

.add-select-form select {
  padding: 1.5rem 2.5rem;
  width: 100%;
  border: 1px solid #c7c7c7;
  border-radius: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #666;
  background-color: #fff;
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .add-select-form select {
    font-size: 2rem;
  }
}

.select_seisyainkeiken.add-select-form .contact-form__input-label {
  width: 33.5%;
}

.select_seisyainkeiken .contact-form__input-label {
  line-height: 1.2;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .select_seisyainkeiken .contact-form__input-label {
    font-size: 2rem;
    min-width: 20rem;
  }
}
@media (max-width: 767.98px) {
  .select_seisyainkeiken .contact-form__input-label {
    line-height: 3;
  }
}
.select_seisyainkeiken .contact-form__input-label span {
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .select_seisyainkeiken .contact-form__input-label span {
    font-size: 10px;
  }
}

.add-select-form .contact-form__input-label {
  position: relative;
  width: 24.5%;
  gap: 55px;
}

.add-select-form .select_parent {
  width: 100%;
}

.add-select-form {
  position: relative;
}

.add-select-form .error_msg {
  left: 188px;
}

/* 希望勤務地 */
.contact-form_input-label {
  line-height: 1.2;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .contact-form_input-label {
    font-size: 2rem;
    min-width: 20rem;
  }
}
.contact-form_input-label span {
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .contact-form_input-label span {
    font-size: 10px;
  }
}

.contact-form_input-inner {
  width: calc(75% - 5px);
  margin-left: 60px;
  position: relative;
}

.contact-form_input-inner a {
  font-size: 15px;
  color: #0D849F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: YakuHanJP, "Noto Sans JP", serif;
}

.contact-form_input-inner a:before {
  content: "+";
  font-size: 14px;
}

#inputSecondChoice,
#addThirdChoice,
#inputThirdChoice {
  display: none;
}

.contact-form_remove-btn {
  width: 24px;
  height: auto;
  position: absolute;
  top: 16px;
  left: -37px;
  margin-top: 0.8rem;
  -webkit-filter: invert(36%) sepia(81%) saturate(4951%) hue-rotate(172deg) brightness(94%) contrast(90%);
          filter: invert(36%) sepia(81%) saturate(4951%) hue-rotate(172deg) brightness(94%) contrast(90%); /* 画像色変更 */
}

@media (max-width: 767.98px) {
  .hidden-sp {
    display: none;
  }
  .contact-form_remove-btn {
    width: 7.4%;
    height: auto;
    position: absolute;
    top: calc(50% - 12px);
    left: -11%;
    margin-top: 0;
  }
  .contact-form_input-inner {
    width: 88.8%;
    margin-left: 11.2%;
  }
}
/* form-styles補足 */
.contact {
  background-color: #D5E033;
}

/* 注意書きカラー */
.contact-text-caption,
.contact-form_input-label-caption,
.add-choice-text {
  color: #0D849F;
}

/* フォームフォントカラー */
.contact_inner {
  color: #000;
}

/* 転職相談するボタン */
.contact-form_button button {
  border-radius: 100px;
  background: #000;
  background-size: 38px auto;
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  letter-spacing: 2.8px;
  color: #fff;
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin: 30px auto 0;
  padding: 30px 0;
  position: relative;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

@media (max-width: 767.98px) {
  .contact-form_button button {
    font-size: 22px;
    padding: 24px 0;
    width: 97%;
  }
}
.form {
  margin-top: -80px;
  font-family: "A P-OTF Gothic MB101 Pr6N", sans-serif;
  font-weight: bold;
  text-align: center;
}

.form a:hover {
  opacity: 0.75;
}

.form_bg {
  position: relative;
  z-index: 1;
  margin-top: 90px;
  background: linear-gradient(70deg, #F8FD44 13.17%, #C1E000 84.05%);
}

.form_bg .form_inner {
  padding: 90px 0 200px;
}

.form_bg .form_inner .form_title .sub-text {
  color: #99B200;
  font-family: "A P-OTF Gothic MB101 Pr6N", sans-serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 25.264px;
  /* 93.572% */
  margin-bottom: 12px;
}

.form_bg .form_inner .form_title .main-text {
  color: #000;
  font-family: "A P-OTF Gothic MB101 Pr6N", sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 51.536px;
  /* 99.108% */
  letter-spacing: 1.04px;
}

.form_bg .form_inner .form_title .main-text small {
  color: #000;
  font-family: "A P-OTF Gothic MB101 Pr6N", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 51.536px;
  letter-spacing: 0.84px;
}

.form_bg .form_inner .form_cont {
  padding: 75px 0 84px;
  max-width: 1100px;
  margin: 50px auto 0;
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 2px 4px 28px 0px rgba(123, 173, 60, 0.27);
          box-shadow: 2px 4px 28px 0px rgba(123, 173, 60, 0.27);
}

.form_bg .form_inner .form_cont .form_cont_inner {
  width: 612px;
  margin: 0 auto;
}

.form_bg .form_inner .form_cont .form_cont_inner .form_cont_text {
  font-size: 24px;
}

.form_bg .form_inner .form_cont .form_cont_inner .form_cont_text p span {
  font-weight: normal;
}
@media (max-width: 767.98px) {
  .form_bg .form_inner .form_cont .form_cont_inner .form_cont_text p span {
    font-size: 14px;
  }
}

.form_bg .form_inner .form_cont .form_cont_inner .form_cont_btn {
  margin: 30px auto 0;
}

.form_bg .form_inner .form_cont .form_cont_inner .form_cont_btn .main-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}

.form_bg .form_inner .form_cont .form_cont_inner .form_cont_btn .main-btn .step-button {
  color: #EEFF00;
  background: #3D3D3D;
  background-image: url(/content_assets/38nr/img/arrow.svg);
  background-repeat: no-repeat;
  background-position: 95% 50%;
  padding: 18px 20px;
  font-size: 20px;
  width: 49%;
  border-radius: 4px;
  cursor: pointer;
}

.form_bg .form_inner .form_cont .form_cont_inner .form_cont_btn .main-btn .step-button .btn {
  color: #EF0;
  font-family: "A P-OTF Gothic MB101 Pr6N", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  /* 110% */
}

.step-button input {
  height: 0;
  width: 0;
}

.sub-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sub-btn .step-button {
  color: #3D3D3D;
  background: #EFEFEF;
  background-image: url(/content_assets/38nr/img/arrow2.svg);
  background-repeat: no-repeat;
  background-position: 97.5% 50%;
  padding: 18px 0 20px;
  margin-top: 22px;
  border-radius: 4px;
  font-family: "A P-OTF Gothic MB101 Pr6N", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  width: -webkit-fill-available;
  cursor: pointer;
}

.form_bg::before {
  content: "";
  display: block;
  width: 100%;
  background-color: #fff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: relative;
  z-index: 2;
  height: 90px;
  top: -1px;
}

.sub-text::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 24px;
  background-image: url(/content_assets/38nr/img/sub-text_before.svg);
  background-size: contain;
  vertical-align: middle;
  margin-right: 6px;
}

.sub-text::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 24px;
  background-image: url(/content_assets/38nr/img/sub-text_after.svg);
  background-size: contain;
  vertical-align: middle;
  margin-left: 6px;
}

.form_cont_text p::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(/content_assets/38nr/img/check.svg);
  background-size: contain;
  vertical-align: middle;
  position: relative;
  left: -8px;
  bottom: 2px;
}

@media (max-width: 767.98px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: contents;
  }
  .form_bg::before {
    height: 37px;
  }
  .sub-text::before {
    width: 13px;
    height: 15px;
    margin-right: 2px;
  }
  .sub-text::after {
    width: 13px;
    height: 15px;
    margin-left: 2px;
  }
  .form_cont_text p::before {
    width: 16px;
    height: 16px;
    left: -4px;
    bottom: 2px;
  }
  .form_bg .form_inner {
    padding: 40px 0 60px;
  }
  .form_bg .form_inner .form_title .sub-text {
    font-size: 16px;
    line-height: 17px;
    margin-bottom: 2px;
  }
  .form_bg .form_inner .form_title .main-text {
    font-size: 31px;
    line-height: 26px;
  }
  .form_bg .form_inner .form_title .main-text small {
    font-size: 26px;
  }
  .form_bg .form_inner .form_cont {
    margin: 16px 30px 0;
    padding: 30px 20px 42px;
  }
  .form_bg .form_inner .form_cont .form_cont_inner {
    width: 100%;
  }
  .form_bg .form_inner .form_cont .form_cont_inner .form_cont_text {
    font-size: 18px;
  }
  .form_bg .form_inner .form_cont .form_cont_inner .form_cont_btn {
    margin: 14px auto 0;
  }
  .form_bg .form_inner .form_cont .form_cont_inner .form_cont_btn .main-btn {
    gap: 8px 2%;
  }
  .form_bg .form_inner .form_cont .form_cont_inner .form_cont_btn .main-btn .step-button {
    padding: 14px 0 16px;
    font-size: 16px;
    width: 49%;
    background-position: 93% 50%;
    background-size: 7px;
  }
  .form_bg .form_inner .form_cont .form_cont_inner .form_cont_btn .main-btn .step-button .btn {
    font-size: 16px;
    line-height: 14px;
  }
  .sub-btn .step-button {
    font-size: 13px;
    background-position: 96.5% 50%;
    background-size: 7px;
    margin-top: 12px;
    padding: 10px 0 13px;
  }
} /*# sourceMappingURL=index.css.map */