@charset "UTF-8";
/* CSS Document */
/*-------------Top-------------------*/
main {
  background-color: #f7f7f7;
}
.top {
  margin: 0 auto;
  padding: 14% 15px 100px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-title_wrapper {
  width: 40%;
  margin: 0 auto;
}
.main-title {
  font-size: 60px;
  color: #0f322a;
  font-weight: bold;
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 1.2;
}
.top-mainvisual {
  display: block;
  width: 60%;
  height: 400px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
}
.top-mainvisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 100%;
}
/*
.top__arrow-wrapper{
	position: relative;
}
.top-arrow-text {
	text-align: center;
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
}
.top-arrow{
  content: "";
  position: absolute;
  bottom: 100px;
  left: 50%;
  width: 2px;
  height: 60px;
  background-color: #0f322a;
  animation-name: line;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: bottom;
}

@keyframes line{
	0%{
		transform: scaleY(100%) translateY(0);
	}
	100%{
		transform: scaleY(0%) translateY(60px);
	}
}
*/
@media (max-width: 1024px) {
  .top {
    padding-top: 20%;
  }
  .main-title {
    font-size: 40px;
    padding-left: 20px;
  }
  .top-mainvisual {
    height: 350px;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .top {
    margin: 0 auto;
    display: block;
    padding: 160px 20px 0;
  }
  .main-title_wrapper {
    width: 100%;
  }
  .main-title {
    text-align: center;
    padding-left: 0;
  }
  .top-mainvisual {
    display: block;
    width: 100%;
    height: 500px;
    margin: 30px auto 0;
  }
  .top-mainvisual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 100%;
  }
}
/*-------------メイン共通-------------------*/
.main-content section {
  position: relative;
}
.top__title {
  font-size: 60px;
  color: #0f322a;
  font-weight: bold;
  font-family: 'Outfit';
  text-align: left;
}
.top__title::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: #0f322a;
  vertical-align: middle;
  margin-right: 10px;
}
.top__title + .jp {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  color: #0f322a;
  margin-left: 60px;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .top__title::before {
    width: 60px;
  }
  .top__title + .jp {
    margin-left: 70px;
  }
}
@media (max-width: 768px) {
  .top__title {
    font-size: 48px;
    text-align: center;
    position: relative;
  }
  .top__title::before {
    width: 2px;
    height: 30px;
    margin-right: 0;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translate(-50%);
  }
  .top__title + .jp {
    text-align: center;
    margin: 10px auto 0;
    display: block;
  }
}

/*-------------About-------------------*/
.about {
  background-color: #f2f2f2;
  padding: 100px 30px;
}
.about__inner {
  margin: 0 auto;
  max-width: 1200px;
}
.about__content {
  width: 100%;
  overflow-x: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__heading {
  width: 100%;
  margin-bottom: 50px;
}
.about-photo {
  width: 40%;
  margin-right: 50px;
  border-radius: 40px;
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
}
.about__text {
  width: 60%;
  color: #0f322a;
  text-align: left;
}
.about__text h3 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 20px;
}
.about__can {
  font-size: 15px;
  background-color: #ddd;
  padding: 10px 20px;
  width: fit-content;
  border-radius: 4px;
  margin-bottom: 30px;
}
.about__thought {
  line-height: 1.75em;
}

.about .button {
  margin-top: 50px;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-400%);
    /*    opacity: 1;*/
  }
}

@media (max-width: 768px) {
  .about {
    margin-top: 50px;
    padding: 86px 20px 50px;
  }
  .about__inner {
    display: block;
  }
  .about__heading {
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
    padding-left: 0;
  }
  .about__content {
    width: 100%;
    display: block;
  }
  .about-photo {
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
    border-radius: 20px;
  }
  .about-photo img {
    width: 100%;
    height: 100%;
  }
  .about__text {
    width: 100%;
  }
  .about__name {
    text-align: center;
  }
  .about__can {
    margin: 0 auto 30px;
  }
  .about__thought {
    padding-bottom: 0;
  }
  .about .button {
    margin-top: 40px;
  }
}
/*-------------Works-------------------*/
.works {
  margin: 0 auto;
  padding: 100px 30px;
  width: 100%;
}
.works__inner {
  margin: 0 auto;
  max-width: 1200px;
}
.works__heading {
  width: 100%;
  margin-bottom: 50px;
}
.works__wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.works li {
  padding: 50px 30px;
  width: 50%;
  border-bottom: 1px solid #c4c6c6;
}

.works li:nth-child(odd) {
  border-right: 1px solid #c4c6c6;
}

.works li:last-child,
.works li:nth-last-child(2) {
  border-bottom: none;
}
.works__mock {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.works__mock a:hover img {
  transform: scale(1.05);
  opacity: 0.7;
  transition: all 0.5s;
}
.works__mock img {
  display: block;
  padding: 10px;
  width: 100%;
  max-height: 382px;
  object-fit: contain;
  transition: all 0.5s;
}
.works__description {
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 0;
}
.works__description h3 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  line-height: 1.3em;
}
.works__description h3 span {
  font-size: 15px;
}
.works__description .excerpt {
  line-height: 1.5em;
  font-size: 14px;
}
.works .button {
  margin-top: 50px;
}

/* @media (max-width: 1024px) {
  .works li {
    padding-bottom: 40px;
  }
  .works__wrapper {
    display: block;
  }
  .works__description {
    padding: 20px 0 0 10px;
  }
} */
@media (max-width: 768px) {
  .works {
    padding: 86px 20px 50px;
  }
  .works__inner {
    margin: 0 auto;
    max-width: 1200px;
  }
  .works__heading {
    width: 100%;
    margin-bottom: 0;
  }
  .works__wrapper {
    display: block;
  }
  .works li {
    padding: 30px 0;
    width: 100%;
    border-bottom: 1px solid #c4c6c6;
  }

  .works li:nth-child(odd) {
    border-right: none;
  }

  .works li:nth-last-child(2) {
    border-bottom: 1px solid #c4c6c6;
  }

  .works .button {
    margin-top: 40px;
  }
}

/*animation*/
/*
.animation{
  width: 100%;
  height: 120px;
  background-color: #2F6357;
}
*/

/*animation*/
/*--------------Skill------------------*/
.skill {
  background-color: #f2f2f2;
  padding: 100px 30px;
}
.skill__inner {
  margin: 0 auto;
  max-width: 1200px;
}
.skill__heading {
  width: 100%;
  margin-bottom: 50px;
}
.skill__container {
  width: 100%;
}
.skill__wrap {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 20px;
}
.skill ul li {
  flex-basis: 23%;
  padding: 25px 10px 20px;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  border: 1px solid #0f322a;
  border-radius: 20px;
}
.skill ul li p {
  line-height: 30px;
  vertical-align: middle;
}
.skill__name {
  font-size: 22px;
}
.skill_andmore {
  padding-top: 40px;
  font-size: 20px;
  text-align: center;
}
.skill .button {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .skill {
    padding: 86px 20px 50px;
  }
  .skill__heading {
    width: 100%;
    margin-bottom: 30px;
  }
  .skill__container {
    width: 100%;
  }
  .skill ul li {
    flex-basis: 47%;
    padding: 20px 10px;
    border-radius: 12px;
  }
  .skill ul li p {
    font-size: 18px;
    line-height: 20px;
  }
  .skill_andmore {
    text-align: center;
    padding: 20px 0;
    font-size: 22px;
  }
  .skill .button {
    margin-top: 40px;
  }
}
