@charset "utf-8";
/* CSS Document */
.index_top {
  display: flex;
  justify-content: space-between;
}
.top-img img {
  width: 50vw;
  right: 0;
  margin-right: 3vw;
}
.top-txt h2 {
margin-left: 15vw;
    font-size: 4.8rem;
    margin-top: 275px;
}
.top-txt p {
  margin-left: 15vw;
  font-size: 2.4rem;
  margin-top: 18px;
  margin-bottom: 60px;
}
.top-txt a {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
  margin-left: 10vw;
  font-size: 2rem;
  padding: 10px 80px 10px 15px;
  border: 1px solid #005060;
  color: #005060;
}
/*ボタン内spanの形状*/
.top-txt a span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #005060;
}
.top-txt a:hover span {
  color: #e2d9c8;
}
.top_p {
  margin-left: 11vw;
  width: 25vw;
	margin-top: 65px;
}
.top_p h3 {
  font-size: 300%;
  margin-bottom: 70px;
	width: 65vw;
}
.top_p p {
  font-size: 190%;
  margin-bottom: 11vw;
	width: 55vw;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: -20;
}
.fadeUp2 {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  opacity: 0;
  z-index: -20;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
/*top#*/
/*top sp*/
@media (max-width: 970px) {
  .full {
    background-size: 80px 1500px;
  }
  .index_top {
    flex-direction: column-reverse;
  }
	.top_p p{
		font-size: 1.1rem;
		width: 66vw;
	}
  .top-txt h2 {
    margin-left: 7vw;
    font-size: 3rem;
    margin-top: 80px;
  }
  .top-txt p {
    margin-left: 7vw;
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 60px;
  }
  .top-img {
    margin: 0 auto;
  }
  .top-img img {
    width: 75vw;
  }
}
/*top#*/
/*<<<<<<<<<<<<<<<<<work>>>>>>>>>>>>>>>>>>>*/
.midasi {
  padding: 22px 20px 14px;
  margin: 80px auto 1%;
}
.midasi2 {
  padding: 8px 90px 38px 159px;
  margin: 66px auto 1%;
}
.midasi-p {
  margin-left: 9vw;
  font-size: 400%;
  color: #005060;
  margin-top: 26%;
  border-left: 3px solid #629098; /*線の設定*/
  padding: 0 15px; /*余白の設定*/
}
.brr {
  display: none;
}
.work1 {
  background-color: #f4f2ef;
  padding: 5vh 3vw 7vw;
}
.work1 li {
  list-style: none;
}
.work_txt {
  background-color: #fff;
  width: 80vw;
  position: relative;
  z-index: 10;
  height: 45vw;
}
.work_p {
  margin-left: 17vw;
  margin-right: 30vw;
  padding-bottom: 80px;
}
.work_p h3 {
  font-size: 250%;
  margin-bottom: 70px;
	display: table-column;
}
.work_p p {
  font-size: 180%;
}
.work_img {
  width: 70vw;
  height: 34vw;
  position: absolute;
  top: -66px;
  z-index: 100;
  right: -11vw;
}
.work_img img {
  object-fit: cover;
  width: 100%;
  height: 25vw;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
  margin-left: 15%;
}
/**/
/**/
.midasi-p2 {
  margin-left: 40vw;
  font-size: 400%;
  color: #005060;
  margin-top: 28%;
  border-left: 3px solid #629098; /*線の設定*/
  padding: 0 15px; /*余白の設定*/
}
.work_txt2 {
  background-color: #fff;
  height: 46vw;
  position: relative;
  z-index: 10;
  width: 80vw;
  margin-left: 14vw;
}
.work_p2 {
  margin-right: 17vw;
  margin-left: 30vw;
  padding-bottom: 80px;
}
.work_p2 h3 {
  font-size: 250%;
  margin-bottom: 70px;
	display: table-column;
}
.work_p2 p {
  font-size: 180%;
}
.work_img2 {
  width: 70vw;
  height: 34vw;
  position: absolute;
  top: -40px;
  z-index: 100;
  left: -11vw;
}
.work_img2 img {
  object-fit: cover;
  width: 100%;
  height: 25vw;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
  margin-left: -15%;
}
/**/
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown2 {
  animation-name: fadeDownAnime;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDownTrigger {
  opacity: 0;
}
.top_p_p {
  animation-delay: 1s;
}
@media (max-width: 1104px) {
  .midasi2 {
    padding: 8px 90px 18px 95px;
  }
}
@media (max-width: 970px) {
  .midasi, .midasi2 {
    padding: 1px;
  }
  .brr {
    display: block;
  }
  .work1 {
    padding: 5vh 3vw 17vw;
  }
  .top_p {
    width: 38vw;
    margin-left: 5vw;
  }
  .top_p h3 {
    font-size: 1.3rem;
    margin-bottom: 45px;
    width: 100%;
  }
  .top_p {
    margin-left: 5vw;
    width: 66vw;
	  position: relative;
	  margin-top: 10px;
	  z-index: -20;
  }
  .work_txt, .work_txt2 {
    text-align: center;
    height: 30%;
    margin: 25vw auto;
    font-size: 140%;
    font-weight: 500;
    margin-bottom: 0;
  }
  .work_p, .work_p2 {
    margin: 0;
  }
  .work_p p, .work_p2 p {
    font-size: 110%;
    margin: 20px 25px;
    line-height: 2em;
    font-weight: 300;
    color: #2E2C2C;
	  text-align: left;
  }
  .midasi-p, .midasi-p2 {
    font-size: 180%;
    margin-left: 0;
    padding: 0 3px;
    border-left: none;
    margin-top: 35%;
  }
  .midasi2 {
    margin-bottom: 10px;
    margin-left: 0;
    padding: 1px;
  }
  .work_img {
    width: 70vw;
    height: 34vw;
    position: absolute;
    top: -11vh;
    left: 10vw
  }
  .work_img img {
    object-fit: cover;
    width: 100%;
    height: 35vw;
    margin-left: -15%;
  }
  .work_img2 img {
    height: 35vw;
  }
  .work_img2 {
    width: 70vw;
    height: 35vw;
    position: absolute;
    top: -11vh;
    left: 10vw;
  }
  .work_p h3, .work_p2 h3 {
    font-size: 123%;
    margin-bottom: 12px;
    font-weight: 400;
    padding: 13px 30px;
	   display: block;
  }
}
@media (max-width:410px) {
  .work_img img {
    object-fit: cover;
    width: 100%;
    height: 33vw;
    margin-left: -15%;
    margin-top: 10vw;
  }
  .work_img2 img {
    height: 33vw;
    margin-top: 10vw;
  }
}