@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #0F0F0F;
  line-height: normal;
  font-weight: 500;
  background-color: #ffffff;
}
body.works, body.tax-worktype, body.post-type-archive-works, body.single-works {
  background-color: #0F0F0F;
}
body.is-appear .l-global-container {
  animation-name: pageTransitionContent;
  animation-duration: 1.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  pointer-events: auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: opacity 0.3s ease;
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

input,
textarea,
select {
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
}

@keyframes wipe {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(293px);
  }
}
@keyframes fadeOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}
@keyframes bgRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pageTransition {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes pageTransitionContent {
  0% {
    opacity: 0;
    filter: blur(24px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.l-global-container {
  overflow: hidden;
}

body:not(.home) .l-global-container.is-appear {
  opacity: 0;
  filter: blur(24px);
  pointer-events: none;
}

body.home .l-header {
  transform: translateY(-140px);
  transition: transform 1s 2.8s cubic-bezier(0.6, 0, 0.3, 1);
}
@media screen and (min-width: 768px) {
  body.home .l-header {
    transition: transform 1s 2.3s cubic-bezier(0.6, 0, 0.3, 1);
  }
}
body.home .l-header.is-show {
  transform: translateY(0);
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.l-header__inner {
  padding: clamp(30px, 8vw, 60px) clamp(20px, 5.33vw, 40px) 0 clamp(20px, 5.33vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: clamp(25px, 3.472vw, 50px) clamp(20px, 2.778vw, 40px) 0 clamp(20px, 2.778vw, 40px);
  }
}
.l-header__logo a svg {
  width: clamp(200px, 53.33vw, 400px);
}
@media screen and (min-width: 768px) {
  .l-header__logo a svg {
    width: clamp(154.5px, 21.458vw, 309px);
    height: clamp(26px, 3.61vw, 52px);
  }
}
@media screen and (min-width: 768px) {
  .l-header__logo > span {
    margin-block-start: clamp(5px, 0.694vw, 10px);
    font-size: 1rem;
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .l-header__logo > span {
    font-size: 1.2rem;
  }
}
.l-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(26.5px, 3.68vw, 53px);
  }
}
.l-header__list {
  display: flex;
  gap: clamp(15px, 2vw, 30px);
  align-items: center;
  justify-content: flex-end;
}
.l-header__item a {
  font-weight: 600;
  font-size: clamp(1.1rem, 1.04vw, 1.5rem);
}
.l-header__contact {
  width: clamp(35px, 9.33vw, 70px);
  height: clamp(35px, 9.33vw, 70px);
}
@media screen and (min-width: 768px) {
  .l-header__contact {
    width: clamp(106px, 14.72vw, 212px);
    height: clamp(30px, 4.167vw, 60px);
  }
}
.l-header__contact > a {
  font-weight: 600;
  width: 100%;
  height: 100%;
  display: block;
  border: solid clamp(1px, 0.2667vw, 2px) #0F0F0F;
  border-radius: clamp(20px, 5.33vw, 40px);
  position: relative;
  z-index: 10;
  overflow: hidden;
  perspective: 1000;
}
@media screen and (min-width: 768px) {
  .l-header__contact > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(5.825px, 0.8vw, 11.65px);
    font-size: clamp(1.1rem, 1.04vw, 15px);
  }
}
.l-header__contact > a::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 10rem;
  background-color: #0F0F0F;
  position: absolute;
  top: 100%;
  left: 30%;
  z-index: -1;
  transform: translate3d(0, 10%, 0);
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
  will-change: transform, opacity;
}
.l-header__contact > a:hover {
  opacity: 1;
  color: #ffffff;
}
.l-header__contact > a:hover::after {
  content: "";
  width: 100%;
  height: 20rem;
  left: -10%;
  transform: translate3d(0, -50%, 0) scale(1.5);
}
.l-header__contact > a:hover img.is-white {
  opacity: 1;
  visibility: visible;
}
.l-header__contact > a span {
  transform: translateY(-1px);
}
.l-header__contact > a img {
  width: clamp(10px, 2.667vw, 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .l-header__contact > a img {
    top: 0;
    left: 0;
    width: clamp(8px, 1.11vw, 16px);
    transform: translate(0);
    position: relative;
  }
}
.l-header__contact > a img.is-white {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/mail-icon-white.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  width: clamp(10px, 2.667vw, 20px);
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-header__contact > a img.is-white {
    transform: translate(0);
    top: 0;
    left: 0;
    width: auto;
  }
}
.l-header__iconWrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header__iconWrapper {
    width: auto;
    height: auto;
  }
}
.l-header__hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: clamp(30px, 8vw, 60px);
  height: clamp(7px, 1.8667vw, 14px);
}
.l-header__hamburger[aria-expanded=true] > span {
  background-color: #ffffff;
}
.l-header__hamburger[aria-expanded=true] > span:first-child {
  transition-delay: 70ms;
  transform: translateY(0.8vw) rotate(-45deg);
}
.l-header__hamburger[aria-expanded=true] > span:last-child {
  transition-delay: 140ms;
  transform: translateY(-0.8vw) rotate(45deg);
}
.l-header__hamburger > span {
  display: block;
  width: clamp(30px, 8vw, 60px);
  height: clamp(1px, 0.2667vw, 2px);
  background-color: #0F0F0F;
  transition: transform 0.7s;
  margin-block-end: clamp(5px, 1.33vw, 10px);
}
.l-header__hamburger > span:last-child {
  margin-block-end: 0;
}

.works .l-header {
  color: #ffffff;
}
.works svg path {
  fill: #ffffff;
}
.works .l-header__contact > a {
  border-radius: clamp(20px, 5.33vw, 40px);
  border: solid clamp(1px, 0.2667vw, 2px) #ffffff;
}
.works .l-header__contact > a::after {
  content: "";
  background-color: #ffffff;
}
.works .l-header__contact > a:hover {
  border: solid clamp(1px, 0.2667vw, 2px) #0F0F0F;
  color: #0F0F0F;
}
.works .l-header__contact > a:hover img.is-white {
  opacity: 0;
  visibility: hidden;
}
.works .l-header__contact > a:hover img.is-black {
  opacity: 1;
  visibility: visible;
}
.works .l-header__contact img.is-black {
  opacity: 0;
  visibility: hidden;
}
.works .l-header__contact img.is-white {
  opacity: 1;
  visibility: visible;
}
.works .l-header__hamburger span {
  background-color: #ffffff;
}

.l-footer {
  margin-block-start: -2px;
  background-color: #0F0F0F;
  padding-block-end: clamp(100px, 26.667vw, 200px);
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-block-end: clamp(50px, 6.94vw, 100px);
  }
}
@media screen and (min-width: 768px) {
  .l-footer__topWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: flex-end;
  }
}
.l-footer__copy {
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  color: #ffffff;
  line-height: 1.625;
  letter-spacing: 0.3em;
  font-weight: 700;
  font-size: clamp(3.2rem, 8.533vw, 6.4rem);
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    font-size: clamp(1.6rem, 2.22vw, 3.2rem);
  }
}
.l-footer__logo {
  margin-block-start: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    margin-block-start: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__logo a img {
    width: clamp(154.5px, 21.458vw, 309px);
    height: clamp(26px, 3.61vw, 52px);
  }
}
.l-footer__logo span {
  display: block;
  font-size: clamp(1.2rem, 3.2vw, 2.4rem);
  color: #ffffff;
  text-align: center;
  margin-block-start: clamp(10px, 2.667vw, 20px);
}
@media screen and (min-width: 768px) {
  .l-footer__logo span {
    font-size: clamp(1rem, 0.83vw, 1.2rem);
    margin-block-start: clamp(5px, 0.694vw, 10px);
  }
}
.l-footer__icon {
  margin-block-start: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .l-footer__icon {
    margin-block-start: 0;
    position: absolute;
    bottom: 0;
    left: calc(clamp(39.25px, 5.45vw, 78.5px) * -1);
  }
}
.l-footer__icon img {
  width: clamp(18px, 4.8vw, 36px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__icon img {
    width: clamp(9px, 1.25vw, 18px);
  }
}
.l-footer__wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: clamp(80px, 21.33vw, 160px);
  margin-block-start: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .l-footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    margin-block-start: clamp(49px, 6.8vw, 98px);
  }
}
.l-footer__info {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  color: #ffffff;
}
.l-footer__address {
  margin-block-end: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .l-footer__address {
    margin-block-end: clamp(10px, 1.389vw, 20px);
  }
}
.l-footer__address p {
  text-align: center;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .l-footer__address p {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    text-align: left;
  }
}
.l-footer__copyright {
  text-align: center;
  font-size: clamp(1.4rem, 3.73vw, 2.8rem);
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    font-size: clamp(1rem, 0.972vw, 1.4rem);
    text-align: left;
  }
}
.l-footer__nav {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    position: relative;
  }
}
.l-footer__list {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  -moz-column-gap: clamp(50px, 13.33vw, 100px);
       column-gap: clamp(50px, 13.33vw, 100px);
  row-gap: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .l-footer__list {
    grid-template-columns: auto auto auto;
    -moz-column-gap: clamp(40px, 5.556vw, 80px);
         column-gap: clamp(40px, 5.556vw, 80px);
    row-gap: clamp(10px, 1.389vw, 20px);
  }
}
.l-footer__item a {
  font-size: clamp(20px, 5.33vw, 40px);
  color: #ffffff;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .l-footer__item a {
    text-align: left;
    font-size: clamp(1.2rem, 1.667vw, 2.4rem);
  }
}

.contact .l-footer,
.page-id-15 .l-footer,
.page-id-57 .l-footer {
  padding-block: clamp(150px, 40vw, 300px) clamp(100px, 26.667vw, 200px);
}
@media screen and (min-width: 768px) {
  .contact .l-footer,
  .page-id-15 .l-footer,
  .page-id-57 .l-footer {
    padding-block: clamp(75.5px, 10.486vw, 151px) clamp(50px, 6.94vw, 100px);
  }
}

