@charset "utf-8";
/* common */
html{
  scroll-behavior:smooth;
}
body{
  font-family: "Noto Serif JP", serif;
}

.inner{
  padding: 80px 16px;
}

@media screen and (min-width: 1080px) {
  .inner{
    padding: 120px 10%;
  }
}

.m_section-ttl_wrap{
  text-align: center;
}
.m_section-ttl{
  position: relative;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0 1px 0 #FFF,  0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.m_section-ttl::after{
  position: absolute;
  content: "erqe";
  top: 100%;
  left: 50%;
  transform: translate(-50%, -30%);
  font-size: 18px;
}
@media screen and (min-width: 1080px) {
  .m_section-ttl{
    position: relative;
    font-size: 48px;
  }
  .m_section-ttl::after{
    position: absolute;
    content: "erqe";
    font-size: 24px;
  }

}

/*top-kv header */
.top-kv{
  position: relative;
}
.kv-movie{
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  overflow: hidden;
}

.l_header{
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
}
.l_header-flex{
  display: flex;
  justify-content: space-between;
}

.header-right{
  margin-right: 40px;
  margin-top: 60px;
  writing-mode: vertical-rl
}
@media screen and (min-width: 1080px) {
  .header-right{
    margin-right: 80px;
    margin-top: 80px;
  }
}
.l_header-ttl{
  position: relative;
  font-size: 64px;
  font-weight: bold;
  letter-spacing: 20px;
  color: white;
}
@media screen and (min-width: 1080px) {
  .l_header-ttl{
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 20px;
  }
}
.l_header-ttl::after{
  content: "SHOKIs";
  writing-mode: vertical-lr;
  color: var(--white_color);
  font-size: 14px;
  letter-spacing: 4px;
  display: block;
  position: absolute;
  top: 45%;
  transform: translateY(-50%) translateX(550%);
  text-orientation: upright;
  margin-left: -6%;
}
@media screen and (min-width: 1080px) {
  .l_header-ttl::after{
    font-size: 18px;
  }
}
.l_header-ttl::before{
  position: absolute;
  display: block;
  content: "PORTFOLIO";
  color: var(--white_color);
  font-size: 14px;
  letter-spacing: 2px;
  margin-left: 6px;
  writing-mode: horizontal-tb;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1080px) {
  .l_header-ttl::before{
    font-size: 16px;
  }
}
.l_header-nav{
  height: 100%;
  position: absolute;
  background-color: #94765bc8;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 80px 16px;
}
@media screen and (min-width: 1080px) {
  .l_header-nav{
    padding: 120px 40px;
  }
}

.l_header-lists{
  display: flex;
  gap: 40px;
  flex-direction: column;
  text-align: center;
}

.l_header-nav-item{
  position: relative;
  color: white;
  font-weight: bold;
}
.l_header-nav-item::after{
  content: "";
  position: absolute;
  font-weight: normal;
  left: 50%;
  font-size: 14px;
  top: 140%;
  transform: translate(-50%, -50%);
}
.l_header-nav-item_about::after{
  content: "ABOUT";
}
.l_header-nav-item_skills::after{
  content: "SKILLS";
}
.l_header-nav-item_works::after{
  content: "WORKS";
}


.contact-img{
  width: 8em;
}

.blinder{
  opacity: 0;
  transition: .5s;
}

.page-top_wrap{
  position: fixed;
  z-index: 10000;
  bottom: 10%;
  left: 80%;
  height: 40px;
  width: 40px;
  border: 2px solid #a9a29c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .7;
}
@media screen and (min-width: 1080px) {
  .page-top_wrap{
    left: 95%;
  }
}

.page-top__arrow {
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 26px solid #a9a29c;
  border-top: 0;
}

