@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  object-fit: contain;
  display: block;
}

* {
  color: #131313;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

h1, h2, h3 {
  font-weight: 900;
}

.l-page {
  padding-top: 100px;
  background-color: #6CD9FF;
}
@media (max-width: 767.8px) {
  .l-page {
    padding-top: 80px;
  }
}
.l-page__mainvisual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  background-color: #004487;
}
@media (max-width: 767.8px) {
  .l-page__mainvisual {
    height: 120px;
  }
}
.l-page__mainvisual h1 {
  color: #fff;
  display: inline-block;
  position: relative;
  font-size: 48px;
}
@media (max-width: 767.8px) {
  .l-page__mainvisual h1 {
    font-size: 32px;
  }
}

.l-kv {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #ECECEC;
  z-index: 1;
}
.l-kv__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  height: 100%;
  margin-inline: auto;
  padding-top: 100px;
  align-items: center;
}
@media (max-width: 767.8px) {
  .l-kv__inner {
    display: flex;
    flex-direction: column;
    padding-top: 20vh;
  }
}
.l-kv__text--404 {
  margin-top: 100px;
}
@media (max-width: 767.8px) {
  .l-kv__text--404 {
    margin-top: 80px;
  }
}
.l-kv__greeting {
  font-weight: 900;
  font-size: 48px;
  line-height: 1.2;
}
@media (max-width: 767.8px) {
  .l-kv__greeting {
    font-size: 32px;
  }
}
.l-kv__name {
  font-weight: 900;
  font-size: 48px;
  line-height: 1.2;
  color: #6CD9FF;
}
@media (max-width: 767.8px) {
  .l-kv__name {
    font-size: 32px;
  }
}
.l-kv__image {
  height: 100%;
  display: flex;
  align-items: end;
}
.l-kv__image img {
  width: 100%;
}
.l-kv__loop-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  align-items: center;
  overflow: hidden;
  height: 180px;
  width: 100%;
  transform: translateX(-50%);
  z-index: -1;
  inset: 100px auto auto 50%;
}
@media (max-width: 767.8px) {
  .l-kv__loop-wrap {
    display: none;
  }
}
.l-kv__loop-area {
  width: 100%;
  height: 60px;
  display: flex;
}
.l-kv__loop-area--top {
  animation: loop-slide 50s infinite linear;
  background: url(../../../src/images/kv-top.png) repeat-x;
}
.l-kv__loop-area--top.not-found {
  background: url(../../../src/images/404/kv-top.png) repeat-x;
}
.l-kv__loop-area--mid {
  animation: loop-slide-reverse 50s infinite linear;
  background: url(../../../src/images/kv-mid.png) repeat-x;
}
.l-kv__loop-area--mid.not-found {
  background: url(../../../src/images/404/kv-mid.png) repeat-x;
}
@keyframes loop-slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -3643px 0;
  }
}
@keyframes loop-slide-reverse {
  from {
    background-position: 0 0; /* 右端スタート */
  }
  to {
    background-position: 3643px 0; /* 左端に移動 */
  }
}
.l-kv__btn {
  margin-top: 1rem;
  width: 200px;
}
.l-kv__btn a {
  position: relative;
  top: 0;
  display: block;
  padding: 1rem 0;
  background-color: #6CD9FF;
  box-shadow: 0 9px #004487;
  border-radius: 5px;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.l-kv__btn a:hover {
  top: 9px;
  box-shadow: 0 0 #004487;
}
.l-kv__scroll-down {
  position: absolute;
  bottom: 0%;
  right: 50%;
  animation: arrowmove 3s ease-in-out infinite;
}
@media (max-width: 767.8px) {
  .l-kv__scroll-down {
    display: none;
  }
}
.l-kv__scroll-down::before {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -6px;
  width: 2px;
  height: 20px;
  background: #131313;
  transform: skewX(-31deg);
}
.l-kv__scroll-down::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 2px;
  height: 85px;
  background: #131313;
}
.l-kv__scroll-down a {
  position: absolute;
  left: -24px;
  bottom: 17px;
  color: #131313;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
}
@keyframes arrowmove {
  0% {
    bottom: 0%;
  }
  50% {
    bottom: 3%;
  }
  00% {
    bottom: 0%;
  }
}

.l-inner {
  width: 1024px;
  gap: 40px;
}
@media (max-width: 767.8px) {
  .l-inner {
    width: calc(100% - 80px);
  }
}

.l-footer {
  width: 100%;
  padding: 8px;
  background-color: #808080;
  text-align: center;
}
.l-footer small {
  color: #fff;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
}
.fade-in--01 {
  transition: opacity 0.5s ease-out, transform 0.5s ease-out !important;
}
.fade-in--02 {
  transition: opacity 1s ease-out, transform 1s ease-out !important;
}
.fade-in--03 {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out !important;
}

