.header {
  border-radius: 60px;
  padding-inline: 40px;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translate(-50%);
  width: calc(100% - 80px);
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
@media screen and (max-width: 900px) {
  .header {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 639px) {
  .header {
    top: 8px;
    width: calc(100% - 16px);
    padding-inline: 16px;
  }
}

.header.is-drawer-open {
  top: 0;
  width: 100%;
  height: 529px;
  border-radius: 0;
  padding-top: 8px;
  padding-inline: 24px;
  background: #f7f7f7;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  position: fixed;
  z-index: 10;
}
.header.is-drawer-open:after {
  content: "";
  background: url(../img/drawer-image.png) no-repeat center center/contain;
  width: 193px;
  height: 336px;
  display: block;
  position: absolute;
  bottom: 8px;
  right: 130px;
}
@media screen and (max-width: 639px) {
  .header.is-drawer-open:after {
    right: 3px;
  }
}
.header.is-drawer-open .drawer-content {
  display: block;
}

.drawer-overlay {
  width: 100%;
  height: 100vh;
  display: block;
  background: rgba(51, 51, 51, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.drawer-overlay.is-active {
  opacity: 1;
}

.heeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo {
  width: 147px;
  transition: opacity 0.5s;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 130px;
  }
}
.header__logo:hover {
  opacity: 0.7;
}

@media screen and (max-width: 900px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1280px) {
  .header__nav-list {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    gap: 20px;
  }
}

.header__nav-link {
  color: #6d9797;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  white-space: nowrap;
  transition: border-bottom 0.3s;
  position: relative;
}
.header__nav-link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 0%;
  height: 1px;
  background-color: #6d9797;
  bottom: -4px;
  transition: width 0.3s;
}
.header__nav-link:hover::after {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .header__nav-link {
    gap: 30px;
    font-size: 14px;
  }
}

.header__nav-button a {
  background-color: #6d9797;
  border-radius: 24px;
  width: 178px;
  padding-inline: 5px;
  padding-block: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.5s;
  font-size: 16px;
}
.header__nav-button a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1280px) {
  .header__nav-button a {
    font-size: 14px;
  }
}

.button__text {
  color: #fff;
}

.button__image {
  width: 20px;
  height: 20px;
}

.drawer-icon {
  display: none;
}
@media screen and (max-width: 900px) {
  .drawer-icon {
    display: block;
    width: 44px;
    height: 44px;
    background-color: #6d9797;
    border-radius: 50%;
    border: none;
    position: relative;
  }
}

.drawer-icon__bar {
  background-color: #fff;
  display: block;
  width: 18px;
  height: 2px;
  transition: transform 0.5s;
  position: absolute;
  top: 14px;
  right: 50%;
  transform: translateX(50%);
}
.drawer-icon__bar:nth-of-type(2) {
  width: 12px;
  margin-right: 3px;
  top: 22px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 30px;
}

/*=============================
#btn03
=============================*/
.drawer-icon.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.drawer-icon.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
  top: 2px;
  left: 13px;
}

.drawer-icon.active span:nth-of-type(2) {
  opacity: 0;
}

.drawer-icon.active span:nth-of-type(3) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  top: 22px;
  left: 13px;
}

@media screen and (max-width: 900px) {
  .drawer-icon,
  .drawer-icon span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
}

.drawer-content {
  display: none;
}

.drawer__nav {
  margin-top: 21.5px;
  padding-inline: 40px;
  position: absolute;
  z-index: 1;
  left: 20%;
}
@media screen and (max-width: 639px) {
  .drawer__nav {
    left: 0;
  }
}

.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.drawer__link {
  color: #6d9797;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
}

.drawer-link-image {
  width: 30px;
  height: 30px;
  display: block;
}

.l-inner {
  padding-inline: 30px;
  max-width: 1140px;
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .l-inner {
    max-width: 1000px;
  }
}
@media screen and (max-width: 639px) {
  .l-inner {
    padding-inline: 16px;
  }
}

.c-section__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: fit-content;
}

