@charset "UTF-8";
html {
  font-size: 62.5%;
  /*16px*62.5%=10px*/
}

body {
  color: #25263E;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "pkna";
}

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

#loader-bg {
  background-color: #fff;
  height: 100%;
  left: 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 9999;
}

#loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#loader img {
  width: 60px;
  height: 60px;
}

.fuwafuwa {
  -webkit-animation-name: fuwafuwa;
          animation-name: fuwafuwa;
  /* fuwafuwaっていうアニメーションをしてね！ */
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

/* fuwafuwaっていうアニメーションはこんなふうだよ！ */
@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-5px, -15px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-5px, -15px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
.canvas-inner {
  position: fixed;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  width: 100%;
  height: 100vh;
  margin: 10px auto;
  z-index: 0;
  pointer-events: none;
}
.canvas-inner .canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.fix-bg {
  width: 100%;
  height: 100vh;
  background: url(../img/sp-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  background-position: center;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .fix-bg {
    background: url(../img/pc-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.header {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header_tit {
  margin: auto;
  position: absolute;
  height: 100vh;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
}
.header_tit__inner {
  width: 80%;
  position: absolute;
  text-align: center;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 1200px) {
  .header_tit__inner {
    max-width: 552px;
    bottom: 10%;
    right: 5%;
    left: auto;
  }
}
.header_tit__inner p {
  font-family: "Baskervville", serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 700px) {
  .header_tit__inner p {
    font-size: 2rem;
  }
}
.header_tit__inner p::after, .header_tit__inner p::before {
  content: "";
  border-top: 1px solid;
  width: 4em;
}
@media screen and (min-width: 700px) {
  .header_tit__inner p::after, .header_tit__inner p::before {
    width: 8em;
  }
}
.header_tit__inner p::after {
  margin-left: 1em;
}
.header_tit__inner p::before {
  margin-right: 1em;
}
.header_pic {
  width: 134%;
  min-width: 60vh;
  min-height: 100vh;
  margin-top: -2vh;
  margin-left: -8vh;
  position: relative;
  top: 0;
  z-index: 0;
}
@media screen and (min-width: 700px) {
  .header_pic {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .header_pic {
    max-width: 1090px;
    min-width: auto;
    margin-left: 8%;
    margin-top: -5%;
  }
}

.intro {
  padding-top: 32px;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (min-width: 1200px) {
  .intro {
    max-width: 1000px;
    margin: 0 auto 300px;
  }
}
.intro_deco {
  width: 40px;
  margin: 0 auto 30px;
}
.intro_txt {
  padding: 16px 0;
  background: #25263E;
  margin: 0 auto;
}
.intro_txt img {
  max-width: 250px;
}

@media screen and (min-width: 1200px) {
  .section-wrap {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.content {
  width: 90%;
  padding: 47px 20px;
  background-color: #FFF;
  background-image: url(../img/wave-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  margin-bottom: 220px;
}
@media screen and (min-width: 1200px) {
  .content {
    width: 100%;
    max-width: 800px;
    padding: 47px;
  }
}
.content::after {
  content: "";
  display: inline-block;
  background-image: url(../img/pirts.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  width: 65px;
  height: 85px;
  top: -45px;
}
.content.works {
  margin-left: auto;
}

.section-tit {
  font-family: "Baskervville", serif;
  font-size: 18vw;
  color: #856485;
  position: relative;
  z-index: 1;
  line-height: 1;
  margin-left: 0.3em;
  margin-top: 20px;
  margin-bottom: 50px;
  display: inline-block;
}
@media screen and (min-width: 700px) {
  .section-tit {
    font-size: 10.5rem;
  }
}
.section-tit span {
  display: block;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.6rem;
  text-align: center;
}
.section-tit::before {
  content: "";
  display: inline-block;
  background-image: url(../img/tit-pirts.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  width: 127px;
  height: 124px;
  z-index: -1;
  left: -0.3em;
  top: -20px;
}
.section-tit::after {
  content: "";
  display: inline-block;
  background-image: url(../img/star.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  width: 39px;
  height: 100px;
  transform: rotate(15deg);
  position: absolute;
  top: 0;
  right: -0.6em;
}
.section-tit.star-tit::after {
  background-image: url(../img/moon.png);
  width: 50px;
  right: -0.7em;
}
.section-tit__contact {
  font-size: 18vw;
  font-family: "Baskervville", serif;
  line-height: 1;
  text-align: center;
}
.section-tit__contact span {
  display: block;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}
@media screen and (min-width: 1200px) {
  .section-tit__contact {
    font-size: 7.6rem;
  }
}

.article-tit {
  background: #888358;
  font-family: "Baskervville", serif;
  color: #FFF;
  font-size: 2.6rem;
  max-width: 160px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}

.profile dt {
  font-size: 3rem;
  font-weight: normal;
  color: #78672E;
  margin-bottom: 14px;
}
.profile dd {
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (min-width: 700px) {
  .profile dd {
    display: flex;
    margin-bottom: 100px;
  }
}
.profile_img {
  max-width: 100px;
  margin: 0 auto;
  padding: 40px 0;
}
@media screen and (min-width: 700px) {
  .profile_img {
    max-width: 122px;
    margin: 0 0 0 auto;
    padding: 0;
  }
}

.skill_list {
  text-align: center;
  background-image: url(../img/top-left.png), url(../img/top-right.png), url(../img/bottom-left.png), url(../img/bottom-right.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: left top, right top, left bottom, right bottom;
  position: relative;
  padding: 60px 20px;
}
@media screen and (min-width: 1200px) {
  .skill_list {
    text-align: left;
    padding: 60px;
  }
}
.skill_list::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 12.5%;
  height: 75%;
  width: 5px;
  border-left: double 4px #888358;
}
@media screen and (min-width: 1200px) {
  .skill_list::before {
    top: 17.5%;
    height: 65%;
  }
}
.skill_list::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 12.5%;
  height: 75%;
  width: 5px;
  border-right: double 4px #888358;
}
@media screen and (min-width: 1200px) {
  .skill_list::after {
    top: 17.5%;
    height: 65%;
  }
}
.skill_list li {
  margin-bottom: 50px;
}
@media screen and (min-width: 1200px) {
  .skill_list li {
    display: flex;
  }
}
.skill_list li dt {
  font-size: 2rem;
  padding: 10px;
}
@media screen and (min-width: 1200px) {
  .skill_list li dl {
    width: calc(100% - 175px);
  }
}
.skill_list__pic {
  background: #000;
  border-radius: 50%;
  width: 145px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .skill_list__pic {
    margin: 0 auto 0 0;
  }
}
.skill_list__pic.design {
  background: #C4A3C4;
}
.skill_list__pic.coding {
  background: #99BDC2;
}
.skill_list__pic.illust {
  background: #BEBB9D;
}
.skill_list__cat {
  padding-top: 20px;
  margin: -5px -10px;
}
@media screen and (min-width: 1200px) {
  .skill_list__cat {
    margin: auto;
  }
}
.skill_list__cat li {
  display: inline-block;
  background: #25263E;
  font-size: 1.1rem;
  color: #FFF;
  border-radius: 3px;
  margin: 0 5px 5px 0;
  padding: 5px 10px;
}

@media screen and (min-width: 700px) {
  .works_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.works_list li {
  margin-bottom: 40px;
}
@media screen and (min-width: 700px) {
  .works_list li {
    width: 48%;
  }
}
.works_list li .works_list__hover {
  width: 100%;
  border: double 4px #888358;
  overflow: hidden;
}
.works_list li .works_list__hover img {
  display: block;
  transition: 0.5s;
}
.works_list li .works_list__hover img:hover {
  transform: scale(1.1);
}
.works_list__link {
  font-size: 1.1rem;
  text-decoration: underline;
  overflow-wrap: break-word;
}
.works_list.popup li {
  position: relative;
}
.works_list.popup li::after {
  content: "＋";
  width: 30px;
  height: 30px;
  background: #888358;
  color: #fff;
  line-height: 30px;
  text-align: center;
  position: absolute;
  top: 4px;
  left: 4px;
}

.contact {
  background: linear-gradient(rgba(211, 209, 222, 0.75), rgba(251, 224, 234, 0.75));
  padding: 100px 0;
  margin-bottom: 400px;
  position: relative;
}
.contact_bg {
  position: absolute;
  width: 90%;
  top: -5%;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .contact_bg {
    top: -13%;
  }
}
.contact-form {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}
.contact-form label {
  display: block;
  margin: 5px;
  text-align: left;
}
.contact-form input, .contact-form textarea {
  height: 3em;
  width: 100%;
  padding: 10px;
  margin-bottom: 30px;
  border-radius: 10px;
  border: 1px solid #888358;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  text-align: left;
}
.contact-form textarea {
  height: 215px;
}
.contact-form button {
  background: #78672E;
  width: 60%;
  height: 48px;
  padding: 16px;
  color: #fff;
  display: inline-block;
  cursor: pointer;
  border-radius: 10px;
}

.top-link {
  text-align: center;
  margin-bottom: 10px;
}
.top-link img {
  max-width: 50px;
}

.footer {
  background: #D3D1DE;
  color: #7B721E;
  text-align: center;
  padding: 10px 0;
}
/*# sourceMappingURL=style.css.map */