.mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100dvh;
}
.mv::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1)100%);
  mix-blend-mode: multiply;
  opacity: 0.8;
	z-index: 2;
}
.toppage_slider {
  position: relative;
  z-index: 1;
  height: 100dvh;
}
/*　背景画像設定　*/
.slider-item01 {
  background: url("/img/top/mv01sp.webp");
}
.slider-item02 {
  background: url("/img/top/mv02sp.webp");
}
.slider-item03 {
  background: url("/img/top/mv03sp.webp");
}
.slider-item04 {
  background: url("/img/top/mv04sp.webp");
}
.slider-item05 {
  background: url("/img/top/mv05sp.webp");
}
.slider-item06 {
  background: url("/img/top/mv06sp.webp");
}
.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100dvh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
.toppage_slider .slick-slide {
  min-height: 100dvh !important;
}
.mv_txt {
  z-index: 10;
  position: absolute;
  bottom: 15px;
  left: 4%;
  width: 92%;
  color: #fff;
  text-align: left;
  font-family: mizolet, sans-serif;
}
.mv_txt p {
  font-size: 1.6rem;
}
.mv_txt div {
  margin: 0em auto 0;
  font-family: ivymode, sans-serif;
  color: #C63C00;
  line-height: 1.1;
  font-size: 13vw;
}
.scrolldown {
  position: absolute;
  bottom: 0px;
  right: 10%;
  z-index: 3;
}
.scrolldown span {
  position: absolute;
  left: 5px;
  bottom: 115px;
  font-family: ivymode, sans-serif;
  font-weight: 400;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #fff;
}
.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation:
    circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 125px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 160px;
  background: #fff;
}
/* concept */
.concept_bg {
  position: relative;
  background: #D1C8B9;
  padding: 3em 0 5em;
}
.concept_bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #F2EEE7;
  border-radius: 0 0 0 30px;
}
.concept {
  width: 80%;
  margin: 0 auto 2em;
}
.concept_ttl {
  margin: 0 auto 2em;
}
.concept_ttl h2 {
  font-weight: 400;
  font-family: mizolet, sans-serif;
  font-size: 1.5rem;
}
.concept_ttl h2 span {
  display: block;
  font-family: ivymode, sans-serif;
  color: #C63C00;
  font-size: 3.5rem;
  line-height: 1.3;
}
.concept_ttl p {
  display: none;
}
.concept_ttl a {
  display: none;
}
.concept_img {
  position: relative;
  padding: 10px;
  border: 1px solid #C63C00;
  border-radius: 300px;
}
.concept_en {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 50%;
}
.concept_txt {
  margin: 2em auto 0;
}
.concept_txt ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 1em;
  justify-content: center;
}
.concept_txt ul li {
  font-family: mizolet, sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: left;
}
.concept_txt ul li:nth-child(1) {
  color: #008EB9;
}
.concept_txt ul li:nth-child(2) {
  color: #C63C00;
}
.concept_txt ul li:nth-child(3) {
  color: #298600;
}
.concept_txt div {
  font-family: mizolet, sans-serif;
  font-size: 1.8rem;
}
.concept_txt p {
  text-align: left;
  margin: 0.5em auto 1em;
}

.scroll-slider {
  overflow: hidden;
  white-space: nowrap;
}

.scroll-track {
  display: inline-block;
  animation: scrollLeft 30s linear infinite;
}

.scroll-track img {
  display: inline-block;
  width: 300px;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* tour */
.tour_bg {
  position: relative;
  background: #F2EEE7;
  padding: 3em 0;
}
.tour_bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #D1C8B9;
  border-radius: 0 30px 0 0;
}
.tour_bg .heading {
  text-align: left;
  position: absolute;
  top: -29px;
  left: 5%;
}
.tour {
  position: relative;
  width: 80%;
  margin: auto;
}
.tour::before {
  position: absolute;
  top: 0;
  right: 100%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: left;
  content: 'Gastronomy Tour';
  font-family: ivymode, sans-serif;
  color: #C63C00;
  font-size: 1.8rem;
}
.tour img {
  border-radius: 10px;
}
.tour > div {
  border-radius: 10px;
  text-align: left;
  background: #C63C00;
  color: #fff;
  padding: 20px;
  font-family: mizolet, sans-serif;
}
.tour > div div {
  font-size: 1.2rem;
}
.tour > div h3 {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.4;
  margin: 0.1em auto 0.3em;
}
.tour > div p {
  font-size: 1.5rem;
  margin: 0 auto 1em;
}
.tour > div .morebtn {
  background: #fff;
  color: #C63C00 !important;
}
.tour > div .morebtn::after {
  border-top: 2px solid #C63C00;
  border-right: 2px solid #C63C00;
}
/* contents */
.contents_bg {
  position: relative;
  background: #D1C8B9;
  padding: 3em 0;
}
.contents_bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #F2EEE7;
  border-radius: 0 30px 0 0;
}
.contents_wrap {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: left;
}
.instagram {
  position: relative;
  margin: 1.5em auto 4em;
}
.eapps-instagram-feed-posts-item {
  border-radius: 10px;
}
.instagram .morebtn {
  position: absolute;
  top: -55px;
  right: 0;
}
.news .morebtn {
  position: absolute;
  top: -35px;
  right: 0;
}
.f_link {
  margin: 3em auto 0;
}
.f_link li {
  position: relative;
  margin: 1em auto 0;
  background: #fff;
  padding: 20px 0px;
  border-radius: 100px;
}
.f_link li::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("/img/common/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease .2s;
}
.f_link li:hover::before {
  right: 10px;
}
.f_link li a {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: flex-start;
  align-items: center;
  font-family: mizolet, sans-serif;
}
.f_link_img {
  position: relative;
  width: 100px;
  padding: 0 30px;
}
.f_link_img div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 125px;
}
.f_link li a > p {
  font-size: 1.4rem;
}




