@charset "UTF-8";
body {
  color: rgb(156, 156, 161);
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  line-height: 1.7;
  letter-spacing: 2px;
}

a {
  color: rgb(156, 156, 161);
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

li {
  list-style: none;
}

.ly__container {
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 100px;
}

.container {
  max-width: 1000px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contents-title {
  font-size: 34px;
  display: inline-block;
  position: relative;
}

.contents-title::before {
  display: inline-block;
  position: absolute;
  content: "";
  bottom: -10px;
  /*下線の上下の位置*/
  left: 50%;
  width: 30px;
  /*下線の幅*/
  height: 2px;
  /*下線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  /*位置の調整*/
  background-color: rgb(156, 156, 161);
  /*下線の色*/
}

.ly__inner {
  margin-top: 80px;
}

.header__inner {
  padding-top: 20px;
  padding-bottom: 20px;
}

.main-nav {
  max-width: 1000px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-nav li {
  padding-left: 40px;
}

#home {
  background-image: url(/images/AdobeStock_361844879.jpeg);
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
}

.page-title {
  font-family: "Pinyon Script", cursive;
  font-size: 70px;
  font-weight: lighter;
  text-align: start;
  line-height: 100vh;
}

.works__inner {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr 1fr;
  padding-top: 40px;
}

.works__item {
  position: relative;
}
.works__item img {
  width: 450px;
}

.mask {
  width: 460px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 30px;
}
.mask:hover {
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

#skills {
  background-color: rgb(245, 239, 234);
  padding-top: 20px;
}

.skills__inner {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr 1fr 1fr;
}

.skills__item {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 5px;
  height: 400px;
}
.skills__item img {
  width: 100px;
}
.skills__item .responsive {
  opacity: 0.6;
}
.skills__item dt {
  font-size: 20px;
}
.skills__item dd {
  padding-top: 20px;
  text-align: justify;
}

.about__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.about__inner img {
  width: 300px;
}

.circle-items_top {
  position: absolute;
  top: -40px;
  left: 300px;
}

.circle {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /*background: rgb(247, 94, 18);
  /*background: linear-gradient(144deg, rgba(247, 94, 18, 1) 0%, rgba(82, 211, 203, 1) 0%, rgba(248, 170, 255, 1) 100%);*/
  background-image: -webkit-linear-gradient(357.3deg, rgb(245, 212, 212) 8.5%, rgb(252, 251, 224) 90.2%);
  background-image: linear-gradient(92.7deg, rgb(245, 212, 212) 8.5%, rgb(252, 251, 224) 90.2%);
}
.circle::after {
  content: "";
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.small-circle {
  width: 40px;
  height: 40px;
}
.small-circle::after {
  width: 60px;
  height: 60px;
}

.about__text {
  margin-left: 100px;
  padding: 20px 40px;
  text-align: start;
  position: relative;
  z-index: 3;
}
.about__text .my-name {
  font-size: 20px;
  padding-bottom: 20px;
}
.about__text .circle-items_top {
  position: absolute;
}
.about__text .middle-circle {
  width: 70px;
  height: 70px;
}
.about__text .middle-circle::after {
  width: 90px;
  height: 90px;
}
.about__text .circle-items_bottom {
  position: absolute;
  top: 110px;
  left: 450px;
}

.footer__inner {
  background-color: rgb(226, 190, 186);
  height: 50px;
  line-height: 50px;
}

#details {
  background-color: rgb(245, 239, 234);
}

.details__inner {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.details__inner img {
  width: 500px;
  border: 1px solid white;
}

.details__items {
  padding-left: 60px;
}

.details-text__header {
  padding: 10px 0;
}

.example {
  padding: 20px 0;
}

.example-details {
  text-align: justify;
  padding-top: 40px;
}

/*--- TOPへ戻るボタン ------*/
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 3;
  opacity: 0;
  /*はじめは非表示*/
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
  -webkit-writing-mode: vertical-rl;
  /*縦書き*/
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  /*改行禁止*/
  -webkit-animation: arrowmove 1s ease-in-out infinite;
          animation: arrowmove 1s ease-in-out infinite;
  /*矢印の動き*/
}

@-webkit-keyframes arrowmove {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 20px;
  }
}

@keyframes arrowmove {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 20px;
  }
}
/*.scroll-viewクラスがついたら出現*/
.scroll-top.scroll-view {
  opacity: 1;
  visibility: visible;
}

/*リンク全体の aタグの形状*/
.scroll-top a {
  text-decoration: none;
  text-transform: none;
  font-size: 0.9rem;
  display: block;
}

/*スクロールリンクの形状*/
.js-scroll a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: rgb(156, 156, 161);
}

.js-scroll a::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: rgb(156, 156, 161);
  -webkit-transform: skewX(-31deg);
          transform: skewX(-31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-scroll a::before {
  right: -11px;
}

/*ページトップリンクの形状*/
.js-pagetop a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: rgb(156, 156, 161);
}

.js-pagetop a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: rgb(156, 156, 161);
  -webkit-transform: skewX(31deg);
          transform: skewX(31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before {
  right: 0;
}

@media (max-width: 1000px) {
  #home {
    background-position: center;
  }

  .works__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .works__item {
    width: 300px;
    margin: 0 auto;
  }
  .works__item img {
    width: 300px;
  }

  .mask {
    width: 300px;
  }

  .skills__inner {
    grid-template-columns: 1fr 1fr;
  }

  .is-tb {
    display: none;
  }

  .details__inner {
    grid-template-columns: 1fr;
  }

  .details__items {
    padding-left: 0;
  }

  .example-details {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 18px;
  }

  #home {
    background-position: center;
  }

  .works__inner {
    grid-template-columns: 1fr;
  }

  .skills__inner {
    grid-template-columns: 1fr;
  }

  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .circle {
    display: none;
  }

  .about__text {
    margin-left: 0;
    text-align: justify;
  }
  .about__text .my-name {
    text-align: center;
  }

  .details__inner img {
    width: 300px;
  }

  /*------ ハンバーガーメニューボタン ------------------*/
  .openbtn {
    position: fixed;
    top: 20px;
    right: 20px;
    /*position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 5;
  }

  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background: rgb(226, 190, 186);
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
    width: 45%;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
    width: 35%;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
    width: 20%;
  }

  /*activeクラスが付与されると線が回転して×になる*/
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-135deg);
            transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(135deg);
            transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }

  .main-nav {
    position: fixed;
    right: -100%;
    width: 100%;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    background-color: #333;
    z-index: 4;
  }
  .main-nav li {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-nav li a {
    color: rgb(226, 190, 186);
  }

  .header__inner {
    padding-top: 0;
  }

  .main-nav.active {
    right: 0;
  }
}/*# sourceMappingURL=style.css.map */