@charset "UTF-8";
/* CSS Document */
/* スマートフォン 375px */
/* header */
.header {
  height: 80px;
}
.header-logo {
  width: 80px;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 320px;
  margin: 0 auto;
}
.header a {
  color: #333;
  text-decoration: none;
}
.header-font {
  font-size: 2.0rem;
  letter-spacing: 3px;
}
.section-myself {
  margin-bottom: 100px;
  margin-top: 100px;
}
.font-change {
  font-size: 35px;
}
.sub-title {
  color: #51504B;
  font-size: 1.4rem;
  margin-bottom: 50px;
}
.title-flex {
  display: flex;
  max-width: 300px;
  margin: 0 auto;
  justify-content: space-evenly;
}
.title-flex a {
  color: #333;
  text-decoration: none;
  letter-spacing: 3px;
}
.section-collection img {
  padding-bottom: 30px;
}
.web-ver h2 {
  font-size: 2.4rem;
  text-align: left;
  margin-left: 50px;
  margin-bottom: 40px;
  letter-spacing: 5px;
  position: relative;
}
.web-ver h2 ::before {
  content: "●";
  display: inline-block;
  position: absolute;
  left: -30px;
  color: #dbcfc8;
}
.web-ver span {
  display: inline-block;
  font-weight: 500;
  font-size: 1.6rem;
  color: #999;
}
.web-ver p {
  text-align: left;
  font-size: 1.4rem;
  padding: 0 20px;
  margin-bottom: 30px;
}
.web-ver img {
  max-width: 330px;
  display: block;
  margin: 0 auto 50px;
}
.web-ver dl {
  display: flex;
  flex-wrap: wrap;
  margin: 60px 0 60px;
  padding: 0 20px;
}
.web-ver dt {
  display: block;
  float: left;
  width: 25%;
  color: #afafaf;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: left;
}
.web-ver dd {
  width: 75%;
  margin-bottom: 30px;
  vertical-align: baseline;
  text-align: left;
  font-size: 1.4rem;
  flex-grow: 1;
  max-width: 245px;
}
.web-ver dl a {
  color: #333;
  text-decoration: none;
}
.url {
  margin: 0;
}
.section-collection a {
  color: #333;
  text-decoration: none;
}
/* section-contact */
.section-contact {
  background-color: #dbcfc8;
  background: rgba(219, 207, 200, 0.4);
  padding: 60px 0 10px;
}
.contact-page {
  background-color: #fff;
  border: solid 1px #AAA6A0;
  padding: 20px 0;
  width: 325px;
  margin: 40px auto 30px;
  border-radius: 100px;
}
.section-contact a {
  color: #333;
  text-decoration: none;
}
.section-contact h2 {
  font-size: 2.0rem;
  letter-spacing: 3px;
  margin-bottom: 0;
}
.sub-title {
  margin-top: 5px;
}
/* footer */
.footer {}
.footer small {
  color: #333;
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.4rem;
}
/*スクロールリンクの形状*/
.scroll-top {
  /*表示位置*/
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s; /*それぞれに0.5秒の変化のアニメーション*/
  /*縦書き*/
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /*改行禁止*/
  white-space: nowrap;
  /*矢印の動き*/
  animation: arrowmove 1s ease-in-out infinite;
}
.footer__copyright {
  font-size: 10px;
  color: #a0a0a0;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 50px;
}
@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;
  color: #666;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
}
/*スクロールリンクの形状*/
.js-scroll a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #666;
}
.js-scroll a::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #666;
  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: #666;
}
.js-pagetop a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #666;
  transform: skewX(31deg);
}
/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before {
  right: 0;
}
/*========= レイアウトのためのCSS ===============*/
h1 {
  font-size: 1.6rem;
}
h2 {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 30px 0;
}
p {
  margin-top: 20px;
}
#header {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.fade {
  opacity: 0;
  transition: opacity 2s;
}
.fade.view {
  opacity: 1;
}
/*ハンバーガーアイコン*/
@media (max-width: 751px) {
  #nav-drawer {
    padding: 20px 0;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 22px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 1px;
    width: 25px;
    background-color: #9c9d9f;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #fff;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
  }
  .nav-drawer__title {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 46px;
  }
  .nav-drawer__link-top {
    display: block;
  }
  #nav-content ul li {
    margin-bottom: 36px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    display: block;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
}
@media screen and (min-width:751px) {
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 751px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
}
/* PC */
@media (min-width: 751px) {
  .pc {
    display: block !important;
    width: 100%;
  }
  .sp {
    display: none !important;
  }
  @media only screen and (max-width: 751px) {
    .pc {
      display: none !important;
    }
    .sp {
      display: block !important;
    }
  }
  .header {
    height: 65px;
  }
  .header a {
    text-decoration: none;
    color: #333;
    font-size: 1.8rem;
    padding: 45px 0 0 30px;
    display: block;
  }
  .header-font {
    font-size: 3.0rem;
    margin-bottom: 0;
    letter-spacing: 5px;
    font-weight: 400;
  }
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1042px;
    margin: 0 auto;
    padding-right: 20px;
  }
  .font-english {
    font-size: 3.2rem;
  }
  .menu-flex {
    display: flex;
    justify-content: space-between;
  }
  .section-myself {
    margin-top: 200px;
  }
  .section-works h2 {
    font-size: 3.0rem;
    margin-top: 200px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .title-flex {
    display: flex;
    max-width: 330px;
    margin: 0 auto;
    justify-content: space-evenly;
  }
  .title-flex a {
    color: #333;
    text-decoration: none;
  }
  .title-flex p {
    font-size: 1.8rem;
  }
  .web-ver img {
    max-width: 700px;
    display: block;
    margin: 0 auto;
  }
  .web-ver h2 {
    margin-left: 200px;
  }
  .web-ver p {
    padding-left: 200px;
    font-size: 1.6rem;
  }
  .web-ver dl {
    display: flex;
    flex-wrap: wrap;
    margin: 60px 0 150px;
    padding: 0 200px;
    justify-content: center;
  }
  .web-ver dt {
    display: block;
    float: left;
    width: 21%;
    color: #afafaf;
    font-weight: 500;
  }
  .web-ver dd {
    max-width: 60%;
    margin-bottom: 30px;
    vertical-align: baseline;
    text-align: left;
  }
  .web-ver dl a {
    color: #333;
    text-decoration: none;
  }
  .name-flex img {
    width: 700px;
  }
  .section-contact h2 {
    font-size: 3.0rem;
  }
  .footer-sora, ul li {
    list-style: none;
    text-align: left;
    margin-bottom: 10px;
    margin-left: 50px;
  }
  .footer small {
    display: block;
    padding: 40px 0 20px;
  }
  .section-contact a {
    color: #333;
    text-decoration: none;
  }
  body {
    -webkit-text-stroke: 0;
    -webkit-font-smoothing: antialiased;
    font-weight: 400; /* 明示的に「標準」を指定 */
  }
  .footer__copyright {
    font-size: 10px;
    color: #a0a0a0;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 50px;
  }
}