@charset "UTF-8";
/*   color
===============*/
/*   mixin
===============*/
@font-face {
  font-family: "Al ragas";
  src: url(../font/alragas_subset.woff2) format("woff");
}
/*===========================
    COMMON
=============================*/
* {
  font-size: 62.5%;
  line-height: 2;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

.anchor {
  display: block;
  padding-top: 90px;
  margin-top: -90px;
}

body {
  background-color: #535151;
}

p {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #eee;
}

.secTitle__container {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: baseline;
}
.secTitle__container .h2-secTitle {
  font-family: "Al Ragas", sans-serif;
  font-weight: 400;
  font-size: clamp(5rem, 17vw, 16.8rem);
  line-height: 1; /*Figma上は218px*/
  color: #FF69B4;
}
.secTitle__container .h2-secTitle span {
  font-family: "Al Ragas", sans-serif;
  font-weight: 400;
  font-size: clamp(5rem, 17vw, 16.8rem);
  line-height: 1; /*Figma上は218px*/
  color: #FF69B4;
  letter-spacing: -0.16em;
}
.secTitle__container .h2-secTitle_jp {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #eee;
}
@media (max-width: 1024px) {
  .secTitle__container {
    display: block;
  }
  .secTitle__container .h2-secTitle_jp {
    margin-top: -2rem;
  }
}

@media (max-width: 1024px) {
  .secTitle__container.block {
    display: block;
    margin-top: 50px;
  }
  .indent.h2-secTitle_jp {
    text-indent: 2rem;
  }
  .small.h2-secTitle_jp {
    margin-top: 0;
  }
}
#mypic .h2-secTitle_jp {
  margin-top: 0;
}

@media (max-width: 480px) {
  .mypic .sh2-secTitle_jp {
    margin-top: -1rem;
  }
}
.h4-secTitle, .h3-secTitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3.8rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #eee;
}

section {
  margin-bottom: 120px;
}

@media (max-width: 1024px) {
  .none-pc {
    display: none;
  }
}

/*===========================
    loading-logo
=============================*/
/* Loading背景画面設定　*/
#loading {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(3, 3, 38, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  text-align: center;
}

/* Loading画像中央配置　*/
#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading_logo img {
  width: 15vw;
  filter: drop-shadow(0px 4px 5px #eee);
}
@media (max-width: 1024px) {
  #loading_logo img {
    width: 40vw;
  }
}
@media (max-width: 480px) {
  #loading_logo img {
    width: 60vw;
  }
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*===========================
    TOPvideo背景
=============================*/
#video-area {
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#video, #video2 {
  position: absolute; /*天地中央配置*/
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
}

/*===========================
    背景変化の記述
=============================*/
.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s ease 0s;
  z-index: -1;
}

.show .bg {
  opacity: 1;
  visibility: visible;
}

