@charset "UTF-8";
@font-face {
  font-family: "font-en";
  src: url("../fonts/Saira-VariableFont_wdth_wght.ttf") format("truetype");
}
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: clamp(14px, 1.3913043478vw, 1.3913043478vw);
  }
}
@media (min-width: 1150px) {
  html {
    font-size: 100%;
  }
}

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

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

:target {
  scroll-margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  :target {
    scroll-margin-top: 7rem;
  }
}

/* フェードイン(初期値) */
.js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s, -webkit-transform 0.5s;
  transition: opacity 1s, -webkit-transform 0.5s;
  transition: opacity 1s, transform 0.5s;
  transition: opacity 1s, transform 0.5s, -webkit-transform 0.5s;
}

/* フェードイン(スクロールした後) */
.js-fade-up.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.swiper-button-next,
.swiper-button-prev {
  text-rendering: auto;
}

.l-entry {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .l-entry {
    margin-top: 9.375rem;
  }
}

.l-inner {
  max-width: 37.5rem;
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1150px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-works-detail {
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .l-works-detail {
    padding-top: 7.3125rem;
  }
}

.c-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3125rem 0.1875rem;
}

.c-categories__item {
  background-color: #e9e9e9;
  border-radius: 0.4375rem;
  font-size: 0.75rem;
  color: #242529;
  line-height: 1;
  padding: 0.125rem 0.625rem;
}

.c-entry-button {
  width: 19.6875rem;
  height: 4.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #6275B5;
  border-radius: 2.375rem;
}
@media screen and (min-width: 768px) {
  .c-entry-button {
    width: 26.25rem;
    height: 5rem;
    font-size: 1.125rem;
    border-radius: 2.5rem;
  }
}

.c-entry-fixed {
  display: grid;
  place-content: center;
  width: 7.5rem;
  height: 7.5rem;
  padding: 1em;
  border-radius: 50%;
  background-color: #6275B5;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  bottom: 2.5rem;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-entry-fixed {
    width: 12.5rem;
    height: 12.5rem;
    font-size: 1.125rem;
    bottom: 1.25rem;
    right: 2.5rem;
  }
}

.c-entry-fixed__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-entry-fixed__inner span:first-child {
  display: inline-block;
  margin-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-entry-fixed__inner span:first-child {
    margin-right: 0.875rem;
  }
}

.c-entry-fixed__inner span:last-child img {
  width: 1.0625rem;
  height: 1.0625rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-logo__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.625rem;
}

.c-logo__img {
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .c-logo__img {
    width: 17.5625rem;
  }
}

.c-logo__img img {
  aspect-ratio: 281/33;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-logo__sub {
  color: #fff;
  background-color: #242529;
  font-family: "font-en", sans-serif;
  font-size: 0.6875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 200;
  padding: 0.1875rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-logo__sub {
    font-size: 1rem;
  }
}

.c-recommend__item {
  font-size: 0.875rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .c-recommend__item {
    font-size: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-recommend__item::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/icon_works-detail_point.png") no-repeat center/contain;
  margin-right: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .c-recommend__item::before {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.625rem;
  }
}

.c-recommend__item + .c-recommend__item {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-recommend__item + .c-recommend__item {
    margin-top: 1rem;
  }
}

.c-section-title__title {
  font-family: "font-en", sans-serif;
  font-size: 4.0625rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .c-section-title__title {
    font-size: 5.9375rem;
  }
}

.c-section-title__subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .c-section-title__subtitle {
    margin-top: 0.3125rem;
  }
}

.c-works-category {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.3125rem 1.25rem;
  border: solid 1px #242529;
  border-radius: 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

.c-works-category.active {
  background-color: #242529;
  color: #fff;
}

.c-works-category__count {
  margin-left: 1em;
}

.p-404 {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-404 {
    margin-top: 12.5rem;
  }
}

.p-404__text {
  font-size: 0.875rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    font-size: 1rem;
  }
}

.p-404___button {
  width: 12.5rem;
  height: 3.25rem;
  background-color: #6275B5;
  color: #fff;
  border-radius: 1.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  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;
  padding: 0 2.1875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2.5rem;
}

.p-breadcrumb {
  max-width: 85.625rem;
  width: 100%;
  margin-inline: auto;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  padding-bottom: 3.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

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

.p-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-inline: 0.3125rem;
}

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

.p-data {
  padding: 4.125rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-data {
    padding: 6.5625rem 0;
    border-bottom: none;
  }
}
.p-works .p-data {
  padding: 9.0625rem 0 0;
}
.p-works-detail .p-data {
  padding: 9.0625rem 0 0;
}

@media screen and (min-width: 768px) {
  .p-data__inner {
    max-width: 59.375rem;
  }
}

.p-data__title {
  font-family: "font-en", sans-serif;
  font-weight: 200;
  font-size: 2rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-data__title {
    font-size: 2.5rem;
  }
}

.p-data__body {
  margin-top: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .p-data__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.5625rem;
    margin-top: 2.25rem;
  }
}

