@charset "UTF-8";

/* =========================================================
  Base
========================================================= */
.ksf .ksf-main {
  --ksf-bg: #fff;
  --ksf-bg-alt: #f6f6f6;
  --ksf-text: #111;
  --ksf-muted: #666;
  --ksf-line: #e6e6e6;
  --ksf-accent: #111;
  --ksf-max: 1120px;

  color: var(--ksf-text);
  background: var(--ksf-bg);
  font-family: system-ui, -apple-system, "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.7;
  font-size: 10px;
}

.ksf .ksf-main *,
.ksf .ksf-main *::before,
.ksf .ksf-main *::after {
  box-sizing: border-box;
}

.ksf .ksf-main img {
  max-width: 100%;
  display: block;
}

.ksf .ksf-container {
  width: min(var(--ksf-max), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================================================
  Sections
========================================================= */
.ksf .ksf-section {
  padding: 72px 0;
  border-top: 1px solid var(--ksf-line);
}

.ksf .ksf-section--alt {
  background: var(--ksf-bg-alt);
}

.ksf .ksf-section--intro {
  border-top: none;
  padding: 56px 0 72px;
}

.ksf .ksf-section--novelty {
  background: #fff;
}

/* =========================================================
  Header
========================================================= */
.ksf .ksf-logo {
  height: 90px;
  display: flex;
  align-items: center;
}

.ksf .ksf-logo-img {
  width: 200px;
  margin: 0 auto;
}

@media screen and (max-width:767px) {
  .ksf .ksf-logo {
    height: 60px;
  }

  .ksf .ksf-logo-img {
    width: 150px;
  }
}

iframe {
  max-width: 500px;
}

/* =========================================================
  Hero
========================================================= */
.ksf .ksf-hero {
  border-top: none;
}

.ksf .ksf-hero-inner {
  width: min(var(--ksf-max), calc(100% - 32px));
  margin: 0 auto;
}

.ksf .ksf-hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 50px;
  letter-spacing: .02em;
  line-height: 1.2;
  margin-top: 24px;
}

.ksf .ksf-hero-date {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0 0 18px;
  font-size: 18px;
  letter-spacing: .12em;
  color: var(--ksf-muted);
  text-transform: uppercase;
}

.ksf .ksf-hero-lead {
  margin: 0 0 22px;
  font-size: 16px;
  color: var(--ksf-text);
  max-width: 780px;
}

.ksf .ksf-hero-media {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-left: none;
  border-right: none;
  background: #fff;
  overflow: hidden;
}

.ksf .ksf-hero-media img{
  width: 100%;
  height: auto;
  display: block;
}

/* 2枚重ねの土台 */
.ksf .ksf-hero-media--stack{
  position: relative;
  overflow: hidden;
}

/* 2枚とも同じ領域にフィット */
.ksf .ksf-hero-img{
  width: 100%;
  height: clamp(260px, 42vw, 520px); /* 高さは好みで調整OK */
  object-fit: cover;
  display: block;
}

/* 上に重ねる画像 */
.ksf .ksf-hero-img.is-overlay{
  position:absolute;
  top:60%;
  left:50%;
  width:28%;
  height:auto;

  opacity:0;
  transform: translate(-50%, -50%); /* 中央基準 */
  animation: ksfHeroOverlayIn 1.8s ease forwards;
  animation-delay: 1s;

  z-index: 2;
}

@media (max-width:900px){
  .ksf .ksf-hero-img.is-overlay{
    width:65%;
    top:57%;
  }
}

/* フェード用アニメーション */
@keyframes ksfFadeIn{
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ksfHeroOverlayIn{
  from{
    opacity:0;
    transform: translate(-50%, -50%) scale(1.08);
  }
  to{
    opacity:1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* 1枚目 → 2枚目の順でじわっと */
.ksf .ksf-hero-img.is-base{
  animation: ksfFadeIn 1.2s ease forwards;
  position: relative;
  z-index: 1;
}

@media (min-width:901px){

  .ksf .ksf-hero-media{
    max-height: 700px;
    overflow: hidden;
  }

  .ksf .ksf-hero-img.is-base{
    width:100%;
    height:100%;
    object-fit: cover;
  }

}

/* =========================================================
  Typography
========================================================= */
.ksf .ksf-section-head {
  margin-bottom: 26px;
}

.ksf .ksf-section-head--center {
  text-align: center;
}

.ksf .ksf-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--ksf-muted);
  text-transform: uppercase;
}

.ksf .ksf-h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: .02em;
}

.ksf .ksf-h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

.ksf .ksf-h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: .02em;
}

