@charset "UTF-8";


/*--------- FirstView ------------*/
.firstViewImage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.firstViewImage video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.firstViewTitle {
  letter-spacing: 0.05em;
  text-align: center;
  color: white;
}

.firstViewTitle h2 {
  margin-bottom: 60px;
  font-size: 32px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体"
}

.firstViewTitle h1 {
  margin-bottom: 60px;
  font-size: 86px;
  font-family: 'DIN Condensed', sans-serif;
}

.firstViewTitle h3 {
  line-height: 50px;
  font-size: 20px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体"
}

@media screen and (max-width:520px) {

  /* .firstViewImage {
    background: url(../images/sp_main_image.png) center center/cover no-repeat;
    height: 100vh;
  } */

  .firstViewTitle h2 {
    font-size: 21px;
  }

  .firstViewTitle h1 {
    font-size: 48px;
  }

  .firstViewTitle h3 {
    font-size: 12px;
  }
}

/* -----scroll animation -------- */
.arrows {
  width: 60px;
  height: 72px;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: 20px;
}

.arrows path {
  stroke: white;
  fill: transparent;
  stroke-width: 3px;
  -webkit-animation: arrow 2s infinite;
  animation: arrow 2s infinite;
}

@keyframes arrow {
  0% {
    opacity: 0
  }

  40% {
    opacity: 1
  }

  80% {
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

@-webkit-keyframes arrow

/*Safari and Chrome*/
  {
  0% {
    opacity: 0
  }

  40% {
    opacity: 1
  }

  80% {
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

.arrows path.a1 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  /* Safari 和 Chrome */
}

.arrows path.a2 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
  /* Safari 和 Chrome */
}

.arrows path.a3 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  /* Safari 和 Chrome */
}

/* --Newssection-- */
.newsSection {
  padding: 30px 0;
}

.newsSection h1 {
  text-align: center;
  font-family: 'DIN Condensed', sans-serif;
  font-size: 40px;
  letter-spacing: 0.05em;
}

.newsTitle {
  max-width: 1000px;
  width: 80%;
  margin: 20px auto;
  background-color: whitesmoke;
}

.newsTitle p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  padding: 30px;
}

.newsTitle br {
  display: none;
}

.newsBlog {
  max-width: 1000px;
  width: 80%;
  margin: 10px auto;
  background-color: whitesmoke;
}

.newsBlog p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  padding: 30px;
}

.newsBlog p a {
  color: black;
}



@media screen and (max-width:520px) {

  .newsSection h1 {
    font-size: 36px;
  }

  .newsTitle,
  .newsBlog {
    width: 95%;
  }

  .newsTitle br {
    display: block;
  }

  .newsTitle p,
  .newsBlog p {
    font-size: 15px;
  }
}

/* ------sectionTitle----- */

.sectionTitle {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 95%;
  margin: 30px auto;
}

.sectionTitle h1 {
  font-family: 'DIN Condensed', sans-serif;
  font-size: 42px;
  letter-spacing: 0.05em;
  margin-left: 20px;
}

.sectionTitle p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-left: 26px;
}

@media screen and (max-width:520px) {

  .sectionTitle h1 {
    font-size: 32px;
    margin-left: 15px;
  }

  .sectionTitle p {
    font-size: 16px;
    margin-left: 20px;
  }
}

/* -------MessageSection------------ */

.innerMessageTitle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.innerMessageTitle h2 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-left: 26px;
}

.innerMessage {
  text-align: center;
  margin: 30px auto;
}

.innerMessage p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  margin-top: 45px;
}

.companyBtn {
  width: 400px;
  height: 70px;
  background-color: #d70c19;
  margin: 80px auto;
  text-align: center;
}

.companyBtn a {
  color: white;
  font-family: 'DIN Condensed', sans-serif;
  font-size: 41px;
  letter-spacing: 0.05em;
  text-decoration: none;
  line-height: 70px;
}

@media screen and (max-width:520px) {
  .messageTitle {
    max-width: 95%;
  }

  .messageTitle h1 {
    font-size: 30px;
  }

  .messageTitle p {
    font-size: 18px;
  }

  .innerMessageTitle h2 {
    font-size: 1.2em;
  }

  .innerMessage {
    text-align: left;
    margin: 30px auto;
    max-width: 95%;
  }

  .innerMessage p {
    font-size: 15px;
  }

  .innerMessage br {
    display: none;
  }

  .companyBtn {
    width: 80%;
    height: 50px;
  }

  .companyBtn a {
    font-size: 30px;
    line-height: 50px;
  }
}

/* -----Recommend----- */
.recommendSection {
  background: url(../images/back_image.png)center center/cover no-repeat;
  padding-top: 100px;
  padding-bottom: 50px;
}

.recommendMsg {
  margin-left: 50px;
  text-align: left;
}

.recommendMsg p {
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.03em;
}

.recommendMsg_sp {
  display: none;
}

.recommendContainer {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  max-width: 800px;
  width: 90%;
}

.recommendItem1 {
  text-align: center;
  overflow: hidden;
  list-style: none;
  height: 420px;
}

