/* 共通部品 */

html {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.08em;
  scroll-padding-top: 65px;
  scroll-behavior: smooth;
}
/* ここから記述します。 */

/* 共通 */
.u-wrapper {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;

  @media screen and (max-width: 768px) {
    padding: 0 20px;
  }
}

.u-sectionTitle {
  text-align: left;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 64px;
}

.u-sectionTitle_contact {
  text-align: left;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 64px;
}

img {
  max-width: 100%;
}

span {
  color: #f36ba1;
}

.u-sectionTitle_contact span {
  color: #3bb9e0;
  }

.u-sectionSubTitle {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 64px;
}

.u-button {
  display: block;
  width: fit-content;
  background-color: #3bb9e0;
  color: #ffffff;
  border: none;
  padding: 8px 32px;
  border-radius: 30px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.5s;
}

.u-button:hover {
  background: #ffffff;
  color: #3bb9e0;
  border: 2px solid #3bb9e0;
	/* background: #87e3ff;
	color: #fff; */
  transform: scale(1.1,1.1);
}


/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 12px 0;
  z-index: 1000;
}

.wrapper {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;

  @media screen and (max-width: 768px) {
    padding: 0 20px;
  }
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.header_logoLink {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;

  @media screen and (max-width: 768px) {
    width: 20px;
    height: 20px;
  }
}

.header_logoLink img {
  width: 100%;
  height: 100%;
}

.header_navi_list {
  display: flex;
  gap: 40px;
  align-items: center;

  @media screen and (max-width: 768px) {
    display: flex;
    gap: 16px;
  }
}

.header_navi_link {
  display: block;
  height: 100%;
  font-weight: bold;
}

.header_navi_button {
  display: block;
  background-color: #3bb9e0;
  color: #ffffff;
  border: none;
  padding: 8px 24px;
  border-radius: 30px;
  margin: 0 auto;
  font-weight: bold;
  cursor: pointer;
  transition: 0.5s;
}

.header_navi_button:hover {
	background: #87e3ff;
	color: #ffffff; 
}


/* ファーストビュー */
.firstView {
  padding: 64px 0 0 0;
}


/* ワークス */
.works {
  padding: 80px 0;

  @media screen and (max-width: 768px) {
    padding: 64px 0px;
  }
}

.works_cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 64px;

  @media screen and (max-width: 768px) {
    flex-direction: column;
    padding: 0 64px;
  }
}

.works_card {
  width: calc(100% / 3);

  @media screen and (max-width: 768px) {
    width: 100%;
    text-align: center;
  }
}

.works_cards_one {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 64px;

  @media screen and (max-width: 768px) {
    flex-direction: column;
    padding: 0 64px;
  }
}

.works_cards_two {
  display: flex;
  gap: 20px;
  margin-bottom: 64px;

  @media screen and (max-width: 768px) {
    flex-direction: column;
    padding: 0 64px;
  }
}

.works_textBox {
  text-align: center;

  @media screen and (max-width: 768px) {
    padding: 0 20px;
  }
}


/* サービス */
.service {
  padding: 80px 0;

  @media screen and (max-width: 768px) {
    padding: 40px 0px;
  }
}

.service_cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 64px;

  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.service_card {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;

  @media screen and (max-width: 768px) {
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
  }
}

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

.service_card_image {
  height: 300px;
}

.service_textBox {
  padding: 24px 16px;
  flex-grow: 1;

  @media screen and (max-width: 768px) {
    flex-direction: column;
    padding: 16px 24px;
  }
}

.service_textBox_design {
  background-color: #fff9f9;
}

.service_textBox_cording {
  background-color: #fdfff5;
}

.service_textBox_wrodpress {
  background-color: #f2f7fd;
}

.service_cardTitle {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
}

.service_cardDescription {
  font-size: 20px;
  text-align: left;

  @media screen and (max-width: 768px) {
    margin-bottom: 12px;
  }
}

/* アバウト */
.about {
  padding: 80px 0;

  @media screen and (max-width: 768px) {
    padding: 40px 0px;
  }
}

.about_cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 64px;

  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.about_vector {
  padding: 24px;
  width: 100%;
  text-align: center;
}

.about_textBox {
  padding: 40px 24px;

  @media screen and (max-width: 768px) {
    padding: 10px 8px;
  }
}

.about_textTitle {
  padding: 16px 0;
  font-size: 16px;
  font-weight: bold;
}

.about_description {
  padding: 16px 0;
  font-size: 16px;
  font-weight: bold;
}

.about_skill {
  padding: 24px 0;
  font-size: 16px;
  font-weight: normal;
}


/* コンタクト */

.contact {
  margin: 0 auto;
  padding: 80px 0;
  background-color: #fff9f9;

  @media screen and (max-width: 768px) {
    padding: 64px 30px;
  }
}

.contact_inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact_description {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 32px;

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

}

.contact_form {
  display: flex;
  flex-direction: column;
}

.contact_label {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
}

.required {
  color: #f36ba1;
}

.contact_input,
.contact_textarea {
  border: solid 1px #c4c4c4;
  padding: 10px;
  margin-bottom: 32px;
  font-size: 16px;
  background-color: #ffffff;
  border-radius: 4px;
}

.contact_textarea {
  min-height: 160px;
}

.contact_button {
  margin-top: 32px;
  margin-bottom: 64px;

  @media screen and (max-width: 768px) {
    margin-top: 40px;
    padding: 8px 40px;
    width: 100%;
    text-align: center;
  } 
}


/* フッター */

.footer {
  padding: 12px 0;
  width: 100%;
  background-color: #f0c9c9;
}

.footer_navi_list {
  display: flex;
  gap: 40px;
  justify-content: center;

  @media screen and (max-width: 768px) {
    gap: 20px;
    font-size: 14px;
  } 
}

.footer_navi_link {
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
}

.footer_navi_text {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.footer_text {
  color: #ffffff;
  font-size: 14px;
}

