@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap');

#custom-site-header {
  --sf:        rgb(244,244,239);
  --ll:        rgba(0,0,0,0.1);
  --g900:      rgb(0,0,0);
  --g700:      rgb(65,65,65);
  --p400:      rgb(0,226,155);
  --p700:      rgb(0,121,108);
  --en:        'Jost', sans-serif;
  --ja:        'Zen Kaku Gothic New','ヒラギノ角ゴ ProN W3',Meiryo,sans-serif;
  --header-px: clamp(1.2rem, 3vw, 2.5rem);
  --px:        clamp(2rem, 5vw, 6rem);

  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--sf);
  box-sizing: border-box;
}

#custom-site-header *,
#custom-site-header *::before,
#custom-site-header *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#custom-site-header a {
  text-decoration: none;
  color: inherit;
}

#custom-site-header ul {
  list-style: none;
}

/* ナビバー */
#custom-site-header .hero-nav--sub {
  padding: 1.5rem var(--px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  background: var(--sf);
  border-bottom: 1px solid var(--ll);
}

/* ロゴ */
#custom-site-header .hero-logo {
  font-family: var(--en);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g900);
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
}

#custom-site-header .hero-logo span {
  display: block;
  font-size: .88rem;
  color: var(--g700);
  letter-spacing: .1em;
  margin-top: .4rem;
  font-family: var(--ja);
  text-transform: none;
}

/* PCナビ */
#custom-site-header .hero-nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

#custom-site-header .hero-nav-list a {
  display: block;
  font-family: var(--ja);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--g700);
  padding: .5rem 0;
  transition: color .25s;
}

#custom-site-header .hero-nav-list a:hover {
  color: var(--g900);
}

/* ハンバーガー */
#custom-site-header .hero-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--ll);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

#custom-site-header .hero-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--g900);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

#custom-site-header .hero-hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
#custom-site-header .hero-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
#custom-site-header .hero-hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* SPドロワー */
#custom-site-header .hero-sp-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--sf);
  border-bottom: 2px solid var(--p400);
  z-index: 100;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

#custom-site-header .hero-sp-menu.is-open {
  max-height: 400px;
}

#custom-site-header .hero-sp-menu ul {
  padding: .5rem var(--header-px) 1.5rem;
}

#custom-site-header .hero-sp-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ll);
  font-family: var(--ja);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--g700);
  transition: color .2s;
}

#custom-site-header .hero-sp-menu ul li a::after {
  content: '›';
  font-size: 1rem;
  opacity: .5;
}

#custom-site-header .hero-sp-menu ul li:last-child a {
  border-bottom: none;
  color: var(--p700);
  font-weight: 700;
}

#custom-site-header .hero-sp-menu ul li a:hover {
  color: var(--g900);
}

/* ══ 入場アニメーション ══ */
@keyframes ch-fade-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ch-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ヘッダー全体：上からスッと */
#custom-site-header {
  animation: ch-fade-down .6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ロゴ：少し遅れてフワッと */
#custom-site-header .hero-logo {
  animation: ch-fade-down .7s cubic-bezier(0.22, 1, 0.36, 1) .1s both;
}

/* ナビリスト：さらに少し遅れて */
#custom-site-header .hero-nav-list {
  animation: ch-fade-in .6s ease .25s both;
}

/* ハンバーガー（SP） */
#custom-site-header .hero-hamburger {
  animation: ch-fade-in .6s ease .25s both;
}

/* SP表示切替 */
@media (max-width: 768px) {
  #custom-site-header .hero-nav--sub {
    padding: 1.5rem var(--header-px);
    gap: .5rem;
  }

  #custom-site-header .hero-nav-list {
    display: none;
  }

  #custom-site-header .hero-hamburger {
    display: flex;
  }

  #custom-site-header .hero-sp-menu {
    display: block;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

