@charset "UTF-8";
/*--------------------------------
style
---------------------------------*/
@font-face {
  font-family: "Number";
  src: local("Arial");
  unicode-range: u+0030-0039;
}
body {
  margin: 0 auto;
  font-family: "Number", "Catamaran", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

.section-title {
  display: flex;
  gap: 64px;
  align-items: baseline;
}
.section-title__heading {
  font-size: 2.5rem;
  font-weight: 500;
  color: #111111;
}
.section-title__description {
  letter-spacing: 0.1rem;
  color: #111111;
}

@media (max-width: 768px) {
  .section-title {
    gap: 0;
    flex-direction: column;
    text-align: center;
    display: block;
  }
}
.fade-in {
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.page-top__button {
  position: fixed;
  right: 5%;
  bottom: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: transparent;
  border: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}
.page-top__button p {
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
  height: 85px;
  margin: 0;
  letter-spacing: 0.2rem;
  text-align: right;
  font-size: 12px;
  color: #111;
}
.page-top__button p:before {
  content: "";
  position: absolute;
  top: 30px;
  right: -13px;
  width: 2px;
  height: 15px;
  background: #111;
  transform: skew(-150deg);
}
.page-top__button p:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 2px;
  height: 55px;
  background: #111;
}

.is-active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .page-top__button {
    right: 10%;
  }
}
/*--------------------------------
header
---------------------------------*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  padding: 24px 0;
  z-index: 100;
}
.header__menu-list {
  display: flex;
  gap: 48px;
  transition: all 0.3s ease-in-out;
  padding-right: 48px;
}
.header__menu-item {
  padding-bottom: 12px;
}
.header__menu-link {
  color: #fff;
  transition: color 0.3s ease;
}
.header__menu-link:hover {
  color: #999999;
  transition: 0.3s ease-in-out;
}

.header.scrolled .header__menu-link {
  color: #111111;
}

.sp-header.active {
  top: 0;
}

.sp-header {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  align-items: center;
  transition: top 0.5s ease;
  background-image: url("../../img/menu.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* ボタン外側 */
  /* ボタン内側 */
  /* クリック前 */
  /* クリック後 activeをクラス付与して線が回転して×に */
}
.sp-header__menu-list {
  display: block;
  padding-top: 64px;
  transition: transform all 1s ease-in-out;
  position: relative;
  transform: translateX(-100%);
}
.sp-header__menu-list.active {
  transform: translateX(0);
}
.sp-header__menu-item {
  padding-bottom: 24px;
  text-align: center;
}
.sp-header__menu-link {
  color: #fff;
  transition: color 0.3s ease;
}
.sp-header__menu-link:hover {
  color: #999999;
  transition: 0.3s ease-in-out;
}
.sp-header__open-btn {
  position: fixed;
  top: 2%;
  left: 5%;
  width: 30px;
  height: 50px;
  cursor: pointer;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-header__open-btn::after {
  content: "MENU";
  color: #fff;
  font-size: 12px;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 400;
  top: 0;
  left: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}
.sp-header__open-btn.scrolled::after {
  color: #111111;
}
.sp-header__open-btn.active::after {
  content: "CLOSE";
}
.sp-header__open-btn span {
  display: inline-block;
  transition: all 0.4s;
  top: 0;
  left: 5%;
  height: 2px; /* 線の太さ */
  background-color: #fff;
}
.sp-header__open-btn span:nth-of-type(1) {
  width: 100%;
  margin-top: 8px;
}
.sp-header__open-btn span:nth-of-type(2) {
  width: 100%;
  margin-top: 8px;
}
.sp-header__open-btn.active span:nth-of-type(1) {
  top: 20px;
  right: 16px;
  transform: translateY(5px) rotate(-45deg);
}
.sp-header__open-btn.active span:nth-of-type(2) {
  top: 30px;
  right: 16px;
  transform: translateY(-5px) rotate(45deg);
}

.sp-header__open-btn.scrolled span {
  background-color: #111111;
}

@media (max-width: 768px) {
  .header__menu-list {
    display: none;
  }
  .sp-header__open-btn {
    display: flex;
  }
}
/*--------------------------------
main-visual
---------------------------------*/
.main-visual {
  width: 100%;
  position: relative;
  margin-left: auto;
  height: 100vh;
}
.main-visual__area {
  width: 100%;
  height: 100vh;
}
.main-visual__sp {
  display: none;
}
.main-visual__img {
  width: 80%;
  height: 100vh;
  position: relative;
  margin-left: auto;
}
.main-visual__img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.main-visual__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.main-visual__text {
  position: absolute;
  top: 40%;
  left: 5%;
}
.main-visual__heading {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  z-index: 2;
  color: #111111;
}
.main-visual__subtitle {
  font-size: 4rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  z-index: 2;
  color: #111111;
}
.main-visual__description {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  z-index: 2;
  color: #111111;
}
.main-visual__scroll {
  position: absolute;
  bottom: 15%;
  left: 5%;
  color: #111111;
  transform: rotate(90deg);
}
.main-visual__scroll a {
  position: relative;
  display: inline-block;
  letter-spacing: 0.2rem;
  color: #111111;
}
.main-visual__scroll a::before {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 1px;
  background-color: #111;
  top: -20px;
  left: 0;
  animation: moveLine 2s infinite;
}
@keyframes moveLine {
  0% {
    width: 0;
  }
  100% {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .main-visual {
    overflow: hidden;
  }
  .main-visual__text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .main-visual__heading {
    font-size: 3rem;
    color: #111111;
    width: 300px;
  }
  .main-visual__description {
    color: #111111;
  }
  .main-visual__pc {
    display: none;
  }
  .main-visual__sp {
    display: block;
  }
  .main-visual__img {
    width: 100%;
  }
  .main-visual__scroll {
    bottom: 5%;
    left: 1%;
  }
  .main-visual__scroll a {
    color: #fff;
    font-size: 12px;
  }
  .main-visual__scroll a::before {
    background-color: #fff;
    top: -10px;
    left: 0;
    animation: moveLine 2s infinite;
  }
}
/*--------------------------------
works
---------------------------------*/
.works {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 120px;
  padding-left: 5%;
  padding-right: 5%;
}
.works__area {
  position: relative;
}
.works__items {
  padding-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  align-items: stretch;
}
.works__item {
  padding-bottom: 48px;
  z-index: 10;
}
.works__image {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease-in-out;
}
.works__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0.5px solid #aeaeae;
  transition: opacity 0.3s ease-in-out;
  object-fit: cover;
}
.works__image img:hover {
  opacity: 0.7;
}
.works__title {
  padding: 12px;
}
.works__button {
  display: flex;
  padding-left: 12px;
  align-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.works__button p {
  color: #111;
}

.arrow {
  position: relative;
  width: 50px;
  margin: 30px;
  transition: transform 0.3s ease;
}
.arrow__line01 {
  height: 1px;
  background-color: #111;
}
.arrow__line02 {
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: right bottom;
  width: 8px;
  height: 1px;
  background-color: #111;
  transform: rotate(45deg);
}
.arrow:hover {
  cursor: pointer;
  transform: translateX(5px);
}
.arrow::after {
  position: absolute;
  top: -30px;
  content: "";
  border: 1px solid;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-color: #111;
}

@media (max-width: 768px) {
  .works__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*--------------------------------
profile
---------------------------------*/
.profile {
  padding-top: 120px;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 1280px;
  margin: 0 auto;
}
.profile__item {
  padding-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  align-items: center;
}
.profile__image {
  width: 100%;
}
.profile__heading {
  font-size: 1.2rem;
  font-weight: 400;
  padding-bottom: 24px;
}
.profile__text {
  padding-bottom: 6px;
}

@media (max-width: 768px) {
  .profile {
    padding-top: 64px;
  }
  .profile__item {
    grid-template-columns: repeat(1, 1fr);
  }
  .profile__heading {
    font-size: 1rem;
    padding: 0 12px 24px;
  }
  .profile__text {
    padding: 0 12px 6px;
  }
}
/*--------------------------------
skill
---------------------------------*/
.skill {
  padding-top: 120px;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 120px;
  max-width: 1280px;
  margin: 0 auto;
}
.skill__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  padding-top: 64px;
  align-items: center;
}
.skill__image {
  display: inline-block;
  width: 100%;
  position: relative;
}
.skill__image:after {
  position: absolute;
  content: "";
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.5);
  transform: rotate(3deg);
  right: 5px;
  left: auto;
  top: auto;
  bottom: 15px;
  z-index: -1;
  width: 50%;
  height: 20%;
}
.skill__content {
  width: 100%;
}
.skill__heading {
  font-weight: 400;
  padding-bottom: 24px;
}
.skill__text {
  line-height: 2rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  .skill {
    max-width: 1280px;
  }
  .skill__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .skill__image {
    order: 2;
  }
  .skill__content {
    order: 1;
  }
  .skill__heading {
    font-weight: 400;
    padding: 0 12px 24px;
  }
  .skill__text {
    line-height: 2rem;
    letter-spacing: 0.1rem;
    padding: 0 12px;
  }
}
.skill-details {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 64px;
}
.skill-details__heading {
  text-align: center;
  padding: 64px;
  font-size: 2rem;
  font-weight: 500;
}
.skill-details__item {
  display: flex;
  align-items: center;
  padding: 48px 0;
  border-bottom: 0.5px solid #6f4f97;
}
.skill-details__title {
  width: 25%;
  letter-spacing: 0.1rem;
}
.skill-details__description {
  width: 70%;
  letter-spacing: 0.1rem;
  line-height: 1.8rem;
}

@media (max-width: 700px) {
  .skill-details__heading {
    padding: 24px;
  }
  .skill-details__item {
    flex-direction: column;
  }
  .skill-details__title {
    width: 100%;
    padding: 0 0 12px 12px;
  }
  .skill-details__description {
    width: 100%;
    padding: 0 12px;
  }
}
.skill-license {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 64px;
}
.skill-license__item {
  display: flex;
  padding: 48px 0;
  border-bottom: 0.5px solid #6f4f97;
}
.skill-license__item-left {
  width: 30%;
}
.skill-license__title {
  padding-bottom: 24px;
  text-align: center;
  font-size: 1.2rem;
}
.skill-license__logo {
  width: 100%;
  text-align: center;
}
.skill-license__logo img {
  vertical-align: bottom;
  width: 60%;
}
.skill-license__item-right {
  width: 70%;
}
.skill-license__date {
  display: flex;
}
.skill-license__date p {
  padding-right: 48px;
  padding-bottom: 16px;
  letter-spacing: 0.15rem;
}
.skill-license__description {
  line-height: 2rem;
}

@media (max-width: 768px) {
  .skill-license {
    padding: 32px 0 0;
  }
  .skill-license__item {
    flex-direction: column;
    padding-top: 12px;
  }
  .skill-license__item-left {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    position: relative;
  }
  .skill-license__title {
    padding-bottom: 0;
    text-align: center;
  }
  .skill-license__logo {
    width: 10%;
  }
  .skill-license__logo img {
    width: 100%;
  }
  .skill-license__item-right {
    width: 100%;
    padding-top: 24px;
  }
  .skill-license__date {
    display: flex;
    justify-content: center;
  }
  .skill-license__date p {
    padding-right: 48px;
    padding-bottom: 16px;
    letter-spacing: 0.15rem;
  }
  .skill-license__description {
    line-height: 2rem;
  }
}
/*--------------------------------
contact
---------------------------------*/
.contact {
  padding-top: 120px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.contact__area {
  position: relative;
  height: 60vh;
}
.contact__image {
  width: 100%;
  height: 100%;
}
.contact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__item {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 2%;
}
.contact__text {
  letter-spacing: 0.1rem;
  line-height: 2rem;
  text-wrap: balance;
  padding-bottom: 12px;
}
.contact__button {
  margin-top: 24px;
  padding: 24px 24px;
  background-color: #fff;
  width: 320px;
  margin: 36px auto;
  position: relative;
  overflow: hidden;
  border: 0.5px solid #676767;
}
.contact__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #676767;
  transition: all 0.5s ease;
  z-index: 0;
}
.contact__button:hover::before {
  left: 0;
}
.contact__button:hover .contact__link {
  color: #fff;
}
.contact__link {
  color: #111;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  position: relative;
  z-index: 1;
}
.contact__link::after {
  position: absolute;
  content: "";
  bottom: 20px;
  right: -30px;
  width: 15px;
  height: 15px;
  border: 2px solid;
  border-color: #111 #111 transparent transparent;
  transform: rotate(45deg);
}
.contact__button:hover .contact__link::after {
  border-color: #fff #fff transparent transparent;
}

@media (max-width: 768px) {
  .contact__area {
    height: 80vh;
  }
}
/*--------------------------------
footer
---------------------------------*/
.footer {
  margin: 0 auto;
  padding: 64px 5% 32px;
}
.footer__area {
  display: flex;
  justify-content: space-between;
}
.footer__copyright {
  margin: 0 auto;
}

/*--------------------------------
works-list
---------------------------------*/
.works-fv {
  margin: 0 auto;
}
.works-fv__area {
  width: 100%;
  height: 60vh;
  position: relative;
}
.works-fv__img {
  width: 100%;
  height: 60vh;
}
.works-fv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works-fv__text {
  position: absolute;
  top: 40%;
  left: 2%;
}
.works-fv__text h2 {
  font-weight: 400;
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.2rem;
}

.works-item {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 2% 0;
}
.works-item__container {
  padding-top: 64px;
}
.works-item__area {
  padding-top: 64px;
}
.works-item__image {
  width: 100%;
  height: auto;
}
.works-item__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 0.5px solid #111;
}
.works-item__text {
  padding: 2px;
}