/* ------------------------------------ */
/* ▼PC用デザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .mv {
    min-height: 100vh;
  }
  .toppage_slider {
    height: 100vh;
  }
  /*　背景画像設定　*/
  .slider-item01 {
    background: url("/img/top/mv01.webp");
  }
  .slider-item02 {
    background: url("/img/top/mv02.webp");
  }
  .slider-item03 {
    background: url("/img/top/mv03.webp");
  }
  .slider-item04 {
    background: url("/img/top/mv04.webp");
  }
  .slider-item05 {
    background: url("/img/top/mv05.webp");
  }
  .slider-item06 {
    background: url("/img/top/mv06.webp");
  }
  .slider-item {
    height: 100vh;
    background-repeat: no-repeat; /*背景画像をリピートしない*/
    background-position: center; /*背景画像の位置を中央に*/
    background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
  }
  .toppage_slider .slick-slide {
    min-height: 100vh !important;
  }
  .mv_txt {
    bottom: 1px;
    left: 4%;
    width: 92%;
  }
  .mv_txt p {
    font-size: 2.5rem;
  }
  .mv_txt div {
    margin: -0.1em auto 0;
    font-size: 10vw;
  }
  .scrolldown {
    right: 5%;
  }
  /* concept */
  .concept_bg {
    padding: 5em 0 7em;
  }
  .concept_bg::before {
    border-radius: 0 0 0 50px;
  }
  .concept {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 3em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    align-items: center;
  }
  .concept_ttl {
    margin: 0;
    width: calc(100% / 3 - 50px);
    padding: 0 50px 0 0;
    text-align: left;
  }
  .concept_ttl h2 {
    font-size: 2.5rem;
  }
  .concept_ttl h2 span {
    font-size: 7rem;
  }
  .concept_ttl p {
    display: block;
    line-height: 2;
    margin: 2em auto 2em;
  }
  .concept_ttl a {
    display: block;
    width: 200px;
    padding: 15px 0px 15px 30px;
  }
  .concept_img {
    width: calc(100% / 3);
    box-sizing: border-box;
  }
  .concept_en {
    top: -25px;
    right: -25px;
  }
  .concept_txt {
    width: calc(100% / 3);
    margin: 0;
  }
  .concept_txt ul {
    margin: 0em auto 1.5em;
    justify-content: flex-end;
  }
  .concept_txt ul li {
    font-size: 6rem;
    letter-spacing: 2px;
  }
  .concept_txt div {
    text-align: right;
    font-size: 3rem;
    padding: 0 20px 0 0;
  }
  .concept_txt p {
    display: none;
  }
  .concept_txt a {
    display: none;
  }
  .concept_slider02 .slick-slide.mgnl {
    margin: 0 0 0 20px;
  }
	
	.scroll-track img {
  width: 500px;
}

	
  /* tour */
  .tour_bg {
    padding: 5em 0;
  }
  .tour_bg::before {
    border-radius: 0 50px 0 0;
  }
  .tour_bg .heading {
    position: absolute;
    top: -58px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
  }
  /* 画面幅が1100pxより狭いときは左寄せ（5%）に変更 */
  @media (max-width: 1100px) {
    .tour_bg .heading {
      left: 5%;
      transform: none; /* 中央寄せを解除 */
      width: 90%; /* 可変にする場合は任意 */
    }
  }
  .tour {
    width: calc(90% - 40px);
    max-width: calc(1200px - 40px);
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 40px;
  }
  .tour::before {
    right: calc(100% - 40px);
    font-size: 3rem;
  }
  .tour::after {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(42% - 17px);
    height: 100%;
    content: '';
    background: #C63C00;
    border-radius: 20px;
  }
  .tour img {
    border-radius: 20px;
    width: 58%;
    height: 450px;
    object-fit: cover;
  }
  .tour > div {
    position: relative;
    z-index: 1;
    width: 42%;
    box-sizing: border-box;
    background: none;
    padding: 0 3%;
  }
  .tour > div div {
    font-size: 1.8rem;
  }
  .tour > div h3 {
    font-size: 4rem;
    margin: 0.1em auto 0.3em;
  }
  .tour > div p {
    font-size: 2.5rem;
    margin: 0 auto 0.5em;
  }
  /* contents */
  .contents_bg {
    padding: 5em 0;
  }
  .contents_bg::before {
    border-radius: 0 50px 0 0;
  }
  .instagram {
    position: relative;
    margin: 1em auto 5em;
  }
  .instagram .morebtn {
    top: -75px;
  }
  .news .morebtn {
    top: -55px;
  }
  .f_link {
    margin: 6em auto 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
  }
  .f_link li {
    width: 48%;
    padding: 40px 0px;
    border-radius: 100px;
  }
  .f_link li::before {
    right: 30px;
    width: 50px;
    height: 50px;
  }
  .f_link li:hover::before {
    right: 25px;
  }
  .f_link_img {
    width: 120px;
    padding: 0 50px;
  }
  .f_link_img div {
    width: 155px;
  }
  .f_link li a > p {
    font-size: 2rem;
  }
}