@charset "utf-8";
/* ===================================================================
//CSS information

// file name  :  top.css
// style info :  スタイル指定
=================================================================== */
.mt130 {
  margin-top: 130px;
}
/* -----------------------------------------------------
	kv
----------------------------------------------------- */
header {
  background-color: transparent;
  transition: all .3s;
}
header.is-class {
  background-color: #fff;
}
.kv {
  height: min(100vh,1080px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .kv {
    align-items: flex-start;
    padding-top: 20vw;
    max-height: 80vw;
  }
}
@media screen and (max-width: 560px) {
  .kv {
    align-items: flex-start;
    flex-direction: column;
    justify-content: start;
    width: 90%;
    margin: 0 auto 50vw;
    max-height: initial;
  }
}
.kv__img {
  width: 50%;
  height: 45vw;
  position: relative;
}
@media screen and (max-width: 560px) {
  .kv__img {
    width: 100%;
    height: auto;
    margin-top: 25vw;
  }
}
@media screen and (min-width: 1500px) {
  .kv__img {
    height: 40vw;
  }
}
.kv__txt {
  line-height: 1.5;
  margin-right: min(3vw,100px);
  margin-bottom: min(10vw,150px);
}
@media screen and (max-width: 960px) {
  .kv__txt {
    margin-right: 5vw;
    margin-bottom: 0;
    padding-top: 10vw;
  }
}
@media screen and (max-width: 560px) {
  .kv__txt {
    padding-top: 10vw;
    margin: 0;
  }
  
}
.kv__ttl {
  color: #333;
  font-size: min(48px,3.5vw);
  font-weight: 500;
}
@media screen and (max-width: 560px) {
  .kv__ttl {
    font-size: 7.5vw;
  }
}
.kv__ttl > span {
  font-size: .8em;
  opacity: .5;
  line-height: 2.5;
}
.kv__ttl span span {
  letter-spacing: -.4em;
}
.contents {
  margin-top: 0;
}
.catch-box {
  position: relative;
}
p.catch-box__txt {
  color: #fff;
  /* font-size: 30px; */
  font-size: max(2.5vw, 24px);
  line-height: 2;
  letter-spacing: .05em;
  text-align: right;
}
p.catch-box__txt small {
  font-size: .7em;
}
.catch-box__image {
  width: min(15vw,200px);
  margin-left: auto;
  margin-right: 1em;
  margin-top: 1em;
  display: block;
}
@media only screen and (max-width: 1200px) {
  .catch-box {
    right: 4vw;
  }
}
/* @media only screen and (max-width: 1550px) {
  p.catch-box__txt {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1200px) {
  p.catch-box__txt {
    top: 6%;
    font-size: 3vw;
  }
    p.catch-box__txt span {
        font-size: 5vw;
        padding-bottom: 10px;
    }
} */
.slick-dotted.slick-slider {
    padding-bottom: 0;
    margin-bottom: 0 !important;
  }
@media screen and (max-width: 991px) {
  
}
@media only screen and (max-width: 767px) {
  .kvWrap {
    padding-bottom: 0;
  }
  .catch-box {
    position: relative;
    right: 0;
  }
  p.catch-box__txt {
    font-size: 5.5vw;
  }
  .catch-box__image {
    width: min(25vw,200px);
  }
  .kv .picsCaps {
    right: 0;
  }
}
@media only screen and (max-width: 560px) {
  .contents {
    margin-top: 15vw;
  }
  .catch-box {
    padding: 15vw 2vw 16vw;
  }
  p.catch-box__txt {
    line-height: 1.75;
    font-size: 5.75vw;
  }
}


/* -----------------------------------------------------
	news
----------------------------------------------------- */
.news__content {
  width: min(70vw,850px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news__list {
  width: 100%;
}
.news dl {
  display: flex;
  justify-content: space-between;
  padding-top: 2em;
  padding-bottom: .2em;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.news dl dt.newsDay {
  font-size: 14px;
  width: 20%;
}
.news dl dd.newsTitle {
  width: 70%;
}
@media screen and (max-width: 560px) {
  .news__content {
    width: 90%;
  .news dl dd.newsTitle,
  .news dl dt.newsDay {
    font-size: 3.75vw;
  }
}
}
.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: #eeeeee
;
}
.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: 80%;
}
.txtItem .rightTxt {
  width: 80%;
  margin: 0 auto;
}
.txtItem h2.bellefair {
  font-size: 48px;
  font-weight: normal;
  color: #619d7d;
}
.txtItem h2 {
  font-size: 36px;
  font-weight: normal;
  color: #619d7d;
}
.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) {
}

.top {
  height: 100vh;
  width: 100%;
  position: relative;
  background-image: url();
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.top__ttl {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  background-color: rgba(255, 255, 255, .5);
  display: inline-block;
  padding: 15px;
}

.menu {
  height: 400px;
  width: 100%;
  position: relative;
  background-image: url();
  background-repeat: no-repeat;
  background-size: contain;
}
.menu__ttl {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255,255,255,.5);
  display: inline-block;
  padding: 15px;
}

.pageCaption {
  margin-top: min(25vw,300px);
}
@media screen and (max-width: 560px) {
  .pageCaption {
    margin-top: 50vw;
  }
}

/* -----------------------------------------------------
	background
----------------------------------------------------- */
.fullscreen-bg {
  position: fixed;            /* ビューポートに固定 */
  top: 65%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;          /* 切り取りつつ全面表示 */
  z-index: -2;                /* 最背面に配置（下に背景色があれば注意） */
  pointer-events: none;       /* クリック等の邪魔をしない */
  opacity: 1;
}