@charset "utf-8";


/* ============================= */
/* レスポンシブ対応(タブレットサイズ（959px以下) */
/* ============================= */



@media screen and (max-width: 959px) {

/* メイン */
.main {
  width: 90%;
  margin: 0 auto;
}



/* セクション上下の幅 */
.tool,
.works {
  margin-top: 100px;
}


/* h２の共通タイトル */
.h2 {
  font-size: 3rem;
  letter-spacing: .3rem;
  font-weight: bold;
  color: #333333;
  /* padding-top: 141px; */
}

.subtitle {
  font-size: 0.9rem;
  margin-top: 10px;
}


/* 私のこと */
/* 説明 */


.about .sentence {
  width: 100%;
  text-align: center;
  padding: 0 60px;
}

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


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


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




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

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


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

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

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


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



/* 他の制作物も見る */
.newworks .other {
  margin-top: 200px;
  text-align: center;
}

.other-works {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  margin: 50px auto;
  width: 60%;
}



}
/*＝＝＝＝＝＝＝＝お問い合わせ(contact.html)＝＝＝＝＝＝＝＝　*/
@media screen and (max-width:959px) {
  #formWrap {
    width: 95%;
    margin: 0 auto;
  }

  table.formTable th,
  table.formTable td {
    width: auto;
    display: block;
    text-align: center;
  }

  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
    /* text-align: center; */
  }

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


  form input[type="text"],
  form textarea {
    width: 80%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  form input[type="submit"],
  form input[type="reset"],
  form input[type="button"] {
    display: block;
    width: 50%;
    height: 40px;
  }

  .contact .confirmation {
    margin-top: 30px;
  }
  
  .contact .confirmation input {
    padding: 0px;
  }
  
  .contact .confirmation input:hover {
    border: 1px solid #3394b6;
    color: #3394b6;
    transition: .5s;
  }
  
  /* フッター */
  .footer .copy {
    padding: 50px 0;
  }
  
  
}