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

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

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

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

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

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

html {
  font-size: 14px;
}
@media (max-width: 375px) {
  html {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3114754098vw;
  }
}
@media (min-width: 1220px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "zen-kaku-gothic-antique", sans-serif;
  color: #000;
}

h1, h2 {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  h1, h2 {
    font-size: 2rem;
  }
}

a {
  color: #000;
}

/**
  *  Layout
  * ============================ */
.l-inner {
  width: 100%;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1220px;
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }
}

.l-wrap.js-open {
  position: fixed;
}

/**
Theme-style-css
**/
/* カラーパレット */
.has-black-background-color {
  background-color: #000;
}

.has-black-color {
  color: #000;
}

.has-white-background-color {
  background-color: #FFF;
}

.has-white-color {
  color: #FFF;
}

.has-red-background-color {
  background-color: #E52C2C;
}

.has-red-color {
  color: #E52C2c;
}

.has-skyblue-background-color {
  background-color: #87E1ED;
}

.has-skyblue-color {
  color: #87E1ED;
}

.has-blue-background-color {
  background-color: #DDEFFF;
}

.has-blue-color {
  color: #DDEFFF;
}

.has-gray-background-color {
  background-color: #888888;
}

.has-gray-color {
  color: #888888;
}

.has-normal-font-size {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .has-normal-font-size {
    font-size: 1rem;
  }
}

.has-line-height-180-font-size {
  line-height: 180%;
}

.wp-block-button {
  margin-top: 1.25rem;
}

/**
  *  Object
  * ============================ */
/* Component ----------------*/
.c-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-title img {
  height: 34px;
  width: auto;
}
.c-title h1 {
  font-family: "keedy-sans", sans-serif;
  font-size: 20px;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .c-title {
    gap: 0.625rem;
  }
  .c-title img {
    height: 2.5rem;
  }
  .c-title h1 {
    font-size: 2rem;
  }
}

.c-button {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*ボタン内側*/
.c-button span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #000;
  width: 45%;
}

.c-button span:nth-of-type(1) {
  top: 13px;
}

.c-button span:nth-of-type(2) {
  top: 23px;
}

.c-button span:nth-of-type(3) {
  top: 33px;
}

.c-button span:nth-of-type(2)::after {
  content: "Menu";
  /*2つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #000;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.c-button.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  -webkit-transform: translateY(6px) translateX(-25%) rotate(-45deg);
          transform: translateY(6px) translateX(-25%) rotate(-45deg);
  width: 50%;
  z-index: 1;
}

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

.c-button.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  -webkit-transform: translateY(-6px) translateX(-25%) rotate(45deg);
          transform: translateY(-6px) translateX(-25%) rotate(45deg);
  width: 50%;
  z-index: 1;
}

.c-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-sns img {
  height: 25px;
}
.c-sns p {
  padding-left: 24px;
}

.c-index {
  position: relative;
  left: 65px;
  letter-spacing: 0.2em;
}
.c-index::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: -65px;
}
@media screen and (min-width: 768px) {
  .c-index {
    left: 13.4375rem;
  }
  .c-index::before {
    width: 12.5rem;
    height: 0.125rem;
    left: -13.4375rem;
  }
}

.c-contact-heading {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-contact-heading {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
}

.c-contact-margin {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .c-contact-margin {
    margin: 0;
    margin-top: 3.125rem;
  }
}

.c-margin--tb {
  margin-top: 20px;
  margin-bottom: 20px;
}
/* Project ------------------*/
.p-header {
  display: none;
}
.p-header--sp {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  margin-top: 32px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-header--sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 6.875rem;
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1;
  }
  .p-header__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-header__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2rem;
    font-family: "keedy-sans", sans-serif;
    gap: 1.5625rem;
  }
}

.p-mv {
  height: 425px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0;
  margin: 0;
}
.p-mv--sp {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-mv--sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 45rem;
    width: 100%;
    margin-top: 6.875rem;
  }
}
.p-mv__item {
  width: 100%;
  height: 100%;
}
.p-mv__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-button {
  position: fixed;
  top: 20px;
  right: 25px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-button {
    display: none;
  }
}

