@charset "UTF-8";

/* セクションタイトル */
.section-title {
  color: #373737;
  font-size: clamp(20px, 6vw, 70px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px #646364;
}

/* ボタン */
.btn1 {
  max-width: 120px;
  background-color: #fff;
  display: block;
  border: solid 1px #373737;
  font-size: 12px;
  padding: 10px 0;
  text-align: center;
  left: 100%;
  position: relative;
  transform: translateX(-100%);
  z-index: 10;
}
.btn1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  background-color: #373737;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.btn1:hover {
  color: #fff;
  opacity: 1;
}
.btn1:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.btn2 {
  max-width: 120px;
  background-color: #fff;
  display: block;
  border: solid 1px #373737;
  font-size: 12px;
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}
.btn2::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  background-color: #373737;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.btn2:hover {
  color: #fff;
  opacity: 1;
}
.btn2:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

/* Inview */
.fadein {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s;
}
.fadein.inview {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.mainvisual {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.mainvisual .img {
  width: 100%;
  height: 780px;
}
.work-list {
  margin-left: 20px;
  margin-right: 20px;
}
.work-list .work-tag {
  font-family: 'Zen Kaku Gothic New', serif;
  font-size: 20px;
  margin-bottom: 20px;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #373737 #373737 #373737 #373737;
}
.work-concept {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.pastvisual {
  margin-top: 50px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 50px;
}
.past {
  display: flex;
}
.past li {
  width: 25%;
  border-right: solid 1px #e1d1b3;
}
.past li:last-child {
  border-right: 0;
}

.subvisual1 {
  margin-top: 0px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 30px;
}
.subvisual1 .img {
  width: 100%;
  height: 780px;
}
.subvisual1 .comment{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.subvisual2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 0px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 30px;
}
.subvisual2 .sub_img02 {
  display: flex;
  justify-content: space-detween;
}
.subvisual2 .sub_img02 li {
  width: 50%;
  margin-right: 20px;
}
.subvisual2 .sub_img02 li:last-child {
  margin-right: 0;
}
.outline {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 50px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  border-width: 1px 0px 0px 0px;
  border-style: solid;
  border-color: #373737 #373737 #373737 #373737;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {

  /*-------------------------------------------
  Mainvisual
  -------------------------------------------*/


}