@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

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

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

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

.br-sm {
  display: none;
}
@media screen and (max-width: 475px) {
  .br-sm {
    display: block;
  }
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #484848;
}

body.is-active {
  overflow: hidden;
}

.js-fade,
.js-fade-footer {
  opacity: 0;
}

.grecaptcha-badge {
  opacity: 0;
}

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

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  /* pcの電話番号発信対応 */
  a[href^="tel:"] {
    pointer-events: none;
  }
}
*,
*::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 root defaults */
html {
  scroll-behavior: smooth;
}

/* 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 */
/* フォームリセット */
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;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 0;
  margin: 0;
}

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

.c-about-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.c-about-head__number span {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  font-family: "Titillium Web", sans-serif;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1;
  color: #F86304;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-about-head__number span {
    font-size: 1rem;
  }
}

.c-about-head__title span {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.05;
  display: block;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .c-about-head__title span {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1300px) {
  .c-about-head__title span {
    font-size: 2.25rem;
  }
}

.c-about-text {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  font-weight: 400;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .c-about-text {
    font-size: 0.875rem;
  }
}

.c-categories {
  border-radius: 0.625rem;
}

.c-categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-categories__list {
    gap: 1rem;
  }
}

.c-categories__item a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.25rem;
  display: block;
  width: fit-content;
  border: 1px solid #D2D2D2;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  color: #484848;
  font-weight: 400;
  letter-spacing: 0.48px;
  letter-spacing: 0.03rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  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-categories__item a {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}

.c-categories__count {
  margin-left: 10px;
  margin-left: 0.625rem;
  font-size: 10px;
  font-family: "Titillium Web", sans-serif;
  display: block;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-categories__count {
    font-size: clamp(10px, 0.75rem, 5vw);
    margin-left: 0.75rem;
  }
}

/*======================================================
    マウスオーバー
======================================================*/
@media (any-hover: hover) {
  .c-categories__item a:hover {
    opacity: 1;
    color: #F86304;
  }
}
.c-detail-list:not(:first-child) {
  border-top: 1px solid #e7e7e7;
  margin-top: 18px;
  margin-top: 1.125rem;
  padding-top: 18px;
  padding-top: 1.125rem;
}