.ksf .ksf-p {
  margin: 0;
  color: var(--ksf-text);
  font-size: 15px;
  line-height: 1.8;
}

.ksf .ksf-p+.ksf-p {
  margin-top: 10px;
}

.ksf .ksf-p--lg {
  font-size: 16px;
}

.ksf .ksf-p--sm {
  font-size: 13px;
  color: var(--ksf-muted);
}

.ksf .ksf-caption {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--ksf-muted);
}

/* =========================================================
  Buttons / links
========================================================= */
.ksf .ksf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 18px;
  border: 1px solid var(--ksf-text);
  color: #fff;
  background: var(--ksf-text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .08em;
  transition: opacity .2s ease;
}

.ksf .ksf-btn:hover {
  opacity: .85;
}

.ksf .ksf-btn--ghost {
  background: transparent;
  color: var(--ksf-text);
}

.ksf .ksf-link {
  color: var(--ksf-text);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-size: 13px;
}

.ksf .ksf-cta-row {
  margin-top: 22px;
  text-align: center;
}

/* 予約ボタン */
.ksf-btn--center {
  text-align: center;
}

.ksf-cta-btn {
  margin-bottom: 32px;
}

.ksf-btn--color {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 48px;
  border: 1px solid #1A4472;
  color: #fff;
  background: #1A4472;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .08em;
  transition: opacity .2s ease;
}

/* =========================================================
  Subsection
========================================================= */
.ksf .ksf-subsection {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--ksf-line);
}

.ksf .ksf-subsection-head {
  margin-bottom: 18px;
}

.ksf .ksf-subsection--thin {
  margin-top: 28px;
  padding-top: 22px;
}

/* =========================================================
  Layout blocks
========================================================= */
.ksf .ksf-intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
}

.ksf .ksf-intro-media {
  border: 1px solid var(--ksf-line);
  background: #fff;
  overflow: hidden;
}

.ksf .ksf-novelty {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--ksf-line);
  background: #fff;
  padding: 18px;
}

.ksf .ksf-novelty-media {
  border: 1px solid var(--ksf-line);
  overflow: hidden;
  background: #fff;
}

.ksf .ksf-list {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color: var(--ksf-muted);
  font-size: 10px;
}

.ksf .ksf-media-wide {
  margin-top: 18px;
  border: 1px solid var(--ksf-line);
  background: #fff;
  overflow: hidden;
}

.ksf .ksf-text-block {
  max-width: 860px;
  margin: 18px auto 0 auto ;
}

/* =========================================================
  Collection heading (VANAC / KSK)
========================================================= */
.ksf .ksf-collection-head {
  margin-bottom: 32px;
}

.ksf .ksf-collection-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0 0 10px;
  font-size: 42px;
  letter-spacing: .08em;
  line-height: 1.1;
}

.ksf .ksf-collection-lead {
  margin: 0;
  font-size: 15px;
  color: var(--ksf-muted);
  letter-spacing: .04em;
}

/* =========================================================
  Features (Design concept)
========================================================= */
.ksf .ksf-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.ksf .ksf-features--2col {
  grid-template-columns: repeat(2, 1fr);
}

.ksf .ksf-feature {
  /* border: 1px solid var(--ksf-line); */
  background: #fff;
  overflow: hidden;
}

.ksf .ksf-feature-media {
  background: #fff;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.ksf .ksf-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ksf .ksf-feature-body {
  padding: 16px;
}

.ksf .ksf-caliber {
  border: 1px solid var(--ksf-line);
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 20px auto;
}

.ksf .ksf-caliber-media {
  flex: 0 0 48%;
  max-width: 520px;
}

.ksf .ksf-caliber-text {
  flex: 1;
  padding-right: 24px;
}

.ksf .ksf-caliber-media img {
  width: 85%;
  margin: auto;
  display: block;
}

