/******************************/
/* CUSTOM SLIDER */
/******************************/

/* 共通スタイル */
.p-main-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.p-main-slider .slider {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}

.p-main-slider .slide {
  flex-shrink: 0;
  position: relative;
}

.p-main-slider .slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-main-slider .slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ページャー（ドット）のスタイル */
.custom-slider-pager {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  padding: 0;
}

.custom-slider-pager .pager-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.custom-slider-pager .pager-dot:hover {
  opacity: 0.8;
  background: #eeeeee;
}

.custom-slider-pager .pager-dot.active {
  opacity: 1;
  position: relative;
}

.custom-slider-pager .pager-dot.active::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

/* モバイル/タブレット用スタイル（<1024px） */
@media screen and (max-width: 1023px) {
  .p-main-slider {
    width: 100%;
    padding-bottom: 66.67%; /* 3:2のアスペクト比 */
    height: 0;
  }

  .p-main-slider .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
  }

  .p-main-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 400ms ease;
    pointer-events: none;
  }

  .p-main-slider .slide[style*='opacity: 1'] {
    pointer-events: auto;
    z-index: 1;
  }

  /* ページャーを非表示 */
  .custom-slider-pager {
    display: none;
  }
}

/* デスクトップ用スタイル（>=1024px） */
@media screen and (min-width: 1024px) {
  .p-main-slider {
    max-width: none;
    overflow: visible;
    height: 30vw;
  }

  .p-main-slider .slider {
    display: flex;
    position: relative;
    left: 27.5vw; /* センター配置のためのオフセット */
    width: auto;
    height: 30vw;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
  }

  .p-main-slider .slider:active {
    cursor: grabbing;
  }

  .p-main-slider .slide {
    width: 45vw;
    height: 30vw;
    margin-right: 0;
    flex-shrink: 0;
  }

  .p-main-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ページャーの表示 */
  .custom-slider-pager {
    display: flex;
  }
}
/******************************/
/* NEWS */
/******************************/
.p-line-informaiton {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #f3f3f3;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-line-informaiton__wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
}
@media only screen and (max-width: 1023px) {
  .p-line-informaiton__wrap {
    margin-left: 25px;
    margin-right: 25px;
    max-width: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .p-line-informaiton__wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-line-informaiton-list {
  overflow-y: auto;
  max-height: 100px;
}
.p-line-informaiton-list__item {
  display: flex;
  margin-bottom: 15px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton-list__item {
    display: block;
  }
}
.p-line-informaiton-list__item:last-child {
  margin-bottom: 0;
}
.p-line-informaiton-list__date {
  width: 120px;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, '游ゴシック',
    'Yu Gothic', YuGothic, sans-serif;
}
.p-line-informaiton-list__ttl {
  flex: 1;
}
/******************************/
/* CONCEPT */
/******************************/
.p-concept {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 120px;
  margin-bottom: 120px;
  background: #b3a37e;
}
@media screen and (max-width: 1023px) {
  .p-concept {
    margin-top: 60px;
    margin-bottom: 75px;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept {
    display: block;
    margin-bottom: 60px;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-concept__img {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-height: 380px;
  background-image: url(https://img02.shop-pro.jp/PA01008/381/etc_base64/Y29uY2VwdA.jpeg?cmsp_timestamp=20231224133823);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-concept__img {
    display: block;
    width: auto;
    min-height: 200px;
    height: 0;
    padding-bottom: 54.29%;
  }
}
.p-concept__txt {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 90px;
  width: 50%;
  color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  .p-concept__txt {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__txt {
    padding: 40px 20px;
    width: auto;
  }
}
.p-concept__ttl {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-concept__ttl {
    margin-bottom: 15px;
    font-size: 22px;
  }
}
.p-concept__body {
  line-height: 2;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-concept__body {
    font-size: 13px;
  }
}
/******************************/
/* RECOMMEND ITEMS */
/******************************/
.p-recommend {
  overflow: hidden;
  padding-bottom: 45px;
}
@media screen and (max-width: 1023px) {
  .p-recommend {
    padding-bottom: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend-list {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-recommend-item-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -27px;
  margin-right: -27px;
}
@media screen and (max-width: 1023px) {
  .p-recommend-item-list {
    margin-left: -17px;
    margin-right: -17px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend-item-list {
    margin-left: -8px;
    margin-right: -8px;
  }
}
.p-recommend-item-list__item {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 50px;
  padding-left: 27px;
  padding-right: 27px;
  width: 25%;
  word-break: break-all;
}
@media screen and (max-width: 1023px) {
  .p-recommend-item-list__item {
    margin-bottom: 30px;
    padding-left: 17px;
    padding-right: 17px;
    width: 33.3333%;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend-item-list__item {
    margin-bottom: 25px;
    padding-left: 8px;
    padding-right: 8px;
    width: 50%;
  }
}
.p-recommend-item-list__item.is-hidden {
  display: none;
}
/******************************/
/* TOP GALLERY */
/******************************/
.p-gallery {
  padding-top: 60px;
  padding-bottom: 45px;
  background: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .p-gallery {
    padding-top: 50px;
  }
}
.p-gallery__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-gallery__wrap {
    display: block;
  }
}
.p-gallery__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-gallery__img {
    width: auto;
  }
}
.p-gallery__img img {
  width: 100%;
}
.p-gallery__img .slick-dots {
  bottom: -40px;
}
.p-gallery__img .slick-dots li {
  height: auto;
  padding: 5px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-gallery__img .slick-dots li button {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2d2d2d;
}
.p-gallery__img .slick-dots li.slick-active button:before {
  top: 1px;
  left: 1px;
  width: 16px;
  height: 16px;
  border: 1px solid #2d2d2d;
  border-radius: 50%;
}
.p-gallery__img .p-gallery-slider__item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-gallery__img .p-gallery-slider__item {
    min-height: 250px;
    height: 0;
  }
}
.p-gallery__img .p-gallery-slider__item01 {
  background-image: url(https://img02.shop-pro.jp/PA01008/381/etc_base64/cnVkcmFrc2hhX3Jvc2FyeQ.jpeg?cmsp_timestamp=20231224134906);
}
.p-gallery__img .p-gallery-slider__item02 {
  background-image: url(https://img02.shop-pro.jp/PA01008/381/etc_base64/c3RhdHVlcw.jpeg?cmsp_timestamp=20231224134906);
}
.p-gallery__img .p-gallery-slider__item03 {
  background-image: url(https://img02.shop-pro.jp/PA01008/381/etc_base64/cHJheWVyX2l0ZW1z.jpeg?cmsp_timestamp=20231224134906);
}
.p-gallery__txt {
  box-sizing: border-box;
  padding: 30px 0px 30px 90px;
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  .p-gallery__txt {
    padding: 30px 0px 30px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__txt {
    padding: 35px 0px 0px 0px;
    width: auto;
  }
}
.p-gallery__ttl {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-gallery__ttl {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.p-gallery__body {
  line-height: 2;
  font-size: 14px;
}
/******************************/
/* TOP RANKING */
/******************************/
.p-ranking {
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 130px;
}
@media screen and (max-width: 1023px) {
  .p-ranking {
    padding-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking {
    padding-top: 75px;
    padding-bottom: 0;
  }
}
.p-ranking-list {
  box-sizing: border-box;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 1050px) {
  .p-ranking-list {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-ranking-list {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list {
    padding-left: 12%;
    padding-right: 12%;
  }
}
.p-ranking-list .slick-list {
  overflow: visible;
}
.p-ranking-list .slick-prev {
  left: -5px;
  margin-top: -43px;
}
@media screen and (max-width: 1023px) {
  .p-ranking-list .slick-prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-prev {
    margin-top: -30px;
  }
}
.p-ranking-list .slick-next {
  right: -5px;
  margin-top: -43px;
}
@media screen and (max-width: 1023px) {
  .p-ranking-list .slick-next {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-next {
    margin-top: -30px;
  }
}
.p-ranking-list .slick-dotted.slick-slider {
  margin-bottom: 60px;
}
.p-ranking-list .slick-dots {
  bottom: -45px;
}
.p-ranking-list .slick-dots li {
  margin: 0 2px;
}
.p-ranking-list__item {
  position: relative;
  box-sizing: border-box;
  margin-right: 10px;
  margin-left: 10px;
  word-break: break-all;
}
@media screen and (max-width: 1023px) {
  .p-ranking-list__item {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list__item {
    margin-right: 8px;
    margin-left: 8px;
  }
}
.p-ranking-list__item.slick-active .p-ranking-list__num {
  opacity: 1;
  animation: rankingfadein 0.2s 0s;
}
.p-ranking-list__img {
  margin-bottom: 20px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-ranking-list__img {
    margin-bottom: 10px;
    text-align: center;
  }
}
.p-ranking-list__num {
  box-sizing: border-box;
  position: absolute;
  top: 0px;
  right: 0px;
  padding-top: 3px;
  min-width: 30px;
  line-height: 27px;
  font-size: 16px;
  font-weight: bold;
  background: #ffffff;
  color: #2d2d2d;
  text-align: center;
  opacity: 0;
  transition: all ease 0.1s;
}
.p-ranking-list__num.is-1 {
  background: #c5b597;
  color: #ffffff;
}
.p-ranking-list__num.is-2 {
  background: #b1b9bb;
  color: #ffffff;
}
.p-ranking-list__num.is-3 {
  background: #714d3b;
  color: #ffffff;
}
@keyframes rankingfadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-ranking-list__txt {
  text-align: center;
}
.p-ranking-list__ttl {
  font-size: 14px;
}
.p-ranking-list__ttl img {
  vertical-align: middle;
}
.p-ranking-list__price {
  margin-top: 15px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-ranking-list__price {
    margin-top: 5px;
    font-size: 13px;
  }
}
.p-ranking-list__price.is-default {
  margin-top: 0;
}
.p-ranking-list__btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
/******************************/
/* TOP 店舗紹介 */
/******************************/
.p-shop {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  margin-top: 120px;
  margin-bottom: 120px;
  background: #b3a37e;
}
@media screen and (max-width: 1023px) {
  .p-shop {
    margin-top: 60px;
    margin-bottom: 75px;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop {
    display: block;
    margin-bottom: 60px;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-shop__img {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-height: 380px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-shop__img {
    display: block;
    width: auto;
    min-height: 200px;
    height: 0;
    padding-bottom: 54.29%;
  }
}
.p-shop__txt {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 90px;
  width: 50%;
  color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  .p-shop__txt {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop__txt {
    padding: 40px 20px;
    width: auto;
  }
}
.p-shop__ttl {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-shop__ttl {
    margin-bottom: 15px;
    font-size: 22px;
  }
}
.p-shop__ttl-s {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-shop__ttl-s {
    margin-bottom: 15px;
    font-size: 15px;
  }
}
.p-shop__body {
  line-height: 2;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-shop__body {
    font-size: 13px;
  }
}
.p-shop__url {
  margin-top: 15px;
}
.p-shop__url a {
  color: #ffffff;
}

/******************************/
/* HEADER SLIDER */
/******************************/
#header_slider_wrap {
  width: 100%;
  height: 550px;
  position: relative;
  overflow: hidden;
}
#header_slider {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}
#header_slider .item {
  width: 100%;
  height: 550px;
  position: relative;
}

/* スライダーのキャプション */
#header_slider .caption {
  width: 100%;
  padding: 0 80px;
  z-index: 100;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

#header_slider .catch {
  line-height: 1.4;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  position: relative;
  font-weight: 500;
}
#header_slider .desc {
  margin: 15px 0 0 0;
  position: relative;
}
#header_slider .desc p {
  font-size: 16px;
  line-height: 2;
}
#header_slider .desc p.mobile {
  display: none;
}

/* 画像とオーバーレイ */
#header_slider .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}
#header_slider .bg_image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
#header_slider .bg_image.mobile {
  display: none;
}
#header_slider .dot_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  background: url(./img/common/dot_pattern2.png);
}

/* ボタン */
#header_slider .button {
  border: 1px solid #fff;
  font-size: 16px;
  color: #ffffff;
  min-width: 270px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: relative;
  padding: 0 60px;
  margin-top: 20px;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0.5;
}
#header_slider .button a {
  text-decoration: none;
}
#header_slider .button:before {
  content: '';
  display: block;
  width: 100%;
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -100%;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0s;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0s;
  background-color: rgba(255, 255, 255, 0.5);
}
#header_slider .button.button_animation_type3:before {
  transform: skewX(45deg);
  width: calc(100% + 60px);
  left: calc(-100% - 100px);
}
#header_slider .button.button_animation_type2:hover:before {
  left: 0;
}
#header_slider .button.button_animation_type3:hover:before {
  left: -30px;
}

/* 動画 */
#header_slider .video_wrap {
  position: absolute;
}
#header_slider .video_wrap.type1 {
  position: absolute;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
}
#header_slider .video_wrap.type2 {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
#header_slider .video_wrap.type1 video {
  height: 100%;
  width: auto;
}
#header_slider .video_wrap.type2 video {
  width: 100%;
  height: auto;
}
#header_slider .youtube_inner {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
#header_slider .slide-youtube {
  height: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
}

#header_slider .slick-dots {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 10;
  text-align: center;
}
#header_slider .slick-dots li {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  font-size: 12px;
}
#header_slider .slick-dots button {
  cursor: pointer;
  border: none;
  color: transparent;
  width: 12px;
  height: 12px;
  display: block;
  font-size: 0;
  background: none;
  position: relative;
}
#header_slider .slick-dots button::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  line-height: 12px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
#header_slider .slick-dots .slick-active button::before {
  background: #aaa;
}
#header_slider .slick-dots button:hover::before {
  background: #aaa;
}
#header_slider_wrap.position_type2 #header_slider .slick-dots {
  right: auto;
  left: 30px;
  text-align: left;
}
#header_slider .slick-dots li:only-child {
  display: none;
}

