@charset "utf-8";
/**********************************
main-visual > works
***********************************/
#works {
  margin-top: 200px;
  text-align: left;
}
.read {
  opacity: 0;
  transform: translateY(20px);
}
.top-read {
  font-size: var(--topread-font);
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 4px;
}
.sub-read {
  display: block;
  margin-bottom: 80px;
}
.splide {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.splide__slide {
  border-radius: 60px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.splide__track {
  overflow: visible;
}
.splide__slide img {
  display: block;
  border-radius: 20px;
  width: 100%;
}
.comment {
  margin-top: 20px;
  font-size: var(--basic-font);
}
@media screen and (max-width: 480px) {
  #works {
    margin-top: 120px;
  }
  .sub-read {
    margin-bottom: 60px;
  }
}
/**********************************
about
***********************************/
#about {
  padding-top: 120px;
  text-align: left;
}
#about .inner {
  display: flex;
  column-gap: 160px;
}
.title {
  position: relative;
  text-align: left;
  padding-left: 30px;
  text-transform: uppercase;
}
.title::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--green);
  top: 5px;
  left: 0;
  border-radius: 50%;
}
.about-read {
  font-size: var(--aboutread-font);
  text-align: initial;
}
.about-text {
  padding-top: 20px;
}
.p-side__item {
  font-size: clamp(8rem, 4.364rem + 11.364vw, 18rem);
  font-weight: 900;
  background: linear-gradient(90deg, #85b491 0%, #97d7f3 100%);
  opacity: 0.08;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: cadetblue;
  font-family: lato, sans-serif;
  white-space: nowrap;
  line-height: 0.8;
  padding-top: 20px;
  will-change: transform; /* アニメーションする要素に対してwill-changeを追加 */
}
.p-side__item-second {
  padding-left: 10%;
}
@media screen and (max-width: 960px) {
  #about {
    padding-top: 60px;
  }
  #about .inner {
    flex-direction: column;
    row-gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  #about {
    padding-top: 40px;
  }
  #about .inner {
    flex-direction: column;
  }
}
/**********************************
skill
***********************************/
#skill {
  padding: 160px 0;
  background: #333;
  color: #fff;
}
#skill .inner {
  display: flex;
  column-gap: 160px;
}
.skill-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px 60px;
  text-align: left;
}
.skill-title {
  font-size: var(--large-font);
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
.skill-text {
  padding-top: 10px;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  #skill {
    padding: 120px 0;
  }
  #skill .inner {
    flex-direction: column;
    row-gap: 30px;
    column-gap: 80px;
  }
  .skill-list {
    display: grid;
    gap: 30px 40px;
  }
}
@media screen and (max-width: 480px) {
  #skill {
    padding: 80px 0;
  }
  .skill-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
/**********************************
contact
***********************************/
#contact {
  padding: 120px 0;
}
#contact .inner {
  display: flex;
  justify-content: space-between;
  column-gap: 10%;
}
.contact-form {
  width: 100%;
  text-align: left;
}
.contact-form h4 {
  margin-bottom: 10px;
}
.form_container {
  margin: 0 auto;
}
.form_container tr {
  display: flex;
  column-gap: 30px;
}
.form_container tr th {
  width: 280px;
  vertical-align: top;
  padding: 0 0 1em;
  text-align: left;
}
.form_container tr td {
  padding: 0 1em 2em;
  text-align: left;
  line-height: 1.5;
  width: 100%;
}
.Required {
  color: #e8373d;
}
.formTable tr select,
.formTable tr textarea,
.formTable tr .wide {
  width: 100%;
  padding: 20px;
  font-size: 1.6rem;
  outline: none;
  border: none;
  background: #f5f5f5;
}
::placeholder {
  color: #a6a8a9;
  line-height: 1.5;
}
::-webkit-input-placeholder {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 1.6rem;
}
.formTable tr textarea {
  height: 10em;
}
/*IOSのstyleをリセット（記述要）*/
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}
.form-btn-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.btn input {
  font-family: "Noto Sans JP", sans-serif, "游ゴシック体", YuGothic,
    "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  display: inline-block;
  background: #333;
  margin-bottom: 30px;
  padding: 16px 0;
  width: 260px;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.8;
}
.mw_wp_form .error {
  display: inline-block !important;
  margin-top: 5px;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}
@media only screen and (max-width: 960px) {
  #contact {
    padding: 100px 0;
  }
  #contact .inner {
    flex-direction: column;
    row-gap: 30px;
  }
  .form_container tr {
    flex-direction: column;
  }
  .formTable tr th {
    display: block;
    padding: 0.8em 0.2em;
  }
  .formTable tr td {
    padding: 0.3em 0;
    width: 100%;
    display: flex;
  }
  .btn input {
    padding: 14px 0;
    width: 240px;
  }
  .contact-text {
    margin: 60px 0 80px;
  }
  #contact-confirm .formTable tr td {
    flex-direction: row;
  }
}
@media only screen and (max-width: 480px) {
  #contact {
    padding: 80px 0 30px;
  }
  .contact-text {
    margin: 30px 0 40px;
  }
  .formTable tr th {
    padding: 0.3em 0;
  }
  .box_check {
    text-align: center;
    margin: 10px auto 40px;
  }
  .btn input {
    margin-bottom: 40px;
  }
}