/* =========================================================
  Cards (Dial variations etc.)
========================================================= */
.ksf .ksf-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.ksf .ksf-card {
  border: 1px solid var(--ksf-line);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ksf .ksf-card-media {
  border-bottom: 1px solid var(--ksf-line);
  background: #fff;
}

.ksf .ksf-card-body {
  padding: 14px;
}

.ksf .ksf-time-theme {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .08em;
  margin: 4px 0 6px;
}

.ksf .ksf-card-label {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--ksf-muted);
}

.ksf .ksf-card-title {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: .02em;
}

.ksf .ksf-card-meta {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--ksf-muted);
}

.ksf .ksf-card-price {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: .02em;
}

.ksf .ksf-tax {
  font-size: .7em;
  color: #777;
}

/* Sky layered media */
.ksf .ksf-card-media--sky {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.ksf .ksf-card-media--square {
  aspect-ratio: 1 / 1;
}

.ksf .ksf-card-sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Filter buttons */
.ksf .ksf-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 0;
}

.ksf .ksf-filter-btn {
  appearance: none;
  border: 1px solid var(--ksf-line);
  background: #fff;
  color: var(--ksf-text);
  padding: 10px 12px;
  font-size: 12px;
  letter-spacing: .10em;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.ksf .ksf-filter-btn:hover {
  transform: translateY(-1px);
}

.ksf .ksf-filter-btn.is-active {
  border-color: var(--ksf-text);
  background: var(--ksf-text);
  color: #fff;
}

/* =========================================================
  KSK: Movement
========================================================= */
.ksf .ksf-move {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.ksf .ksf-move-media {
  border: 1px solid var(--ksf-line);
  background: #fff;
  overflow: hidden;
}

.ksf .ksf-move-body {
  border: 1px solid var(--ksf-line);
  background: #fff;
  padding: 18px 36px;
}

/* Movement rows (image + text) */
.ksf .ksf-move-row {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-top: 22px;
  justify-content: center;
}

.ksf .ksf-move-row--reverse {
  flex-direction: row-reverse;
}

.ksf .ksf-move-row-media {
  overflow: hidden;
}

.ksf .ksf-move-row-media img {
  width: 100%;
  max-width: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Square crop helper */
.ksf .ksf-move-row-media--square {
  aspect-ratio: 1 / 1;
}

.ksf .ksf-move-row-text {
  flex: 1;
}

/* =========================================================
  Slider / Watch cards (Line up)
========================================================= */
.ksf .ksf-slider {
  margin-top: 16px;
}

.ksf .ksf-slider-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

@media (min-width:901px) {
  .ksf .ksf-slider-track {
    grid-template-columns: repeat(4, 1fr);
  }

  .ksf [data-ksf-slider="6l"] .ksf-slider-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ksf .ksf-watch-card {
  text-decoration: none;
  color: var(--ksf-text);
  border: 1px solid var(--ksf-line);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ksf .ksf-watch-card:hover {
  transform: translateY(-4px);
  border-color: #cfcfcf;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
}

.ksf .ksf-watch-media {
  border-bottom: 1px solid var(--ksf-line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ksf .ksf-watch-media img {
  max-width: 115%; 
  height: auto;
  object-fit: contain;
  margin: auto;
  display: block;
}

.ksf #ksf-ksk .ksf-watch-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ksf .ksf-watch-body {
  padding: 12px;
}

.ksf .ksf-watch-title {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: .06em;
}

.ksf .ksf-watch-badge {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ksf-muted);
}

.ksf .ksf-watch-price {
  margin: 0;
  font-size: 16px;
  letter-spacing: .02em;
}

.ksf .ksf-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--ksf-muted);
}


/* =========================================================
  Responsive (single place)
========================================================= */
.ksf .ksf-br-sp {
  display: none;
}

@media (max-width:900px) {
  .ksf .ksf-section {
    padding: 32px 0;
  }

  .ksf .ksf-hero-title {
    font-size: 36px;
  }

  .ksf .ksf-collection-title {
    font-size: 34px;
  }

  .ksf .ksf-collection-lead {
    font-size: 14px;
  }

  .ksf .ksf-p {
    font-size: 12px;
    line-height: 1.75;
  }

  .ksf .ksf-intro,
  .ksf .ksf-novelty,
  .ksf .ksf-caliber,
  .ksf .ksf-kv-split {
    grid-template-columns: 1fr;
  }

  .ksf .ksf-features {
    grid-template-columns: 1fr;
  }

  .ksf .ksf-cards {
    grid-template-columns: 1fr;
  }

  /* Feature: SPは自然表示 */
  .ksf .ksf-feature-media {
    aspect-ratio: auto;
  }

  .ksf .ksf-feature-media img {
    height: 220px;
  }

  .ksf .ksf-br-pc {
    display: none;
  }

  .ksf .ksf-br-sp {
    display: inline;
  }

  /* Slider: SPは2枚横スクロール */
  .ksf .ksf-slider-track {
    display: flex;
    gap: 12px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 10px;
    -webkit-overflow-scrolling: touch;
  }

  .ksf .ksf-watch-card {
    flex: 0 0 calc(50% - 6px);
    scroll-snap-align: start;
  }

  /* Movement rows */
  .ksf .ksf-move-row,
  .ksf .ksf-move-row--reverse {
    flex-direction: column;
  }

  .ksf .ksf-move-media img {
    width: 130%;
    max-width: none;
    margin-left: -15%;
  }

  .ksf .ksf-caliber {
    flex-direction: column;
    padding: 14px;
  }

  .ksf .ksf-caliber-text {
    padding: 0;
  }

  .ksf .ksf-move-row-media img {
    width: 100%;
    max-width: 200px;
  }
}

/* =========================
  Design concept: PCを交互レイアウトに
========================= */
@media (min-width: 901px){
  /* 2カラムgridをやめて、縦に4行並べる */
  .ksf .ksf-features{
    display:flex;
    flex-direction:column;
    gap:24px;
  }

  /* 1行（= 1カード）を横並びにする */
  .ksf .ksf-feature{
    display:grid;
    grid-template-columns: 1fr 1fr; /* 左右2列 */
    align-items:center;
    gap:22px;
    padding:0;
    overflow:hidden;
  }

  /* 画像とテキストの見た目 */
  .ksf .ksf-feature-media{
    border-bottom:none;
    aspect-ratio: 3 / 2;
  }

  .ksf .ksf-feature-body{
    padding:16px;
  }

  /* 偶数行だけ左右反転（2,4番目） */
  .ksf .ksf-feature:nth-child(even) .ksf-feature-media{
    order:2;
  }
  .ksf .ksf-feature:nth-child(even) .ksf-feature-body{
    order:1;
  }
}



/* =========================================================
  Service
========================================================= */

.ksf .ksf-service-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding-bottom: 1vw;
}

.ksf .ksf-service-grid {
  text-align: left;
  background-color: #f1f1f1;
  padding: 2rem;
  margin: 1.6rem auto;
}

.ksf .ksf-service-grid h3 {
  font-size: clamp(18px, 4.6vw, 24px);
  font-weight: 400;
  margin-bottom: 8px;
  border-bottom: 1px solid #333;
  padding: 0 0 8px 0;
}

.ksf .ksf-service__subtitle {
  font-weight: 600;
  padding-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .ksf .ksf-service {
    padding-bottom: 5vw;
  }
}

/* =========================================================
  Shop List
========================================================= */
.ksf #shoplist a {
  text-decoration: none;
  color: #333;
}

.ksf a:link {
  text-decoration: none;
}

.ksf ul,
ol {
  list-style: none;
}

.ksf #shoplist {
  max-width: 1200px;
  padding: 16px;
  background-color: #fff;
  color: #333;
  margin: auto;
}