.c-detail-list {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-detail-list {
    display: grid;
    grid-template-columns: 9.1875rem auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5.375rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .c-detail-list {
    gap: 3.25rem;
  }
}

.c-detail-list--map {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -webkit-text-size-adjust: none;
  text-decoration: none;
  color: inherit;
}

.c-detail-list__itemName {
  font-size: 12px;
  font-size: 0.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 18px;
  padding-right: 1.125rem;
  font-weight: 400;
  color: rgba(72, 72, 72, .6);
  line-height: 2;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-detail-list__itemName {
    margin-bottom: 0;
  }
}

.c-detail-list__item {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
  color: #484848;
  height: 100%;
}

.c-detail-list__note {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  font-weight: 400;
  color: rgba(72, 72, 72, .6);
}

.c-detail-list__more {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.c-detail-list__item--disc li {
  position: relative;
  padding-left: 1em;
}

.c-detail-list__item--disc li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.c-detail-list__item--num {
  list-style: decimal;
  padding-left: 1em;
}

.c-detail-list__item--latin {
  list-style: lower-latin;
  padding-left: 1em;
}

.c-detail-list__item--note {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  font-weight: 400;
  color: rgba(72, 72, 72, .6);
}

.c-detail-list__item--note li {
  position: relative;
  padding-left: 1.25em;
}

.c-detail-list__item--note li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.c-detail-list__item--child:not(:first-child) {
  border-top: 1px solid #e7e7e7;
  margin-top: 18px;
  margin-top: 1.125rem;
  padding-top: 18px;
  padding-top: 1.125rem;
}

.c-detail-list__item--client:last-child::after {
  content: "など";
  margin-left: 1em;
}

.c-detail-list__item--clients:last-child::after {
  content: "（五十音順）";
  display: block;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.c-form {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .c-form {
    margin-top: 9rem;
    padding-bottom: 0.3125rem;
  }
}

.c-form--confirm {
  margin-top: 52px;
  margin-top: 3.25rem;
}

.c-form__container {
  position: relative;
}

.c-form__container:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-form__container:not(:first-child) {
    margin-top: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .c-form__container:not(:first-child) .wpcf7-not-valid-tip {
    margin-top: 0.1875rem;
  }
}

.c-form__item {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-form__item {
    display: grid;
    grid-template-columns: 9.1875rem auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5.375rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .c-form__item {
    gap: 3.25rem;
  }
}

.c-form__item input,
.c-form__item select,
.c-form__item textarea {
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
}

.c-form__item .wpcf7-form-control-wrap {
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
}

.c-form__item .wpcf7-form-control-wrap {
  position: static;
  position: initial;
}

.c-form__label {
  font-size: 14px;
  font-size: 0.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 18px;
  padding-right: 1.125rem;
  position: relative;
  font-weight: 500;
  color: #484848;
  line-height: 2;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-form__label {
    margin-bottom: 0;
  }
}

.c-form__label::before {
  content: "";
  position: absolute;
  bottom: -60px;
  bottom: -3.75rem;
  left: 0;
  width: 100vw;
  height: 1px;
  background-color: #E7E7E7;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-form__label::before {
    bottom: -1.125rem;
  }
}

.c-form__item--textarea .c-form__label::before {
  bottom: -243px;
  bottom: -15.1875rem;
}
@media screen and (min-width: 768px) {
  .c-form__item--textarea .c-form__label::before {
    bottom: -14rem;
  }
}

.c-form__label.required::after {
  content: "";
  position: absolute;
  top: 11px;
  top: 0.6875rem;
  right: 0;
  background-image: url(../images/common/contact_circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
}

.c-form input,
.c-form button,
.c-form select,
.c-form textarea {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
  color: #484848;
  height: 100%;
}

.c-form__item input {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
          box-shadow: 0 0 0px 1000px #fff inset;
}

.c-form input[type=text]::-webkit-input-placeholder,
.c-form input[type=email]::-webkit-input-placeholder,
.c-form input[type=tel]::-webkit-input-placeholder,
.c-form input[type=url]::-webkit-input-placeholder,
.c-form input[type=search]::-webkit-input-placeholder,
.c-form input[type=number]::-webkit-input-placeholder,
.c-form input[type=date]::-webkit-input-placeholder,
.c-form input[type=time]::-webkit-input-placeholder,
.c-form textarea::-webkit-input-placeholder {
  color: rgba(72, 72, 72, .6);
}

.c-form input[type=text]::-moz-placeholder,
.c-form input[type=email]::-moz-placeholder,
.c-form input[type=tel]::-moz-placeholder,
.c-form input[type=url]::-moz-placeholder,
.c-form input[type=search]::-moz-placeholder,
.c-form input[type=number]::-moz-placeholder,
.c-form input[type=date]::-moz-placeholder,
.c-form input[type=time]::-moz-placeholder,
.c-form textarea::-moz-placeholder {
  color: rgba(72, 72, 72, .6);
}

.c-form input[type=text]::-ms-input-placeholder,
.c-form input[type=email]::-ms-input-placeholder,
.c-form input[type=tel]::-ms-input-placeholder,
.c-form input[type=url]::-ms-input-placeholder,
.c-form input[type=search]::-ms-input-placeholder,
.c-form input[type=number]::-ms-input-placeholder,
.c-form input[type=date]::-ms-input-placeholder,
.c-form input[type=time]::-ms-input-placeholder,
.c-form textarea::-ms-input-placeholder {
  color: rgba(72, 72, 72, .6);
}

.c-form input[type=text]::placeholder,
.c-form input[type=email]::placeholder,
.c-form input[type=tel]::placeholder,
.c-form input[type=url]::placeholder,
.c-form input[type=search]::placeholder,
.c-form input[type=number]::placeholder,
.c-form input[type=date]::placeholder,
.c-form input[type=time]::placeholder,
.c-form textarea::placeholder {
  color: rgba(72, 72, 72, .6);
}

.c-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url(../images/common/select.svg);
  background-repeat: no-repeat;
  background-size: 1.5625rem 1.5625rem;
  background-position: right 2px;
  background-position: right 0.125rem;
  color: rgba(72, 72, 72, .6);
}

/* 最初のオプション以外が選択されている場合のスタイル */
.c-form select option:checked:not(:first-child) {
  color: #484848;
}

.c-form select:has(option:checked:not(:first-child)) {
  color: #484848;
}

.c-form select.has-value {
  color: #484848;
}

.c-form option {
  color: #484848;
}

.c-form option:first-child {
  color: rgba(72, 72, 72, .6);
}

@media screen and (min-width: 768px) {
  .c-form__item--textarea .wpcf7-form-control-wrap {
    margin-bottom: 0rem;
  }
}

.c-form__item--textarea .wpcf7-not-valid-tip {
  margin-top: -20px;
  margin-top: -1.25rem;
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .c-form__item--textarea .wpcf7-not-valid-tip {
    margin-top: -1.6875rem !important;
    margin-bottom: 0.6875rem;
  }
}

.c-form textarea[name=content] {
  min-height: 224px;
  min-height: 14rem;
  resize: none;
}
@media screen and (min-width: 768px) {
  .c-form textarea[name=content] {
    min-height: 15.75rem;
  }
}

.c-form textarea[name=content] {
  padding: 0;
}

.c-form__recaptcha {
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "Titillium Web", sans-serif;
  color: rgba(72, 72, 72, .6);
  margin-top: 11px;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-form__recaptcha {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .c-form--confirm .c-form__recaptcha {
    margin-top: 2.25rem;
  }
}

.c-form__btn {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 72px;
  margin-top: 4.5rem;
}

.c-form__btn span {
  position: absolute;
  top: 50%;
  right: -64px;
  right: -4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-form__btn input {
  width: calc(100% + 4rem);
  text-align: left;
  padding: 0;
  height: 40px;
  height: 2.5rem;
  font-weight: 500;
  line-height: 40px;
  line-height: 2.5rem;
}

.c-form__btn .c-more__arrow {
  z-index: -1;
}

.c-form__btn .c-more__arrow--submit.is-move {
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
  border: 1px solid rgba(72, 72, 72, .5);
}

.c-form__btn .c-more__arrow--submit.is-move::before {
  -webkit-animation-name: transformRightLeft;
          animation-name: transformRightLeft;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.c-form__btn .c-more__arrow--submit.is-move::after {
  -webkit-animation-name: transformLeftRight;
          animation-name: transformLeftRight;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.wpcf7-spinner {
  display: none !important;
}

.c-form .wpcf7-not-valid-tip {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2;
  color: rgba(222, 87, 0, .6);
}
@media screen and (min-width: 768px) {
  .c-form .wpcf7-not-valid-tip {
    margin-left: -14.5625rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .c-form .wpcf7-not-valid-tip {
    margin-left: -12.4375rem;
  }
}

.c-form__item--confirm {
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid #E7E7E7;
}

.c-form__item--confirm:not(:first-child) {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.c-form__item--confirm .c-form__label::before {
  display: none;
}

.c-form__back {
  margin-top: 65px;
  margin-top: 4.0625rem;
}

.c-form__back input {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #484848;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(72, 72, 72, .6);
  border-bottom: 1px solid #484848;
  padding: 0;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
}

.c-more {
  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;
  gap: 24px;
  gap: 1.5rem;
}

.c-more--contact {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-more--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-more--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-more__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}

.c-more__text--contact {
  color: #484848;
}

.c-more__text--map {
  color: #484848;
  font-weight: 400;
}

.c-more__arrow {
  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;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  -webkit-transition: border 0.6s cubic-bezier(0.05, 0.7, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.05, 0.7, 0.1, 1);
  transition: border 0.6s cubic-bezier(0.05, 0.7, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.05, 0.7, 0.1, 1);
  transition: transform 0.6s cubic-bezier(0.05, 0.7, 0.1, 1), border 0.6s cubic-bezier(0.05, 0.7, 0.1, 1);
  transition: transform 0.6s cubic-bezier(0.05, 0.7, 0.1, 1), border 0.6s cubic-bezier(0.05, 0.7, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.05, 0.7, 0.1, 1);
}

.c-more__arrow::before,
.c-more__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 11px;
  left: 0.6875rem;
  background-image: url(../images/common/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  width: 0.875rem;
  height: 9px;
  height: 0.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: cubic-bezier(0.05, 0.7, 0.1, 1);
          animation-timing-function: cubic-bezier(0.05, 0.7, 0.1, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.05, 0.7, 0.1, 1);
  transition: all 0.6s cubic-bezier(0.05, 0.7, 0.1, 1);
}

.c-more__arrow--contact::before,
.c-more__arrow--contact::after {
  background-image: url(../images/common/arrow_contact.svg);
}

.c-more__arrow--left::before,
.c-more__arrow--left::after {
  background-image: url(../images/common/arrow_back.svg);
  -webkit-animation-timing-function: cubic-bezier(0.05, 0.7, 0.1, 1);
          animation-timing-function: cubic-bezier(0.05, 0.7, 0.1, 1);
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-transition: all 0.6s cubic-bezier(0.05, 0.7, 0.1, 1);
  transition: all 0.6s cubic-bezier(0.05, 0.7, 0.1, 1);
}

.c-more__arrow::after {
  left: -40px;
  left: -2.5rem;
}

.c-more__arrow--contact {
  border: 1px solid rgba(72, 72, 72, .25);
}

.c-more__arrow img {
  width: 13px;
  width: 0.8125rem;
}

.c-more--back {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-more--back .c-more__arrow--back::before {
  left: 11px;
  left: 0.6875rem;
}

.c-more--back .c-more__arrow--back::after {
  left: 40px;
  left: 2.5rem;
}

/*======================================================
    マウスオーバー
======================================================*/
@media (any-hover: hover) {
  .p-page-about-contact__link:hover .c-more__arrow--right::before {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .p-page-about-contact__link:hover .c-more__arrow--right::after {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .p-page-about-features__link:hover .c-more__arrow--right::before {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .p-page-about-features__link:hover .c-more__arrow--right::after {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
}
@-webkit-keyframes transformRightLeft {
  0% {
    left: 0.6875rem;
  }
  100% {
    left: 2.5rem;
  }
}
@keyframes transformRightLeft {
  0% {
    left: 0.6875rem;
  }
  100% {
    left: 2.5rem;
  }
}
@-webkit-keyframes transformLeftRight {
  0% {
    left: -2.5rem;
  }
  100% {
    left: 0.6875rem;
  }
}
@keyframes transformLeftRight {
  0% {
    left: -2.5rem;
  }
  100% {
    left: 0.6875rem;
  }
}
@media (any-hover: hover) {
  .c-more:hover .c-more__arrow {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    border: 1px solid rgb(255, 255, 255);
  }
  .c-more:hover .c-more__arrow--contact {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    border: 1px solid rgba(72, 72, 72, .5);
  }
  .c-more:hover .c-more__arrow--right::before {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .c-more:hover .c-more__arrow::after {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .p-page-about-contact__link:hover .c-more__arrow--contact {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    border: 1px solid rgba(72, 72, 72, .5);
  }
  .p-page-about-features__link:hover .c-more__arrow--contact {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    border: 1px solid rgba(72, 72, 72, .5);
  }
  .c-more--back:hover .c-more__arrow--left::before {
    -webkit-animation-name: transformLeftback;
            animation-name: transformLeftback;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .c-more--back:hover .c-more__arrow--left::after {
    -webkit-animation-name: transformRightback;
            animation-name: transformRightback;
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
}
@-webkit-keyframes transformLeftback {
  0% {
    left: 0.6875rem;
  }
  100% {
    left: -1.125rem;
  }
}
@keyframes transformLeftback {
  0% {
    left: 0.6875rem;
  }
  100% {
    left: -1.125rem;
  }
}
@-webkit-keyframes transformRightback {
  0% {
    left: 3.875rem;
  }
  100% {
    left: 0.6875rem;
  }
}
@keyframes transformRightback {
  0% {
    left: 3.875rem;
  }
  100% {
    left: 0.6875rem;
  }
}
.c-pagination {
  margin-top: 48px;
  margin-top: 3rem;
}

.c-pagination__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}

.c-pagination__list.is-disabled {
  opacity: 0.4;
}

.c-pagination__list {
  min-width: 16px;
  min-width: 1rem;
  padding-block: 8px;
  padding-block: 0.5rem;
  text-align: center;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  letter-spacing: 0.64px;
  letter-spacing: 0.04rem;
}

.c-pagination__list--prev {
  margin-right: 12px;
  margin-right: 0.75rem;
}

.c-pagination__list--next {
  margin-left: 12px;
  margin-left: 0.75rem;
}

.c-pagination__list.active {
  border-bottom: 1px solid #484848;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
}

.c-pagination__list a {
  display: block;
}

.c-pagination__list img {
  width: 12px;
  width: 0.75rem;
  margin-inline: auto;
}

.c-slide-arrows {
  position: absolute;
  content: "";
  top: 0px;
  top: 0rem;
  right: 25px;
  right: 1.5625rem;
  width: 52px;
  width: 3.25rem;
  height: 14px;
  height: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  gap: 1.625rem;
}

.c-slide-arrows .swiper-button-prev,
.c-slide-arrows .swiper-button-next {
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  position: relative;
  left: auto;
  left: initial;
  right: auto;
  right: initial;
  top: auto;
  top: initial;
  margin-top: 0;
  margin-top: initial;
}

/* 前へ次への矢印カスタマイズ */
.c-slide-arrows .swiper-button-prev::after,
.c-slide-arrows .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 14px;
  height: 0.875rem;
  margin: auto;
  width: 14px;
  width: 0.875rem;
}

/* 前への矢印カスタマイズ */
.c-slide-arrows .swiper-button-prev::after {
  background-image: url(../images/common/news_arrow_left.svg);
}

/* 次への矢印カスタマイズ */
.c-slide-arrows .swiper-button-next::after {
  background-image: url(../images/common/news_arrow_right.svg);
}

.c-slide-arrows .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.4;
}

.c-step {
  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;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-step--first {
  margin-right: 12px;
  margin-right: 0.75rem;
}

.c-step--second {
  margin-left: 12px;
  margin-left: 0.75rem;
  margin-right: 12px;
  margin-right: 0.75rem;
}

.c-step--third {
  margin-left: 12px;
  margin-left: 0.75rem;
}

.c-step__label {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2;
  white-space: nowrap;
  color: rgba(72, 72, 72, .6);
}

.c-step.active .c-step__label {
  color: #484848;
  font-weight: 500;
}

.c-step.completed .c-step__label {
  color: #484848;
  font-weight: 500;
}

.c-step__progress {
  width: 100%;
  height: 1px;
  background-color: #D2D2D2;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-step__progress {
    width: 1.5rem;
  }
}

.c-step__fill {
  height: 100%;
  background-color: #484848;
  width: 0%;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.c-step__fill.active {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-step__fill.active {
    width: 1.5rem;
  }
}

.l-categories-single {
  margin-top: 96px;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .l-categories-single {
    margin-top: 12rem;
  }
}

.l-categories-top {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .l-categories-top {
    margin-top: 9rem;
  }
}

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

.l-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  display: none;
}

.l-overlay.is-active {
  display: block;
}

.l-page-about__tags {
  border-top: 1px solid transparent;
}

.l-page-company {
  margin-top: 72px;
  margin-top: 4.5rem;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .l-page-company {
    margin-top: 7.1875rem;
  }
}

.l-page-company__inner {
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-page-company__inner {
    padding-inline: 6rem;
    display: grid;
    grid-template-columns: 360fr 864fr;
    gap: 7.2727272727%;
    margin-inline: auto;
  }
}

.l-page-contact {
  margin-top: 72px;
  margin-top: 4.5rem;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .l-page-contact {
    margin-top: 7.1875rem;
  }
}

.l-page-contact__inner {
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-page-contact__inner {
    padding-inline: 6rem;
    display: grid;
    grid-template-columns: 360fr 864fr;
    gap: 7.2727272727%;
    max-width: 94.5rem;
    margin-inline: auto;
  }
}

.l-page-policy {
  margin-top: 72px;
  margin-top: 4.5rem;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .l-page-policy {
    margin-top: 7.1875rem;
  }
}

.l-page-policy__inner {
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-page-policy__inner {
    padding-inline: 6rem;
    display: grid;
    grid-template-columns: 360fr 864fr;
    gap: 7.2727272727%;
    margin-inline: auto;
  }
}

.l-page-recruit {
  margin-top: 72px;
  margin-top: 4.5rem;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .l-page-recruit {
    margin-top: 7.1875rem;
  }
}

.l-page-recruit__inner {
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-page-recruit__inner {
    padding-inline: 6rem;
    display: grid;
    grid-template-columns: 360fr 864fr;
    gap: 7.2727272727%;
    margin-inline: auto;
  }
}

.p-about {
  margin-top: 96px;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .p-about {
    margin-top: 12rem;
  }
}

.p-about__inner {
  padding-inline: 8px;
  padding-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    padding-inline: 3rem;
  }
}

.p-about__conteiner {
  background-color: #F86304;
  border-radius: 0.75rem;
  padding-block: 36px;
  padding-block: 2.25rem;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0, 0, 0.2, 1);
}
@media screen and (min-width: 768px) {
  .p-about__conteiner {
    padding-top: 4rem;
    padding-bottom: 2.9375rem;
  }
}

.p-about__info {
  padding-inline: 16px;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__info {
    padding-inline: 3rem;
  }
}

.p-about__title {
  text-transform: capitalize;
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 1;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    font-size: 1rem;
  }
}

.p-about__body {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-about__body {
    margin-top: 3.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-about__text {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    width: 50%;
    font-size: 2.25rem;
  }
}

.p-about__text span {
  opacity: 0;
  display: block;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
  transition: opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
  transition: clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.8s ease;
  transition: clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
}

.p-about__more {
  margin-top: 36px;
  margin-top: 2.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.p-about__more--works {
  margin-top: 33px;
  margin-top: 2.0625rem;
  padding-inline: 16px;
  padding-inline: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-about__more--works {
    padding-inline: 3rem;
  }
}

.p-about__line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__line {
    margin-top: 6rem;
  }
}

.p-about__works {
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__works {
    margin-top: 6rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__head {
    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-inline: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__head--first {
    padding-inline: 0rem;
  }
}

.p-about__title--works {
  padding-inline: 16px;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__title--works {
    padding-inline: 0rem;
  }
}

.p-about__insta {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-about__insta .swiper {
  height: 100%;
  width: 100%;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.p-about__insta .swiper-slide-elevated {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-about__insta .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

@media screen and (max-width: 767px) {
  .p-insta__item {
    max-width: 9.875rem;
  }
}

.p-insta__link {
  width: 100%;
  display: block;
}

.p-insta__image {
  aspect-ratio: 4/5;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}

.p-insta__error {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  padding: 20px;
  padding: 1.25rem;
}

.p-categories {
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-categories {
    padding-inline: 6rem;
  }
}

.p-categories__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}

.p-categories__head svg {
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-categories__head svg {
    width: 1rem;
    height: 1rem;
  }
}

.p-categories__title {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #F86304;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-categories__title {
    font-size: 1rem;
  }
}

.p-categories__title span {
  display: block;
}

.p-categories__title svg {
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-categories__title svg {
    width: 1rem;
    height: 1rem;
  }
}

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

.p-footer {
  background-color: #F6F6F6;
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    margin-top: 15rem;
  }
}

.p-footer__inner {
  padding: 72px 24px 36px;
  padding: 4.5rem 1.5rem 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding: 6rem 6rem 4.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__container {
    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-footer__head {
    margin-top: 0.25rem;
  }
}

.p-footer__logo svg {
  width: 88px;
  width: 5.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo svg {
    width: 6.6875rem;
  }
}

.p-footer__text {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: clamp(10px, 11px, 5vw);
  font-size: clamp(10px, 0.6875rem, 5vw);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-footer__text {
    font-size: 0.875rem;
  }
}

.p-footer__body {
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__body {
    margin-top: 0;
  }
}

.p-footer__comment {
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-footer__comment {
    font-size: 1.25rem;
  }
}

.p-footer__comment span {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-transition: opacity 1.6s ease, -webkit-clip-path 1.2s cubic-bezier(0.33, 1, 0.78, 1);
  transition: opacity 1.6s ease, -webkit-clip-path 1.2s cubic-bezier(0.33, 1, 0.78, 1);
  transition: clip-path 1.2s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.6s ease;
  transition: clip-path 1.2s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.6s ease, -webkit-clip-path 1.2s cubic-bezier(0.33, 1, 0.78, 1);
}
@media screen and (min-width: 768px) {
  .p-footer__comment span {
    -webkit-transition: opacity 1.4s ease, -webkit-clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1);
    transition: opacity 1.4s ease, -webkit-clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1);
    transition: clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.4s ease;
    transition: clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.4s ease, -webkit-clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1);
  }
}

.p-footer__more {
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__more {
    margin-top: 3rem;
  }
}

.p-footer__menu {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__menu {
    margin-top: 6rem;
  }
}

.p-footer__nav--second {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav--second {
    margin-top: 2.25rem;
    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-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px 24px;
  gap: 1.125rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__list {
    gap: 3rem;
  }
}

.p-footer__link {
  color: #969696;
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  letter-spacing: 0.48px;
  letter-spacing: 0.03rem;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
  line-height: 1;
  letter-spacing: 0.48px;
  letter-spacing: 0.03rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
}

.p-footer__svg {
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  display: block;
}

.p-footer__line {
  width: 100%;
  height: 1px;
  background-color: #D2D2D2;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__line {
    margin-top: 2.25rem;
  }
}

.p-footer__copy {
  font-size: clamp(8px, 10px, 5vw);
  font-size: clamp(8px, 0.625rem, 5vw);
  color: #969696;
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    margin-top: 0;
  }
}

.p-header__sub.is-stop {
  -webkit-clip-path: initial !important;
          clip-path: initial !important;
  opacity: 1 !important;
  -webkit-transition: none 0s ease 0s;
  transition: none 0s ease 0s;
  -webkit-transition: initial;
  transition: initial;
}

.p-header {
  position: relative;
  background-color: #fff;
  position: relative;
  z-index: 100;
}

.p-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  border-bottom: 1px solid #D2D2D2;
}

.p-header__inner {
  padding-inline: 24px;
  padding-inline: 1.5rem;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-inline: 6rem;
    padding-block: 1.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-header--relative .p-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 4.5rem;
  }
}

.p-header__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-header__head--fixed {
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  -webkit-transition: -webkit-clip-path 0.3s ease;
  transition: -webkit-clip-path 0.3s ease;
  transition: clip-path 0.3s ease;
  transition: clip-path 0.3s ease, -webkit-clip-path 0.3s ease;
}

.p-header__logo h1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.p-header__logo a {
  width: 88px;
  width: 5.5rem;
  height: 20px;
  height: 1.25rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-header__logo a {
    width: 6.6875rem;
    height: 1.5rem;
  }
}

.p-header__logo svg {
  width: 88px;
  width: 5.5rem;
  height: 20px;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo svg {
    width: 6.6875rem;
    height: 1.5rem;
  }
}

.p-header__sub {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: clamp(10px, 11px, 5vw);
  font-size: clamp(10px, 0.6875rem, 5vw);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease, -webkit-clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1);
  transition: opacity 0.8s ease, -webkit-clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1);
  transition: clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1), opacity 0.8s ease;
  transition: clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1), opacity 0.8s ease, -webkit-clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1);
}
@media screen and (min-width: 768px) {
  .p-header__sub {
    margin-top: 1.125rem;
    font-size: 0.875rem;
  }
}

.p-header__right {
  margin-top: 4.5px;
  margin-top: 0.28125rem;
}

@media screen and (min-width: 768px) {
  .p-header--relative .p-header__right {
    display: none;
  }
}

.p-header__hamburger {
  width: 61px;
  width: 3.8125rem;
  height: 12px;
  height: 0.75rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    width: 4.0625rem;
    height: 0.75rem;
  }
}

.p-header__hamburger::before {
  position: absolute;
  content: "Menu";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  letter-spacing: 0.48px;
  letter-spacing: 0.03rem;
  color: #F86304;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger::before {
    font-size: 0.875rem;
    letter-spacing: 0.035rem;
  }
}

.p-header__hamburger.is-active::before {
  position: absolute;
  content: "Close";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  letter-spacing: 0.48px;
  letter-spacing: 0.03rem;
  font-weight: 400;
}

.p-header__btn {
  position: relative;
  height: 12px;
  height: 0.75rem;
}

.p-header__btn span {
  display: block;
  position: absolute;
  right: 0;
  content: "";
  width: 16px;
  width: 1rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #F86304;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-header__hamburger span:nth-child(1) {
  top: 0;
}

.p-header__hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-header__hamburger span:nth-child(3) {
  bottom: 0;
}

.p-header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.p-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.is-active span:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

.p-header__nav {
  position: fixed;
  top: 101px;
  top: 6.3125rem;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  -webkit-transition: -webkit-clip-path 0.4s ease;
  transition: -webkit-clip-path 0.4s ease;
  transition: clip-path 0.4s ease;
  transition: clip-path 0.4s ease, -webkit-clip-path 0.4s ease;
  background-color: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 24px 24px 48px 24px;
  padding: 1.5rem 1.5rem 3rem 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-header--relative .p-header__nav {
    position: relative;
    -webkit-clip-path: none;
            clip-path: none;
    top: 0;
    padding: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-header__nav--fixed {
  top: 68px;
  top: 4.25rem;
  border-bottom: 1px solid #D2D2D2;
}
@media screen and (min-width: 768px) {
  .p-header__nav--fixed {
    padding-right: 5.4375rem;
    padding-bottom: 4.5rem;
  }
}

.p-header__nav.is-active {
  z-index: 1000;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.p-header__nav.is-active {
  display: block;
}

.p-header__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-header__list {
    width: 17.196969697%;
    min-width: 14.1875rem;
    margin-left: auto;
    gap: 0.875rem;
    margin-right: -0.1875rem;
  }
}

.p-header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  color: #F86304;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  text-transform: capitalize;
  font-family: "Titillium Web", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-header__link {
    padding-left: 1.125rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-header__link::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.25rem;
    height: 0.25rem;
    background-color: #F86304;
    border-radius: 1000px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .p-header__link.is-current::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.25rem;
    height: 0.25rem;
    background-color: #F86304;
    border-radius: 1000px;
    opacity: 1;
  }
}

.p-header__link span {
  display: block;
  margin-left: 7px;
  margin-left: 0.4375rem;
}

/*======================================================
    マウスオーバー
======================================================*/
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-header__link:hover::before {
    opacity: 1;
  }
}
.p-news {
  margin-top: 96px;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .p-news {
    margin-top: 9rem;
  }
}

.p-news__inner {
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    padding-inline: 6rem;
  }
}

.p-news__body {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 7.2727272727%;
    padding-right: 3.75rem;
  }
}

.p-news__body .swiper-slide.swiper-slide-active {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}

.p-news__head {
  position: relative;
}

.p-news__title {
  text-transform: capitalize;
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 1;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  color: #F86304;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    font-size: 1rem;
    margin-top: 0.25rem;
  }
}

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

