/* -------------------------------------------------------------------
  COMMON
------------------------------------------------------------------- */
html {
  /* ベースのフォントサイズを10pxとする */
  font-size: 62.5%;
}
body { 
  background-color: #F3E6FF;
  color: #3D3A41;
  font-family: "Kiwi Maru", serif;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem;
}
.sp-br {
  display: none;
}

@media screen and (max-width: 600px) {
  .section-inner {
    padding: 0 2rem;
  }
  .sp-br {
    display: inline;
  }
}


/* -------------------------------------------------------------------
  HEADER
------------------------------------------------------------------- */
.header {
  padding: 0 5rem;
  z-index: 100;
  width: 100%;
  height: 100px;
  position: fixed;
}
.header__inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.site-logo {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
.site-logo img {
  width: 6rem;
}
.header-nav__list {
  display: flex;
}
.header-nav__item {
  margin-right: 2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #A679B3;
}
.header-nav__item:last-child {
  margin-right: 0;
}
.header-nav__item:hover {
  opacity: 0.7;
}

@media screen and (max-width: 600px) {
  .header-nav__item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 400px) {
  .header {
    padding: 0 2rem;
  }
  .header-nav__item {
    margin-right: 1rem;
    font-size: 1.6rem;
    font-weight: bold;
    color: #A679B3;
  }
}
@media screen and (max-width: 300px) {
  .site-logo img {
    width: 4rem;
  }
  .header-nav__item {
    font-size: 1.4rem;
  }
}


/* -------------------------------------------------------------------
  FV
------------------------------------------------------------------- */
.fv {
  height: 60vh;
  position: relative;
}
.fv__header {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.fv__title {
  font-size: 6rem;
  font-family: "Unbounded", sans-serif;
  color: #A679B3;
  padding: 0 2rem;
}
.fv__sub-title {
  margin-top: 0.8rem;
  font-size: 2.4rem;
}

@media screen and (max-width: 400px) {
  .fv__title {
    font-size: 4rem;
    padding: 0 1.5rem;
  }
  .fv__sub-title {
    font-size: 1.6rem;
  }
}


/* -------------------------------------------------------------------
  WORKS
------------------------------------------------------------------- */
.works-list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
.works-list__item {
  text-align: center;
  margin-bottom: 5rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.works-list__item img {
  width: 90%;
  transition: 0.3s;
}
.works-list__item img:hover {
  opacity: 0.7;
}
.tag__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.tag__project span {
  font-size: 1.4rem;
  font-weight: normal;
  color: #A679B3;
  border: 1px #A679B3 solid;
  border-radius: 0.8rem;
  padding: 0.1rem 0.8rem;
}
.works-list__name {
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: #3D3A41;
}
.works-list__name span {
  font-size: 1.6rem;
  font-weight: normal;
}

@media screen and (max-width: 800px) {
  .tag__project span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 660px) {
  .works-list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  .works-list-item {
    margin-bottom: 20px;
  }
}


/* -------------------------------------------------------------------
  WORKS-CONTENT
------------------------------------------------------------------- */
.works-content {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.works-content-img {
  text-align: center;
}
.works-content-img img {
  width: 100%;
}
.works-content-comment-box {
  max-width: 900px;
  padding: 3rem;
  margin: 0 auto;
}
.works-content-comment {
  display: inline-block;
  margin-bottom: 3rem;
  line-height: 2;
}
.works-content-comment span {
  font-size: 1.6rem;
  border-bottom: #A679B3 2px dashed;
}
.works-content-button {
  width: 20rem;
  text-align: center;
  margin: 0 auto;
  background-color: #FFF;
  padding: 1.7rem 1rem;
  border-radius: 3rem;
  font-size: 1.4rem;
  color: #A679B3;
  box-shadow: 0 0 8px #D0B5D8;
  transition-duration: .4s;
}
.works-content-button a {
  display: block;
}
.works-content-button:hover {
  transform: translateY(-5px);
}

@media screen and (max-width: 600px) {
  .works-list-item-name {
    font-size: 1.4rem;
  }
  .works-content-comment-box {
    padding: 1rem;
  }
}


/* -------------------------------------------------------------------
  ABOUT
------------------------------------------------------------------- */
.about {
  padding-top: 10rem;
}
.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5rem;
}
.about-comment {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 5rem;
  display: block;
  right: auto;
  left: auto;
  position: relative;
  margin: 0 auto 5% auto;
  text-align: center;
  background: #FFFFFF9F;
  border-radius: 6rem;
  z-index: 0;
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-comment:before {
  content: "";
  position: absolute;
  bottom: -17px;
  right: 30%;
  margin-left: 0;
  display: block;
  width: 15px;
  height: 15px;
  background: #FFFFFF9F;
  border-radius: 50%;
  z-index: 0;
}
.about-comment:after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 30%;
  margin-left: 0;
  display: block;
  width: 8px;
  height: 8px;
  background: #FFFFFF9F;
  border-radius: 50%;
  z-index: 0;
}
.me {
  position: relative;
  text-align: right;
  animation: move-y 0.5s infinite alternate ease-in-out;
}
@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
.me img {
  width: 300px;
}

@media screen and (max-width: 800px) {
  .me img {
    width: 200px;
  }
}
@media screen and (max-width: 600px) {
  .about-inner {
    padding: 0 2rem;
  }
  .about-comment {
    padding: 4rem;
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .me {
    bottom: -20px;
  }
  .me img {
    width: 180px;
  }
}
@media screen and (max-width: 300px) {
  .about-comment {
    padding: 2rem;
  }
}


/* -------------------------------------------------------------------
  CONTACT
------------------------------------------------------------------- */
.contact {
  padding-top: 12rem;
}
.contact-message {
  font-size: 1.6rem;
  text-align: center;
  padding-bottom: 5rem;
  line-height: 1.5;
}
.contact-form {
  margin: 0 auto;
  max-width: 800px;
}
.form-list-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
}
.form-list-item label {
  padding-bottom: 1rem;
  padding-left: 1remj;
  font-size: 1.4rem;
  font-weight: bold;
}
.form-list-item input,
.form-list-item textarea {
  padding: 2.5rem;
  background-color: #fff;
}
.form-list-item input:-webkit-autofill,
.form-list-item textarea:-webkit-autofill {
  box-shadow: 0 0 0px 100px #FFF inset;
  -webkit-text-fill-color: #3D3A41 !important;
}
.submit-button {
  width: 20rem;
  text-align: center;
  margin: 0 auto;
  background-color: #fff;
  padding: 1.7rem 1rem;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  color: #A679B3;
  /* ボタンの影 */
  box-shadow: 0 4px 0 #A679B3; 
}
.submit-button a {
  display: block;
}
.submit-button:hover {
  transform: translateY(4px);
  box-shadow: none;
}

@media screen and (max-width: 400px) {
  .contact-message {
    font-size: 1.4rem;
  }
}


/* -------------------------------------------------------------------
  THANKS
------------------------------------------------------------------- */
.thanks {
  padding-top: 20rem;
}
.thanks-message {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 50px;
}
.thanks-button {
  width: 20rem;
  text-align: center;
  margin: 0 auto;
  background-color: #fff;
  padding: 1.7rem 1rem;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  color: #A679B3;
  /* ボタンの影 */
  box-shadow: 0 4px 0 #A679B3; 
}
.thanks-button a {
  display: block;
}
.thanks-button:hover {
  transform: translateY(4px);
  box-shadow: none;
}

/* -------------------------------------------------------------------
  FOOTER
------------------------------------------------------------------- */
.footer { 
  width: 100%;
  height: 100px;
  text-align: center;
}
.copyright {
  font-size: 1.4rem;
  line-height: 100px;
  color: #9C959E;
}