@charset "UTF-8";
/* CSS Document */

main {
  padding: 0 8%;
}

/* MV */
.mv {
  padding: 60px 0 50px; /* ヘッダーの分 */
}
.mv h1 {
  color: #111;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 4.2rem;
  margin-top: 60px;
}
.mv h1 span {
  font-weight: 100;
}
.mv-image {
  width: 100%;
  margin-top: 30px;
}
.mv-image img {
  object-fit: cover;
  height: 280px;
  width: 100%;
}
.mv-message {
  position: relative;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 30px auto 0;
  padding: 20px 0 0;
}
.mv-message::before {
  content: "";
  width: 300px;
  height: 150px;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../images/lien_logo_2.png");
  background-size: contain;
  opacity: 0.05;
}
.mv-message h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.mv-message p {
  font-size: 1.3rem;
  font-weight: 300;
}

@media(min-width: 600px) {
  .mv {
    padding: 80px 0 70px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .mv h1 {
    font-size: min(5vw,10rem);
    line-height: normal;
    margin: 12vh 0 5vh;
  }
  .mv-image {
    object-fit: cover;
    height: auto;
    margin: 0 auto;
  }
  .mv-image img {
    height: auto;
    width: 100%;
  }
}
@media(min-width: 880px) {
  .mv-message {
    padding: 90px 0 40px 160px;
    background-repeat: no-repeat;
    text-align: left;
    width: 500px;
    height: 250px;
    margin: -30px 0 50px auto;
  }
  .mv-message::before {
    width: 500px;
    height: 250px;
    right: -20px;
  }
  .mv-message h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }
  .mv-message p {
    font-size: 1.4rem;
  }
}

/* ABOUT */
.about {
  padding: 70px 0 100px;
}
.about h2 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 70px;
}
.about-content__img {
  width: 260px;
  height: 260px;
  margin: 0 auto 30px;
}
.about-content__img  img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-content__description {
  width: 100%;
  margin: 0 auto;
}
.my-name {
  text-align: center;
}
.my-name h3 {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.25rem;
}
.my-name div {
  font-size: 1.2rem;
  font-weight: 200;
  color: #aaa;
}
.about-content__description p {
  font-weight: 200;
  padding: 30px 0 40px;
  max-width: 500px;
  margin: 0 auto;
}
.more-btn {
  position: relative;
  width: 180px;
  height: 50px;
  border: solid 1px #303030;
  margin: 0 auto;
}
.more-btn::after {
  content: "";
  background-color: #303030;
  position: absolute;
  width: 50px;
  height: 1px;
  top: 24.5px;
  right: -36px;
}
.more-btn::before {
  content: "";
  background-color: #303030;
  position: absolute;
  width: 5px;
  height: 5px;
  top: 22.5px;
  right: -36px;
  border-radius: 10px;
}
.more-btn a {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-weight: 300;
  text-align: center;
  line-height: 5rem;
  letter-spacing: 0.1rem;
}

@media(min-width: 1000px) {
  .about {
    padding-bottom: 180px;
  }
  .about h2 {
    font-size: 2.6rem;
    padding-bottom: 120px;
  }
  .about-content {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 8%;
    max-width: 1220px;
    margin: 0 auto;
  }
  .about-content__img {
    width: 42%;
    height: auto;
    margin: 0;
  }
  .about-content__img  img {
    object-fit: contain;
    height: auto;
  }
  .about-content__description {
    width: 50%;
    margin: 0;
    padding-top: 30px;
  }
  .my-name {
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0 20px;
  }
  .my-name h3 {
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
  }
  .my-name div {
    font-size: 1.4rem;
  }
  .about-content__description p {
    font-size: 1.4rem;
    font-weight: 200;
    padding: 20px 0 70px;
    max-width: none;
    margin: 0;
  }
  .more-btn {
    margin: 0 auto 0 0;
  }
  .more-btn:hover {
    background-color: #303030;
    color: #fff;
    transition: 0.5s;
  }
}
/* WORKS */
.works {
  padding: 100px 0 60px;
  border-top: solid 1px #DADADA;
}
.works h2 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 70px;
}
.works-list {
  width: 100%;
}
.works-list li {
  padding-bottom: 60px;
}
.works-list__img {
  width: 78vw;
  height: 50vw;
  max-width: 500px;
  max-height: 260px;
  background-color: #EEE;
  padding: 30px 20px 20px;
  margin: 0 auto 14px;
  text-align: center;
}
.works-list__img img {
  object-fit: cover;
  width: auto;
  height: 100%;
}
.works-list__description {
  width: 78vw;
  max-width: 500px;
  margin: 0 auto;
}
.works-type {
  width: 70px;
  height: 26px;
  background-color: #303030;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.6rem;
  text-align: center;
  margin-bottom: 6px;
}
.works-title {
  font-size: 1.4rem;
  font-weight: 300;
}
.works-title.small {
  font-size: 1.6rem;
}