/* background */
.background::before{
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(../img/melmel.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

/* about */
.l_about{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.m_section-ttl_about::after{
  content: "ABOUT";
}

.m_about-flex{
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .m_about-flex{
    margin-top: 80px;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}

.m_about-pic_wrap{
  margin: 0 auto;
  margin-top: 40px;
  width: 40vw;
}
@media screen and (min-width: 1080px) {
  .m_about-pic_wrap{
    width: 25vw;
    margin: 40px 0;
  }
}

.m_about-text_wrap{
  height: 100%;
  margin-top: 24px;
  gap: 16px;
}
@media screen and (min-width: 1080px) {
  .m_about-text_wrap{
    height: inherit;
    width: 400px;
    display: flex;
    flex-direction: column;
  }
}

.m_about-text_name_wrap{
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  line-height: 1.75;
}

.m_about-text_name{
  font-weight: bold;
  font-size: 28px;
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black, -1px 1px 0 black, 1px -1px 0 black, 0 1px 0 black,  0 -1px 0 black, -1px 0 0 black, 1px 0 0 black;
}
@media screen and (min-width: 1080px) {
  .m_about-text_name{
    font-weight: bold;
    font-size:48px;
    color: white;
    text-shadow: 1px 1px 0 black, -1px -1px 0 black, -1px 1px 0 black, 1px -1px 0 black, 0 1px 0 black,  0 -1px 0 black, -1px 0 0 black, 1px 0 0 black;
  }
}

.m_about-txt{
  line-height: 2;
}
@media screen and (min-width: 1080px) {
  .m_about-txt{
    font-size: 18px;
  }
}

.x_link{
  margin-left: 24px;
}

.m_x-img{
  width: 40px;
}
@media screen and (min-width: 1080px) {
  .m_x-img{
    width: 50px;
  }
}

.m_about-txt{
  text-align-last: left;
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black, -1px 1px 0 black, 1px -1px 0 black, 0 1px 0 black,  0 -1px 0 black, -1px 0 0 black, 1px 0 0 black;
  margin-top: 24px;
}

.m_about-button_wrap{
  margin: 40px auto 0 auto;
  width: 200px;
  height: 60px;
  background-color: #d9d9d9;
  box-shadow: #505050 3px 3px;
  border-radius: 2px;
}
@media screen and (min-width: 1080px) {
  .m_about-button_wrap{
    margin-top: 80px;
    width: 280px;
    height: 80px;
    font-size: 18px;
  }
}
.m_about-button_wrap:hover{
  transform: translate(3px, 3px);
  box-shadow: none;
}

.m_about-button{
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.m_about-button::after{
  position: absolute;
  content: "-more-";
  top: 50%;
  transform: translateY(15%);
  font-size: 14px;
}

/* skills */
.m_section-ttl_skills::after{
  content: "SKILLS";
}

.m_skills-flex{
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  .m_skills-flex{
    margin-top: 80px;
  }
}

.m_skill_wrap{
  width: 160px;
  height: 300px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  padding: 16px 16px;
}
@media screen and (min-width: 1080px) {
  .m_skill_wrap{
    width: 280px;
    height: 460px;
  }
}

.m_skill-desc_main{
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  margin-top: 8px;
}
.m_skill-desc_sub{
  color: white;
  margin-top: 8px;
  font-size: 14px;
}
@media screen and (min-width: 1080px) {
  .m_skill-desc_main{
    font-size: 22px;
    margin-top: 12px;
  }
  
  .m_skill-desc_sub{
    margin-top: 12px;
    font-size: 18px;
  }
}

.m_skill-img__resp{
  padding-top: 16px;
}

/* works */
.l_works{

}

.m_section-ttl_works::after{
  content: "WORKS";
}

.swiper{
  width: 100%;
}

.swiper-area{
  margin-top: 40px;
}
@media screen and (min-width: 1080px) {
  .swiper-area{
    margin-top: 80px;
  }
}

.m_work-sample_wrap{
  width: 70%;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .m_work-sample_wrap{
    width: 90%;
    margin: 0 auto;
  }
}

.m_work-sample-img{
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 1080px) {
  .m_work-sample-img{
    width: 100%;
    height: 400px;
  }
}

.m_work-sample_desc_wrap{
  background-color: rgba(224, 224, 224, 0.6);
  padding: 24px 24px;
  border-radius: 0 0 8px 8px;
  border-left: #ffffff 2px solid;
  border-right: #ffffff 2px solid;
  border-bottom : #ffffff 2px solid;
}
@media screen and (min-width: 1080px) {
  .m_work-sample_desc_wrap{
    padding: 32px 40px;
  }
}
.m_work-sample_lists{
  text-align: left;
  font-weight: bold;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0 1px 0 #FFF,  0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
@media screen and (min-width: 1080px) {
  .m_work-sample_lists{
    font-size: 20px;
  }
}

.m_work_link__bottom_wrap{
  margin-top: 16px;
  text-align: center;
}
.m_work_link__bottom{
  color: white;
  font-weight: bold;
  text-decoration: underline;
  transition: color .6s;
}
@media screen and (min-width: 1080px) {
  .m_work_link__bottom{
    font-size: 18px;
  }
}
.m_work_link__bottom:hover{
  color: rgb(0, 192, 192);
}

.swiper-pagination {
  bottom: 206px !important;
}
@media screen and (min-width: 1080px) {
  .swiper-pagination {
    bottom: 190px !important;
  }
  .swiper-pagination-bullet {
    margin: 0 8px !important;
    width: 16px !important;
    height: 16px !important;
  }
  
}

/* contact */
.l_contact{
  background: url(/img/contact-bg.png);
  background-position: center;
  object-fit: cover;
  color: white;
}
@media screen and (min-width: 1080px) {
  .l_contact{
    text-align: center;
  }
}

.m_section-ttl_contact{
  text-shadow: none;
}

.m_section-ttl_contact::after{
  content: "CONTACT";
}

.m_contact-form{
  margin-top: 40px;
}
@media screen and (min-width: 1080px) {
  .m_contact-form{
    margin: 80px auto 0 auto;
    width: 80%;
  }
}

@media screen and (min-width: 1080px) {
  .m_form-unit{
    width: 70%;
    margin: 0 auto;
  }
}

.m_form-unit:not(:first-of-type){
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .m_form-unit{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .m_form-unit-head{
    text-align-last: left;
  }
}

.m_form-unit-head{
  font-weight: bold;
  position: relative;
  padding: 0 8px;
}
.m_form-unit-head::after{
  content: "aa";
  position: absolute;
  right: 0;
  padding-right: 8px;
  color: #dbdbdb;
  opacity: .5;
  font-size: 12px;
  top: 100%;
  transform: translateY(-100%);
}
.m_form-unit-head_name::after{
  content: "ex) Shoki Miura";
}
.m_form-unit-head_email::after{
  content: "ex) sample@sample.com";
}
@media screen and (min-width: 1080px) {
  .m_form-unit-head{
    font-size: 18px;
  }
  .m_form-unit-head::after{
    font-size: 14px;
  }
}

.form-unit-contents{
  margin-top: 4px;
}

.m_form-input{
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border: rgba(220, 220, 220, 0.3) 1px solid;
  border-radius: 4px;
  height: 32px;
  font-size: 16px;
  padding: 2px 8px;
}

.m_form-unit-head_text-box::after{
  content: "";
}
.m_form-textarea{
  padding: 4px 8px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border: rgba(220, 220, 220, 0.3) 1px solid;
  border-radius: 4px;
}

.m_form-unit__policy{
  margin-top: 40px;
  text-align: center;
}

.m_form-checkbox{
  appearance: checkbox;
}

.m_form-label-txt{
  color: aqua;
  text-decoration: underline;
}

.submit{
  background-color: rgba(222, 222, 222, 0.5);
  width: 100%;
  height: 70px;
  margin-top: 48px;
  font-size: 18px;
  cursor: pointer;
}

.submit:hover{
  opacity: .8;
}

/* footer  */
.l_footer{
  background-color: gray;
  height: 80px;
}

.l_footer-contents{
  height: inherit;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.l_footer-name{
  color: white;
}

.l_footer-contents_right{
  display: flex;
  height: inherit;
  align-items: center;
}

.l_footer-email_pc{
  color: white;
}
@media screen and (max-width: 400px) {
  .l_footer-email_pc{
    display: none;
  }
}
/* js */
.burger{
  margin-left: 16px;
  margin-top: 32px;
  width: 30px;
  height: 10px;
  position: relative;
  z-index: 10000;
}
@media screen and (min-width: 1080px) {
  .burger{
    display: none;
  }
}
.burger-bar{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color:white;
}
.burger-bar:first-child{
  top: 0;
  transition: 0.5s;
}
.burger-bar:last-child{
  top: 100%;
  transform: translateY(-100%);
  transition: .5s;
}
.burger.active .burger-bar:first-child{
  top: 50%;
  transform: rotate(45deg);
  background-color: white;
}
.burger.active .burger-bar:last-child{
  top: 50%;
  transform: rotate(-45deg);
  background-color: white;
}

.js-nav{
  left: -280px;
  transition: .3s;
}
@media screen and (min-width: 1080px) {
  .js-nav{
    opacity: 1;
    left: 0px;
  }
}
.js-nav.active{
  left: 0;
  transition: .3s;
}

.js-blinder.active{
  opacity: 1;
  transition: .5s;
  top: 0;
  right: 0;
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 1080px) {
  .js-blinder.active{
    background-color: transparent;
  }
}