@charset "UTF-8";
.img {
  width: 100%;
  height: auto;
}

body {
  color: #111;
  line-height: 1.5;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .inner {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.br-sp {
  display: none;
}

a {
  color: #111;
  text-decoration: none;
  font-size: 16px;
}

/*header*/
.header-nav-item:nth-of-type(4) {
  position: relative;
}
.header-nav-item:nth-of-type(4)::after {
  position: absolute;
  content: "";
  height: 2px;
  width: calc(100% + 10px);
  background: #2B2775;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  transition: all 0.5s ease 0s;
}

/*head*/
.head {
  background: url(../img/works-head.png) no-repeat center center/cover;
}

/*works*/
.works-title {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 60px;
  text-align: center;
  color: #2B2775;
}

.works-item {
  border: 1px solid #111;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 30px 60px;
  transition: all 0.3s ease 0s;
}
.works-item:hover {
  transform: scale(1.03, 1.03);
}
@media (max-width: 767px) {
  .works-item {
    padding: 30px;
  }
}

.works-item_works1 {
  margin-bottom: 60px;
}

.works-item_title {
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .works-item_title {
    font-size: 16px;
  }
}

.works-item_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .works-item_flex {
    display: block;
  }
}

.works-item_flex_left img {
  width: 500px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .works-item_flex_left {
    margin: 20px 0;
  }
}

.works-item_flex_right {
  margin-left: 60px;
  width: 400px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .works-item_flex_right {
    margin-left: 0;
    width: 100%;
  }
}

.works-item_flex_right_title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .works-item_flex_right_title {
    font-size: 16px;
  }
}

.works-item_flex_right_text span {
  font-weight: bold;
}
@media (max-width: 767px) {
  .works-item_flex_right_text {
    font-size: 14px;
  }
}