.p-news__swiper .swiper-slide {
  opacity: 0;
}

.p-news__swiper .swiper-slide-active {
  opacity: 1;
}

.p-news__swiper .swiper-slide-prev .p-news__item {
  -webkit-transform: translateX(-1.875rem);
          transform: translateX(-1.875rem);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.p-news__swiper .swiper-slide-next .p-news__item {
  -webkit-transform: translateX(1.875rem);
          transform: translateX(1.875rem);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.p-news__swiper .swiper-slide-active .p-news__item {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

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

.p-news__meta {
  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-news__meta {
    white-space: nowrap;
  }
}

.p-news__date {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-news__date {
    margin-top: 0.0625rem;
  }
}

.p-news__category {
  font-size: clamp(8px, 11px, 5vw);
  font-size: clamp(8px, 0.6875rem, 5vw);
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  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;
  border: 1px solid #D2D2D2;
  background-color: #fdfdfd;
  border-radius: 62.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__category {
    margin-top: 0.125rem;
  }
}

.p-news__text {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-news__text {
    margin-top: 0rem;
    padding-left: 1.5rem;
    position: relative;
    padding-right: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__text::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #D2D2D2;
  }
}

.p-news__text p {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 2;
  font-weight: 400;
}

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

.p-news__arrows {
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-news__arrows {
    right: 0.3125rem;
    top: 0.4375rem;
  }
}

.p-page-about-contact {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-contact {
    margin-top: 15rem;
  }
}

.p-page-about-contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  padding-block: 72px;
  padding-block: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-contact__inner {
    padding-block: 9rem;
  }
}

.p-page-about-contact__number {
  text-align: center;
}

.p-page-about-contact__link {
  display: block;
}

.p-page-about-contact__title span {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-transition: opacity 1.2s ease, -webkit-clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1);
  transition: opacity 1.2s ease, -webkit-clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1);
  transition: clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.2s ease;
  transition: clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.2s ease, -webkit-clip-path 0.8s cubic-bezier(0.33, 1, 0.78, 1);
}
@media screen and (min-width: 768px) {
  .p-page-about-contact__title span {
    font-size: 1.5rem;
  }
}