.fade-down {
  opacity: 1;
  translate: 0;
  transition: opacity 1s ease, translate 1s ease;
}
@starting-style {
  .fade-down {
    opacity: 0;
    translate: 0 -50px;
  }
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767.8px) {
  .c-heading {
    text-align: center;
  }
}
.c-heading h1, .c-heading h2 {
  color: #6CD9FF;
  display: inline-block;
  position: relative;
  font-size: 64px;
  z-index: 1;
}
@media (max-width: 767.8px) {
  .c-heading h1, .c-heading h2 {
    font-size: 48px;
  }
}
.c-heading h1::after, .c-heading h2::after {
  display: block;
  position: absolute;
  font-family: "Caveat", cursive;
  font-weight: 900;
  font-size: 120px;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ECECEC;
}
@media (max-width: 767.8px) {
  .c-heading h1::after, .c-heading h2::after {
    font-size: 96px;
  }
}
.c-heading.center {
  text-align: center;
}

.c-hamburger {
  display: none;
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 767.8px) {
  .c-hamburger {
    display: block;
  }
}
.c-hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #6CD9FF;
  transition: all 0.6s;
}
.c-hamburger__line:nth-of-type(1) {
  top: 14px;
}
.c-hamburger__line:nth-of-type(2) {
  top: 23px;
}
.c-hamburger__line:nth-of-type(3) {
  top: 32px;
}
.c-hamburger.active .c-hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.c-hamburger.active .c-hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.active .c-hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.p-nav {
  width: 100%;
  height: 6.25rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #FFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.8px) {
  .p-nav {
    height: 80px;
  }
}
.p-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}
@media (max-width: 767.8px) {
  .p-nav__inner {
    padding: 14px;
  }
}
.p-nav__logo {
  position: relative;
}
.p-nav__logo a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-nav__logo img {
  display: block;
  height: 52px;
}
.p-nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767.8px) {
  .p-nav__list {
    display: none;
  }
}
.p-nav__item a {
  text-decoration: none;
  color: #131313;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  border-bottom: 2px;
  position: relative;
}
.p-nav__item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #6CD9FF;
  bottom: -5px;
  transform: scale(0, 1);
  transition: transform 0.5s;
  transform-origin: center top;
}
@media (any-hover: hover) {
  .p-nav__item a:hover {
    color: #6CD9FF;
  }
  .p-nav__item a:hover::after {
    transform: scale(1, 1);
  }
}
.p-nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #004487;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 9;
}
.p-nav__overlay.active {
  visibility: visible;
  opacity: 1;
}
.p-nav__overlay.active .p-nav__overlay-item {
  opacity: 1;
  transform: translateY(0);
}
.p-nav__overlay.active .p-nav__overlay-item:nth-child(1) {
  transition-delay: 0.1s;
}
.p-nav__overlay.active .p-nav__overlay-item:nth-child(2) {
  transition-delay: 0.2s;
}
.p-nav__overlay.active .p-nav__overlay-item:nth-child(3) {
  transition-delay: 0.3s;
}
.p-nav__overlay.active .p-nav__overlay-item:nth-child(4) {
  transition-delay: 0.4s;
}
.p-nav__overlay.active .p-nav__overlay-item:nth-child(5) {
  transition-delay: 0.5s;
}
.p-nav__overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.p-nav__overlay-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-nav__overlay-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
.p-nav__overlay-link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}
.p-nav__overlay-link:hover {
  color: #4a90e2;
}