.p-data__info {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .p-data__info {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-data__name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
}

.p-data__address-body {
  display: grid;
  grid-template-columns: 40px 1fr;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-data__address-body {
    margin-top: 1rem;
  }
}

.p-data__address-item-en {
  font-family: "font-en", sans-serif;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 0.4375rem;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-data__address-item-en {
    margin-right: 0.3125rem;
  }
}

.p-data__overview {
  margin-top: 0.9375rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-data__overview {
    display: grid;
    grid-template-columns: 1fr 5fr;
  }
}

.p-data__overview-title {
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-data__overview-title {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1;
    margin-top: 0.4375rem;
    margin-right: 0.625rem;
  }
}

.p-data__overview-data {
  margin-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-data__overview-data {
    margin-left: 0;
  }
}

.p-data__map {
  max-width: 29.6875rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 3.375rem;
}
@media screen and (min-width: 768px) {
  .p-data__map {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-data__map img {
  aspect-ratio: 389/385;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.p-drawer-nav__items {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.8em;
}
@media screen and (min-width: 768px) {
  .p-drawer-nav__items {
    font-size: 1.125rem;
  }
}

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

.p-drawer-nav__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-entry {
  padding: 3.75rem 0 5.625rem;
  color: #fff;
  background: url("../images/bg_entry.jpg") center center/cover no-repeat;
}
@media screen and (min-width: 768px) {
  .p-entry {
    padding: 6.25rem 0 6rem;
  }
}

@media screen and (min-width: 768px) {
  .p-entry__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

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

.p-entry__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5625rem;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-entry__link {
    margin-top: 7.1875rem;
  }
}

.p-entry__link::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 2.6875rem;
  background: url("../images/icon_works-detail_btn-arrow2.png") no-repeat center/contain;
}

.p-entry__items {
  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;
  max-width: 19.6875rem;
  width: 100%;
  margin-inline: auto;
  gap: 1.25rem;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-entry__items {
    max-width: 26.25rem;
    margin-top: 0;
    margin-right: 6.25rem;
  }
}

.p-entry__item a {
  height: 4.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;
  font-size: 1.125rem;
  font-weight: 500;
  border: solid 1px #fff;
  border-radius: 2.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-entry__item a {
    height: 5rem;
    border-radius: 2.5rem;
  }
}

.p-entry__item a::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 1.5625rem;
  background: url("../images/icon_works-detail_btn-arrow2.png") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-entry__item a::after {
    right: 1.875rem;
  }
}

.p-filter-category__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-filter-category__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.25rem;
    background-color: transparent;
  }
}

@media screen and (min-width: 768px) {
  .p-filter-category__items + .p-filter-category__items {
    margin-top: 0.625rem;
  }
}

.p-filter-category__items-title {
  background-color: #e9e9e9;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.4375rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-filter-category__items-title {
    background-color: transparent;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-filter-category__items-title .u-desktop {
    display: inline-block;
  }
}

.p-filter-category__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5625rem;
  background-color: #fff;
  padding: 1.0625rem 2.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-filter-category__body {
    display: contents;
  }
}

.p-filter-category__items:nth-child(2) .p-filter-category__body {
  border-radius: 0 0 2.375rem 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-filter-category__items:nth-child(2) .p-filter-category__body {
    border-radius: 0;
  }
}

.p-filter-category__items input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.p-footer {
  padding-top: 3.75rem;
  padding-bottom: 1.75rem;
}

.p-footer__inner {
  max-width: 78.125rem;
  margin-inline: auto;
}

.p-footer__wrap {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-footer__wrap {
    height: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-footer__logo {
  margin-bottom: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-bottom: 0;
  }
}

.p-footer__bottom {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 1.6875rem;
  }
}

