@charset "utf-8";


/* ============================= */
/* レスポンシブ対応(スマホ480px以下) */
/* ============================= */


/* ＝＝＝＝＝＝＝＝制作したもの＝＝＝＝＝＝＝＝ */

@media (max-width: 480px) {
  

  /* スマートフォンサイズでのスタイル */
  .container {
    padding: 10px;
    /* パディングを小さく */
  }

 .works .content {
    line-height: 1.6;
    width: 100%;
    text-align: left;
  }

  .content h3 {
    font-size: 18px;
  }

  .content p {
    font-size: 13px;
  }

  .tools {
    flex-direction: column;
    /* スキルを縦に並べる */
  }

  .colors {
    flex-direction: row;
    /* カラーパレットを縦に並べる */
  }




  /* * ＝＝＝＝＝＝＝＝自己紹介＝＝＝＝＝＝＝＝ */ 

/* 説明 */
.about .wrap {
  display: flex;
  flex-direction: column;
  justify-content: normal;
}

.about .sentence {
  width: 90%;
  text-align: center;
  padding: 0px;
  margin: 0 auto;
}

.about .text {
  line-height: 1.8;
  font-size: 0.9rem;
  padding: 30px 0 50px;
  text-align: center;
}

/* sns */
.about .sns {
  display: flex;
  flex-direction: row;
  width: 100px;
  margin: 0 auto 30px;
  justify-content: space-around;

}
.about .sns img {
  display: block;
  width: 24px;
  height: 24px;
}


/* 写真 */
.about .pic {
  content: "";
  background-image: url(../images/aboutーimage.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 300px;
  width: auto;
}


/* ＝＝＝＝＝＝＝＝ツールページ＝＝＝＝＝＝＝＝ */


/* 新 */
.tool .wrap {
  margin: 100px auto;
  /* width: 90%; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}


.tool .parts {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  margin: 10px;
  padding: 30px;
  background-color: #f3f3f3;
}




  /* 製作物(work01,02,03,04,05.html) */

.works img {
  display: block;
  width: 100%;
  margin: 20px auto;
}


.works .parts {
  display: flex;
  flex-direction: row;
  align-items: start;
}

.works .text-wrap {
  width: 80%;
  margin: 100px auto;
  line-height: 1.8;
}

.works h3 {
  display: inline-block;
  width: 200px;
  text-align: left;
}

.works .text-wrap .parts {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
}


.works .text-wrap .parts .text {
  display: inline-block;
  width: auto;
  text-align: left;
  margin-left: 0px;
}


.colors {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-left: 0px;
}

.color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}

.color {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #ddd;
}


/* ＝＝＝＝＝＝＝＝お問い合わせ(contact.html)＝＝＝＝＝＝＝＝ */

.contact .contactForm {
  width: 100%;
  margin: 40px auto;
  align-items: flex-start;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 20px 0;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

table.formTable td,
table.formTable th {
  padding: 20px 0;
}

table.formTable th {
  width: 100%;
  font-weight: normal;
  background: #efefef;
  text-align: center;
}

table.formTable td input,
table.formTable textarea {
  border: none;
  border: 1px solid rgba(51, 51, 51, .3);
  width: 100%;
  height: 40px;
}

.contact .confirmation {
  margin-top: 30px;
}

.contact .confirmation input {
  padding: 0px;
}

.contact .confirmation input:hover {
  border: 1px solid #3394b6;
  color: #3394b6;
}







}