@charset "utf-8";

.top .mainVisual {
  position: relative;
  width: 100%;
  height: 46vw;
  background: url("../img/mainVisual_pc.jpg") center top no-repeat;
  background-size: 100% auto;
  background-attachment: fixed;
}
.top .mainVisual h2 {
  position: absolute;
  top: 60%;
  left: 40%;
  color: #fff;
  font-size: 3.5vw;
  letter-spacing: 0.1em;
  text-align: right;
  transform: none;
}
.top .mainVisual h2 span {
  display: block;
  padding-right: 1.5em;
  font-family: 'Lato', sans-serif;
  font-size: 40%;
}
.top .mainVisual::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  width: 39%;
  height: 5px;
  background: #ef3e2d;
}

@media screen and (max-width:1200px){
  .top .mainVisual {
    background: url("../img/mainVisual_pc.jpg") center top 80px no-repeat;
    background-size: 100% auto;
    background-attachment: fixed;
  }
}

@media screen and (max-width:1000px){
  .top .mainVisual {
    width: 100%;
    height: 100vw;
    background: url("../img/mainVisual_sp.jpg") center top no-repeat;
    background-size: 100% 100%;
    background-attachment: scroll;
  }
  .top .mainVisual h2 {
    top: 60%;
    left: 6%;
    width: 90%;
    color: #fff;
    font-size: 6vw;
    letter-spacing: 0.1em;
    text-align: right;
  }
  .top .mainVisual::after {
    width: 100%;
    height: 3px;
  }
}

.top .article .wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.top .news .inner {
  width: 62.5%;
  max-width: none;
  margin: 0 auto;
  padding: 2% 0 8%;
}
.news h3 {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 32px;
}
.news h4 {
  margin-bottom: 1em;
  text-align: center;
  font-size: 17px;
}
.news a {
  color: #ef3e2d;
}

.newsBox {
    display: flex;
    justify-content:start;
}
.newsTitle {
    flex: 1 1 auto;
}
.newsContent {
    flex: 1 1 auto;
}
.top .info .inner {
  width: 62.5%;
  max-width: none;
  margin: 0 auto;
  padding: 2% 0 8%;
}
.top .info h3 {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #ef3e2d;
}
.top .info .wrap {
  border-bottom: 1px solid #b7b7b7;
}
.top .info .phSet {
  position: relative;
  width: 32.5%;
  overflow: hidden;
}
.top .info .txSet {
  width: 67.5%;
  padding: 0 0 0 3em;
}
.top .info h4 {
  margin: 0 0 1.5em;
  font-size: 18px;
}
.top .info .detail {
  color: #818181;
}
.top .info .btn_contact {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 250px;
  height: 48px;
  margin: 1.5em 0;
  line-height: 46px;
  color: #fff;
  border-radius: 24px;
  background: #818181;
}
.top .info .btn_contact:hover::before {
  content: "";
  position: absolute;
  display: block;
}
.top .info .btn_contact i {
  margin-left: 0.5em;
  line-height: 46px;
}

@media screen and (max-width:1000px){
  .top .info .inner {
    width: 94%;
    margin: 0 auto;
    padding: 2% 0 8%;
  }
}

@media screen and (max-width:800px){
  .top .info .phSet {
    width: 100%;
  }
  .top .info .txSet {
    width: 100%;
    margin-top: 1em;
    padding: 0;
  }
  .top .info .btn_contact {
    margin: 1.5em auto 8%;
  }
}

.about .wrap {
  justify-content: flex-end;
}
.about .txSet {
  width: 31.25%;
  padding: 0 3em 0 0;
}
.about .titleSet {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
}
.about .titleSet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #818181; 
}
.about h3 {
  position: relative;
  padding-right: 1em;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  background: #fff;
  z-index: 2;
}
.about .ttl {
  position: relative;
  padding-left: 1em;
  background: #fff;
  z-index: 2;
}
.about h4 {
  margin: 0.5em 0 0.75em;
  font-size: 24px;
}
.about .btn_more {
  position: relative;
  display: block;
  width: 250px;
  height: 64px;
  margin: 1.5em 0;
  line-height: 64px;
  letter-spacing: 0.1em;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  text-align: center;
  color: #ef3e2d;
  border: 1px solid #ef3e2d;
  transition: .25s;
}
.about .btn_more:hover {
  color: #fff;
}
.about .btn_more p {
  position: relative;
  z-index: 2;
}
.about .btn_more i {
  position: absolute;
  top: 0;
  right: 1em;
  line-height: 64px;
}
.about .btn_more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #ef3e2d;
  transition: .25s;
}
.about .btn_more:hover::before {
  width: 100%;
}
.about .phSet {
  position: relative;
  width: 50%;
  overflow: hidden;
}

@media screen and (max-width:1000px){
  .about .txSet {
    width: 50%;
    padding: 0 3em 0 3%;
  }
}

@media screen and (max-width:800px){
  .about .txSet {
    width: 100%;
    padding: 0 3%;
    order: 2;
  }
  .about h4 {
    margin: 0.5em 0 0.75em;
    font-size: 18px;
  }
  .about .btn_more {
    margin: 1.5em auto 3em;
  }
  .about .phSet {
    width: 100%;
    margin: 0 0 1em;
    order: 1;
  }
}

.business {
  padding: 6% 0;
}
.business h3 {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 32px;
}
.business h4 {
  margin-bottom: 1em;
  text-align: center;
  font-size: 17px;
}
.business .wrap a {
  position: relative;
  display: block;
  width: 50%;
  overflow: hidden;
}
.business .wrap a:nth-of-type(n + 5) {
  width: 33.33%;  
}
.business .wrap a img {
  transition: .5s;
}
.business .wrap a:hover img {
  transform: scale(1.2);
}
.business .wrap a p.tx {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width:800px){
  .business .wrap a,
  .business .wrap a:nth-of-type(n + 5) {
    width: 94%;
    margin: 1% auto;
  }
}

.other {
  padding: 5% 0;
  background: #f7f7f7;
}
.other .wrap {
  justify-content: center;
}
.other a {
  position: relative;
  display: block;
  width: 30%;
  max-width: 287px;
  height: 180px;
  margin: 0 1px;
  color: #000;
  background: #fff;
  box-shadow: -3px 3px 3px rgba(50,50,50,.01),
    3px 3px 3px rgba(50,50,50,.01),
    3px -3px 3px rgba(50,50,50,.01),
    -3px -3px 3px rgba(50,50,50,.01);
  z-index: 1;
  transition: .25s;
}
.other a:hover {
  box-shadow: -3px 3px 5px rgba(0,0,0,.075),
    3px 12px 12px rgba(0,0,0,.075),
    3px -3px 5px rgba(0,0,0,.075),
    -3px -3px 5px rgba(0,0,0,.075);
  z-index: 2;
}
.other .tx {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translateY(-50%) translateX(-50%);
}
.other .en {
  color: #555555;
  font-family: 'Lato', sans-serif;
}

@media screen and (max-width:800px){
  .other a {
    width: 94%;
    max-width: 100%;
    height: 15vw;
  }

.newsBox {
    display: block;
}
.newsTitle {
    flex: 0;
}
.newsContent {
    flex: 0;
}

}




