@charset "UTF-8";

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", serif;
  line-height: 1.5;
  letter-spacing: 1px;
  word-break: break-all;
  background-color: #fff;
  color: #333;
}

/* header */
.header-wrap {
  max-width: 1240px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
}

.header-wrap__ttl {
  background-color: #f3fefc;
}

.header-wrap__ttl .header-title {
  font-size: 2.4rem;
  padding: 15px;
  font-weight: 400;
}

.header-wrap__ttl .header-title span {
  font-size: 1.6rem;
}

.header-wrap__nav {
  width: 40%;
}

.header-wrap__nav__list {
  display: flex;
  justify-content: flex-end;
}

.header-wrap__nav__list__item {
  margin: 0 50px;
}

.header-wrap__nav__list__item a {
  color: #333;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.header-wrap__nav__list__item a:hover {
  opacity: 0.5;
}

/* top */
.top-wrap {
  height: calc(100vh - 100px);
  margin: 0 auto;
}

.top-wrap.__bg {
  background-image: url("../img/sora-sagano-F6ZzivdSQ5k-unsplash.jpg");
  background-size: cover;
  background-position: 50%;
  position: relative;
}

.f-ttl {
  font-size: 6.4rem;
  color: #fff;
  position: absolute;
  z-index: 1;
  bottom: 20%;
  right: 10%;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.f-ttl span {
  font-size: 4.0rem;
}

/* 共通 .__inner */
.__inner {
  max-width: 1240px;
  margin: 100px auto;
}

/* 共通 .s-ttl */
.s-ttl {
  font-size: 3.6rem;
  position: relative;
  text-align: center;
}

.s-ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: #ffea07;
  top: 50%;
  left: 38%;
}

.s-ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: #ffea07;
  top: 50%;
  right: 38%;
}

.s-ttl__txt {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
}

/* about */
.about-wrap__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-wrap__box__img {
  width: 45%;
}

.about-wrap__box__img img {
  display: block;
  width: 100%;
}

.about-wrap__box__con {
  width: 45%;
}

.about-wrap__box__con__txt {
  line-height: 3;
  text-align: center;
  font-size: 1.6rem;
}

.works-wrap {
  background-color: #f3fefc;
  padding-top: 100px;
  padding-bottom: 50px;
}
.works-wrap__con__list {
  display: grid;
  grid-template-columns: 300px 300px 300px;
  justify-content: center;
  gap: 100px;
}

.works-wrap__con__list__item {
  list-style: none;
}

.works-wrap__con__list__item a img {
  width: 300px;
  height: 300px;
}

.btn {
  margin: 100px auto;
  width: 320px;
  height: 70px;
  background-color: #fbf8c5;
  border-radius: 50px;
  box-shadow: 2px 2px 0 2px #f1f079;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(5px);
  box-shadow: 0 0 0 0 #fbf8c5;
}

.btn a {
  color: #333;
  font-size: 2.4rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  display: block;
  line-height: 70px;
}

.contact-wrap__con {
  width: 50%;
  margin: 0 auto;
}

.contact-wrap__con__form__item {
  margin: 50px 0;
}

.contact-wrap__con__form__item label {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 10px;
}

.contact-wrap__con__form__item input {
  width: 100%;
  height: 50px;
  border-radius: 20px;
  border-width: 4px;
  border-color: #d9d9d9;
  padding: 15px 10px 10px;
}

.contact-wrap__con__form__item textarea {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  border-width: 4px;
  border-color: #d9d9d9;
  padding: 15px 10px 10px;
}

.footer {
  background-color: #f3fefc;
  height: 100px;
}

.footer-wrap__right {
  display: block;
  text-align: center;
  line-height: 100px;
}