.works-details {
  padding-top: 48px;
}
.works-details__heading {
  text-align: center;
  font-size: 1rem;
  padding: 32px;
}
.works-details__heading h2 {
  font-weight: 400;
  font-size: 1.2rem;
}
.works-details__text {
  padding: 32px 0;
  letter-spacing: 0.1rem;
  line-height: 1.5rem;
}
.works-details__item {
  display: flex;
  padding: 48px 0;
  border-bottom: 0.5px solid #6f4f97;
}
.works-details__title {
  width: 200px;
  padding-left: 24px;
}
.works-details__description {
  width: 70%;
}
.works-details__description a {
  color: blue;
  display: block;
}
.works-details__pager {
  padding-top: 48px;
  display: flex;
  gap: 96px;
  justify-content: center;
}
.works-details__pager-previous, .works-details__pager-next {
  font-weight: 600;
  position: relative;
}
.works-details__pager-previous::after, .works-details__pager-next::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #111;
  transition: width 0.3s ease-out;
}
.works-details__pager-previous:hover::after, .works-details__pager-next:hover::after {
  width: 100%;
  left: 0;
  right: 0;
}

@media (max-width: 768px) {
  .works-fv__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .works-fv__text h2 {
    font-size: 2.5rem;
    width: 350px;
    text-align: center;
  }
  .works-item {
    padding: 100px 2% 0;
  }
  .works-details {
    padding-top: 48px;
  }
  .works-details__heading h2 {
    font-size: 1rem;
  }
  .works-details__text {
    padding: 0 12px;
  }
  .works-details__item {
    flex-direction: column;
  }
  .works-details__title {
    width: 100%;
    padding: 0 0 12px 12px;
  }
  .works-details__description {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }
}
/*--------------------------------
contact page
---------------------------------*/
.contact-fv {
  margin: 0 auto;
}
.contact-fv__area {
  width: 100%;
  height: 60vh;
  position: relative;
}
.contact-fv__area .contact-fv__img {
  width: 100%;
  height: 60vh;
}
.contact-fv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-fv__text {
  position: absolute;
  top: 40%;
  left: 2%;
}
.contact-fv__text h2 {
  font-weight: 400;
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.2rem;
}