/* =========================
   before_footer の余白整理
========================= */
.page .l-mainContent__inner,
.page .post_content,
.page .entry-content,
.page .p-entryContent {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.page .post_content > *:last-child,
.page .entry-content > *:last-child,
.page .p-entryContent > *:last-child {
  margin-bottom: 0 !important;
}

#before_footer,
.w-beforeFooter {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#before_footer .l-container,
.w-beforeFooter .l-container,
#before_footer .c-widget,
.w-beforeFooter .c-widget {
  margin: 0 !important;
  padding: 0 !important;
}

/* =========================
   Satsuki footer widget
========================= */
.sgf,
.sgf * {
  box-sizing: border-box;
}

.sgf {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #efefec;
  border-top: 1px solid #d9d9d4;
  color: #161616;
  overflow: hidden;
}

.sgf p,
.sgf ul,
.sgf li,
.sgf address {
  margin: 0;
  padding: 0;
}

.sgf ul {
  list-style: none;
}

.sgf a {
  color: inherit;
  text-decoration: none;
}

.sgf em,
.sgf i {
  font-style: normal !important;
}

/* 先頭の流れる文字 */
.sgf__copy {
  overflow: hidden;
  border-bottom: 1px solid #d9d9d4;
  padding: 18px 0 10px;
}

.sgf__copy-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #111;
  animation: sgf-marquee 34s linear infinite;
  will-change: transform;
}

.sgf__copy-track span {
  display: block;
  white-space: nowrap;
  padding-right: 1.5rem;
}

@keyframes sgf-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 本体 */
.sgf__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  gap: 36px 48px;
  align-items: start;
}

.sgf__col {
  min-width: 0;
}

.sgf__col--info {
  min-width: 0;
}

.sgf__brand {
  display: inline-block;
  margin-bottom: 14px;
  font-family: 'Zen Kaku Gothic New', 'ヒラギノ角ゴ ProN W3', Meiryo, sans-serif;
  font-style: normal;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: #111;
  word-break: keep-all;
  overflow-wrap: normal;
}

.sgf__address {
  font-family: 'Zen Kaku Gothic New', 'ヒラギノ角ゴ ProN W3', Meiryo, sans-serif;
  font-style: normal;
  font-size: 15px;
  line-height: 2;
  color: #222;
}

.sgf__head {
  margin-bottom: 14px;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6f8f87;
}

.sgf__list li + li {
  margin-top: 10px;
}

.sgf__list a {
  display: inline-block;
  font-family: 'Zen Kaku Gothic New', 'ヒラギノ角ゴ ProN W3', Meiryo, sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #1e1e1e;
  transition: opacity 0.25s ease;
  word-break: break-word;
}

.sgf__list a:hover {
  opacity: 0.68;
}

/* ウィジェットの外枠を消す */
#before_footer .c-widget:has(.sgf),
.w-beforeFooter .c-widget:has(.sgf),
.c-widget:has(.sgf) {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

#before_footer .c-widget:has(.sgf) .c-widget__title,
.w-beforeFooter .c-widget:has(.sgf) .c-widget__title,
.c-widget:has(.sgf) .c-widget__title,
#before_footer .c-widget:has(.sgf) .w-beforeWidget,
#before_footer .c-widget:has(.sgf) .w-afterWidget,
.w-beforeFooter .c-widget:has(.sgf) .w-beforeWidget,
.w-beforeFooter .c-widget:has(.sgf) .w-afterWidget {
  display: none !important;
}

/* tablet */
@media (max-width: 1024px) {
  .sgf__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 36px;
    padding: 28px 20px 32px;
  }

  .sgf__col--info {
    grid-column: 1 / -1;
  }

  .sgf__brand {
    font-size: clamp(1.5rem, 4vw, 1.85rem);
  }
}

/* mobile */
@media (max-width: 767px) {
  .sgf {
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
  }

  .sgf__copy {
    padding: 14px 0 8px;
  }

  .sgf__copy-track {
    font-size: clamp(1.9rem, 10vw, 3.7rem);
    line-height: 0.94;
  }

  .sgf__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
    padding: 24px 16px 28px;
  }

  .sgf__col--info {
    grid-column: 1 / -1;
  }

  .sgf__brand {
    display: block;
    margin-bottom: 10px;
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .sgf__address {
    font-size: 14px;
    line-height: 1.9;
    word-break: break-word;
  }

  .sgf__head {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .sgf__list li + li {
    margin-top: 8px;
  }

  .sgf__list a {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* 極細端末だけ1列 */
@media (max-width: 374px) {
  .sgf__inner {
    grid-template-columns: 1fr;
  }

  .sgf__col--info {
    grid-column: auto;
  }
}

/* アニメーション弱め環境 */
@media (prefers-reduced-motion: reduce) {
  .sgf__copy-track {
    animation: none;
  }

  .sgf__list a {
    transition: none;
  }
}