.p-footer__official {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  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-footer__official {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-footer__official img {
  display: inline-block;
}

.p-footer__official img:first-child {
  margin-right: 0.3125rem;
}

.p-footer__official img:last-child {
  margin-left: 1.875rem;
}

.p-footer__copyright {
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  margin-top: 4.6875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 0;
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__copyright .u-desktop {
    display: inline-block;
    margin-left: 0.5em;
  }
}

.p-form {
  background-color: #fff;
  padding: 1.875rem 1.25rem 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 8.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-form {
    padding: 3.75rem 5rem 4rem;
    margin-top: 3.125rem;
    margin-bottom: 10rem;
  }
}

.p-form__text {
  padding: 0 0.625rem 1.6875rem;
  border-bottom: 0.0625rem solid #E4E3E3;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-form__text {
    padding: 0 0 3.4375rem;
    font-size: 1rem;
  }
}

.p-form__content {
  margin: 0.625rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-form__content {
    margin: 2.8125rem 1.875rem 0;
  }
}

.p-form .smf-form--simple-table .smf-item__col--label {
  padding-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-form .smf-form--simple-table .smf-item__col--label {
    padding-bottom: 0;
    max-width: 11.25rem;
    padding-right: 1.25rem;
  }
}

.p-form .smf-form--simple-table .smf-item {
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-form .smf-form--simple-table .smf-item {
    padding: 0.9375rem 0;
  }
}

.p-form .smf-item__label {
  font-weight: 700;
  margin-top: 0.5rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.p-form .smf-item__label__text::after {
  display: inline-block;
  font-size: 0.6875rem;
  color: #fff;
  border-radius: 0.4375rem;
  padding: 0 0.625rem;
  margin-left: 0.625rem;
  margin-bottom: 0.1875rem;
  vertical-align: middle;
}

.p-form__label--required .smf-item__label__text::after {
  background-color: #242529;
  content: "必須";
}

.p-form__label--any .smf-item__label__text::after {
  background-color: #C0BEBD;
  content: "任意";
}

.p-form ::-webkit-input-placeholder {
  color: #C0BEBD;
}

.p-form ::-moz-placeholder {
  color: #C0BEBD;
}

.p-form ::-ms-input-placeholder {
  color: #C0BEBD;
}

.p-form ::placeholder {
  color: #C0BEBD;
}

.p-form .smf-form .smf-item .smf-text-control__control,
.p-form .smf-form .smf-item .smf-textarea-control__control {
  border: solid 1px #F2F2F2;
  background-color: #FAFAFA;
  border-radius: 0.3125rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0.5rem 1.25rem;
  width: 100%;
}

.p-form .smf-form--simple-table .smf-item__col--controls {
  max-width: none;
}

.p-form .smf-form .smf-item .smf-radio-button-control input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.p-form .smf-radio-buttons-control__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-form .smf-radio-buttons-control__control {
    gap: 0.625rem;
    width: 83%;
  }
}

.p-form .smf-form .smf-item .smf-radio-buttons-control--horizontal .smf-radio-buttons-control__control > .smf-label {
  width: 100%;
  border: solid 1px #CBC9C8;
  border-radius: 0.3125rem;
  font-size: 0.875rem;
  text-align: center;
  margin: 0;
}

.p-form .smf-form .smf-item .smf-radio-buttons-control--horizontal .smf-radio-buttons-control__control > .smf-label:has(input:checked) {
  border: solid 1px #242529;
  background-color: #242529;
  color: #fff;
}

.p-form .smf-item label {
  display: block;
  padding: 0.625rem 1.25rem;
}

.p-form .smf-form .smf-item .smf-select-control__control {
  border: solid 1px #CBC9C8;
  border-radius: 0.3125rem;
  padding: 0.625rem 2.625rem 0.625rem 1.25rem;
}

.p-form .smf-form .smf-item .smf-select-control__toggle {
  width: 0.75rem;
  background-color: #CBC9C8;
  color: #fff;
  border-radius: 0 0.3125rem 0.3125rem 0;
  left: auto;
}

.p-form .smf-form .smf-item .smf-select-control__toggle:before {
  width: 0.25rem;
  height: 0.25rem;
  top: calc(50% - 3px);
  right: 0.25rem;
}

.p-form .smf-form .smf-item .smf-select-control::after {
  position: absolute;
  right: -1.25rem;
  bottom: 0.125rem;
  content: "歳";
  font-size: 0.875rem;
}

.p-form .smf-form--simple-table + .smf-action {
  position: absolute;
  bottom: -10.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-form .smf-form--simple-table + .smf-action {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    bottom: -11.875rem;
    margin-top: 5rem;
  }
}

.p-form .smf-action .smf-button-control__control {
  background-image: none;
  width: 19.6875rem;
  height: 4.75rem;
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 500;
  display: grid;
  place-items: center;
  border: solid 1px #6275B5;
  background-color: #6275B5;
  color: #fff;
  border-radius: 2.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-form .smf-action .smf-button-control__control {
    width: 21.25rem;
    height: 5rem;
    border-radius: 2.5rem;
  }
}

.p-form .smf-action .smf-button-control__control::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 1.5625rem;
  background: url("../images/icon_works-detail_btn-arrow2.png") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-form .smf-action .smf-button-control__control::after {
    right: 1.875rem;
  }
}

.p-form .smf-form--simple-table .smf-item:first-child {
  display: none;
}

.p-form:has(form[data-screen=confirm]) .p-form__content {
  margin: 0.625rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-form:has(form[data-screen=confirm]) .p-form__content {
    margin: 3.375rem 3.125rem 0;
  }
}

.p-form form[data-screen=confirm] .smf-form--simple-table .smf-item {
  padding: 1.125rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .p-form form[data-screen=confirm] .smf-form--simple-table .smf-item {
    padding: 0.75rem 0;
  }
}

.p-form form[data-screen=confirm] .smf-item__label {
  margin-top: 0;
}

.p-form form[data-screen=confirm] .smf-form--simple-table .smf-item__col--label {
  padding-bottom: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-form form[data-screen=confirm] .smf-form--simple-table .smf-item__col--label {
    padding-bottom: 0;
    max-width: 8.125rem;
    padding-right: 1.25rem;
  }
}

.p-form form[data-screen=confirm] .p-form__label--required .smf-item__label__text::after {
  display: none;
}

.p-form form[data-screen=confirm] .p-form__label--any .smf-item__label__text::after {
  display: none;
}

.p-form form[data-screen=confirm] .smf-form--simple-table .smf-item__col--controls {
  margin-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-form form[data-screen=confirm] .smf-form--simple-table .smf-item__col--controls {
    margin-left: 0;
  }
}

.p-form form[data-screen=confirm] .smf-form--simple-table + .smf-action {
  left: 48%;
  bottom: -14.125rem;
}
@media screen and (min-width: 768px) {
  .p-form form[data-screen=confirm] .smf-form--simple-table + .smf-action {
    bottom: -11.875rem;
  }
}