#header_slider .catch.animate,
#header_slider .desc.animate,
#header_slider .button.animate,
#header_slider .catch.animate_mobile,
#header_slider .desc.animate_mobile,
#header_slider .button.animate_mobile {
  animation: slideUp 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1s;
}

/* 背景画像のアニメーション */
#header_slider .item.bg_animation_type1.animate .bg_image {
  animation: zoomIn 30s;
}
#header_slider .item.bg_animation_type2.animate .bg_image {
  animation: zoomOut 30s;
}
#header_slider .item.bg_animation_type3.animate .bg_image {
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  animation: bg_image_move_right 30s;
}
#header_slider .item.bg_animation_type4.animate .bg_image {
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  animation: bg_image_move_left 30s;
}
#header_slider .item.bg_animation_type6.animate .bg_image {
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  animation: bg_image_move_down 30s;
}

/* キャプションなしバナー用のスタイル */
#header_slider .item.image_item.no_caption {
  cursor: pointer;
  position: relative;
  display: block;
}

#header_slider .item.image_item.no_caption:hover .overlay {
  background: rgba(0, 0, 0, 0.2);
}

/* キャプションなしバナーではキャプションを非表示 */
#header_slider .item.image_item.no_caption .caption {
  display: none;
}

/* ----------------------------------------------------------------------
　アニメーションの設定
---------------------------------------------------------------------- */
/* 下から上へスライド */
@-webkit-keyframes slideUp {
  0% {
    bottom: -30px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes slideUp {
  0% {
    bottom: -30px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}

/* ズームアウト */
@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}

/* ズームイン */
@-webkit-keyframes zoomIn {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/* フェードイン */
@-webkit-keyframes opacityAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacityAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* フェードアウト */
@-webkit-keyframes opacityAnimation2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacityAnimation2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* 右に移動 */
@-webkit-keyframes moveRight {
  0% {
    opacity: 0;
    right: 30px;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}
@keyframes moveRight {
  0% {
    opacity: 0;
    right: 30px;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}

/* 左に移動 */
@-webkit-keyframes moveLeft {
  0% {
    opacity: 0;
    left: 30px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes moveLeft {
  0% {
    opacity: 0;
    left: 30px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

/* ポップアップ */
@keyframes popUp {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes popUp {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

/* キャプション内のアニメーション設定 */
#header_slider .animate_item {
  opacity: 0;
  position: relative;
}
#header_slider .catch.animate,
#header_slider .desc.animate,
#header_slider .button.animate,
#header_slider .catch.animate_mobile,
#header_slider .desc.animate_mobile,
#header_slider .button.animate_mobile {
  -webkit-animation: slideUp 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1s;
  animation: slideUp 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1s;
}

/* 共通のカスタムプロパティを定義 */
:root {
  --catch-font-size: 36px; /* PC用のデフォルトフォントサイズ */
  --desc-font-size: 18px; /* PC用のデフォルトフォントサイズ */
  --item1-catch-color: #ffffff;
  --item1-desc-color: #ffffff;
  --item1-button-color: #ffffff; /* item1のボタンの色 */
  --item2-catch-color: #ffffff; /* ここにitem2の色を設定 */
  --item2-desc-color: #ffffff; /* ここにitem2の説明の色を設定 */
  --item2-button-color: #ffffff; /* item2のボタンの色 */
  --item3-catch-color: #ffffff; /* ここにitem3の色を設定 */
  --item3-desc-color: #ffffff; /* ここにitem3の説明の色を設定 */
  --item3-button-color: #ffffff; /* item3のボタンの色 */
  --item4-catch-color: #ffffff; /* ここにitem4の色を設定 */
  --item4-desc-color: #ffffff; /* ここにitem4の説明の色を設定 */
  --item4-button-color: #ffffff; /* item4のボタンの色 */
  --item5-catch-color: #dd3333; /* ここにitem5の色を設定 */
  --item5-desc-color: #666666; /* ここにitem5の説明の色を設定 */
  --item5-button-color: gray; /* item5のボタンの色 */
}

/* PC表示用のスタイル */
#header_slider .item .catch {
  font-size: var(--catch-font-size);
  color: #ffffff; /* デフォルト色 */
}

#header_slider .item1 .catch {
  color: var(--item1-catch-color);
}

#header_slider .item2 .catch {
  color: var(--item2-catch-color);
}

#header_slider .item3 .catch {
  color: var(--item3-catch-color);
}

#header_slider .item4 .catch {
  color: var(--item4-catch-color);
}

#header_slider .item5 .catch {
  color: var(--item5-catch-color);
}

#header_slider .item .desc .pc {
  display: block;
}

#header_slider .item .desc .mobile {
  display: none;
}

#header_slider .item .desc p {
  font-size: var(--desc-font-size);
  color: #ffffff; /* デフォルト色 */
}

