@charset "UTF-8";

/* //////////////////////////////////
共通スタイル
//////////////////////////////////*/

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.5;
}

img {
  /* width: 100%; */
  height: auto;
}
.container {
  width: 90%;
  max-width: 980px;
  margin: auto;
}
.clear::after {
  content: "";
  clear: both;
  display: block;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  opacity: 0.7;
}
li {
  list-style: none;
}
img {
  width: 100%;
  height: auto;
}

/*============================================
header
============================================*/
header {
  padding: 20px 0;
  background: #444f59;
  color: #fff;
}

.header-nav-item a {
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}

.header-left {
  float: left;
}

.header-right {
  float: right;
}

.header-nav-item {
  float: left;
  margin-left: 50px;
}

.header-title {
  font-size: 24px;
  font-weight: bold;
}

/*============================================
top
============================================*/

/*============================================
section
============================================*/

.section-title {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  padding-top: 30px;
}
.section-sub-title {
  font-size: 12px;
  text-align: center;
  padding-bottom: 30px;
}

/*============================================
about
============================================*/
.about {
  margin-bottom: 80px;
}

.about-contents {
  border: 2px solid;
  border-color: #a9a9a9;
  border-radius: 5px;
  width: 60%;
  margin: auto;
}
.about-left {
  float: left;
  width: 48%;
  padding: 5px;
  text-align: center;
}
.about-img {
  border-radius: 5px;
}
.about-right {
  float: right;
  width: 48%;
  padding: 10px;
  margin-top: 40px;
}

.about-left-title {
  text-align: center;
}

/*============================================
skills
============================================*/
.skills {
  background-color: whitesmoke;
  padding-bottom: 20px;
  /* height: 350px; */
}

.skill-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 50px;
}
.skill-name {
  text-align: center;
  font-size: 12px;
}

.skill-img {
  width: 80px;
  height: auto;
}
.skill-message {
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
}

/*============================================
service-works
============================================*/
.service-square {
  background-color: whitesmoke;
  margin: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}

.service-img-item {
  display: block;
  padding: 5%;
}

.service-title {
  text-align: center;
  font-size: 12px;
}
.service-wrapper {
  display: flex;
  margin-bottom: 40px;
}

/*============================================
CG-works
============================================*/
.CG-works {
  background-color: whitesmoke;
  padding-bottom: 10px;
}
.cg-works-item {
  display: block;
  width: 30%;
  padding: 10px;
  margin-bottom: 10px;
  /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4); */
}
.cg-works-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/*============================================
WEB-works
============================================*/
.Web-works {
  /* height: 500px; */
  padding-bottom: 20px;
}
.web-work-item {
  display: block;
  width: 48%;
  margin: 20px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}
.web-work-wrapper {
  display: flex;
}

/*============================================
contacts
============================================*/
.contact {
  background-color: white;
}
.contact-japanese {
  text-align: center;
}
.contact-title {
  text-align: center;
}
.contact-message {
  text-align: center;
  margin-bottom: 30px;
}

.contact-img {
  display: block;
  margin: 10px;
  margin: 0 30px;
}

.contact-item {
  text-align: center;
}
.contact-name {
  display: block;
  padding: 5px;
  font-size: 8px;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
}

/*============================================
contacts2
============================================*/
.contact2 {
  background-color: whitesmoke;
  padding-bottom: 40px;
}
.input-label {
  display: block;
}
.input-name {
  width: 500px;
  padding: 10px;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
  border: solid 2px darkgray;
  border-radius: 10px;
}
.contact-name-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.input-text {
  width: 500px;
  height: 200px;
  padding: 10px;
  font-size: 16px;
  display: block;
  margin-bottom: 40px;
  border: solid 2px darkgray;
  border-radius: 10px;
}
.btn {
  background-color: #fd999a;
  display: block;
  margin: auto;
  width: 500px;
  font-size: 16px;
  padding: 10px 0;
  border: none;
  border-radius: 20px;
}