.p-form .smf-action .smf-button-control__control[data-action=back] {
  background: none;
  border: none;
  color: #242529;
  font-size: 1rem;
  left: 7%;
}
@media screen and (min-width: 768px) {
  .p-form .smf-action .smf-button-control__control[data-action=back] {
    position: absolute;
    left: -60%;
  }
}

.p-form .smf-action .smf-button-control__control[data-action=back]::after {
  display: none;
}

.p-form .smf-action .smf-button-control__control[data-action=back]::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 29.5%;
  background: url("../images/icon_form_prev.png") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-form .smf-action .smf-button-control__control[data-action=back]::before {
    left: 32%;
  }
}

.p-form:has(form[data-screen=complete]) {
  padding: 1.875rem 1.25rem 2.5rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-form:has(form[data-screen=complete]) {
    padding: 3.75rem 5rem;
  }
}

.p-form:has(form[data-screen=complete]) .p-form__text {
  display: none;
}

.p-form:has(form[data-screen=complete]) .p-form__content {
  display: contents;
}

.p-form .smf-complete-content {
  padding: 0 0.625rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-form .smf-complete-content {
    padding: 0;
    font-size: 1rem;
  }
}

.p-form form[data-screen=complete] .wp-block-buttons {
  margin-top: 2.5rem;
}

.p-form form[data-screen=complete] .wp-block-buttons > .wp-block-button {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-form form[data-screen=complete] .wp-block-buttons > .wp-block-button {
    margin: 0;
  }
}

.p-form .wp-block-button__link {
  width: 13.875rem;
  height: 3.25rem;
  background-color: #6275B5;
  color: #fff;
  border-radius: 1.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  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;
  padding: 0 2.1875rem;
  position: relative;
}

.p-form .wp-block-button__link::after {
  content: "";
  display: block;
  width: 1.0625rem;
  height: 1.0625rem;
  position: absolute;
  right: 1.5625rem;
  background: url("../images/icon_btn-arrow.png") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-form .wp-block-button__link::after {
    right: 1.875rem;
  }
}

.p-header-drawer {
  padding: 5rem 0 1.875rem;
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #fff;
  overflow-y: scroll;
  scrollbar-width: none;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-header-drawer.is-open {
  right: 0;
}

.p-header-drawer::-webkit-scrollbar {
  display: none;
}

.p-header-drawer__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-header-drawer__icon {
  width: 2.75rem;
  height: 2.75rem;
}

.p-header-drawer__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header-drawer__bottom {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}

.p-header-drawer__button {
  text-align: center;
}

.p-header-drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-header {
  height: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 7rem;
    z-index: 10;
  }
}

.p-header__inner {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  margin-inline: auto;
  height: inherit;
  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;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    max-width: 85.625rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.p-header__logo {
  z-index: 500;
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: inherit;
  }
}

.p-header__button {
  width: 10rem;
  height: 3.25rem;
  background-color: #6275B5;
  color: #fff;
  border-radius: 1.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  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;
  padding: 0 2.1875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 500;
  width: 3.125rem;
  height: inherit;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  display: block;
  width: 1.4375rem;
  height: 2px;
  -webkit-transform: translateX(-50%) scaleY(0.5) translateY(1px);
          transform: translateX(-50%) scaleY(0.5) translateY(1px);
  background-color: #242529;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0.25rem;
}