.l-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  transition: opacity 0.4s ease;
  background-color: #0F0F0F;
  text-align: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding-block: clamp(226px, 60.267vw, 452px) clamp(288px, 76.8vw, 576px);
}
.l-mobile-menu[aria-hidden=false] {
  overflow-y: scroll;
  visibility: visible;
  opacity: 1;
}
.l-mobile-menu__wrapper {
  color: #ffffff;
  padding-inline: clamp(20px, 5.33vw, 40px);
}
.l-mobile-menu__item {
  text-align: center;
  margin-block-end: clamp(40px, 10.6vw, 80px);
}
.l-mobile-menu__item a {
  font-weight: 600;
  font-size: clamp(1.6rem, 4.8vw, 3.6rem);
}
.l-mobile-menu__item:last-child {
  margin-block-end: 0;
}
.l-mobile-menu__contact {
  margin-block-start: clamp(80px, 21.3vw, 160px);
  width: 100%;
  height: clamp(90px, 24vw, 180px);
}
.l-mobile-menu__contact a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.667vw, 20px);
  border-radius: clamp(50px, 13.33vw, 100px);
  border: solid clamp(1px, 0.2667vw, 2px) #ffffff;
}
.l-mobile-menu__contact img {
  width: clamp(17px, 4.53vw, 34px);
}
.l-mobile-menu__contact span {
  transform: translateY(-1px);
  font-size: clamp(1.6rem, 4.8vw, 3.6rem);
}
.l-mobile-menu__policy {
  margin-block-start: clamp(80px, 21.3vw, 160px);
}
.l-mobile-menu__policy a {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
.l-mobile-menu__icon {
  margin-block-start: clamp(30px, 8vw, 60px);
}
.l-mobile-menu__icon a img {
  width: clamp(18px, 4.8vw, 36px);
  margin-inline: auto;
}

.l-contact {
  padding-block: clamp(150px, 40vw, 300px);
  background-color: #0F0F0F;
}
@media screen and (min-width: 768px) {
  .l-contact {
    padding-block: clamp(100px, 13.89vw, 200px) clamp(89px, 12.36vw, 178px);
  }
}
@media screen and (min-width: 768px) {
  .l-contact__inner {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .l-contact__list {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .l-contact__item {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .l-contact__item:hover {
    transform: translateY(-20px);
  }
  .l-contact__item:nth-child(1) {
    position: relative;
    left: calc(clamp(10px, 1.389vw, 20px) * -1);
    top: clamp(3px, 0.4vw, 6px);
  }
  .l-contact__item:nth-child(1) img {
    width: clamp(87.5px, 12.15vw, 175px);
  }
  .l-contact__item:nth-child(2) {
    position: relative;
    left: calc(clamp(6.5px, 0.9vw, 13px) * -1);
    top: clamp(5px, 0.694vw, 10px);
  }
  .l-contact__item:nth-child(2) img {
    width: clamp(56px, 7.778vw, 112px);
  }
  .l-contact__item:nth-child(3) {
    position: relative;
    top: clamp(24.5px, 3.4vw, 49px);
    left: calc(clamp(3.5px, 0.4861vw, 7px) * -1);
  }
  .l-contact__item:nth-child(3) img {
    width: clamp(52px, 7.22vw, 104px);
  }
  .l-contact__item:nth-child(4) {
    position: relative;
  }
  .l-contact__item:nth-child(4) img {
    width: clamp(71.5px, 9.93vw, 143px);
  }
  .l-contact__item:nth-child(5) {
    position: relative;
    left: clamp(10.5px, 1.458vw, 21px);
    top: clamp(8px, 1.11vw, 16px);
  }
  .l-contact__item:nth-child(5) img {
    width: clamp(87.5px, 12.15vw, 175px);
  }
  .l-contact__item:nth-child(6) {
    position: relative;
    left: clamp(12px, 1.667vw, 24px);
    top: clamp(10px, 1.389vw, 20px);
  }
  .l-contact__item:nth-child(6) img {
    width: clamp(56.5px, 7.8472vw, 113px);
  }
  .l-contact__item:nth-child(7) {
    position: relative;
    left: clamp(14px, 1.94vw, 28px);
    top: clamp(30px, 4.1667vw, 60px);
  }
  .l-contact__item:nth-child(7) img {
    width: clamp(51.5px, 7.15vw, 103px);
  }
  .l-contact__item:nth-child(8) {
    position: relative;
    left: clamp(18px, 2.5vw, 36px);
    top: clamp(4.5px, 0.625vw, 9px);
  }
  .l-contact__item:nth-child(8) img {
    width: clamp(72px, 10vw, 144px);
  }
}
.l-contact__title {
  color: #ffffff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-contact__title {
    display: inline-block;
    text-align: center;
    margin-inline: auto;
    margin-block: clamp(32.5px, 4.5vw, 65px) clamp(34.5px, 4.79vw, 69px);
  }
}
.l-contact__title a:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .l-contact__title a:hover svg {
    top: 0;
    right: 0;
  }
}
.l-contact__title a h2 {
  font-weight: 400;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(6rem, 16vw, 12rem);
}
@media screen and (min-width: 768px) {
  .l-contact__title a h2 {
    font-size: clamp(4.5rem, 6.25vw, 9rem);
  }
}
.l-contact__title a svg {
  transition: right 0.5s ease, top 0.5s ease;
  width: clamp(22.5px, 6vw, 45px);
  height: clamp(22.5px, 6vw, 45px);
  position: absolute;
  right: 0;
  top: clamp(9.5px, 2.533vw, 19px);
}
@media screen and (min-width: 768px) {
  .l-contact__title a svg {
    width: clamp(13.5px, 1.875vw, 27px);
    height: clamp(13.5px, 1.875vw, 27px);
    top: clamp(9.5px, 1.3vw, 19px);
    right: clamp(11.5px, 1.5972vw, 23px);
  }
}
.l-contact__title > p {
  margin-block-start: clamp(20px, 5.33vw, 40px);
  display: block;
  text-align: center;
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
  font-weight: 700;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
}
@media screen and (min-width: 768px) {
  .l-contact__title > p {
    letter-spacing: 0.2em;
    font-size: clamp(1rem, 1.389vw, 2rem);
    margin-block-start: clamp(10px, 1.389vw, 20px);
  }
}

.l-inner {
  padding-inline: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1300px;
    margin-inline: auto;
    padding-inline: 0;
  }
}

@media screen and (min-width: 768px) {
  .l-outer {
    padding-inline: 2.778vw;
  }
}

.c-button {
  width: clamp(200px, 53.33vw, 400px);
  height: clamp(60px, 16vw, 120px);
  border-radius: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .c-button {
    width: clamp(110px, 13.89vw, 200px);
    height: clamp(30px, 4.167vw, 60px);
    border-radius: clamp(15px, 2vw, 30px);
  }
}
.c-button a {
  font-weight: bold;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  color: #0F0F0F;
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
  width: 100%;
  height: 100%;
  border: solid clamp(1px, 0.2667vw, 2px) #0F0F0F;
  border-radius: clamp(30px, 8vw, 60px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  z-index: 10;
  overflow: hidden;
  perspective: 1000;
}
@media screen and (min-width: 768px) {
  .c-button a {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    border: solid 1px #0F0F0F;
    border-radius: clamp(15px, 2vw, 30px);
  }
}
.c-button a::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 10rem;
  background-color: #0F0F0F;
  position: absolute;
  top: 100%;
  left: 30%;
  z-index: -1;
  transform: translate3d(0, 10%, 0);
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
  will-change: transform, opacity;
}
.c-button a:hover {
  opacity: 1;
  color: #ffffff;
}
.c-button a:hover::after {
  content: "";
  width: 100%;
  height: 20rem;
  left: -10%;
  transform: translate3d(0, -50%, 0) scale(1.5);
}
.c-button a:hover svg path {
  fill: #ffffff;
}
.c-button a svg {
  width: clamp(9px, 2.4vw, 18px);
  height: clamp(9px, 2.4vw, 18px);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: clamp(18.5px, 4.93vw, 37px);
}
@media screen and (min-width: 768px) {
  .c-button a svg {
    width: clamp(4.5px, 0.625vw, 9px);
    height: clamp(4.5px, 0.625vw, 9px);
    right: clamp(9.5px, 1.3vw, 19px);
  }
}
.c-button--white a {
  color: #ffffff;
  border: solid clamp(1px, 0.2667vw, 2px) #ffffff;
}
@media screen and (min-width: 768px) {
  .c-button--white a {
    border: solid 1px #ffffff;
  }
}
.c-button--white a::after {
  background-color: #ffffff;
}
.c-button--white a:hover {
  color: #0F0F0F;
  border: solid clamp(1px, 0.2667vw, 2px) #0F0F0F;
}
@media screen and (min-width: 768px) {
  .c-button--white a:hover {
    border: solid 1px #0F0F0F;
  }
}
.c-button--white a:hover svg path {
  fill: #0F0F0F;
}
.c-button--form {
  font-weight: bold;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  color: #0F0F0F;
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
  border: solid clamp(1px, 0.2667vw, 2px) #0F0F0F;
  border-radius: clamp(30px, 8vw, 60px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  z-index: 10;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-button--form {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    border: solid 1px #0F0F0F;
    border-radius: clamp(15px, 2vw, 30px);
    width: clamp(110px, 15.2778vw, 220px);
  }
}
.c-button--form::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 10rem;
  background-color: #0F0F0F;
  position: absolute;
  top: 100%;
  left: 30%;
  z-index: -1;
  transform: translate3d(0, 10%, 0);
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-button--form:hover {
  opacity: 1;
  color: #ffffff;
}
.c-button--form:hover::after {
  content: "";
  width: 100%;
  height: 20rem;
  left: -10%;
  transform: translate3d(0, -50%, 0) scale(1.5);
}
@media screen and (min-width: 768px) {
  .c-button--form:hover::after {
    height: 15rem;
  }
}
.c-button--form:hover svg path {
  fill: #ffffff;
}
.c-button--form svg {
  width: clamp(9px, 2.4vw, 18px);
  height: clamp(9px, 2.4vw, 18px);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: clamp(18.5px, 4.93vw, 37px);
}
@media screen and (min-width: 768px) {
  .c-button--form svg {
    width: clamp(4.5px, 0.625vw, 9px);
    height: clamp(4.5px, 0.625vw, 9px);
    right: clamp(9.5px, 1.3vw, 19px);
  }
}
@media screen and (min-width: 768px) {
  .c-button--wide {
    width: clamp(120px, 16.667vw, 240px);
  }
}

.c-title h2 {
  font-size: clamp(4rem, 10.667vw, 8rem);
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  letter-spacing: 0.3em;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .c-title h2 {
    line-height: normal;
    font-size: clamp(20px, 2.778vw, 40px);
  }
}
.c-title h2 span {
  line-height: normal;
  letter-spacing: 0;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(2rem, 5.33vw, 4rem);
  font-weight: bold;
  display: block;
  margin-block-start: clamp(2rem, 5.33vw, 4rem);
}
@media screen and (min-width: 768px) {
  .c-title h2 span {
    font-size: clamp(1rem, 1.389vw, 2rem);
    margin-block-start: clamp(5px, 0.694vw, 10px);
  }
}
@media screen and (min-width: 768px) {
  .c-title h2.is-single {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.778vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .c-title h2.is-single span {
    margin-block-start: 0;
    display: inline;
  }
}
.c-title--white h2 {
  color: #ffffff;
}
.c-title--top h2 {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-title--top h2 {
    font-size: clamp(2.5rem, 3.47vw, 5rem);
  }
}
@media screen and (min-width: 768px) {
  .c-title--topSmaller h2 {
    font-size: clamp(2rem, 2.778vw, 4rem);
  }
}
@media screen and (min-width: 768px) {
  .c-title--complete h2 {
    font-size: clamp(1.5rem, 2.083vw, 3rem);
  }
}

.c-loader {
  background-color: #ffffff;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  z-index: 999999;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.c-loader__image {
  animation: fadeOut 0.3s linear 3s forwards;
}

#animation {
  animation: wipe 3s ease forwards;
}

.c-breadcrumb {
  text-align: right;
}
.c-breadcrumb__inner > span {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.c-breadcrumb__inner > span > span {
  padding-inline: 20px;
}
.c-breadcrumb__inner > span > span:first-child {
  padding-inline-start: 0;
}
.c-breadcrumb__inner > span > span.breadcrumb_last {
  padding-inline-end: 0;
}
.c-breadcrumb--white {
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .c-works-item {
    width: clamp(310px, 43.056vw, 620px);
  }
}
.c-works-item:nth-of-type(4n + 2) {
  margin-inline-start: auto;
}
@media screen and (min-width: 768px) {
  .c-works-item:nth-of-type(4n + 2), .c-works-item:nth-of-type(4n + 3) {
    width: clamp(230px, 31.94vw, 460px);
  }
  .c-works-item:nth-of-type(4n + 2) .c-works-item__info, .c-works-item:nth-of-type(4n + 3) .c-works-item__info {
    padding-inline: clamp(5px, 0.694vw, 10px);
    margin-block-start: clamp(15px, 2.08vw, 30px);
  }
  .c-works-item:nth-of-type(4n + 2) .c-works-item__itemTitle, .c-works-item:nth-of-type(4n + 3) .c-works-item__itemTitle {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
  .c-works-item:nth-of-type(4n + 2) .c-works-item__labels, .c-works-item:nth-of-type(4n + 3) .c-works-item__labels {
    gap: clamp(5px, 0.694vw, 10px);
  }
  .c-works-item:nth-of-type(4n + 2) .c-works-item__category a, .c-works-item:nth-of-type(4n + 3) .c-works-item__category a {
    font-size: clamp(0.9rem, 0.83vw, 1.2rem);
    padding: 0 clamp(10px, 1.389vw, 20px);
    height: clamp(12px, 1.667vw, 24px);
    display: grid;
    place-items: center;
  }
  .c-works-item:nth-of-type(4n + 2) .c-works-item__year p, .c-works-item:nth-of-type(4n + 3) .c-works-item__year p {
    font-size: clamp(0.9rem, 0.83vw, 1.2rem);
    padding: 0 clamp(10px, 1.389vw, 20px);
    height: clamp(12px, 1.667vw, 24px);
    display: grid;
    place-items: center;
  }
}
.c-works-item img {
  border-radius: clamp(20px, 5.33vw, 40px);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-works-item img {
    border-radius: clamp(10px, 1.389vw, 20px);
  }
}
.c-works-item__info {
  margin-block-start: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .c-works-item__info {
    padding-inline: clamp(10px, 1.389vw, 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block-start: clamp(20px, 2.778vw, 40px);
  }
}
.c-works-item__itemTitle {
  font-size: clamp(2rem, 5.33vw, 4rem);
  font-weight: 600;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-works-item__itemTitle {
    font-size: clamp(1rem, 1.389vw, 2rem);
  }
}
.c-works-item__labels {
  margin-block-start: clamp(15px, 4vw, 30px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(10px, 2.667vw, 20px);
}
@media screen and (min-width: 768px) {
  .c-works-item__labels {
    margin-block-start: 0;
    gap: clamp(7px, 0.972vw, 14px);
  }
}
.c-works-item__category {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(10px, 2.667vw, 20px);
}
@media screen and (min-width: 768px) {
  .c-works-item__category {
    flex-direction: row;
    flex-wrap: wrap;
    justify-items: flex-end;
    gap: clamp(7px, 0.972vw, 14px);
  }
}
.c-works-item__category a {
  border-radius: clamp(20px, 5.33vw, 40px);
  padding: 0 clamp(25px, 6.667vw, 50px);
  display: block;
  text-align: center;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  background-color: #C4FF40;
  font-weight: bold;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  height: clamp(26px, 3.61vw, 52px);
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .c-works-item__category a {
    border-radius: clamp(15px, 2.08vw, 30px);
    font-size: clamp(1.1rem, 0.972vw, 1.4rem);
    padding: 0 clamp(15px, 2.08vw, 30px);
    height: clamp(15px, 2.08vw, 30px);
  }
}
.c-works-item__year p {
  color: #ffffff;
  padding: 0 clamp(25px, 6.667vw, 50px);
  border: solid 1px #ffffff;
  border-radius: clamp(20px, 5.33vw, 40px);
  text-align: center;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  height: clamp(26px, 3.61vw, 52px);
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .c-works-item__year p {
    border-radius: clamp(15px, 2.08vw, 30px);
    padding: 0 clamp(15px, 2.08vw, 30px);
    font-size: clamp(1.1rem, 0.972vw, 1.4rem);
    height: clamp(15px, 2.08vw, 30px);
  }
}

.c-pagination .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 1.33vw, 10px);
}
@media screen and (min-width: 768px) {
  .c-pagination .wp-pagenavi {
    gap: clamp(5px, 0.694vw, 10px);
  }
}
.c-pagination .wp-pagenavi span, .c-pagination .wp-pagenavi a {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  width: clamp(40px, 10.67vw, 80px);
  height: clamp(40px, 10.67vw, 80px);
  border-radius: 50%;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
  display: grid;
  place-items: center;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-pagination .wp-pagenavi span, .c-pagination .wp-pagenavi a {
    width: clamp(20px, 2.778vw, 40px);
    height: clamp(20px, 2.778vw, 40px);
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.c-pagination .wp-pagenavi span.page, .c-pagination .wp-pagenavi a.page {
  background-color: #0F0F0F;
}
.c-pagination .wp-pagenavi span.is-notActive {
  opacity: 0.3;
}
.c-pagination .wp-pagenavi span.current {
  background-color: rgba(255, 255, 255, 0.1);
}
.c-pagination .wp-pagenavi .previouspostslink, .c-pagination .wp-pagenavi .nextpostslink {
  border: solid clamp(1px, 0.267vw, 2px) #ffffff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-pagination .wp-pagenavi .previouspostslink, .c-pagination .wp-pagenavi .nextpostslink {
    border: solid 1px #ffffff;
  }
}
.c-pagination .wp-pagenavi .previouspostslink::before, .c-pagination .wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: clamp(9px, 2.4vw, 18px);
  height: clamp(8px, 2.13vw, 16px);
}
@media screen and (min-width: 768px) {
  .c-pagination .wp-pagenavi .previouspostslink::before, .c-pagination .wp-pagenavi .nextpostslink::before {
    width: clamp(5px, 0.694vw, 10px);
    height: clamp(4px, 0.556vw, 8px);
  }
}
.c-pagination .wp-pagenavi .previouspostslink {
  margin-inline-end: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .c-pagination .wp-pagenavi .previouspostslink {
    margin-inline-end: clamp(5px, 0.694vw, 10px);
  }
}
.c-pagination .wp-pagenavi .previouspostslink::before {
  content: "";
  background-image: url(../images/common/arrow-prev.svg);
}
.c-pagination .wp-pagenavi .nextpostslink {
  margin-inline-start: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .c-pagination .wp-pagenavi .nextpostslink {
    margin-inline-start: clamp(5px, 0.694vw, 10px);
  }
}
.c-pagination .wp-pagenavi .nextpostslink::before {
  content: "";
  background-image: url(../images/common/arrow-next.svg);
}
.c-pagination .wp-pagenavi a {
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.c-pagination .wp-pagenavi a::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 10rem;
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 30%;
  z-index: -1;
  transform: translate3d(0, 10%, 0);
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-pagination .wp-pagenavi a:hover {
  opacity: 1;
  color: #0F0F0F;
  border: solid clamp(1px, 0.267vw, 2px) #0F0F0F;
}
.c-pagination .wp-pagenavi a:hover::after {
  content: "";
  width: 100%;
  height: 20rem;
  left: -10%;
  transform: translate3d(0, -50%, 0) scale(1.5);
}
@media screen and (min-width: 768px) {
  .c-pagination .wp-pagenavi a:hover::after {
    height: 15rem;
  }
}
.c-pagination .wp-pagenavi a.nextpostslink:hover::before {
  content: "";
  background-image: url(../images/common/arrow-next-black.svg);
}
.c-pagination .wp-pagenavi a.previouspostslink:hover::before {
  content: "";
  background-image: url(../images/common/arrow-prev-black.svg);
}
.c-pagination--white .wp-pagenavi span, .c-pagination--white .wp-pagenavi a {
  color: #0F0F0F;
}
@media screen and (min-width: 768px) {
  .c-pagination--white .wp-pagenavi span, .c-pagination--white .wp-pagenavi a {
    width: clamp(20px, 2.778vw, 40px);
    height: clamp(20px, 2.778vw, 40px);
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.c-pagination--white .wp-pagenavi span.page, .c-pagination--white .wp-pagenavi a.page {
  background-color: #ffffff;
}
.c-pagination--white .wp-pagenavi span.current {
  color: #ffffff;
  background-color: rgba(15, 15, 15, 0.1);
}
.c-pagination--white .wp-pagenavi .previouspostslink, .c-pagination--white .wp-pagenavi .nextpostslink {
  border: solid clamp(1px, 0.267vw, 2px) #0F0F0F;
}
@media screen and (min-width: 768px) {
  .c-pagination--white .wp-pagenavi .previouspostslink, .c-pagination--white .wp-pagenavi .nextpostslink {
    border: solid 1px #0F0F0F;
  }
}
.c-pagination--white .wp-pagenavi .previouspostslink::before {
  content: "";
  background-image: url(../images/common/arrow-prev-black.svg);
}
.c-pagination--white .wp-pagenavi .nextpostslink::before {
  content: "";
  background-image: url(../images/common/arrow-next-black.svg);
}
.c-pagination--white .wp-pagenavi a::after {
  background-color: #0F0F0F;
}
.c-pagination--white .wp-pagenavi a:hover {
  color: #ffffff;
  border: solid clamp(1px, 0.267vw, 2px) #ffffff;
}
.c-pagination--white .wp-pagenavi a.nextpostslink:hover::before {
  content: "";
  background-image: url(../images/common/arrow-next.svg);
}
.c-pagination--white .wp-pagenavi a.previouspostslink:hover::before {
  content: "";
  background-image: url(../images/common/arrow-prev.svg);
}

@media screen and (min-width: 768px) {
  .c-blog-item__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: clamp(29.5px, 4vw, 59px);
         column-gap: clamp(29.5px, 4vw, 59px);
    row-gap: clamp(30px, 4.167vw, 60px);
  }
}
.c-blog-item__item {
  margin-block-start: clamp(60px, 16vw, 120px);
}
@media screen and (min-width: 768px) {
  .c-blog-item__item {
    margin-block-start: 0;
    max-width: 394px;
  }
}
.c-blog-item__item:first-child {
  margin-block-start: 0;
}
.c-blog-item__image a:hover {
  opacity: 1;
}
.c-blog-item__image a picture {
  overflow: hidden;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .c-blog-item__image a picture {
    border-radius: clamp(7px, 0.97vw, 14px);
  }
}
.c-blog-item__image a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: clamp(20px, 5.33vw, 40px);
  transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-blog-item__image a picture img {
    border-radius: clamp(7px, 0.97vw, 14px);
  }
}
.c-blog-item__image a picture img:hover {
  transform: scale(1.1);
}
.c-blog-item__content {
  margin-block-start: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .c-blog-item__content {
    margin-block-start: clamp(15px, 2vw, 30px);
  }
}
.c-blog-item__itemTitle {
  font-weight: 500;
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .c-blog-item__itemTitle {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
@media screen and (min-width: 768px) {
  .c-blog-item__itemTitle--related {
    font-size: clamp(1.2rem, 1.389vw, 2rem);
    margin-block-start: clamp(5px, 0.694vw, 10px);
  }
}
.c-blog-item__labels {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 2.667vw, 20px);
  margin-block-start: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .c-blog-item__labels {
    gap: clamp(7px, 0.97vw, 14px);
    margin-block-start: clamp(15px, 2.08vw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .c-blog-item__labels--related {
    display: none;
  }
}
.c-blog-item__category {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(10px, 2.667vw, 20px);
}
@media screen and (min-width: 768px) {
  .c-blog-item__category {
    flex-direction: row;
    flex-wrap: wrap;
    justify-items: flex-end;
    gap: clamp(7px, 0.97vw, 14px);
  }
}
.c-blog-item__category a {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  padding: clamp(5px, 2.53vw, 10px) clamp(25px, 6.667vw, 50px);
  text-align: center;
  color: #ffffff;
  display: block;
  font-weight: bold;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  background-color: #0F0F0F;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .c-blog-item__category a {
    font-size: clamp(7px, 0.97vw, 14px);
    border-radius: clamp(15px, 2.08vw, 30px);
    padding: clamp(3.5px, 0.486vw, 7px) clamp(15px, 2.08vw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .c-blog-item__category--related {
    font-size: clamp(1rem, 0.90278vw, 1.3rem);
    display: inline-block !important;
    background-color: #0F0F0F;
    color: #ffffff;
    font-weight: bold;
    padding: clamp(4px, 0.556vw, 8px) clamp(21.75px, 3.02vw, 43.5px);
    margin-block-start: clamp(1.5rem, 2.083vw, 3rem);
    border-radius: clamp(10px, 1.3889vw, 20px);
  }
}
.c-blog-item__date {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  padding: clamp(5px, 2.53vw, 10px) clamp(25px, 6.667vw, 50px);
  text-align: center;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  background-color: #F6F6F6;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .c-blog-item__date {
    font-size: clamp(7px, 0.97vw, 14px);
    border-radius: clamp(15px, 2.08vw, 30px);
    padding: clamp(3.5px, 0.486vw, 7px) clamp(15px, 2.08vw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .c-blog-item__date--related {
    background: none;
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    border-radius: 0;
    text-align: left;
    padding: 0;
    margin-block-start: clamp(15px, 2.083vw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .c-blog-item__date--none {
    display: none;
  }
}

.c-stalker {
  background-color: #ffffff;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  left: -40px;
  top: -40px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.3s ease;
  z-index: 999;
  mix-blend-mode: difference;
}

.c-page-transition.is-appear {
  background-color: #0F0F0F;
  content: "";
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  animation-name: pageTransition;
  animation-duration: 1.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
}

.c-page-transition .l-global-container {
  opacity: 1;
  pointer-events: auto;
}

.c-floating-banner {
  right: 0;
  width: clamp(279.5px, 74.53vw, 559px);
  z-index: 11;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  left: auto !important;
}
@media screen and (min-width: 768px) {
  .c-floating-banner {
    width: 300px;
  }
}
@media screen and (min-width: 992px) {
  .c-floating-banner {
    width: clamp(330px, 29.167vw, 420px);
  }
}
.c-floating-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.c-floating-banner__wrapper {
  border-radius: clamp(150px, 20vw, 300px) 0 0 clamp(150px, 20vw, 300px);
  border: solid clamp(1px, 0.267vw, 2px) #0F0F0F;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.62);
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-inline-end: clamp(24.5px, 6.53vw, 49px);
}
@media screen and (min-width: 768px) {
  .c-floating-banner__wrapper {
    border-radius: clamp(30px, 4.1667vw, 60px) 0 0 clamp(30px, 4.1667vw, 60px);
    border: solid 1px #0F0F0F;
    padding-inline-end: clamp(29.5px, 4.097vw, 59px);
  }
}
.c-floating-banner__wrapper picture {
  width: clamp(111.5px, 29.73vw, 223px);
  height: clamp(60px, 16vw, 120px);
  position: absolute;
  left: calc(clamp(17px, 4.533vw, 34px) * -1);
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-floating-banner__wrapper picture {
    width: clamp(62.5px, 8.68vw, 125px);
    height: clamp(33.5px, 4.65vw, 67px);
    left: calc(clamp(16px, 2.22vw, 32px) * -1);
  }
}
.c-floating-banner__wrapper picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-floating-banner__text {
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  line-height: 1.64;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  padding-block: clamp(22px, 5.867vw, 44px);
}
@media screen and (min-width: 768px) {
  .c-floating-banner__text {
    padding-block: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-floating-banner__text--top {
    font-size: clamp(1.2rem, 1.04vw, 1.5rem);
    line-height: normal;
    padding-block-start: clamp(14px, 1.944vw, 28px);
  }
}
@media screen and (min-width: 768px) {
  .c-floating-banner__text--bottom {
    font-size: clamp(1rem, 0.83vw, 1.2rem);
    line-height: normal;
    padding-block-end: clamp(14px, 1.944vw, 28px);
  }
}

.p-mv {
  position: relative;
  padding-block: clamp(142px, 37.867vw, 284px) clamp(150px, 40vw, 300px);
}
.p-mv::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/mv-bg-rotate@2x.webp);
  background-position: center;
  width: 632vw;
  height: 690vw;
  left: -150.8vw;
  top: -100vw;
  animation: bgRotate 40s linear 0s infinite;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-mv::after {
    width: 243vw;
    height: 273.26vw;
    left: -52.778vw;
    top: -43.54vw;
  }
}
@media screen and (min-width: 768px) {
  .p-mv {
    padding-inline: 2.778vw;
    padding-block: clamp(145px, 20.139vw, 290px) clamp(121px, 16.8vw, 242px);
  }
}
.p-mv__inner {
  padding-inline-start: clamp(40px, 10.667vw, 80px);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    max-width: clamp(423.5px, 58.8vw, 847px);
    margin-inline: auto;
    padding-inline-start: 0;
    overflow: visible;
  }
}
.p-mv__inner::before {
  content: "";
  width: clamp(423px, 112.8vw, 846px);
  height: clamp(272px, 72.53vw, 544px);
  background-image: url(../images/top/mv-bg-icon-sp.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: clamp(38px, 10.13vw, 76px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  filter: blur(24px);
  opacity: 0;
  transition: 2s 0s ease opacity, 2s 0s ease filter;
}
@media screen and (min-width: 768px) {
  .p-mv__inner::before {
    background-image: url(../images/top/mv-bg-icon-pc.svg);
    top: calc(clamp(105px, 14.58vw, 210px) * -1);
    width: clamp(470px, 65.27vw, 940px);
    height: clamp(302px, 41.94vw, 604px);
  }
}
.p-mv__inner.is-show::before {
  filter: blur(0px);
  opacity: 1;
}
.p-mv__copy {
  position: relative;
  z-index: 2;
  color: #0F0F0F;
  font-weight: 700;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  letter-spacing: 0.3em;
  line-height: 1.625;
  font-size: clamp(3.2rem, 8.533vw, 6.4rem);
}
@media screen and (min-width: 768px) {
  .p-mv__copy {
    line-height: 1.5;
    font-size: clamp(2.2rem, 3.0556vw, 4.4rem);
  }
}
.p-mv__copy > .is-first, .p-mv__copy > .is-second, .p-mv__copy > .is-third {
  overflow: hidden;
  display: inline-block;
}
.p-mv__copy > .is-first > span, .p-mv__copy > .is-second > span, .p-mv__copy > .is-third > span {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 0.6s 1.5s ease-out;
}
.p-mv__copy > .is-first > span.is-show, .p-mv__copy > .is-second > span.is-show, .p-mv__copy > .is-third > span.is-show {
  transform: translateY(0);
}
.p-mv__copy > .is-second > span {
  transition: transform 0.6s 2s ease-out;
}
.p-mv__copy > .is-third > span {
  transition: transform 0.6s 2.5s ease-out;
}
.p-mv__textWrapper {
  position: relative;
  z-index: 2;
  padding-inline-end: clamp(40px, 10.667vw, 80px);
  margin-block-start: clamp(70px, 18.667vw, 140px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity 1s 3.5s ease, visibility 1s 3.5s ease, transform 1s 3.5s ease;
}
@media screen and (min-width: 768px) {
  .p-mv__textWrapper {
    transition: opacity 1s 3s ease, visibility 1s 3s ease, transform 1s 3s ease;
    margin-block-start: clamp(72.5px, 9.72vw, 145px);
    padding-inline-end: 0;
  }
}
.p-mv__textWrapper.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.p-mv__text > p {
  color: #C4C4C4;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  letter-spacing: 0.2em;
  line-height: 2.47;
  font-weight: 700;
  font-size: clamp(1.7rem, 4.53vw, 3.4rem);
}
@media screen and (min-width: 768px) {
  .p-mv__text > p {
    font-size: clamp(1rem, 1.389vw, 2rem);
    line-height: 3.5;
  }
}
.p-mv__text:last-child {
  margin-block-start: clamp(40px, 10.67vw, 80px);
}
@media screen and (min-width: 768px) {
  .p-mv__text:last-child {
    margin-block-start: clamp(30px, 4.1667vw, 60px);
  }
}
.p-mv__button {
  margin-inline-end: clamp(40px, 10.667vw, 80px);
  margin-block-start: clamp(70px, 18.667vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-mv__button {
    margin-block-start: clamp(30px, 4.1667vw, 60px);
  }
}

.p-works {
  background-color: #0F0F0F;
  padding-block: clamp(150px, 40vw, 300px);
}
@media screen and (min-width: 768px) {
  .p-works {
    padding-block: clamp(100px, 13.889vw, 200px) clamp(102.25px, 14.2vw, 204.5px);
  }
}
@media screen and (min-width: 768px) {
  .p-works__inner {
    padding-inline: 0;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-works__wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-works__title {
    position: sticky;
    top: 0;
    max-width: 1300px;
    margin-inline: auto;
  }
}
.p-works__content {
  margin-block-start: clamp(90px, 24vw, 180px);
}
@media screen and (min-width: 768px) {
  .p-works__content {
    padding-left: 18.75vw;
    margin-block-start: clamp(50px, 6.94vw, 100px);
  }
}
@media screen and (min-width: 768px) {
  .p-works__list {
    display: flex;
    align-items: center;
  }
}
.p-works__item {
  margin-block-end: clamp(70px, 18.667vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-works__item {
    display: flex;
    align-items: flex-start;
    gap: clamp(15px, 2vw, 30px);
    margin-block-end: 0;
  }
}
.p-works__item--button {
  width: clamp(150px, 20.83vw, 300px);
  height: clamp(150px, 20.83vw, 300px);
}
.p-works__item--button a {
  font-weight: bold;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-works__item--button a {
    background-color: #161616;
    display: flex;
    align-items: center;
    gap: clamp(9.5px, 1.3vw, 19px);
    justify-content: center;
    width: clamp(150px, 20.83vw, 300px);
    height: clamp(150px, 20.83vw, 300px);
    color: #ffffff;
    border-radius: 50%;
    font-size: clamp(1rem, 1.3889vw, 2rem);
    z-index: 10;
    overflow: hidden;
    position: relative;
    z-index: 10;
  }
  .p-works__item--button a::after {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    border-radius: 10rem;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 30%;
    z-index: -1;
    transform: translate3d(0, 10%, 0);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .p-works__item--button a:hover {
    opacity: 1;
    color: #0F0F0F;
  }
  .p-works__item--button a:hover::after {
    content: "";
    width: 100%;
    height: 50rem;
    left: -10%;
    transform: translate3d(0, -50%, 0) scale(1.5);
  }
  .p-works__item--button a:hover svg path {
    fill: #0F0F0F;
  }
}
@media screen and (min-width: 768px) {
  .p-works__sp {
    width: clamp(120px, 16.67vw, 240px);
  }
  .p-works__sp img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: clamp(10px, 1.389vw, 20px);
  }
}
@media screen and (min-width: 768px) {
  .p-works__pc {
    width: clamp(380px, 52.78vw, 760px);
  }
}
.p-works__pc img {
  border-radius: clamp(20px, 5.33vw, 40px);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-works__pc img {
    border-radius: clamp(10px, 1.389vw, 20px);
  }
}
.p-works__info {
  margin-block-start: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-works__info {
    padding-inline: clamp(10px, 1.389vw, 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block-start: clamp(20px, 2.778vw, 40px);
  }
}
.p-works__itemTitle {
  font-size: clamp(2rem, 5.33vw, 4rem);
  font-weight: 600;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-works__itemTitle {
    flex-shrink: 0;
    font-size: clamp(1rem, 1.389vw, 2rem);
  }
}
.p-works__labels {
  margin-block-start: clamp(15px, 4vw, 30px);
  display: flex;
  justify-content: flex-start;
  gap: clamp(10px, 2.667vw, 20px);
}
@media screen and (min-width: 768px) {
  .p-works__labels {
    margin-block-start: 0;
    gap: clamp(7px, 0.972vw, 14px);
  }
}
.p-works__category {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-direction: column;
  gap: clamp(10px, 2.667vw, 20px);
}
@media screen and (min-width: 768px) {
  .p-works__category {
    flex-direction: row;
    gap: clamp(7px, 0.972vw, 14px);
  }
}
.p-works__category a {
  border-radius: clamp(20px, 5.33vw, 40px);
  padding: 0 clamp(25px, 6.667vw, 50px);
  display: block;
  text-align: center;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  background-color: #C4FF40;
  font-weight: bold;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  height: clamp(26px, 3.61vw, 52px);
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .p-works__category a {
    border-radius: clamp(15px, 2.08vw, 30px);
    font-size: clamp(1.1rem, 0.972vw, 1.4rem);
    padding: 0 clamp(15px, 2.08vw, 30px);
    height: clamp(15px, 2.08vw, 30px);
  }
}
.p-works__year p {
  color: #ffffff;
  padding: clamp(5px, 1.33vw, 10px) clamp(25px, 6.667vw, 50px);
  border: solid 1px #ffffff;
  border-radius: clamp(20px, 5.33vw, 40px);
  text-align: center;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
}
@media screen and (min-width: 768px) {
  .p-works__year p {
    border-radius: clamp(15px, 2.08vw, 30px);
    padding: clamp(3.5px, 0.486vw, 7px) clamp(15px, 2.08vw, 30px);
    font-size: clamp(1.1rem, 0.972vw, 1.4rem);
  }
}

.p-how {
  padding-block: clamp(150px, 40vw, 300px);
  background-color: #F6F6F6;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-how {
    padding-block: clamp(3vh, 13.89vw, 20vh) clamp(25.5vh, 35.4vw, 51vh);
  }
}
@media screen and (min-width: 768px) {
  .p-how__inner {
    display: flex;
    align-items: flex-start;
    gap: clamp(70px, 9.72vw, 140px);
    justify-content: space-between;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-how__headlineOuter {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-how__headline {
    width: clamp(300px, 41.67vw, 600px);
  }
}
.p-how__text {
  margin-block-start: clamp(70px, 18.667vw, 140px);
  padding-inline-end: clamp(35px, 9.33vw, 70px);
}
@media screen and (min-width: 768px) {
  .p-how__text {
    padding-inline-end: 0;
    margin-block-start: clamp(40px, 5.556vw, 80px);
  }
}
.p-how__text p {
  line-height: 2.25;
  font-weight: 600;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-how__text p {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
@media screen and (min-width: 768px) {
  .p-how__wrapper {
    width: clamp(280px, 38.889vw, 560px);
    position: relative;
    z-index: 1;
  }
}
.p-how__steps {
  margin-block-start: clamp(70px, 18.667vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-how__steps {
    margin-block-start: 0;
  }
}
.p-how__item {
  margin-block-end: clamp(20px, 5.333vw, 40px);
  background-color: #ffffff;
  padding: clamp(70px, 18.667vw, 140px) clamp(20px, 5.33vw, 40px);
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-how__item {
    margin-block-end: clamp(10px, 1.389vw, 20px);
    padding: clamp(54px, 7.5vw, 108px) clamp(30px, 4.167vw, 60px) clamp(69px, 9.583vw, 138px) clamp(30px, 4.167vw, 60px);
    border-radius: clamp(10px, 1.389vw, 20px);
  }
}
.p-how__item:last-child {
  margin-block-end: 0;
}
.p-how__itemHeadline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-how__itemTitle h3 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-how__itemTitle h3 {
    font-size: clamp(1.5rem, 2.08vw, 3rem);
  }
}
.p-how__itemTitle h3 span {
  display: block;
  margin-block-end: clamp(10px, 2.667vw, 20px);
  font-weight: 400;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-how__itemTitle h3 span {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    margin-block-end: clamp(5px, 0.694vw, 10px);
  }
}
.p-how__icon--first, .p-how__icon--third {
  width: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-how__icon--first, .p-how__icon--third {
    width: clamp(80px, 11.11vw, 160px);
  }
}
.p-how__icon--second {
  width: clamp(60px, 16vw, 120px);
}
@media screen and (min-width: 768px) {
  .p-how__icon--second {
    width: clamp(60px, 8.33vw, 120px);
  }
}
.p-how__icon--fourth {
  width: clamp(68px, 18.13vw, 136px);
}
@media screen and (min-width: 768px) {
  .p-how__icon--fourth {
    width: clamp(68px, 9.44vw, 136px);
  }
}
.p-how__itemText {
  margin-block-start: clamp(40px, 10.667vw, 80px);
}
@media screen and (min-width: 768px) {
  .p-how__itemText {
    margin-block-start: clamp(25px, 3.472vw, 50px);
  }
}
.p-how__itemText p {
  font-weight: 500;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
  line-height: 2.25;
}
@media screen and (min-width: 768px) {
  .p-how__itemText p {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.p-how__logo {
  position: absolute;
  top: min(33.54vw, 48.3vh);
  left: 0;
  width: clamp(910px, 126.389vw, 1820px);
  height: clamp(105.5px, 14.65vw, 211px);
}
.p-how__logoSvg {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(910px, 126.389vw, 1820px);
  height: clamp(105.5px, 14.65vw, 211px);
}

.p-news {
  padding-block: clamp(150px, 40vw, 300px);
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding-block: clamp(100px, 13.89vw, 200px);
  }
}
.p-news__headline {
  padding-inline: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-news__headline {
    max-width: 1300px;
    margin-inline: auto;
    padding-inline: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.p-news__button {
  margin-inline-start: clamp(20px, 5.33vw, 40px);
  margin-block-start: clamp(70px, 18.667vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-news__button {
    margin: 0;
  }
}
.p-news__list {
  margin-block-start: clamp(70px, 18.667vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-news__list {
    margin-block-start: clamp(20px, 2.778vw, 40px);
  }
}
.p-news__item {
  background: transparent;
  z-index: 1;
  transition: 0.3s;
  position: relative;
}
.p-news__item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #0F0F0F;
  transform-origin: 50% 100%;
  transform: scaleY(0);
  transition: transform ease 0.3s;
}
.p-news__item::before:hover {
  transform: scaleY(1);
}
.p-news__item:hover {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-news__item:hover .p-news__content {
    margin-inline-start: clamp(10px, 1.389vw, 20px);
  }
}
@media screen and (min-width: 768px) {
  .p-news__item:hover .p-news__arrow {
    padding-inline-end: clamp(10px, 1.389vw, 20px);
  }
}
.p-news__item:hover path {
  fill: #ffffff;
}
.p-news__item:hover::before {
  content: "";
  transform: scaleY(1);
}
.p-news__item a {
  display: block;
  padding-block: clamp(40px, 10.667vw, 80px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news__item a {
    padding-block: clamp(20px, 2.778vw, 40px);
  }
}
.p-news__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0F0F0F;
}
.p-news__item a:hover {
  opacity: 1;
}
.p-news__item:first-child a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0F0F0F;
}
@media screen and (min-width: 768px) {
  .p-news__wrapper {
    max-width: 1300px;
    margin-inline: auto;
    position: relative;
  }
}
.p-news__content {
  padding-inline: clamp(20px, 5.33vw, 40px) clamp(65px, 17.33vw, 130px);
  transition: margin-inline-start 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news__content {
    padding-inline: clamp(25px, 3.472vw, 50px) clamp(50px, 6.94vw, 100px);
    display: flex;
    align-items: center;
    gap: clamp(30px, 4.167vw, 60px);
  }
}
.p-news__date {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-news__date {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.p-news__itemTitle {
  margin-block-start: clamp(15px, 4vw, 30px);
  font-weight: 500;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-news__itemTitle {
    margin-block-start: 0;
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.p-news__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(20px, 5.33vw, 40px);
  transition: padding-inline-end 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news__arrow {
    right: clamp(25px, 3.472vw, 50px);
  }
}
.p-news__arrow svg {
  width: clamp(9px, 2.4vw, 18px);
  height: clamp(9px, 2.4vw, 18px);
}
@media screen and (min-width: 768px) {
  .p-news__arrow svg {
    width: clamp(4.5px, 0.625vw, 9px);
    height: clamp(4.5px, 0.625vw, 9px);
  }
}

.p-blog {
  padding-block-end: clamp(150px, 40vw, 300px);
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-blog {
    padding-block-end: clamp(100px, 13.89vw, 200px);
  }
}
@media screen and (min-width: 768px) {
  .p-blog__headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.p-blog__button {
  margin-block-start: clamp(70px, 18.667vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-blog__button {
    margin-block-start: 0;
  }
}
.p-blog__list {
  margin-block-start: clamp(63px, 16.8vw, 126px);
}
@media screen and (min-width: 768px) {
  .p-blog__list {
    margin-block-start: clamp(20px, 2.778vw, 40px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: clamp(29.5px, 4vw, 59px);
         column-gap: clamp(29.5px, 4vw, 59px);
    row-gap: clamp(30px, 4.167vw, 60px);
  }
}
.p-blog__item {
  margin-block-start: clamp(60px, 16vw, 120px);
}
@media screen and (min-width: 768px) {
  .p-blog__item {
    margin-block-start: 0;
    max-width: 394px;
  }
}
.p-blog__item:first-child {
  margin-block-start: 0;
}
.p-blog__image a:hover {
  opacity: 1;
}
.p-blog__image a picture {
  overflow: hidden;
  border-radius: clamp(10px, 2.667vw, 20px);
}
@media screen and (min-width: 768px) {
  .p-blog__image a picture {
    border-radius: clamp(7px, 0.97vw, 14px);
  }
}
.p-blog__image a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: clamp(10px, 2.667vw, 20px);
  transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-blog__image a picture img {
    border-radius: clamp(7px, 0.97vw, 14px);
  }
}
.p-blog__image a picture img:hover {
  transform: scale(1.1);
}
.p-blog__content {
  margin-block-start: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-blog__content {
    margin-block-start: clamp(15px, 2vw, 30px);
  }
}
.p-blog__itemTitle {
  font-weight: 500;
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-blog__itemTitle {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.p-blog__labels {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(10px, 2.667vw, 20px);
  margin-block-start: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .p-blog__labels {
    gap: clamp(7px, 0.97vw, 14px);
    margin-block-start: clamp(15px, 2.08vw, 30px);
  }
}
.p-blog__category {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-direction: column;
  gap: clamp(10px, 2.667vw, 20px);
}
@media screen and (min-width: 768px) {
  .p-blog__category {
    flex-direction: row;
    gap: clamp(7px, 0.97vw, 14px);
  }
}
.p-blog__category a {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  padding: clamp(5px, 2.53vw, 10px) clamp(25px, 6.667vw, 50px);
  text-align: center;
  color: #ffffff;
  display: block;
  font-weight: bold;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  background-color: #0F0F0F;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-blog__category a {
    font-size: clamp(7px, 0.97vw, 14px);
    border-radius: clamp(15px, 2.08vw, 30px);
    padding: clamp(3.5px, 0.486vw, 7px) clamp(15px, 2.08vw, 30px);
  }
}
.p-blog__date {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  padding: clamp(5px, 2.53vw, 10px) clamp(25px, 6.667vw, 50px);
  text-align: center;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  background-color: #F6F6F6;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-blog__date {
    font-size: clamp(7px, 0.97vw, 14px);
    border-radius: clamp(15px, 2.08vw, 30px);
    padding: clamp(3.5px, 0.486vw, 7px) clamp(15px, 2.08vw, 30px);
  }
}

.p-about-fv {
  position: relative;
  padding-block: clamp(108px, 28.79vw, 216px) clamp(150px, 40vw, 300px);
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-about-fv {
    padding-block: clamp(107px, 14.86vw, 214px) clamp(100px, 13.89vw, 200px);
  }
}
@media screen and (min-width: 768px) {
  .p-about-fv__title {
    margin-block-end: clamp(20px, 2.78vw, 40px);
  }
}
.p-about-fv__logo {
  margin-block-start: clamp(68px, 18.13vw, 136px);
  width: clamp(335px, 89.3vw, 670px);
  height: clamp(136.5px, 36.4vw, 273px);
  transform: translateX(calc(clamp(3.5px, 0.93vw, 7px) * -1));
}
@media screen and (min-width: 768px) {
  .p-about-fv__logo {
    margin-block-start: clamp(70px, 9.72vw, 140px);
    transform: translate(0);
    width: clamp(650px, 90.27vw, 1300px);
    height: clamp(75px, 10.4vw, 150px);
  }
}
.p-about-fv__logo img {
  width: 100%;
  height: 100%;
}
.p-about-fv__wrapper {
  margin-block-start: clamp(68px, 18.13vw, 136px);
}
@media screen and (min-width: 768px) {
  .p-about-fv__wrapper {
    display: flex;
    justify-content: space-between;
    padding-inline: clamp(70px, 9.72vw, 140px);
  }
}
.p-about-fv__text {
  margin-block-start: clamp(40px, 10.67vw, 80px);
}
@media screen and (min-width: 768px) {
  .p-about-fv__text {
    margin-block-start: clamp(30px, 4.1667vw, 60px);
  }
}
.p-about-fv__text:first-child {
  margin-block-start: 0;
}
@media screen and (min-width: 768px) {
  .p-about-fv__text:first-child {
    margin-block-start: 0;
  }
}
.p-about-fv__text p {
  color: #C4C4C4;
  font-weight: 700;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-size: clamp(1.7rem, 4.53vw, 3.4rem);
  line-height: 2.47;
  font-weight: 600;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-about-fv__text p {
    font-size: clamp(1.1rem, 1.389vw, 2rem);
    line-height: 3;
  }
}
@media screen and (min-width: 768px) {
  .p-about-fv__text p .is-small {
    font-size: clamp(1rem, 0.83vw, 1.2rem);
  }
}
@media screen and (min-width: 768px) {
  .p-about-fv__vertical p {
    text-orientation: mixed;
    writing-mode: vertical-rl;
    font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: clamp(1.5rem, 2.08vw, 3rem);
  }
}

.p-capable {
  background-color: #0F0F0F;
  padding-block: clamp(150px, 40vw, 300px);
}
@media screen and (min-width: 768px) {
  .p-capable {
    padding-block: clamp(100px, 13.89vw, 200px);
  }
}
@media screen and (min-width: 768px) {
  .p-capable__headline {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.p-capable__text {
  margin-block-start: clamp(70px, 18.67vw, 140px);
  margin-inline-end: calc(clamp(10px, 2.66vw, 20px) * -1);
}
@media screen and (min-width: 768px) {
  .p-capable__text {
    margin-block-start: 0;
    margin-inline-end: 0;
    margin-block-end: clamp(2.5px, 0.347vw, 5px);
    width: clamp(350px, 48.61vw, 700px);
  }
}
.p-capable__text p {
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
  line-height: 1.9375;
  font-weight: 600;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-capable__text p {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    line-height: 2.25;
  }
}
.p-capable__list {
  margin-block-start: clamp(70px, 18.67vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-capable__list {
    margin-block-start: clamp(40px, 5.56vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(10px, 1.389vw, 20px);
  }
}
.p-capable__item {
  padding: clamp(80px, 21.3vw, 160px) clamp(30px, 8vw, 60px);
  margin-block-end: clamp(20px, 5.3vw, 40px);
  position: relative;
  background-color: #ffffff;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-capable__item {
    height: clamp(220px, 30.56vw, 440px);
    padding: clamp(50px, 6.94vw, 100px) clamp(30px, 4.167vw, 60px) 0;
    margin-block-end: 0;
    border-radius: clamp(10px, 1.389vw, 20px);
  }
}
.p-capable__item:last-child {
  margin-block-end: 0;
}
.p-capable__number {
  position: absolute;
  top: clamp(10px, 2.67vw, 20px);
  left: clamp(10px, 2.67vw, 20px);
  width: clamp(30px, 8vw, 60px);
  height: clamp(30px, 8vw, 60px);
  border-radius: 50%;
  background-color: #C4FF40;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .p-capable__number {
    top: clamp(5px, 0.694vw, 10px);
    left: clamp(5px, 0.694vw, 10px);
    width: clamp(20px, 2.778vw, 40px);
    height: clamp(20px, 2.778vw, 40px);
  }
}
.p-capable__number span {
  font-size: clamp(1.2rem, 3.2vw, 2.4rem);
  font-weight: bold;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-capable__number span {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.p-capable__itemTitle {
  font-weight: bold;
  font-size: clamp(2.6rem, 6.93vw, 5.2rem);
}
@media screen and (min-width: 768px) {
  .p-capable__itemTitle {
    font-size: clamp(1.3rem, 1.8vw, 2.6rem);
  }
}
.p-capable__itemText {
  margin-block-start: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-capable__itemText {
    margin-block-start: clamp(20px, 2.78vw, 40px);
  }
}
.p-capable__itemText p {
  font-weight: 500;
  line-height: 1.9375;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-capable__itemText p {
    line-height: 2.25;
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}

.p-info {
  padding-block-start: clamp(150px, 40vw, 300px);
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-info {
    padding-block-start: clamp(100px, 13.89vw, 200px);
  }
}
.p-info__item {
  padding-block: clamp(40px, 10.67vw, 80px) clamp(150px, 40vw, 300px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-info__item {
    display: flex;
    justify-content: space-between;
    padding-block: clamp(20px, 2.778vw, 40px) clamp(100px, 13.89vw, 200px);
  }
}
.p-info__item::before {
  content: "";
  width: 100%;
  height: clamp(1px, 0.267vw, 2px);
  background-color: #0F0F0F;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-info__item::before {
    height: 1px;
  }
}
.p-info__title h2 {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
}
@media screen and (min-width: 768px) {
  .p-info__title h2 {
    font-size: clamp(1.5rem, 2.08vw, 3rem);
  }
}
.p-info__profileWrapper {
  margin-block-start: clamp(100px, 26.67vw, 200px);
}
@media screen and (min-width: 768px) {
  .p-info__profileWrapper {
    margin-block-start: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: clamp(55px, 7.6vw, 110px);
  }
}
.p-info__image {
  width: 100%;
  height: clamp(418.5px, 111.6vw, 837px);
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-info__image {
    width: clamp(200px, 27.78vw, 400px);
    height: clamp(250px, 34.7vw, 500px);
  }
}
.p-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-info__image img {
    border-radius: clamp(10px, 1.389vw, 20px);
  }
}
.p-info__profileTexts {
  margin-block-start: clamp(70px, 18.67vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-info__profileTexts {
    width: clamp(200px, 27.78vw, 400px);
    margin-block-start: clamp(70px, 9.72vw, 140px);
  }
}
.p-info__english {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
}
.p-info__english span {
  display: block;
  margin-block-end: clamp(10px, 2.667vw, 20px);
  font-size: clamp(1.3rem, 3.467vw, 2.6rem);
}
@media screen and (min-width: 768px) {
  .p-info__english span {
    font-size: clamp(1.2rem, 1.25vw, 1.8rem);
    margin-block-end: clamp(5px, 0.694vw, 10px);
  }
}
.p-info__english p {
  font-size: clamp(40px, 10.67vw, 80px);
}
@media screen and (min-width: 768px) {
  .p-info__english p {
    font-size: clamp(2rem, 2.78vw, 4rem);
  }
}
.p-info__japanese {
  margin-block-start: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-info__japanese {
    margin-block-start: clamp(15px, 2vw, 30px);
  }
}
.p-info__japanese p {
  font-weight: 600;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-info__japanese p {
    font-size: clamp(1.1rem, 1.1vw, 1.6rem);
  }
}
.p-info__profileText {
  margin-block-start: clamp(50px, 13.3vw, 100px);
}
@media screen and (min-width: 768px) {
  .p-info__profileText {
    margin-block-start: clamp(25px, 3.47vw, 50px);
  }
}
.p-info__profileText p {
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-info__profileText p {
    font-size: clamp(1.1rem, 1.1vw, 1.6rem);
  }
}
.p-info__icon {
  margin-block-start: clamp(50px, 13.3vw, 100px);
  width: clamp(20px, 5.33vw, 40px);
  height: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-info__icon {
    margin-block-start: clamp(25px, 3.47vw, 50px);
    width: clamp(10px, 1.389vw, 20px);
    height: clamp(10px, 1.389vw, 20px);
  }
}
.p-info__icon a {
  width: 100%;
  height: 100%;
  display: block;
}
.p-info__icon a img {
  width: 100%;
  height: 100%;
}
.p-info__outlineContent {
  margin-block-start: clamp(100px, 26.67vw, 200px);
}
@media screen and (min-width: 768px) {
  .p-info__outlineContent {
    width: clamp(370px, 51.389vw, 740px);
    margin-block-start: clamp(20px, 2.78vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .p-info__outlineContent dl {
    display: grid;
    grid-template-columns: 1fr clamp(300px, 41.67vw, 600px);
    row-gap: clamp(20px, 2.78vw, 40px);
  }
}
.p-info__outlineContent dl dt {
  margin-block-start: clamp(40px, 10.67vw, 80px);
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-info__outlineContent dl dt {
    margin-block-start: 0;
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.p-info__outlineContent dl dt:first-child {
  margin-block-start: 0;
}
.p-info__outlineContent dl dd {
  margin-block-start: clamp(10px, 2.67vw, 20px);
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-info__outlineContent dl dd {
    margin-block-start: 0;
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    margin-block-start: 0;
  }
}

.p-works-list {
  padding-block-start: clamp(108px, 28.79vw, 216px);
}
@media screen and (min-width: 768px) {
  .p-works-list {
    padding-block-start: clamp(107px, 14.86vw, 214px);
  }
}
@media screen and (min-width: 768px) {
  .p-works-list__title {
    margin-block-end: clamp(20px, 2.778vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .p-works-list__container {
    max-width: 1300px;
    margin-inline: auto;
    padding-inline: 0;
  }
}
.p-works-list__categories {
  padding-inline: clamp(20px, 5.33vw, 40px);
  margin-block-start: clamp(70px, 18.67vw, 140px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(15px, 4vw, 30px);
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-works-list__categories::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-works-list__categories {
    padding-inline: 0;
    width: auto;
    height: auto;
    margin-block-start: clamp(40px, 5.556vw, 80px);
    display: flex;
    align-items: center;
    gap: clamp(8.5px, 1.18vw, 17px);
  }
}
.p-works-list__category {
  display: grid;
  place-items: center;
  height: clamp(60px, 16vw, 120px);
  border-radius: clamp(30px, 8vw, 60px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-works-list__category {
    margin-right: 0;
    height: clamp(30px, 4.167vw, 60px);
    border-radius: clamp(15px, 2.083vw, 30px);
    z-index: 10;
    overflow: hidden;
  }
}
.p-works-list__category span, .p-works-list__category a {
  border: solid clamp(1px, 0.267vw, 2px) #ffffff;
  border-radius: clamp(30px, 8vw, 60px);
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
  font-weight: bold;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  color: #ffffff;
  padding-inline: clamp(40px, 10.67vw, 80px);
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-works-list__category span, .p-works-list__category a {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    border-radius: clamp(15px, 2.083vw, 30px);
    padding-inline: clamp(20px, 2.778vw, 40px);
  }
}
.p-works-list__category a {
  opacity: 0.3;
  perspective: 1000;
}
@media screen and (min-width: 768px) {
  .p-works-list__category a::after {
    content: "";
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 10rem;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 30%;
    z-index: -1;
    transform: translate3d(0, 10%, 0);
    transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
    backface-visibility: hidden;
    will-change: transform, opacity;
  }
  .p-works-list__category a:hover {
    opacity: 1;
    color: #0F0F0F;
  }
  .p-works-list__category a:hover::after {
    content: "";
    width: 100%;
    height: 20rem;
    left: -10%;
    transform: translate3d(0, -50%, 0) scale(1.5);
  }
}
.p-works-list__content {
  margin-block-start: clamp(70px, 18.67vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-works-list__content {
    margin-block-start: clamp(40px, 5.556vw, 80px);
  }
}
@media screen and (min-width: 768px) {
  .p-works-list__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(310px, 43.056vw, 620px), 1fr));
    -moz-column-gap: clamp(30px, 4.167vw, 60px);
         column-gap: clamp(30px, 4.167vw, 60px);
    row-gap: clamp(60px, 8.33vw, 120px);
  }
}
.p-works-list__item {
  margin-block-end: clamp(70px, 18.667vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-works-list__item {
    margin-block-end: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-works-list__item:nth-of-type(even) {
    margin-inline-start: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-works-list__pagination {
    margin-block-start: clamp(40px, 5.556vw, 80px);
  }
}

.p-works-detail {
  padding-block: clamp(108px, 28.79vw, 216px) clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-works-detail {
    padding-block: clamp(107px, 14.86vw, 214px) 0;
  }
}
.p-works-detail__category {
  margin-block-start: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .p-works-detail__category {
    margin-block-start: clamp(10px, 1.389vw, 20px);
    margin-block-end: clamp(40px, 5.556vw, 80px);
  }
}
.p-works-detail__category a {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(20px, 5.33vw, 40px);
  color: #505050;
}
@media screen and (min-width: 768px) {
  .p-works-detail__category a {
    font-size: clamp(1rem, 5.33vw, 2rem);
  }
}
.p-works-detail__content {
  margin-block-start: clamp(70px, 18.667vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-works-detail__content {
    margin-block-start: clamp(40px, 5.556vw, 80px);
  }
}
.p-works-detail__content article picture:first-of-type img {
  margin-inline: auto;
  width: clamp(335px, 89.33vw, 670px);
  height: auto;
  border-radius: clamp(20px, 5.33vw, 40px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article picture:first-of-type img {
    border-radius: clamp(10px, 1.389vw, 20px);
    width: 100%;
    height: auto;
  }
}
.p-works-detail__content article section {
  margin-block-start: clamp(100px, 26.667vw, 200px);
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article section {
    margin-block-start: clamp(60px, 8.33vw, 120px);
    display: flex;
    justify-content: space-between;
  }
}
.p-works-detail__content article section h3 {
  font-size: clamp(2rem, 5.33vw, 4rem);
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  color: #ffffff;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article section h3 {
    font-size: clamp(1.2rem, 13.89vw, 2rem);
  }
}
.p-works-detail__content article section p {
  margin-block-start: clamp(50px, 13.3vw, 100px);
  line-height: 1.9375;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article section p {
    line-height: 2.25;
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    margin-block-start: 0;
    width: clamp(400px, 55.556vw, 800px);
  }
}
.p-works-detail__content article section:last-child {
  padding-block-start: clamp(50px, 13.3vw, 100px);
  border-top: solid clamp(1px, 0.267vw, 2px) #3b3b3b;
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article section:last-child {
    padding-block-start: clamp(20px, 2.778vw, 40px);
    border-top: solid 1px #3b3b3b;
    justify-content: flex-start;
    gap: clamp(218px, 30.278vw, 436px);
  }
}
.p-works-detail__content article section dl {
  margin-block-start: clamp(100px, 26.67vw, 200px);
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article section dl {
    margin-block-start: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: clamp(50px, 6.94vw, 100px);
         column-gap: clamp(50px, 6.94vw, 100px);
    row-gap: clamp(20px, 2.778vw, 40px);
  }
}
.p-works-detail__content article section dl div {
  margin-block-start: clamp(40px, 10.67vw, 80px);
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article section dl div {
    margin-block-start: 0;
  }
}
.p-works-detail__content article section dl div:first-child {
  margin-block-start: 0;
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article section dl div:first-child {
    grid-column: 1/-1;
  }
}
.p-works-detail__content article section dl dt {
  color: #505050;
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(2rem, 5.33vw, 4rem);
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article section dl dt {
    font-size: clamp(1.1rem, 1.389vw, 2rem);
  }
}
.p-works-detail__content article section dl dd {
  margin-block-start: clamp(10px, 2.667vw, 20px);
  line-height: 1.9375;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article section dl dd {
    margin-block-start: clamp(5px, 0.694vw, 10px);
    font-size: clamp(1rem, 1.11vw, 1.6rem);
  }
}
.p-works-detail__content article ul {
  margin-block-start: clamp(100px, 26.667vw, 200px);
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article ul {
    margin-block-start: clamp(60px, 8.33vw, 120px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4.167vw, 60px);
  }
}
.p-works-detail__content article ul li {
  margin-inline: auto;
  margin-block-end: clamp(30px, 8vw, 60px);
}
.p-works-detail__content article ul li:last-child {
  margin-block-end: 0;
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article ul li {
    margin-block-end: 0;
  }
}
.p-works-detail__content article ul li img {
  width: clamp(335px, 89.33vw, 670px);
  height: clamp(243px, 64.8vw, 486px);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article ul li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: clamp(10px, 1.389vw, 20px);
  }
}
.p-works-detail__content article picture img {
  margin-inline: auto;
  width: clamp(335px, 89.33vw, 670px);
  height: auto;
  border-radius: clamp(20px, 5.33vw, 40px);
  -o-object-fit: cover;
     object-fit: cover;
  margin-block-start: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-works-detail__content article picture img {
    margin-block-start: clamp(30px, 4.167vw, 60px);
    width: 100%;
    height: auto;
    border-radius: clamp(10px, 1.389vw, 20px);
  }
}
.p-works-detail__button {
  margin-block-start: clamp(100px, 26.67vw, 200px);
}
@media screen and (min-width: 768px) {
  .p-works-detail__button {
    margin-block-start: clamp(60px, 8.33vw, 120px);
    margin-inline: auto;
  }
}

.p-news-list {
  padding-block: clamp(108px, 28.79vw, 216px) clamp(150px, 40vw, 300px);
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-news-list {
    padding-block: clamp(107px, 14.86vw, 214px) clamp(100px, 13.889vw, 200px);
  }
}
@media screen and (min-width: 768px) {
  .p-news-list__title {
    margin-block-end: clamp(20px, 2.778vw, 40px);
  }
}
.p-news-list__container {
  margin-block-start: clamp(70px, 18.667vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-news-list__container {
    margin-block-start: clamp(40px, 5.556vw, 80px);
  }
}
.p-news-list__item {
  background: transparent;
  z-index: 1;
  transition: 0.3s;
  position: relative;
}
.p-news-list__item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #0F0F0F;
  transform-origin: 50% 100%;
  transform: scaleY(0);
  transition: transform ease 0.3s;
}
.p-news-list__item::before:hover {
  transform: scaleY(1);
}
.p-news-list__item:hover {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-news-list__item:hover .p-news-list__content {
    margin-inline-start: clamp(10px, 1.389vw, 20px);
  }
}
@media screen and (min-width: 768px) {
  .p-news-list__item:hover .p-news-list__arrow {
    padding-inline-end: clamp(10px, 1.389vw, 20px);
  }
}
.p-news-list__item:hover path {
  fill: #ffffff;
}
.p-news-list__item:hover::before {
  content: "";
  transform: scaleY(1);
}
.p-news-list__item a {
  display: block;
  padding-block: clamp(40px, 10.667vw, 80px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news-list__item a {
    padding-block: clamp(20px, 2.778vw, 40px);
  }
}
.p-news-list__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0F0F0F;
}
.p-news-list__item a:hover {
  opacity: 1;
}
.p-news-list__item:first-child a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0F0F0F;
}
@media screen and (min-width: 768px) {
  .p-news-list__wrapper {
    max-width: 1300px;
    margin-inline: auto;
    position: relative;
  }
}
.p-news-list__content {
  padding-inline: clamp(20px, 5.33vw, 40px) clamp(65px, 17.33vw, 130px);
  transition: margin-inline-start 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news-list__content {
    padding-inline: clamp(25px, 3.472vw, 50px) clamp(50px, 6.94vw, 100px);
    display: flex;
    align-items: center;
    gap: clamp(30px, 4.167vw, 60px);
  }
}
.p-news-list__date {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-news-list__date {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.p-news-list__itemTitle {
  margin-block-start: clamp(15px, 4vw, 30px);
  font-weight: 500;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-news-list__itemTitle {
    margin-block-start: 0;
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.p-news-list__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(20px, 5.33vw, 40px);
  transition: padding-inline-end 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news-list__arrow {
    right: clamp(25px, 3.472vw, 50px);
  }
}
.p-news-list__arrow svg {
  width: clamp(9px, 2.4vw, 18px);
  height: clamp(9px, 2.4vw, 18px);
}
@media screen and (min-width: 768px) {
  .p-news-list__arrow svg {
    width: clamp(4.5px, 0.625vw, 9px);
    height: clamp(4.5px, 0.625vw, 9px);
  }
}
.p-news-list__pagination {
  margin-block-start: clamp(40px, 10.667vw, 80px);
}
@media screen and (min-width: 768px) {
  .p-news-list__pagination {
    margin-block-start: clamp(30px, 4.167vw, 60px);
  }
}

.p-news-detail {
  padding-block: clamp(108px, 28.79vw, 216px) clamp(150px, 40vw, 300px);
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-news-detail {
    padding-block: clamp(107px, 14.86vw, 214px) clamp(100px, 13.889vw, 200px);
  }
}
.p-news-detail__title {
  margin-block-end: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .p-news-detail__title {
    margin-block-end: clamp(10px, 1.389vw, 20px);
  }
}
.p-news-detail__date {
  display: inline-block;
  background-color: #F6F6F6;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-news-detail__date {
    border-radius: clamp(20px, 2.778vw, 40px);
    margin-block-end: clamp(20px, 2.778vw, 40px);
  }
}
.p-news-detail__date time {
  display: block;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  padding: clamp(5px, 1.33vw, 10px) clamp(25px, 6.667vw, 50px);
}
@media screen and (min-width: 768px) {
  .p-news-detail__date time {
    font-size: clamp(1rem, 0.972vw, 1.4rem);
    padding: clamp(3.5px, 0.4861vw, 7px) clamp(15px, 2.083vw, 30px);
  }
}
.p-news-detail__content {
  margin-block-start: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-news-detail__content {
    margin-block-start: clamp(60px, 8.33vw, 120px);
  }
}
@media screen and (min-width: 768px) {
  .p-news-detail__content article {
    width: clamp(400px, 55.56vw, 800px);
    margin-inline: auto;
  }
}
.p-news-detail__content article p, .p-news-detail__content article a {
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
  line-height: 1.9375;
  margin-block-end: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-news-detail__content article p, .p-news-detail__content article a {
    line-height: 2;
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    margin-block-end: clamp(15px, 2.083vw, 30px);
  }
}
.p-news-detail__content article strong {
  font-weight: bold;
}
.p-news-detail__content article a {
  color: #DB401C;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-news-detail__content article a[target=_blank] {
  color: #0F0F0F;
  text-decoration: none;
}
.p-news-detail__content article a[target=_blank] svg {
  display: inline;
  width: clamp(9px, 2.4vw, 18px);
  height: clamp(9px, 2.4vw, 18px);
  margin-inline: clamp(9px, 2.4vw, 18px);
}
@media screen and (min-width: 768px) {
  .p-news-detail__content article a[target=_blank] svg {
    margin-inline: clamp(5px, 0.694vw, 10px);
    width: clamp(4.5px, 0.625vw, 9px);
    height: clamp(5px, 0.694vw, 10px);
  }
}
.p-news-detail__button {
  margin-block-start: clamp(50px, 13.33vw, 100px);
}
@media screen and (min-width: 768px) {
  .p-news-detail__button {
    margin-inline: auto;
    margin-block-start: clamp(25px, 3.472vw, 50px);
  }
}

.p-blog-list {
  padding-block: clamp(108px, 28.79vw, 216px) clamp(150px, 40vw, 300px);
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-blog-list {
    padding-block: clamp(107px, 14.86vw, 214px) clamp(100px, 13.89vw, 200px);
  }
}
.p-blog-list__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-blog-list__title {
    margin-block-end: clamp(20px, 2.778vw, 40px);
    align-items: center;
    flex-direction: row;
    gap: clamp(12.5px, 1.736vw, 25px);
  }
}
.p-blog-list__list {
  margin-block-start: clamp(70px, 18.667vw, 140px);
}
@media screen and (min-width: 768px) {
  .p-blog-list__list {
    margin-block-start: clamp(40px, 5.556vw, 80px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: clamp(29.5px, 4vw, 59px);
         column-gap: clamp(29.5px, 4vw, 59px);
    row-gap: clamp(30px, 4.167vw, 60px);
  }
}
.p-blog-list__item {
  margin-block-start: clamp(60px, 16vw, 120px);
}
@media screen and (min-width: 768px) {
  .p-blog-list__item {
    margin-block-start: 0;
    max-width: 394px;
  }
}
.p-blog-list__item:first-child {
  margin-block-start: 0;
}
.p-blog-list__image a:hover {
  opacity: 1;
}
.p-blog-list__image a picture {
  overflow: hidden;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-blog-list__image a picture {
    border-radius: clamp(7px, 0.97vw, 14px);
  }
}
.p-blog-list__image a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: clamp(20px, 5.33vw, 40px);
  transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-blog-list__image a picture img {
    border-radius: clamp(7px, 0.97vw, 14px);
  }
}
.p-blog-list__image a picture img:hover {
  transform: scale(1.1);
}
.p-blog-list__content {
  margin-block-start: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-blog-list__content {
    margin-block-start: clamp(15px, 2vw, 30px);
  }
}
.p-blog-list__itemTitle {
  font-weight: 500;
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-blog-list__itemTitle {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.p-blog-list__labels {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(10px, 2.667vw, 20px);
  margin-block-start: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .p-blog-list__labels {
    gap: clamp(7px, 0.97vw, 14px);
    margin-block-start: clamp(15px, 2.08vw, 30px);
  }
}
.p-blog-list__category {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(10px, 2.667vw, 20px);
}
@media screen and (min-width: 768px) {
  .p-blog-list__category {
    flex-direction: row;
    flex-wrap: wrap;
    justify-items: flex-end;
    gap: clamp(7px, 0.972vw, 14px);
  }
}
.p-blog-list__category a, .p-blog-list__category span {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  padding: clamp(5px, 2.53vw, 10px) clamp(25px, 6.667vw, 50px);
  text-align: center;
  color: #ffffff;
  display: block;
  font-weight: bold;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  background-color: #0F0F0F;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-blog-list__category a, .p-blog-list__category span {
    font-size: clamp(7px, 0.97vw, 14px);
    border-radius: clamp(15px, 2.08vw, 30px);
    padding: clamp(3.5px, 0.486vw, 7px) clamp(15px, 2.08vw, 30px);
  }
}
.p-blog-list__date {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  padding: clamp(5px, 2.53vw, 10px) clamp(25px, 6.667vw, 50px);
  text-align: center;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  background-color: #F6F6F6;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-blog-list__date {
    font-size: clamp(7px, 0.97vw, 14px);
    border-radius: clamp(15px, 2.08vw, 30px);
    padding: clamp(3.5px, 0.486vw, 7px) clamp(15px, 2.08vw, 30px);
  }
}
.p-blog-list__pagination {
  margin-block-start: clamp(60px, 16vw, 120px);
}
@media screen and (min-width: 768px) {
  .p-blog-list__pagination {
    margin-block-start: clamp(73.65px, 10.2vw, 147.3px);
  }
}

.p-blog-detail {
  padding-block: clamp(108px, 28.79vw, 216px) clamp(150px, 40vw, 300px);
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-blog-detail {
    padding-block: clamp(107px, 14.86vw, 214px) clamp(100px, 13.889vw, 200px);
  }
}
.p-blog-detail__title {
  margin-block-end: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-blog-detail__title {
    margin-block-end: clamp(10px, 1.389vw, 20px);
  }
}
@media screen and (min-width: 768px) {
  .p-blog-detail__labels--top {
    display: flex;
    align-items: center;
    gap: clamp(7px, 0.972vw, 14px);
    margin-block-end: clamp(20.5px, 2.8472vw, 41px);
  }
}
.p-blog-detail__categoryWrapper {
  margin-block-end: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .p-blog-detail__categoryWrapper {
    margin-block-end: 0;
  }
}
.p-blog-detail__category {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(10px, 2.667vw, 20px);
}
@media screen and (min-width: 768px) {
  .p-blog-detail__category {
    gap: clamp(7px, 0.972vw, 14px);
  }
}
.p-blog-detail__category a {
  padding: clamp(5px, 2.53vw, 10px) clamp(25px, 6.667vw, 50px);
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  text-align: center;
  color: #ffffff;
  display: block;
  font-weight: bold;
  background-color: #0F0F0F;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-blog-detail__category a {
    font-size: clamp(7px, 0.97vw, 14px);
    border-radius: clamp(15px, 2.08vw, 30px);
    padding: clamp(3.5px, 0.486vw, 7px) clamp(15px, 2.08vw, 30px);
  }
}
.p-blog-detail__date {
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  padding: clamp(5px, 2.53vw, 10px) clamp(25px, 6.667vw, 50px);
  text-align: center;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.733vw, 2.8rem);
  background-color: #F6F6F6;
  border-radius: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-blog-detail__date {
    font-size: clamp(7px, 0.97vw, 14px);
    border-radius: clamp(15px, 2.08vw, 30px);
    padding: clamp(3.5px, 0.486vw, 7px) clamp(15px, 2.08vw, 30px);
  }
}
.p-blog-detail__content {
  margin-block-start: clamp(85px, 22.667vw, 170px);
}
@media screen and (min-width: 768px) {
  .p-blog-detail__content {
    margin-block-start: clamp(60px, 8.33vw, 120px);
  }
}
@media screen and (min-width: 768px) {
  .p-blog-detail__content article {
    max-width: 800px;
    margin-inline: auto;
  }
}
.p-blog-detail__content article div {
  margin-block-end: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-blog-detail__content article div {
    margin-block-end: clamp(40px, 5.556vw, 80px);
  }
}
.p-blog-detail__content article div p {
  margin-block-end: 2em;
}
.p-blog-detail__content article div img {
  margin-block-end: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-blog-detail__content article div img {
    margin-block-end: clamp(15px, 2.08vw, 30px);
  }
}
.p-blog-detail__content article p {
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
  line-height: 1.9375;
  margin-block-end: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-blog-detail__content article p {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    line-height: 2;
    margin-block-end: clamp(40px, 5.556vw, 80px);
  }
}
.p-blog-detail__content article strong {
  font-weight: bold;
  background-color: #C4FF40;
}
.p-blog-detail__content article a {
  color: #DB401C;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-blog-detail__content article h2, .p-blog-detail__content article h3 {
  font-weight: bold;
  font-size: clamp(2.8rem, 7.467vw, 5.6rem);
  margin-block-end: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-blog-detail__content article h2, .p-blog-detail__content article h3 {
    font-size: clamp(1.4rem, 1.944vw, 2.8rem);
    margin-block-end: clamp(15px, 2.08vw, 30px);
  }
}
.p-blog-detail__content article img {
  height: auto;
  width: 100%;
  border-radius: clamp(20px, 5.33vw, 40px);
  margin-block-end: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-blog-detail__content article img {
    max-width: 800px;
    border-radius: clamp(10px, 1.389vw, 20px);
    margin-block-end: clamp(40px, 5.556vw, 80px);
  }
}
@media screen and (min-width: 768px) {
  .p-blog-detail__button {
    margin-inline: auto;
  }
}

.p-related-blog__inner {
  position: relative;
  padding-block: clamp(40px, 10.667vw, 80px) clamp(150px, 40vw, 300px);
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-related-blog__inner {
    padding-block: clamp(20px, 2.778vw, 40px) clamp(100.095px, 13.9vw, 200.19px);
  }
}
.p-related-blog__inner::before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(100% - 10.667vw);
  height: clamp(1px, 0.13vw, 2px);
  background-color: #0F0F0F;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-related-blog__inner::before {
    height: 1px;
    width: 100%;
    transform: translateX(0);
    left: 0;
  }
}
.p-related-blog__title h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-family: "Helvetica", Arial, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-related-blog__title h2 {
    font-size: clamp(1.5rem, 2.083vw, 3rem);
  }
}
.p-related-blog__content {
  margin-block-start: clamp(80px, 21.3vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-related-blog__content {
    margin-block-start: clamp(40px, 5.556vw, 80px);
  }
}

.p-contact {
  padding-block: clamp(200px, 53.33vw, 400px) clamp(187.5px, 40vw, 375px);
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-block: clamp(164.5px, 22.847vw, 329px) clamp(100px, 13.889vw, 200px);
  }
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    margin-block-end: clamp(20px, 2.778vw, 40px);
  }
}
.p-contact__content {
  margin-block-start: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-contact__content {
    margin-block-start: clamp(40px, 5.556vw, 80px);
    display: flex;
    justify-content: space-between;
  }
}
.p-contact__textsWrapper {
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
  line-height: 1.9375;
}
@media screen and (min-width: 768px) {
  .p-contact__textsWrapper {
    flex-shrink: 0;
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    line-height: normal;
  }
}
.p-contact__note p span {
  color: #DB401C;
}
.p-contact__text {
  margin-block-start: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    margin-block-start: clamp(15px, 2.083vw, 30px);
    line-height: 2;
  }
}
.p-contact__form {
  margin-block-start: clamp(100px, 26.67vw, 200px);
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin-block-start: clamp(30px, 4.167vw, 60px);
    max-width: 660px;
    width: 100%;
  }
}
.p-contact__form table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.p-contact__form tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-block-end: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-contact__form tr {
    margin-block-end: clamp(40px, 5.556vw, 80px);
  }
}
.p-contact__form tr th {
  font-weight: bold;
  font-size: clamp(1.8rem, 4.8vw, 3.6rem);
  margin-block-end: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-contact__form tr th {
    font-size: clamp(1.1rem, 1.25vw, 1.8rem);
    margin-block-end: clamp(20px, 2.778vw, 40px);
  }
}
.p-contact__form tr th .is-required {
  color: #DB401C;
}
.p-contact__form tr td {
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
  display: grid;
  grid-template-columns: 1fr;
  text-indent: -1.75em;
  padding-inline-start: 1.75em;
  border-bottom: solid clamp(1px, 0.267vw, 2px) #0F0F0F;
  padding-block-end: clamp(20px, 5.33vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-contact__form tr td {
    font-size: clamp(1rem, 1.11vw, 1.6rem);
    width: 100%;
    border-bottom: solid 1px #0F0F0F;
    padding-block-end: clamp(20px, 2.78vw, 40px);
  }
}
.p-contact__form tr td.is-radio {
  padding-block-end: 0;
  border-bottom: 0;
}
.p-contact__form tr td .is-radio {
  line-height: 1.2;
  margin-block-start: clamp(15px, 4vw, 30px);
}
@media screen and (min-width: 768px) {
  .p-contact__form tr td .is-radio {
    margin-block-start: clamp(10px, 1.389vw, 20px);
  }
}
.p-contact__form tr td .is-radio:first-of-type {
  margin-block-start: 0;
}
.p-contact__form tr td input, .p-contact__form tr td textarea {
  border: none;
  width: 100%;
}
.p-contact__form tr td input::-moz-placeholder, .p-contact__form tr td textarea::-moz-placeholder {
  color: #D8D8D8;
  padding-inline-start: clamp(10px, 2.667vw, 20px);
}
.p-contact__form tr td input::placeholder, .p-contact__form tr td textarea::placeholder {
  color: #D8D8D8;
  padding-inline-start: clamp(10px, 2.667vw, 20px);
}
@media screen and (min-width: 768px) {
  .p-contact__form tr td input::-moz-placeholder, .p-contact__form tr td textarea::-moz-placeholder {
    padding-inline-start: clamp(10px, 1.389vw, 20px);
  }
  .p-contact__form tr td input::placeholder, .p-contact__form tr td textarea::placeholder {
    padding-inline-start: clamp(10px, 1.389vw, 20px);
  }
}
.p-contact__form tr td input[type=radio], .p-contact__form tr td textarea[type=radio] {
  width: clamp(18px, 4.8vw, 36px);
  height: clamp(18px, 4.8vw, 36px);
  border-radius: 50%;
  border: none;
  background-color: #ededed;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  top: clamp(5px, 1.33vw, 10px);
  margin-inline-end: clamp(6.5px, 1.73vw, 13px);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-contact__form tr td input[type=radio], .p-contact__form tr td textarea[type=radio] {
    width: clamp(9px, 1.25vw, 18px);
    height: clamp(9px, 1.25vw, 18px);
    top: clamp(2.5px, 0.347vw, 5px);
    margin-inline-end: 10px;
  }
}
.p-contact__form tr td input[type=radio]:checked::before, .p-contact__form tr td textarea[type=radio]:checked::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0F0F0F;
  position: absolute;
  top: 0;
  left: 0;
}
.p-contact__form tr td input[type=radio]:checked::after, .p-contact__form tr td textarea[type=radio]:checked::after {
  content: "";
  width: clamp(6px, 1.6vw, 12px);
  height: clamp(6px, 1.6vw, 12px);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-contact__form tr td input[type=radio]:checked::after, .p-contact__form tr td textarea[type=radio]:checked::after {
    width: clamp(3px, 0.4167vw, 6px);
    height: clamp(3px, 0.4167vw, 6px);
  }
}
.p-contact__form tr td textarea {
  height: clamp(152px, 40.53vw, 304px);
}
@media screen and (min-width: 768px) {
  .p-contact__form tr td textarea {
    height: clamp(87.5px, 12.15vw, 175px);
  }
}
.p-contact__caution {
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-contact__caution {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.p-contact__caution a {
  color: #DB401C;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-contact__policy {
  margin-block-start: clamp(20px, 5.33vw, 40px);
  font-size: clamp(1.6rem, 4.2667vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-contact__policy {
    margin-block-start: clamp(10px, 1.38vw, 20px);
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}
.p-contact__policy label {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.6vw, 12px);
}
@media screen and (min-width: 768px) {
  .p-contact__policy label {
    gap: clamp(6px, 0.83vw, 12px);
  }
}
.p-contact__policy input {
  border-radius: 50%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  cursor: pointer;
  background-color: #ededed;
  width: clamp(18px, 4.8vw, 36px);
  height: clamp(18px, 4.8vw, 36px);
}
@media screen and (min-width: 768px) {
  .p-contact__policy input {
    width: clamp(9px, 1.25vw, 18px);
    height: clamp(9px, 1.25vw, 18px);
  }
}
.p-contact__policy input:checked::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0F0F0F;
  position: absolute;
  top: 0;
  left: 0;
}
.p-contact__policy input:checked::after {
  content: "";
  width: clamp(6px, 1.6vw, 12px);
  height: clamp(6px, 1.6vw, 12px);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-contact__policy input:checked::after {
    width: clamp(3px, 0.4167vw, 6px);
    height: clamp(3px, 0.4167vw, 6px);
  }
}
.p-contact__button {
  margin-block-start: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-contact__button {
    margin-block-start: clamp(40px, 5.556vw, 80px);
  }
}
.p-contact__button input {
  position: absolute;
  background: transparent;
  color: inherit;
  border: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-contact__button input {
    border-radius: clamp(15px, 2vw, 30px);
  }
}

.p-complete {
  padding-block: clamp(200px, 53.33vw, 400px) clamp(150px, 40vw, 300px);
}
@media screen and (min-width: 768px) {
  .p-complete {
    padding-block: clamp(164.5px, 22.847vw, 329px) clamp(100px, 13.889vw, 200px);
  }
}
@media screen and (min-width: 768px) {
  .p-complete__title {
    margin-block-end: clamp(20px, 2.778vw, 40px);
  }
}
.p-complete__texts {
  margin-block-start: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-complete__texts {
    margin-block-start: clamp(40px, 5.556vw, 80px);
    max-width: 800px;
    width: 100%;
    margin-inline: auto;
  }
}
.p-complete__texts p {
  line-height: 1.9375;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-complete__texts p {
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    line-height: 2;
  }
}
.p-complete__texts p:last-child {
  margin-block-start: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-complete__texts p:last-child {
    margin-block-start: clamp(15px, 2.083vw, 30px);
  }
}
.p-complete__button {
  margin-block-start: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-complete__button {
    margin-block-start: clamp(40px, 5.556vw, 80px);
    margin-inline: auto;
  }
}

.p-policy {
  padding-block: clamp(108px, 28.79vw, 216px) clamp(150px, 40vw, 300px);
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-policy {
    padding-block: clamp(107px, 14.86vw, 214px) clamp(100px, 13.889vw, 200px);
  }
}
@media screen and (min-width: 768px) {
  .p-policy__title {
    margin-block-end: clamp(20px, 2.778vw, 40px);
  }
}
.p-policy__content {
  margin-block-start: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-policy__content {
    margin-block-start: clamp(60px, 8.33vw, 120px);
    max-width: 800px;
    width: 100%;
    margin-inline: auto;
  }
}
.p-policy__content p {
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
  line-height: 1.9375;
  margin-block-start: clamp(30px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .p-policy__content p {
    line-height: 2;
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
    margin-block-start: clamp(15px, 2.083vw, 30px);
  }
}
.p-policy__content h3 {
  font-weight: bold;
  font-size: clamp(2.8rem, 7.467vw, 5.6rem);
  margin-block-start: clamp(80px, 21.33vw, 160px);
}
@media screen and (min-width: 768px) {
  .p-policy__content h3 {
    font-size: clamp(1.4rem, 1.944vw, 2.8rem);
    margin-block-start: clamp(40px, 5.55vw, 80px);
  }
}
.p-policy__content ul {
  margin-block-start: clamp(30px, 8vw, 60px);
  list-style: disc;
  padding-inline-start: clamp(24px, 6.4vw, 48px);
}
.p-policy__content ul::marker {
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-policy__content ul {
    padding-inline-start: 1.5em;
    margin-block-start: clamp(15px, 2.083vw, 30px);
  }
}
.p-policy__content ul li {
  line-height: 1.9375;
  font-size: clamp(1.6rem, 4.267vw, 3.2rem);
}
@media screen and (min-width: 768px) {
  .p-policy__content ul li {
    line-height: 2;
    font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  }
}

.u-pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
  .u-pc-only {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */