@charset "utf-8";
/* ===================================================================
 top.css
  - breakpoint: max-width: 767px / min-width: 768px
======================================================================*/
.f_main {
  padding-top: 50px;
}

@media screen and (min-width: 768px) {
  .f_main {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .f_main {
    padding-bottom: 80px;
  }
}

/*----------------------------------------------------------
 mainVisual
------------------------------------------------------------*/
.mainVisual {
  margin-top: 70px;
  border-bottom: 1px solid #111;
}
.mainVisual-list .slick-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 70px);
}
.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;
}

/* slick-dots */
.slick-dots {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  padding: 0 30px;
}
.slick-dots > li {
  height: 3px;
}
.slick-dots > li + li {
  margin-left: 10px;
}
.slick-dots button {
  position: relative;
  width: 3px;
  height: 100%;
  padding: 0;
  background: #ddd;
  /* border-radius: 3px; */
  text-indent: -9999px;
  overflow: hidden;
  transition: .3s;
}
.slick-dots button:hover {
  background: #111;
}
.slick-dots .slick-active button {
  width: 60px;
}
.slick-dots .slick-active button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  animation: dotsAnimate 6s ease-in-out infinite;
}

@keyframes dotsAnimate {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0%); }
}

@media screen and (min-width: 768px) {
  .mainVisual-list li .-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual {
    margin-top: 50px;
  }
  .mainVisual-list .slick-list li {
    height: calc(100vh - 50px);
  }
  .mainVisual-list li .-pc {
    display: none;
  }
  .slick-dots {
    padding: 0 25px;
    bottom: 45px;
  }
}

/*----------------------------------------------------------
 section
------------------------------------------------------------*/
.section {
  margin: 50px 0;
}
.section + .section {
  margin-top: 100px;
}
.section-title {
  margin-bottom: 50px;
  font-size: 2.6rem;
}
.section-title.-white {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .section {
    margin: 0;
  }
  .section + .section {
    margin-top: 50px;
  }
  .section-title {
    margin-bottom: 10px;
    font-size: 2.8rem;
  }
}