button:hover {
  cursor: pointer;
}
.end-message {
  display: none;
}
.false-message {
  display: none;
}
/*============================================
footer
============================================*/

footer {
  background-color: #444f59;
  color: #fff;
}
.copyright-item {
  text-align: center;
  padding: 10px 0;
  position: relative;
}

.copyright-icon-right {
  float: right;
}

.copyright-wrap {
  position: relative;
}
.copyright-icon {
  display: block;
  width: 60%;
  /* margin-right: 10px; */
}
.copyright-icon-right {
  display: flex;
  position: absolute;
  top: 20%;
  left: 80%;
}

.copyright-wrap {
  position: relative;
}

/*==============================================
スマホ用の表示
================================================*/

@media only screen and (max-width: 780px) {
  .clear::after {
    content: none;
  }
  /*============================================
header
============================================*/
  header {
    padding: 10px;
  }

  .header-left {
    float: none;
  }

  .header-right {
    float: none;
  }

  .header-nav-item {
    float: none;
    margin: auto;
    font-size: 12px;
  }
  .header-title {
    text-align: center;
    font-size: 16px;
  }

  .header-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  /*============================================
about
============================================*/
  .about {
    margin-bottom: 80px;
  }

  .about-contents {
    border: 2px solid;
    border-color: #a9a9a9;
    border-radius: 5px;
    width: 100%;
    margin: auto;
  }
  .about-left {
    float: none;
    width: 60%;
    display: block;
    margin: auto;
    padding: 5px;
  }
  .about-img {
    border-radius: 5px;
  }
  .about-right {
    float: none;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
  }
  /*============================================
skills
============================================*/
  .skills {
    background-color: whitesmoke;
  }

  .skill-wrapper {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .skill-name {
    text-align: center;
    font-size: 12px;
  }

  .skill-img {
    width: 80px;
    height: auto;
  }
  .skill-message {
    /* text-align: center; */
    font-size: 10px;
  }

  /*============================================
service-works
============================================*/

  .service-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  /*============================================
CG-works
============================================*/
  .CG-works {
    background-color: whitesmoke;
  }
  .cg-works-item {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
  .cg-works-wrapper {
    flex-wrap: wrap;
  }
  /*============================================
WEB-works
============================================*/
  .Web-works {
  }
  .web-work-item {
    display: block;
    padding: 30px;
    width: 90%;

    margin: auto;

    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  }
  .web-work-wrapper {
    /* display: flex; */
    flex-wrap: wrap;
  }
  /*============================================
contacts2
============================================*/
  .contact2 {
    background-color: whitesmoke;
    padding-bottom: 20px;
  }
  .input-label {
    display: block;
  }
  .input-name {
    width: 350px;
    padding: 10px;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    border: solid 2px darkgray;
    border-radius: 10px;
  }
  .contact-name-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .input-text {
    width: 350px;
    height: 200px;
    padding: 10px;
    font-size: 16px;
    display: block;
    margin-bottom: 40px;
    border: solid 2px darkgray;
    border-radius: 10px;
  }
  .btn {
    background-color: #fd999a;
    display: block;
    margin: auto;
    width: 350px;
    font-size: 16px;
    padding: 10px 0;
    border: none;
    border-radius: 20px;
  }

  button:hover {
    cursor: pointer;
  }
  /*============================================
footer
============================================*/

  footer {
    background-color: #444f59;
    color: #fff;
  }
  .copyright-item {
    text-align: center;
    padding: 10px 0;
    position: relative;
  }

  .copyright-icon-right {
    float: right;
  }

  .copyright-wrap {
    position: relative;
  }
  .copyright-icon {
    display: block;
    width: 60%;
    /* margin-right: 10px; */
  }
  .copyright-icon-right {
    display: flex;
    position: absolute;
    top: 20%;
    left: 80%;
  }

  .copyright-wrap {
    position: relative;
  }
}
