html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  height: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  color: #303030;
}

li {
  list-style: none;
}

.l-header {
  height: 140px;
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .l-header {
    height: 50px;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .l-header.is-open {
    transform: translateX(0);
  }
  .l-header.is-close {
    transform: translateX(100%);
  }
}

body.no-scroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.l-main__bg {
  position: relative;
  z-index: 0;
  background: linear-gradient(#FFF 0%, #EAE3DD 10%, #41A4BE 71%, #131E3E 100%);
}

.l-main__bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url(../../images/5-fish.svg), url(../../images/2-fish.svg), url(../../images/3-fish.svg), url(../../images/1-fish.svg);
  background-repeat: no-repeat;
  background-position: 98% 45%, 6% 29%, 2% 77%, 85% 97%;
  background-size: 80px, 63px, 87px, 48px;
  pointer-events: none;
}

.l-main__bg--works-page {
  position: relative;
  z-index: 0;
  background: linear-gradient(#FFF 0%, #EAE3DD 10%, #41A4BE 71%, #131E3E 100%);
}

.l-main__bg--works-page::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url(../../images/5-fish.svg);
  background-repeat: no-repeat;
  background-position: 98% 45%;
  background-size: 80px;
  pointer-events: none;
}

.l-main__bg--works-page h1 {
  display: none;
}

.l-footer {
  width: 100%;
  position: relative;
}
.l-footer__bg {
  width: 100%;
  display: block;
}
.l-footer small {
  position: absolute;
  bottom: 8px;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
}
@media (max-width: 1024px) {
  .l-footer small {
    bottom: 4px;
  }
}
@media (max-width: 768px) {
  .l-footer small {
    bottom: 1px;
    font-size: 0.6rem;
  }
}

.c-link-btn {
  padding: 25px;
  text-align: center;
}
@media (max-width: 1024px) {
  .c-link-btn {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .c-link-btn {
    padding: 16px;
  }
}

.c-link-btn__buildup {
  background: #41A4BE;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.4;
  color: #303030;
  color: #FFF;
}
.c-link-btn__buildup .c-link-btn__buildup__jp {
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 1024px) {
  .c-link-btn__buildup,
.c-link-btn__buildup__jp {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .c-link-btn__buildup,
.c-link-btn__buildup__jp {
    font-size: 1.6rem;
  }
}

.p-skills__buildup .c-link-btn__buildup:hover {
  background: #2e7b93;
  transition: 0.3s;
}

.c-link-btn__github {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.c-link-btn__github img {
  width: 20px;
  height: auto;
}

.c-link-btn__github,
.c-link-btn__viewmore {
  background: #555;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.6em;
  line-height: 1.4;
  color: #303030;
  color: #FFF;
  width: 140px;
  padding: 15px 10px;
}
@media (max-width: 768px) {
  .c-link-btn__github,
.c-link-btn__viewmore {
    font-size: 1.4rem;
    width: 125px;
    padding: 12px 7px;
  }
}

.c-link-btn__github:hover,
.c-link-btn__viewmore:hover {
  background: #999;
  transition: 0.3s;
}

.c-text-box {
  margin: 95px;
  padding: 70px;
  background-color: #FFF;
}
@media (max-width: 1024px) {
  .c-text-box {
    margin: 50px;
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .c-text-box {
    margin: 30px;
    padding: 30px;
  }
}

.c-text-box h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.3;
  color: #303030;
  text-align: center;
  padding-bottom: 70px;
}
@media (max-width: 1024px) {
  .c-text-box h2 {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.3;
    color: #303030;
    padding-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .c-text-box h2 {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
    color: #303030;
    padding-bottom: 30px;
  }
}

.c-text-box p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 3.2rem;
  color: #303030;
}
@media (max-width: 1024px) {
  .c-text-box p {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.8rem;
    color: #303030;
  }
}
@media (max-width: 768px) {
  .c-text-box p {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 2.4rem;
    color: #303030;
  }
}

.p-header-nav {
  height: 100%;
}
.p-header-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  height: 100%;
}
.p-header-nav__list-item {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.3;
  color: #303030;
}

@media (max-width: 1024px) {
  .l-header.is-open .p-header-nav__list {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px;
  }
}
.l-header.is-open .p-header-nav__list-item a {
  color: #FFF;
}
.l-header.is-open .p-header-nav__list-item a:hover {
  color: #999;
}

@media (max-width: 1024px) {
  .l-header.is-close a {
    font-size: 0;
  }
}

.p-header-nav__btn {
  display: none;
}
@media (max-width: 1024px) {
  .p-header-nav__btn {
    height: 50px;
    width: 50px;
    display: block;
    position: absolute;
    right: 0;
    z-index: 10;
    top: 0;
  }
}

.p-header-nav__btn::before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #41A4BE;
  margin: 0 auto;
}

.p-header-nav__btn.is-open::before {
  display: none;
}

.p-header-nav__btn.is-close span::before {
  position: absolute;
  bottom: 8px;
  left: 0px;
  content: "";
  width: 23px;
  height: 2px;
  background-color: #41A4BE;
  transition: 0.2s;
}
.p-header-nav__btn.is-close span {
  position: absolute;
  top: 24px;
  left: 14px;
  content: "";
  width: 23px;
  height: 2px;
  background-color: #41A4BE;
  font-size: 0;
}
.p-header-nav__btn.is-close span::after {
  position: absolute;
  top: 8px;
  left: 0px;
  content: "";
  width: 23px;
  height: 2px;
  background-color: #41A4BE;
  transition: 0.5s;
}

.p-header-nav__btn.is-open span::before {
  position: absolute;
  bottom: -2px;
  left: 0px;
  content: "";
  width: 23px;
  height: 2px;
  background-color: #FFF;
  transition: 0.2s;
  transform: rotate(-135deg);
}
.p-header-nav__btn.is-open span {
  position: absolute;
  top: 24px;
  left: 14px;
  content: "";
  height: 0;
  font-size: 0;
}
.p-header-nav__btn.is-open span::after {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  width: 23px;
  height: 2px;
  background-color: #FFF;
  transition: 0.2s;
  transform: rotate(-45deg);
}

.p-logo-area {
  height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
}
.p-logo-area h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #303030;
  position: absolute;
  bottom: 45%;
  color: #999;
}
@media (max-width: 1024px) {
  .p-logo-area h1 {
    font-size: 1.8rem;
    bottom: 40%;
  }
}
@media (max-width: 768px) {
  .p-logo-area h1 {
    font-size: 1.6rem;
    bottom: 35%;
  }
}

.p-logo {
  width: 250px;
  display: block;
}
@media (max-width: 1024px) {
  .p-logo {
    width: 143px;
  }
}
@media (max-width: 768px) {
  .p-logo {
    width: 88px;
  }
}

.js-whale {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.js-whale2 {
  position: fixed;
  right: 1%;
  bottom: 0;
  width: 10%;
  z-index: 2;
}
@media (max-width: 768px) {
  .js-whale2 {
    width: 15%;
  }
}

.p-about b {
  font-size: 2.6rem;
}
.p-about h2 {
  padding-bottom: 90px;
}
@media (max-width: 768px) {
  .p-about h2 {
    padding-bottom: 30px;
  }
}

.p-about-wrap {
  display: flex;
  gap: 25px;
}
@media (max-width: 768px) {
  .p-about-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.p-about-wrap img {
  width: 35%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .p-about-wrap img {
    width: 50%;
  }
}

.p-about-wrap__text-area {
  position: relative;
}
.p-about-wrap__text-area .p-about-deco__p {
  padding: 45px;
}
@media (max-width: 768px) {
  .p-about-wrap__text-area .p-about-deco__p {
    padding: 30px;
  }
}
.p-about-wrap__text-area b {
  color: #41A4BE;
}

.p-about-wrap__text-area .p-about-deco__span::before,
.p-about-wrap__text-area .p-about-deco__span::after,
.p-about-wrap__text-area .p-about-deco__p::before,
.p-about-wrap__text-area .p-about-deco__p::after {
  content: "";
  position: absolute;
  background-color: #303030;
}
.p-about-wrap__text-area .p-about-deco__span::before {
  width: 150px;
  height: 1px;
  bottom: 0;
  right: 0;
}
@media (max-width: 768px) {
  .p-about-wrap__text-area .p-about-deco__span::before {
    width: 120px;
    bottom: 15px;
    right: -15px;
  }
}
.p-about-wrap__text-area .p-about-deco__span::after {
  width: 1px;
  height: 100px;
  bottom: -20px;
  right: 20px;
}
@media (max-width: 768px) {
  .p-about-wrap__text-area .p-about-deco__span::after {
    height: 70px;
    bottom: -5px;
    right: 5px;
  }
}
.p-about-wrap__text-area .p-about-deco__p::before {
  width: 150px;
  height: 1px;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .p-about-wrap__text-area .p-about-deco__p::before {
    width: 120px;
    top: 15px;
    left: -15px;
  }
}
.p-about-wrap__text-area .p-about-deco__p::after {
  width: 1px;
  height: 100px;
  top: -20px;
  left: 20px;
}
@media (max-width: 768px) {
  .p-about-wrap__text-area .p-about-deco__p::after {
    height: 70px;
    top: -5px;
    left: 5px;
  }
}

.p-skills__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 30px;
}
@media (max-width: 1024px) {
  .p-skills__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .p-skills__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
}

.p-skills h3 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
  color: #303030;
  text-align: center;
  padding: 15px;
  padding-top: 40px;
}
@media (max-width: 1024px) {
  .p-skills h3 {
    font-size: 1.8rem;
    padding-top: 15px;
  }
}
.p-skills img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .p-skills img {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .p-skills img {
    width: 20%;
    max-width: 90px;
  }
}
.p-skills hr {
  color: #303030;
  width: 80%;
  margin: 70px auto;
}
@media (max-width: 1024px) {
  .p-skills hr {
    margin: 80px auto;
  }
}
@media (max-width: 768px) {
  .p-skills hr {
    margin: 60px auto;
  }
}

@media (max-width: 768px) {
  .p-skills__item {
    align-items: center;
    display: grid;
  }
}

@media (max-width: 768px) {
  .p-skills__item p {
    width: 80%;
    margin: 0 auto;
  }
}

.p-skills__icon-two {
  display: flex;
}
.p-skills__icon-two img:first-child {
  margin-right: 10px;
}
.p-skills__icon-two img:last-child {
  margin-left: 10px;
}

.p-skills__buildup {
  display: grid;
  justify-content: center;
}
.p-skills__buildup .p-skills__h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4;
  color: #303030;
}
@media (max-width: 1024px) {
  .p-skills__buildup .p-skills__h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .p-skills__buildup .p-skills__h2 {
    font-size: 2.2rem;
  }
}
.p-skills__buildup .p-skills__h2 p {
  text-align: center;
  font-size: 2.4rem;
}