.bg._01 {
  background-image: url("../img/noise-gy.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*===========================
    mainGrid
=============================*/
main {
  padding: 0 40px;
  z-index: 2;
  position: relative;
  max-width: 1600px;
  margin-left: 13.6vw;
  margin-right: 4vw;
}
@media (max-width: 1024px) {
  main {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  main {
    padding: 0 20px;
    margin-right: 6vw;
  }
}

/*===========================
    g-nav SP
=============================*/
@media (max-width: 1024px) {
  #g-nav {
    position: fixed;
    margin: auto;
    z-index: 999;
    top: -120%; /*ナビのスタート位置と形状*/
    left: 0;
    height: 100%;
    width: calc(100% - 1px);
    background-color: rgba(3, 3, 38, 0.9);
    border-left: 1px solid #FF69B4;
    border-right: 1px solid #FF69B4;
    transition: all 0.6s; /*動き*/
  }
  #g-nav.panelactive { /*アクティブクラスがついたら位置を0に*/
    top: 0;
  }
  #g-nav hr {
    display: block;
    background-color: #FF69B4;
    width: 40px;
    height: 1px;
    margin: 20px auto 0;
  }
  #g-nav ul {
    z-index: 999;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /*上からスライドしてくるメニューの調整*/
  /*========= ハンバーガーのcss ===============*/
}
@media (max-width: 1024px) and (max-width: 480px) {
  #g-nav ul {
    top: 55%;
  }
}
@media (max-width: 1024px) {
  #g-nav li {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
  }
}
@media (max-width: 1024px) {
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 27px;
    right: 20px;
    width: 70px;
    height: 50px;
  }
  .openbtn span { /*×に変化*/
    display: inline-block;
    position: absolute;
    transition: all 0.4s;
    height: 3px;
    background-color: #FF69B4;
  }
  .openbtn span:nth-of-type(1) {
    top: 12px;
    left: 0;
    width: 70px;
  }
  .openbtn span:nth-of-type(2) {
    top: 24px;
    right: 0;
    bottom: auto;
    left: auto;
    width: 50px;
  }
  .openbtn span:nth-of-type(3) {
    top: 36px;
    right: 0;
    bottom: auto;
    left: auto;
    width: 35px;
  }
}
@media (max-width: 1024px) {
  .openbtn.active span:nth-of-type(1) {
    top: 0;
    transform: translateY(25px) rotate(160deg);
    width: 70px;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 35px;
    transform: translateY(-11px) rotate(20deg);
    width: 70px;
  }
}
@media (max-width: 1024px) {
  .header-logo.active {
    display: none;
  }
}
/*===========================
    HEADER
=============================*/
.header {
  text-align: right;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 3;
  width: 13.6vw;
}
@media (max-width: 1024px) {
  .header {
    height: auto;
  }
}
.header .header-logo {
  display: none;
}
@media (max-width: 1024px) {
  .header .header-logo {
    display: block;
    position: absolute;
    left: 20px;
    top: 25px;
  }
}
@media (max-width: 1024px) {
  .header .header-logo {
    top: 30px;
  }
}
.header .header-logo a img {
  margin: 4.6vh 44px 10.8vh auto;
}
@media (max-width: 1024px) {
  .header .header-logo a img {
    margin: 0;
  }
}

.nav {
  height: 100svh;
}
.nav::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #FF69B4;
  width: 1px;
  height: 400px;
  top: 50svh;
  transform: translate(0, -50%);
}
.nav ul {
  position: absolute;
  top: 50svh;
  transform: translate(0%, -50%);
  left: calc(13.6vw - 92px - 30px);
}
.nav-item__logo {
  margin-top: 10svh;
  margin-right: 52px;
}
@media (max-width: 1024px) {
  .nav-item__logo {
    text-align: center;
    margin-right: 0;
  }
}
.nav-item__logo hr {
  display: none;
}
.nav-item__li {
  text-align: right;
  margin: 0 0 30px auto;
}
@media (max-width: 1024px) {
  .nav-item__li {
    margin: 0 0 30px 0;
  }
}
.nav-item__li .li-en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #FF69B4;
}
.nav-item__li .li-jp {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #FF69B4;
}
@media (max-width: 480px) {
  .nav-item__li {
    margin: 0 0 40px;
  }
}
.nav-item__li:last-child {
  margin-bottom: 0;
}