.recommendItem1 li {
  position: relative;
  width: 60px;
  height: 80px;
  background-color: #850000;
  color: white;
  font-family: "DIN Condensed", sans-serif;
  font-size: 19.63px;
  letter-spacing: 0.05em;
}


.recommendItem1 span {
  font-size: 31.89px;
  z-index: 10px;
}

.recommendItem1 li::before,
.recommendItem1 li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}

.recommendItem1 li::before {
  bottom: -18px;
  left: -10px;
  border-style: solid;
  border-color: azure transparent transparent transparent;
  border-width: 19px 40px 0 40px;
  z-index: 1;
}

.recommendItem1 li::after {
  bottom: -15px;
  left: -5px;
  border-style: solid;
  border-color: #850000 transparent transparent transparent;
  border-width: 16px 35px 0 35px;
  z-index: 1;
}

.recommendItem2 {
  width: 90%;
}

.recommendItem2 li {
  list-style: none;
  text-align: center;
  border-bottom: 1px solid #850000;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.05em;
  width: 100%;
  height: 80px;
  line-height: 80px;
  overflow: hidden;
}

@media screen and (max-width:700px) {
  .recommendMsg {
    display: none;
  }

  .recommendMsg_sp {
    display: block;
    width: 90%;
    margin: 0 auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
    letter-spacing: 0.03em;
  }

  .recommendItem1 li {
    font-size: 16px;
  }
}

/* -----OUR BUSINESS-------- */
.businessSection {
  padding-top: 50px;
  padding-bottom: 70px;
}

.businessContainer {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.businessItem {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  margin-bottom: 50px;
  justify-content: space-evenly;
}

.businessItem img {
  width: 100%;
  margin-top: 20px;
}

.businessItem h1 {
  color: #850000;
  font-family: 'DIN Condensed', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-top: 60px;
}

.businessItem h2 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 30px;
}

.businessItem p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  margin-top: 25px;
}



@media screen and (max-width:520px) {
  .businessContainer {
    width: 95%;
  }
}

/* ---WORK section--- */

.workSection {
  background: url(../images/back_image.png)center center/cover no-repeat;
  padding: 50px 0;
}

/* レイアウトのためのスタイル　swiper */
.swiper {
  max-width: 1000px;
  width: 100%;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.slider-thumbnail {
  padding-top: 10px;
}

.slider-thumbnail .swiper-slide {
  opacity: .5;
  transition: opacity .5s;
  width: calc(100% / 5);
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.acceptedWork {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.acceptedWork h2 {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.workDiscussion {
  max-width: 800px;
  width: 80%;
  background-color: white;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0px 0px 15px -5px #777777;
}

.workDiscussionRed {
  background-color: #850000;
  color: white;
  font-size: 18px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-weight: bold;
  letter-spacing: 0.05em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 25px;
}

.workDiscussionWhite {
  padding: 50px;
  font-size: 24px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-weight: bold;
  letter-spacing: 0.05em;
}

.inquiryBtn {
  color: white;
  font-size: 20px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-weight: bold;
  letter-spacing: 0.05em;
  width: 50%;
  height: 62px;
  line-height: 61px;
  background-color: #d70c19;
  margin: 10px auto;
}

.inquiryBtn a {
  color: white;
  text-decoration: none;
}

.workHour {
  display: flex;
  justify-content: space-evenly;
  font-size: 16px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-weight: lighter;
  text-align: left;
  margin-top: 20px;
  list-style-type: none;
}

@media screen and (max-width:520px) {

  .acceptedWork h2 {
    font-size: 21px;
  }

  .workDiscussion {
    width: 95%;
  }

  .workDiscussionRed {
    font-size: 15px;
  }

  .workDiscussionWhite {
    font-size: 21px;
    padding: 30px;
  }

  .inquiryBtn {
    width: 70%;
    height: 45px;
    line-height: 45px;
  }

  .workHour {
    font-size: 14px;
  }
}

/* -----FLOW section----- */

.flowSection {
  background: url(../images/section_image.png)no-repeat;
  background-position: right top -100px;
  width: 100%;
  padding: 50px 0;
  position: relative;
}

.flowSection::after {
  content: "";
  position: absolute;
  right: 0;
  top: -100px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent #850000 transparent;
  border-width: 0 0 100px 42px;
  z-index: 1;
}

.flowContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flowContainerItem {
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 40px;
  background-color: white;
  box-shadow: 0px 0px 15px -5px #777777;
  width: 80%;
  max-width: 800px;
  margin-bottom: 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.05em;
  font-size: 24px;
}

.flowContainerItem h2 {
  margin-left: 45px;
}

.flowContainerItem p {
  margin-left: 20px;
  font-weight: bold;
}

@media screen and (max-width:520px) {
  .flowContainerItem {
    padding: 20px;
    width: 95%;
    font-size: 16px;
  }

  .flowContainerItem h2 {
    margin-left: 20px;
  }

  .flowContainerItem p {
    font-size: 14px;
    margin-left: 16px;
    font-weight: bold;
  }
}