@charset "utf-8";
/* ----------------------------------------
 mv
------------------------------------------- */
#mv {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
#slider li {
  position: relative;
  width: 100%;
  height: 744px;
}
.slide01 {
  background: url("../images/index-images/mv01.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.slide02 {
  background: url("../images/index-images/mv02.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.slide03 {
  background: url("../images/index-images/mv03.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.slide04 {
  background: url("../images/index-images/mv04.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.catch {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 100;
}
.catch h2 {
  color: #fff;
  font-family: var(--font01);
  font-weight: 900;
  font-size: 5.4rem;
  text-align: left;
  line-height: 1.4;
  margin-bottom: 20px;
}
.catch h3 {
  color: #fff;
  font-family: var(--font01);
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.4;
  text-align: left;
}
/* ----------------------------------------
 lead
------------------------------------------- */
#lead {
  background: url("../images/index-images/bg01.jpg") 0 0 no-repeat;
  background-size: 100% auto;
  background-attachment: fixed;
}
.layout-lead {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.layout-lead .box01 {
  width: 43%;
  margin-left: 3%;
}
.layout-lead .box02 {
  width: 46%;
}
.layout-reverse .box01 {
  width: 43%;
  margin-left: 0;
  margin-right: 3%;
}
.layout-lead p {
  line-height: 2.4;
}
.layout-lead p strong {
  color: var(--color02);
  font-size: 110%;
  font-weight: 700;
}
/* ----------------------------------------
 business
------------------------------------------- */
#business {
  background-color: var(--color04);
}
.layout-business {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.layout-business .box01 {
  width: 46%;
}
.layout-business .box02 {
  width: 46%;
}
.layout-business .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding-top: 60%;
  margin-bottom: 10px;
}
.layout-business .img-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.layout-business .box01:hover .img-box img, .layout-business .box02:hover .img-box img {
  transform: scale(1.05, 1.05);
}
.layout-business h3 {
  color: var(--color02);
  font-size: 2.7rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.layout-business p {
  margin-bottom: 25px;
}
.layout-business .cmn-btn01 {
  text-align: center;
}
/* ----------------------------------------
 works
------------------------------------------- */
.li-works {
  display: flex;
  flex-wrap: wrap;
}
.li-works li {
  width: 30%;
  margin-right: 5%;
}
.li-works li:nth-child(3n) {
  margin-right: 0;
}
.li-works li .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding-top: 70%;
  margin-bottom: 8px;
}
.li-works li .img-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.li-works li a:hover .img-box img {
  transform: scale(1.05, 1.05);
}
.li-works li a p {
  font-weight: 700;
}
.layout-works {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}
.layout-works .box01 {
  width: 43%;
  text-align: left;
}
.layout-works .box02 {
  width: 43%;
  text-align: right;
}
/* ----------------------------------------
 news
------------------------------------------- */
#news .cmn-tb01 {
  border-top: 1px solid #ccc;
}
#news .cmn-btn01 {
  text-align: center;
}
.layout-news {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.layout-news .box01 {
  width: 20%;
}
.layout-news .box02 {
  width: 75%;
}
.layout-news ul li {
  border-bottom: 1px dotted #353535;
}
.layout-news ul li:last-child {
  border-bottom: none;
}
.layout-news dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.layout-news dl dt, .layout-news dl dd {
  padding: 20px 0;
  display: block;
  text-align: left;
}
.layout-news dl dt {
  width: 18%;
  padding-left: 1em;
}
/* ----------------------------------------
 area
------------------------------------------- */
#area {
  background-color: #f6f3ea;
}
.layout-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.layout-area .box01 {
  width: 56%;
}
.layout-area .box02 {
  width: 36%;
}
/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {}
/* =======================
  TABLET
======================== */
@media screen and (max-width:1199px) {}
/* =======================
  SP
======================== */
@media screen and (max-width: 799px) {
  /* ----------------------------------------
 mv
------------------------------------------- */
  #slider li {
    position: relative;
    width: 100%;
    height: 400px;
  }
  .catch {
    bottom: 10%;
    left: 5%;
  }
  .catch h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  .catch h3 {
    font-size: 1.6rem;
  }
  /* ----------------------------------------
 lead
------------------------------------------- */
  .layout-lead {
    display: block;
  }
  .layout-lead .box01 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .layout-lead .box02 {
    width: 100%;
  }
  .layout-reverse .box01 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .layout-lead p {
    line-height: 1.7;
  }
  /* ----------------------------------------
 business
------------------------------------------- */
  .layout-business {
    display: block;
  }
  .layout-business .box01 {
    width: 100%;
    margin-bottom: 30px;
  }
  .layout-business .box02 {
    width: 100%;
  }
  .layout-business h3 {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
  .layout-business p {
    margin-bottom: 15px;
  }
  /* ----------------------------------------
 works
------------------------------------------- */
  .li-works {
    display: block;
    margin-bottom: -30px;
  }
  .li-works li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .li-works li:nth-child(3n) {
    margin-right: 0;
  }
  .li-works li a p {
    font-weight: 700;
  }
  .layout-works {
    display: block;
    margin: 0 auto;
  }
  .layout-works .box01 {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .layout-works .box02 {
    width: 100%;
    text-align: center;
  }
  /* ----------------------------------------
 news
------------------------------------------- */
  .layout-news {
    display: block;
  }
  .layout-news .box01 {
    width: 30%;
    margin: 0 auto 20px auto;
  }
  .layout-news .box02 {
    width: 100%;
  }
  .layout-news ul li {
    border-bottom: 1px dotted #353535;
    padding: 10px 0;
  }
  .layout-news ul li:last-child {
    border-bottom: none;
  }
  .layout-news dl {
    width: 100%;
    display: block;
    flex-wrap: wrap;
  }
  .layout-news dl dt, .layout-news dl dd {
    padding: 0 0;
    display: block;
    text-align: left;
  }
  .layout-news dl dt {
    width: 100%;
    padding-left: 0;
  }
  /* ----------------------------------------
 area
------------------------------------------- */
  .layout-area {
    display: block;
  }
  .layout-area .box01 {
    width: 100%;
    margin-bottom: 30px;
  }
  .layout-area .box02 {
    width: 80%;
    margin: 0 auto;
  }
}