/*===========================
    TOP
=============================*/
.top {
  position: relative;
  height: 100vh;
  padding-top: 32.6vh;
}
@media (max-width: 1024px) {
  .top {
    padding-top: 30vh;
  }
}
.top .top-titleDescription__box {
  width: clamp(227px, 60vw, 545px);
  margin: auto 0 5.2vh auto;
  text-align: right;
}
.top .top-titleDescription__box .top-portfolio {
  margin-top: 20px;
  width: 70%;
}
.top h1 {
  text-align: right;
}
.top h1 img {
  width: clamp(220px, 98%, 740px);
  filter: drop-shadow(0px 4px 5px #eee);
}
.top .scrollDown {
  display: none;
}
@media (max-width: 1024px) {
  .top .scrollDown {
    position: absolute;
    bottom: 5%;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
  .top .scrollDown .scrollDown-circle {
    grid-row: 1/3;
    grid-column: 1/2;
    animation: 15s linear infinite rotation1;
  }
  @keyframes rotation1 {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  .top .scrollDown .scrollDown-circle {
    width: 140px;
  }
}
@media (max-width: 1024px) {
  .top .scrollDown .arrow {
    width: auto;
    height: 170px;
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  .top .scrollDown .arrow {
    height: 110px;
  }
}

/*===========================
    aside rightSide
=============================*/
.rightSide {
  position: fixed;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  top: 50vh;
  right: calc(4vw - 23px);
  z-index: 2;
  width: 400px;
  transform: rotate(90deg) translate(50%, 0);
  border-bottom: 1px solid #FF69B4;
  transform-origin: right top;
}
@media (max-width: 480px) {
  .rightSide {
    top: 55vh;
    right: calc(6vw - 23px);
  }
}
.rightSide p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #FF69B4;
  letter-spacing: 2px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .rightSide p {
    margin-left: 0px;
  }
}

/*===========================
    blur表示
=============================*/
.blur {
  animation-name: blurAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes blurAnime {
  from {
    filter: blur(20px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}
/*===========================
    Profile
=============================*/
.profile-text__container {
  width: 58vw;
  max-width: 850px;
}
@media (max-width: 1024px) {
  .profile-text__container {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .profile-text__container {
    margin-top: 15px;
  }
  .profile-text__container br {
    margin-bottom: 1rem;
  }
}
.profile-text__container .h3-secTitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #eee;
}
.profile-text__container .profile-h3JP {
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.profile-h4JP {
  margin-bottom: 20px;
}
.profile-text2 {
  margin-top: 1.5rem;
}
.profile .profile-like {
  margin-top: 40px;
}
.profile .profile-like-title {
  font-weight: 700;
}
.profile .profile-like .like-item__box {
  display: flex;
}
.profile .profile-like .like-item__box dt {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #eee;
  width: 4rem;
  white-space: nowrap;
}
.profile .profile-like .like-item__box .after-indent::after {
  content: "";
}
.profile .profile-like .like-item__box dd {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #eee;
  padding-left: 3rem;
  text-indent: -3rem;
}
.profile .profile-like .like-item__box dd::before {
  content: ":";
  margin-right: 1rem;
  margin-left: 1rem;
}
.profile-moreLink__box {
  display: inline-block;
  margin-top: 30px;
  text-align: right;
}
.profile-moreLink__box a {
  display: flex;
  gap: 20px;
  margin: 0 0 0 auto;
  padding: 0 12px;
  border-bottom: 1px solid #eee;
}
.profile-moreLink__box a:hover img {
  transform: translateX(20px);
  transition-duration: 0.8s;
}
.profile-img__wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  width: 50%;
}
@media (max-width: 480px) {
  .profile-img__wrapper {
    margin-bottom: 20px;
  }
  .profile-img__wrapper img {
    width: 64vw;
    height: auto;
  }
}
.profile-img__wrapper::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(../img/profile-img_dot.png);
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  opacity: 0.7;
}

/*===========================
    SKILL / ABOUTME>Strength共通
=============================*/
.skill-wrapper .h4-secTitle, .skill-warpper .h4-secTitle, .strength-wrapper .h4-secTitle, .strength-warpper .h4-secTitle {
  line-height: 1;
  margin-bottom: 10px;
}
.skill-wrapper hr, .skill-warpper hr, .strength-wrapper hr, .strength-warpper hr {
  border: 1px solid #bbb;
  margin-bottom: 20px;
}
.skill-wrapper .skill-p__box, .skill-warpper .skill-p__box, .strength-wrapper .skill-p__box, .strength-warpper .skill-p__box {
  width: 90%;
  max-width: 1500px;
}
@media (max-width: 1024px) {
  .skill-wrapper .skill-p__box, .skill-warpper .skill-p__box, .strength-wrapper .skill-p__box, .strength-warpper .skill-p__box {
    width: 100%;
  }
}
.skill-wrapper .skill-p__box, .skill-wrapper .strength-p__box, .skill-warpper .skill-p__box, .skill-warpper .strength-p__box, .strength-wrapper .skill-p__box, .strength-wrapper .strength-p__box, .strength-warpper .skill-p__box, .strength-warpper .strength-p__box {
  margin-bottom: 60px;
}
.skill-wrapper .skill-p2, .skill-wrapper .strength-p2, .skill-warpper .skill-p2, .skill-warpper .strength-p2, .strength-wrapper .skill-p2, .strength-wrapper .strength-p2, .strength-warpper .skill-p2, .strength-warpper .strength-p2 {
  padding-top: 1.5rem;
}
.skill-wrapper .skill-design__container, .skill-wrapper .strength__container, .skill-warpper .skill-design__container, .skill-warpper .strength__container, .strength-wrapper .skill-design__container, .strength-wrapper .strength__container, .strength-warpper .skill-design__container, .strength-warpper .strength__container {
  margin-bottom: 80px;
}

.notion-link {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #eee;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 4px;
  border-bottom: 1px solid #eee;
}
.notion-link::after {
  content: "";
  background-image: url(../img/link-box.svg);
  display: inline-block;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 2px;
  width: 14px;
  height: 16px;
}

.skill-toolLang__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 4vw;
}
@media (max-width: 480px) {
  .skill-toolLang__wrapper {
    display: block;
  }
}

.skill-toolLang__container {
  width: 50%;
}
@media (max-width: 480px) {
  .skill-toolLang__container {
    width: 100%;
  }
  .skill-toolLang__container:last-child {
    padding-top: 20px;
  }
}
.skill-toolLang__container .toolLang-title {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #bbb;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 25px;
}
.skill-toolLang__container .toolLang-box {
  margin-bottom: 30px;
}
.skill-toolLang__container .toolLang-box .toolLang-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  font-size: 2rem;
  color: #bbb;
  margin-bottom: 5px;
}
.skill-toolLang__container .toolLang-box .toolLang-description {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #bbb;
}

.skill-toolLang__container.design {
  width: 100%;
  margin-bottom: 80px;
}

.designTool-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 4vw;
}
@media (max-width: 480px) {
  .designTool-wrapper {
    display: block;
  }
}
.designTool-wrapper .designTool-container {
  width: 50%;
}
@media (max-width: 480px) {
  .designTool-wrapper .designTool-container {
    width: 100%;
  }
}

/*===========================
    WORKS
=============================*/
.change {
  color: #333;
}

.works-item img {
  margin-bottom: 12px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-item .works-title {
  margin-bottom: 4px;
  line-height: 1.5;
}
.works-item .works-phase {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #bbb;
}

.change .works-title, .change .works-phase {
  color: #333;
}

.works-item__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, 30%);
  gap: 40px 30px;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .works-item__wrapper {
    grid-template-columns: repeat(auto-fit, 100%);
  }
}

.otherWorks .works-phase {
  color: #535151;
}

/*===========================
    CONTACT
=============================*/
#contact {
  margin-bottom: 0;
}