.p-about {
  width: 100%;
  padding: 48px 0;
}
.p-about__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.p-about__heading h2::after {
  content: "ABOUT";
}
.p-about__profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 88px;
}
@media (max-width: 767.8px) {
  .p-about__profile {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.p-about__pic {
  display: block;
  width: 100%;
}
.p-about__pic img {
  width: 100%;
  max-width: 30vw;
  height: auto;
  border-radius: 50%;
}
@media (max-width: 767.8px) {
  .p-about__pic img {
    max-width: 60vw;
    margin-inline: auto;
  }
}
.p-about__desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-about__name {
  font-size: 24px;
  font-weight: 700;
}

.p-career {
  width: 100%;
  padding: 48px 0;
}
.p-career__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.p-career__heading h2::after {
  content: "CAREER";
}
.p-career__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-career__history {
  display: grid;
  grid-template-columns: 150px auto;
}
@media (max-width: 767.8px) {
  .p-career__history {
    display: flex;
    flex-direction: column;
  }
}
.p-career__year {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 8px;
  padding-right: 16px;
  border-right: solid 3px #6CD9FF;
}
@media (max-width: 767.8px) {
  .p-career__year {
    flex-direction: row;
    padding: 0 0 16px;
    border-right: 0px #6CD9FF;
    border-bottom: solid 3px #6CD9FF;
  }
}
.p-career__year span {
  font-size: 24px;
  font-weight: 700;
  color: #6CD9FF;
}
@media (max-width: 767.8px) {
  .p-career__hyphen {
    display: none;
  }
}
.p-career__hyphen.sp {
  display: none;
}
@media (max-width: 767.8px) {
  .p-career__hyphen.sp {
    display: inline-block;
  }
}
.p-career__desc {
  padding: 24px;
  margin-left: 16px;
  background-color: #ECECEC;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 15px 100%, 0 100%);
}
@media (max-width: 767.8px) {
  .p-career__desc {
    margin: 16px 0 0;
  }
}

.p-skill {
  width: 100%;
  padding: 48px 0;
}
.p-skill__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.p-skill__heading h2::after {
  content: "SKILL";
}
.p-skill__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 767.8px) {
  .p-skill__content {
    display: flex;
    flex-direction: column;
  }
}
.p-skill__box {
  padding: 24px;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  background-color: #ECECEC;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 15px 100%, 0 100%);
}
.p-skill__icon {
  margin-inline: auto;
  height: 160px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.8px) {
  .p-skill__icon {
    aspect-ratio: 4/3;
  }
}
.p-skill__icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.p-skill__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-skill__name {
  color: #004487;
  font-size: 1.5rem;
}
.p-skill__desc {
  text-align: left;
}

.p-work {
  width: 100%;
  padding: 48px 0;
}
.p-work__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.p-work__heading h2::after {
  content: "WORK";
}
.p-work__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 767.8px) {
  .p-work__list {
    flex-direction: column;
  }
}
.p-work__item {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px;
  background-color: #004487;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 15px 100%, 0 100%);
  transition: transform 0.3s ease;
}
.p-work__item:nth-child(1) {
  background-color: #6CD9FF;
}
.p-work__item:nth-child(2) {
  background-color: #ECECEC;
}
.p-work__item:nth-child(3) h3 {
  color: #fff;
}
.p-work__item a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-work__item:hover {
    transform: scale(1.05);
  }
}
.p-work__thumb {
  width: 100%;
}
.p-work__thumb img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}
.p-work__title {
  text-align: center;
}

.p-contact {
  width: 100%;
  margin-top: 48px;
  padding: 3rem 0;
  background-color: #ECECEC;
}
.p-contact__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.p-contact__heading h2 {
  color: #004487;
}
.p-contact__heading h2::after {
  color: #fff;
  content: "CONTACT";
}
.p-contact__form-wrapper {
  width: 880px;
  min-width: 80%;
  margin: 0 auto;
  padding: 32px 80px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #fff;
}
@media (max-width: 767.8px) {
  .p-contact__form-wrapper {
    width: 100%;
    padding: 24px;
  }
}
.p-contact__row {
  width: 100%;
}
.p-contact__row p {
  text-align: left;
}
.p-contact__row p label {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 8px;
}
.p-contact__row p label.required::after {
  content: "必須";
  display: inline-block;
  padding: 0.2rem;
  margin-left: 0.3rem;
  background-color: #ff0000;
  color: #fff;
  font-size: 12px;
}
.p-contact__row p input, .p-contact__row p textarea {
  width: 100%;
  font-size: 1rem;
  padding: 1rem 0.5rem;
}
.p-contact__radio label {
  display: flex !important;
  gap: 8px;
  font-size: 1rem !important;
}
.p-contact__radio label input {
  width: auto;
}
.p-contact__group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-contact__submit {
  text-align: center;
}
.p-contact__submit input {
  width: 120px;
  background-color: #6CD9FF;
  padding: 0.5rem 1rem;
  color: #fff;
  border: none;
  font-size: 1.2rem;
}
.p-contact__submit span {
  display: none;
}

.p-single {
  width: 100%;
  padding: 48px 0 0;
}
.p-single__inner {
  margin-inline: auto;
  background-color: #fff;
  padding: 48px;
  width: 880px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767.8px) {
  .p-single__inner {
    width: auto;
    padding: 24px;
    margin-inline: 24px;
  }
}
.p-single__thumbnail {
  width: 100%;
}
.p-single__thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
}
.p-single__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-single__item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 767.8px) {
  .p-single__item {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
.p-single__term {
  width: 10rem;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 767.8px) {
  .p-single__term {
    width: 7rem;
  }
}
.p-single__desc {
  flex: 1;
}
.p-single__desc a {
  color: #6CD9FF;
  word-wrap: break-word;
}
.p-single__text-box {
  background-color: #ECECEC;
  padding: 1rem 2rem;
  flex-direction: column;
  display: flex;
  gap: 1rem;
}
.p-single__text-box h3 {
  text-align: center;
  font-size: 1.5rem;
}
.p-single__text-box p span {
  font-weight: 700;
  font-size: 1.2rem;
}
.p-single__text-box dl {
  display: flex;
  flex-direction: column;
}
.p-single__text-box dl dt {
  font-size: 18px;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}