.ksf #shoplist .pagelink {
  margin: 40px 0;
  padding: 0 20px;
}

.ksf #shoplist .pagelink a {
  color: #fff;
}

.ksf #shoplist .pagelink .shoplist_inside {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.ksf #shoplist .shop_photo {
  margin: 0 0 10px 0;
}

.ksf #shoplist .shop_name {
  font-size: 18px;
  margin: 15px 0 10px 0;
  line-height: 1.0em;
}

.ksf #shoplist .shop_name span {
  font-size: 14px;
}

.ksf #shoplist .shop_access {
  font-size: 14px;
  margin: 0 0 10px 0;
}

.ksf #shoplist .shop_tel {
  background-color: #f6f6f6;
  border-radius: 0;
  padding: 0;
  margin: 10px 0;
}

.ksf #shoplist .shop_tel .tel_line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #999;
  color: #fff;
  padding: 15px;
  font-size: 20px;
  line-height: 0px;
  border: #9e9e9e 1px solid;
  border-radius: 4px;
  gap: 16px;
}

.ksf #shoplist .shop_tel .tel_icon {
  width: 20px;
  margin: 0 0px 0 0;
}

.ksf #shoplist .shop_tel span {
  align-items: center;
  letter-spacing: 2px;
}

.ksf #shoplist .shop_tel .arrow {
  padding: 0 10px 0 0;
  font-size: 13px;
  color: #AF9538;
  position: absolute;
  top: 50%;
  /*親要素を起点に上から50%*/
  right: 10px;
  /*親要素を起点に左から50%*/
}