.contact {
  display: grid;
  place-items: center;
  height: calc(100svh - 65px);
}
@media (max-width: 1024px) {
  .contact {
    height: calc(100vh - 65px);
  }
}
@media (max-width: 480px) {
  .contact {
    height: calc(100svh - 76px);
  }
}

/*===========================
    ★ABOUT ME
=============================*/
body.aboutme-body {
  background-image: url(../img/noise.png);
  width: 100%;
  height: 100%;
}

.aboutme .h2-secTitle {
  padding-top: 70px;
}
.aboutme-container {
  display: flex;
  gap: 30px;
}
@media (max-width: 1024px) {
  .aboutme-container {
    display: block;
  }
}
.aboutme-img__wrapper {
  position: relative;
  display: inline-block;
}
@media (max-width: 1024px) {
  .aboutme-img__wrapper {
    z-index: -1;
  }
}
@media (max-width: 480px) {
  .aboutme-img__wrapper {
    margin-bottom: 20px;
  }
}
.aboutme-img__wrapper img {
  width: 17.5vw;
  height: auto;
  aspect-ratio: 1/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
@media (max-width: 1024px) {
  .aboutme-img__wrapper img {
    width: 30vw;
  }
}
@media (max-width: 480px) {
  .aboutme-img__wrapper img {
    width: 70vw;
    height: auto;
  }
}
@media (max-width: 1024px) {
  .aboutme-text__container {
    width: 84%;
    margin: -400px 0 0 auto;
  }
}
@media (max-width: 480px) {
  .aboutme-text__container {
    width: 95%;
    margin: -250px 0 0 auto;
  }
}
.aboutme .bio-container {
  margin-top: 40px;
}
.aboutme .bio-title {
  font-weight: 700;
}
.aboutme .bio-li {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #eee;
  margin-bottom: 1rem;
  padding-left: calc(16px + 1rem);
  text-indent: calc(-16px - 1rem);
}
@media (max-width: 480px) {
  .aboutme .bio-li {
    margin-bottom: 1.5rem;
  }
}
.aboutme .bio-li::before {
  content: "";
  display: inline-block;
  background-image: url(../img/kirakira.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin-right: 1rem;
}
.aboutme-h4JP {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #eee;
}

.strength .secTitle__container {
  flex-direction: row-reverse;
}

/*===========================
    MY PICTURE
=============================*/
.mypic-item__wrapper {
  display: grid;
  grid-template: "pic1 pic1 pic2 pic2" 250px "pic1 pic1 pic3 pic4" 250px "pic5 pic6 pic6 pic6" 250px/1fr 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) {
  .mypic-item__wrapper {
    grid-template: "pic1" 250px "pic2" 250px "pic3" 250px "pic4" 250px "pic5" 250px "pic6" 250px/1fr;
  }
}

.pic1 {
  grid-area: pic1;
}

.pic2 {
  grid-area: pic2;
}
.pic2 img {
  -o-object-position: 0 35% !important;
     object-position: 0 35% !important;
}

.pic3 {
  grid-area: pic3;
}

.pic4 {
  grid-area: pic4;
}

.pic5 {
  grid-area: pic5;
}

.pic6 {
  grid-area: pic6;
}

.mypic .secTitle__container {
  display: block;
}
.mypic .secTitle__container .h2-secTitle {
  white-space: nowrap;
}

.mypic-item {
  position: relative;
}
.mypic-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mypic-item .mypic-itemDesc__box {
  opacity: 0;
  position: absolute;
  display: grid;
  place-items: center;
  padding: 4%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.6);
}
.mypic-item .mypic-itemDesc__box:hover {
  opacity: 1;
  transition: all 0.5s ease;
}
@media (max-width: 1024px) {
  .mypic-item .mypic-itemDesc__box .mypic-itemDesc__box:active {
    opacity: 1;
    transition: all 0.5s ease;
  }
}
.mypic-item .mypic-itemDesc__box .mypic-desc {
  line-height: 1.5;
  font-size: 1.5rem;
}

/*===========================
    ★制作物詳細ページ COMMON
=============================*/
body.worksData {
  background-image: url(../img/noise.png);
  background-color: #F2F2F2;
  background-size: cover;
  width: 100vw;
  height: 100svh;
}
body.worksData main {
  padding-top: 66px;
}
body.worksData .title {
  margin-bottom: 0;
}
body.worksData .h2-secTitle_jp, body.worksData p, body.worksData .h4-secTitle {
  color: #333;
}
body.worksData .rightSide p, body.worksData .nav-item__li p {
  color: #FF69B4;
}

/*===========================
    Visit site 
=============================*/
.visitSite-fixed__box a {
  display: grid;
  place-items: center;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  position: fixed;
  bottom: 70px;
  right: 8vw;
}
@media (max-width: 1024px) {
  .visitSite-fixed__box a {
    bottom: 100px;
  }
}
@media (max-width: 480px) {
  .visitSite-fixed__box a {
    bottom: 60px;
  }
}
.visitSite-fixed__box a .textImg {
  grid-row: 1/2;
  grid-column: 1/2;
  animation: 15s linear infinite rotation1;
}
@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.visitSite-fixed__box a .arrowImg {
  grid-row: 1/2;
  grid-column: 1/2;
}

/*===========================
    BasicData
=============================*/
.basicData-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .basicData-wrapper {
    display: block;
  }
}
.basicData-wrapper .basicData-container {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 480px) {
  .basicData-wrapper .basicData-container {
    gap: 10px;
  }
}
.basicData-wrapper .basicData-container .h4-secTitle {
  line-height: 1.3;
}
@media (max-width: 480px) {
  .basicData-wrapper .basicData-container .h4-secTitle {
    font-size: 2.3rem;
  }
}
.basicData-wrapper .basicData-container .basicData-date {
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: left;
  color: #333;
  padding-right: 15px;
  border-right: 1px solid #333;
}
@media (max-width: 480px) {
  .basicData-wrapper .basicData-container .basicData-date {
    padding-right: 10px;
  }
}
.basicData-wrapper .basicData-visitSite {
  text-align: left;
}
.basicData-wrapper .basicData-visitSite a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 5px;
  margin-left: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #333;
  border-bottom: 1px solid #333;
  white-space: nowrap;
}
.basicData-wrapper .basicData-visitSite a img {
  text-align: center;
  margin-right: 5px;
  height: 1.6rem;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .basicData-wrapper .basicData-visitSite a {
    display: inline-block;
    text-align: left;
    margin-top: 15px;
    margin-left: 0;
  }
}

