@charset "utf-8";

/*===リセット===*/
* {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #78726e;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
  outline: none;
}

.ta_c{
  text-align: center;
}

*:focus {
  outline: none;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: YakuHanJP, '"Raleway"', 'Noto Sans JP', sans-serif;
  background-color: rgb(255 255 247 / 25%);
  color: #78726e;
}


/*===スクロールバー===*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1) inset;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #b0639b;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1) inset;
}


/*===ヘッダー===*/
.header {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/*===PC用ナビゲーション===*/
.pc-nav {
  /* display: none; */
  position: fixed;
  height: 80vh;
  z-index: 9999;
  top: 1em;
  right: 0;
}

.pc-nav li{
  display: block;
  writing-mode: vertical-rl;
  padding:0.8em 1.5em 0.8em 0.2em;
  margin-bottom: 0.6em;
  border-left: solid 12px transparent;
}

.pc-nav li a{
  transition: 0.3s;
  color: #fff;
}

.pc-nav li a:hover {
  color: #b0639b;
}


/*===PC用ナビゲーションハイライト===*/
.current{
  border-left: solid 1px #b0639b!important;
}

/* スマホ用ハンバーガーメニュー */
.drawer_button {
  position: fixed;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; 
  top: 20px;
  right: 30px;
}

.drawer_button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: #78726e;
  transform: translateX(-50%);
  border-radius: 999px
}

.drawer_button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}

.drawer_button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.drawer_button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}

.drawer_button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer_button.active > span:nth-child(2) {
  opacity: 0;
}

.drawer_button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 998;
}