.ksf #shoplist .shop_map {
  display: block;
  text-align: right;
  color: #AF9538;
  font-size: 14px;
  margin: 0 0 30px 0;
}

.ksf #shoplist .shoplist_waku .shoplist_inside {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  background-color: #fff;
  margin-top: 16px;
}

.ksf #shoplist #brugge {
  height: 100%;
  width: 100%;
  padding: 0 0 10px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.ksf #shoplist #brugge .brugge_img {
  flex: 1;
}

.ksf #shoplist #brugge .brugge_text {
  flex: 1;
}


@media screen and (max-width: 767px) {

  .ksf #shoplist .shoplist_waku .shoplist_inside {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .ksf #shoplist #brugge {
    width: 100%;
    padding: 0;
  }

  .ksf #shoplist #brugge {
    display: flex;
    flex-direction: column;
  }

  .ksf #shoplist #brugge .brugge_img {
    width: 100%;
  }
  
  .ksf #shoplist #brugge .brugge_text {
    width: 100%;
  }

}


/* =========================================================
  Scroll Fade-in
========================================================= */

.ksf .ksf-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.ksf .ksf-anim.is-inview {
  opacity: 1;
  transform: none;
}

/* 左から（タイトル用） */
.ksf .ksf-anim--left {
  transform: translateX(-22px);
}

/* 下から（本文/画像/カードなど） */
.ksf .ksf-anim--up {
  transform: translateY(18px);
}

/* ほんの少し遅延（段差が気持ちいい） */
.ksf .ksf-anim--delay1 {
  transition-delay: .08s;
}

.ksf .ksf-anim--delay2 {
  transition-delay: .16s;
}

.ksf .ksf-anim--delay3 {
  transition-delay: .24s;
}

/* アクセシビリティ：動きが苦手な人は無効化 */
@media (prefers-reduced-motion: reduce) {
  .ksf .ksf-anim {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
  SNS
========================================================= */

.ksf .ksf-sns{
  margin-bottom: 32px;
  text-align: center;
}


.ksf .ksf-sns-icons{
  display: flex;
  justify-content: center;
  gap: 28px;
}

.ksf .ksf-sns-icons a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all .3s ease;
}

.ksf .ksf-sns-icons img{
  width: 29px;
  height: 29px;
}

/* ホバー */
.ksf .ksf-sns-icons a:hover{
  background:#1A4472;
}

.ksf .ksf-sns-icons a:hover img{
  filter: brightness(0) invert(1);
}


/* =========================================================
  Page Top Button
========================================================= */

.ksf .ksf-pagetop{
  position:fixed;
  right:24px;
  bottom:24px;
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:#111;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .3s ease;
  z-index:1000;
}

/* 表示状態 */
.ksf .ksf-pagetop.is-show{
  opacity:.9;
  visibility:visible;
  transform:none;
}

.ksf .ksf-pagetop:hover{
  opacity:1;
  transform:translateY(-3px);
}

/* スマホ少し小さく */
@media (max-width:900px){
  .ksf .ksf-pagetop{
    width:42px;
    height:42px;
    right:16px;
    bottom:16px;
  }
}

.ksf .ksf-pagetop{
  display:flex;
  align-items:center;
  justify-content:center;
}

.ksf .ksf-pagetop-icon{
  width:14px;
  height:14px;
  fill:#fff;
}

/* =========================================================
  Footer
========================================================= */

.ksf .ksf-footer {
  position: relative;
  color: #000;
}

.ksf .ksf-footer .ksf-copy {
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
}