@charset "UTF-8";
/* ============================================================
COLOR Definition
============================================================ */
/* ============================================================
點擊動態
============================================================ */
@-webkit-keyframes clickTransform {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes clickTransform {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

header {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: bottom;
        -ms-flex-align: bottom;
            align-items: bottom;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

header .header-left {
  width: 100%;
  position: relative;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  header .header-left {
    width: 40%;
  }
}

header .header-left .header-content {
  width: 84%;
  position: relative;
  margin: 0 auto;
  padding: 15vh 0 10vh;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  header .header-left .header-content {
    width: 84%;
    position: absolute;
    left: 50%;
    bottom: 50px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    padding: 0;
  }
}

header .header-left .header-content h4 {
  font-size: 1.25em;
  font-family: 'Baskervville', serif;
  color: #999;
}

header .header-left .header-content h1 {
  font-size: 3.125em;
  font-family: 'Yeseva One', cursive;
  font-weight: 400;
  color: #353535;
  line-height: 1.1em;
  margin: 4px 0 20px;
}

header .header-left .header-content p {
  font-size: 1em;
  color: #666;
  font-weight: 400;
  line-height: 1.5em;
}

header .header-right {
  width: 100%;
  position: relative;
  min-height: 50vh;
  background: url("./../img/index.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-animation: fadeIn .5s 2s linear forwards;
          animation: fadeIn .5s 2s linear forwards;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  header .header-right {
    width: 60%;
    height: 100vh;
  }
}

header .header-right::before {
  content: '@ ShiroHong 2023';
  width: 50%;
  height: 20vh;
  position: absolute;
  top: 0;
  right: 0;
  background: white;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #999;
  font-size: 1em;
  font-family: 'Baskervville', serif;
  font-weight: 400;
  text-align: right;
  -webkit-animation: kvEnter1 .5s 2.5s linear forwards;
          animation: kvEnter1 .5s 2.5s linear forwards;
  opacity: 0;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  header .header-right::before {
    height: 40vh;
  }
}

header .header-right::after {
  content: '';
  width: 50%;
  height: 30vh;
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  -webkit-filter: saturate(10%);
  /* Safari */
  filter: saturate(10%);
  -webkit-animation: kvEnter2 .5s 3s linear forwards;
          animation: kvEnter2 .5s 3s linear forwards;
  opacity: 0;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  header .header-right::after {
    height: 60vh;
  }
}

@-webkit-keyframes kvEnter1 {
  0% {
    top: -50px;
    right: -50px;
    opacity: 0;
  }
  100% {
    top: 0;
    right: 0;
    opacity: 1;
  }
}

@keyframes kvEnter1 {
  0% {
    top: -50px;
    right: -50px;
    opacity: 0;
  }
  100% {
    top: 0;
    right: 0;
    opacity: 1;
  }
}

@-webkit-keyframes kvEnter2 {
  0% {
    bottom: -50px;
    right: -50px;
    opacity: 0;
  }
  100% {
    bottom: 0;
    right: 0;
    opacity: 1;
  }
}

@keyframes kvEnter2 {
  0% {
    bottom: -50px;
    right: -50px;
    opacity: 0;
  }
  100% {
    bottom: 0;
    right: 0;
    opacity: 1;
  }
}

section#about {
  padding: 120px 0 60px;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  section#about {
    padding: 100px 0;
    margin: 200px 0;
  }
}

.about-content {
  width: 80%;
  position: relative;
  margin: 0 auto;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .about-content {
    width: 70%;
    left: 17%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.about-content .about-text {
  width: 100%;
  position: relative;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .about-content .about-text {
    width: 50%;
  }
}

.about-content .about-text p {
  font-size: 1.125em;
  line-height: 1.4em;
  font-family: 'Baskervville', serif;
  color: #353535;
  margin-bottom: 30px;
}

.about-content .about-text p:nth-last-child(1) {
  margin-bottom: 0;
}

.about-content .about-text p:nth-last-child(1)::after {
  content: '';
  display: table;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-80%, 80%);
          transform: translate(-80%, 80%);
  background: url("../img/cube_border.svg") no-repeat;
  width: 30%;
  padding-bottom: 30%;
  background-size: 100%;
  -webkit-animation: cubeRotate 5s linear forwards infinite;
          animation: cubeRotate 5s linear forwards infinite;
}

.about-content .about-picture {
  width: 70%;
  position: relative;
  height: 300px;
  left: 30%;
  background: #F88161;
  margin-top: 30px;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .about-content .about-picture {
    width: 45%;
    height: 300px;
    left: auto;
    margin: 0;
  }
}

@-webkit-keyframes cubeRotate {
  0% {
    -webkit-transform: translate(-80%, 80%) rotate(-15deg);
            transform: translate(-80%, 80%) rotate(-15deg);
  }
  50% {
    -webkit-transform: translate(-80%, 80%) rotate(15deg);
            transform: translate(-80%, 80%) rotate(15deg);
  }
  100% {
    -webkit-transform: translate(-80%, 80%) rotate(-15deg);
            transform: translate(-80%, 80%) rotate(-15deg);
  }
}

@keyframes cubeRotate {
  0% {
    -webkit-transform: translate(-80%, 80%) rotate(-15deg);
            transform: translate(-80%, 80%) rotate(-15deg);
  }
  50% {
    -webkit-transform: translate(-80%, 80%) rotate(15deg);
            transform: translate(-80%, 80%) rotate(15deg);
  }
  100% {
    -webkit-transform: translate(-80%, 80%) rotate(-15deg);
            transform: translate(-80%, 80%) rotate(-15deg);
  }
}

section#works {
  padding: 100px 0;
}

section#works .content-container {
  max-width: 1400px;
}

.works-container .works-item {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px dotted rgba(153, 153, 153, 0.5);
  cursor: pointer;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .15s linear;
  transition: .15s linear;
}

.works-container .works-item:nth-child(1) {
  border-top: 1px dotted rgba(153, 153, 153, 0.5);
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .works-container .works-item:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    padding: 50px 30px;
  }
  .works-container .works-item:hover .preview-img {
    opacity: 1;
  }
}