.p-page-about-contact__btn {
  margin-top: 32px;
  margin-top: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-page-about-feature {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-feature {
    margin-top: 15rem;
  }
}

.p-page-about-feature__inner {
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-feature__inner {
    padding-inline: 6rem;
  }
}

.p-page-about-feature__line {
  width: 0%;
  height: 1px;
  background-color: #D2D2D2;
}
@media screen and (min-width: 768px) {
  .p-page-about-feature__line {
    display: none;
  }
}

.p-page-about-feature__block {
  padding-top: 48px;
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-feature__block {
    padding-top: 6rem;
    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-page-about-feature__info {
    width: 37.2727272727%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: sticky;
    top: 8.125rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1480px) {
  .p-page-about-feature__info {
    width: 41.8181818182%;
  }
}

.p-page-about-feature__title span {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-transition: opacity 1.4s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
  transition: opacity 1.4s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
  transition: clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.4s ease;
  transition: clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.4s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
}
@media screen and (min-width: 768px) and (max-width: 1480px) {
  .p-page-about-feature__title span {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
    -webkit-transition: opacity 1.4s ease, -webkit-clip-path 1s cubic-bezier(0.33, 1, 0.78, 1);
    transition: opacity 1.4s ease, -webkit-clip-path 1s cubic-bezier(0.33, 1, 0.78, 1);
    transition: clip-path 1s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.4s ease;
    transition: clip-path 1s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.4s ease, -webkit-clip-path 1s cubic-bezier(0.33, 1, 0.78, 1);
  }
}

.p-page-about-feature__text {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-page-about-feature__container {
  margin-top: 72px;
  margin-top: 4.5rem;
}

@media screen and (min-width: 768px) {
  .p-page-about-feature__container--03 {
    width: 46.3636363636%;
    margin-top: 0;
  }
}

.p-page-about-feature__map {
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-page-about-feature__map {
    margin: 0;
  }
}

.p-page-about-feature__circle {
  background-color: #F8F8F8;
  border-radius: 1000px;
  width: 95.8974358974%;
  aspect-ratio: 1/1;
  margin-inline: auto;
  position: relative;
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
}

.p-page-about-feature__icon {
  position: absolute;
  content: "";
  top: 12.8342245989%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-page-about-feature__icon {
    top: 19.6078431373%;
  }
}

@media screen and (min-width: 768px) {
  .p-page-about-feature__icon svg {
    width: 6.6875rem;
    height: 1.5rem;
    display: block;
  }
}

.p-page-about-feature__items {
  position: relative;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes float1 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-0.5rem, 0.375rem);
            transform: translate(-0.5rem, 0.375rem);
  }
  50% {
    -webkit-transform: translate(0.375rem, -0.375rem);
            transform: translate(0.375rem, -0.375rem);
  }
  75% {
    -webkit-transform: translate(-0.25rem, 0.125rem);
            transform: translate(-0.25rem, 0.125rem);
  }
}

@keyframes float1 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-0.5rem, 0.375rem);
            transform: translate(-0.5rem, 0.375rem);
  }
  50% {
    -webkit-transform: translate(0.375rem, -0.375rem);
            transform: translate(0.375rem, -0.375rem);
  }
  75% {
    -webkit-transform: translate(-0.25rem, 0.125rem);
            transform: translate(-0.25rem, 0.125rem);
  }
}
@-webkit-keyframes float2 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0.25rem, 0.375rem);
            transform: translate(0.25rem, 0.375rem);
  }
  50% {
    -webkit-transform: translate(-0.25rem, 0.125rem);
            transform: translate(-0.25rem, 0.125rem);
  }
  75% {
    -webkit-transform: translate(0.125rem, -0.25rem);
            transform: translate(0.125rem, -0.25rem);
  }
}
@keyframes float2 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0.25rem, 0.375rem);
            transform: translate(0.25rem, 0.375rem);
  }
  50% {
    -webkit-transform: translate(-0.25rem, 0.125rem);
            transform: translate(-0.25rem, 0.125rem);
  }
  75% {
    -webkit-transform: translate(0.125rem, -0.25rem);
            transform: translate(0.125rem, -0.25rem);
  }
}
@-webkit-keyframes float3 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-0.25rem, -0.375rem);
            transform: translate(-0.25rem, -0.375rem);
  }
  50% {
    -webkit-transform: translate(0.375rem, 0.125rem);
            transform: translate(0.375rem, 0.125rem);
  }
  75% {
    -webkit-transform: translate(-0.125rem, 0.25rem);
            transform: translate(-0.125rem, 0.25rem);
  }
}
@keyframes float3 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-0.25rem, -0.375rem);
            transform: translate(-0.25rem, -0.375rem);
  }
  50% {
    -webkit-transform: translate(0.375rem, 0.125rem);
            transform: translate(0.375rem, 0.125rem);
  }
  75% {
    -webkit-transform: translate(-0.125rem, 0.25rem);
            transform: translate(-0.125rem, 0.25rem);
  }
}
.p-page-about-feature__item {
  width: 38.5026737968%;
  aspect-ratio: 1/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;
  background-color: #E7EBED;
  border-radius: 1000px;
  position: absolute;
  content: "";
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  -webkit-animation: float1 5s ease-in-out infinite;
          animation: float1 5s ease-in-out infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
@media screen and (min-width: 768px) {
  .p-page-about-feature__item {
    width: 31.3725490196%;
  }
}
.p-page-about-feature__item:nth-child(1) {
  -webkit-animation: float1 5s ease-in-out infinite;
          animation: float1 5s ease-in-out infinite;
}
.p-page-about-feature__item:nth-child(2) {
  -webkit-animation: float2 4.5s ease-in-out infinite;
          animation: float2 4.5s ease-in-out infinite;
}
.p-page-about-feature__item:nth-child(3) {
  -webkit-animation: float3 5.5s ease-in-out infinite;
          animation: float3 5.5s ease-in-out infinite;
}

.p-page-about-feature__item:first-child {
  top: 19.2513368984%;
  left: 6.4171122995%;
}
@media screen and (min-width: 768px) {
  .p-page-about-feature__item:first-child {
    top: 31.3725490196%;
    left: 11.7647058824%;
  }
}

.p-page-about-feature__item:nth-child(2) {
  top: 25.6684491979%;
  right: 6.4171122995%;
}
@media screen and (min-width: 768px) {
  .p-page-about-feature__item:nth-child(2) {
    top: 37.2549019608%;
    right: 7.8431372549%;
  }
}

.p-page-about-feature__item:nth-child(3) {
  bottom: 6.4171122995%;
  left: 26.2032085561%;
}
@media screen and (min-width: 768px) {
  .p-page-about-feature__item:nth-child(3) {
    bottom: 7.8431372549%;
    left: 31.3725490196%;
  }
}

.p-page-about-features__cards {
  margin-top: 144px;
  margin-top: 9rem;
  display: grid;
  gap: 96px;
  gap: 6rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-features__cards {
    margin-top: 12rem;
    gap: 12rem;
  }
}

.p-page-about-features__name {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-page-about-features__name {
    font-size: 1rem;
  }
}

.p-page-about-features__link {
  margin-top: 48px;
  margin-top: 3rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-page-about-features__link {
    margin-top: 4rem;
  }
}

.p-page-about-features__flame {
  border: 1px solid #E7E7E7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 342/193;
}

.p-page-about-features__image--even {
  width: 96px;
  width: 6rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-features__image--even {
    width: 9rem;
  }
}

.p-page-about-features__image--vivace {
  width: 131px;
  width: 8.1875rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-features__image--vivace {
    width: 14.5625rem;
  }
}

.p-page-about-features__image--comingsoon p {
  font-size: clamp(14px, 16px, 5vw);
  font-size: clamp(14px, 1rem, 5vw);
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: rgba(72, 72, 72, .6);
}
@media screen and (min-width: 768px) {
  .p-page-about-features__image--comingsoon p {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-page-about-features__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.p-page-about-features__detail {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-page-about-features__company {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  font-weight: 500;
  line-height: 2;
}

.p-page-about-features__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 2;
  font-weight: 400;
}

.p-page-about-features__btn {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-page-about-tags {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-page-about-tags__inner {
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-tags__inner {
    padding-inline: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-page-about-tags__block {
    width: 70.6060606061%;
  }
}

.p-page-about-tags__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-page-about-tags__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 12px;
  gap: 0.75rem 0.75rem;
  position: relative;
  margin-top: 25px;
  margin-top: 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-page-about-tags__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.1875rem 4.375rem;
    width: 100%;
  }
}
@media screen and (min-width: 1300px) {
  .p-page-about-tags__list {
    gap: 3rem 6rem;
  }
}

.p-page-about-tags__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #D2D2D2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-page-about-tags__item {
    width: 100%;
  }
}

.p-page-about-tags__link {
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  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-page-about-tags__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
  }
}

.p-page-about-tags__number {
  font-size: 8px;
  color: #F86304;
  font-weight: 400;
  line-height: 1;
  display: block;
  font-family: "Titillium Web", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-page-about-tags__number {
    font-size: clamp(10px, 0.75rem, 5vw);
    margin-top: 0.125rem;
  }
}

.p-page-about-tags__name {
  font-size: clamp(10px, 11px, 5vw);
  font-size: clamp(10px, 0.6875rem, 5vw);
  font-weight: 500;
  line-height: 1.2;
  display: block;
  margin-top: 10px;
  margin-top: 0.625rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .p-page-about-tags__name {
    line-height: 1;
    font-size: 1.1875rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1300px) {
  .p-page-about-tags__name {
    font-size: 1.5rem;
  }
}

.p-page-about-tags__titles {
  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: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-tags__titles {
    gap: 3rem;
    width: 14.8484848485%;
    position: sticky;
    top: 8.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-page-about-tags__titles--sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-page-about-tags__titles--pc {
    display: none;
  }
}
.p-page-about-tags__number span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.p-page-about-tags__title {
  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: 9px;
  gap: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-tags__title {
    gap: 1.5rem;
  }
}

.p-page-about-tags__title span {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  opacity: 0;
  -webkit-transition: opacity 1s ease, -webkit-clip-path 0.6s cubic-bezier(0.33, 1, 0.78, 1);
  transition: opacity 1s ease, -webkit-clip-path 0.6s cubic-bezier(0.33, 1, 0.78, 1);
  transition: clip-path 0.6s cubic-bezier(0.33, 1, 0.78, 1), opacity 1s ease;
  transition: clip-path 0.6s cubic-bezier(0.33, 1, 0.78, 1), opacity 1s ease, -webkit-clip-path 0.6s cubic-bezier(0.33, 1, 0.78, 1);
}

.p-page-about-tags__title span {
  line-height: 1.05;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.p-page-about-tags__title span:last-child {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-page-about-tags__title span:last-child {
  display: block;
}

.p-page-about-tags__textarea {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-tags__textarea {
    margin-top: 9rem;
  }
}

.p-page-about-tags__comment {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  color: #F86304;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-transition: opacity 1.6s ease, -webkit-clip-path 1.6s cubic-bezier(0.33, 1, 0.78, 1);
  transition: opacity 1.6s ease, -webkit-clip-path 1.6s cubic-bezier(0.33, 1, 0.78, 1);
  transition: clip-path 1.6s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.6s ease;
  transition: clip-path 1.6s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.6s ease, -webkit-clip-path 1.6s cubic-bezier(0.33, 1, 0.78, 1);
}
@media screen and (min-width: 768px) {
  .p-page-about-tags__comment {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1300px) {
  .p-page-about-tags__comment {
    font-size: 2.25rem;
  }
}

.p-page-about-tags__text {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-page-about-voice {
  margin-top: 120px;
  margin-top: 7.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice {
    margin-top: 15rem;
  }
}

.p-page-about-voice__inner {
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice__inner {
    padding-inline: 6rem;
  }
}

.p-page-about-voice__line {
  width: 0%;
  height: 1px;
  background-color: #D2D2D2;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice__line {
    display: none;
  }
}

.p-page-about-voice__info {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice__info {
    margin-top: 0;
  }
}

.p-page-about-voice__title span {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-transition: opacity 1.8s ease, -webkit-clip-path 1.8s cubic-bezier(0.33, 1, 0.78, 1);
  transition: opacity 1.8s ease, -webkit-clip-path 1.8s cubic-bezier(0.33, 1, 0.78, 1);
  transition: clip-path 1.8s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.8s ease;
  transition: clip-path 1.8s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.8s ease, -webkit-clip-path 1.8s cubic-bezier(0.33, 1, 0.78, 1);
}

.p-page-about-voice__text {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-top: 2.25rem;
  }
}

.p-page-about-voice__gallery {
  margin: 0 calc(50% - 50vw);
  margin-top: 97px;
  margin-top: 6.0625rem;
}

.p-page-about-voice__name {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice__name {
    font-size: clamp(10px, 0.75rem, 5vw);
    padding-inline: 6rem;
  }
}

.p-page-about-voice__name span {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  font-family: "Titillium Web", sans-serif;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1;
  margin-right: 20px;
  margin-right: 1.25rem;
}

.p-page-about-voice__swiper {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice__swiper {
    margin-top: 3rem;
  }
}

.p-page-about-voice__wrapper {
  height: 100%;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice__wrapper {
    padding-bottom: 2.5rem;
  }
}

.p-page-about-voice__slide {
  width: auto;
  height: auto;
  min-height: 125px;
  min-height: 7.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice__slide {
    width: auto;
  }
}

.p-page-about-voice__box {
  position: relative;
  border: 1px solid #D2D2D2;
  border-radius: 0.75rem;
  background-color: #fff;
  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;
  height: 100%;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.9s ease;
  transition: -webkit-transform 0.9s ease;
  transition: transform 0.9s ease;
  transition: transform 0.9s ease, -webkit-transform 0.9s ease;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.p-page-about-voice__box::before {
  position: absolute;
  content: "";
  background-image: url(../images/about/voice_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 26px;
  width: 1.625rem;
  height: 25px;
  height: 1.5625rem;
  bottom: -23.1px;
  bottom: -1.44375rem;
  left: 39px;
  left: 2.4375rem;
  z-index: -1;
}

.swiper-slide-elevated .p-page-about-voice__box {
  -webkit-transform: translateY(1.75rem);
          transform: translateY(1.75rem);
}
@media screen and (min-width: 768px) {
  .swiper-slide-elevated .p-page-about-voice__box {
    -webkit-transform: translateY(2.5rem);
            transform: translateY(2.5rem);
  }
}

.p-page-about-voice__comments {
  border-radius: 0.75rem;
  position: relative;
  z-index: 3;
  padding: 14px;
  padding: 0.875rem;
  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;
  height: 100%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice__comments {
    padding: 2.25rem;
  }
}

.p-page-about-voice__comment {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice__comment {
    font-size: 1.125rem;
  }
}

.p-page-about-voice__company {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  text-align: end;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-page-about-voice__company {
    font-size: clamp(10px, 0.75rem, 5vw);
    margin-top: 6rem;
  }
}

.p-page-about {
  background-color: #F86304;
  margin-top: 72px;
  margin-top: 4.5rem;
}

@media screen and (min-width: 1300px) {
  .p-page-about__inner {
    aspect-ratio: 1512/986;
    overflow: hidden;
  }
}

.p-page-about__block {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-page-about__block {
    display: grid;
    grid-template-columns: 646fr 866fr;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) and (max-width: 1098px) {
  .p-page-about__block {
    grid-template-columns: 666fr 846fr;
  }
}

.p-page-about__container {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-page-about__container {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    overflow: visible;
    overflow: initial;
    position: relative;
    z-index: 20;
  }
}

.p-page-about__container.is-sticky {
  position: sticky;
  top: 67px;
  top: 4.1875rem;
  height: 100%;
  -webkit-transition: top 0.1s ease;
  transition: top 0.1s ease;
  left: 0;
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
}
@media screen and (min-width: 768px) {
  .p-page-about__container.is-sticky {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-page-about__gallery {
  aspect-ratio: 390/475;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  -webkit-transform: scale(1.2) rotate(10deg);
          transform: scale(1.2) rotate(10deg);
  height: 100%;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-page-about__gallery {
    aspect-ratio: 864/1270;
    gap: 1rem;
    -webkit-transform: scale(1) translateX(7.5rem) rotate(15deg) translateY(-2.5rem);
            transform: scale(1) translateX(7.5rem) rotate(15deg) translateY(-2.5rem);
  }
}

.p-page-about__gallery .swiper-slide {
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.p-page-about__swiper {
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-page-about__swiper {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
}

.p-page-about__wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.p-page-about__slide {
  height: auto;
}

.p-page-about__image {
  padding-block: 4px;
  padding-block: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-page-about__image {
    padding-block: 0.5rem;
  }
}

.p-page-about__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-page-about__image img {
    border-radius: 0.25rem;
  }
}

.p-page-about__content {
  color: #fff;
  padding-block: 120px;
  padding-block: 7.5rem;
  padding-inline: 24px;
  padding-inline: 1.5rem;
  background-color: #F86304;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-page-about__content {
    padding-top: 8rem;
    padding-bottom: 8rem;
    padding-left: 6rem;
    padding-right: 0;
  }
}

.p-page-about__title {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  font-family: "Titillium Web", sans-serif;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-page-about__title {
    font-size: 1rem;
  }
}

.p-page-about__comment {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-page-about__comment {
    margin-top: 3.375rem;
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1300px) {
  .p-page-about__comment {
    font-size: 2.25rem;
  }
}

.p-page-about__comment span {
  opacity: 0;
  display: block;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
  transition: opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
  transition: clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.8s ease;
  transition: clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
}

.p-page-about__text {
  margin-top: 48px;
  margin-top: 3rem;
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 2;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-page-about__text {
    font-size: 0.875rem;
    margin-top: 4.75rem;
  }
}
@media screen and (min-width: 1300px) {
  .p-page-about__text {
    margin-top: 6rem;
    font-size: 1rem;
    padding-bottom: 0;
  }
}

.p-page-about__text p:not(:first-child) {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-page-about__text p:not(:first-child) {
    margin-top: 2rem;
  }
}

.p-page-company {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-page-company {
    padding: 7.5rem 0;
  }
}

.p-page-company__inner {
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 24px;
  padding: 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-company__inner {
    padding: 0 3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-paga-company__container {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: sticky;
    top: 11.25rem;
  }
}

.p-page-company__sub {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  font-family: "Titillium Web", sans-serif;
  text-transform: capitalize;
  color: #F86304;
}

.p-page-company__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-company__title {
    font-size: 1rem;
    margin-top: 2.25rem;
  }
}

.p-page-company__description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-page-company__description {
    font-size: 1.125rem;
  }
}

.p-page-company__body {
  background: #fff;
  padding: 40px;
  padding: 2.5rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .p-page-company__body {
    padding: 3.75rem;
  }
}

.p-page-company__contents {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-company__contents {
    margin-top: 3.25rem;
  }
}

.p-page-company__text p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
}

.p-page-confirm__form .wpcf7 {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  margin-top: 36px !important;
  margin-top: 2.25rem !important;
}

.p-page-contact {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-page-contact {
    padding: 7.5rem 0;
  }
}

.p-page-contact__inner {
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 24px;
  padding: 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-contact__inner {
    padding: 0 3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-paga-contact__container {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: sticky;
    top: 11.25rem;
  }
}

.p-page-contact__sub {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  font-family: "Titillium Web", sans-serif;
  text-transform: capitalize;
  color: #F86304;
}

.p-page-contact__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-contact__title {
    font-size: 1rem;
    margin-top: 2.25rem;
  }
}

.p-page-contact__description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-page-contact__description {
    font-size: 1.125rem;
  }
}

.p-page-contact__body {
  background: #fff;
  padding: 40px;
  padding: 2.5rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .p-page-contact__body {
    padding: 3.75rem;
  }
}

.wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.p-page-contact__progress {
  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;
  margin-top: 72px;
  margin-top: 4.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-page-contact__progress {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-page-contact__contents {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-contact__contents {
    margin-top: 3.25rem;
  }
}

.p-page-contact__text p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
}

.p-page-contact__careful {
  font-size: 12px;
  font-size: 0.75rem;
  color: rgba(72, 72, 72, .6);
  margin-top: 36px;
  margin-top: 2.25rem;
  padding-left: 12px;
  padding-left: 0.75rem;
  position: relative;
  line-height: 2;
}

.p-page-contact__careful::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/contact_circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
}

.p-page-contact__back {
  margin-top: 72px;
  margin-top: 4.5rem;
}

.p-page-contact__form {
  overflow: hidden;
}

.p-page-policy {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-page-policy {
    padding: 7.5rem 0;
  }
}

.p-page-policy__inner {
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 24px;
  padding: 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-policy__inner {
    padding: 0 3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-paga-policy__container {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: sticky;
    top: 11.25rem;
  }
}

.p-page-policy__sub {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  font-family: "Titillium Web", sans-serif;
  text-transform: capitalize;
  color: #F86304;
}

.p-page-policy__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-policy__title {
    font-size: 1rem;
    margin-top: 2.25rem;
  }
}

.p-page-policy__description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-page-policy__description {
    font-size: 1.125rem;
  }
}

.p-page-policy__body {
  background: #fff;
  padding: 40px;
  padding: 2.5rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .p-page-policy__body {
    padding: 3.75rem;
  }
}

.p-page-policy__contents {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-policy__contents {
    margin-top: 3.25rem;
  }
}

.p-page-policy__text p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
}

.p-page-policy__info {
  margin-bottom: 72px;
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-policy__info {
    margin-bottom: 9rem;
  }
}

.p-page-policy__comment {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-page-policy__comment {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1300px) {
  .p-page-policy__comment {
    font-size: 2.25rem;
  }
}

.p-page-policy__comment span {
  opacity: 0;
  display: block;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
  transition: opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
  transition: clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.8s ease;
  transition: clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
}

.p-page-policy__text {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 2;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-page-policy__text {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1300px) {
  .p-page-policy__text {
    font-size: 1rem;
    padding-bottom: 0;
  }
}

.p-page-policy__text p:not(:first-child) {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-page-policy__text p:not(:first-child) {
    margin-top: 2rem;
  }
}

.p-page-policy-detail__item {
  list-style-type: none;
  counter-increment: number;
}

.p-page-policy-detail__item:not(:first-child) {
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-page-policy-detail__item:not(:first-child) {
    margin-top: 4.5rem;
  }
}

.p-page-policy-detail__item--note {
  margin-top: 2em;
}

.p-page-policy-detail__title {
  margin-bottom: 1em;
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-page-policy-detail__title {
    margin-bottom: 2em;
  }
}

.p-page-policy-detail__item .p-page-policy-detail__title::before {
  content: "" counter(number) ". ";
  position: absolute;
  top: 0;
  left: 0;
}

.p-page-policy-detail__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
}

.p-page-policy-detail__text a {
  text-decoration: underline;
}

.p-page-policy-detail__text a:hover {
  text-decoration: none;
}

.p-page-policy-detail__text:not(:last-child) {
  margin-bottom: 1em;
}

.p-page-recruit {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-page-recruit {
    padding: 7.5rem 0;
  }
}

.p-page-recruit__inner {
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 24px;
  padding: 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-recruit__inner {
    padding: 0 3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-paga-recruit__container {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: sticky;
    top: 11.25rem;
  }
}

.p-page-recruit__sub {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  font-family: "Titillium Web", sans-serif;
  text-transform: capitalize;
  color: #F86304;
}

.p-page-recruit__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-recruit__title {
    font-size: 1rem;
    margin-top: 2.25rem;
  }
}

.p-page-recruit__description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-page-recruit__description {
    font-size: 1.125rem;
  }
}

.p-page-recruit__body {
  background: #fff;
  padding: 40px;
  padding: 2.5rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .p-page-recruit__body {
    padding: 3.75rem;
  }
}

.p-page-recruit__contents {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-recruit__contents {
    margin-top: 3.25rem;
  }
}

.p-page-recruit__text p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
}

.p-page-recruit__info {
  margin-bottom: 72px;
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-recruit__info {
    margin-bottom: 9rem;
  }
}

.p-page-recruit__comment {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-page-recruit__comment {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1300px) {
  .p-page-recruit__comment {
    font-size: 2.25rem;
  }
}

.p-page-recruit__comment span {
  opacity: 0;
  display: block;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
  transition: opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
  transition: clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.8s ease;
  transition: clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1), opacity 1.8s ease, -webkit-clip-path 1.4s cubic-bezier(0.33, 1, 0.78, 1);
}

.p-page-recruit__text {
  margin-top: 36px;
  margin-top: 2.25rem;
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 2;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-page-recruit__text {
    font-size: 0.875rem;
    margin-top: 4.75rem;
  }
}
@media screen and (min-width: 1300px) {
  .p-page-recruit__text {
    margin-top: 4.5rem;
    font-size: 1rem;
    padding-bottom: 0;
  }
}

.p-page-recruit__text p:not(:first-child) {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-page-recruit__text p:not(:first-child) {
    margin-top: 2rem;
  }
}

.p-related {
  padding-left: 24px;
  padding-left: 1.5rem;
  overflow: hidden;
  margin-top: 96px;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .p-related {
    margin-top: 15rem;
    padding-left: 6rem;
  }
}

.p-related__inner {
  position: relative;
}

.p-related__title {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 1;
  font-weight: 400;
  color: #F86304;
  font-family: "Titillium Web", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-related__title {
    font-size: 1rem;
  }
}

.p-related__swiper {
  position: static;
  position: initial;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-related__swiper {
    padding-right: 6rem;
  }
}

.p-related__list {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-related__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.375rem;
  border: 1px solid #e7e7e7;
}
@media screen and (min-width: 768px) {
  .p-related__image img {
    border-radius: 0.25rem;
  }
}

.p-related__content {
  padding-top: 12px;
  padding-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-related__content {
    padding-top: 1.5rem;
  }
}

.p-related__name {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-related__name {
    font-size: 1rem;
  }
}

.p-related__client {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 10px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-related__client {
    margin-top: 0.75rem;
    font-size: clamp(10px, 0.75rem, 5vw);
  }
}

.p-related__categories {
  margin-top: 15px;
  margin-top: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
  gap: 0.3125rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-related__categories {
    margin-top: 1.5rem;
  }
}

.p-related__category {
  font-size: 10px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-related__category {
    font-size: clamp(10px, 0.75rem, 5vw);
  }
}

.p-related__nothing {
  text-align: center;
  margin-top: 36px;
  margin-top: 2.25rem;
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
}

@media screen and (min-width: 768px) {
  .p-related__arrows {
    right: 6.125rem;
  }
}

.p-single-works {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-works {
    margin-top: 9rem;
  }
}

.p-single-works__inner {
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__inner {
    padding-inline: 6rem;
  }
}

.p-single-works__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-single-works__title {
    font-size: 1.5rem;
    margin-bottom: 9rem;
  }
}

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

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

@media screen and (min-width: 768px) {
  .p-single-works__container {
    display: grid;
    grid-template-columns: 610fr 660fr;
    gap: 3.4604519774%;
  }
}

.p-single-works__thumbnail {
  margin-top: 66px;
  margin-top: 4.125rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__thumbnail {
    margin-top: 0;
    padding-right: 6.4375rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: sticky;
    top: 8.125rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-single-works__thumbnail {
    padding-right: 3.1875rem;
  }
}

.p-single-works__thumbnail img {
  border-radius: 0.5rem;
  border: 1px solid #e7e7e7;
}
@media screen and (min-width: 768px) {
  .p-single-works__thumbnail img {
    border-radius: 0.75rem;
  }
}

.p-single-works__info {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__info {
    margin-top: 0;
    padding: 3rem 3rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .p-single-works__info {
    padding: 1.5rem 0rem 1.5rem 0rem;
  }
}

.p-single-works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  gap: 3rem;
  padding-top: 18px;
  padding-top: 1.125rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  border-top: 1px solid #e7e7e7;
}
@media screen and (min-width: 768px) {
  .p-single-works__list {
    padding-top: 1rem;
    padding-bottom: 4.5rem;
    gap: 17.0212765957%;
  }
}

.p-single-works__list:last-child {
  padding-bottom: 0;
}
.p-single-works__itemName {
  min-width: 72px;
  min-width: 4.5rem;
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 1.5;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
  letter-spacing: 0.64px;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__itemName {
    font-size: 0.75rem;
    min-width: 5rem;
    width: 27.6595744681%;
  }
}

.p-single-works__item {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-single-works__item {
    width: 55.3191489362%;
  }
}

@media screen and (min-width: 768px) {
  .p-single-works__item--client {
    font-size: 0.875rem;
  }
}

.p-single-works__item--url {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 1.5;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
  letter-spacing: 0.64px;
  letter-spacing: 0.04rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .p-single-works__item--url {
    font-size: 0.75rem;
  }
}

.p-single-works__item--category {
  gap: 20px;
  gap: 1.25rem;
}

.p-single-works__item--tag {
  gap: 12px;
  gap: 0.75rem;
}

.p-single-works__item--tag p {
  border: 1px solid #D2D2D2;
  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;
  min-height: 24px;
  min-height: 1.5rem;
  padding: 0 12px;
  padding: 0 0.75rem;
  border-radius: 0.75rem;
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  line-height: 1;
  font-weight: 400;
}

.p-single-works__text {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__text {
    margin-top: 9rem;
  }
}

.p-single-works__textContent {
  margin-top: 36px;
  margin-top: 2.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
}

.p-single-works__content {
  margin-top: 96px;
  margin-top: 6rem;
  display: grid;
  gap: 48px;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__content {
    margin-top: 15.5rem;
    gap: 6rem;
  }
}

.p-single-works__content .wp-block-gallery.columns-2 {
  display: grid !important;
  gap: 48px !important;
  gap: 3rem !important;
}
@media screen and (min-width: 768px) {
  .p-single-works__content .wp-block-gallery.columns-2 {
    gap: 6rem !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.p-single-works__content .wp-block-image {
  width: 100% !important;
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.p-single-works__content .wp-block-image img {
  border-radius: 0.25rem;
  border: 1px solid #E7E7E7;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  height: auto !important;
  -o-object-position: top !important;
     object-position: top !important;
}
@media screen and (min-width: 768px) {
  .p-single-works__content .wp-block-image img {
    border-radius: 0.375rem;
  }
}

.p-single-works__content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption, .wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
  color: rgba(72, 72, 72, .6);
  font-size: 12px;
  font-size: 0.75rem;
  text-shadow: none;
  text-shadow: initial;
  scrollbar-color: initial;
  will-change: initial;
  font-weight: 500;
  line-height: 1;
  margin-top: 18px;
  margin-top: 1.125rem;
  overflow: visible;
  overflow: initial;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single-works__content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption, .wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.p-single-works__content .wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before {
  backdrop-filter: initial;
  -webkit-mask-image: initial;
          mask-image: initial;
  max-height: none;
  max-height: initial;
  content: none;
}

.p-single-works__content .wp-block-gallery.has-nested-images figure.wp-block-image {
  -webkit-box-flex: initial !important;
      -ms-flex-positive: initial !important;
          flex-grow: initial !important;
}

@media screen and (max-width: 767px) {
  .p-single-works__content .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    width: 100% !important;
  }
}

.p-single-works__content .wp-block-image .wp-element-caption {
  margin-top: 18px;
  margin-top: 1.125rem;
  margin-bottom: 0;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single-works__content .wp-block-image .wp-element-caption {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.p-tags {
  margin-top: 96px;
  margin-top: 6rem;
  border-top: 1px solid #D2D2D2;
}

.p-tags--taxonomy {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-tags__inner {
  padding-inline: 24px;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-tags__inner {
    padding-inline: 6rem;
  }
}

.p-tags__head {
  padding-block: 16px;
  padding-block: 1rem;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-tags__head {
    padding-block: 1.5rem;
  }
}

.p-tags__center {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 28px;
  padding-inline: 1.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-tags__icon {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-tags__icon svg {
  display: block;
}

.p-tags__title {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  letter-spacing: 0.56px;
  letter-spacing: 0.035rem;
}

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

.p-tags__btn {
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  position: relative;
  -webkit-transform: translateY(-0.0625rem);
          transform: translateY(-0.0625rem);
}

.p-tags__btn span {
  width: 16px;
  width: 1rem;
  height: 1px;
  background-color: #484848;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-tags__btn span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}

.p-tags__btn span:nth-child(2) {
  -webkit-transform: translateX(-50%) rotate(0deg);
          transform: translateX(-50%) rotate(0deg);
}

.p-tags__btn.is-active span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.p-tags__btn.is-active span:nth-child(2) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.p-tags__item {
  padding-top: 7px;
  padding-top: 0.4375rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-tags__item {
    padding-top: 1.5625rem;
    padding-bottom: 3rem;
  }
}

.p-tags__body {
  height: 0;
  overflow: hidden;
}

.p-taxonomy {
  margin-top: 96px;
  margin-top: 6rem;
}

.p-taxonomy__title {
  padding-inline: 24px;
  padding-inline: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-taxonomy__title {
    padding-inline: 6rem;
    font-size: 1.5rem;
  }
}

.p-taxonomy__title span {
  display: block;
  line-height: 1;
}

.p-taxonomy__title span:last-child {
  font-size: 10px;
  margin-left: 5px;
  margin-left: 0.3125rem;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-taxonomy__title span:last-child {
    font-size: clamp(10px, 0.75rem, 5vw);
    margin-left: 0.375rem;
  }
}

.p-works__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  border-top: 1px solid #D2D2D2;
}
@media screen and (min-width: 768px) {
  .p-works__lists {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-works__lists::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #D2D2D2;
}
@media screen and (min-width: 768px) {
  .p-works__lists::before {
    display: none;
  }
}

.p-works__item {
  border-bottom: 1px solid #D2D2D2;
  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;
  height: 100%;
  background-color: #FAFAFA;
}
@media screen and (min-width: 768px) {
  .p-works__item {
    border-right: 1px solid #D2D2D2;
  }
}

.p-works__link {
  padding: 18px;
  padding: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease 0s, visibility 0.6s ease 0s;
  transition: opacity 0.6s ease 0s, visibility 0.6s ease 0s;
}
@media screen and (min-width: 768px) {
  .p-works__link {
    padding: 4.59375rem 6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1398px) {
  .p-works__link {
    padding: 2.3125rem 3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-works__item:nth-child(3n) {
    border-right: none;
  }
}

.p-works__image {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-works__image img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.25rem;
  margin: auto;
}

.p-works__content {
  margin-top: 18px;
  margin-top: 1.125rem;
  padding-top: 18px;
  padding-top: 1.125rem;
  border-top: 1px solid #e7e7e7;
  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-works__content {
    margin-top: 3rem;
  }
}

.p-works__title {
  font-size: clamp(10px, 12px, 5vw);
  font-size: clamp(10px, 0.75rem, 5vw);
  font-weight: 500;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .p-works__title {
    font-size: 1rem;
  }
}

.p-works__name {
  font-size: 10px;
  font-size: 0.625rem;
  margin-top: 8px;
  margin-top: 0.5rem;
  font-weight: 400;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .p-works__name {
    font-size: clamp(10px, 0.75rem, 5vw);
    margin-top: 0.75rem;
  }
}

.p-works__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 18px;
  margin-top: 1.125rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .p-works__categories {
    margin-top: 1.5rem;
  }
}

.p-works__category {
  font-size: 10px;
  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-radius: 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-works__category {
    font-size: clamp(10px, 0.75rem, 5vw);
  }
}

.p-works__item.is-visible .p-works__link {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .p-works__item:nth-child(odd) .p-works__link {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}

@media screen and (max-width: 767px) {
  .p-works__item:nth-child(even) .p-works__link {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
}

@media screen and (min-width: 768px) {
  .p-works__item:nth-child(3n+1).is-visible .p-works__link {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}

@media screen and (min-width: 768px) {
  .p-works__item:nth-child(3n+2).is-visible .p-works__link {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
}

@media screen and (min-width: 768px) {
  .p-works__item:nth-child(3n).is-visible .p-works__link {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
}

/*======================================================
  マウスオーバーでカードを拡大
======================================================*/
@media (any-hover: hover) {
  .p-works__link:hover .p-works__title,
  .p-works__link:hover .p-works__name,
  .p-works__link:hover .p-works__categories {
    opacity: 0.5;
  }
}
/*# sourceMappingURL=styles.css.map */
