/*
Theme Name: Natsuki Anazawa Portfolio
Author: Natsuki Anazawa
Description: Natsuki Anazawaのポートフォリオサイトです。
Version: 1.0
*/

@charset "UTF-8";
/*-------------------------------------------
共通クラス
-------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #333333;
  background-color: #fff;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*-------------------------------------------
共通パーツの指定
-------------------------------------------*/
.u-wrapper {
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10.9375%;
}
@media screen and (max-width: 767px) {
  .u-wrapper {
    padding: 0px 20px;
  }
}

.u-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .u-inner {
    width: 92.8571428571%;
    padding: 48px 0;
  }
} 

/* サブタイトル */
.subTitle {
  font-family: "Urbanist";
  font-size: clamp(20px, 2.6vw, 40px);
  font-weight: 700;
  letter-spacing: 0.09em;
  position: relative;
  margin-top: 24px; 
  margin-bottom: 72px;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
@media screen and (max-width: 767px) {
  .subTitle {
    margin-bottom: 56px;
  }
}
.subTitle::after {
  content: "";
  width: 0px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  bottom: 0px;
  left: 0px;
  -webkit-transition: width 1s ease 0.3s;
  transition: width 1s ease 0.3s;
}

.subTitle.animation {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.subTitle.animation::after {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .subTitle.animation::after {
    width: 170px;
  }
}


/* Viewmoreボタン */
.btn {
  width: 249px;
  height: 72px;
  border: 2px solid #333333;
  background-color: #fff;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn {
    height: 40px;
  }
}

.btnText {
  font-size: 20px;
  font-weight: 700;
  font-family: "Urbanist";
  text-align: center;
  padding: 20px 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .btnText {
    font-size: 16px;
    padding: 5px;
  }
}
.btnText::before {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  top: 35px;
  left: 200px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1); 
  -webkit-transform-origin: left top;
          transform-origin: left top; 
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .btnText::before {
    top: 19px;
  }
}
.btnText:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.btnText:active {
  background-color: rgba(51, 51, 51, 0.3);
}

/* Submit・VisitTheWebsiteボタン */
.submit-btn, .visitBtn {
  width: 249px;
  height: 72px;
  border: none;
  background-color: #75A1AD;
  margin: 0 auto;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Urbanist";
  color: #F0F4F5;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 767px){
  .submit-btn, .visitBtn {
    height: 40px;
    font-size: 16px;
  }
}

.visitBtn a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* ContactForm7のボタン調整 */
.wpcf7 input[type="submit"] {
  display: block;
  margin: 0 auto;
  width: 100%;
  line-height: 72px;
}
@media screen and (max-width: 767px){
  .wpcf7 input[type="submit"]  {
    line-height: 40px;
  }
}

.submit-btn::before, .visitBtn::before {
  content: "";
  width: 80px;
  height: 2px;
  background-color: #F0F4F5;
  position: absolute;
  top: 36px;
  left: 220px;
}
@media screen and (max-width: 1024px) and (min-width: 768px),
screen and (max-width: 767px) {
  .submit-btn::before, .visitBtn::before {
    top: 20px;
  }
}

