@charset "utf-8";

/* ===================================================================
//CSS information

// file name  :  top.css
// style info :  スタイル指定
=================================================================== */
.mt130 {
  margin-top: 130px;
}

/* -----------------------------------------------------
	kv
----------------------------------------------------- */
p.catch {
  position: absolute;
  z-index: 1;
  font-size: 48px;
  line-height: 2;
  top: 75px;
  left: 0;
  /*color: #a49455;*/
  margin-left: calc(50% - 680px - 69px);
  text-shadow:
    1px 1px 10px rgba(255, 255, 255, 1),
    -1px 1px 10px rgba(255, 255, 255, 1),
    1px -1px 10px rgba(255, 255, 255, 1),
    -1px -1px 10px rgba(255, 255, 255, 1),
    1px 1px 2px rgba(255, 255, 255, 1),
    -1px 1px 2px rgba(255, 255, 255, 1),
    1px -1px 2px rgba(255, 255, 255, 1),
    -1px -1px 2px rgba(255, 255, 255, 1);
}

p.catch span {
  display: inline-block;
  font-size: 4vw;
  line-height: 1.2;
  padding-bottom: 20px;
  font-weight: 400 !important;
}

@media only screen and (max-width: 1550px) {
  p.catch {
    margin-left: 15px;
  }
}

@media screen and (max-width: 1200px) {
  p.catch {
    top: 6%;
    font-size: 3vw;
  }

  p.catch span {
    font-size: 5vw;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  p.catch {
    top: 14%;
    font-size: 5.5vw;
    line-height: 1.5;
  }

  p.catch span {
    font-size: 5.5vw;
    padding-bottom: 5px;
  }
}


/* -----------------------------------------------------
	news
----------------------------------------------------- */
.news h2 {
  font-size: 16px;
  color: #a49455;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 8px;
  border-bottom: #999 1px solid;
}

.news dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding-top: 20px;
}

.news dl dt.newsDay {
  font-size: 18px;
  width: 115px;
}

.news dl dd.newsTitle {
  font-size: 18px;
  width: calc(100% - 115px);
}

.newsTitle.arrow::before {
  content: "▲";
  color: #333;
  font-size: 8px;
  transform: rotate(90deg) translateX(1px);
  display: inline-block;
  padding-right: 5px;
}

.news dl dd.newsTxt {
  padding-top: 10px;
}

.news dl dd.newsTxt p {
  line-height: 2;
}

@media screen and (max-width: 991px) {
  .news dl dd.newsTxt {
    padding-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .news dl {
    flex-flow: column wrap;
    align-items: flex-start;
  }

  .news dl dd.newsTitle {
    width: 100%;
  }
}

.newsLink {
  display: inline-block;
  color: #35a067 !important;
  font-size: 14px;
  padding: 0 25px 5px;
  transition: all .3s;
  position: relative;
}

.newsLink+div {
  display: none;
}

.newsLink::before {
  content: "▼";
  color: #35a067;
  font-size: 8px;
  display: inline-block;
  padding-right: 10px;
  transform: translateY(-2px);
  transition: all .3s;
}

.newsLink::after {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background: #999;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s;
}

.newsLink:hover {
  color: #999 !important;
}

.newsLink:hover::before {
  color: #999 !important;
}

.newsLink:hover::after {
  width: 0%;
}

@media screen and (max-width: 420px) {
  .newsLink {
    padding: 0 10px 5px;
  }
}

/* -----------------------------------------------------
	imgBox
----------------------------------------------------- */
.imgBoxWrap {
  background: #f6f6f6;
}

.imgBox {
  display: flex;
  align-items: center;
}

.imgBox.reverse {
  flex-flow: row-reverse;
}

.imgItem {
  width: 50%;
}

.txtItem {
  width: 600px;
  padding: 0 15px;
}

@media screen and (max-width: 1239px) {
  .txtItem {
    width: 540px;
  }
}

@media screen and (max-width: 1099px) {
  .txtItem {
    width: 473px;
  }
}

.txtItem .leftTxt {
  width: 90%;
}

.txtItem .rightTxt {
  width: 80%;
  margin: 0 auto;
}

.txtItem h2.bellefair {
  font-size: 48px;
  font-weight: normal;
  color: #a49455;
}

.txtItem h2 {
  font-size: 36px;
  font-weight: normal;
  color: #a49455;
}

.txtItem p {
  line-height: 2;
}

@media screen and (max-width: 1200px) {
  .txtItem h2.bellefair {
    font-size: 3.5vw;
  }

  .txtItem h2 {
    font-size: 3vw;
  }

  .txtItem .leftTxt,
  .txtItem .rightTxt {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .imgBoxWrap {
    padding: 60px 0;
  }

  .imgBoxWrap .imgBox:nth-child(2n) {
    padding-top: 50px;
  }

  .imgBoxWrap .imgBox:nth-child(3n) {
    padding-top: 50px;
  }

  .imgBox,
  .imgBox.reverse {
    width: 100%;
    max-width: 710px;
    margin: 0 auto;
    flex-flow: column-reverse wrap;
  }

  .imgItem {
    width: 100%;
    padding: 30px 15px 0;
  }

  .txtItem {
    width: 100%;
  }

  .txtItem h2.bellefair {
    font-size: 30px;
  }

  .txtItem h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 420px) {}