.works-container .works-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.works-container .works-item .works-name-container {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .works-container .works-item .works-name-container {
    width: 60%;
  }
}

.works-container .works-item .works-name {
  width: 100%;
  position: relative;
  font-size: 1.875em;
  color: #333;
  font-family: 'Yeseva One', cursive;
  font-weight: 400;
  margin-right: 10px;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .works-container .works-item .works-name {
    width: auto;
  }
}

.works-container .works-item .works-role {
  width: 100%;
  position: relative;
  font-size: 1em;
  font-weight: 400;
  color: #666;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .works-container .works-item .works-role {
    width: calc(40% - 66px);
  }
}

.works-container .works-item .works-check {
  width: 66px;
  position: relative;
  font-size: 1.125em;
  font-weight: 600;
  color: #000;
  position: relative;
  cursor: pointer;
  margin-left: calc(100% - 66px);
}

.works-container .works-item .works-check span img {
  height: 13px;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .works-container .works-item .works-check {
    margin: 0;
  }
}

.works-container .works-item .preview-img {
  width: 300px;
  position: fixed;
  opacity: 0;
  -webkit-transition: .15 linear;
  transition: .15 linear;
  left: 70%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-filter: drop-shadow(10px 20px 10px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(10px 20px 10px rgba(0, 0, 0, 0.5));
}

.works-container .works-item .preview-img img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 10px;
}

.contact-container {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .contact-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.contact-container .contact-left {
  width: 100%;
  position: relative;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .contact-container .contact-left {
    width: 45%;
  }
}

.contact-container .contact-left .contact-text {
  width: 75%;
  position: relative;
  margin: 20px auto 100px;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .contact-container .contact-left .contact-text {
    width: 65%;
    margin: 80px auto 160px;
  }
}

.contact-container .contact-left .contact-text p {
  font-size: 1.125em;
  line-height: 1.4em;
  font-family: 'Baskervville', serif;
  color: #353535;
}

.contact-container .contact-left .contact-social {
  width: 100%;
  position: relative;
  background: #F88161;
}

.contact-container .contact-left .contact-social .contact-social-container {
  width: 65%;
  position: relative;
  margin: 0 auto;
  padding: 80px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .contact-container .contact-left .contact-social .contact-social-container {
    padding: 160px 0 60px;
    display: block;
  }
}

.contact-container .contact-left .contact-social .contact-social-container .contact-social-item {
  position: relative;
  font-size: 1.5em;
  color: #333;
  font-family: 'Yeseva One', cursive;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
  margin-right: 15px;
  -webkit-filter: brightness(1);
          filter: brightness(1);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .15s linear;
  transition: .15s linear;
}

.contact-container .contact-left .contact-social .contact-social-container .contact-social-item a {
  color: #333;
  font-family: 'Yeseva One', cursive;
  font-weight: 400;
}

.contact-container .contact-left .contact-social .contact-social-container .contact-social-item:hover {
  -webkit-filter: brightness(100);
          filter: brightness(100);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.contact-container .contact-left .contact-social .contact-social-container .contact-social-item:nth-last-child(1) {
  margin-right: 0;
}

.contact-container .contact-left .contact-social .contact-social-container .contact-social-item span {
  margin-left: 10px;
}

.contact-container .contact-left .contact-social .contact-social-container .contact-social-item span img {
  height: 16px;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .contact-container .contact-left .contact-social .contact-social-container .contact-social-item {
    font-size: 2.5em;
    margin-right: 0;
  }
  .contact-container .contact-left .contact-social .contact-social-container .contact-social-item span {
    margin-left: 10px;
  }
  .contact-container .contact-left .contact-social .contact-social-container .contact-social-item span img {
    height: 30px;
  }
}

.contact-container .contact-right {
  width: 100%;
  position: relative;
  padding: 50px 0 100px;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .contact-container .contact-right {
    width: 45%;
    padding: 0;
  }
}

.contact-container .contact-right .content-container {
  width: 80%;
  position: relative;
  margin: 0 auto;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .contact-container .contact-right .content-container {
    width: 60%;
  }
}

.contact-container .contact-right .content-container .contact_form label p em {
  font-size: 1.375em;
  font-family: 'Baskervville', serif;
  color: #333;
}

.contact-container .contact-right .content-container .contact_form input[type=text], .contact-container .contact-right .content-container .contact_form textarea {
  width: 100%;
  height: 46px;
  position: relative;
  border-radius: 3px;
  border: 1px solid #999;
  padding: 3px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: .875em;
  font-weight: 500;
  color: #000;
  margin: 5px 0 15px;
  outline: none;
}

.contact-container .contact-right .content-container .contact_form textarea {
  min-height: 150px;
}

.contact-container .contact-right .content-container .contact_form .submit-btn {
  width: 100%;
  height: 52px;
  position: relative;
  background: #333;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  line-height: 51px;
  font-size: 1.375em;
  font-family: 'Baskervville', serif;
  cursor: pointer;
}
/*# sourceMappingURL=index.css.map */