.p-skills__buildup b {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 7rem;
  line-height: 1.4;
  color: #303030;
  color: #41A4BE;
}
@media (max-width: 1024px) {
  .p-skills__buildup b {
    font-size: 6rem;
  }
}
@media (max-width: 768px) {
  .p-skills__buildup b {
    font-size: 5rem;
  }
}

.p-skills__buildup .p-skills__buildup__date {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #303030;
}
@media (max-width: 1024px) {
  .p-skills__buildup .p-skills__buildup__date {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .p-skills__buildup .p-skills__buildup__date {
    font-size: 1.4rem;
  }
}

.p-skills__buildup__time-wrap {
  padding: 30px;
  padding-bottom: 80px;
}
.p-skills__buildup__time-wrap p {
  text-align: center;
}

.p-works h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #303030;
  padding: 20px;
}
@media (max-width: 768px) {
  .p-works h3 {
    font-size: 1.6rem;
  }
}
.p-works h3 span {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #303030;
}
@media (max-width: 768px) {
  .p-works h3 span {
    font-size: 1.6rem;
  }
}

.p-works__img {
  width: 100%;
}
@media (max-width: 1024px) {
  .p-works__img {
    width: 80%;
  }
}

.p-works__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .p-works__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 55px;
  }
}
@media (max-width: 768px) {
  .p-works__grid {
    gap: 50px;
  }
}

