@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* リキッドレイアウト対応 */
body {
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  overflow-x: clip;
}

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

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

body.drawer-open {
  overflow: hidden;
}

.home {
  background: #f6f6f6;
  overflow-x: clip;
}

.body-blue {
  background: #3db5e5;
  overflow-x: clip;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.9142857143vw;
  }
}
@media (min-width: 1750px) {
  html {
    font-size: 16px;
  }
}

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

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

body {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

body.fade-in {
  opacity: 1;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

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

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

.l-inner {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1200px;
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (min-width: 1540px) {
  .l-inner {
    max-width: 1750px;
  }
}

.p-404 {
  height: 100vh;
  padding-top: 89px;
  padding-top: 5.5625rem;
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
  background: url(../images/common/mv_404_sp.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-404 {
    background: url(../images/common/mv_404.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 11rem;
    padding-bottom: 6rem;
    height: 48rem;
  }
}

.p-404__content {
  border: 3px solid #fff;
  padding-top: 116px;
  padding-top: 7.25rem;
  padding-bottom: 116px;
  padding-bottom: 7.25rem;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-404__content {
    padding-left: 0;
    padding-left: initial;
    padding-right: 0;
    padding-right: initial;
  }
}

.p-404__block {
  max-width: 650px;
  max-width: 40.625rem;
  margin-inline: auto;
}

.p-404__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-404__title {
  color: #363636;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 2.5rem;
  }
}

.p-404__number {
  color: rgba(54, 54, 54, 0.15);
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 68px;
  font-size: 4.25rem;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-404__number {
    margin-left: 1.375rem;
    font-size: 8rem;
  }
}

.p-404__text-wrapper {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-404__text-wrapper {
    margin-top: 1.5rem;
  }
}

.p-404__text {
  line-height: 1.6;
  font-weight: 400;
  color: #363636;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    font-size: 1.125rem;
  }
}

.p-404__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn-wrapper {
    margin-top: 1.5rem;
  }
}

.p-404__btn {
  background: #6d6d6d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #6d6d6d;
  border-radius: 2.5rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 140px;
  width: 8.75rem;
  padding: 6px 10px;
  padding: 0.375rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.375rem;
    padding-right: 0.875rem;
    width: 15.625rem;
  }
}

.p-404__btn-text {
  font-weight: 500;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-404__btn-text {
    letter-spacing: 0.1em;
    font-size: 1rem;
  }
}

.p-404__btn:hover {
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-404__btn:hover .p-404__text {
  color: #fff;
}

.p-404__btn svg {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn svg {
    width: 2rem;
    height: 2rem;
  }
}

.p-404__btn circle,
.p-404__btn path {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-404__btn:hover circle {
  fill: #6d6d6d;
  opacity: 1;
}

.p-404__btn:hover path {
  fill: #fff;
}

.p-404__btn:hover .p-404__btn-text {
  color: #6d6d6d;
}

.p-contact-btn {
  margin-top: 49px;
  margin-top: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .p-contact-btn {
    margin-top: 7.0625rem;
  }
}

.p-contact-btn__content {
  text-align: center;
}

.p-contact-btn__link {
  display: block;
  max-width: 594px;
  max-width: 37.125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-contact-btn__link img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-culture {
  position: relative;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-culture {
    padding-bottom: 5.5rem;
  }
}

.p-culture::before {
  position: absolute;
  content: "";
  background: url(../images/common/culture_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  right: 0;
  aspect-ratio: 1920/1228;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.p-culture__content {
  max-width: 1200px;
  max-width: 75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-culture__text {
  letter-spacing: 0.05em;
  color: #242424;
  font-weight: 400;
  line-height: 1.8888888889;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-culture__text {
    font-size: clamp(12px, 2vw, 12px);
    width: 60%;
  }
}
@media screen and (min-width: 992px) {
  .p-culture__text {
    font-size: 1.125rem;
    width: initial;
    margin-top: 2.5rem;
  }
}

.p-culture__lists {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-culture__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
    margin-top: 0;
    margin-top: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-culture__lists-top {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: -15rem;
  }
}

.p-culture__list + .p-culture__list {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-culture__list + .p-culture__list {
    margin-top: 0;
    margin-top: initial;
  }
}

.p-culture__list-1 {
  max-width: 770px;
  max-width: 48.125rem;
  width: 100%;
}

.p-culture__link {
  display: block;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="15" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  position: relative;
}

.p-culture__link-text {
  position: absolute;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-size: 28px;
  font-size: 1.75rem;
  top: 20px;
  top: 1.25rem;
  left: 20px;
  left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-culture__link-text {
    top: 1.875rem;
    font-size: 2.5rem;
    left: 1.875rem;
  }
}

.p-culture__link-text--black {
  color: #242424;
}

.p-culture__link-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-culture__link-icon {
  position: absolute;
  width: 30px;
  width: 1.875rem;
  bottom: 30px;
  bottom: 1.875rem;
  right: 30px;
  right: 1.875rem;
}

.p-culture__link-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-culture__list-2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-culture__list-2 {
    max-width: 26.25rem;
  }
}

.p-culture__lists-bottom {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  gap: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-culture__lists-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-do {
  position: relative;
  overflow-x: clip;
  z-index: 1;
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-do {
    padding-top: 13.125rem;
  }
}

.p-do::before {
  position: absolute;
  content: "";
  background: url(../images/common/do_top_left.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  left: -1400px;
  left: -87.5rem;
  aspect-ratio: 1506/470;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-do::before {
    width: 94.125rem;
    top: -3rem;
  }
}

.p-do__content {
  position: relative;
}

.p-do__content::before {
  position: absolute;
  content: "";
  background: url(../images/common/do_content_right.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1137/770;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  top: -40px;
  top: -2.5rem;
  right: -400px;
  right: -25rem;
}
@media screen and (min-width: 768px) {
  .p-do__content::before {
    top: -15rem;
    right: -37.5rem;
    width: 71.0625rem;
  }
}

.p-do__text-wrapper {
  text-align: center;
  position: relative;
}

.p-do__text {
  font-weight: 700;
  color: #242424;
  line-height: 2;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (min-width: 768px) {
  .p-do__text {
    font-size: clamp(14px, 2vw, 14px);
  }
}
@media screen and (min-width: 992px) {
  .p-do__text {
    line-height: 3.4615384615;
    font-size: 1.625rem;
  }
}

.p-do__img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-do__img {
    margin-top: -12.5rem;
  }
}

.p-do__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-drawer-icon {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 9999px;
  width: 44px;
  width: 2.75rem;
  height: 44px;
  height: 2.75rem;
  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;
  background: transparent;
  /* 調整用 */
  --ring: 2px;
  --ring: 0.125rem;
  --grad: linear-gradient(90deg, #ec4a8f 0%, #f7c84b 50%, #2ec5ff 100%);
  /* グラデの“枠”だけ描く */
  /* お好み：hoverでうっすら背景 */
}
@media screen and (min-width: 768px) {
  .p-drawer-icon {
    width: 3.875rem;
    height: 3.875rem;
  }
}
.p-drawer-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: var(--ring);
  border-radius: inherit;
  background: var(--grad);
  pointer-events: none;
  /* 中身をくり抜くマスク（中心は透過） */
  -webkit-mask: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #000)
      )
      content-box,
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; /* Safari/Chrome */
  mask-composite: exclude; /* Firefox 等 */
}
.p-drawer-icon:hover {
  background: rgba(255, 255, 255, 0.08);
}

.p-drawer-icon.is-active {
  position: relative;
  z-index: 10001;
  background: #222;
}
.p-drawer-icon.is-active .p-drawer-icon__bars {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
}
.p-drawer-icon.is-active .p-drawer-icon__bar1 {
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-drawer-icon.is-active .p-drawer-icon__bar3 {
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-drawer-icon__bars {
  position: relative;
  width: 28px;
  width: 1.75rem;
  height: 8px;
  height: 0.5rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bars {
    gap: 0.4375rem;
    width: 1.25rem;
    height: 1rem;
  }
}

.p-drawer-icon__bar1 {
  height: 3px;
  background: #242424;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 20px;
  width: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-drawer-icon__bar3 {
  height: 3px;
  background: #242424;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  width: 1.25rem;
}

.p-drawer-content {
  width: 100%;
  height: 100dvh;
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.7);
  z-index: 9998;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-top: 125px;
  padding-top: 7.8125rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  padding-left: 32px;
  padding-left: 2rem;
  padding-right: 32px;
  padding-right: 2rem;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .p-drawer-content {
    padding-top: 0.5rem;
    padding-left: 0;
    padding-left: initial;
    padding-right: 0;
    padding-right: initial;
  }
}

.p-drawer-content.is-active {
  visibility: visible;
  opacity: 1;
}

.p-drawer-content__items {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100dvh;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__items {
    max-width: 62rem;
    width: 100%;
    padding-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    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;
  }
}

.p-drawer-content__list {
  text-align: center;
}

.p-drawer-content__list + .p-drawer-content__list {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-drawer-content__link {
  font-size: 17px;
  font-size: 1.0625rem;
  display: block;
  font-weight: 500;
}

.p-drawer-content__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  margin-top: 3.125rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  gap: 1.25rem;
}

.p-drawer-content__sns-text {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.p-drawer-content__sns-link {
  width: 30px;
  width: 1.875rem;
}

.p-drawer-content__sns-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-drawer-content__contact-wrapper {
  margin-top: 80px;
  margin-top: 5rem;
  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;
}

.p-drawer-content__contact {
  width: 240px;
  width: 15rem;
  height: 60px;
  height: 3.75rem;
  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;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f56112),
    to(#f5ab03)
  );
  background: linear-gradient(to right, #f56112, #f5ab03);
  border-radius: 0.3125rem;
  position: relative;
}

.p-drawer-content__contact-text {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.p-drawer-content__contact svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 11px;
  right: 0.6875rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-drawer-content__contact:hover.p-drawer-content__contact svg {
  right: 5px;
  right: 0.3125rem;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.p-entry {
  position: relative;
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-entry {
    padding-top: 18.75rem;
    padding-bottom: 12.5rem;
  }
}

.p-entry::before {
  position: absolute;
  content: "";
  background: url(../images/common/entry_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/1510;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  top: 120px;
  top: 7.5rem;
  left: 0;
  z-index: -10;
}

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

.p-entry__from {
  position: relative;
  font-weight: 700;
  color: #ed4e94;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-entry__from {
    margin-top: 3.75rem;
    font-size: 1.875rem;
  }
}

.p-entry__from::before {
  position: absolute;
  content: "";
  background: url(../images/common/entry_from_line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 500/74;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  width: 280px;
  width: 17.5rem;
}
@media screen and (min-width: 768px) {
  .p-entry__from::before {
    width: 31.25rem;
  }
}

.p-entry__dl {
  max-width: 1000px;
  max-width: 62.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-entry__dl {
    margin-top: 3.125rem;
  }
}

.p-entry__row {
  border-top: 1px dotted #cccccc;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-entry__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}

.p-entry__row:last-child {
  border-bottom: 1px dotted #cccccc;
}

.p-entry__dt {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #242424;
}
@media screen and (min-width: 768px) {
  .p-entry__dt {
    font-size: clamp(14px, 2vw, 14px);
    width: 15.625rem;
  }
}
@media screen and (min-width: 992px) {
  .p-entry__dt {
    padding-left: 1.25rem;
    font-size: 1.25rem;
  }
}

.p-entry__dd {
  margin-top: 8px;
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .p-entry__dd {
    width: calc(100% - 15.625rem);
  }
}
@media screen and (min-width: 992px) {
  .p-entry__dd {
    margin-top: 0;
    margin-top: initial;
    width: calc(100% - 15.625rem);
    padding-left: 1.875rem;
  }
}

.p-entry__dd-text {
  color: #242424;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-entry__dd-text {
    font-size: clamp(14px, 2vw, 14px);
  }
}
@media screen and (min-width: 992px) {
  .p-entry__dd-text {
    font-size: 1.25rem;
  }
}

.p-entry__dd-small {
  color: #242424;
  letter-spacing: 0.05em;
  line-height: 2.125;
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-entry__dd-small {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-entry__dd-small {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.p-entry__dd-link {
  margin-top: 8px;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  gap: 0.625rem;
}

.p-entry__dd-icon {
  width: 12px;
  width: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-entry__dd-icon {
    width: 1.25rem;
  }
}

.p-entry__dd-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-entry__dd-map {
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #242424;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-entry__dd-map {
    font-size: clamp(14px, 2vw, 14px);
  }
}
@media screen and (min-width: 992px) {
  .p-entry__dd-map {
    font-size: 1rem;
  }
}

.p-entry__dd-bold {
  font-weight: 700;
  color: #242424;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-entry__dd-bold {
    font-size: clamp(14px, 2vw, 14px);
  }
}
@media screen and (min-width: 992px) {
  .p-entry__dd-bold {
    font-size: 1.25rem;
  }
}

.p-entry__btn-wrapper {
  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;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-entry__btn-wrapper {
    margin-top: 3.75rem;
  }
}

.p-entry__btn {
  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: 20px;
  gap: 1.25rem;
  background: #f361a1;
  border-radius: 9999px;
  width: 280px;
  width: 17.5rem;
  height: 60px;
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-entry__btn {
    width: 30.375rem;
    height: 4.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-entry__btn {
    width: 21.375rem;
    height: 4.5rem;
  }
}

.p-entry__btn-text {
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-entry__btn-text {
    font-size: clamp(14px, 2vw, 14px);
  }
}
@media screen and (min-width: 992px) {
  .p-entry__btn-text {
    font-size: 1.375rem;
  }
}

.p-entry__arrow {
  width: 15px;
  width: 0.9375rem;
}

.p-entry__arrow img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-footer {
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 7.0625rem;
    padding-bottom: 4.0625rem;
  }
}

.p-footer::before {
  position: absolute;
  content: "";
  background: url(../images/common/footer_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
  aspect-ratio: 300/700;
}
@media screen and (min-width: 768px) {
  .p-footer::before {
    aspect-ratio: 1920/700;
  }
}

.p-footer::after {
  position: absolute;
  content: "";
  background: url(../images/common/footer_bottom.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  bottom: 0;
  right: 0;
  aspect-ratio: 457/187;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  width: 54%;
}
@media screen and (min-width: 768px) {
  .p-footer::after {
    width: 28.5625rem;
  }
}

.p-footer__content {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__content {
    max-width: 87.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12.0625rem;
  }
}

.p-footer__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__left {
    max-width: 21.875rem;
  }
}

.p-footer__home {
  display: inline-block;
  width: 200px;
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__home {
    width: 21.875rem;
  }
}

.p-footer__home img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-footer__address-wrapper {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__address-wrapper {
    margin-top: 1.25rem;
  }
}

.p-footer__address {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .p-footer__address {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-footer__address {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-footer__tel {
  display: inline-block;
}

.p-footer__sns-wrapper {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns-wrapper {
    margin-top: 1.875rem;
    gap: 2.5rem;
  }
}

.p-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  gap: 1.25rem;
}

.p-footer__facebook {
  width: 19px;
  width: 1.1875rem;
  display: inline-block;
}

.p-footer__facebook img,
.p-footer__instagram img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-footer__instagram {
  display: inline-block;
  width: 28px;
  width: 1.75rem;
}

.p-footer__copy {
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    font-size: clamp(10px, 2vw, 10px);
  }
}
@media screen and (min-width: 992px) {
  .p-footer__copy {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-footer__lists {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-footer__lists {
    gap: 3rem;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 0;
    margin-top: initial;
  }
}
@media screen and (min-width: 992px) {
  .p-footer__lists {
    gap: 5.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__list + .p-footer__list {
    margin-top: 0;
    margin-top: initial;
  }
}

.ml24 {
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .ml24 {
    margin-left: 0;
    margin-left: initial;
  }
}

.mt24 {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .mt24 {
    margin-top: 0;
    margin-top: initial;
  }
}

.p-footer__link {
  color: #fff;
  display: block;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__link {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-footer__link {
    font-size: 1rem;
  }
}

.p-footer__link + .p-footer__link {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-footer__small-lists {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-footer__small-list + .p-footer__small-list {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-footer__small-link {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  position: relative;
  padding-left: 12px;
  padding-left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__small-link {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-footer__small-link {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-footer__small-link::before {
  position: absolute;
  content: "";
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  border-radius: 9999px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
}

.p-form__row-wrapper {
  position: relative;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  border-top: 1px dotted #222;
}
@media screen and (min-width: 768px) {
  .p-form__row-wrapper {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-form__row-wrapper:first-child {
  border-top: none;
}

@media screen and (min-width: 768px) {
  .p-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.p-form__row + .p-form__row {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-form__dt-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-form__dt-wrapper {
    padding-top: 0.5rem;
    width: 14.375rem;
  }
}

.p-form__dt {
  color: #222;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-form__dt {
    font-size: 1.125rem;
  }
}

.p-form__dt span {
  color: #363636;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-form__need {
  color: #fff;
  background: #ed1c24;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  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: 55px;
  width: 3.4375rem;
  height: 22px;
  height: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-form__need {
    font-size: 0.875rem;
  }
}

.p-form__need--black {
  color: #363636;
}

.wpcf7-spinner {
  display: none;
}

.p-form__description--radio {
  /* デフォルトのボタン */
  /* チェック前のボタン */
  /* チェック後のボタン */
}
.p-form__description--radio .wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #222;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-form__description--radio .wpcf7-list-item-label {
    font-size: 1.125rem;
  }
}
.p-form__description--radio input[type="radio"] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}
.p-form__description--radio .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #222;
  border-radius: 9999px; /* ラジオボタンっぽく丸くする */
  content: "";
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-form__description--radio .wpcf7-list-item-label::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-form__description--radio
  input[type="radio"]:checked
  + .wpcf7-list-item-label::before {
  background-color: #ed1c24; /* チェック後の中心の色 */
  -webkit-box-shadow: inset 0 0 0 5px #fff;
  box-shadow: inset 0 0 0 5px #fff; /* 中心の色のスタイル */
}
.p-form__description--radio .custom-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 18px;
  row-gap: 1.125rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-form__description--radio .custom-radio {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.wpcf7-list-item {
  margin-left: 0;
  margin-left: initial;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item {
    margin-right: 0;
    margin-right: initial;
  }
}

.p-form__description {
  font-size: 14px;
  font-size: 0.875rem;
  word-wrap: break-word;
  color: #363636;
  padding-top: 0;
  padding-top: initial;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-form__description {
    margin-top: 0;
    margin-top: initial;
    font-size: 1rem;
    line-height: 1.2;
    width: calc(100% - 14.375rem);
    margin-left: 3.8125rem;
  }
}

.p-form input[type="text"],
.p-form input[type="tel"],
.p-form input[type="email"] {
  width: 100%;
  border: 1px solid #909090;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
  border-radius: 0.375rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-form input[type="text"],
  .p-form input[type="tel"],
  .p-form input[type="email"] {
    font-size: 1.125rem;
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.p-form textarea {
  border: 1px solid #909090;
  width: 100%;
  height: 200px;
  height: 12.5rem;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
  resize: none;
  border-radius: 0.375rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-form textarea {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 1.125rem;
    height: 12.5rem;
  }
}

.p-form__btn-wrapper {
  margin-top: 28px;
  margin-top: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-form__btn-wrapper {
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}

.p-form__btn-outside {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-form__btn-outside {
    width: 15rem;
  }
}

.p-form__btn-outside::before {
  position: absolute;
  content: "";
  background: url(../images/common/btn_icon_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 6px;
  left: 0.375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  aspect-ratio: 12/24;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-form__btn-outside::before {
    width: 1.5rem;
  }
}

.p-form__btn-outside::after {
  position: absolute;
  content: "";
  background: url(../images/common/btn_icon_white_right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  aspect-ratio: 12/24;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  right: 6px;
  right: 0.375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-form__btn-outside::after {
    width: 1.5rem;
  }
}

.p-form__btn input[type="submit"] {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 9999px;
  position: relative;
  border: 1px solid #222;
  background: #222;
  font-size: 18px;
  font-size: 1.125rem;
  width: 240px;
  width: 15rem;
  height: 60px;
  height: 3.75rem;
  text-align: center;
  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;
  color: #fff;
}

.p-form__btn input[type="submit"]:hover,
.p-form__btn input[type="button"]:hover {
  background: rgba(54, 54, 54, 0.3);
  color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
}

input::-webkit-input-placeholder {
  color: rgba(54, 54, 54, 0.3);
  line-height: 1.2;
}

input::-moz-placeholder {
  color: rgba(54, 54, 54, 0.3);
  line-height: 1.2;
}

input::-ms-input-placeholder {
  color: rgba(54, 54, 54, 0.3);
  line-height: 1.2;
}

input::placeholder {
  color: rgba(54, 54, 54, 0.3);
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  input::-webkit-input-placeholder {
    font-size: 1.125rem;
  }
  input::-moz-placeholder {
    font-size: 1.125rem;
  }
  input::-ms-input-placeholder {
    font-size: 1.125rem;
  }
  input::placeholder {
    font-size: 1.125rem;
  }
}

.p-form__privacy-wrapper {
  text-align: center;
}

.p-form__privacy-text {
  color: #222;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-form__privacy-text {
    font-size: 1.125rem;
  }
}

.p-form__privacy-text a {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .wpcf7-list-item {
    width: 17.5rem;
  }
}

.p-header {
  position: fixed;
  z-index: 999;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  height: 80px;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 6.25rem;
  }
}

.p-header__inner {
  height: inherit;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
}

.p-header__content {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__home {
  display: inline-block;
  width: 200px;
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-header__home {
    width: 25.25rem;
  }
}

.p-header__home img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-header__nav {
  margin-left: auto;
}

.p-header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__list + .p-header__list {
  margin-left: 10px;
  margin-left: 0.625rem;
}

.p-header__list-drawer {
  margin-left: 18px;
  margin-left: 1.125rem;
}

.p-header__link {
  color: #fff;
  text-transform: uppercase;
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #f566a5;
  border-radius: 9999px;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-header__link {
    font-size: 1.625rem;
    padding: 1.25rem 3.625rem;
  }
}

.p-header__link-entry {
  background: #4d4ca1;
}

.p-header__list--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__list--pc {
    display: block;
  }
}

.p-home-topics__box {
  position: relative;
  z-index: 1;
}

.p-home-topics {
  position: relative;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
}

.p-home-topics__top img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-home-topics__title {
  text-align: center;
}

.p-home-topics__block {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-home-topics__row {
  position: relative;
  border-bottom: 1px dotted #222;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home-topics__row {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-home-topics__row:first-child {
  border-top: 1px dotted #222;
}

.p-home-topics__metaBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__metaBlock {
    width: 15rem;
  }
}

.p-home-topics__time {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #222;
}

.p-home-topics__category {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  background: #ed1c24;
  border-radius: 0.25rem;
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  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;
}

.p-home-topics__blockTitle {
  letter-spacing: 0.05em;
  line-height: 1.6111111111;
  color: #222;
  text-decoration: underline;
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__blockTitle {
    margin-top: 0;
    margin-top: initial;
    font-size: 1.125rem;
    width: calc(100% - 12.5rem);
  }
}

.p-home-topics__btn-wrapper {
  text-align: center;
  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;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__btn-wrapper {
    margin-top: 3.75rem;
  }
}

.p-home-topics__btn {
  width: 240px;
  width: 15rem;
  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;
  position: relative;
  height: 60px;
  height: 3.75rem;
  background: #222;
  border-radius: 9999px;
}

.p-home-topics__icon {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: auto;
  aspect-ratio: 12/24;
  -o-object-fit: cover;
  object-fit: cover;
  top: 54%;
  left: 6px;
  left: 0.375rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-home-topics__btn-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__btn-text {
    font-size: 1.125rem;
  }
}

.p-home-topics__icon--right {
  right: 6px;
  right: 0.375rem;
  left: auto;
  left: initial;
}

.p-home-topics__pagination {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__pagination {
    margin-top: 5rem;
  }
}

.p-home-topics__lists {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__lists {
    gap: 0.875rem;
  }
}

.p-home-topics__pagination-link {
  display: inline-block;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  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;
  border: 1px solid #222;
  border-radius: 9999px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-home-topics__pagination-link.current {
  background: #ed1c24;
  color: #fff;
  border: 1px solid #ed1c24;
}

.p-info {
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-info {
    padding-top: 5.4375rem;
    padding-bottom: 6.25rem;
  }
}

.p-info::before {
  position: absolute;
  content: "";
  background: url(../images/common/info_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/2453;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  top: 660px;
  top: 41.25rem;
  left: 0;
  z-index: -1;
}

.p-info__content {
  max-width: 1400px;
  max-width: 87.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-info__grid {
  display: grid;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-info__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-info__grid + .p-info__grid {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-info__box {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="15" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  border-radius: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-info__box {
    border-radius: 3.125rem;
  }
}

.p-info__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-info__box--transparent {
  background: transparent;
}

.p-info__box--nopadding {
  padding: 0;
  padding: initial;
}

.p-info__row {
  display: grid;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
}

.p-info__row-box {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="15" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  border-radius: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-info__row-box {
    border-radius: 3.125rem;
  }
}

.p-info__row-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-info__triple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  margin-top: 0.625rem;
  gap: 10px;
  gap: 0.625rem;
}

.p-info__flex-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-info__flex-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-info__bottom {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  gap: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-info__bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-info__box-column {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  gap: 0.625rem;
}

.p-inter {
  position: relative;
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-inter {
    padding-top: 9.375rem;
    padding-bottom: 0;
    padding-bottom: initial;
  }
}

.p-inter::before {
  position: absolute;
  content: "";
  background: url(../images/common/interview_bg2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/2088;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  left: 0;
  top: 860px;
  top: 53.75rem;
  z-index: -1;
}

.p-inter::after {
  position: absolute;
  content: "";
  background: url(../images/common/interview_bg3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/1155;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  left: 0;
  top: 3160px;
  top: 197.5rem;
  z-index: -1;
}

.p-inter__content {
  max-width: 1200px;
  max-width: 75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-inter__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-inter__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-inter__row {
    margin-top: 5rem;
    gap: 4.375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.p-inter__row--reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-inter__row--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 11.25rem;
  }
}

.p-inter__detail {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-inter__detail {
    max-width: 37.5rem;
  }
}

.p-inter__detail-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  gap: 0.9375rem;
}

.p-inter__num {
  color: #fff;
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-inter__num {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-inter__num {
    font-size: 1rem;
  }
}

.p-inter__sub {
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-inter__sub {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-inter__sub {
    font-size: 1rem;
  }
}

.p-inter__title {
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-inter__title {
    font-size: 2.25rem;
  }
}

.p-inter__detail-textWrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-inter__detail-textWrapper {
    margin-top: 1.875rem;
  }
}

.p-inter__detail-text {
  line-height: 1.8888888889;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-inter__detail-text {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-inter__detail-text {
    font-size: 1.125rem;
  }
}

.p-inter__rowImg {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-inter__rowImg {
    max-width: 33.125rem;
  }
}

.p-inter__rowImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-inter__img2 {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-inter__img2 {
    margin-top: 11.25rem;
  }
}

.p-inter__img2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-inter__detail-middle {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-inter__detail-middle {
    margin-top: 5rem;
  }
}

.p-interview {
  position: relative;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-interview::before {
  position: absolute;
  content: "";
  background: url(../images/common/interview_bg1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/1678;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  z-index: -1;
}

.p-interview__content {
  max-width: 1200px;
  max-width: 75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-interview__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -5.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-interview__detail {
    margin-right: -3.5rem;
    margin-top: 7.5rem;
  }
}

.p-interview__title {
  font-weight: 900;
  color: #fff;
  line-height: 1.3333333333;
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-interview__title {
    font-size: 5.625rem;
  }
}

.p-interview__en {
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-interview__en {
    font-size: 1.875rem;
    margin-top: 1.875rem;
  }
}

.p-interview__occupation {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 4px;
  margin-top: 0.25rem;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-interview__occupation {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-interview__occupation {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-interview__img {
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-interview__img {
    margin-top: 0;
    margin-top: initial;
    max-width: 38.625rem;
    margin-right: -8.1875rem;
  }
}

.p-interview__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-mv {
  position: relative;
  z-index: 2;
}

.p-mv__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1220/1080;
}
@media screen and (min-width: 768px) {
  .p-mv__img img {
    aspect-ratio: 1920/1080;
  }
}

.p-page-mv {
  position: relative;
  overflow-x: clip;
  padding-top: 160px;
  padding-top: 10rem;
}
@media screen and (min-width: 768px) {
  .p-page-mv {
    padding-top: 13.8125rem;
  }
}

.p-page-mv--intern::before {
  position: absolute;
  content: "";
  background: url(../images/common/mv_bg_intern.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  left: 0;
  aspect-ratio: 1000/1299;
  z-index: -1;
  top: 64px;
  top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-page-mv--intern::before {
    top: 0;
    aspect-ratio: 1920/1299;
  }
}

.p-page-mv--culture::before {
  position: absolute;
  content: "";
  background: url(../images/common/mv_bg_culture.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: -1;
  aspect-ratio: 900/2227;
}
@media screen and (min-width: 768px) {
  .p-page-mv--culture::before {
    aspect-ratio: 1920/2227;
  }
}

.p-page-mv--career::before {
  position: absolute;
  content: "";
  background: url(../images/common/mv_bg_career.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/2398;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-page-mv--infographics::before {
  position: absolute;
  content: "";
  background: url(../images/common/mv_bg_infographics.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/910;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-page-mv__title-en {
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  font-weight: 900;
  font-style: italic;
  color: #242424;
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-mv__title-en {
    font-size: 10rem;
  }
}

.p-page-mv__title-ja {
  color: #242424;
  display: block;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-page-mv__title-ja {
    font-size: 3.125rem;
  }
}

.p-page-mv__img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-mv__img {
    margin-top: initial;
    max-width: 46.5rem;
    margin-top: 7.625rem;
  }
}

.p-page-mv__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-page-mv__text-wrapper {
  text-align: center;
  margin-top: 56px;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-page-mv__text-wrapper {
    margin-top: 5.625rem;
  }
}

.p-page-mv__text {
  color: #242424;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .p-page-mv__text {
    font-size: clamp(14px, 2vw, 14px);
  }
}
@media screen and (min-width: 992px) {
  .p-page-mv__text {
    line-height: 3.4615384615;
    font-size: 1.625rem;
  }
}

.p-pass {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-pass {
    padding-top: 10rem;
    padding-bottom: 20.3125rem;
  }
}

.p-pass__content {
  max-width: 760px;
  max-width: 47.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

.p-pass__qa {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-pass__qa {
    margin-top: 15.5rem;
  }
}

.p-program {
  z-index: 1;
  position: relative;
  padding-top: 64px;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-program {
    padding-top: 13.125rem;
  }
}

.p-program::before {
  position: absolute;
  content: "";
  background: url(../images/common/program_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1883;
  -o-object-fit: cover;
  object-fit: cover;
  top: 80px;
  top: 5rem;
  left: 0;
  z-index: -1;
}

.p-program__content {
  max-width: 1200px;
  max-width: 75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

.p-program__text-wrapper {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-program__text-wrapper {
    text-align: center;
    margin-top: 3.75rem;
  }
}

.p-program__text {
  color: #242424;
  font-weight: 400;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-program__text {
    font-size: clamp(14px, 2vw, 14px);
  }
}
@media screen and (min-width: 992px) {
  .p-program__text {
    font-size: 1.125rem;
  }
}

.p-program__schedule {
  background: rgba(255, 255, 255, 0.7);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="15" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  padding: 16px;
  padding: 1rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-program__schedule {
    border-radius: 3.125rem;
    padding-top: 4.75rem;
    padding-left: 6.25rem;
    padding-right: 6.25rem;
    padding-bottom: 3.75rem;
    margin-top: 2.5rem;
  }
}

.p-program__schedule-flex {
  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;
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-program__schedule-flex {
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.p-program__schedule-title {
  font-weight: 900;
  color: #242424;
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-program__schedule-title {
    font-size: 3.75rem;
  }
}

.p-program__schedule-ja {
  font-weight: 700;
  color: #242424;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-program__schedule-ja {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-program__schedule-ja {
    font-size: 0.875rem;
  }
}

.p-program__bottom {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-program__bottom-text {
  font-weight: 400;
  color: #242424;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-program__bottom-text {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-program__bottom-text {
    font-size: 0.875rem;
  }
}

.p-program__img {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-program__img {
    margin-top: 2.5rem;
  }
}

.p-program__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-program__lists {
  display: grid;
  gap: 24px;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-program__lists {
    gap: 3.75rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.75rem;
  }
}

.p-program__list {
  background: rgba(255, 255, 255, 0.7);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="15" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  padding: 16px;
  padding: 1rem;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .p-program__list {
    padding: 1.875rem 1.5625rem;
    border-radius: 1.875rem;
  }
}

.p-program__detail {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-program__detail {
    margin-top: -2.5rem;
  }
}

.p-program__detail-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-program__detail-title {
  font-weight: 700;
  color: #242424;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .p-program__detail-title {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-program__detail-title {
    font-size: 1.625rem;
  }
}
.p-program__detail-text {
  line-height: 2;
  color: #242424;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-program__detail-text {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-program__detail-text {
    margin-top: 1.5625rem;
    font-size: 1rem;
  }
}

.p-qa__block {
  max-width: 700px;
  max-width: 43.75rem;
  width: 100%;
}

.p-qa__block + .p-qa__block {
  margin-top: 224px;
  margin-top: 14rem;
}

.p-qa__block--1,
.p-qa__block--2,
.p-qa__block--3,
.p-qa__block--4 {
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-qa__block--2,
  .p-qa__block--4 {
    margin-left: 3.75rem;
  }
}

.p-qa__block--1::before {
  position: absolute;
  content: "";
  background: url(../images/common/qa_1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 320/402;
  -o-object-fit: cover;
  object-fit: cover;
  left: -40px;
  left: -2.5rem;
  top: -200px;
  top: -12.5rem;
  width: 100px;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-qa__block--1::before {
    width: 20rem;
    top: -25.125rem;
    left: -20rem;
  }
}

.p-qa__block--1::after {
  position: absolute;
  content: "";
  background: url(../images/common/qa_line1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 1265/633;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  top: -110px;
  top: -6.875rem;
  width: 800px;
  width: 50rem;
  left: -300px;
  left: -18.75rem;
}
@media screen and (min-width: 768px) {
  .p-qa__block--1::after {
    width: 79.0625rem;
    top: -6.25rem;
    left: -20rem;
  }
}

.p-qa__block--2::before {
  position: absolute;
  content: "";
  background: url(../images/common/qa_2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 320/404;
  -o-object-fit: cover;
  object-fit: cover;
  right: -40px;
  right: -2.5rem;
  top: -200px;
  top: -12.5rem;
  width: 100px;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-qa__block--2::before {
    width: 20rem;
    top: -25.125rem;
    right: -20rem;
  }
}

.p-qa__block--2::after {
  position: absolute;
  content: "";
  background: url(../images/common/qa_line2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 945/823;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  top: -110px;
  top: -6.875rem;
  width: 600px;
  width: 37.5rem;
  right: -80px;
  right: -5rem;
}
@media screen and (min-width: 768px) {
  .p-qa__block--2::after {
    width: 59.0625rem;
    top: -6.25rem;
    right: -1rem;
  }
}

.p-qa__block--3::before {
  position: absolute;
  content: "";
  background: url(../images/common/qa_3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 320/407;
  -o-object-fit: cover;
  object-fit: cover;
  left: -40px;
  left: -2.5rem;
  top: -200px;
  top: -12.5rem;
  width: 100px;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-qa__block--3::before {
    width: 20rem;
    top: -25.125rem;
    left: -20rem;
  }
}

.p-qa__block--3::after {
  position: absolute;
  content: "";
  background: url(../images/common/qa_line3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 945/873;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  top: -110px;
  top: -6.875rem;
  width: 600px;
  width: 37.5rem;
  left: -100px;
  left: -6.25rem;
}
@media screen and (min-width: 768px) {
  .p-qa__block--3::after {
    width: 59.0625rem;
    top: -6.25rem;
    left: 0rem;
  }
}

.p-qa__block--4::before {
  position: absolute;
  content: "";
  background: url(../images/common/qa_4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 320/407;
  -o-object-fit: cover;
  object-fit: cover;
  right: -40px;
  right: -2.5rem;
  top: -200px;
  top: -12.5rem;
  width: 100px;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-qa__block--4::before {
    width: 20rem;
    top: -25.125rem;
    right: -20rem;
  }
}

.p-qa__block--4::after {
  position: absolute;
  content: "";
  background: url(../images/common/qa_line4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 1890/1850;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  top: -110px;
  top: -6.875rem;
  width: 600px;
  width: 37.5rem;
  left: -200px;
  left: -12.5rem;
}
@media screen and (min-width: 768px) {
  .p-qa__block--4::after {
    width: 59.0625rem;
    right: 0rem;
    top: -6.25rem;
  }
}

.p-qa__summary {
  color: #fff;
  cursor: pointer;
  position: relative;
  list-style: none;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-qa__summary {
    padding-top: 1.4375rem;
    padding-bottom: 1.4375rem;
  }
}

.p-qa__line {
  border-top: 1px solid #cccccc;
}

.p-qa__summary::after {
  content: "";
  display: inline-block;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 45%;
  right: 25px;
  right: 1.5625rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-qa__summary::after {
    width: 0.75rem;
    height: 0.75rem;
    right: 2rem;
  }
}

.p-qa__summary:hover::after {
  top: 50%;
}

.p-qa__summary.is-opened::after {
  -webkit-transform: rotate(45deg) translateY(-50%) scale(-1, -1);
  transform: rotate(45deg) translateY(-50%) scale(-1, -1);
  top: 60%;
}
@media screen and (min-width: 768px) {
  .p-qa__summary.is-opened::after {
    top: 55%;
  }
}

.p-qa__summary.is-opened:hover::after {
  top: 55%;
}
@media screen and (min-width: 768px) {
  .p-qa__summary.is-opened:hover::after {
    top: 50%;
  }
}

.p-qa__ttl {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  color: #242424;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-qa__ttl {
    font-size: 1.75rem;
    line-height: 1.7857142857;
  }
}

.p-qa__ttl span {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-qa__ttl span {
    font-size: 1.25rem;
  }
}

.p-qa__inner {
  overflow: hidden;
}

.p-qa__wrap {
  padding-top: 18px;
  padding-top: 1.125rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
}

.p-qa__txt {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  color: #242424;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-qa__txt {
    font-size: 1rem;
  }
}

.p-qa__dl {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-qa__row {
  border-top: 1px dotted #cccccc;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-qa__row {
    padding-bottom: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1.25rem;
  }
}

.p-qa__row:last-child {
  border-bottom: 1px dotted #cccccc;
}

@media screen and (min-width: 768px) {
  .p-qa__dt {
    width: 9.375rem;
  }
}

.p-qa__dt-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #242424;
  letter-spacing: 0.05em;
}

.p-qa__dd {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-qa__dd {
    margin-top: 0;
    margin-top: initial;
  }
}

.p-qa__dd-text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #242424;
  padding-left: 17px;
  padding-left: 1.0625rem;
  position: relative;
}

.p-qa__dd-text + .p-qa__dd-text {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-qa__dd-text::before {
  content: "";
  position: absolute;
  width: 7px;
  width: 0.4375rem;
  height: 7px;
  height: 0.4375rem;
  background: #cccccc;
  left: 0;
  top: 8px;
  top: 0.5rem;
  border-radius: 9999px;
}

.p-qa__dd-text--none {
  padding-left: 0;
  padding-left: initial;
  line-height: 2;
}

.p-qa__dd-text--none::before {
  display: none;
}

.p-row {
  position: relative;
  padding-top: 72px;
  padding-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-row {
    padding-top: 15.625rem;
  }
}

.p-row::before {
  position: absolute;
  content: "";
  background: url(../images/common/row_bg1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/1651;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  top: 160px;
  top: 10rem;
  left: 0;
  z-index: -1;
}

.p-row--second::before {
  position: absolute;
  content: "";
  background: url(../images/common/row_bg2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/1681;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  top: 100px;
  top: 6.25rem;
  left: 0;
  z-index: -1;
}

.p-row__content {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-row__content {
    max-width: 87.5rem;
    gap: 3.9375rem;
  }
}

.p-row__content--second {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.p-row__title-wrapper {
  width: 100%;
  max-width: 40px;
  max-width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-row__title-wrapper {
    max-width: 8.1875rem;
  }
}

.p-row__title-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-row__block {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="15" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  max-width: 1200px;
  max-width: 75rem;
  width: 100%;
  padding: 16px;
  padding: 1rem;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-row__block {
    padding: 6.25rem;
    border-radius: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-row__block-titleWrapper {
    text-align: center;
  }
}

.p-row__block-title {
  font-weight: 900;
  color: #242424;
  letter-spacing: 0.05em;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-row__block-title {
    font-size: 2rem;
  }
}

.p-row__block-textWrapper {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-row__block-textWrapper {
    text-align: center;
    margin-top: 1.875rem;
  }
}

.p-row__block-text {
  color: #242424;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-row__block-text {
    font-size: clamp(14px, 2vw, 14px);
  }
}
@media screen and (min-width: 992px) {
  .p-row__block-text {
    font-size: 1rem;
  }
}

.p-row__lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  gap: 1.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-row__lists {
    margin-top: 5rem;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    row-gap: 5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-row__lists + .p-row__lists {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-row__lists + .p-row__lists {
    margin-top: 2.5rem;
  }
}

.p-row__lists:nth-child(2n) {
  border-top: 1px dotted #cccccc;
  padding-top: 24px;
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-row__lists:nth-child(2n) {
    padding-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-row__list--border {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-left: 1px dotted #cccccc;
    border-right: 1px dotted #cccccc;
  }
}

.p-row__img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 80px;
  max-width: 5rem;
}
@media screen and (min-width: 768px) {
  .p-row__img {
    max-width: 6.25rem;
  }
}

.p-row__img--115 {
  max-width: 80px;
  max-width: 5rem;
}
@media screen and (min-width: 768px) {
  .p-row__img--115 {
    max-width: 7.1875rem;
  }
}

.p-row__img203 {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-row__img203 {
    max-width: 12.6875rem;
  }
}

.p-row__img398 {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-row__img398 {
    max-width: 24.875rem;
  }
}

.p-row__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-row__detail {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-row__detail {
    margin-top: 1.875rem;
  }
}

.p-row__detail-title {
  font-weight: 700;
  color: #242424;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-row__detail-title {
    font-size: clamp(16px, 2vw, 16px);
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .p-row__detail-title {
    font-size: 1.375rem;
  }
}

.p-row__detail-text {
  margin-top: 10px;
  margin-top: 0.625rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #242424;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-row__detail-text {
    font-size: clamp(14px, 2vw, 14px);
  }
}
@media screen and (min-width: 992px) {
  .p-row__detail-text {
    font-size: 1rem;
  }
}

.p-row__lists--double {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-row__lists--double {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .p-row__list--first {
    padding-right: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-row__list--second {
    padding-left: 2.5rem;
    border-left: 1px dotted #ccc;
  }
}

/* スライダー全体 */
.p-scroll-imgText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-scroll-imgText {
    margin-top: 7.9375rem;
  }
}

/* スライド3枚のグループ */
.p-scroll-imgText__slider {
  -webkit-animation: scroll-left 40s infinite linear 0.5s both;
  animation: scroll-left 40s infinite linear 0.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* スライド3枚を横並び */
}

/* スライド */
.p-scroll-imgText__slide {
  width: 250vw; /* 3はスライドの枚数 */
}
@media screen and (min-width: 768px) {
  .p-scroll-imgText__slide {
    width: 142.8571428571vw; /* 3はスライドの枚数 */
  }
}

/* スライドの画像 */
.p-scroll-imgText__slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

/* CSSアニメーション */
@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* スライダー全体 */
.p-scroll-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* スライドのグループを横並び */
  overflow-x: clip; /* はみ出たスライドを隠す */
  position: relative;
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-scroll-photo {
    margin-top: 7.9375rem;
  }
}

.p-scroll-photo::before {
  position: absolute;
  content: "";
  background: url(../images/common/scroll_photo_intern_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/1169;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  top: -400px;
  top: -25rem;
  left: 0;
  z-index: 0;
}

.p-scroll-photo--culture::before,
.p-scroll-photo--career::before {
  display: none;
}

/* スライド3枚のグループ */
.p-scroll-photo__slider {
  -webkit-animation: scroll-left 20s infinite linear 0.5s both;
  animation: scroll-left 20s infinite linear 0.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* スライド3枚を横並び */
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-scroll-photo__slider {
    gap: 1.875rem;
  }
}

.p-scroll-photo__slider + .p-scroll-photo__slider {
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-scroll-photo__slider + .p-scroll-photo__slider {
    margin-left: 1.875rem;
  }
}

/* スライド */
.p-scroll-photo__slide {
  width: 33.3333333333vw; /* 3はスライドの枚数 */
}
@media screen and (min-width: 768px) {
  .p-scroll-photo__slide {
    width: 20vw; /* 3はスライドの枚数 */
  }
}

.p-scroll-photo__slide:nth-child(odd) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-scroll-photo__slide:nth-child(odd) {
    margin-top: 1.875rem;
  }
}

/* スライドの画像 */
.p-scroll-photo__slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="15" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}

/* CSSアニメーション */
@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.section__marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  overflow-x: clip;
}

.marquee__text {
  display: inline-block;
  padding-right: 0.5em;
  -webkit-animation: marquee 30s linear infinite;
  animation: marquee 30s linear infinite;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: 80px;
  font-size: 5rem;
}
@media screen and (min-width: 768px) {
  .marquee__text {
    font-size: 15.625rem;
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* スライダー全体 */
.p-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* スライドのグループを横並び */
  overflow-x: clip; /* はみ出たスライドを隠す */
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.p-scroll--culture::before {
  display: none;
}

/* スライド3枚のグループ */
.p-scroll__slider {
  -webkit-animation: scroll-left 60s infinite linear 0.5s both;
  animation: scroll-left 60s infinite linear 0.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* スライド3枚を横並び */
  gap: 30px;
  gap: 1.875rem;
}

.p-scroll__slider + .p-scroll__slider {
  margin-left: 30px;
  margin-left: 1.875rem;
}

/* スライド */
.p-scroll__slide {
  width: 125vw; /* 3はスライドの枚数 */
}

/* スライドの画像 */
.p-scroll__slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="15" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}

/* CSSアニメーション */
@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.p-single-topics {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.p-single-topics__title {
  border-bottom: 1px solid #222;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  text-align: center;
}
.p-single-topics__main {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main {
    margin-top: 2.5rem;
  }
}

.p-single-topics__main-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-title {
    font-size: 2rem;
  }
}

.p-single-topics__meta {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__meta {
    margin-top: 1.25rem;
  }
}

.p-single-topics__meta-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-single-topics__meta-content {
  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;
  gap: 12px;
  gap: 0.75rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-single-topics__meta-category {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ed1c24;
  border: 1px solid #ed1c24;
  padding: 2px 12px;
  padding: 0.125rem 0.75rem;
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .p-single-topics__meta-category {
    font-size: 1rem;
  }
}

.p-single-topics__meta-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-topics__meta-text {
    font-size: 1.125rem;
  }
}

.p-single-topics__btn-wrapper {
  margin-top: 40px;
  margin-top: 2.5rem;
  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;
}
@media screen and (min-width: 768px) {
  .p-single-topics__btn-wrapper {
    margin-top: 3.75rem;
  }
}

.p-single-topics__btn {
  width: 240px;
  width: 15rem;
  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;
  position: relative;
  height: 60px;
  height: 3.75rem;
  background: #222;
  border-radius: 9999px;
}

.p-single-topics__icon {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: auto;
  aspect-ratio: 12/24;
  -o-object-fit: cover;
  object-fit: cover;
  top: 54%;
  left: 6px;
  left: 0.375rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-single-topics__btn-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__btn-text {
    font-size: 1.125rem;
  }
}

.p-single-topics__icon--right {
  right: 6px;
  right: 0.375rem;
  left: auto;
  left: initial;
}

/* 段落 */
.p-single-topics__main-content p {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
  color: #222;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content p {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* 見出し */
.p-single-topics__main-content h2 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #222;
  position: relative;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h2 {
    margin-top: 2rem;
    font-size: 2rem;
  }
}

.p-single-topics__main-content h2::before {
  position: absolute;
  content: "";
  background: #222;
  width: 100%;
  height: 2px;
  bottom: -4px;
  bottom: -0.25rem;
  left: 0;
  right: 0;
}

.p-single-topics__main-content h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  padding-left: 16px;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h3 {
    margin-top: 1.5rem;
    font-size: 1.75rem;
  }
}

.p-single-topics__main-content h3::before {
  position: absolute;
  content: "";
  background: #ed1c24;
  width: 4px;
  width: 0.25rem;
  left: 0;
  top: 0;
  bottom: 0;
}

.p-single-topics__main-content h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h4 {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
}

.p-single-topics__main-content h5 {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h5 {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

/* リスト */
.p-single-topics__main-content ul {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content ul {
    margin-top: 1rem;
  }
}

.p-single-topics__main-content ul li {
  list-style: disc;
  margin-left: 16px;
  margin-left: 1rem;
}

.p-single-topics__main-content ol {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content ol {
    margin-top: 1rem;
  }
}

.p-single-topics__main-content ol li {
  list-style: decimal;
  margin-left: 16px;
  margin-left: 1rem;
}

/* リンク */
.p-single-topics__main-content a {
  color: #ed1c24;
  text-decoration: underline;
  font-size: 16px;
  font-size: 1rem;
}

/* 画像 */
.p-single-topics__main-content img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content img {
    margin-top: 1rem;
  }
}

/* 囲み系（Gutenbergブロックでよく出る） */
.p-single-topics__main-content figure {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content figure {
    margin-top: 1rem;
  }
}

.p-single-topics__main-content figcaption {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #222;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content figcaption {
    margin-top: 1rem;
  }
}

/* 引用 */
/* テーブル */
.p-single-topics__main-content table {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content table {
    margin-top: 1rem;
  }
}

/* コード */
/* ボタン */
/* キャプション（画像などのキャプションに出る） */
/* スペーサー（余白ブロック） */
/* グループ（グループ化ブロック） */
/* カラム系 */
/* ギャラリー */
.p-submit {
  position: relative;
  z-index: 1;
}

.p-submit__inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-submit__inner {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
}

.p-submit__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-submit__btn-wrapper {
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.p-submit__btn {
  width: 100%;
  padding: 16px;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 5px solid #f6f6f6;
  background: #f566a5;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="20" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
  border-radius: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-submit__btn {
    padding-top: 4.3125rem;
    padding-bottom: 4.25rem;
    padding-left: 4.125rem;
    padding-right: 4.25rem;
  }
}
@media screen and (min-width: 992px) {
  .p-submit__btn {
    border-radius: 3.75rem;
    max-width: 46.875rem;
    padding-top: 7.3125rem;
    padding-bottom: 7.25rem;
    padding-left: 8.125rem;
    padding-right: 6.25rem;
  }
}

.p-submit__btn-title {
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  font-style: italic;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-submit__btn-title {
    font-size: 3.75rem;
  }
}

.p-submit__btn-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.8;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-submit__btn-text {
    font-size: clamp(14px, 2vw, 14px);
  }
}
@media screen and (min-width: 992px) {
  .p-submit__btn-text {
    font-size: 1.25rem;
  }
}

.p-submit__btn-icon {
  display: inline-block;
  width: 32px;
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .p-submit__btn-icon {
    width: 6.25rem;
  }
}

.p-submit__btn-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-submit__btn-entry {
  background: #4d4ca1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-submit__btn-entry {
    max-width: 65.625rem;
  }
}

.p-top-news {
  position: relative;
  overflow-x: clip;
  padding-bottom: 64px;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    padding-bottom: 13.75rem;
  }
}

.p-top-news::before {
  z-index: -1;
  position: absolute;
  content: "";
  background: url(../images/common/top_news_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/1089;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  top: -220px;
  top: -13.75rem;
  left: 0;
}

.p-top-news__content {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.25rem;
  padding: 16px;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__content {
    max-width: 75rem;
    border-radius: 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
    padding: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-top-news__content {
    padding: 5rem;
    gap: 5.625rem;
  }
}

.p-top-news__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-news__left {
    max-width: 11.875rem;
  }
}

.p-top-news__title-en {
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  display: block;
  color: #242424;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__title-en {
    font-size: 1.25rem;
  }
}

.p-top-news__title-ja {
  display: block;
  font-weight: 700;
  color: #242424;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__title-ja {
    font-size: 2.5rem;
  }
}

.p-top-news__btn-wrapper {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__btn-wrapper {
    margin-top: 1.6875rem;
  }
}

.p-top-news__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #242424;
  border-radius: 9999px;
  background: #242424;
  width: 150px;
  width: 9.375rem;
  height: 36px;
  height: 2.25rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__btn {
    width: 12.875rem;
    height: 3.125rem;
    padding: 0.8125rem 1.6875rem;
  }
}
@media screen and (min-width: 992px) {
  .p-top-news__btn {
    width: 11.875rem;
  }
}

.p-top-news__btn-text {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__btn-text {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-top-news__btn-text {
    font-size: 1rem;
  }
}

.p-top-news__btn-icon {
  width: 15px;
  width: 0.9375rem;
  display: inline-block;
}

.p-top-news__btn-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-top-news__right {
  margin-top: 16px;
  margin-top: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-news__right {
    margin-top: 0;
    margin-top: initial;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 47rem;
  }
}

.p-top-news__link {
  display: block;
  border-top: 1px dotted #ccc;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__link {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}

.p-top-news__link:last-child {
  border-bottom: 1px dotted #ccc;
}

.p-top-news__time {
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #242424;
}
@media screen and (min-width: 768px) {
  .p-top-news__time {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-top-news__time {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-top-news__text {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-weight: 400;
  line-height: 2.125;
  letter-spacing: 0.05em;
  color: #242424;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-top-news__text {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-top-news__text {
    font-size: 1rem;
  }
}

.p-top-people {
  position: relative;
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-people {
    margin-top: -20rem;
    padding-top: 40rem;
  }
}

.p-top-people::before {
  position: absolute;
  content: "";
  background: url(../images/common/people_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/1670;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  z-index: -1;
  top: 0;
  left: 0;
}

.p-top-people--interview::before {
  display: none;
}

.p-top-people__top-title {
  /* max-width: rem(240); */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* @include mq(md) {
    max-width: rem(396);
  } */
}

.p-top-people__top-title img,
.p-top-people__title img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-top-people__btn-wrapper {
  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;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-top-people__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 9999px;
  background: #00902f;
  width: 240px;
  width: 15rem;
  height: 50px;
  height: 3.125rem;
  padding-left: 50px;
  padding-left: 3.125rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  position: relative;
  z-index: 10;
}

.p-top-people__btn-text {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

.p-top-people__btn-icon {
  width: 15px;
  width: 0.9375rem;
}

.p-top-people__btn-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-top-people__swiper {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-people__swiper {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    margin-top: -15rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-people__top-title {
    margin-top: 7.5rem;
  }
}

.p-top-people__swiper--interview {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-people__swiper--interview {
    margin-top: -15rem;
  }
}

.p-top-people__item {
  position: relative;
  /*  padding-left: rem(100);
  padding-right: rem(100); */
  display: block;
}

.p-top-people__item--none {
  pointer-events: none;
}

.p-top-people__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-top-people__detail {
  margin-top: -80px;
  margin-top: -5rem;
}

.p-top-people__detail--429 {
  margin-top: -200px;
  margin-top: -12.5rem;
}

.p-top-people__detail--right {
  position: absolute;
  bottom: 0;
  right: 40px;
  right: 2.5rem;
  margin-top: 0;
  margin-top: initial;
}

.p-top-people__title {
  font-weight: 900;
  line-height: 1.5;
  color: #242424;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-people__title {
    font-size: 2.5rem;
  }
}

.p-top-people__en {
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-people__en {
    margin-top: 1.875rem;
    font-size: 1.875rem;
  }
}

.p-top-people__occupation {
  margin-top: 4px;
  margin-top: 0.25rem;
  color: #00a040;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-people__occupation {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-top-people__occupation {
    font-size: 0.875rem;
  }
}

/* .w509 {
  max-width: rem(509);
  width: 100%;
}

.w462 {
  max-width: rem(462);
  width: 100%;
}
.w532 {
  max-width: rem(532);
  width: 100%;
}
.w470 {
  max-width: rem(470);
  width: 100%;
}
 */
.w429 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .w429 {
    max-width: 21.875rem;
  }
}
@media screen and (min-width: 1540px) {
  .w429 {
    max-width: 26.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-people__detail--2 {
    bottom: -8.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-people__detail--4 {
    bottom: -2rem;
  }
}

.p-top-people__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-people__arrows .swiper-button-next,
.p-top-people__arrows .swiper-button-prev {
  background: #fff;
  border-radius: 9999px;
  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: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-people__arrows .swiper-button-next,
  .p-top-people__arrows .swiper-button-prev {
    width: 4rem;
    height: 4rem;
  }
}

.p-top-people__arrows .swiper-button-next img,
.p-top-people__arrows .swiper-button-prev img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-top-people__arrows .swiper-button-prev img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.p-top-people__button-prev,
.p-top-people__button-next {
  border: 1px solid #4d4ca1;
  border-radius: 9999px;
}

.p-voice {
  position: relative;
  padding-top: 120px;
  padding-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-voice {
    padding-top: 15.625rem;
  }
}

.p-voice::before {
  position: absolute;
  content: "";
  background: url(../images/common/voice_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/1629;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  z-index: -1;
  top: -200px;
  top: -12.5rem;
  left: 0;
}

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

.p-voice__slider {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-voice__slider {
    margin-top: 4.375rem;
  }
}

.swiper-voice {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

.p-voice__card {
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  border-radius: 1.25rem;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .p-voice__card {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .p-voice__card {
    padding-left: 2.8125rem;
    padding-right: 2.8125rem;
    padding-bottom: 3.125rem;
    border-radius: 3.125rem;
  }
}

.blue {
  background: -webkit-gradient(
    linear,
    left bottom,
    right top,
    from(#36a9e1),
    to(#65cdff)
  );
  background: linear-gradient(to top right, #36a9e1 0%, #65cdff 100%);
}

.pink {
  background: -webkit-gradient(
    linear,
    left bottom,
    right top,
    from(#ec4a8f),
    to(#ff7eb5)
  );
  background: linear-gradient(to top right, #ec4a8f 0%, #ff7eb5 100%);
}

.purple {
  background: -webkit-gradient(
    linear,
    left bottom,
    right top,
    from(#35318e),
    to(#5a53ce)
  );
  background: linear-gradient(to top right, #35318e 0%, #5a53ce 100%);
}

.yellow {
  background: -webkit-gradient(
    linear,
    left bottom,
    right top,
    from(#cfad00),
    to(#ffdb28)
  );
  background: linear-gradient(to top right, #cfad00 0%, #ffdb28 100%);
}

.green {
  background: -webkit-gradient(
    linear,
    left bottom,
    right top,
    from(#26921f),
    to(#38aa1f)
  );
  background: linear-gradient(to top right, #26921f 0%, #38aa1f 100%);
}

.p-voice__list-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  gap: 1.25rem;
}

.p-voice__img {
  width: 130px;
  width: 8.125rem;
  margin-top: -15px;
  margin-top: -0.9375rem;
}

.p-voice__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-voice__year {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: -15px;
  margin-top: -0.9375rem;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-voice__year {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-voice__year {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-voice__name {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.p-voice__name span {
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.p-voice__text-wrapper {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-voice__text-wrapper {
    margin-top: 1.25rem;
  }
}

.p-voice__text {
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-voice__text {
    font-size: clamp(12px, 2vw, 12px);
  }
}
@media screen and (min-width: 992px) {
  .p-voice__text {
    font-size: 1rem;
  }
}

.p-voice__pagination {
  margin-top: 28px;
  margin-top: 1.75rem;
  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;
  max-width: 295px;
  max-width: 18.4375rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-voice__pagination {
    gap: 3.125rem;
  }
}
.p-voice__pagination .swiper-pagination {
  position: relative;
}
.p-voice__pagination .swiper-pagination-bullet-active {
  border: 1px solid #9f9f9f;
  background: #fff;
}
.p-voice__pagination .swiper-pagination-bullet {
  background: #dedede;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
}
.p-voice__pagination .swiper-button-next img,
.p-voice__pagination .swiper-button-prev img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.p-voice__pagination .swiper-button-next,
.p-voice__pagination .swiper-button-prev {
  width: 24px;
  width: 1.5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
}
@media screen and (min-width: 768px) {
  .p-voice__pagination .swiper-button-next,
  .p-voice__pagination .swiper-button-prev {
    width: 2.5rem;
  }
}

.c-section-title__en {
  font-family: "Lato", "source-han-sans-japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #242424;
  font-style: italic;
  display: block;
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 6.875rem;
  }
}

.c-section-title__ja {
  color: #242424;
  display: block;
  font-weight: 900;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-section-title__ja {
    font-size: 1.875rem;
  }
}

.c-section-title__ja--small {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-section-title__ja--small {
    font-size: 1.25rem;
  }
}
/*# sourceMappingURL=styles.css.map */