.drawer_nav_inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.95);
  padding: 4rem ;
  margin: 0 0 0 auto;
  overflow: scroll;
  transition:  0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.drawer_contents{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drawer_nav_menu {
  list-style: none;
  padding-left: 0;
}

.drawer_nav_link {
  display: block;
  color: #78726e;
  text-decoration: none;
  padding: 1rem 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
}

.drawer_nav_link a{
  color: #78726e;
}

.drawer_nav.active {
  opacity: 1;
  visibility: visible;
}

.drawer_nav_inner .logo{
  width: 40%;
  margin: 0 auto;
  display: block;
}

/*===fv画像===*/
.hero-img {
  height: 100vh;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url(../img/fv.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-img h1 {
  font-size: 3.5em;
  padding: 0.8em 0.7em;
  outline: solid 1px #fff;
  outline-offset: 5px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  width: auto;
  text-align: center;
  font-family:  YakuHanJP,"Raleway",sans-serif;
}

.hero-img h1 span{
  font-size: 0.8em;
  display: inline-block;
  margin-top: 10px;
}

@media screen and (max-width:640px){
  .hero-img h1 {
    font-size: 2.5em;
  }
}

/*===カラム共通===*/
.col {
  padding: 4.5em 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrap{
  padding-right: 5%;
  padding-left: 5%;
}

.col h2 {
  height: 1em;
  width: 10em;
  font-size: 2em;
  margin: 1.5em auto 2.5em;
  text-align: center;
  position: relative;
  color: #78726e;
}

@media screen and (max-width:768px){
  .col{
    padding: 3.5em 0;
  }
}

/*===カテゴリーボタン===*/
.category{
  text-align: center;
}

.category button{
  margin: 0 auto;
  padding: 5px 30px;
  border: none;
  margin-right: 30px;
  margin-bottom: 50px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  background-color: rgb(255 255 247 / 25%);
  border: solid #b0639b 2px;
  color: #b0639b;
  font-size: 0.9em;
}

.category button:last-of-type{
  margin-right: 0;
}

.category button:hover{
  background-color: #b0639b;
  color: #fff;
}

.fancybox-button {
  background: transparent !important;
}
.fancybox-button svg path {
  fill: #fff;
}
.fancybox-button svg {
  background-color: #b0639b;
  border-radius: 50%;
}
.fancybox-navigation .fancybox-button div {
  padding: 0px;
}

/*===グリッド===*/
ul.img-box {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 7em;
  max-width: 1600px;
  margin: 0 auto;
}

ul.img-box li{
  margin: 0;
  width: calc(100% / 4 - 0.75rem);
}

ul.img-box img {
  transition: 0.5s;
}

ul.img-box img:hover {
  filter: none;
  transform: scale(1.2);
}

@media screen and (max-width:768px){
  ul.img-box li{
    width: calc(100% / 2 - 0.75rem);
  }
}

@media screen and (max-width:480px){

  .category button{
    width: 80%;
    margin-right: 0;
    margin-bottom: 30px;
    padding: 10px 20px;
    border-radius: 30px;
  }
}

.item-box{
  overflow: hidden;
}
.works_ai-video {
  width: 200px;
}


@media screen and (max-width:600px){
.fancybox-navigation .fancybox-button div {
  padding: 7px;
}
}


/*===profile===*/
.about_ptofile{
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
}

.profile_img{
  width: 33%;
}

.profile_text{
  width: 62%;
  line-height: 1.7;
  text-align: justify;
  margin-top: -10px;
}

.profile_text p{
  font-size: 0.9em;
}

.profile_text h3{
  font-size: 1.5em;
  letter-spacing: 0.08em;
  font-weight: normal;
}

.profile_text h3 span{
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: normal;
}
.fancybox-caption a, .fancybox-caption a:link {
  text-decoration-skip-ink: none;
  color: #eee;
  text-decoration: none !important;
  text-decoration: underline !important;
  text-decoration-thickness: 22px !important;
  text-decoration-color: #78726e !important;
  text-underline-offset: -16px;
}


.skill {
  width: 100%;
  margin: 0 auto 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1.6em;
}

.skill .skill_detail{
  width: 45%;
}

.skill .skill_detail i{
  margin-right: 10px;
}

.skill .skill_detail p{
  font-size: 14px;
  margin-bottom: 30px;
}


/* スキルバー */
.skillbar {
  position:relative;
  display:inline-block;
  margin:15px 0;
  width:100%;
  background:#fff;
  height: 30px;
  border: #c2bdbd 1px solid;
  width:100%;
  padding: 5px 5px 5px 0;
  border-radius: 2px;
}

.skillbar-bar {
  height:30px;
  width:0px;
  background:#b0639b;
  display:inline-block;
}

.hidden {
  display: none;
}

.skill_icon {
  width: 30px;
  margin-right: 10px;
}

@media screen and (max-width:600px){
  .about_ptofile{
    display: block;
  }
  
  .profile_img{
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .profile_text{
    width: 100%;
    text-align: center;
  }

  .profile_text p{
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .profile_text h3 span{
    display: block;
    margin-left: 0;
    margin-top: -5px;
  }

  .profile_text p{
    font-size: 0.8em;
    text-align: justify;
  }

  .skill {
    display: block;
  }
  
  .skill .skill_detail{
    width: 100%;
  }

  .skill .skill_detail p{
    font-size: 14px;
  }
}

@media screen and (max-width:480px){



}

/*===contact===*/
.contact_contents{
  width: 80%;
  margin: 0 auto;
}

.contact_contents dt,
.contact_contents dd{
  display: inline-block;
}

.contact_contents_item{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact_contents_item dt{
  width: 30%;
}

.contact_contents_item dd{
  width: 70%;
}

label {
  font-size: 1em;
  margin-bottom: 10px;
  display: block;
  color: #78726e;
  letter-spacing: 0.08em;
  font-family: 'Noto Sans JP', sans-serif;
  margin-right: 10px;
}

input[type="text"],
input[type="email"],
textarea {
  color: #78726e;
  background-color: rgba(255,255,255,0.5);
  border: 1px #c2bdbd solid;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
  box-sizing: border-box;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  max-width: 480px;
}

textarea {
  width: 100%;
  max-width: 480px;
  height: 6rem;
}

input[type="submit"] {
  margin: 0 auto;
  padding: 10px 50px;
  border: none;
  margin-bottom: 50px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  background-color: rgb(255 255 247 / 25%);
  border: solid #b0639b 2px;
  color: #b0639b;
  font-size: 1em;
  font-family: 'Noto Sans JP', sans-serif;
}

input[type="submit"]:hover{
  background-color:#b0639b;
  color: #fff;
}

@media screen and (max-width:480px){
  .contact_contents{
    width: 100%;
  }

  .contact_contents_item{
    display:block;
    margin-bottom: 30px;
  }

  .contact_contents_item dt{
    width: 100%;
  }
  
  .contact_contents_item dd{
    width: 100%;
  }

  input[type="text"],
  input[type="email"] {
  width: 100%;
}
}


/* フッター */
.footer {
  padding-top: 2em;
  padding-bottom: 2em;
  text-align: center;
  background-color: #78726e;
  color: #fff;
}

.footer .logo{
  width: 8%;
  margin: 0 auto;
}

.footer .logo:hover{
  transition: 0.3s;
  opacity: 0.8;
}

@media screen and (max-width:768px){
  .footer .logo{
    width: 120px;
  }
}

/*===トップバックボタン===*/
.top-back {
  display: none;
  z-index: 10000;
}

#page-top {
  position: fixed;
  right: 20px;
  bottom: 40px;
  height: 30px;
  width: 30px;
  text-decoration: none;
  font-size: 90%;
  font-weight: 700;
  line-height: 1.5rem;
  color: #c2bdbd;
  padding-top: 60px;
  border-right: solid 1px #c2bdbd;
  transition: 0.3s;
  writing-mode: vertical-lr;
}

#page-top span {
  color: #c2bdbd;
}

#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  right: -9px;
  width: 30px;
  border-top: solid 2px #c2bdbd;
  transform: rotate(-65deg);
  transition: 0.5s;
}

#page-top:hover {
  padding-top: 70px;
}

@media screen and (max-width:1000px){
  .pc-nav {
    display: none !important;
  }
}

@media screen and (orientation:landscape){
  .nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav li a {
    padding: 10px 20px;
    width: 8em;
  }
}


/* scroll-icon.css */
.hero-img {
  position: relative;
}

.scroll-icon{
  position:absolute;
  left:50%;
  bottom:40px;
  height:50px;
}

.scroll-icon span{
  position: absolute;
  left:-22px;
  top: -30px;
  color: #eee;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.scroll-icon::after{
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #eee;
  animation: pathmove 1.8s ease-in-out infinite;
  opacity:0;
}

@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}


/* @shutter */
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #78726e;
  z-index: 100000;
}

.shutter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #f3f3f3;
}

.shutter {
  animation: shutterClose 2.6s forwards;
}

.shutter::before {
  animation: shutterOpen 2.6s forwards;
}

/* end@shutter */


/* @shutter anime */
@keyframes shutterClose {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none; 
    z-index: -1;
  }
}

@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
/* end@shutter */


/*==waiting==*/
.up {
  opacity: 0;
  position: relative;
}
.up {
  bottom: -50px;
}


/*==action==*/
.upstyle {
  opacity: 1;
  transition: 1.5s 0.5s;
}

.upstyle {
  bottom: 0px;
}

.get-up {
  -webkit-animation: contentScale 2.6s forwards;
  animation: contentScale 2.6s forwards;
}

@keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
    transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
    transform: perspective(800px) scale(1) rotateX(0);
  }
}