@media(min-width: 520px) {
  .works-list__description {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 20px;
    justify-content: flex-start;
    align-items: center;
  }
  .works-type {
    margin: 0;
  }
  .works-title {
    font-size: 1.5rem;
    line-height: 2.6rem;
  }
  .works-title.small {
    font-size: 1.6rem;
  }
}

@media(min-width: 1000px) {
  .works {
    padding: 140px 0 200px;
  }
  .works h2 {
    font-size: 2.6rem;
    padding-bottom: 120px;
  }
  .works-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px 6%;
    margin: 0 auto;
    max-width: 1440px;
  }
  .works-list li {
    padding: 0;
    width: 47%;
  } 
  .works-list__img {
    width: 100%;
    height: 330px;
    max-width: none;
    max-height: none;
    padding: 50px 0 40px;
    margin: 0 auto 20px;
    text-align: center;
  }
  .works-list__img:hover {
    background-color: #303030;
    transition: 0.5s;
  }
  .works-list__img img {
    width: auto;
    height: 100%;
  }
  .works-list__description {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
}

/* ABOUTページーTOP */
.profile {
  padding: 60px 0 80px;
  border-bottom: solid 1px #DADADA;
}
.profile h2 {
  font-size: min(5.5vw,6rem);
  font-weight: 500;
  text-align: center;
  padding: 10vw 0;
}
.profile-content__img {
  width: 260px;
  height: 260px;
  margin: 0 auto 30px;
}
.profile-content__img  img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.profile-content__description {
  width: 100%;
  margin: 0 auto;
}
.profile-content__description p {
  font-weight: 200;
  max-width: 500px;
  margin: 0 auto;
}
.profile1 {
  padding: 30px 0 20px;
}

@media(min-width: 1000px) {
  .profile {
    padding: 80px 0 130px;
  }
}
@media(min-width: 1000px) {
  .profile h2 {
    text-align: left;
    max-width: 1440px;
    margin: 0 auto;
  }
  .profile-content {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 8%;
    max-width: 1440px;
    margin: 0 auto;
  }
  .profile-content__img {
    width: 42%;
    height: auto;
    margin: 0;
  }
  .profile-content__img  img {
    object-fit: contain;
    height: auto;
  }
  .profile-content__description {
    width: 50%;
    margin: 0;
    padding-top: 30px;
  }
  .profile-content__description p {
    font-size: 1.4rem;
    max-width: none;
    margin: 0;
  }
  .profile1 {
    padding: 44px 0 26px;
  }
}

/* ABOUTページーCAREER */
.career {
  padding: 80px 0;
}
.career-title {
  text-align: center;
  padding-bottom: 50px;
}
.career-title h2 {
  font-size: 1.2rem;
  font-weight: 300;
  color: #aaa;
}
.career-title__Eng {
  font-weight: 400;
  font-size: 2rem;
}
.career-content__list {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.career-content__list::before {
  position: absolute;
  content: "";
  background-color: #111;
  width: 1px;
  height: 95%;
  top: 10px;
  left: 65px;
}
.career-content__list li {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  font-weight: 300;
  gap: 0 50px;
  padding-bottom: 50px;
}
.career-content__list li::before {
  position: absolute;
  content: "";
  background-color: #111;
  width: 8px;
  height: 8px;
  top: 7.5px;
  left: 61.5px;
  border-radius: 10px;
}
.career-content__list-date {
  width: 46px;
}
.career-content__list-description {
  width: calc( 100% - 96px );
}

@media(min-width: 1000px) {
  .career {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    gap: 0 8%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 0 100px;
  }
  .career-title {
    width: 240px;
    height: 150px;
    border: solid 1px #111;
    padding: 40px 0;
    margin-right: 9%;
  }
  .career-title__Eng {
    font-size: 2.6rem;
    margin-top: 4px;
  }
  .career-content {
    width: calc( 74% - 200px );
    margin-left: 9%;
  }
  .career-content__list {
    max-width: none;
    margin-top: 50px;
  }
  .career-content__list li {
    font-size: 1.4rem;
    gap: 0 70px;
  }
  .career-content__list::before {
    left: 75px;
  }
  .career-content__list li::before {
    left: 71.5px;
  }
}


/* ABOUTページーSTRENGTH */
.strength {
  padding: 80px 0;
  border-top: solid 1px #DADADA;
}
.strength-title {
  text-align: center;
  padding-bottom: 50px;
}
.strength-title h2 {
  font-size: 1.2rem;
  font-weight: 300;
  color: #aaa;
}
.strength-title__Eng {
  font-weight: 400;
  font-size: 2rem;
}
.strength-content__list {
  max-width: 500px;
  margin: 0 auto;
}
.strength-content__list li {
  position: relative;
  font-weight: 300;
  padding-bottom: 50px;
}
.strength-content__list-title {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5rem;
  padding-left: 10px;
  margin-bottom: 12px;
  border-left: solid 3px #111;
}

@media(min-width: 1000px) {
  .strength {
    padding: 120px 0 120px;
  }
  .strength__wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 8%;
    max-width: 1440px;
    margin: 0 auto;
  }
  .strength-title {
    width: 240px;
    height: 150px;
    border: solid 1px #111;
    padding: 40px 0;
    margin-left: 9%;
  }
  .strength-title__Eng {
    font-size: 2.6rem;
    margin-top: 4px;
  }
  .strength-content {
    width: calc( 74% - 200px );
    margin-right: 9%;
  }
  .strength-content__list {
    max-width: none;
    margin-top: 50px;
  }
  .strength-content__list li {
    font-size: 1.4rem;
    gap: 0 70px;
  }
}