.contact-form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 2% 0;
}
.contact-form__container {
  padding-top: 64px;
}
.contact-form__title {
  justify-content: center;
}
.contact-form__area {
  padding-top: 64px;
  text-align: center;
}
.contact-form__area p {
  padding-top: 16px;
}
.contact-form__image {
  width: 100%;
  height: auto;
}
.contact-form__text {
  padding: 2px;
}
.contact-form__item {
  padding: 12px 0;
  align-items: center;
}
.contact-form__left-wrap {
  width: 200px;
}
.contact-form__right-wrap {
  flex-grow: 1;
}
.contact-form__input-area {
  display: block;
  background-color: #e2e2e2;
  width: 100%;
  padding: 16px;
}
.contact-form__submit-area {
  width: 100%;
}
.contact-form__submit-button {
  text-align: center;
  margin: auto;
  width: 240px;
  height: 32px;
  transition: opacity 0.9s ease;
}
.contact-form__submit-button :hover {
  opacity: 0.7;
}
.contact-form__required {
  color: #f5695f;
  margin-left: 12px;
}
.contact-form__recaptcha-box {
  text-align: center;
  padding-top: 96px;
}

.wpcf7-submit {
  height: 100%;
  color: #fff;
  background-color: #2f4f6f;
  border: 1px solid #676767;
  padding: 12px 48px;
  text-align: center;
}

input.wpcf7-not-valid, textarea.wpcf7-not-valid, select.wpcf7-not-valid {
  background: #FCC;
}

.wpcf7-spinner {
  width: 0;
  margin: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (max-width: 768px) {
  .contact-fv__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .contact-fv__text h2 {
    font-weight: 400;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 0.2rem;
  }
}/*# sourceMappingURL=style.css.map */