#header_slider .item1 .desc p {
  color: var(--item1-desc-color);
}

#header_slider .item2 .desc p {
  color: var(--item2-desc-color);
}

#header_slider .item3 .desc p {
  color: var(--item3-desc-color);
}

#header_slider .item4 .desc p {
  color: var(--item4-desc-color);
}

#header_slider .item5 .desc p {
  color: var(--item5-desc-color);
}

/* ボタンのテキストスタイル */
#header_slider .item1 .button {
  color: var(--item1-button-color);
}

#header_slider .item2 .button {
  color: var(--item2-button-color);
}

#header_slider .item3 .button {
  color: var(--item3-button-color);
}

#header_slider .item4 .button {
  color: var(--item4-button-color);
}

#header_slider .item5 .button {
  color: var(--item5-button-color);
}

/* モバイル表示用のスタイル */
@media screen and (max-width: 768px) {
  :root {
    --catch-font-size: 24px; /* モバイル用のフォントサイズ */
    --desc-font-size: 14px; /* モバイル用のフォントサイズ */
  }

  #header_slider .item .desc .pc {
    display: none;
  }

  #header_slider .item .desc .mobile {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  #header_slider_wrap {
    touch-action: pan-y pinch-zoom;
  }

  #header_slider .item {
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
  }

  /* スライド時のちらつきを防止 */
  #header_slider .slick-list {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
  }

  /* スライド時の動きを滑らかに */
  #header_slider .slick-track {
    display: flex;
    will-change: transform;
  }
}

/* タッチデバイスでのスライド操作を改善 */
.slick-list.dragging {
  cursor: grab;
  cursor: -webkit-grab;
}

.slick-list.dragging * {
  pointer-events: none;
}
