@charset "UTF-8";
/* WEBフォントを読み込んでいます */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap");
/* 初期設定 */
#wrapper {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 100%;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W', 'Hiragino Kaku Gothic Pro', 'メイリオ', '游ゴシック', '游ゴシック体', sans-serif;
  overflow: hidden;
}

.section-title {
  font-size: calc(2em + 1vw);
  text-align: center;
  line-height: 1;
  padding-top: 60px;
  padding-bottom: 20px;
}

body {
  width: 100%;
}

p {
  color: #333;
  line-height: 1.7;
}

header {
  background: #333;
  opacity: 0.9;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-around;
  position: fixed;
  color: #fff;
  z-index: 100;
}

header h1 {
  font-size: 2em;
  line-height: 3;
  font-family: Noto Serif JP;
}

header a {
  color: #fff;
}

.jsapp {
  color: #333;
  font-size: 18px;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h2 {
  line-height: 3;
  font-family: Noto Serif JP;
}

@media screen and (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    width: 100%;
  }
}

.menu ul {
  width: 100%;
  display: flex;
  margin-right: 1em;
}

.menu ul li {
  width: calc(100% / 4);
  text-align: center;
  font-size: 2em;
  line-height: 2;
}

.menu-item a {
  color: #fff;
  display: block;
  padding: 0.5em 1em 0.5em 1em;
  font-family: Noto Serif JP;
}

.menu-item a:hover {
  color: #99ccff;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.hamb {
  display: none;
}