/*----------------------------------------------------------
 about
------------------------------------------------------------*/
.about-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-column-context {
  width: 56%;
}
.about-column-img {
  width: 40%;
}
.about-name {
  margin-bottom: 10px;
  font-size: 3.2rem;
}
.about-title {
  max-width: 530px;
  margin-bottom: 40px;
  font-size: 3rem;
}
.about-text {
  margin-bottom: 40px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .about-column {
    display: block;
  }
  .about-column-context {
    width: 100%;
    margin-bottom: 80px;
  }
  .about-column-img {
    width: 100%;
  }
  .about-name {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .about-title {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .about-text {
    margin-bottom: 30px;
    text-align: justify;
  }
  .about-btn {
    text-align: right;
  }
}

/*----------------------------------------------------------
 series
------------------------------------------------------------*/
.series {
  padding-top: 30px;
}
.series-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.series-head-title {
  width: 4.6em;
  min-width: 260px;
  margin-right: 30px;
  font-size: 6.8rem;
  font-weight: 500;
}
.series-head-text {
  flex-grow: 1;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .series-head {
    display: block;
  }
  .series-head-title {
    width: 100%;
    min-width: auto;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 2.8rem;
    font-weight: bold;
  }
  .series-head-text {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: justify;
  }
}

/* series-list
-------------------------------------------------*/
.series-list {
  margin-top: 30px;
  background: #f6f7f9;
}
.series-list > li {
  padding-top: 80px;
  padding-bottom: 80px;
}
.series-list > li + li {
  border-top: 1px solid #ccc;
}
.series-list-column {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.series-list > li:nth-child(odd) .series-list-column {
  flex-direction: row-reverse;
}
.series-list-img {
  flex-shrink: 0;
  width: 35%;
}
.series-list-context {
  flex-grow: 1;
}
.series-list-title {
  margin-bottom: 15px;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 600;
}
.series-list-text {
  margin-bottom: 30px;
  line-height: 2;
}
.series-list-btn {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .series-list > li:nth-child(odd) .series-list-img {
    margin-right: 50px;
  }
  .series-list > li:nth-child(even) .series-list-img {
    margin-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .series-list {
    margin-top: 15px;
  }
  .series-list > li {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
  }
  .series-list-column {
    display: block;
    margin-bottom: 30px;
  }
  .series-list-img {
    position: absolute;
    top: -50px;
    right: -33%;
    width: 100%;
    opacity: .1;
  }
  .series-list-context {
    position: relative;
    z-index: 2;
  }
  .series-list-title {
    font-size: 2.2rem;
  }
  .series-list-text {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: justify;
  }
}

/* series-itemList
-------------------------------------------------*/
.series-itemList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.series-itemList:before,
.series-itemList:after {
  content: "";
  display: block;
  order: 1;
  width: calc(calc(100% - 9%) / 4);
}
.series-itemList > li {
  width: calc(calc(100% - 9%) / 4);
  text-align: center;
}
.series-itemList > li > a {
  display: block;
}
.series-itemList > li > a:hover {
  opacity: 1;
}
.series-itemList-img {
  overflow: hidden;
}
.series-itemList > li > a:hover .series-itemList-img img {
  transform: scale(1.1);
}
.series-itemList-name {
  font-size: 1.4rem;
}
.series-itemList-price {
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .series-itemList > li {
    width: calc(calc(100% - 20px) / 2);
  }
  .series-itemList > li:nth-child(n+3) {
    margin-top: 20px;
  }
  .series-itemList-name {
    margin-top: 5px;
    font-size: 1.2rem;
  }
  .series-itemList-price {
    margin-top: 5px;
    font-size: 1rem;
  }
}

/*----------------------------------------------------------
 news
------------------------------------------------------------*/
.news-column {
  display: flex;
  justify-content: space-between;
}
.news-column-title {
  width: 20%;
  padding-top: 8px;
}
.news-column-context {
  width: 76%;
}

@media screen and (max-width: 767px) {
  .news-column {
    display: block;
  }
  .news-column-title,
  .news-column-context {
    width: 100%;
  }
}

/* news-list
-------------------------------------------------*/
.news-list {
  border-top: 1px solid #111;
}
.news-list > li {
  border-bottom: 1px solid #111;
}
.news-list > li,
.news-list > li a {
  display: flex;
  justify-content: space-between;
  padding: 20px 5px;
}
.news-list > li a {
  position: relative;
  width: 100%;
  margin: -20px 0 -20px -5px;
  padding-right: 35px;
}
.news-list > li a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 27px;
  right: 5px;
  width: 20px;
  height: 6px;
  border-bottom: 1px solid #111;
  border-right: 2px solid #111;
  transform: skew(45deg);
  transition: .3s;
}
.news-list > li a:hover:after {
  right: 0;
}
.news-list > li time {
  min-width: 10em;
  font-size: 1.4rem;
}
.news-list > li p {
  flex-grow: 1;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .news-list > li,
  .news-list > li a {
    display: block;
    padding: 15px 0;
  }
  .news-list > li a {
    margin: -15px 0;
    padding-right: 30px;
  }
  .news-list > li a:after {
    bottom: calc(50% - 2px);
    right: 7px;
    width: 15px;
    height: 4px;
    border-width: 0 2px 1px 0;
  }
  .news-list > li time {
    display: block;
    min-width: auto;
    margin-bottom: 10px;
  }
  .news-list > li p {
    
  }
}

/*----------------------------------------------------------
 SHOP
------------------------------------------------------------*/
.shop-column {
  display: flex;
  justify-content: space-between;
  padding: 4vw;
  background: #666766;
  border-radius: 5px;
}

.shop-title {
  font-size: 3.2rem;
  color: #fff;
  font-weight: normal;
}