.basicData {
  margin-bottom: 110px;
}
.basicData p {
  text-align: center;
}
.basicData p .mainImg {
  text-align: center;
  width: 85%;
  margin-bottom: 50px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .basicData p .mainImg {
    width: 100%;
  }
}
.basicData p .bannerImg {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.fase-desc__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
@media (max-width: 1024px) {
  .fase-desc__wrapper {
    display: block;
  }
}
.fase-desc__wrapper .fase {
  width: 45%;
}
@media (max-width: 1024px) {
  .fase-desc__wrapper .fase {
    display: inline-block;
    width: 100%;
  }
}
.fase-desc__wrapper .fase-item__box {
  display: flex;
  border: 1px solid #333;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .fase-desc__wrapper .fase-item__box:last-child {
    margin-bottom: 30px;
  }
}
.fase-desc__wrapper .fase-item__box .fase-dt {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #333;
  padding: 13px 20px;
  width: 87px;
  white-space: nowrap;
  border-right: 1px solid #333;
}
.fase-desc__wrapper .fase-item__box .fase-dd {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #333;
  padding: 13px 20px 13px 30px;
}
.fase-desc__wrapper .desc__wrapper {
  width: 50%;
}
@media (max-width: 1024px) {
  .fase-desc__wrapper .desc__wrapper {
    width: 100%;
  }
}
.fase-desc__wrapper .desc__wrapper p {
  text-align: left;
}
.fase-desc__wrapper .desc__wrapper p:first-child {
  margin-bottom: 1rem;
}