@media screen and (max-width: 768px) {
  header {
    height: 60px;
    justify-content: space-between;
    padding-right: 5px;
  }
  header h1 {
    font-size: 2em;
    line-height: 3;
    padding-left: 1em;
  }
  section {
    text-align: center;
  }
  #top {
    margin-top: 60px;
  }
  /*ハンバーガーメニュー*/
  .menu ul {
    display: flex;
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 1em;
    background: #333;
    opacity: 0.9;
  }
  .menu ul li {
    width: 100%;
  }
  .menu ul li + li {
    border-left: 0;
  }
  .menu ul a {
    padding: 0.5em 0.2em 0.5em 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: lighter;
    color: #fff;
    font-family: Noto Serif JP;
  }
  .menu ul a:after {
    content: '';
    background-color: #fff;
    height: 1px;
    width: 30px;
    display: block;
    margin-left: 0.3em;
  }
  .hamb {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
    position: relative;
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 5px;
    margin-top: 10px;
    border-radius: 3px;
    cursor: pointer;
  }
  .hamb_border {
    content: '';
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: #fff;
    transition: all 1s;
  }
  .hamb.active li:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .hamb.active li:nth-of-type(2) {
    opacity: 0;
  }
  .hamb.active li:nth-of-type(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

@media screen and (max-width: 440px) {
  header h1 {
    display: none;
  }
  .section-title {
    font-size: 2.5em;
    line-height: 2;
  }
}

main {
  background: #fff;
  width: 100%;
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 0.8s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.resizeimage img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.resizeimage ul,
.resizeimage li {
  width: 100%;
}

/* slick settingb */
.slick-prev,
.slick-next {
  display: none;
}

/*.slick-prev {
  left: 30px !important;
}

.slick-next {
  right: 30px !important;
}

.slick-prev:before,
.slick-next:before {
  color: #333 !important;
}*/
.slick-slide {
  transition: all ease-in-out 0.3s;
  height: auto;
}

@media screen and (max-width: 768px) {
  .slick-prev,
  .slick-next {
    display: none !important;
  }
}

/* ABOUT */
.about {
  width: 100%;
  padding: 2em 0 5em 0;
}

.profile-box {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  margin-top: 1em;
}

.profile-text {
  width: 50%;
  text-align: left;
  margin-right: 10px;
}

.profile-text span {
  font-size: 2.5em;
  line-height: 3;
  font-weight: 600;
}

.profile-text p {
  font-size: 1.5em;
}

.profile-text a {
  color: #333;
}

.profile-text a:hover {
  color: #eea34a;
}

.profile-img {
  width: 50%;
}

.profile-img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .profile-box {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .profile-text,
  .profile-img {
    width: 100%;
  }
  .profile-img {
    margin-top: 1em;
  }
  .profile-img img {
    width: 100%;
  }
}

@media screen and (max-width: 440px) {
  .profile-text {
    text-align: left;
  }
}

.box {
  width: 90%;
}

/* WORKS*/
.works {
  background: #c5dcf3;
  width: 100%;
  padding: 2em 0 5em 0;
}

.sub-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
}

.work-box {
  padding: 20px;
  display: flex;
  flex-direction: column;
  margin: 5px;
  align-items: center;
  border: 1px solid #ccc;
  width: 33%;
  background: #fff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3);
}

.work-box:hover {
  transform: translate(3px, -3px);
  transition-duration: 0.5s;
}

.works-boxes {
  display: flex;
}

.work-img {
  width: 100%;
  height: 65%;
  overflow: hidden;
}

.work-img a {
  cursor: pointer;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-img img:hover {
  opacity: 0.7;
}

.work-title {
  margin-bottom: 10px;
}

.work-title a {
  font-size: 18px;
  color: #333;
  cursor: pointer;
  line-height: 1.5;
  font-weight: 600;
}

.work-title a:hover {
  color: #eea34a;
}

.work-title__other {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 10px;
}

.works_body {
  height: 35%;
  width: 100%;
  text-align: center;
  padding-top: 10px;
}

.works_body .work-desc {
  text-align: left;
}

.works_body .work-desc .client_work {
  font-size: 18px;
}

.works_body .work-desc .client_work:hover {
  color: #eea34a;
}

.sub-title {
  color: #fff;
}

.work__sub-desc {
  text-align: center;
  margin-top: 30px;
}

.work__sub-desc--contents {
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 1100px) {
  .work-img {
    height: 50%;
  }
  .works_body {
    height: 50%;
  }
}

@media screen and (max-width: 768px) {
  .works-boxes {
    flex-direction: column;
  }
  .work-box {
    width: 100%;
  }
}

.contact {
  background: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em 0 5em 0;
  background: #eeeeee;
}

.contact-desc {
  font-size: 20px;
}

.contact-box {
  text-align: center;
  padding: 2em 0 1em 0;
}

.contact__text {
  font-size: 20px;
}

.contact__text a {
  color: pink;
  text-decoration: underline;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-form label {
  padding: 1em 0;
  font-size: 2em;
}

.contact-form input {
  width: 50%;
  height: 3.5em;
  padding: 1em;
  border-radius: 10px;
  background: #fff;
  box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
}

.contact-form input:focus {
  border: solid 1px #eea34a;
}

.contact-form textarea {
  width: 50%;
  height: 12em;
  padding: 1em;
  border-radius: 10px;
  background: #fff;
  box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
}

.contact-form textarea:focus {
  border: solid 1px #eea34a;
}

.contact-form button {
  border: 0.5px solid #fff;
  color: #fff;
  margin-top: 2em;
  width: 30%;
  height: 3em;
  font-size: 2em;
  border-radius: 10px;
  background: radial-gradient(#81bcf7, #a3cffc);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-form button:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  transform: translateY(-0.1875em);
}

@media screen and (max-width: 768px) {
  .contact-form input,
  .contact-form textarea {
    width: 80%;
  }
  .contact-form input button,
  .contact-form textarea button {
    width: 50%;
  }
}

@media screen and (max-width: 440px) {
  .contact-form input,
  .contact-form textarea {
    width: 90%;
  }
  .contact-form input button,
  .contact-form textarea button {
    width: 60%;
    height: 1.5em;
    font-size: 1.5em;
    line-height: 3;
  }
}

/*フッター*/
footer {
  background: #333;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 1em 0;
}

.sns a {
  color: #fff;
  padding: 0.5em;
  font-size: 1.5em;
  line-height: 2;
}

/*トップに戻るボタン*/
#page_top {
  width: 100px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #99ccff;
  opacity: 0.7;
  border-radius: 15px;
}

#page_top a {
  position: relative;
  display: block;
  width: 100px;
  height: 60px;
  text-decoration: none;
}

#page_top a:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#page_top a:after {
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #page_top {
    width: 50px;
    height: 40px;
    border-radius: 10px;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 40px;
    text-decoration: none;
  }
  #page_top a:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 20px;
    color: #fff;
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #page_top a:after {
    content: '';
  }
}
/*# sourceMappingURL=style.css.map */