@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&family=Zen+Old+Mincho&display=swap");
/*@import url("global.css"); ※当社で一から作ったソースではないため、CSSの競合を避けるために非表示にしています*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  color-adjust: exact; }

@media print {
  #toolbar, .photo-replace {
    display: none !important; }

  body {
    background: linear-gradient(150deg, #FBF7EE 0%, #F3ECDC 46%, #ECE3CE 100%) !important; }

  .hero, .content, .cta-wrap {
    page-break-inside: avoid; }

  a[href]:after {
    content: ""; } }
:root {
  --cream: #FBF7EE;
  --cream-deep: #F3ECDC;
  --wood-dark: #3B2F22;
  --wood: #5B4632;
  --wood-light: #8B6F4E;
  --lime: #8CAF34;
  --lime-deep: #6B7F2C;
  --text: #4B3F30; }

body {
  font-family: 'Zen Kaku Gothic New','Noto Serif JP',sans-serif;
  background: linear-gradient(150deg, #FBF7EE 0%, #F3ECDC 46%, #ECE3CE 100%);
  color: var(--text);
  line-height: 1.8; }
  body a {
    color: inherit; }

.pcnone {
  display: none; }

.pctabnone {
  display: none; }

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box; }

/* ---- editor toolbar (not exported) ---- */
#toolbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12); }
  #toolbar h2 {
    font-size: 15px;
    color: #333;
    margin-right: auto; }
  #toolbar .hint {
    font-size: 12.5px;
    color: #888;
    width: 100%;
    margin-top: -6px; }
  #toolbar .swatch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #555; }

#exportBtn, #exportImgBtn, #printBtn {
  background: var(--wood-dark);
  color: var(--cream);
  border: none;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap; }
  #exportBtn:hover, #exportImgBtn:hover, #printBtn:hover {
    opacity: 0.9; }

#exportImgBtn {
  background: var(--lime-deep); }

#printBtn {
  background: #555; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  background: var(--cream);
  border-bottom: 1px solid rgba(91, 70, 50, 0.12); }
  .site-header .brand {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--wood-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; }
    .site-header .brand .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--lime);
      display: inline-block;
      flex-shrink: 0; }
  .site-header .back-link {
    font-size: 14px;
    color: var(--wood-light);
    text-decoration: none;
    border: 1px solid rgba(91, 70, 50, 0.25);
    padding: 8px 18px;
    border-radius: 999px;
    transition: all .2s ease; }
    .site-header .back-link:hover {
      background: var(--wood-dark);
      color: var(--cream);
      border-color: var(--wood-dark); }

.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 5% 70px; }
  .hero .photo-frame {
    position: relative; }
  .hero img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    /*box-shadow: 0 30px 60px -20px rgba(59,47,34,0.35);*/ }
  .hero .photo-replace {
    position: absolute;
    left: 22px;
    top: 22px;
    background: rgba(59, 47, 34, 0.75);
    color: var(--cream);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 9px 16px;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    backdrop-filter: blur(2px); }
    .hero .photo-replace:hover {
      background: rgba(59, 47, 34, 0.92); }

.hero-badge {
  position: absolute;
  right: 6%;
  bottom: -46px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A8C24A 0%, var(--lime) 100%);
  box-shadow: 0 14px 28px rgba(140, 175, 52, 0.35), 0 0 0 6px var(--cream-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; }
  .hero-badge div {
    color: var(--cream); }
  .hero-badge .zero {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px; }
  .hero-badge .ldk {
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-top: 1px; }
  .hero-badge .kanji {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 3px; }

.content {
  /*max-width: 780px;*/
  margin: 0 auto;
  padding: 64px 0 40px;
  text-align: center; }
  .content .eyebrow {
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 700;
    color: var(--lime-deep);
    letter-spacing: 5px;
    margin-bottom: 18px; }
  .content h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 3vw, 42px);
    font-weight: 700;
    color: var(--wood-dark);
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 60px; }
    .content h1 .accent {
      color: var(--lime); }
  .content .lead p {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text);
    letter-spacing: 0.5px; }
    .content .lead p + p {
      margin-top: 1em; }

.feature-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 60px auto 40px; }
  .feature-row .chip {
    background: var(--cream);
    border: 1px solid rgba(91, 70, 50, 0.18);
    color: var(--wood);
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 999px; }

.cta-wrap {
  text-align: center;
  padding: 10px 6% 90px; }

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--wood-dark);
  color: var(--cream);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 20px 46px;
  border-radius: 999px;
  box-shadow: 0 18px 32px -10px rgba(59, 47, 34, 0.45);
  transition: transform .2s ease, box-shadow .2s ease; }
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px -10px rgba(59, 47, 34, 0.55); }
  .cta-button .arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0; }

.cta-caption {
  margin-top: 18px;
  font-size: 13px;
  color: var(--wood-light);
  letter-spacing: 1px; }

.site-footer {
  text-align: center;
  padding: 34px 6%;
  background: var(--wood-dark);
  color: rgba(251, 247, 238, 0.75);
  font-size: 13px;
  letter-spacing: 1px; }
  .site-footer a {
    color: rgba(251, 247, 238, 0.9);
    text-decoration: underline; }

/* ============================================
   レスポンシブ
============================================ */
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-0 (1600px)
 
------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-1 (1380px)
 
------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 (1200px)
 
------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 960px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  body {
    font-size: 15px; }

  .pcnone {
    display: block; }

  .pctabnone {
    display: none; }

  .tabnone {
    display: none; }

  .sptabnone {
    display: none; }

  .wrapper {
    padding: 0 6vw; } }
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-4 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  body {
    font-size: 14px; }

  .pctabnone {
    display: block; }

  .tabnone {
    display: block; }

  .sptabnone {
    display: none; }

  .spnone {
    display: none; }

  .wrapper {
    padding: 0 4vw; }

  .content {
    padding: 40px 0; }
    .content h1 {
      margin-bottom: 40px;
      font-size: 26px; }
    .content .lead {
      text-align: start; }
      .content .lead p {
        font-size: 15px; }

  .feature-row {
    margin: 40px auto 15px; }

  .hero {
    padding-top: 32px;
    padding-bottom: 56px; }

  .cta-button {
    font-size: 16px;
    padding: 18px 32px; }

  .hero-badge {
    width: 96px;
    height: 96px;
    right: 4%;
    bottom: -34px; }
    .hero-badge .zero {
      font-size: 10px; }
    .hero-badge .ldk {
      font-size: 19px; }
    .hero-badge .kanji {
      font-size: 8px; } }