/*===========================
    WORKS-DOC 仕様
=============================*/
.works-doc {
  padding: 70px 20px 20px;
  margin-bottom: 80px;
  background-color: #fff;
}
.works-doc hr {
  background-color: #FF69B4;
  width: 1px;
  height: 100px;
  margin: -140px auto 30px;
}

.works-docItem__container {
  margin-bottom: 50px;
}
.works-docItem__container .works-docTitle {
  padding-bottom: 4px;
  margin-bottom: 15px;
  font-family: ibm-plex-sans-jp, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #333;
  font-size: 2.4rem;
  border-bottom: 1px solid #bbb;
}
.works-docItem__container ul li {
  font-family: ibm-plex-sans-jp, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #333;
  text-indent: -1em;
  padding-left: 1em;
}
.works-docItem__container ul li::before {
  content: "・";
  margin-right: 0.5rem;
}

/*===========================
    PICK UP
=============================*/
.pickup-item__container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 120px;
}
.pickup-item__container:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .pickup-item__container {
    display: block;
    margin-bottom: 80px;
  }
}
.pickup-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.pickup-img {
  width: 35%;
  margin-bottom: 2rem;
}
.pickup-img img, .pickup-img video {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
.pickup-img .no-shadow {
  box-shadow: none;
}
@media (max-width: 480px) {
  .pickup-img {
    width: 100%;
  }
}
.pickup .no-shadow {
  box-shadow: none;
}
.pickup .pickup-description__inner {
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .pickup .small-img {
    width: 70%;
    margin: 0 auto;
    box-shadow: none;
  }
}
.pickup-description__box {
  width: 50%;
}
@media (max-width: 480px) {
  .pickup-description__box {
    width: 100%;
  }
}
.pickup-desc2 {
  margin-top: 2rem;
}
.pickup .reverse {
  flex-direction: row-reverse;
}
.pickup .align-start {
  align-items: flex-start;
}
.pickup .small {
  width: 25%;
}
@media (max-width: 480px) {
  .pickup .small {
    width: 80%;
    margin: 0 auto;
  }
}
.pickup .width100 {
  width: 100%;
}
.pickup .block {
  display: block;
}
.pickup .block .pickup-img {
  width: 90%;
  height: auto;
}
@media (max-width: 1024px) {
  .pickup .block .pickup-img {
    width: 100%;
  }
}
.pickup .block .pickup-description__box {
  width: 100%;
}
.pickup .border {
  border: 1px solid #bbb;
}

@media (max-width: 1024px) {
  #banner .pickup-img {
    width: 100%;
  }
}
#banner .pickup-img img {
  width: 100%;
  height: auto;
  max-width: 600px;
}
#banner .pickup-description__box {
  width: 60%;
}
@media (max-width: 1024px) {
  #banner .pickup-description__box {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  #banner .pickup-item__container {
    display: block;
  }
}