.submit-btn::before, .visitBtn::before {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.submit-btn:hover::before, .visitBtn:hover::before  {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.submit-btn:active, .visitBtn:active {
  background-color: rgba(117, 161, 173, 0.6);
}

.wpcf7-spinner {
  display: none;
}

/*-------------------------------------------
header
-------------------------------------------*/
.header {
  width: 100vw;
  height: 104px;
  position: fixed;
  font-family: "Urbanist";
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    height: 81px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1440px;
  height: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 5vw;
}

.header__logo {
  font-family: "Urbanist";
  font-weight: bold;
  font-size: clamp(20px, 3vw, 32px);
  padding-right: 32px;
}

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

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__menuLink {
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.header__menuList:last-of-type a {
  color: #75A1AD;
}

.header__menuLink:hover {
  opacity: 0.6;
}

/*ハンバーガーメニュー*/
.header__toggleBtn {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__toggleBtn {
    display: block;
    width: 42px;
    height: 24px;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
  }
}

/*ハンバーガーメニューの横線*/
.header__hamburgerLine {
  display: block;
  position: absolute;
  width: 32px;
  height: 3px;
  background-color: #333333;
  border-radius: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__hamburgerLine:nth-child(1) {
  top: -3px;
}

.header__hamburgerLine:nth-child(2) {
  top: 9px;
}

.header__hamburgerLine:nth-child(3) {
  top: 21px;
}

/*ハンバーガーメニュークリック時、×になる*/
.header__toggleBtn.js-open .header__hamburgerLine:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
          transform: translateY(11px) rotate(-45deg);
}
.header__toggleBtn.js-open .header__hamburgerLine:nth-child(2) {
  -webkit-transform: translateY(-1px) rotate(45deg);
          transform: translateY(-1px) rotate(45deg);
}
.header__toggleBtn.js-open .header__hamburgerLine:nth-child(3) {
  display: none;
}

/*ハンバーガーメニュークリック時背景*/
.header__mask {
  background-color: rgba(51, 51, 51, 0.8);
  position: fixed;
  width: 40%;
  height: 100vh;
  right: -120%;
  top: 81px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__maskNav {
  margin-top: 80px;
  margin-left: 11.4285714286%;
  color: #fff;
  font-size: 24px;
  font-family: "Urbanist";
  font-weight: 400;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .header__maskNav {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__maskNav {
    font-size: 16px;
  }
}

.header__maskList {
  margin-top: 42px;
}

.header__maskList:first-of-type {
  margin-top: 0;
}

.header__maskList:last-of-type {
  margin-top: 48px;
}

.header__maskLink {
  position: relative;
  cursor: pointer;
}
.header__maskLink::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__maskLink:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.header__mask.js-open {
  right: 0;
  z-index: 10;
}

/*-------------------------------------------
firstview
-------------------------------------------*/
.fv {
  padding: 104px 0 64px 0;
  width: 100vw;
}
@media screen and (max-width: 767px) {
  .fv {
    padding: 81px 0 40px 0;
  }
}

.fvContent {
  width: 85%;
  margin-right: 0;
  margin-left: auto;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fvContent {
    width: 100%;
  }
}

.fvImage_wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fvImage_wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
  }
}

.fvImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enMessage {
  width: 100%;
  margin-left: auto;
  font-family: "Urbanist";
  font-size: 1.8vw;
  line-height: 1.8;
  font-weight: 800;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .enMessage {
    margin-left: 0;
    font-size: 2.7vw;
    text-align: left;
  }
}

.fvTitle {
  font-size: 3.8vw;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 600;
  position: absolute;
  left: -5vw;
  top: 28vw;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .fvTitle {
    font-size: 5.7vw;
    left: 0vw;
    top: 65vw;
  }
}
.fvTitle::before {
  content: "";
  display: block;
  background: url("/wp-content/themes/natsuki-anazawa-portfolio/img/kamome1.png") no-repeat center center/cover;
  width: 37vw;
  height: 22vw;
  -webkit-filter: drop-shadow(1px 4px 8px rgba(51, 51, 51, 0.7));
          filter: drop-shadow(1px 4px 8px rgba(51, 51, 51, 0.7));
  position: absolute;
  left: 1vw;
  top: -22vw;
  z-index: 4;
  opacity: 0;
  -webkit-transform: translate(40px, 40px);
          transform: translate(40px, 40px);
  -webkit-animation: kamomeup1 1.2s ease-out forwards;
          animation: kamomeup1 1.2s ease-out forwards;
}
@-webkit-keyframes kamomeup1 {
  0% {
    opacity: 0;
    -webkit-transform: translate(40px, 40px);
            transform: translate(40px, 40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes kamomeup1 {
  0% {
    opacity: 0;
    -webkit-transform: translate(40px, 40px);
            transform: translate(40px, 40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media screen and (max-width: 767px) {
  .fvTitle::before {
    width: 52vw;
    height: 31vw;
    left: 8vw;
    top: -44vw;
  }
}

.fvTitle::after {
  content: "";
  display: block;
  background: url("/wp-content/themes/natsuki-anazawa-portfolio/img/kamome2.png") no-repeat center center/cover;
  width: 23vw;
  height: 21vw;
  -webkit-filter: drop-shadow(1px 4px 8px rgba(51, 51, 51, 0.7));
          filter: drop-shadow(1px 4px 8px rgba(51, 51, 51, 0.7));
  position: absolute;
  left: 55vw;
  top: -16vw;
  z-index: 4;
  opacity: 0;
  transform: translate(60px, 60px) rotate(10deg);
  -webkit-transform: translate(60px, 60px) rotate(10deg);
  -webkit-animation: kamomeup2 0.8s ease-out forwards;
          animation: kamomeup2 0.8s ease-out forwards;
}
@keyframes kamomeup2 {
  0% {
     opacity: 0;
    transform: translate(60px, 60px) rotate(10deg);
    -webkit-transform: translate(60px, 60px) rotate(10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(10deg);
            transform: translate(0, 0) rotate(10deg);
  }
}
@media screen and (max-width: 767px) {
  .fvTitle::after {
    width: 30vw;
    height: 28vw;
    left: 63vw;
    top: -18vw;
  }
}

.fvTitle1 {
  display: block;
  width: 32vw;
  height: 6.8vw;
  background-color: #fff;
  position: relative;
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: opacity 1.3s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.3s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.3s ease, transform 1.5s ease;
  transition: opacity 1.3s ease, transform 1.5s ease, -webkit-transform 1.5s ease;
}
@media screen and (max-width: 767px) {
  .fvTitle1 {
    width: 47vw;
    height: 10vw;
  }
}

.fvTitle1.animation_fvtitle {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fvTitle2 {
  display: block;
  width: 28vw;
  height: 6.8vw;
  background-color: #fff;
  position: relative;
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: opacity 1.8s ease, -webkit-transform 1.8s ease;
  transition: opacity 1.8s ease, -webkit-transform 1.8s ease;
  transition: opacity 1.8s ease, transform 1.8s ease;
  transition: opacity 1.8s ease, transform 1.8s ease, -webkit-transform 1.8s ease;
}
@media screen and (max-width: 767px) {
  .fvTitle2 {
    width: 41vw;
    height: 10vw;
  }
}

.fvTitle2.animation_fvtitle {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*-------------------------------------------
Works
-------------------------------------------*/
.worksGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* PC：2列 */
  gap: 32px;
  margin-bottom: 64px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .worksGrid {
    grid-template-columns: 1fr; /* SP：1列 */
    gap: 40px;
  }
}

.worksGrid__item {
  width: 37.5vw;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  opacity: 0; 
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

  @media screen and (max-width: 767px) {
  .worksGrid__item {
    width: 64vw;
    max-width: 490px;
  }
}

.worksGrid__item.animation_works {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.worksGrid__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worksGrid__hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  color: #fff;
  background: rgba(51, 51, 51, 0.9);
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 20px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  font-size: clamp(12px, 2vw, 18px);
}

.worksGrid__hoverTitle {
  position: absolute;
  top: 20%;
  left: 5%;
}

.worksGrid__hoverType {
  position: absolute;
  top: 70%;
  left: 5%;
}

.worksGrid__item:hover .worksGrid__hover {
  opacity: 1;
}


/*-------------------------------------------
Service
-------------------------------------------*/
.serviceGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 354px));
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .serviceGrid {
    column-gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .serviceGrid {
    max-width: 80%;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
}

.serviceGrid__item {
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .serviceGrid__item {
    height: auto;
    margin-bottom: 40px;
  }
}

.serviceGrid__img {
  aspect-ratio: 1/1;
  max-width: 140px;
  margin: 0 auto;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .serviceGrid__img {
    padding-bottom: 24px;
  }
}

.serviceGrid__img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.serviceGrid__itemTitle {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  padding-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .serviceGrid__itemTitle {
    padding-bottom: 24px;
  }
}

.serviceGrid__itemText {
  text-align: left;
}

/*-------------------------------------------
About
-------------------------------------------*/
.about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0px;
  }
}
.about__contents::before {
  content: "";
  background: url("/wp-content/themes/natsuki-anazawa-portfolio/img/surfboard.png") no-repeat center center/contain;
  -webkit-filter: drop-shadow(0px 3px 2px rgba(51, 51, 51, 0.4));
          filter: drop-shadow(0px 3px 2px rgba(51, 51, 51, 0.4));
  width: 34vw;
  height: 260px;
  position: absolute;
  top: -250px;
  right: -40px;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .about__contents::before {
    width: 38vw;
    right: -5px;
  }
}

.about__contentImg {
  max-width: 230px;
  min-width: 200px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1.8s ease;
  transition: opacity 1.5s ease, -webkit-transform 1.8s ease;
  transition: opacity 1.5s ease, transform 1.8s ease;
  transition: opacity 1.5s ease, transform 1.8s ease, -webkit-transform 1.8s ease;
}
@media screen and (max-width: 767px) {
  .about__contentImg {
    max-width: 180px;
    min-width: auto;
    margin: 0 auto;
    margin-bottom: 32px;
  }
}

.about__contentImg.animation_about {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.about__contentImg img {
  width: 100%;
  height: 100%;
}

.about__content {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1.8s ease;
  transition: opacity 1.5s ease, -webkit-transform 1.8s ease;
  transition: opacity 1.5s ease, transform 1.8s ease;
  transition: opacity 1.5s ease, transform 1.8s ease, -webkit-transform 1.8s ease;
}

.about__content.animation_about {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.about__contentName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .about__contentName {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 0px;
  }
}

.about__contentName--ja {
  display: inline-block;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .about__contentName--ja {
    font-size: 18px;
  }
}

.about__contentName--en {
  color: #75A1AD;
  display: inline-block;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .about__contentName--en {
    padding-bottom: 10px;
  }
}

.about__contentSum {
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .about__contentSum {
    text-align: center;
    padding-bottom: 10px;
  }
}

/*-------------------------------------------
Contact
-------------------------------------------*/
.contact__layout {
  width: 100vw;
  background-color: #C1D8DE;
}

.contact__contents {
  width: 78.125%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .contact__contents {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .contact__contents {
    width: 100%;
  }
}
.contact__contents::after {
  content: "";
  background: url("/wp-content/themes/natsuki-anazawa-portfolio/img/swim.png") no-repeat center center/contain;
  -webkit-filter: drop-shadow(0px 6px 8px rgba(51, 51, 51, 0.7));
          filter: drop-shadow(0px 6px 8px rgba(51, 51, 51, 0.7));
  width: 37vw;
  height: 28vw;
  position: absolute;
  bottom: -10vw;
  left: -22vw;
  z-index: 7;
  pointer-events: none;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .contact__contents::after {
    bottom: -15vw;
    left: -22vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__contents::after {
    content: none;
  }
}

.contact__text {
  padding-bottom: 80px;
}

.contact__table {
  width: 100%;
}

.contact__item {
  text-align: left;
}

.item-label {
  display: block;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .item-label {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .item-label {
    width: 100%;
  }
}

.item-text,
.item-textarea { 
  display: block;
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .item-text,
  .item-textarea {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .item-text,
  .item-textarea {
    width: 100%;
  }
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"]{
  height: 56px;
}

.wpcf7 textarea{
  height: 128px;
}
@media screen and (max-width: 767px) {
  .wpcf7 textarea {
    height: 160px;
  }
}

.contact__item input,
.contact__item textarea {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.essential {
  color: #EA4646;
}

/*-------------------------------------------
footer
-------------------------------------------*/
.footer {
  width: 100vw;
  height: 200px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    height: 180px;
  }
}

.footer__items {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  font-family: "Urbanist";
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__items {
    font-size: 14px;
  }
}

.footer__itemLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.arrow_left {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 15px;
  border-left: 3px solid #333333;
  border-bottom: 3px solid #333333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*-------------------------------------------
Works_sub （下層ページ）※実績一覧ページ
-------------------------------------------*/
.works_list {
  padding: 104px 0 80px 0;
}
@media screen and (max-width: 767px) {
  .works_list {
    padding: 72px 0 40px 0;
  }
}

.worksListGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* PC：2列 */
  gap: 32px;
  margin-bottom: 104px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .worksListGrid {
    grid-template-columns: 1fr; /* SP：1列 */
    gap: 40px;
  }
}

.worksListGrid__item {
  width: 37.5vw;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}
  @media screen and (max-width: 767px) {
  .worksListGrid__item {
    width: 64vw;
    max-width: 490px;
  }
} 

.worksListGrid__item.animation_worksList {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.worksListGrid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worksListGrid__hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  color: #fff;
  background: rgba(51, 51, 51, 0.9);
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 20px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  font-size: clamp(12px, 2vw, 18px);
}

.worksListGrid__hoverTitle {
  position: absolute;
  top: 20%;
  left: 5%;
}

.worksListGrid__hoverType {
  position: absolute;
  top: 70%;
  left: 5%;
}

.worksListGrid__item:hover .worksListGrid__hover {
  opacity: 1;
}


/* ページネーション */
.worksList_pagination {
  display: block;
  margin-top: 160px;
}
 @media screen and (max-width: 767px) {
 .worksList_pagination {
    margin-top: 104px;
  }
 }

.worksList_pagination ul {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.worksList_pagination li a,
.worksList_pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #f4f4f4;
  font-family: "Urbanist";
  font-weight: 700;
  color: #333;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 50%;
}
  @media screen and (max-width: 767px) {
  .worksList_pagination li a,
  .worksList_pagination li span {
    width: 35px;
    height: 35px;
  }
}

.worksList_pagination li a:hover,
.worksList_pagination li span:hover{
  opacity: 0.5;
}

.worksList_pagination li .current {
  background-color: #75A1AD;
  border-color: #75A1AD;
  color: white;
  pointer-events: none;
}


/*-------------------------------------------
Works 実績詳細ページ （下層ページ）
-------------------------------------------*/
.worksItem__body {
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.works_item {
  padding: 104px 0 80px 0;
}
@media screen and (max-width: 767px) {
  .works_item {
    padding: 72px 0 40px 0;
  }
}

.work__content-header-blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  color: #75A1AD;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .work__content-header-blue {
    font-size: 16px;
    font-weight: 500;
  }
}

.work__content-title {
  display: block;
  font-size: clamp(18px, 1.85vw ,24px);
  font-weight: 500;
  margin-bottom: 16px;
}

.work__content-subTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  font-weight: 500;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .work__content-subTitle {
    gap: 24px;
  }
}

.work__content-img {
  width: 70%;
  max-width: 820px;
  aspect-ratio: 4/3;
  margin: 0 auto;
  margin-bottom: 64px;
}

@media screen and (max-width: 767px) {
  .work__content-img {
     width: 85%;
  }
}

.work__content-img img {
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, transform 1.5s ease;
  transition: opacity 1.5s ease, transform 1.5s ease, -webkit-transform 1.5s ease;
}

.work__content-img img.animation_worksItem {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}


.work__content-comment {
  width: 70%;
  margin: 0 auto;
  padding-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .work__content-comment {
    width: 85%;
  }
}

.work__content-comment-tool {
  padding-top: 20px;
}


/* ナビゲーション */
.post-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 160px;
  margin-top: 80px;
}

.post-navigation__prev,
.post-navigation__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .post-navigation__prev,
  .post-navigation__next{
    width: 35px;
    height: 35px;
  }
}

.post-navigation__prev a,
.post-navigation__next a {
  font-family: "Urbanist";
  font-weight: 700;
  color: #333;
}

.post-navigation__prev:hover,
.post-navigation__next:hover {
  opacity: 0.5;
}



/*-------------------------------------------
About 詳細ページ （下層ページ）
-------------------------------------------*/
.about_item {
  padding: 104px 0 80px 0;
}
@media screen and (max-width: 767px) {
  .about_item {
    padding: 72px 0 40px 0;
  }
}

.about_subTitle-right,
.about_subTitle-left {
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about_subTitle-right,
  .about_subTitle-left {
    margin-bottom: 24px;
  }
}

.about_subTitle-rightNo,
.about_subTitle-leftNo {
  position: relative;
  color: rgba(117, 161, 173, 0.4);
  font-size: clamp(81px, 11vw ,100px);
  font-weight: 600;
  display: inline-block;
  z-index: 4;
}

.about_subTitle-right {
  text-align: right;
}

.about_subTitle-rightText {
  font-size: clamp(32px, 4.2vw ,40px);
  font-weight: 700;
  font-family: "Urbanist";
  position: absolute;
  top: 60px;
  right: 80px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .about_subTitle-rightText {
    top: 50px;
    right: 50px;
  }
}

.about_subTitle-left {
  text-align: left;
}

.about_subTitle-leftText {
  font-size: clamp(32px, 4.2vw ,40px);
  font-weight: 700;
  font-family: "Urbanist";
  position: absolute;
  top: 60px;
  left: 80px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .about_subTitle-leftText {
    top: 50px;
    left: 50px;
  }
}

.profile__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-bottom: 104px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .profile__contents {
    margin-bottom: 80px;
    justify-content: center;
  }
}
.profile__contents::before {
  content: "";
  background: url("/wp-content/themes/natsuki-anazawa-portfolio/img/about_profile_img.png") no-repeat center center/contain;
  width: 45vw;
  height: 40vh;
  position: absolute;
  top: -80px;
  left: 0px;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translate(50px, 50px);
          transform: translate(50px, 50px);
  -webkit-transition: opacity 1.3s ease, -webkit-transform 1.3s ease;
  transition: opacity 1.3s ease, -webkit-transform 1.3s ease;
  transition: opacity 1.3s ease, transform 1.3s ease;
  transition: opacity 1.3s ease, transform 1.3s ease, -webkit-transform 1.3s ease;
}
@media screen and (max-width: 767px) {
  .profile__contents::before {
    content: none;
  }
}

.profile__contents::after {
  content: "";
  background: url("/wp-content/themes/natsuki-anazawa-portfolio/img/ukiwa.png") no-repeat center center/contain;
  -webkit-filter: drop-shadow(1px 4px 5px rgba(51, 51, 51, 0.4));
          filter: drop-shadow(1px 4px 5px rgba(51, 51, 51, 0.4));
  width: 33vw;
  height: 33vh;
  position: absolute;
  bottom: -220px;
  right: -80px;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .profile__contents::after {
    width: 35vw;
    height: 35vh;
    bottom: -190px;
    right: -5px;
  }
}

.profile__contents.animation_aboutItem::before {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.profile__content {
  width: 65%;
  padding: 32px;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  -webkit-transform: translate(50px, 50px);
          transform: translate(50px, 50px);
  -webkit-transition: opacity 1.3s ease, -webkit-transform 1.3s ease;
  transition: opacity 1.3s ease, -webkit-transform 1.3s ease;
  transition: opacity 1.3s ease, transform 1.3s ease;
  transition: opacity 1.3s ease, transform 1.3s ease, -webkit-transform 1.3s ease;
}
@media screen and (max-width: 767px) {
  .profile__content {
    width: 100%;
    padding: 16px;
  }
}

.profile__content.animation_aboutItem {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.profile__contentName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .profile__contentName {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.profile__contentName--ja {
  display: inline-block;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .profile__contentName--ja {
    font-size: 18px;
  }
}

.profile__contentName--en {
  color: #75A1AD;
  display: inline-block;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .profile__contentName--en {
    margin-bottom: 8px;
  }
}

.profile__contentSum {
  padding-bottom: 32px;
}

.skill {
  position: relative;
}

.skill__items {
  width: 75%;
  margin: 0 auto;
  margin-bottom: 104px;
}
@media screen and (max-width: 767px) {
  .skill__items {
    width: 100%;
  }
}

.skill__items::after {
  content: "";
  background: url("/wp-content/themes/natsuki-anazawa-portfolio/img/kaome3.png") no-repeat center center/contain;
  -webkit-filter: drop-shadow(1px 4px 5px rgba(51, 51, 51, 0.5));
          filter: drop-shadow(1px 4px 5px rgba(51, 51, 51, 0.5));
  width: 30vw;
  height: 30vh;
  position: absolute;
  bottom: -210px;
  left: -10px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .skill__items::after {
    height: 32vh;
    bottom: -210px;
  }
}

.skill__item {
  padding-bottom: 40px;
  margin-left: 20px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
}
@media screen and (max-width: 767px) {
  .skill__item {
    margin: 0 auto;
  }
}
.skill__item:last-of-type {
  padding-bottom: 0px;
}

.skill__item.animation_aboutItem {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.skill__subTitle {
  width: 250px;
  height: 32px;
  background-color: #75A1AD;
  color: #fff;
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .skill__subTitle {
    width: 180px;
    font-size: 16px;
  }
}

.skill__text-blue {
  font-weight: 500;
  color: #75A1AD;
}

.bio__contents {
  width: 80%;
  margin: 0 auto 104px;
}
@media screen and (max-width: 767px) {
  .bio__contents {
    width: 100%;
    margin-bottom: 80px;
  }
}

.bio__content {
  margin-bottom: 32px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
}

.bio__content.animation_aboutItem {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.bio__contentTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .bio__contentTop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.bio__contentTop-year {
  max-width: 72px;
  font-size: 22px;
  font-family: "Urbanist";
  font-weight: 700;
  color: #75A1AD;
}

.bio__contentTop-title {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .bio__contentTop-title {
    font-size: 16px;
  }
}

.bio__contentBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .bio__contentBottom {
    gap: 15px;
  }
}

.bio__contentBottom-line {
  position: absolute;
  width: 1.5px;
  background-color: #333333;
  margin: 0 30px;
  height: 0;
  -webkit-transition: height 1s ease;
  transition: height 1s ease;
}
@media screen and (max-width: 767px) {
  .bio__contentBottom-line {
    margin: 0 15px;
  }
}

.bio__content.animation_aboutItem .bio__contentBottom-line {
  height: 100%;
}

.bio__contentBottom-text {
  margin-left: 104px;
}
@media screen and (max-width: 767px) {
  .bio__contentBottom-text {
    margin-left: 56px;
  }
}

.vision__wrapper {
  margin-bottom: 136px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .vision__wrapper {
    margin-bottom: 80px;
  }
}
.vision__wrapper::after {
  content: "";
  background: url("/wp-content/themes/natsuki-anazawa-portfolio/img/yacht.png") no-repeat center center/contain;
  -webkit-filter: drop-shadow(1px 4px 5px rgba(51, 51, 51, 0.4));
          filter: drop-shadow(1px 4px 5px rgba(51, 51, 51, 0.4));
  width: 35vw;
  height: 45vh;
  position: absolute;
  bottom: -130px;
  right: -10px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .vision__wrapper::after {
    bottom: -200px;
  }
}

.vision__contentText {
  text-align: center;
  margin: 0 auto;
  width: 80%;
  position: relative;
  z-index: 3;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, transform 2s ease;
  transition: opacity 2s ease, transform 2s ease, -webkit-transform 2s ease;
}
@media screen and (max-width: 767px) {
  .vision__contentText {
    width: 90%;
    padding: 0px;
  }
}

.vision__contentText.animation_aboutItem {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.vision__contentText p {
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .vision__contentText p {
    line-height: 2;
  }
}



/*-------------------------------------------
ぱんくずリスト
-------------------------------------------*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  gap: 0.5em;
  font-size: 14px;
  padding: 0 5vw;
  padding-top: 32px;
  color: #aaa;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .breadcrumb{
    font-size: 12px;
  }
}

.breadcrumb__item {
  position: relative;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "＞";
  margin: 0 0.5em;
  color: #aaa;
}

.breadcrumb__item a {
  text-decoration: none;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}