.p-header__hamburger.is-open span {
  height: 1px;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  top: -0.0625rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.p-interview-sub {
  padding-bottom: 9.375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-interview-sub__btn-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 20;
}

.p-interview-sub__mobile-arrow {
  max-width: 22.1875rem;
  width: 100%;
  position: absolute;
  top: 16.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}

.p-interview-sub__head {
  position: relative;
}

.p-interview-sub__img {
  height: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__img {
    height: auto;
  }
}

.p-interview-sub__img img {
  aspect-ratio: 1400/400;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__img img {
    height: 21.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-interview-sub__img img {
    height: 25rem;
  }
}

.p-interview-sub__title {
  width: 15rem;
  height: 15rem;
  margin-inline: auto;
  background-color: #242529;
  border-radius: 50%;
  padding: 4.75rem 0.625rem;
  color: #fff;
  text-align: center;
  display: grid;
  place-items: center;
  margin-top: -5rem;
  position: relative;
  z-index: 10;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__title {
    display: inline-grid;
    padding: 1.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-interview-sub__title {
    width: 18.75rem;
    height: 18.75rem;
  }
}

.p-interview-sub__cat {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-interview-sub__name {
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__name {
    font-size: 2rem;
    margin-top: 1.0625rem;
  }
}

.p-interview-sub__name-en {
  font-family: "font-en", sans-serif;
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__name-en {
    font-size: 1rem;
    margin-top: 0.5625rem;
  }
}

.p-interview-sub__content {
  padding: 2.625rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__content {
    margin-top: -22.1428571429vw;
    padding: 5.875rem 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-interview-sub__content {
    margin-top: -19.375rem;
  }
}

.p-interview-sub__content-inner {
  max-width: 20.9375rem;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__content-inner {
    max-width: 40.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-interview-sub__content-inner {
    max-width: 53.125rem;
  }
}

.p-interview-sub__no {
  font-family: "font-en", sans-serif;
  font-size: 1.125rem;
  font-weight: 200;
  letter-spacing: 0.02em;
  padding-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__no {
    font-size: 1.75rem;
    margin-top: 3.75rem;
  }
}

.p-interview-sub__subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__subtitle {
    font-size: 2.125rem;
    margin-top: 0.25rem;
  }
}

.p-interview-sub__subtitle2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__subtitle2 {
    font-size: 1.75rem;
    margin-top: 3.5625rem;
  }
}

.p-interview-sub__subtitle2:nth-of-type(2) {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__subtitle2:nth-of-type(2) {
    margin-top: 2.625rem;
  }
}

.p-interview-sub__text {
  line-height: 1.625;
  margin-top: 1.25rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-interview-sub__text {
    margin-top: 0.9375rem;
  }
}

.p-interview-sub__img-sub {
  margin-top: 2.3125rem;
  aspect-ratio: 800/400;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__img-sub {
    margin-top: 2.75rem;
  }
}

.p-interview-sub__btns {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__btns {
    margin-top: 5rem;
  }
}

.p-interview-sub__btns-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__btns-inner {
    max-width: 40.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-interview-sub__btns-inner {
    max-width: 53.125rem;
  }
}

.p-interview-sub__btn-back {
  width: 17.8125rem;
  height: 4.75rem;
  margin-inline: auto;
  font-size: 1rem;
  font-weight: 500;
  display: grid;
  place-items: center;
  border: solid 1px currentColor;
  color: currentColor;
  border-radius: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__btn-back {
    width: 26.25rem;
    height: 5rem;
    font-size: 1.125rem;
  }
}

.p-interview-sub__btn-back::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 1.5625rem;
  background: url("../images/icon_interview-sub_close.png") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-interview-sub__btn-back::after {
    right: 1.875rem;
  }
}

.p-interview-sub__btn-back.first::after {
  background: url("../images/icon_interview-sub_close-w.png") no-repeat center/contain;
}

.p-interview-sub .swiper-button-prev,
.p-interview-sub .swiper-button-next {
  position: relative;
  margin-top: 0;
  top: 0;
}

.p-interview-sub .swiper-button-prev {
  left: 0;
}

.p-interview-sub .swiper-button-next {
  right: 0;
}

.p-interview {
  margin-top: -2.3125rem;
  padding-top: 2.3125rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-interview {
    margin-top: -3.125rem;
    padding-top: 3.125rem;
  }
}

.p-interview__wrap {
  background-color: #e9e9e9;
  padding: 7.25rem 0 4.6875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-interview__wrap {
    padding: 9.625rem 0 7.1875rem;
  }
}

.p-interview .c-section-title {
  position: absolute;
  top: -2.3125rem;
}
@media screen and (min-width: 768px) {
  .p-interview .c-section-title {
    top: -3.125rem;
  }
}

.p-interview__slide-wrap {
  max-width: 92.375rem;
  margin-inline: auto;
}

.p-interview__slide {
  padding: 0 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-interview__slide {
    padding: 0 11.25rem;
    margin-right: calc(50% - 50vw);
  }
}

.p-interview-card {
  width: 16.875rem;
  background-color: #fff;
  border-radius: 1.5625rem 1.5625rem 0 1.5625rem;
  padding: 1.5625rem 1.25rem 0.9375rem 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-interview-card {
    width: 21.5rem;
    padding: 1.5625rem 1.875rem 0.9375rem 1.875rem;
  }
}

.p-interview-card--first {
  background-color: #242529;
  color: #fff;
}

.p-interview-card__title {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .p-interview-card__title {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.p-interview-card__body {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.p-interview-card__icon {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
}

/* ページネーションカスタマイズ */
.p-interview .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-interview .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    margin-top: 3rem;
  }
}

.p-interview .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.p-interview .swiper-pagination-bullet-active {
  background: #242529;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  width: 2.5rem;
  height: 2.5rem;
  color: currentColor;
  border: solid 1px currentColor;
  border-radius: 50%;
  top: 40%;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 5rem;
    height: 5rem;
    top: 30%;
  }
}

.swiper-button-prev {
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev {
    left: 2.5rem;
  }
}

.swiper-button-next {
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-next {
    right: 2.5rem;
  }
}

.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  width: 0.6875rem;
  height: 0.5px;
  background-color: currentColor;
}
@media screen and (min-width: 768px) {
  .swiper-button-next::before,
  .swiper-button-prev::before {
    width: 1.4375rem;
  }
}

.swiper-button-prev:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border: solid 1px currentColor;
  border-right: 0;
  border-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 38%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev:after {
    width: 1rem;
    height: 1rem;
  }
}

.swiper-button-next::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border: solid 1px currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 38%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .swiper-button-next::after {
    width: 1rem;
    height: 1rem;
  }
}

