    .fade-slider {
        width: 100vw;
        height: 100vh;
        position: relative;
        overflow: hidden;
    }

    .fade-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        opacity: 0;
        z-index: 1;
        pointer-events: none;
    }

    .fade-slide img {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        display: block;
    }

    .fade-slide.active {
        opacity: 1;
        z-index: 2;
        pointer-events: auto;
    }

    .slide-caption {
        position: absolute;
      left: 15%;
        top: 50%;
  -webkit-transform: translate3d(0, -0%, 0);
  -moz-transform: translate3d(0, -0%, 0);
  transform: translate3d(0, -50%, 0);
    }

    .slide-caption.active {
        opacity: 1;
        pointer-events: auto;
        transition: opacity .7s;
    }

    .slide-title {
       font-size: 40px;
  font-weight: 700;
  color: #fff;
      margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow:2px 2px 15px rgb(0, 0, 0, 0.6);
    }

    .slide-desc {
 color: #fff !important;
    }

    @media (max-width:700px) {
        .slide-title {
            font-size: 1.3em;
        }

        .slide-caption {
            top: 53%;
            max-width: 96vw;
        }

        .slide-desc {
            font-size: 1em;
        }
    }

    .simple-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1.5px solid #ddd;
    box-shadow: 0 2px 6px rgba(60,60,60,0.08);
    margin: 0 7px;
    transition: background 0.18s, border 0.18s, box-shadow 0.2s;
    cursor: pointer;
    display: inline-block;
}

.simple-dot.active {
    background: #444;
    border: 1.5px solid #fff;
    box-shadow: 0 0 0 2px rgba(50,50,50,0.18);
}

.simple-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: absolute;
    left: 0; right: 0; bottom: 40px;
    z-index: 20;
    pointer-events: auto;
}

/*------------------------------------------------------------------
  	[Button]
------------------------------------------------------------------*/
.btn-theme-t {
  position: relative;
  display: inline-block;
  line-height: 0.5;
  text-align: center;
  background-image: none;
  border-width: 1px !important;
  border-style: solid;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 50%;              /* 幅を半分に */
  margin: 0 auto 1em auto; /* 中央寄せ＆下に余白 */
  padding: 6px 0;      
}

.btn-theme-t:focus, .btn-theme-t:active:focus, .btn-theme-t.active:focus, .btn-theme-t.focus, .btn-theme-t:active.focus, .btn-theme-t.active.focus {
  outline: none;
}

.btn-theme-t:hover {
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.btn-theme-t:hover, .btn-theme-t:focus, .btn-theme-t.focus {
  text-decoration: none;
}

.btn-theme-t:active, .btn-theme-t.active {
  background-image: none;
  outline: 0;
}

.btn-theme-t.disabled, .btn-theme-t[disabled],
fieldset[disabled] .btn-theme-t {
  cursor: not-allowed;
  box-shadow: none;
  opacity: .65;
  pointer-events: none;
}

.btn-white-brd-t {
  color: #515769;
  background: transparent;
  border-color: #515769;
  border-width: 2px;
}

.btn-white-brd-t:hover, .btn-white-brd-t:focus, .btn-white-brd-t.focus {
  color: #fff;
  background: #515769;
  border-color: #515769;
}

.btn-theme-sm-t {
  font-size: 13px;
  font-weight: 500;
  padding: 15px 40px;
}
.insta-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.insta-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.insta-text {
  font-size: 28px;
  font-weight: bold;
  color: #E1306C; /* Instagramらしい赤ピンク */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.instagram-follow {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}