.slick-list {
  height: 100%;
  width: 100%;
}

.slick-track {
  height: 100%;
  width: 100%;
}

.p-slider--num {
  color: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 2px;
}
.p-slider--num span:nth-child(2) {
  position: relative;
  display: block;
  width: 30px;
}
.p-slider--num span:nth-child(2)::before {
  content: "";
  position: absolute;
  border-top: solid 1px #000;
  width: 100%;
}
.p-slider--num span:nth-child(1) {
  padding-right: 10px;
}
.p-slider--num span:nth-child(3) {
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .p-slider--num {
    margin-top: 0.3125rem;
  }
  .p-slider--num span:nth-child(2) {
    width: 3.75rem;
  }
}

.p-slider__arrow {
  width: 15px;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  cursor: pointer;
}
.p-slider__prev {
  left: -35px;
}
.p-slider__next {
  right: -35px;
}
@media screen and (min-width: 768px) {
  .p-slider__arrow {
    width: 1.5625rem;
  }
  .p-slider__prev {
    left: -4.6875rem;
  }
  .p-slider__next {
    right: -4.6875rem;
    background-image: url("../../../image/chevron-right-solid.svg");
  }
}

.p-about {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}
.p-about__title {
  grid-row: 1/2;
}
.p-about__text {
  margin-top: 25px;
  grid-row: 2/3;
  line-height: 1.6;
}
.p-about__item {
  margin-top: 40px;
  grid-row: 3/4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-about__photo {
  height: 150px;
}
@media screen and (min-width: 768px) {
  .p-about {
    margin-top: 6.25rem;
    padding: 0 5rem;
    display: grid;
    grid-template-rows: -webkit-max-content 1fr -webkit-max-content;
    grid-template-rows: max-content 1fr max-content;
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
  }
  .p-about__title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .p-about__text {
    line-height: 1.7;
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .p-about__sns {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .p-about__photo {
    height: 15.625rem;
    grid-column: 2/3;
    grid-row: 1/4;
  }
}

.p-sns__item {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-sns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.5625rem;
  }
  .p-sns__item {
    margin-bottom: 0;
    margin-left: 2.5rem;
  }
}

.p-skill {
  margin-top: 70px;
}
.p-skill__content {
  margin-top: 35px;
}
.p-skill__item--bold {
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-skill__item--bold {
    font-size: 1.25rem;
    margin-top: 0.9375rem;
  }
}
.p-skill__item {
  margin-top: 5px;
}
.p-skill__item li {
  list-style: inside;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-skill {
    margin-top: 9.375rem;
  }
  .p-skill__content {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
    margin-top: 2.8125rem;
  }
  .p-skill__item--bold {
    font-size: 1.25rem;
    margin-top: 0.9375rem;
  }
}

.p-work {
  margin-top: 70px;
}
.p-work__img {
  background-color: #87E1ED;
  width: 250px;
  height: 150px;
  margin: auto;
  margin-top: 30px;
}
.p-work__content {
  width: 250px;
  margin: auto;
}
.p-work__text--bold {
  font-weight: bold;
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 17px;
}
.p-work__text--normal {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-work {
    margin-top: 9.375rem;
  }
  .p-work__img {
    width: 40rem;
    height: 25rem;
    margin-top: 6.25rem;
  }
  .p-work__content {
    width: 40rem;
    margin: auto;
  }
  .p-work__text--bold {
    margin: 0 1.25rem;
    margin-top: 2.5rem;
  }
  .p-work__text--normal {
    margin: 0 1.25rem;
    margin-top: 1.25rem;
  }
}

.p-contact {
  margin-top: 70px;
  margin-bottom: 100px;
}
.p-contact__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact__button {
  display: block;
  border: solid 1px #000;
  border-radius: 1.25rem;
  background-color: #DDEFFF;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
}
.p-contact__text {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-contact {
    margin-top: 9.375rem;
  }
  .p-contact__button {
    font-weight: bold;
    font-size: 1.25rem;
    margin-top: 4.125rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .p-contact__text {
    margin-top: 25px;
  }
}

.p-footer {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer {
    display: block;
    margin-top: 9.375rem;
    margin-bottom: 3.125rem;
    border-top: solid 2px #000;
    border-bottom: solid 2px #000;
  }
  .p-footer__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
        -ms-flex-pack: end;
            justify-content: end;
    font-size: 1.5rem;
    font-family: "keedy-sans", sans-serif;
    gap: 2rem;
    padding: 1.25rem 0;
  }
}

.p-profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 136px;
}
.p-profile__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-profile__main {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-profile__name {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.p-profile__name h1 {
  font-size: 24px;
  letter-spacing: 0.16em;
  border-bottom: solid 2px #000;
}
.p-profile__name p {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.15em;
}
.p-profile__sns {
  margin-top: 30px;
}
.p-profile__photo {
  height: 150px;
}
.p-profile__text {
  margin-top: 40px;
  line-height: 180%;
}
@media screen and (min-width: 768px) {
  .p-profile {
    margin-top: 18.125rem;
  }
  .p-profile__block {
    width: 56.25rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-profile__name h1 {
    font-size: 3rem;
    letter-spacing: 0.3em;
    border-bottom: solid 2px #000;
  }
  .p-profile__name p {
    font-size: 2.25rem;
    font-weight: bold;
    letter-spacing: 0.3em;
  }
  .p-profile__sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-profile__photo {
    height: 21.875rem;
  }
  .p-profile__text {
    width: 50rem;
    margin-top: 7.1875rem;
  }
}

.p-about-skill {
  margin-top: 70px;
}
.p-about-skill__content {
  margin-top: 11px;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.p-about-skill__item {
  list-style: inside;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-about-skill {
    margin-top: 6.25rem;
  }
  .p-about-skill__wrap {
    padding: 0 6.25rem;
    margin-top: 3.125rem;
  }
  .p-about-skill__content {
    margin-top: 1rem;
  }
  .p-about-skill__content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .p-about-skill__item {
    font-size: 1.5rem;
  }
}

.p-graph {
  height: 16px;
  background: #888888;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto 0;
}

.p-graph__100 {
  -webkit-animation: graphAnim 2s forwards;
          animation: graphAnim 2s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@-webkit-keyframes graphAnim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes graphAnim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.p-graph__90 {
  -webkit-animation: graphAnim90 1.8s forwards;
          animation: graphAnim90 1.8s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@-webkit-keyframes graphAnim90 {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
@keyframes graphAnim90 {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}

.p-graph__80 {
  -webkit-animation: graphAnim80 1.6s forwards;
          animation: graphAnim80 1.6s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@-webkit-keyframes graphAnim80 {
  0% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}
@keyframes graphAnim80 {
  0% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}

.p-graph__70 {
  -webkit-animation: graphAnim70 1.4s forwards;
          animation: graphAnim70 1.4s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@-webkit-keyframes graphAnim70 {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}
@keyframes graphAnim70 {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

.p-about-tool {
  margin-top: 70px;
}
.p-about-tool__item {
  margin-top: 18px;
}
.p-about-tool__item li {
  font-weight: bold;
  font-size: 16px;
  list-style: inside;
  letter-spacing: 0.2em;
  line-height: 180%;
}
@media screen and (min-width: 768px) {
  .p-about-tool {
    margin-top: 6.25rem;
  }
  .p-about-tool__item {
    margin-top: 3.125rem;
    padding-left: 6.25rem;
  }
  .p-about-tool__item li {
    font-size: 1.5rem;
    line-height: 200%;
  }
}

.p-about-favorite {
  margin-top: 70px;
}
.p-about-favorite__wrap {
  display: inline-block;
  border: solid 2px #000;
}
.p-about-favorite__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 0 0.9375rem;
}
.p-about-favorite__item {
  padding: 5px;
  letter-spacing: 0.1em;
  line-height: 200%;
}
@media screen and (min-width: 768px) {
  .p-about-favorite {
    margin-top: 6.25rem;
  }
  .p-about-favorite__title {
    font-size: 2rem;
    text-align: start;
    margin-left: 11.5625rem;
    letter-spacing: 0.2em;
  }
  .p-about-favorite__item {
    padding: 1.25rem;
  }
}

.p-works {
  margin-top: 136px;
}
.p-works__title {
  letter-spacing: 0.3em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.p-works__item {
  max-width: 323px;
  margin: 60px auto 0;
}
.p-works__item img {
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #87E1ED;
}
.p-works__text--bold {
  font-weight: bold;
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 15px;
}
.p-works__text--normal {
  line-height: 160%;
}
.p-works__button {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-works {
    margin-top: 14.0625rem;
  }
  .p-works__title {
    font-size: 3rem;
  }
  .p-works__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 6.25rem;
  }
  .p-works__item {
    max-width: 26.25rem;
    margin-top: 5rem;
  }
  .p-works__text--bold {
    font-size: 1.25rem;
  }
  .p-works__text--normal {
    line-height: 160%;
  }
}

.p-works-category {
  margin-top: 15px;
  border: solid 2px #000;
}
.p-works-category__title {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 0 0.9375rem;
}
.p-works-category__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  padding: 30px 5px;
}
.p-works-category__item {
  display: inline-block;
  font-weight: bold;
  border: solid 1px #000;
  padding: 10px 5px;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .p-works-category__title {
    text-align: start;
    font-size: 2rem;
    margin-left: 11.5625rem;
  }
  .p-works-category__list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.625rem;
  }
  .p-works-category__item {
    font-size: 1rem;
  }
}

.p-nav {
  position: fixed;
  top: 0;
  left: 100%;
  padding: 100px 100px 45px 100px;
  font-size: 16px;
  background-color: #DDEFFF;
  opacity: 0.9;
  z-index: 9;
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-nav.js-open {
  left: 0;
}
.p-nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-nav__works {
  grid-column: 2/3;
  margin-left: auto;
}
.p-nav__about {
  margin-bottom: 40px;
}
.p-nav__x {
  grid-column: 1/3;
  margin-bottom: 16px;
}
.p-nav__github {
  grid-column: 1/3;
  margin-bottom: 16px;
}
.p-nav__codepen {
  grid-column: 1/3;
  margin-bottom: 16px;
}
.p-nav__contact {
  grid-column: 1/3;
  border: solid 2px #000;
  font-size: 24px;
  font-weight: bold;
  padding: 16px 12px;
  width: 100%;
  margin: auto;
  text-align: center;
  background-color: #87E1ED;
}
@media screen and (min-width: 768px) {
  .p-nav {
    display: none;
  }
}

.p-contact-form {
  margin-top: 136px;
}
.p-contact-form__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.p-contact-form__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
}
.p-contact-form__title--ja {
  letter-spacing: 0.3em;
  border-bottom: solid 2px #000;
}
.p-contact-form__title--en {
  font-size: 20px;
  letter-spacing: 0.15em;
}
.p-contact-form__text {
  line-height: 170%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
  margin-top: 21px;
}
.p-contact-form__type-check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-contact-form__textarea {
  border: solid 2px #000;
  max-width: 305px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .p-contact-form {
    max-width: 56.875rem;
  }
  .p-contact-form__title--ja {
    font-size: 3rem;
  }
  .p-contact-form__title--en {
    font-size: 1.5rem;
  }
  .p-contact-form__text {
    margin-top: 3.0625rem;
    line-height: 160%;
  }
  .p-contact-form__textarea {
    min-width: 49.375rem;
  }
  .p-contact-form__type {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

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

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

.u-separate {
  margin-top: 24px;
  margin-bottom: 24px;
}

.u-font--red {
  color: #E52C2C;
}
.u-font--red a {
  color: #E52C2C;
}

.u-margin--0 {
  margin-bottom: 0;
}

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

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

@media screen and (min-width: 768px) {
  .u-margin--24-pc {
    margin-bottom: 1.5rem;
  }
}

.u-leeter-spacing--0 {
  letter-spacing: 0;
}/*# sourceMappingURL=style.css.map */