:root {
  --font-primary: "Noto Sans JP", sans-serif;
  --font-en: "Roboto", sans-serif;
  --font-family-base: var(--font-primary);
  --font-weight-base: 400;
  --lineheight-base: 1.15;
  --font-size-base: 1.4rem;
  --color-primary: #45B2C2;
  --input-border-color: #e6e6e6;
  --input-border-width: 0.1rem;
  --input-font-size: 14px;
  --input-font-weight: 400;
  --input-background: #fff;
  --input-height: 5rem;
  --input-padding-x: 2rem;
  --input-padding-y: 1rem;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  color: #000;
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: hidden;
  padding-top: var(--headH);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

ol,
ul,
dl {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0 !important;
}

picture {
  display: block;
}

figure img {
  display: block;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 170.4rem;
  padding-inline: 1.5rem;
  width: 100%;
}

.inner {
  max-width: 173rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media (min-width: 768px) {
  .inner {
    padding-inline: 2.5rem;
  }
}

.animate_animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUp {
  animation-name: fadeUp;
}

.fade-in {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.horizontal-fade-in > * {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.horizontal-fade-in.visible > * {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--order) * 0.2s);
}

.btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.l-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  overflow: hidden;
  padding: 0.8rem 0 0.35rem;
}
@media (min-width: 768px) {
  .l-header {
    padding: 1.8rem 5.6rem 1.4rem;
  }
}
@media (max-width: 767px) {
  .l-header {
    text-align: center;
  }
}
.l-header img {
  width: 21.7rem;
}
@media (min-width: 768px) {
  .l-header img {
    width: 60.7rem;
  }
}

.hamburger-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 7rem;
  width: 7rem;
  z-index: 1100;
}
.hamburger-box.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.hamburger-box.is-active .hamburger-inner:before {
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
  top: 0;
}
.hamburger-box.is-active .hamburger-inner:after {
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
  bottom: 0;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner:after, .hamburger-inner:before, .hamburger-inner {
  width: 2.8rem;
  height: 2px;
  background-color: #000;
  transition: transform 0.15s ease;
  border-radius: 1.5px;
}

.hamburger-inner {
  position: relative;
  display: block;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}
.hamburger-inner:before {
  position: absolute;
  top: -0.8rem;
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.hamburger-inner:after {
  position: absolute;
  bottom: -0.8rem;
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  color: #000;
  display: block;
  font-family: var(--font-family-base);
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: 1.5;
  padding: var(--input-padding-y) var(--input-padding-x);
  height: var(--input-height);
  width: 100%;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.form-control::-moz-placeholder {
  color: #e6e6e6;
  opacity: 1;
}
.form-control::placeholder {
  color: #e6e6e6;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #1E1E1E;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.table {
  width: 100%;
}

.hline01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .hline01 {
    gap: 4rem;
  }
}
.hline01__ttl {
  color: #fb9a65;
  font-size: 4rem;
  font-family: var(--font-en);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hline01__ttl {
    font-size: min(9.375vw, 18rem);
  }
}
.hline01__sub {
  background: linear-gradient(120deg, #fb0077 0%, #fb7f25 52%, #ffc166 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.356;
  line-height: 1.24;
  text-align: center;
}
@media (min-width: 768px) {
  .hline01__sub {
    font-size: min(3.6458333333vw, 7rem);
    line-height: 1.36;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media (min-width: 768px) {
  .hover {
    transition: 0.3s ease;
  }
  .hover:hover {
    opacity: 0.7;
  }
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.font-en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
}

.img-fit {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-mv {
  position: relative;
  overflow: hidden;
}
.p-mv__image img {
  width: 100%;
  height: auto;
}
.p-mv__btn {
  filter: drop-shadow(8px 6px 6px rgba(0, 0, 0, 0.2));
  display: block;
  position: absolute;
  z-index: 2;
  width: 86.8%;
  right: 0;
  bottom: 1.3793103448%;
  left: 0;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-mv__btn {
    bottom: 3.1195840555%;
    width: 53.28125%;
  }
}

.p-message {
  padding-top: 2.1rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-message {
    padding-top: 9.9rem;
  }
}
@media (min-width: 768px) {
  .p-message .hline01 {
    gap: 5.5rem;
  }
}
@media (max-width: 767px) {
  .p-message .hline01__sub {
    font-size: 2.25rem;
    line-height: 1.3555555556;
    letter-spacing: -0.02em;
  }
}
.p-message__highlight {
  font-size: 1.3575rem;
  font-weight: 500;
  line-height: 1.74;
  text-align: center;
  margin-top: 0.95rem;
}
@media (min-width: 768px) {
  .p-message__highlight {
    font-size: min(1.9197916667vw, 3.686rem);
    line-height: 1.95;
    margin-top: 3.7rem;
  }
}
.p-message__highlight span {
  background: rgba(255, 209, 0, 0.51);
  background: linear-gradient(0deg, rgba(255, 209, 0, 0.5) 40%, rgba(255, 255, 255, 0) 50%);
}
@media (max-width: 767px) {
  .p-message__highlight span {
    font-size: 1.657rem;
  }
}
@media (min-width: 768px) {
  .p-message__highlight span strong {
    font-size: min(2.34375vw, 4.5rem);
  }
}
.p-message__image {
  max-width: 77.6vw;
  margin: 1.7rem auto 0;
}
@media (min-width: 768px) {
  .p-message__image {
    max-width: 169.8rem;
    margin-top: 8.5rem;
    position: relative;
    left: 1.7rem;
  }
}

.p-want {
  padding-top: 3.3rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-want {
    padding-top: 1.4rem;
  }
}
.p-want__ttl {
  font-size: 1.5715rem;
  font-weight: 500;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-want__ttl {
    font-size: min(3.1796875vw, 6.105rem);
  }
}
.p-want__ttl-01 {
  font-size: 1.1785rem;
}
@media (min-width: 768px) {
  .p-want__ttl-01 {
    font-size: min(2.3958333333vw, 4.6rem);
  }
}
.p-want__ttl-02 {
  font-size: 1.325rem;
}
@media (min-width: 768px) {
  .p-want__ttl-02 {
    font-size: min(2.7083333333vw, 5.2rem);
  }
}
.p-want__ttl::before, .p-want__ttl::after {
  content: "";
  background-color: #000;
  width: 0.15rem;
  height: 1.5rem;
  position: absolute;
}
@media (min-width: 768px) {
  .p-want__ttl::before, .p-want__ttl::after {
    width: min(0.2083333333vw, 0.4rem);
    height: min(3.4895833333vw, 6.7rem);
  }
}
.p-want__ttl::before {
  transform: rotate(-30deg);
  right: calc(100% + min(1.3020833333vw, 2.5rem));
  top: min(0.4166666667vw, 0.8rem);
}
.p-want__ttl::after {
  transform: rotate(30deg);
  left: calc(100% + min(1.3020833333vw, 2.5rem));
  top: min(0.4166666667vw, 0.8rem);
}
.p-want__content {
  display: flex;
  row-gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .p-want__content {
    flex-direction: row-reverse;
    margin-top: 6rem;
  }
}
.p-want__image {
  width: 32.6rem;
  position: relative;
  left: 0.5rem;
}
@media (min-width: 768px) {
  .p-want__image {
    width: 84.1rem;
    flex-shrink: 0;
    left: 1.7rem;
  }
}
.p-want__list {
  margin-top: 1.55rem;
}
@media (min-width: 768px) {
  .p-want__list {
    margin-top: 2.6rem;
    margin-left: -2rem;
  }
}
.p-want__list li {
  display: flex;
  align-items: flex-start;
}
.p-want__list li:not(:last-child) {
  margin-bottom: 1.45rem;
}
@media (min-width: 768px) {
  .p-want__list li:not(:last-child) {
    margin-bottom: min(3.5416666667vw, 6.8rem);
  }
}
.p-want__list li::before {
  content: "";
  background: url("../images/icon_check.webp") no-repeat center/contain;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.55rem;
}
@media (min-width: 768px) {
  .p-want__list li::before {
    width: 8.5rem;
    height: 10.8rem;
    margin-right: 1.5rem;
  }
}
.p-want__list li p {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.4066666667;
}
.p-want__list li p strong {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .p-want__list li p {
    font-size: min(1.6619791667vw, 3.191rem);
    line-height: 1.6;
  }
  .p-want__list li p strong {
    font-size: min(2.0895833333vw, 4.012rem);
  }
}

.gradient-text {
  background: linear-gradient(140deg, #fb0077 0%, #fb0077 15%, #fb7f25 52%, #ffc166 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.p-date {
  position: relative;
  padding: 4.8rem 0 14rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-date {
    padding: 17.1rem 6.2rem 46.2rem;
    margin-top: -11.8rem;
  }
}
@media (max-width: 375px) {
  .p-date {
    padding: 2.8rem 0 8.9rem;
  }
}
.p-date::after {
  background: #EEEFFF;
  background: linear-gradient(130deg, rgb(238, 239, 255) 0%, rgb(255, 222, 237) 100%);
  content: "";
  clip-path: polygon(0 18vw, 100% 0vw, 100% calc(100% - 18vw), 0vw 100%);
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-date__list {
  display: flex;
  gap: 0.7rem 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 2.5rem 4rem 0;
}
@media (min-width: 768px) {
  .p-date__list {
    gap: 2rem;
    margin: 11.6rem -2rem 0;
  }
}
.p-date__item {
  flex: 0 0 50%;
  max-width: calc(50% - 0.9rem);
}
@media (min-width: 768px) {
  .p-date__item {
    gap: 0;
    flex-basis: 43.2rem;
    max-width: 43.2rem;
  }
}
.p-date__item-box {
  background-color: #fff;
  border-radius: 2.65rem;
  height: 100%;
  padding-block: 2.7rem 0.4rem;
}
@media (min-width: 768px) {
  .p-date__item-box {
    border-radius: 5.3rem;
    padding-block: 4.7rem 2.5rem;
  }
}
.p-date__item-ttl {
  color: #f15a24;
  font-size: 1.973rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .p-date__item-ttl {
    font-size: min(3.096875vw, 5.946rem);
  }
}
.p-date__item-number {
  min-height: 10rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .p-date__item-number {
    min-height: 327px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    min-height: 32.7rem;
    margin-top: 3rem;
  }
}
.p-date__item-number .num {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 6.5rem;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-date__item-number .num {
    font-size: 19.5rem;
  }
}
.p-date__item-number .num .sub {
  font-size: 3.5rem;
}
@media (min-width: 768px) {
  .p-date__item-number .num .sub {
    font-size: 10.5rem;
  }
}
.p-date__item-number .num .icon-comment {
  position: absolute;
  top: 1rem;
  right: -100%;
  width: 3.5rem;
  aspect-ratio: 10/9;
}
@media (min-width: 768px) {
  .p-date__item-number .num .icon-comment {
    top: 2rem;
    width: 10rem;
  }
}
.p-date__item-number .per {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 4rem;
  margin-inline: auto;
  font-family: var(--font-en);
  font-size: 4.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-date__item-number .per {
    min-height: 13.2rem;
    font-size: 13.2rem;
  }
}
.p-date__item-number .yen {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 4rem;
  margin-inline: auto;
  font-weight: 700;
  line-height: 1;
  font-size: 3.4rem;
  text-align: center;
  transform: translateX(10px);
}
@media (min-width: 768px) {
  .p-date__item-number .yen {
    min-height: 13.2rem;
    font-size: 10.2rem;
  }
}
.p-date__item-number .yen .sub {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .p-date__item-number .yen .sub {
    font-size: 5.5rem;
  }
}
.p-date__item-number .time {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 4rem;
  margin-inline: auto;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  text-align: center;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-date__item-number .time {
    min-height: 13.2rem;
    font-size: 9.8rem;
  }
}
.p-date__item-txt {
  font-size: 1.1615rem;
  font-weight: bold;
  letter-spacing: -0.05em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.3rem;
}
@media (min-width: 768px) {
  .p-date__item-txt {
    font-size: 3.5rem;
    line-height: 1.2285714286;
    height: 8.6rem;
  }
}

.p-charm {
  padding: 2.35rem 0.75rem 3.25rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-charm {
    padding: 6.3rem 7.4rem 13.5rem;
  }
}
.p-charm__list {
  margin-top: 5.1rem;
}
@media (min-width: 768px) {
  .p-charm__list {
    margin-top: 6.7rem;
  }
}
.p-charm__item {
  display: grid;
  align-items: stretch;
  grid-template-areas: "number title" "desc desc";
  grid-template-columns: auto 1fr;
}
@media (min-width: 768px) {
  .p-charm__item {
    grid-template-areas: "number title" "number desc";
  }
}
.p-charm__item:not(:last-child) {
  margin-bottom: 3.55rem;
}
@media (min-width: 768px) {
  .p-charm__item:not(:last-child) {
    margin-bottom: min(3.6458333333vw, 7rem);
  }
}
.p-charm__item-number {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  background: linear-gradient(150deg, #fb0077 0%, #fb7f25 52%, #ffc166 100%);
  color: #fff;
  font-size: 4.1085rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  grid-area: number;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  min-height: 6rem;
}
@media (min-width: 768px) {
  .p-charm__item-number {
    font-size: min(7.7479166667vw, 14.876rem);
    width: min(11.8229166667vw, 22.7rem);
    min-height: min(12.427109375vw, 23.86005rem);
  }
}
.p-charm__item-ttl {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  color: #f7931e;
  font-size: 1.75rem;
  font-weight: bold;
  grid-area: title;
  position: relative;
  padding-left: 1.35rem;
}
@media (min-width: 768px) {
  .p-charm__item-ttl {
    padding: min(2.0833333333vw, 4rem) 0 0 min(2.0833333333vw, 4rem);
    font-size: min(2.8645833333vw, 5.5rem);
    letter-spacing: -0.05em;
  }
}
@media (max-width: 767px) {
  .p-charm__item-ttl {
    height: 6rem;
    letter-spacing: -0.06em;
    display: flex;
    align-items: center;
  }
}
.p-charm__item-ttl::before {
  background-color: #fbb03b;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.3rem;
}
@media (min-width: 768px) {
  .p-charm__item-ttl::before {
    height: 0.6rem;
  }
}
.p-charm__item-txt {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.28;
  grid-area: desc;
  padding-top: 0.85rem;
}
@media (min-width: 768px) {
  .p-charm__item-number {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .p-charm__item-ttl {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .p-charm__item-txt {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
}
@media (min-width: 768px) {
  .p-charm__item-txt {
    font-size: min(1.71875vw, 3.3rem);
    line-height: 1.515;
    letter-spacing: -0.01em;
    padding: min(1.71875vw, 3.3rem) 0 0 min(2.0833333333vw, 4rem);
  }
}

.p-oneday {
  position: relative;
  padding: 5.5rem 2.5rem 8.65rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-oneday {
    padding: 21.8rem min(3.2291666667vw, 6.2rem) 36.6rem;
  }
}
.p-oneday::after {
  background: #EEEFFF;
  background: linear-gradient(130deg, rgb(238, 239, 255) 0%, rgb(255, 222, 237) 100%);
  content: "";
  clip-path: polygon(0 10%, 100% 0, 100% 91.5%, 0% 100%);
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-oneday::after {
    clip-path: polygon(0 21%, 100% 0, 100% 79%, 0% 100%);
  }
}
@media (max-width: 767px) {
  .p-oneday .hline01 {
    margin-inline: -2.5rem;
  }
}
.p-oneday__content {
  margin-top: 2.6rem;
}
@media (min-width: 768px) {
  .p-oneday__content {
    margin-top: 7.8rem;
  }
}
@media (max-width: 767px) {
  .p-oneday__content {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-direction: row-reverse;
  }
}
.p-oneday__list {
  display: flex;
  row-gap: 0.65rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-oneday__list {
    flex-direction: row;
    justify-content: center;
    gap: min(2.2395833333vw, 4.3rem);
  }
}
.p-oneday__list li {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 16.4rem;
  height: 15.4rem;
  padding: 0.95rem 0 0.75rem 1.6rem;
}
@media (min-width: 768px) {
  .p-oneday__list li {
    flex: 0 0 min(21.7708333333vw, 41.8rem);
    width: min(21.7708333333vw, 41.8rem);
    height: min(24.8958333333vw, 47.8rem);
    padding: min(1.8229166667vw, 3.5rem) 0 min(3.5416666667vw, 6.8rem);
  }
}
.p-oneday__list li:nth-child(1) {
  background-image: url("../images/oneday_bg01_sp.webp");
}
@media (min-width: 768px) {
  .p-oneday__list li:nth-child(1) {
    background-image: url("../images/oneday_bg01.webp");
  }
}
.p-oneday__list li:nth-child(2) {
  background-image: url("../images/oneday_bg02_sp.webp");
}
@media (min-width: 768px) {
  .p-oneday__list li:nth-child(2) {
    background-image: url("../images/oneday_bg02.webp");
  }
}
.p-oneday__list li:nth-child(3) {
  background-image: url("../images/oneday_bg03_sp.webp");
}
@media (min-width: 768px) {
  .p-oneday__list li:nth-child(3) {
    background-image: url("../images/oneday_bg03.webp");
  }
}
.p-oneday__list li:nth-child(4) {
  background-image: url("../images/oneday_bg04_sp.webp");
}
@media (min-width: 768px) {
  .p-oneday__list li:nth-child(4) {
    background-image: url("../images/oneday_bg04.webp");
  }
}
.p-oneday__list .time {
  --lh: 1;
  color: #f7931e;
  font-size: 1.8955rem;
  font-weight: bold;
  line-height: var(--lh);
  text-align: center;
}
@media (min-width: 768px) {
  .p-oneday__list .time {
    font-size: min(3.125vw, 6rem);
  }
}
.p-oneday__list .txt {
  --lh: 1.26666667;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
  line-height: var(--lh);
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .p-oneday__list .txt {
    --lh: 1.375;
    font-size: min(2.0833333333vw, 4rem);
    margin-top: min(0.9375vw, 1.8rem);
  }
}
.p-oneday__list .note {
  --lh: 1.78;
  font-weight: 500;
  font-size: 1.279rem;
  line-height: var(--lh);
  text-align: center;
  margin-top: 0.7rem;
}
@media (min-width: 768px) {
  .p-oneday__list .note {
    font-size: min(1.71875vw, 3.3rem);
    letter-spacing: -0.06em;
    margin-top: min(0.9375vw, 1.8rem);
  }
}
.p-oneday__list .note span {
  position: relative;
}
.p-oneday__list .note span::before, .p-oneday__list .note span::after {
  content: "";
  background-color: #000;
  position: absolute;
  width: 0.1rem;
  height: 1.4rem;
  top: 0.25rem;
}
@media (min-width: 768px) {
  .p-oneday__list .note span::before, .p-oneday__list .note span::after {
    width: min(0.1041666667vw, 0.2rem);
    height: min(2.03125vw, 3.9rem);
    top: 0.5rem;
  }
}
.p-oneday__list .note span::before {
  left: -0.55rem;
  transform: rotate(-25deg);
}
@media (min-width: 768px) {
  .p-oneday__list .note span::before {
    left: -1.4rem;
  }
}
.p-oneday__list .note span::after {
  right: -0.35rem;
  transform: rotate(25deg);
}
@media (min-width: 768px) {
  .p-oneday__list .note span::after {
    right: -2.1rem;
  }
}
.p-oneday__list .media {
  width: 12.5rem;
  margin: 1rem auto 0;
}
@media (min-width: 768px) {
  .p-oneday__list .media {
    width: min(18.2291666667vw, 35rem);
    margin-top: min(1.0416666667vw, 2rem);
  }
}
.p-oneday__clock {
  flex-shrink: 0;
  width: 4.5rem;
  margin-top: 5.75rem;
}
@media (min-width: 768px) {
  .p-oneday__clock {
    width: min(76.09375vw, 146.1rem);
    margin: 1.3rem auto 0;
  }
}
.p-oneday__note {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  margin-top: 7.45rem;
}
@media (min-width: 768px) {
  .p-oneday__note {
    flex-direction: row;
    align-items: center;
    position: relative;
    left: min(7.1354166667vw, 13.7rem);
    margin-top: min(1.0416666667vw, 2rem);
  }
}
.p-oneday__note li:not(.media) {
  background: url("../images/oneday_note_bg_sp.webp") no-repeat center/cover;
  width: 9.45rem;
  height: 7.65rem;
  padding: 1.7rem 1.25rem 0 0;
}
@media (min-width: 768px) {
  .p-oneday__note li:not(.media) {
    background-image: url("../images/oneday_note_bg.webp");
    width: min(14.6354166667vw, 28.1rem);
    height: min(11.1979166667vw, 21.5rem);
    padding: min(3.3333333333vw, 6.4rem) 0 0;
  }
}
.p-oneday__note li.media {
  width: 8.4rem;
  margin-block: 1.1rem;
}
@media (min-width: 768px) {
  .p-oneday__note li.media {
    width: min(10.0520833333vw, 19.3rem);
    margin: min(1.3541666667vw, 2.6rem) min(1.7708333333vw, 3.4rem) 0 min(1.5104166667vw, 2.9rem);
  }
}
.p-oneday__note li .time {
  --lh: 1;
  color: #f7931e;
  font-weight: bold;
  font-size: 1.8955rem;
  line-height: var(--lh);
  text-align: center;
}
@media (min-width: 768px) {
  .p-oneday__note li .time {
    font-size: min(3.125vw, 6rem);
  }
}
.p-oneday__note li .txt {
  --lh: 1;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
  line-height: var(--lh);
  margin-top: 0.8rem;
}
@media (min-width: 768px) {
  .p-oneday__note li .txt {
    font-size: min(2.1354166667vw, 4.1rem);
    margin-top: min(0.7291666667vw, 1.4rem);
  }
}

.p-train {
  padding-block: 2rem 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-train {
    padding-block: min(5.2083333333vw, 10rem) min(12.7604166667vw, 24.5rem);
  }
}
.p-train__inner {
  position: relative;
  max-width: min(83.75vw, 160.8rem);
  margin-inline: auto;
}
.p-train__content {
  position: relative;
  margin-top: 4.05rem;
}
@media (min-width: 768px) {
  .p-train__content {
    margin-top: min(4.7916666667vw, 9.2rem);
  }
}
@media (max-width: 767px) {
  .p-train__content {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.p-train__human {
  position: absolute;
  bottom: 2.0519835841%;
  left: -7.4840764331%;
  width: 14.7rem;
}
@media (min-width: 768px) {
  .p-train__human {
    width: 35.8208955224%;
    bottom: -0.6589785832%;
    left: -5.2860696517%;
  }
}
.p-train__list {
  padding-left: 3.1rem;
  position: relative;
}
@media (min-width: 768px) {
  .p-train__list {
    padding-left: min(8.0729166667vw, 15.5rem);
  }
}
.p-train__list::before {
  content: "";
  background: url("../images/dots_img_sp.webp") no-repeat center/contain;
  transform: rotate(-29.5deg);
  width: 3rem;
  height: 35.6rem;
  position: absolute;
  top: -0.6rem;
  left: 7.4rem;
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-train__list::before {
    background-image: url("../images/dots_img.webp");
    transform: rotate(-34deg);
    width: min(35.46875vw, 68.1rem);
    height: min(66.1458333333vw, 127rem);
    top: min(-1.8229166667vw, -3.5rem);
    left: min(2.7604166667vw, 5.3rem);
  }
}
.p-train__item:nth-child(1) {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-train__item:nth-child(1) {
    margin-bottom: min(2.9166666667vw, 5.6rem);
  }
}
.p-train__item:nth-child(1) .p-train__item-phs {
  width: 8.4rem;
}
@media (min-width: 768px) {
  .p-train__item:nth-child(1) .p-train__item-phs {
    width: min(15.5729166667vw, 29.9rem);
  }
}
.p-train__item:nth-child(2) {
  padding-left: 4.9rem;
  margin-bottom: 3.45rem;
}
@media (min-width: 768px) {
  .p-train__item:nth-child(2) {
    padding-left: min(10.5729166667vw, 20.3rem);
    margin-bottom: min(4.9479166667vw, 9.5rem);
  }
}
.p-train__item:nth-child(2) .p-train__item-phs {
  width: 9.3rem;
}
@media (min-width: 768px) {
  .p-train__item:nth-child(2) .p-train__item-phs {
    width: min(17.2916666667vw, 33.2rem);
  }
}
.p-train__item:nth-child(2) .p-train__item-txt {
  margin-top: 0.25rem;
  padding-left: 2.65rem;
}
@media (min-width: 768px) {
  .p-train__item:nth-child(2) .p-train__item-txt {
    margin-top: 0;
    padding-left: min(6.6666666667vw, 12.8rem);
  }
}
.p-train__item:nth-child(3) {
  padding-left: 10.6rem;
  margin-bottom: 1.55rem;
}
@media (min-width: 768px) {
  .p-train__item:nth-child(3) {
    padding-left: min(22.1875vw, 42.6rem);
    margin-bottom: min(4.0625vw, 7.8rem);
  }
}
.p-train__item:nth-child(3) .p-train__item-phs {
  width: 9.35rem;
}
@media (min-width: 768px) {
  .p-train__item:nth-child(3) .p-train__item-phs {
    width: min(17.34375vw, 33.3rem);
  }
}
.p-train__item:nth-child(3) .p-train__item-txt {
  margin-top: 0.25rem;
  padding-left: 2.65rem;
}
@media (min-width: 768px) {
  .p-train__item:nth-child(3) .p-train__item-txt {
    margin-top: 0;
    padding-left: min(7.34375vw, 14.1rem);
  }
}
.p-train__item:nth-child(4) {
  padding-left: 15.9rem;
}
@media (min-width: 768px) {
  .p-train__item:nth-child(4) {
    padding-left: min(34.4270833333vw, 66.1rem);
  }
}
.p-train__item:nth-child(4) .p-train__item-phs {
  width: 9.5rem;
}
@media (min-width: 768px) {
  .p-train__item:nth-child(4) .p-train__item-phs {
    width: min(17.6041666667vw, 33.8rem);
  }
}
.p-train__item:nth-child(4) .p-train__item-txt {
  margin-top: 0.25rem;
  padding-left: 2.35rem;
  letter-spacing: -0.04em;
}
@media (min-width: 768px) {
  .p-train__item:nth-child(4) .p-train__item-txt {
    margin-top: 0;
    padding-left: min(5.2083333333vw, 10rem);
  }
}
.p-train__item-txt {
  --lh: 1.267;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: var(--lh);
  padding-left: 2.4rem;
}
@media (min-width: 768px) {
  .p-train__item-txt {
    --lh: 1.67;
    font-size: min(3.125vw, 6rem);
    line-height: 1.6666666667;
    margin-top: min(0.625vw, 1.2rem);
    padding-left: min(4.375vw, 8.4rem);
  }
}
.p-train__note {
  position: relative;
  top: -0.65rem;
}
@media (min-width: 768px) {
  .p-train__note {
    position: absolute;
    top: min(6.25vw, 12rem);
    right: min(1.9791666667vw, 3.8rem);
  }
}
@media (max-width: 767px) {
  .p-train__note {
    width: 33.7rem;
    margin-inline: auto;
  }
}
.p-train__note img {
  width: 14.22638rem;
}
@media (min-width: 768px) {
  .p-train__note img {
    width: min(25.8854166667vw, 49.7rem);
  }
}
@media (max-width: 767px) {
  .p-train__note img {
    display: block;
    margin-left: auto;
  }
}
.p-train__note-content {
  background: url("../images/notetrain_border_sp.webp") no-repeat center/cover;
  font-weight: bold;
  font-size: 1.35rem;
  line-height: 1.3703703704;
  width: 19.5rem;
  height: 10.25rem;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: calc(100% - 12.1rem);
  left: calc(100% - 33.35rem);
  text-align: center;
  padding: 2.3rem 0 0 0;
}
@media (min-width: 768px) {
  .p-train__note-content {
    background-image: url("../images/notetrain_border.webp");
    font-size: min(1.8229166667vw, 3.5rem);
    line-height: 1.4571428571;
    width: min(28.0208333333vw, 53.8rem);
    height: min(16.25vw, 31.2rem);
    bottom: calc(100% - min(7.5520833333vw, 14.5rem));
    left: calc(100% - min(22.1354166667vw, 42.5rem));
    padding: min(3.28125vw, 6.3rem) 0 0 min(1.1458333333vw, 2.2rem);
  }
}

.p-interview {
  padding-block: 3.75rem 11rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-interview {
    padding-block: 23.1rem 46.2rem;
  }
}
@media (max-width: 767px) {
  .p-interview {
    margin-top: -1rem;
  }
}
.p-interview::after {
  content: "";
  background: linear-gradient(-30deg, #ffdeed, #eeefff);
  clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0% 100%);
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-interview::after {
    clip-path: polygon(0 9.5%, 100% 0%, 100% 91.5%, 0% 100%);
  }
}
.p-interview__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.65rem;
}
@media (min-width: 768px) {
  .p-interview__head {
    gap: 4.9rem;
    margin-bottom: 5.3rem;
  }
}
.p-interview__note {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 768px) {
  .p-interview__note {
    font-size: min(1.5625vw, 3rem);
  }
}
@media (max-width: 767px) {
  .p-interview__note {
    margin-top: 1rem;
  }
}
.p-interview__block {
  margin-bottom: 2.1rem;
  padding: 1.6rem 1.8rem 1.5rem;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .p-interview__block {
    margin-bottom: 10rem;
    padding: 6rem 6rem 6rem 7.2rem;
  }
}
@media (max-width: 767px) {
  .p-interview__block--02 {
    padding-block: 2.85rem 2.5rem;
  }
}
.p-interview__info {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-interview__info {
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 9.4rem;
  }
}
@media (min-width: 768px) {
  .p-interview__image {
    width: 50%;
    padding-right: 3.5rem;
  }
}
.p-interview__avatar {
  max-width: 22rem;
  width: 100%;
  position: relative;
  overflow: visible;
}
@media (min-width: 768px) {
  .p-interview__avatar {
    max-width: 62rem;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .p-interview__avatar {
    margin-inline: auto;
  }
}
.p-interview__role {
  display: none; /* 写真差し替え後に表示する */
  position: absolute;
  top: 30%;
  left: 0;
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 5rem;
  color: #6e2997;
  transform: rotate(-7deg);
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-interview__role {
    font-size: 10rem;
    top: 35%;
    left: -1rem;
  }
}
.p-interview__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 768px) {
  .p-interview__detail {
    width: 50%;
    padding-bottom: 2.5rem;
  }
}
.p-interview__name {
  color: rgba(102, 45, 145, 0.3);
  font-size: 4.578rem;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-interview__name {
    margin-bottom: 1.8rem;
    font-size: min(5.3645833333vw, 10.3rem);
    text-align: left;
  }
}
.p-interview__pos {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.1rem;
}
@media (min-width: 768px) {
  .p-interview__pos {
    margin-bottom: 2.2rem;
    font-size: min(2.34375vw, 4.5rem);
    text-align: left;
  }
}
.p-interview__ex {
  font-size: 1.5rem;
  line-height: 1.63;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 768px) {
  .p-interview__ex {
    font-size: min(1.5625vw, 3rem);
    line-height: 1.5;
    text-align: left;
    margin-bottom: 0.9rem;
  }
}
.p-interview__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 3.85rem;
}
@media (min-width: 768px) {
  .p-interview__list {
    -moz-column-gap: 12rem;
    column-gap: 12rem;
    row-gap: min(5.2083333333vw, 10rem);
  }
}
@media (min-width: 768px) {
  .p-interview__item {
    width: calc(50% - 6rem);
  }
}
.p-interview__ttl {
  color: #f7931e;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 2.2rem;
}
@media (min-width: 768px) {
  .p-interview__ttl {
    font-size: min(2.0833333333vw, 4rem);
    margin-bottom: min(3.0208333333vw, 5.8rem);
    padding-left: min(2.2395833333vw, 4.3rem);
  }
}
.p-interview__ttl::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 2.4rem;
  background-color: #f7931e;
  content: "";
}
@media (min-width: 768px) {
  .p-interview__ttl::before {
    width: min(1.5625vw, 3rem);
    height: min(2.9166666667vw, 5.6rem);
  }
}
.p-interview__txt {
  font-size: 1.4rem;
  line-height: 1.75;
  font-weight: 500;
  text-align: justify;
}
@media (min-width: 768px) {
  .p-interview__txt {
    font-size: min(1.5625vw, 3rem);
    line-height: 1.6333333333;
  }
}

.p-job {
  padding-block: 4.1rem 5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-job {
    margin-bottom: 15rem;
    padding-block: 0;
  }
}
.p-job .hline01 {
  margin-bottom: 3.6rem;
}
@media (min-width: 768px) {
  .p-job .hline01 {
    margin-bottom: 7rem;
  }
}
.p-job__block {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-job__block {
    row-gap: 0.9rem;
    border-right: 3px solid #ffe185;
  }
}
.p-job__item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-job__item {
    flex-direction: row;
  }
  .p-job__item:first-child .p-job__content::before {
    top: 0;
  }
  .p-job__item:last-child .p-job__content::after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 5px);
    height: 3px;
    background: linear-gradient(to right, #fb9a65, #ffe185);
    content: "";
  }
  .p-job__item.--style-2 {
    min-height: 30rem;
  }
  .p-job__item.--style-4 {
    min-height: 22rem;
  }
  .p-job__item.--style-5 {
    min-height: 25rem;
  }
}
.p-job__item--style-1, .p-job__item--style-2, .p-job__item--style-3, .p-job__item--style-4, .p-job__item--style-5 {
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-job__item.--style-2 .p-job__content {
    padding-block: 1rem 2.5rem;
  }
}
@media (max-width: 767px) {
  .p-job__item.--style-4 .p-job__content {
    padding-block: 1.4rem 2.15rem;
  }
}
@media (max-width: 767px) {
  .p-job__item.--style-5 .p-job__content {
    padding-top: 1.25rem;
  }
}
.p-job__head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0.5rem;
  background: linear-gradient(145deg, #fb7965 8%, #ffcf85 100%);
}
@media (min-width: 768px) {
  .p-job__head {
    width: 27%;
    padding: 6.5rem 1rem;
    background: linear-gradient(150deg, #fb0077 0%, #fb7f25 52%, #ffc166 100%);
  }
}
.p-job__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 1.75rem 0.5rem 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-job__content {
    width: 73%;
    padding-inline: 6rem 3rem;
    padding-block: 3rem;
    text-align: left;
  }
  .p-job__content::before {
    position: absolute;
    top: -5px;
    right: 0;
    width: calc(100% - 5px);
    height: 3px;
    background: linear-gradient(to right, #fb9a65, #ffe185);
    content: "";
  }
}
.p-job__ttl {
  color: #FFF;
  font-weight: 700;
  line-height: 1;
  font-size: 1.8685rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-job__ttl {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .p-job__ttl {
    font-size: 6rem;
  }
}
.p-job__txt, .p-job__list > li {
  font-weight: 500;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}
@media (min-width: 768px) {
  .p-job__txt, .p-job__list > li {
    font-size: 3.2rem;
    line-height: 1.5625;
  }
}
.p-job__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  margin-top: 0.2rem;
}
@media (min-width: 768px) {
  .p-job__list {
    flex-direction: column;
    -moz-column-gap: 0;
    column-gap: 0;
    justify-content: flex-start;
    margin-top: 1rem;
  }
}
.p-job__list > li {
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-job__list > li {
    line-height: 1.9;
  }
}
@media (max-width: 767px) {
  .p-job__list > li.--style-1 {
    margin-top: -0.5rem;
  }
}

.p-faq {
  padding-block: 3.25rem 6rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-faq {
    padding-block: 7.5rem 26rem;
  }
}
.p-faq__inner {
  margin-inline: auto;
  width: 100%;
  padding-inline: 3.4rem;
}
@media (min-width: 768px) {
  .p-faq__inner {
    max-width: 174rem;
    padding-inline: 1.5rem;
  }
}
.p-faq .hline01 {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-faq .hline01 {
    margin-bottom: 7rem;
  }
}

.c-accor {
  display: flex;
  flex-direction: column;
}
.c-accor__item {
  border-bottom: 0.1rem solid;
  -o-border-image: linear-gradient(to right, #fb9a65, #ffe185) 1;
  border-image: linear-gradient(to right, #fb9a65, #ffe185) 1;
  padding-bottom: 0.35rem;
}
.c-accor__item:first-child {
  border-top: 0.1rem solid;
}
@media (min-width: 768px) {
  .c-accor__item {
    border-width: 0.3rem;
  }
  .c-accor__item:first-child {
    border-top: 0.3rem solid;
  }
}
.c-accor__item.is-active .c-accor__ttl::before {
  opacity: 0;
}
.c-accor__head {
  position: relative;
  padding-left: 1.75rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .c-accor__head {
    padding-left: 12.8rem;
  }
}
.c-accor__quest {
  position: absolute;
  left: 0.45rem;
  top: 1.85rem;
  display: block;
  font-size: 1.8685rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: var(--font-en);
  background: linear-gradient(45deg, #fb5225 3%, #fb7f25 49%, #ffc166 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .c-accor__quest {
    left: 3.2rem;
    top: 2rem;
    font-size: 6rem;
  }
}
.c-accor__ttl {
  position: relative;
  padding: 1.75rem 3rem 1.5rem 1.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
}
@media (min-width: 768px) {
  .c-accor__ttl {
    padding-block: 2.7rem;
    padding-right: 8rem;
    font-size: 3.2rem;
  }
}
.c-accor__ttl::before {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  width: 0.15rem;
  height: 1.65rem;
  background-color: #000;
  transform: translateY(-50%);
  transition: 0.3s ease opacity;
  content: "";
}
@media (min-width: 768px) {
  .c-accor__ttl::before {
    right: 5.3rem;
    width: 0.3rem;
    height: 3.5rem;
  }
}
.c-accor__ttl::after {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  width: 1.65rem;
  height: 0.15rem;
  background-color: #000;
  transform: translateY(-50%);
  content: "";
}
@media (min-width: 768px) {
  .c-accor__ttl::after {
    right: 3.8rem;
    width: 3.5rem;
    height: 0.3rem;
  }
}
.c-accor__content {
  display: none;
  position: relative;
  top: -0.25rem;
  padding-left: 3rem;
  padding-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .c-accor__content {
    top: 0;
    padding-left: 12.5rem;
    padding-block: 1rem 2rem;
  }
}
.c-accor__ans {
  position: absolute;
  left: 0.45rem;
  top: -0.25rem;
  display: block;
  font-size: 1.8685rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: var(--font-en);
  background: linear-gradient(45deg, #fb5225 3%, #fb7f25 49%, #ffc166 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .c-accor__ans {
    top: 0.3rem;
    left: 3.2rem;
    font-size: 6rem;
  }
}
.c-accor__txt {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: #000;
  font-weight: 400;
}
@media (min-width: 768px) {
  .c-accor__txt {
    font-size: 3.2rem;
    line-height: 1.46875;
  }
}
/* 採用LP：サイト共通の追従バナーを非表示 */
.footer-cta.fixed-banner {
    display: none;
}
/* reCAPTCHAバッジを非表示 */
.grecaptcha-badge {
    visibility: hidden;
}