.p-introduction {
  background: url("../images/bg_intro_sp.png") center top/35rem 29.375rem no-repeat;
  padding-top: 31.25rem;
  padding-bottom: 7.5rem;
  opacity: 0;
  -webkit-animation: fade-in 2s linear 0.5s forwards;
          animation: fade-in 2s linear 0.5s forwards;
}
@media screen and (min-width: 768px) {
  .p-introduction {
    background: url("../images/bg_intro_pc-s.png") center top/contain no-repeat;
    padding-top: clamp(3.75rem, -4.679rem + 17.56vw, 11.125rem);
    padding-bottom: clamp(6.25rem, 2.893rem + 6.994vw, 9.188rem);
  }
}
@media screen and (min-width: 1400px) {
  .p-introduction {
    background: url("../images/bg_intro_pc.png") center top/107.1875rem 51.25rem no-repeat;
    padding-top: 11.125rem;
    padding-bottom: 9.1875rem;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-introduction__body {
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-introduction__body {
    padding: 0;
  }
}

.p-introduction__title {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-introduction__title {
    font-size: clamp(2rem, 1.648rem + 1.502vw, 3rem);
    line-height: 1.3958333333;
  }
}
@media screen and (min-width: 1400px) {
  .p-introduction__title {
    font-size: 3rem;
  }
}

.p-introduction__text {
  line-height: 2.25;
  letter-spacing: 0.01em;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-introduction__text {
    margin-top: 2.5rem;
  }
}

.p-introduction__service {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-introduction__service {
    margin-top: clamp(3.75rem, -2.179rem + 12.351vw, 8.938rem);
  }
}
@media screen and (min-width: 1400px) {
  .p-introduction__service {
    margin-top: 8.9375rem;
  }
}

.p-merits__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-merits__slider {
    gap: 1.25rem;
  }
}

.p-merits-slider__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scroll-left 80s infinite linear 0.5s both;
          animation: scroll-left 80s infinite linear 0.5s both;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-merits-slider__items {
    gap: 1.25rem;
  }
}

@-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-merits-slider__item {
  width: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-merits-slider__item {
    width: 18.75rem;
  }
}

.p-merits-slider__item img {
  aspect-ratio: 300/200;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-merits {
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-merits {
    padding-top: 6.875rem;
  }
}

.p-merits__items {
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.5rem 3.75rem;
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-merits__items {
    padding: 0 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 7.3125rem;
  }
}

.p-merits__item {
  border-top: solid 1px #242529;
}

.p-merits__item-no {
  font-family: "font-en", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: 0.02em;
  margin-top: 0.625rem;
}

.p-merits__item-sub-title {
  margin-top: 1.25rem;
}

.p-merits__item-title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-merits__item-title {
    font-size: 2rem;
    line-height: 1.0625;
    margin-top: 0.75rem;
  }
}

.p-merits__item-text {
  line-height: 1.625;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-merits__item-text {
    margin-top: 1.4375rem;
  }
}

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

.p-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200; /* main-swiperより前面に */
}

.p-modal .simplebar-track {
  background: #fff; /* バーの背景色*/
  border-radius: 10px; /* バーに丸みをもたせる*/
}

.p-modal .simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1; /* デフォルトだと薄くなっているため */
}

.p-modal .simplebar-track .simplebar-scrollbar::before {
  background: #242529; /* ここでバーの色を設定 */
}

.p-modal .simplebar-track.simplebar-vertical {
  top: 10%;
  right: 0;
  width: 0.25rem;
  height: 70%;
}
@media screen and (min-width: 768px) {
  .p-modal .simplebar-track.simplebar-vertical {
    top: 17%;
    right: 4.375rem;
    width: 0.5rem;
  }
}

.p-modal .simplebar-scrollbar:before {
  left: 1px;
  right: 1px;
}

.p-mv {
  position: relative;
  height: 41.6875rem;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 43.75rem;
  }
}

.p-mv__inner {
  height: inherit;
  overflow: hidden;
}