.p-works__item {
  text-align: center;
  padding-bottom: 40px;
}

.p-works__link-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.p-contact iframe {
  width: 100%;
  height: 950px;
}
@media (max-width: 768px) {
  .p-contact iframe {
    height: 1000px;
  }
}

.p-works-page__logo {
  display: none;
}
@media (max-width: 1024px) {
  .p-works-page__logo {
    display: block;
    padding-left: 20px;
    padding-top: 50px;
    width: 100px;
  }
}

.p-works-page h2 {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4;
  color: #303030;
}
@media (max-width: 1024px) {
  .p-works-page h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .p-works-page h2 {
    font-size: 2.2rem;
  }
}
.p-works-page h2 span {
  font-family: "Poppins", sans-serif;
}

.p-works-page__img {
  width: 80%;
  display: block;
  margin: 0 auto;
  padding-bottom: 50px;
}

.p-works__link-btn-wrap--works-page {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media (max-width: 768px) {
  .p-works__link-btn-wrap--works-page {
    gap: 25px;
  }
}

.p-works-page__text-area {
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #303030;
  padding-top: 70px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .p-works-page__text-area {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .p-works-page__text-area {
    flex-direction: column;
    font-size: 1.2rem;
  }
}

.p-works-page__list-area {
  width: 30%;
  padding: 25px;
}
@media (max-width: 768px) {
  .p-works-page__list-area {
    width: 100%;
    min-height: 400px;
  }
}

.p-works-page__list-items {
  padding-bottom: 2.2rem;
}

.p-works-page__comment-area {
  width: 65%;
  border: 1px solid #303030;
  padding: 25px;
  background: #FFF;
  position: relative;
}
@media (max-width: 1024px) {
  .p-works-page__comment-area {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .p-works-page__comment-area {
    width: 100%;
  }
}
.p-works-page__comment-area hr {
  width: 55%;
  color: #303030;
  margin: 16px 0;
}

.p-works-page__list__indent {
  padding-left: 1.5rem;
}

.p-works-page__list__mark {
  padding-left: 1.5rem;
  list-style-type: "-";
}

.p-works-page__comment-area__fish {
  width: 50px;
  position: absolute;
  right: 20px;
  bottom: 12px;
}
@media (max-width: 768px) {
  .p-works-page__comment-area__fish {
    width: 35px;
    right: 5px;
    bottom: 5px;
  }
}

.p-works-page .u-space {
  padding-bottom: 1.8rem;
}

.p-about .u-space {
  padding-bottom: 2.5rem;
}
@media (max-width: 1024px) {
  .p-about .u-space {
    padding-bottom: 1.8rem;
  }
}
/*# sourceMappingURL=style.css.map */