/*===========================
    MESSAGE
=============================*/
.message {
  text-align: center;
}
.message::before {
  content: "";
  display: inline-block;
  background-color: #FF69B4;
  width: 150px;
  height: 1px;
  margin-bottom: 60px;
}
.message p {
  text-align: left;
  width: 80%;
  margin: 0 auto 120px;
}
@media (max-width: 480px) {
  .message p {
    width: 100%;
    margin-bottom: 50px;
  }
}
.message .message-p1 {
  margin-bottom: 2rem;
}
.message img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .message img {
    height: 140px;
  }
}
.message .object-top {
  -o-object-position: top;
     object-position: top;
}

/*===========================
    OTHER WORKS
 ※index.htmlを継承、以下は打消し変更のみ記述
=============================*/
.worksData .works {
  margin-bottom: 200px;
}
@media (max-width: 1024px) {
  .worksData .works .secTitle__container {
    display: flex;
  }
}
@media (max-width: 480px) {
  .worksData .works .secTitle__container {
    display: block;
  }
}
.worksData .works .h2-secTitle {
  color: #333;
  font-size: 4rem;
}
.worksData .works .works-item__wrapper {
  grid-template-columns: repeat(auto-fit, 30%);
  gap: 30px;
}
@media (max-width: 480px) {
  .worksData .works .works-item__wrapper {
    grid-template-columns: repeat(auto-fit, 100%);
  }
}

/*===========================
    footer
=============================*/
.footer {
  position: absolute;
  width: calc(100% - 13.6vw - 4vw);
  margin: 0 4vw 0 13.6vw;
  padding: 10px 0 10px;
  border-top: 1px solid #333;
  text-align: center;
  z-index: 2;
}
@media (max-width: 1024px) {
  .footer {
    width: calc(100% - 4vw - 80px);
    margin: 0 40px;
  }
}
@media (max-width: 480px) {
  .footer {
    width: calc(100% - 6vw - 40px);
    margin: 0 6vw 0 20px;
  }
}
.footer p {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #333;
  text-align: right;
  margin: 0 4vw auto 10px;
}
@media (max-width: 480px) {
  .footer p {
    margin: 0 4vw 10px;
  }
}
.footer small {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #333;
}/*# sourceMappingURL=style.css.map */