@charset "UTF-8";
/* CSS Document */
/*共通パーツ--------------------------------------------------------------------*/
.body-inner {
  overflow-x: hidden;
}
#page-top {
  /* opacity: 0;*/
  transition: all 0.3s;
  width: 60px;
  position: fixed;
  bottom: 5%;
  right: 1.5%;
  z-index: 10;
}
/*<実装>ページトップ右から出現動き　*/
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

#cursor{
  position: fixed;

  /*丸の大きさと色の指定*/
  background: #474E5B;
  border-radius:10px;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;/*真ん中にくるようにマイナスマージンで調整*/

  z-index: 2;/*一番手前に来るように*/
  pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
}

/*ちょっと遅れてついてくるストーカー要素*/
#stalker{
  position: fixed;

  /*丸の大きさと色の指定*/
  background: #dcdcdc;
  width: 60px;
  height: 60px;
  border-radius:30px;
  margin: -30px 0 0 -30px;/*真ん中にくるようにマイナスマージンで調整*/
  z-index: 1;/*カーソルの後ろに来るように*/
  pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
}
@media(max-width:650px) {
  ul.header__global-menu {
    display: none;
}
}

/*<css実装>ハンバーガーメニュー------------------------------------------*/
.drawer-menu__wrapper {
  display: none;
}
a {
  text-decoration: none;
  color: #fff;
}
ul {
  list-style: none;
}
.menu-checkbox {
  display: none;
}
.drawer-menu {
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  right: 0;
  height: 100%;
  width: 30vw;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out 0s;
  background-color: #fff;
  z-index: 20;
  text-align: left;
  padding: 0 120px;
}

.drawer-menu-list {
  margin-top: 60px;
}
.drawer-menu-item {
  padding: 15px 0px;
  border-bottom: solid 1px #fff;
}
.menu-checkbox:checked ~ .drawer-menu {
  transform: translateX(0);
}
.drawer-icon {
  cursor: pointer;
  position: fixed;
  top: 40px;
  right: 60px;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  background-color: #fff;
}
.drawer-icon span, .drawer-icon span:before, .drawer-icon span:after {
  content: '';
  display: block;
  height: 1.5px;
  width: 40px;
  border-radius: 1.5px;
  background-color: #878787;
  position: absolute;
  transition: all 0.5s ease-in-out 0s;
}
.drawer-icon span::before {
  bottom: 12px;
}
.drawer-icon span::after {
  top: 12px;
}
.drawer-menu {
   background-color: #474E5B;
  opacity: 0.85;
}
.menu-checkbox:checked ~ .drawer-icon {
  background-color: #474E5B;
}
.menu-checkbox:checked ~ .drawer-icon span {
  background-color: rgba(255, 255, 255, 0);
}
.menu-checkbox:checked ~ .drawer-icon span::before {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #878787;
}
.menu-checkbox:checked ~ .drawer-icon span::after {
  top: 0;
  transform: rotate(45deg);
  background-color: #878787;
}
.menu-background {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.5s ease-in-out 0s;
}
.menu-checkbox:checked ~ .menu-background {
  display: block;
  opacity: 0.3;
}

.drawer-menu__wrapper {
  display: block;
}
.about__kind {
  padding: 30px 55px 0px;
  width: 100px;
}

li.drawer-menu-item {
  width: 80%;
}
li.drawer-menu-item:last-child {
  border-bottom: solid 1px #fff;
}

/*lead----------------------------------------------------------------------*/

.title-border {
  display: flex;
  align-items: center;
  max-width: 1080px;
}
.title-border:before {
  border-top: 0.75px solid #816284;
  content: "";
  flex-grow: 0.5;
}
.title-border:after {
  content: "";
  flex-grow: 3;
}
.title-border:before {
  margin-right: 4.5rem;
}
.title-border:after {
  margin-left: 1rem;
}

@media(max-width:480px) {
  .lead h2 {
    font-size: 5rem;
    padding-bottom: 29px;
    line-height: 1.2;
  }
  .lead {
    padding: 100px 10% 20px;
  }
  .lead p {
    margin-left: 0;
    width: 100%;
    line-height: 1.5;
    font-size: 1.4rem;
  }
  .title-border:before {
    margin-right: 2rem;
    flex-grow: 3;
  }
  p.seciton-skils__description {
    font-size: 1.5rem;
  }
}
/*section共通項目---------------------------------------------------------------*/
#about-me, #skills, #loves {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 10% 60px;
  text-align: left;
}
/*section①profile------------------------------------------------------------*/

img.skills__name1 {
  width: 200px;
  margin-bottom: 30px;
}
.portfolio_title__container {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.movie_blk {
    width: 100%;
    height: 450px;
    position: relative;
}
.movie_blk video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  z-index: -100;
}
.movie_blk p {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%,-50%);
}
.portfolio__title {
  max-width: 1000px;
  display: flex;
}
.profile_wrapper {
  padding: 0 5%;
}

.profile_lead {
  max-width: 1000px;
  text-align: left;
  display: flex;
  margin: 0 auto;
      align-items: center;
}
.profile_lead_words {
  font-size: 2.8rem;
  letter-spacing: 0.2rem;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
  line-height: 1.8;
}


img.profile_photo {
    width: 26%;
  height: 26%;
  padding: 0 50px 0px 0;
}
.profile_all-container {
  padding: 0px 10% 0px;
}
.profile_container {
   margin: 0 auto;
}