.p-mv__title-wrap {
  width: 19.6875rem;
  position: absolute;
  bottom: 1.875rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-mv__title-wrap {
    bottom: auto;
    bottom: initial;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
    width: initial;
    left: 3.125rem;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1024px) {
  .p-mv__title-wrap {
    left: calc(50% - 34.375rem);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-mv__main-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-left: 0.4375rem;
  opacity: 0;
  -webkit-animation: fade-up 1s linear 0.5s forwards;
          animation: fade-up 1s linear 0.5s forwards;
}
@media screen and (min-width: 768px) {
  .p-mv__main-title {
    font-size: 3.5rem;
    margin-top: 1.25rem;
    margin-left: 0;
  }
}

@-webkit-keyframes fade-up {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.p-mv__button {
  margin-top: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__button {
    margin-top: 3.125rem;
  }
}

.p-mv__button::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 1.5625rem;
  background: url("../images/icon_works-detail_btn-arrow2.png") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-mv__button::after {
    right: 1.875rem;
  }
}

.p-mv__img {
  height: 41.6875rem;
  -webkit-animation: scale 2s linear 0s;
          animation: scale 2s linear 0s;
}
@media screen and (min-width: 768px) {
  .p-mv__img {
    height: 43.75rem;
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.p-mv__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1625/1035;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right -5.625rem top 0;
     object-position: right -5.625rem top 0;
}
@media screen and (min-width: 768px) {
  .p-mv__img img {
    -o-object-position: initial;
       object-position: initial;
  }
}

.p-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-header .p-nav {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-header .p-nav {
    gap: 2.5rem;
    margin-right: 14.2857142857vw;
  }
}
@media screen and (min-width: 1400px) {
  .p-header .p-nav {
    margin-right: 16.5625rem;
  }
}
.p-footer .p-nav {
  gap: 4.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer .p-nav {
    gap: 5.7142857143vw;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer .p-nav {
    gap: 14.2857142857vw;
  }
}
@media screen and (min-width: 1400px) {
  .p-footer .p-nav {
    gap: 15.3125rem;
  }
}

.p-nav__items {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-nav__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.25rem;
    height: inherit;
  }
}

.p-nav__item {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-nav__item {
    text-align: left;
    height: inherit;
  }
}

.p-nav__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-nav__item a {
    height: inherit;
  }
}

.p-nav__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-nav__icons {
    gap: 0.625rem;
    margin-top: 0;
  }
}
.p-footer .p-nav__icons {
  margin-top: 0;
}

.p-nav__icon {
  width: 2.75rem;
  height: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-nav__icon {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.p-nav__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-service__title-title {
  font-family: "font-en", sans-serif;
  font-size: 2.5625rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.02em;
}

.p-service__title-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-service__items {
  max-width: 25rem;
  margin-inline: auto;
  margin-top: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .p-service__items {
    max-width: none;
    max-width: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.5694444444vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 3.5625rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-service__items {
    gap: 2.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-service__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(33.333% - 26.66px);
            flex: 1 1 calc(33.333% - 26.66px);
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-service__item:nth-child(2) {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-service__item:nth-child(2) {
    margin-top: 5.625rem;
  }
}

.p-service__item:nth-child(3) {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-service__item:nth-child(3) {
    margin-top: 11.25rem;
  }
}

.p-service__image img {
  aspect-ratio: 342/456;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service__content {
  max-width: 100%;
  margin-top: 1.875rem;
}

.p-service__number {
  font-family: "font-en", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.p-service__heading {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service__heading {
    font-size: clamp(1.5rem, 0.929rem + 1.19vw, 2rem);
  }
}
@media screen and (min-width: 1400px) {
  .p-service__heading {
    font-size: 2rem;
    margin-top: 1rem;
  }
}

.p-service__description {
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-works-detail {
    padding-bottom: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-works-detail__inner {
    max-width: 53.125rem;
  }
}

.p-works-detail__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4166666667;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .p-works-detail__title {
    font-size: 2rem;
    line-height: 1;
  }
}

.p-works-detail__title-sub {
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-works-detail__title-sub {
    margin-top: 0.625rem;
  }
}

.p-works-detail__sub-category {
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-works-detail__sub-category {
    margin-top: 1.5625rem;
  }
}

.p-works-detail__eyecatch {
  margin-top: 2.5rem;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media screen and (min-width: 768px) {
  .p-works-detail__eyecatch {
    margin-top: 3.125rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-works-detail__eyecatch img {
  aspect-ratio: 800/400;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-works-detail__inner--s {
    max-width: 40rem;
    margin-inline: auto;
  }
}

.p-works-detail__point {
  background-color: #fff;
  padding: 3.3125rem 1.25rem 1.625rem;
  margin-top: 3rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-works-detail__point {
    padding: 4.1875rem 4.375rem 2.5rem;
    margin-top: 5rem;
  }
}

.p-works-detail__point-title {
  font-family: "font-en", sans-serif;
  font-size: 2.5625rem;
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1;
  position: absolute;
  top: -1.375rem;
}
@media screen and (min-width: 768px) {
  .p-works-detail__point-title {
    top: -1.5rem;
    left: 2.625rem;
  }
}

.p-works-detail__point-title-ja {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 0.3125rem;
}

.p-works-detail__point-text {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-works-detail__point-text {
    margin-top: 3.125rem;
  }
}

.p-works-detail__point-text h3 {
  font-size: 1rem;
  padding-bottom: 0.625rem;
}

.p-works-detail__sub-title {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-works-detail__sub-title {
    margin-top: 6.25rem;
  }
}

.p-works-detail__sub-title:first-of-type {
  margin-top: 4.8125rem;
}
@media screen and (min-width: 768px) {
  .p-works-detail__sub-title:first-of-type {
    margin-top: 6.25rem;
  }
}

.p-works-detail__sub-title::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #6275B5;
  border-radius: 50%;
  margin-right: 0.625rem;
}

.p-works-detail__dl {
  border-top: solid 1px rgba(36, 37, 41, .13);
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-works-detail__dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 1.5625rem;
  }
}

.p-works-detail__dt {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7142857143;
  padding: 1.6875rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-works-detail__dt {
    width: 6.5625rem;
    padding: 1.5rem 0 1.875rem 1.25rem;
    border-bottom: 0.0625rem solid rgba(36, 37, 41, .13);
  }
}

.p-works-detail__dt--mt {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-works-detail__dt--mt {
    margin-top: 1.25rem;
  }
}

.p-works-detail__dd {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  padding: 0.5rem 1.25rem 1.5rem;
  border-bottom: 0.0625rem solid rgba(36, 37, 41, .13);
}
@media screen and (min-width: 768px) {
  .p-works-detail__dd {
    width: 33.4375rem;
    padding: 1.5rem 1rem;
  }
}

.p-works-detail__dd a {
  text-decoration: underline;
}

.p-works-detail__sub-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-works-detail__sub-field {
    margin-top: 1.25rem;
  }
}

.p-works-detail__sub-field h4 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-works-detail__dd strong {
  display: inline-block;
  padding-bottom: 0.3125rem;
}

.p-works-detail__dd .c-categories {
  margin-bottom: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-works-detail__dd .c-categories {
    margin-top: 0.3125rem;
    margin-bottom: 1.375rem;
  }
}

.p-works-detail__button {
  width: 19.6875rem;
  height: 4.75rem;
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 500;
  display: grid;
  place-items: center;
  border: solid 1px #6275B5;
  background-color: #6275B5;
  color: #fff;
  border-radius: 2.375rem;
  position: relative;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-works-detail__button {
    width: 26.25rem;
    height: 5rem;
    border-radius: 2.5rem;
    margin-top: 5.625rem;
  }
}

.p-works-detail__button::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 1.5625rem;
  background: url("../images/icon_works-detail_btn-arrow2.png") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-works-detail__button::after {
    right: 1.875rem;
  }
}

.p-works-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-works-item__img {
  width: 100%;
  overflow: hidden;
}

.p-works-item__img img {
  aspect-ratio: 324/162;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (min-width: 768px) {
  .p-works-item__img img {
    aspect-ratio: 350/175;
  }
}

.p-works-item__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  margin-top: 0.9375rem;
}

.p-works-item__categories span {
  display: inline-block;
  background-color: #6275B5;
  color: #fff;
  padding: 0.1875rem 0.9375rem;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-works-item__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.05em;
  margin-top: 0.625rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-works-item__link:hover .p-works-item__title {
  color: #6275B5;
}

.p-works-item__link:hover {
  opacity: 1;
}

.p-works-item__link:hover .p-works-item__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-works-item__sub-categories {
  margin-top: 0.9375rem;
}

.p-works__header {
  background: url("../images/img_entry.jpg") center top/cover no-repeat;
  height: 15.625rem;
}
@media screen and (min-width: 768px) {
  .p-works__header {
    height: 27.5rem;
  }
}

.p-works__header-inner {
  padding-top: 5.9375rem;
}
@media screen and (min-width: 768px) {
  .p-works__header-inner {
    padding-top: 11.25rem;
  }
}

.p-works__inner {
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-works__inner {
    padding-top: 7.5rem;
  }
}

.p-works__toggle-menu {
  width: 100%;
  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;
  background-color: #fff;
  border-radius: 2.375rem;
  padding: 1.6875rem 1.5625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-works__toggle-menu.is-open.p-works__toggle-menu {
  border-radius: 2.375rem 2.375rem 0 0;
}

.p-works__toggle-menu span {
  display: inline-block;
}

.p-works__toggle-icon {
  width: 1.5rem;
  height: 1.5rem;
  border: solid 1px #242529;
  border-radius: 50%;
  position: relative;
}

.p-works__toggle-icon::before,
.p-works__toggle-icon::after {
  content: "";
  position: absolute;
  top: 0.6875rem;
  right: 0.5rem;
  width: 0.4375rem;
  height: 0.0625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #242529;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-works__toggle-icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-works__toggle-menu.is-open .p-works__toggle-icon::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

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

.p-works__hit-text {
  margin-top: 2.5rem;
}

.p-works__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.125rem;
  margin-top: 2.5rem;
  -webkit-animation: fadeIn 0.5s ease-in-out;
          animation: fadeIn 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-works__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 4.375rem 1.5625rem;
    margin-top: 5rem;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-works__no-item {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-works__no-item {
    margin-top: 5rem;
  }
}

.p-works__pagination {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-works__pagination {
    margin-top: 7.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-works__pagination-prev,
.p-works__pagination-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-works__pagination a.page-numbers,
.p-works__pagination span.page-numbers {
  font-weight: 500;
  margin: 0 0.75rem;
  color: #595757;
}

/* リンクが設定されているページ番号の設定 */
.p-works__pagination a.page-numbers {
  text-decoration: underline;
  -webkit-text-decoration-color: #595757;
          text-decoration-color: #595757;
}

/* リンクが設定されていないページ番号の設定 */
.p-works__pagination span.page-numbers {
  color: #242529;
}

.p-works__pagination-prev {
  margin-right: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-works__pagination-prev {
    margin-right: 10.9375rem;
  }
}

.p-works__pagination-next {
  margin-left: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-works__pagination-next {
    margin-left: 10.9375rem;
  }
}

/* 「前へ」「次へ」のリンクが無効の場合のスタイル */
.p-works__pagination span.p-works__pagination-prev,
.p-works__pagination span.p-works__pagination-next {
  color: #595757;
  cursor: default;
  /* リンクが無効なのでカーソルはデフォルトに */
}

/* 「前へ」「次へ」のリンクが有効の場合のスタイル */
.p-works__pagination a span.p-works__pagination-prev,
.p-works__pagination a span.p-works__pagination-next {
  color: #242529;
  cursor: pointer;
}

/* ページネーション矢印画像のリンクが無効の場合のスタイル */
.p-works__pagination-prev img,
.p-works__pagination-next img {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .p-works__pagination-prev img,
  .p-works__pagination-next img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* ページネーション矢印画像のリンクが有効な時のスタイル */
.p-works__pagination a img {
  opacity: 1;
}

.p-works__pagination-prev img {
  margin-right: 0.5rem;
}

.p-works__pagination-next img {
  margin-left: 0.5rem;
}

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

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