/* WORKS */
.works-top {
  padding-top: 60px;
  max-width: 1440px;
  margin: 0 auto;
}
.works-top h2 {
  font-size: min(5.5vw,6rem);
  font-weight: 500;
  line-height: normal;
  padding: 10vw 0 5vw;
}
.works-top__data {
  font-weight: 300;
  line-height: 2.6rem;
  color: #3C3C3C;
}
.works-top__data li a {
  border-bottom: solid 1px #3C3C3C;
}
.works-top__data li a:hover {
  color: #A0A0A0;
  border-bottom: solid 1px #A0A0A0;
  transition: 0.3s;
}
.works-top__img {
  width: 100%;
  height: auto;
  margin: 50px 0 80px;
}
.works-top__img.lig {
  margin: 80px 0 20px;
}
.works-top__img.banner {
  width: 80%;
  max-width: 800px;
  margin: 50px auto 60px;
}
.works-top__img img {
  object-fit: cover;
  width: 100%;
}
.works-info h3 {
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: center;
}
.works-info__list {
  margin: 50px auto;
  max-width: 1440px;
}
.works-info__list li {
  padding-bottom: 50px;
}
.works-info__list li div {
  color: #3C3C3C;
  font-size: 1.5rem;
  line-height: 2.8rem;
}
.works-info__list li p {
  font-weight: 300;
  line-height: 2.8rem;
}
.works-comp {
  width: 100vw;
  margin-left: -8vw;
  padding: 100px 8%;
  background-color: #EEE;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 10%;
  justify-content: center;
  align-items: flex-start;
}
.works-comp.banner {
  display: block;
  padding: 100px 8% 20px;
}
.works-comp__img-banner {
  margin: 0 auto 80px;
  width: 60%;
  max-width: 400px;
  box-shadow: rgba(0, 0, 0, .18) 0px 2px 4px;
}
.works-comp__img-banner img {
  width: 100%;
}
.works-comp__img-pc {
  width: 60%;
  box-shadow: rgba(0, 0, 0, .18) 0px 2px 4px;
}
.works-comp__img-pc img {
  width: 100%;
}
.works-comp__img-sp {
  width: 20%;
  box-shadow: rgba(0, 0, 0, .18) 0px 2px 4px;
}
.works-comp__img-sp img {
  width: 100%;
}
.works-comp__img-illust {
  width: 20%;
}
.works-comp__img-illust img {
  width: 100%;
}
.works-list__img.select {
  background-color: #303030;
}
.works.under {
  border-top: none;
}

@media(min-width: 600px) {
  .works-top {
    padding-top: 70px;
  }
}
@media(min-width: 800px) {
  .works-info h3 span {
    display:  none;
  }
}
@media(min-width: 1000px) {
  .works-top__data {
    font-size: 1.4rem;
  }
  .works-top h2 {
    padding: 10vw 0 50px;
  }
  .works-top__img {
    margin: 30px 0 100px;
  }
  .works-top__img.lig {
    margin: 120px 0 20px;
  }
  .works-top__img.banner {
    margin: 50px auto 100px;
  }
  .works-info h3 {
    font-size: 2.2rem;
    line-height: 3.6rem;
  }
  .works-info__list {
    margin: 80px auto;
  }
  .works-info__list li {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 12%;
  }
  .works-info__list li div {
    font-size: 1.6rem;
    padding: 0;
    width: 80px;
    margin-left: 5%;
  }
  .works-info__list li p {
    font-size: 1.4rem;
    width: calc( 78% - 80px );
    margin-right: 5%;
  }
  .works-comp {
    padding: 140px 8%;
  }
  .works-comp.banner {
    padding: 120px 8%;
    display: flex;
    flex-wrap: nowrap;
    gap: 0 6%;
    justify-content: center;
    align-items: center;
  }
  .works-comp__img-banner {
    width: 47%;
    padding: 0;
    margin: 0;
  }
}