.c-section__title-text {
  color: #6d9797;
  font-size: 40px;
  letter-spacing: 1.6px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .c-section__title-text {
    font-size: 30px;
    letter-spacing: 0.96px;
  }
}
@media screen and (max-width: 639px) {
  .c-section__title-text {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.c-section__title-deco {
  background: url(../img/section__title-deco.webp) no-repeat center center/contain;
  width: 27.188px;
  height: 27.188px;
  display: block;
  position: absolute;
  bottom: 0;
  right: -35px;
}
@media screen and (max-width: 639px) {
  .c-section__title-deco {
    width: 16.875px;
    height: 16.875px;
    right: -25px;
  }
}

.c-section__title-line {
  width: 40px;
  height: 1px;
  background-color: rgba(109, 151, 151, 0.7);
  border: none;
  border-top: 1px solid rgba(109, 151, 151, 0.7);
  margin: 0;
  margin-left: 8px;
}

.c-section__title-sub {
  color: #6d9797;
  font-family: "Outfit";
  font-size: 20px;
  letter-spacing: 0.8px;
  overflow: hidden;
  will-change: transform, opacity;
}
@media screen and (max-width: 1280px) {
  .c-section__title-sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 639px) {
  .c-section__title-sub {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

@media screen and (max-width: 639px) {
  .c-page__title-text {
    font-size: 28px;
    letter-spacing: 1.12px;
  }
}

@media screen and (max-width: 639px) {
  .c-page__title-sub {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

@media screen and (max-width: 639px) {
  .sp-hidden {
    display: none;
  }
}

.c-button {
  display: flex;
  align-items: center;
  gap: 33px;
  width: fit-content;
}
.c-button:hover .c-button__text::after {
  right: -60px;
}
.c-button:hover .c-button__circle {
  scale: 1.125;
}

.c-button__text {
  color: #6d9797;
  font-size: 16px;
  letter-spacing: 0.8px;
  position: relative;
}
@media screen and (max-width: 639px) {
  .c-button__text {
    letter-spacing: 0.64px;
  }
}
.c-button__text::after {
  content: "";
  width: 40px;
  height: 6px;
  display: inline-block;
  background: url(../img/button-arrow.webp) no-repeat center center/contain;
  position: absolute;
  right: -52px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.c-button__circle {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  border: 1px solid #6d9797;
  transition: 0.3s;
}

.c-button__reverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 33px;
  width: fit-content;
}
.c-button__reverse:hover .c-button__text-reverse::after {
  left: -60px;
}
.c-button__reverse:hover .c-button__circle-reverse {
  scale: 1.125;
}

.c-button__text-reverse {
  color: #6d9797;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.8px;
  position: relative;
}
@media screen and (max-width: 639px) {
  .c-button__text-reverse {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.64px;
  }
}
.c-button__text-reverse::after {
  content: "";
  width: 40px;
  height: 6px;
  display: inline-block;
  background: url(../img/button-arrow__reverse.webp) no-repeat center center/contain;
  position: absolute;
  left: -52px;
  top: 5.5px;
  transition: 0.3s;
}

.c-button__circle-reverse {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  border: 1px solid #6d9797;
  transition: 0.3s;
}

.c-button__text-reserve-s {
  font-size: 16px;
}

.c-fv__sub-inner {
  padding-block: 191px 40px;
  padding-left: 198px;
  background: #f3f9f9;
}
@media screen and (max-width: 900px) {
  .c-fv__sub-inner {
    padding-left: 40px;
  }
}
@media screen and (max-width: 639px) {
  .c-fv__sub-inner {
    padding-block: 146px 24px;
    padding-left: 20px;
  }
}

.c-breadcrumb {
  padding-inline: 40px;
  padding-block: 20px;
}
@media screen and (max-width: 639px) {
  .c-breadcrumb {
    padding-left: 16px;
  }
}

.c-breadcrumb__list {
  display: flex;
  gap: 12px;
  align-items: center;
}

.c-breadcrumb__item {
  font-size: 14px;
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
}

.c-breadcrumb__arrow {
  width: 8px;
  height: 16px;
}

.c-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.c-pagination__link {
  color: #6d9797;
  font-family: Outfit;
  font-size: 16px;
  line-height: 16px; /* 100% */
  transition: opacity 0.3s;
}
.c-pagination__link:hover {
  opacity: 0.7;
}

.c-pagination__link-first {
  margin-right: 24px;
}

.c-pagination__link-second {
  margin-right: 40px;
}

.c-pagination__link.is-current {
  border-radius: 50%;
  border: 1px solid #6d9797;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-pagination__link-dots {
  font-size: 12px;
  line-height: 12px;
}

.c-pagination__next {
  padding-left: 23px;
}

.c-contact-confirm {
  display: none;
}

.c-contact-finish {
  display: none;
}

.c-thanks-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.96px;
  text-align: center;
  margin-top: 48px;
}
@media screen and (max-width: 639px) {
  .c-thanks-text {
    font-size: 22px;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 0.88px;
  }
}

.c-thanks__button {
  margin-top: 48px;
  margin-inline: auto;
  width: fit-content;
}

.c-form__field-item-confirm {
  border-radius: 8px;
  background: #fff;
  height: 46px;
  max-width: 700px;
  width: 100%;
  border: none;
  padding-left: 10px;
  position: relative;
}

.c-form__confirm-name {
  position: absolute;
  left: 16px;
  top: 8px;
  font-size: 16px;
  line-height: 180%; /* 28.8px */
}

.c-form__field-item-confirm-textarea {
  border-radius: 8px;
  background: #fff;
  height: 240px;
  max-width: 700px;
  width: 100%;
  border: none;
  padding: 16px;
}

.js-text span {
  display: inline-block;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS 1";
  /* font-family: "Outfit"; */
  line-height: normal;
  font-weight: 400;
  color: #333;
}

.p-fv {
  min-height: 100vh;
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  background: linear-gradient(276deg, rgba(135, 189, 189, 0.2) 3.36%, rgba(230, 242, 242, 0.2) 95.53%), var(--ffffff, #fff);
}
@media screen and (max-width: 639px) {
  .p-fv {
    height: calc(var(--vh) * 100);
    max-height: 700px;
    min-height: auto;
  }
}

.p-fv__cover-sp {
  display: none;
}
@media screen and (max-width: 639px) {
  .p-fv__cover-sp {
    display: block;
    background: rgba(214, 236, 236, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
  }
}

.p-fv__bottom {
  font-family: "Outfit";
  font-size: 220px;
  font-weight: 400;
  letter-spacing: -11px;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(168, 198, 198, 0.34) 0%, rgba(109, 151, 151, 0.34) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  bottom: -65px;
  left: -16px;
}
@media screen and (max-width: 900px) {
  .p-fv__bottom {
    font-size: 64px;
    font-weight: 400;
    letter-spacing: -3.2px;
    bottom: -15px;
    left: 0;
    z-index: 2;
  }
}

.p-fv__deco1 {
  width: 383px;
  height: 383px;
  border-radius: 50%;
  background: rgba(135, 202, 202, 0.43);
  position: absolute;
  top: -110px;
  left: -112px;
  filter: blur(150px);
}

.p-fv__deco2 {
  width: 383px;
  height: 383px;
  border-radius: 50%;
  background: rgba(135, 202, 202, 0.4);
  position: absolute;
  right: 414px;
  bottom: -52px;
  filter: blur(150px);
}

.p-fv__inner {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.p-fv__title-wrap {
  top: 32.7%;
  left: 100px;
  width: fit-content;
  z-index: 2;
  position: absolute;
}
@media screen and (max-width: 1280px) {
  .p-fv__title-wrap {
    background: rgba(255, 255, 255, 0.91);
    padding: 20px 60px 20px 30px;
  }
}
@media screen and (max-width: 900px) {
  .p-fv__title-wrap {
    background: rgba(255, 255, 255, 0.91);
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 6px 20px 12px;
  }
}
@media screen and (max-width: 639px) {
  .p-fv__title-wrap {
    top: 150px;
    padding: 32px 4px 32px 16px;
    max-width: 306px;
    width: 100%;
  }
}

.p-fv__title-deco1 {
  width: 73px;
  height: 73px;
  border: 2px solid rgba(168, 198, 198, 0.8);
  border-radius: 50%;
  position: absolute;
  top: -39px;
  right: -10px;
  animation: float 3s ease-in-out infinite;
}
@media screen and (max-width: 1280px) {
  .p-fv__title-deco1 {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 639px) {
  .p-fv__title-deco1 {
    width: 35px;
    height: 35px;
    top: 12px;
    right: 12px;
  }
}

@keyframes float {
  0% {
    transform: translateY(12);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(12);
  }
}
.p-fv__title-deco2 {
  width: 92px;
  height: 92px;
  border: 2px solid rgba(168, 198, 198, 0.5);
  border-radius: 50%;
  position: absolute;
  top: -22px;
  right: 19px;
  animation: float 3s ease-in-out infinite;
}
@media screen and (max-width: 1280px) {
  .p-fv__title-deco2 {
    width: 70px;
    height: 70px;
    top: 34px;
    right: 33px;
  }
}
@media screen and (max-width: 639px) {
  .p-fv__title-deco2 {
    width: 48px;
    height: 48px;
    top: 26px;
    right: 25px;
  }
}

.p-fv__title {
  color: #6d9797;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 4.48px;
}
@media screen and (max-width: 1280px) {
  .p-fv__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 900px) {
  .p-fv__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 639px) {
  .p-fv__title {
    font-size: 32px;
    letter-spacing: 2.24px;
  }
}

.p-fv__title-sub {
  color: #fff;
  font-family: "Outfit";
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.96px;
  border-radius: 16px;
  background: #6d9797;
  width: fit-content;
  padding: 7px 24px 10px;
  margin-top: 7px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .p-fv__title-sub {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.64px;
    padding: 8px 12px;
  }
}
@media screen and (max-width: 639px) {
  .p-fv__title-sub {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.64px;
    gap: 7.5px;
    padding: 8px 12px;
    margin-top: 16px;
  }
}

.fv__side-deco {
  width: 29px;
  height: 29px;
  display: inline-block;
  margin-top: -3px;
}
@media screen and (max-width: 1280px) {
  .fv__side-deco {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 639px) {
  .fv__side-deco {
    width: 18px;
    height: 18px;
  }
}

.p-button__fv {
  margin-top: 24px;
}
@media screen and (max-width: 639px) {
  .p-button__fv {
    margin-top: 16px;
  }
}

.p-fv__button-text {
  font-size: 20px;
}
@media screen and (max-width: 639px) {
  .p-fv__button-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 639px) {
  .p-fv__button-circle {
    width: 32px;
    height: 32px;
  }
}

.p-fv__swiper1,
.p-fv__swiper2 {
  width: 360px;
  height: 100vh;
  position: absolute;
  top: 0;
  transform: rotate(15deg);
  overflow: visible;
  z-index: 0;
}
@media screen and (max-width: 639px) {
  .p-fv__swiper1,
  .p-fv__swiper2 {
    width: 185px;
    right: 50%;
  }
}

.p-fv__swiper1 {
  right: 400px;
}
@media screen and (max-width: 639px) {
  .p-fv__swiper1 {
    right: 49%;
  }
}

.p-fv__swiper2 {
  right: -65px;
}
@media screen and (max-width: 639px) {
  .p-fv__swiper2 {
    left: 64%;
  }
}

.p-fv__swiper-wrapper1,
.p-fv__swiper-wrapper2 {
  transition-timing-function: linear;
}

.p-fv__slide1,
.p-fv__slide2 {
  width: 360px;
  height: 227px;
  border: 1px solid #000;
}
.p-fv__slide1 img,
.p-fv__slide2 img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 639px) {
  .p-fv__slide1,
  .p-fv__slide2 {
    width: 185px;
    height: 117px;
  }
}

.consultation {
  position: relative;
  overflow: hidden;
}
.consultation::after {
  content: "";
  background-color: #d6ecec;
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  bottom: -52px;
  right: 22px;
  filter: blur(100px);
}
@media screen and (max-width: 900px) {
  .consultation::after {
    top: 200px;
    right: 10px;
  }
}
@media screen and (max-width: 639px) {
  .consultation::after {
    display: none;
  }
}

.consultation__inner {
  display: flex;
  gap: 10px;
  padding-right: 10px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .consultation__inner {
    flex-direction: column-reverse;
    gap: 32px;
    align-items: flex-start;
  }
}

.consultation__image {
  max-width: 550px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .consultation__image {
    max-width: 450px;
  }
}
@media screen and (max-width: 900px) {
  .consultation__image {
    max-width: 600px;
  }
}
@media screen and (max-width: 639px) {
  .consultation__image {
    max-width: 374.708px;
  }
}

.consultation__wrap {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .consultation__wrap {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 900px) {
  .consultation__wrap {
    padding-top: 48px;
    padding-inline: 100px;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .consultation__wrap {
    width: 100%;
    padding-inline: 16px;
  }
}
.consultation__wrap::before {
  content: "";
  background-color: #d6ecec;
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  top: -109px;
  left: -153px;
  filter: blur(120px);
}
@media screen and (max-width: 900px) {
  .consultation__wrap::before {
    width: 130px;
    height: 130px;
    top: 17px;
    left: -2px;
  }
}

.consultation__line {
  max-width: 512px;
  height: 1px;
  background-color: #d6ecec;
  margin-block: 0;
}
.consultation__line:nth-of-type(2) {
  margin-top: 8px;
}
.consultation__line:nth-of-type(4) {
  margin-top: 8px;
}
@media screen and (max-width: 639px) {
  .consultation__line {
    padding-inline: 16px;
    max-width: 100%;
  }
}

.consultation__text {
  color: #6d9797;
  text-align: center;
  font-size: 20px;
  line-height: 150%; /* 30px */
  letter-spacing: 0.8px;
  margin-block: 40px 42px;
}
@media screen and (max-width: 639px) {
  .consultation__text {
    font-size: 16px;
    margin-block: 32px;
    padding-inline: 22.5px;
  }
}

@media screen and (max-width: 1024px) {
  .consultation-hidden {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .consultation-hidden {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .consultation-hidden {
    display: none;
  }
}

.consultation__ribbon {
  width: 96.304px;
  height: 41.905px;
  margin-inline: auto;
  margin-top: 16px;
}
@media screen and (max-width: 639px) {
  .consultation__ribbon {
    display: none;
  }
}

.p-top-works {
  padding-block: 95px;
}
@media screen and (max-width: 639px) {
  .p-top-works {
    padding-block: 80px;
  }
}

.p-top-works__list {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 80px;
  row-gap: 52px;
}
@media screen and (max-width: 639px) {
  .p-top-works__list {
    column-gap: 20px;
  }
}

.p-top-works__item {
  max-width: 500px;
  flex: 1 1 400px;
}
@media screen and (max-width: 639px) {
  .p-top-works__item {
    max-width: 343px;
  }
}
.p-top-works__item:hover .p-top-works__image {
  scale: 1.05;
}

.p-top-works__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-top-works__item-head {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 3px 4px 15px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}

.p-top-works__image {
  aspect-ratio: 500/343;
  transition: scale 0.5s;
}

.p-top-works__item-title {
  font-size: 22px;
  letter-spacing: 0.88px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 639px) {
  .p-top-works__item-title {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.p-top-works__tag-wrap {
  display: flex;
  gap: 16px;
}

.p-top-works__tag {
  color: #6d9797;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 16px;
  background: #f3f9f9;
  display: inline-block;
}

.c-top-button__works {
  margin-top: 80px;
  width: fit-content;
  margin-inline: auto;
}

.p-animation {
  padding-block: 120px;
  background-color: #f7f7f7;
  cursor: default;
}
@media screen and (max-width: 639px) {
  .p-animation {
    padding-block: 80px;
  }
}

.p-animation__top-wrap {
  display: flex;
  gap: 85.5px;
}
@media screen and (max-width: 900px) {
  .p-animation__top-wrap {
    flex-direction: column;
    gap: 24px;
  }
}

.p-animation__title {
  flex-shrink: 0;
}

.p-animation__title-text {
  color: #6d9797;
  font-family: "M PLUS 1";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  margin-top: 17px;
}
@media screen and (max-width: 1280px) {
  .p-animation__title-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 639px) {
  .p-animation__title-text {
    font-size: 16px;
  }
}

.p-animation__contents {
  margin-top: 40px;
}

.p-animation__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 36px;
  row-gap: 40px;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .p-animation__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .p-animation__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-animation__item {
  border-radius: 16px;
  background: hsl(0, 0%, 100%);
  box-shadow: 3px 5px 18px 0px rgba(0, 0, 0, 0.16);
  max-width: 336px;
  display: block;
}
.p-animation__item:nth-of-type(n + 4) {
  display: none;
}
@media screen and (max-width: 1280px) {
  .p-animation__item {
    max-width: 300px;
  }
}

.p-animation__head {
  width: 100%;
  border-radius: 16px 16px 0 0;
}

.p-animation__image {
  border-radius: 16px 16px 0 0;
  width: 100%;
}

.p-animation__body {
  padding: 16px 16px 24px;
  height: 231px;
  border-top: 1px solid #f3f9f9;
}

.p-animation__item-title {
  color: #6d9797;
  font-family: "M PLUS 1";
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
}

.p-animation__item-category {
  color: #6d9797;
  font-family: "M PLUS 1";
  font-size: 16px;
  padding: 4px 16px;
  border-radius: 16px;
  background-color: #d6ecec;
  width: fit-content;
  margin-top: 8px;
}

.p-animation__item-text {
  margin-top: 8px;
  color: #6d9797;
  font-family: "M PLUS 1";
  font-size: 16px;
}

.p-profile__inner {
  overflow: hidden;
}

.p-profile__container {
  background-color: #d6ecec;
  width: 100%;
  position: relative;
  height: 900px;
  padding: 32px 27px;
}
@media screen and (max-width: 1280px) {
  .p-profile__container {
    height: 653px;
  }
}
@media screen and (max-width: 639px) {
  .p-profile__container {
    height: 1068px;
  }
}

.p-profile__bg {
  background-color: #fff;
  background-image: url(../img/profile__bg.webp);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  position: relative;
}

.p-profile__wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  width: 100%;
  height: 100%;
  padding-inline: 30px;
  margin-inline: auto;
  padding-block: 153px;
}
@media screen and (max-width: 1280px) {
  .p-profile__wrapper {
    max-width: 1000px;
    padding-block: 111px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .p-profile__wrapper {
    padding-block: 111px 50px;
  }
}
@media screen and (max-width: 900px) {
  .p-profile__wrapper {
    gap: 24px;
    padding-inline: 24px;
  }
}
@media screen and (max-width: 639px) {
  .p-profile__wrapper {
    flex-direction: column;
    justify-content: center;
  }
}

.p-profile__head {
  position: relative;
  max-width: 455px;
  border-radius: 32px;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .p-profile__head {
    max-width: 327px;
  }
}

.p-profile__category {
  position: absolute;
  right: -2px;
  top: -115px;
  width: 162px;
}
@media screen and (max-width: 1280px) {
  .p-profile__category {
    top: -87px;
  }
}

.p-profile__number {
  position: absolute;
  right: -5px;
  top: -85px;
  width: 162px;
}
@media screen and (max-width: 1280px) {
  .p-profile__number {
    right: -4.5px;
    top: -57px;
    width: 122px;
  }
}

.p-profile__image {
  border-radius: 32px;
}

.p-profile__introduction {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 510px;
}
@media screen and (max-width: 1280px) {
  .p-profile__introduction {
    gap: 32px;
  }
}

.p-profile__wrap {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.p-profile__title {
  color: #6d9797;
  font-family: "Outfit";
  font-size: 20px;
  letter-spacing: 0.8px;
  position: relative;
}
.p-profile__title::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #6d9797;
  display: block;
  position: absolute;
  bottom: -8px;
  left: 8px;
}
@media screen and (max-width: 639px) {
  .p-profile__title {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

.p-profile__title-ja {
  font-family: "M PLUS 1";
}
@media screen and (max-width: 639px) {
  .p-profile__title-ja {
    font-weight: 500;
  }
}

.p-profile__text {
  font-size: 20px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1280px) {
  .p-profile__text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.p-skill {
  padding-block: 64px;
}

.p-skill__swiper-wrapper {
  transition-timing-function: linear;
}

.p-skill__swiper-slide {
  width: 70px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.p-skill__swiper-head {
  height: 70px;
}
@media screen and (max-width: 639px) {
  .p-skill__swiper-head {
    height: 52px;
  }
}

.p-skill__html {
  width: 57.873px;
}
@media screen and (max-width: 639px) {
  .p-skill__html {
    width: 43.818px;
  }
}

.p-skill__css {
  width: 62px;
}
@media screen and (max-width: 639px) {
  .p-skill__css {
    width: 46px;
  }
}

@media screen and (max-width: 639px) {
  .p-skill__jquery {
    width: 54.328px;
  }
}

.p-skill__js {
  width: 64px;
}
@media screen and (max-width: 639px) {
  .p-skill__js {
    width: 52px;
  }
}

@media screen and (max-width: 639px) {
  .p-skill__word-press {
    width: 52.002px;
  }
}

.p-skil__php {
  width: 64px;
}
@media screen and (max-width: 639px) {
  .p-skil__php {
    width: 52px;
  }
}

.p-skill__figma {
  width: 52px;
}

.skill__text {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .skill__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 639px) {
  .skill__text {
    font-size: 16px;
  }
}

.p-top-blog {
  padding-block: 120px;
  background: #f7f7f7;
}
@media screen and (max-width: 639px) {
  .p-top-blog {
    padding-block: 80px;
  }
}

.p-top-blog__contents {
  margin-top: 40px;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 639px) {
  .p-top-blog__contents {
    width: fit-content;
    margin-inline: auto;
  }
}

.p-top-blog__list {
  display: flex;
  gap: 63px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1080px;
  margin-inline: auto;
}
@media screen and (max-width: 900px) {
  .p-top-blog__list {
    flex-wrap: wrap;
    gap: 50px;
  }
}
@media screen and (max-width: 639px) {
  .p-top-blog__list {
    flex-direction: column;
    gap: 64px;
  }
}

.p-top-blog__item {
  max-width: 318px;
  box-shadow: 3px 4px 23px rgba(0, 0, 0, 0.13);
  border-radius: 24px;
  flex: 1 1 0;
  min-width: 270px;
}
.p-top-blog__item.js-fadein {
  transform: translate(0, 0);
}
.p-top-blog__item.js-fadein:hover {
  transform: translate(10px, 10px);
}

.p-top-blog__head {
  height: 206px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.p-top-blog__head img {
  width: 100%;
  height: 100%;
}

.p-top-blog__body {
  padding: 24px 16px 30px;
}

.p-top-blog__body-top {
  display: flex;
  align-items: center;
  gap: 24px;
}

.p-top-blog__body-date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
}

.p-top-blog__body-category {
  color: #6d9797;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  border-radius: 8px;
  background: #d6ecec;
  padding: 4px 8px;
  width: fit-content;
}

.p-top-blog__body-title {
  margin-top: 24px;
  font-size: 16px;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-top-blog__button {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 639px) {
  .p-top-blog__button {
    margin-top: 64px;
    justify-content: center;
  }
}

.c-contact {
  background: #f3f9f9;
  padding-bottom: 96px;
  overflow: hidden;
}

.c-contact__deco-wrap {
  display: inline-flex;
  margin-top: -46px;
}
@media screen and (max-width: 639px) {
  .c-contact__deco-wrap {
    margin-top: -22px;
  }
}

.c-contact__deco {
  font-family: Outfit;
  font-size: 160px;
  letter-spacing: -8px;
  background: linear-gradient(180deg, rgba(168, 198, 198, 0.17) 0%, rgba(109, 151, 151, 0.17) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 50px;
}
@media screen and (max-width: 639px) {
  .c-contact__deco {
    font-size: 88px;
    letter-spacing: -3.52px;
    padding-right: 35px;
  }
}

.c-contact__title {
  margin-inline: auto;
  margin-top: 24px;
}
@media screen and (max-width: 639px) {
  .c-contact__title {
    margin-top: -9px;
  }
}

.c-contact__text-title {
  padding-right: 37px;
}

.c-contact__title-deco {
  right: 0;
}

.c-contact__line {
  margin-inline: auto;
  width: 73px;
}
@media screen and (max-width: 639px) {
  .c-contact__line {
    width: 40px;
  }
}

.c-contact__title-sub {
  margin-inline: auto;
}

.c-contact__text {
  color: #333;
  font-family: "M PLUS 1";
  font-size: 16px;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.64px;
  margin-top: 48px;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 639px) {
  .c-contact__text {
    max-width: 480px;
    margin-top: 47px;
  }
}

.c-contact__text-error {
  color: #f23e3e;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.64px;
  display: none;
}

.c-form {
  margin-top: 48px;
  max-width: 700px;
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .c-form {
    max-width: 600px;
  }
}
@media screen and (max-width: 900px) {
  .c-form {
    max-width: 500px;
  }
}

.c-form-fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.c-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-form__field-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 900px) {
  .c-form__field-head {
    gap: 9px;
  }
}

.c-form-field__label {
  font-family: "M PLUS 1";
  font-size: 16px;
  line-height: 24px; /* 150% */
}

.c-form-field__tag {
  color: #db317a;
  font-family: "M PLUS 1";
  font-size: 10px;
  line-height: 10px; /* 100% */
  padding: 3px 7px;
  border-radius: 16px;
  border: 1px solid rgba(219, 49, 122, 0.6);
}

.c-form-text {
  border-radius: 8px;
  background: #fff;
  height: 46px;
  max-width: 700px;
  width: 100%;
  border: none;
  padding-left: 10px;
}

.c-form__field-radios {
  display: flex;
  row-gap: 12px;
  column-gap: 40px;
  flex-wrap: wrap;
}

.c-form__field-radio {
  cursor: pointer;
}

.c-form__radio-input {
  position: absolute;
  opacity: 0;
}

.c-form__radio-circle {
  font-family: "M PLUS 1";
  font-size: 16px;
  padding-left: 35px;
  position: relative;
}
.c-form__radio-circle::before, .c-form__radio-circle::after {
  content: "";
  width: 23px;
  height: 23px;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.c-form__radio-circle::before {
  border: 1px solid #bcbcbc;
  border-radius: 50%;
}
.c-form__radio-circle:after {
  background: url(../img/radio__button.webp) no-repeat center center/contain;
  opacity: 0;
}

.c-form__field-radio.is-checked .c-form__radio-circle::after {
  opacity: 1;
}

.c-form__textarea {
  height: 240px;
  background-color: #fff;
  border-radius: 8px;
  max-width: 700px;
  width: 100%;
  border: none;
  padding-top: 10px;
  padding-left: 10px;
  resize: vertical;
}

.c-form__privacy {
  margin-top: 52px;
  max-width: 640px;
  max-height: 240px;
  background-color: #fff;
  padding: 24px 16px;
  overflow-y: auto;
  border-radius: 8px;
  margin-inline: auto;
  cursor: default;
}
@media screen and (max-width: 639px) {
  .c-form__privacy {
    margin-top: 51px;
    padding: 24px 7px;
  }
}

.c-form__privacy-title {
  font-family: "M PLUS 1";
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 639px) {
  .c-form__privacy-title {
    font-size: 18px;
    font-weight: 500;
  }
}

.c-form__privacy-text {
  font-family: "M PLUS 1";
  font-size: 16px;
}

.c-privacy__checkbox {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 639px) {
  .c-privacy__checkbox {
    margin-top: 56px;
  }
}

.c-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 23px;
  height: 23px;
  border-radius: 8px;
}

.c-privacy__checkbox-text {
  font-family: "M PLUS 1";
  padding-left: 35px;
  position: relative;
}
.c-privacy__checkbox-text::before, .c-privacy__checkbox-text::after {
  content: "";
  width: 23px;
  height: 23px;
  border-radius: 8px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-privacy__checkbox-text::before {
  border: 1px solid #888;
}
.c-privacy__checkbox-text::after {
  background: url(../img/privacy__check.webp) no-repeat center/contain;
  width: 18px;
  height: 16px;
  margin-left: 3px;
  opacity: 0;
}

.c-privacy__checkbox.is-checked .c-privacy__checkbox-text::after {
  opacity: 1;
}

.c-form__button {
  margin-top: 55px;
  width: fit-content;
  margin-inline: auto;
  max-width: 220px;
  width: 100%;
  transition: opacity 0.3s;
}
.c-form__button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 639px) {
  .c-form__button {
    margin-top: 56px;
  }
}

.c-form__submit {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  background-color: #6d9797;
  border-radius: 36px;
  border: none;
  padding-block: 16px;
  width: 100%;
  cursor: pointer;
}

.is-error {
  border: 1px solid var(--f-23-e-3-e, #f23e3e);
  background: linear-gradient(0deg, rgba(242, 62, 62, 0.05) 0%, rgba(242, 62, 62, 0.05) 100%), var(--ffffff, #fff);
}

.c-privacy__checkbox-text.is-error,
.c-form__radio-circle.is-error {
  border: none;
  background: #f3f9f9;
}

.c-privacy__checkbox-text.is-error::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  border-radius: 8px;
  border: 1px solid var(--f-23-e-3-e, #f23e3e);
  background: linear-gradient(0deg, rgba(242, 62, 62, 0.05) 0%, rgba(242, 62, 62, 0.05) 100%), var(--ffffff, #fff);
  vertical-align: middle;
}

.c-form__radio-circle.is-error::before {
  border: 1px solid var(--f-23-e-3-e, #f23e3e);
  background: linear-gradient(0deg, rgba(242, 62, 62, 0.05) 0%, rgba(242, 62, 62, 0.05) 100%), var(--ffffff, #fff);
}

.l-404 {
  padding-block: 198px 120px;
  background: linear-gradient(276deg, rgba(135, 189, 189, 0.2) 3.36%, rgba(230, 242, 242, 0.2) 95.53%), var(--ffffff, #fff);
}
@media screen and (max-width: 639px) {
  .l-404 {
    padding-block: 142px 64px;
  }
}

.l-404__title {
  color: #6d9797;
  text-align: center;
  font-family: Outfit;
  font-size: 64px;
  letter-spacing: 2.56px;
}

.l-404__text {
  margin-top: 16px;
  text-align: center;
  color: #6d9797;
  font-family: "M PLUS 1";
  font-size: 16px;
  letter-spacing: 0.64px;
}

.p-button__404 {
  margin-top: 80px;
  margin-inline: auto;
  width: fit-content;
}
@media screen and (max-width: 639px) {
  .p-button__404 {
    margin-top: 40px;
  }
}

.footer {
  font-size: 0;
}

.footer__inner {
  background: #f3f9f9;
  position: relative;
  z-index: 1;
  color: #fff;
  height: 324px;
}
@media screen and (max-width: 900px) {
  .footer__inner {
    height: 516px;
  }
}

.c-footer__bg-big {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 324px;
}
@media screen and (max-width: 900px) {
  .c-footer__bg-big {
    display: none;
  }
}

.c-footer__bg-small {
  display: none;
}
@media screen and (max-width: 900px) {
  .c-footer__bg-small {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 516px;
  }
}

.footer__name {
  text-align: center;
  padding-top: 48px;
  font-size: 24px;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 639px) {
  .footer__name {
    font-size: 18px;
    font-weight: 500;
    padding-top: 68px;
    letter-spacing: 0.72px;
  }
}

.footer__x-image {
  margin-top: 32px;
  display: block;
  margin-inline: auto;
  width: fit-content;
  transition: 0.3s;
}
.footer__x-image:hover {
  opacity: 0.7;
}

.footer__nav {
  margin-top: 40px;
}
@media screen and (max-width: 639px) {
  .footer__nav {
    margin-top: 48px;
  }
}

.footer__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .footer__nav-list {
    flex-direction: column;
    gap: 24px;
  }
}

.footer__nav-link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  transition: opacity 0.3s;
}
.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__nav-button {
  background-color: #fff;
  padding: 8px 24px;
  border-radius: 24px;
  transition: opacity 0.3s;
  cursor: pointer;
}
.footer__nav-button:hover {
  opacity: 0.7;
}

.footer__nav-button .footer__nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__nav-button .button__text {
  color: #6d9797;
}

.footer__cl {
  margin-top: 64px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .footer__cl {
    margin-top: 45px;
  }
}

.footer__cl small {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
}

.c-breadcrumb-gray {
  background-color: #f7f7f7;
}

.p-works {
  padding-block: 96px 120px;
}
@media screen and (max-width: 639px) {
  .p-works {
    padding-block: 48px 104px;
  }
}

.p-works__category-list {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .p-works__category-list {
    gap: 16px;
  }
}

.p-works__category-item {
  width: fit-content;
}

.p-works__category-link {
  color: #bcbcbc;
  font-family: "Noto Sans JP";
  padding-block: 6px;
  font-size: 18px;
  line-height: 150%; /* 27px */
  letter-spacing: 0.72px;
  display: block;
  width: 158px;
  border-radius: 26px;
  border: 2px solid #bcbcbc;
  background: #fff;
  text-align: center;
}
.p-works__category-link:hover {
  background: rgba(214, 236, 236, 0.5);
  color: #6d9797;
  border-radius: 26px;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.p-works__category-link.is-current {
  border-radius: 26px;
  background: #d6ecec;
  border: none;
  color: #6d9797;
  padding-block: 8px;
}

.p-works__list {
  margin-top: 64px;
}

.p-works__pagination {
  margin-top: 122px;
}
@media screen and (max-width: 639px) {
  .p-works__pagination {
    margin-top: 82px;
  }
}

.p-work__inner {
  margin-inline: auto;
  max-width: 845px;
  padding-inline: 16px;
  padding-block: 96px;
}
@media screen and (max-width: 1280px) {
  .p-work__inner {
    max-width: 600px;
  }
}
@media screen and (max-width: 900px) {
  .p-work__inner {
    max-width: 500px;
  }
}
@media screen and (max-width: 639px) {
  .p-work__inner {
    padding-block: 48px 104px;
  }
}

.p-work__image {
  border-radius: 32px;
  box-shadow: 3px 4px 15px 0px rgba(0, 0, 0, 0.1);
}

.p-work__title {
  margin-top: 40px;
  font-size: 24px;
  letter-spacing: 0.96px;
}

.p-work__tag-wrap {
  margin-top: 8px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.p-work__tag {
  color: #6d9797;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 16px;
  background: #e4eeee;
  width: fit-content;
}

.p-work__item-body {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.p-work__body-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
}

.p-work__body-text {
  font-size: 16px;
  letter-spacing: 0.64px;
  margin-top: 8px;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.p-work__body-text-url {
  transition: 0.3s;
}
.p-work__body-text-url:hover {
  color: #6d9797;
}

.p-button__work {
  margin-top: 56px;
  width: fit-content;
  margin-inline: auto;
}

.p-work__works {
  background: #f7f7f7;
  padding-block: 96px;
}
@media screen and (max-width: 639px) {
  .p-work__works {
    padding-block: 80px;
  }
}

.p-work__works-inner {
  padding-inline: 180px;
}
@media screen and (max-width: 1280px) {
  .p-work__works-inner {
    padding-inline: 140px;
  }
}
@media screen and (max-width: 1024px) {
  .p-work__works-inner {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 900px) {
  .p-work__works-inner {
    padding-inline: 80px;
  }
}
@media screen and (max-width: 639px) {
  .p-work__works-inner {
    padding-inline: 16px;
  }
}

.p-work__swiper {
  margin-top: 40px;
  max-width: 1080px;
}

.p-work__swiper-wrapper {
  transition-timing-function: linear;
}

.p-work__swiper-slide {
  max-width: 315px;
}
@media screen and (max-width: 1280px) {
  .p-work__swiper-slide {
    max-width: 343px;
  }
}

.p-work__image {
  aspect-ratio: 313/215;
}

.p-work__title {
  font-size: 22px;
  letter-spacing: 0.88px;
  margin-top: 8px;
}

.p-work__tag {
  color: #6d9797;
  font-size: 16px;
  border-radius: 16px;
  background: #e4eeee;
}

.p-blog {
  padding-block: 120px;
  background: #f7f7f7;
}
@media screen and (max-width: 639px) {
  .p-blog {
    padding-block: 48px 104px;
  }
}

.p-blog__contents {
  margin-top: 64px;
}

.p-blog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .p-blog__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .p-blog__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-blog__list {
  width: fit-content;
}

.p-blog__pagination {
  margin-top: 122px;
}
@media screen and (max-width: 639px) {
  .p-blog__pagination {
    margin-top: 82px;
  }
}

.p-blog__article {
  background-color: #f7f7f7;
  padding-block: 120px;
}
@media screen and (max-width: 639px) {
  .p-blog__article {
    padding-block: 48px 106px;
  }
}

.p-blog__article-inner {
  max-width: 700px;
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .p-blog__article-inner {
    max-width: 600px;
  }
}
@media screen and (max-width: 900px) {
  .p-blog__article-inner {
    max-width: 500px;
  }
}
@media screen and (max-width: 639px) {
  .p-blog__article-inner {
    padding-inline: 16px;
  }
}

.p-blog__article-button {
  padding-left: 56px;
  cursor: pointer;
  display: block;
}
.p-blog__article-button:hover .p-article__button-image {
  left: -65px;
}

.p-blog__article-prev {
  position: relative;
}

.p-article__button-image {
  width: 40px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: -56px;
  transition: 0.3s;
}

.p-article__button-text {
  color: #6d9797;
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
}

.p-blog__article-item {
  margin-top: 40px;
}

.p-blog__article-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-blog__article-date {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 500;
  line-height: 150%; /* 36px */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 639px) {
  .p-blog__article-date {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

.p-blog__article-image {
  aspect-ratio: 700/453;
  border-radius: 24px;
}

.p-blog__article-body {
  margin-top: 18px;
  max-width: 95%;
  margin-inline: auto;
}
@media screen and (max-width: 639px) {
  .p-blog__article-body {
    margin-top: 16px;
  }
}

.p-blog__article-body-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: 1.28px;
}
@media screen and (max-width: 639px) {
  .p-blog__article-body-title {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.p-blog__article-body-text {
  margin-top: 32px;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
}
@media screen and (max-width: 639px) {
  .p-blog__article-body-text {
    font-size: 16px;
    letter-spacing: 0.64px;
    margin-top: 16px;
  }
}

.p-blog__article-pagination {
  margin-top: 132px;
}
@media screen and (max-width: 639px) {
  .p-blog__article-pagination {
    margin-top: 80px;
  }
}

.u-bold {
  font-weight: bold;
}

.u-text-red {
  color: #e60033;
}

.u-underline-red {
  border-bottom: 2px solid #e60033;
  display: inline;
}

.u-marker-yellow {
  background: linear-gradient(transparent 60%, #fff176 60%);
}