@charset "utf-8";
/* ===================================================================
 top.css
  - breakpoint: max-width: 767px / min-width: 768px
======================================================================*/
.f_page:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
}
.f_main {
  padding: 0;
  background: none;
}
.f_footer:before {
  height: calc(100lvh - 70px);
}
@media screen and (max-width: 767px) {
  .f_page:before {
    height: 50px;
  }
}

/*----------------------------------------------------------
 mainVisual
------------------------------------------------------------*/
.mainVisual {
  padding-top: 70px;
  background: #fff;
}
.mainVisual-list .slick-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.mainVisual-list li a,
.mainVisual-list li span {
  display: block;
  width: 100%;
  height: 100%;
}
.mainVisual-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainVisual-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .mainVisual-list li .-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual {
    padding-top: 50px;
  }
  .mainVisual-list li .-pc {
    display: none;
  }
}

/*----------------------------------------------------------
 section
------------------------------------------------------------*/
.section {
  padding-bottom: 100px;
}
.section.-series {
  background: #fff;
}
.section-header {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding-left: 3vw;
}
.section-header-title {
  font-size: 5.2rem;
  color: #015d68;
  line-height: 1;
}
.section-header-subTitle {
  color: #222;
}
.section-header-text {
  margin-top: 30px;
  line-height: 1.6;
}
.section-btn {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  padding-right: 3vw;
  align-self: end;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .section-inner {
    display: grid;
    grid-template-columns: 1fr 250px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding-bottom: 50px;
  }
  .section-header {
    padding-left: 0;
  }
  .section-header-title {
    font-size: 3.2rem;
  }
  .section-header-subTitle {
    font-size: 1.4rem;
  }
  .section-header-text {
    margin-top: 20px;
    font-size: 1.4rem;
  }
  .section-btn {
    margin-top: 30px;
    padding-right: 0;
  }
}

/*----------------------------------------------------------
 itemList
------------------------------------------------------------*/
.itemList {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  margin-top: 50px;
}
.itemList > li {
  width: calc((100% - 80px) / 5);
}
.itemList > li a {
  display: block;
  color: #222;
  text-decoration: none;
}
.itemList-img {
  margin-bottom: 10px;
  overflow: hidden;
}
.itemList-img img {
  transition: .3s;
}
.itemList-name {
  margin-bottom: 5px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
}
.itemList-price {
  font-size: 1.6rem;
  line-height: 1;
}
.itemList > li a:hover {
  opacity: 1;
}
.itemList > li a:hover img {
  transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  .itemList:before,
  .itemList:after {
    content: "";
    display: block;
    order: 1;
    width: calc((100% - 80px) / 5);
  }
  .itemList > li {
    margin-left: 20px;
  }
  .itemList > li:nth-child(5n+1) {
    margin-left: 0;
  }
  .itemList > li:nth-child(n+6) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .itemList {
    justify-content: space-between;
    margin-top: 30px;
  }
  .itemList > li {
    width: calc((100% - 15px) / 2);
  }
  .itemList > li:nth-child(odd) {
    margin-left: 0;
  }
  .itemList > li:nth-child(n+3) {
    margin-top: 30px;
  }
  .itemList > li:nth-child(5) {
    display: none;
  }
  .itemList-name {
    font-size: 1.4rem;
  }
  .itemList-price {
    font-size: 1.2rem;
  }
}

/*----------------------------------------------------------
 imgList
------------------------------------------------------------*/
.imgList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0;
}
.imgList > li {
  flex: 1;
  height: calc(100vw / 3);
  overflow: hidden;
}
.imgList > li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*----------------------------------------------------------
 about
------------------------------------------------------------*/
.section.-about {
  padding: 150px 0;
}
.about-context {
  width: 60%;
  max-width: 1000px;
  margin-left: auto;
  padding: 4vw 3vw;
  color: #fff;
  background: rgba(0,76,87,.8);
}
.about-title {
  margin-bottom: 50px;
  font-size: 6.2rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.about-text > p {
  margin: 50px 0;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
}
.about-btn {
  margin-top: 50px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .section.-about {
    padding: 38vh 0 50px;
  }
  .about-title {
    margin-bottom: 35vh;
    font-size: 3.8rem;
    text-align: center;
    font-weight: 800;
  }
  .about-context {
    width: 100%;
    padding: 0;
    background: none;
  }
  .about-text {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0,76,87,.8);
  }
  .about-text > p {
    margin: 20px 0;
    font-size: 1.4rem;
  }
  .about-btn {
    margin-top: 0;
  }
}

/*----------------------------------------------------------
 news
------------------------------------------------------------*/
.news {
  padding-bottom: 0;
  background: #bfd3d5;
}
.news-inner {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 80px;
}
.news-head {

  min-width: 260px;
  max-width: 260px;
  padding: 30px 0 0 3vw;
}
.news-head-title {
  font-size: 5.2rem;
  color: #444;
  line-height: 1;
}
.news-contents {
  flex-grow: 1;
  padding-right: 3vw;
}

@media screen and (max-width: 767px) {
  .news-inner {
    display: block;
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .news-head {
    padding: 0;
  }
  .news-head-title {
    font-size: 3.2rem;
  }
  .news-contents {
    margin-top: 30px;
    padding-right: 0;
  }
}

/* news-list
-------------------------------------------------*/
.news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-list > li {
  width: calc(50% - 15px);
  background: #fff;
}
.news-list > li a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  text-decoration: none;
}
.news-list-img {
  width: 180px;
  height: 100%;
}
.news-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-list-context {
  flex-grow: 1;
  width: calc(100% - 180px);
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .news-list > li:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .news-list {
    display: block;
  }
  .news-list > li {
    width: 100%;
  }
  .news-list > li + li {
    margin-top: 15px;
  }
  .news-list > li a {
    align-items: flex-start;
    padding: 10px;
  }
  .news-list-img {
    width: 120px;
    margin-right: 7px;
  }
  .news-list-context {
    padding: 0 5px 3px;
  }
  .news-list-context time {
    font-size: 1.2rem;
  }
  .news-list-context p {
    font-size: 1.4rem;
  }
}