.profile_container p {
  padding: 45px 5% 60px;
    background-color: #fff;
    margin-top: -25px;
    /* width: 100%; */
    max-width: 1000px;
    margin: 0 auto;
}
@media(min-width:1032px) {
  .profile_container {
    margin-bottom: -260px;
  }
    img.profile_photo {
      width: 20%;
    }
  }
@media(max-width:1031px) {
  .profile_container {
    margin-bottom: -330px;
  }
  
}
  
@media(max-width:840px) {
  img.profile_photo　{
    padding-right: 0;
  }
  img.profile_photo {
    padding: 0;
  }
  .profile_container p {
    padding: 25px 5% 50px;
  }
  .profile_lead { 
   justify-content: space-between;
}
  
  img.profile_photo {
    width: 35%;
  }
  .profile_lead_words {
    font-size: 3.5vw;
  }
  
}
@media (max-width: 640px) {
    img.profile_photo {
        width: 85%;
     aspect-ratio: 1 / 1;
  object-fit: contain;
  text-align: center;
    }
  .profile_lead {
    text-align: center;
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    align-items: center;
}
      .profile_lead_words {
        font-size: 5.5vw;
        padding: 40px 0;
    }
  .profile_wrapper {
    padding: 0 0 30px;
  }
}
@media (max-width: 480px) {
  .profile_container {
  padding: 0 7%;
}
.portfolio_title__container {
    padding: 20px 10% 0;
}
  img.profile_photo {
    padding-right: 0;
  }
  .profile_all-container {
  padding: 0;
}
}
/*section②skills------------------------------------------------------------*/
#skills {
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #f1f1f1 50%, #f1f1f1 100%);
  max-width: none;
}
.skills__all-container {
  background-color: #fff;
  max-width: 1000px;
  padding: 90px 5% 30px;
  margin: 0 auto;
}
img.skills__name {
  width: 180px;
}
.skills__title {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.skills__kind {
  width: 200px;
}
img.skills__kind-graph {
  width: 150px;
  display: block;
  margin-bottom: 30px;
}
.skills__container {
  display: flex;
  justify-content: space-around;
}
.skills__kind {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 290px;
  padding: 10px 0;
  align-content: center;
}
p.skills__description {
  padding-bottom: 30px;
}
@media(max-width: 960px) {
  img.skills__kind-graph {
    width: 100px;
  }
  .skills__kind {
    width: 230px;
  }
}
  @media(max-width: 840px) {
    .skills__title {
      display: block;
    }
   
  }
    @media(max-width: 650px) {
      .skills__container {
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
      }
      img.skills__name1 {
    width: 130px;

    }
}
    @media(max-width: 480px) {
      .video {
        height: 100vh;
        top: 0px;
      }
      .skills__container {
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
      }
      .about-me__container {
        padding: 0px 0;
        justify-content: center;
      }
      .skills__kind {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        width: 230px;
        padding: 10px 0;
      }
      img.skills__kind-graph {
        width: 100px;
      }
        #service {
          padding: 0px 7% 60px;
      }
  #skills {
  padding: 0px 7% 60px;
}
}
    /*section③loves----------------------------------------------------------*/
    #loves {
      padding: 60px 10% 120px;
      text-align: left;
      max-width: none;
      margin: 0 auto;
      background-color: #f1f1f1;
      background: linear-gradient(180deg, #f1f1f1 0%, #f1f1f1 50%, #fff 50%, #fff 100%);
    }
    img.loves-kind {
      filter: grayscale(100%);
      transition: all 0.3s ease-in;
      margin-bottom: 15px;
      width: 220px;
      display: flex;
    }
    img.loves-kind {
      width: 27%;
          margin-bottom: 30px;
    }
    img.loves-kind:hover {
      filter: grayscale(0%);
    }
    .loves__all-container {
      background-color: #fff;
      max-width: 1000px;
      padding: 60px 5% 30px;
      margin: 0 auto;
    }
    .skills__name {
      width: 200px;
      display: inline-block;
      margin-bottom: 25px;
    }
    .loves__wrapper {
      display: flex;
      justify-content: space-around;
      flex-direction: row;
      flex-wrap: wrap;
    }
    .section-loves__item-box {
      display: flex;
      justify-content: space-between;
      margin-bottom: 80px;
      flex-wrap: wrap;
    }
    .section-loves__itme-wrapper img {
      width: 115px;
      padding-top: 25px;
      opacity: 0.6;
    }
    ul li {
      list-style: none;
    }
    .section-loves__itme-wrapper {
      display: flex;
    }
    .section-loves__description {
      padding: 20px 0 0 20px;
      width: 260px;
      line-height: 2;
    }
    img.section-loves__camera-icon {
      width: 87px;
      padding: 30px 20px 0 10px;
    }
    img.section-loves__cafe-icon {
      width: 80px;
      padding: 30px 20px 0 10px;
    }
    /*<js実装>アイコンフェードアップ*/
    .scroll-up {
      opacity: 0;
      visibility: hidden;
      transform: translateY(40px);
      transition: all 2s;
    }
    .scroll-up.is-show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0px);
    }

    @media(max-width: 960px) {
      #loves {
        padding-top: 60px;
      }
      .section-loves__item-box {
        display: block;
        margin: 0 auto;
      }
}
@media(max-width: 650px) {
  #loves {
    padding: 30px 10%;
  }
  .loves__wrapper {
    display: flex
;
    justify-content: space-around;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}
 img.loves-kind {
    width: 75%;
}
}
@media(max-width: 480px) {
  #loves {
    padding: 30px 7% 30px;
  }
}









