/*
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
  */

/* =======================================
  base.css (LP共通スタイル)
  1rem = 10px 基準
======================================= */
/* 01. Design Tokens */
:root {
  --hero-aspect: 1200 / 560;
  --hero-px: 2.4rem;
  --header-h: 9rem;

  --sv-bar-thickness : 10px;  /* ラインの太さ */
  --sv-bar-overlap   : 6px;   /* 上に食い込ませる量 */

  /* linupの共通スケール */
  --lineup-scale: 60vw;

  /* Colors */
  --color-white: #fff;
  --color-black: #000;
  --color-text: #000;

  --color-blue: #86a6cb;
  --color-yellow: #f6da6c;
  --color-button: #172B50;
  --color-bubble: #efefed;
  --color-beige: #E3E0DB;

  --color-muted: #666;
  --color-gray: #F7F7F7;
  --color-line: #E0E0E0;
  --color-dark-gray: #4B4E54;


  /* Font Sizes (10px基準) */
  --fz-10: 1rem;   /* 10px */
  --fz-12: 1.2rem; /* 12px */
  --fz-13: 1.3rem; /* 13px */
  --fz-14: 1.4rem; /* 14px */
  --fz-16: 1.6rem; /* 16px */
  --fz-18: 1.8rem; /* 18px */
  --fz-20: 2rem;   /* 20px */
  --fz-24: 2.4rem; /* 24px */
  --fz-28: 2.8rem; /* 28px */
  --fz-30: 3.0rem; /* 30px */
  --fz-32: 3.2rem; /* 32px */
  --fz-36: 3.6rem; /* 36px */
  --fz-40: 4rem;   /* 40px */
  --fz-48: 4.8rem; /* 48px */
  

  /* Layout */
  --max-container: 90rem;   /* 900px */
  --pc-container: 80rem;    /* 800px */
  --sp-container: 100%;     /* SPの横幅 */
  --radius: 1.2rem;
  --shadow: 0 6px 16px rgba(0,0,0,.08);

  /* Letter Spacing */
  --ls-10: 1px;
  --ls-15: 1.5px;
  --ls-20: 2px;
  --ls-25: 2.5px;
  --ls-30: 3px;
  --ls-35: 3.5px;
  --ls-70: 7px;
  --ls-90: 9px;


  --space-0: 0;       /* 0px */
  --space-1: 0.5rem;  /* 5px */
  --space-2: 1rem;    /* 10px */
  --space-3: 1.5rem;  /* 15px */
  --space-4: 2rem;    /* 20px */
  --space-5: 2.5rem;  /* 25px */
  --space-6: 3rem;    /* 30px */
  --space-7: 3.5rem;  /* 35px */
  --space-8: 4rem;    /* 40px */
  --space-9: 4.5rem;  /* 45px */
  --space-10: 5rem;   /* 50px */
  --space-11: 5.5rem;   /* 50px */
  --space-12: 6rem;
  --space-13: 6.5rem;
  --space-14: 7rem;
  --space-15: 7.5rem;
  --space-16: 8rem;
  --space-17: 8.5rem;
  --space-18: 9rem;
  --space-19: 9.5rem;
  --space-20: 10rem;

  /* z-index（セクション内での競合回避用） */
  --z-bg: 0;
  --z-deco: 10;
  --z-content: 20;
  --z-float: 30;

  --sv-bar-thickness: 1rem;
  --sv-bar-overlap: .6rem;
}



.ff-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.ff-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}


/* 02. Base */
html,
body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;

  color: var(--color-text);
  background: #abb8c3;
  line-height: 1.6;
}

html {
	font-size: clamp(8.5px, calc(6px + 0.5vw), 10px);
}

p,a,dl,dd,ol,ul,li {
  font-size: var(--fz-16);
}

.disp_pc {
  display: block;
}
.disp_sp {
  display: none;
}

@media screen and (max-width: 699px) {
  p,a,dl,dd,ol,ul,li {
    font-size: var(--fz-14);
  }

  .disp_pc {
    display: none!important;
  }
  .disp_sp {
    display: block!important;
  }
}

.container {
  max-width: var(--max-container);
  width: min(100% - 2rem, var(--pc-container));
  margin-inline: auto;
}
.header_container {
  max-width: var(--max-container);
  width: min(100% - 4rem, calc(var(--pc-container) - 4rem));
  margin-inline: auto;
}

main {
	background: var(--color-white);
}


@media screen and (max-width: 850px) {
  .container {
    width: var(--sp-container);
  }
  .header_container {
    width: calc(var(--sp-container) - 2rem);
  }
}

.section {
  position: relative;
  isolation: isolate;
}

.section--tight {
  padding-block: var(--space-6);
}

.section--alt {
  background: var(--color-gray);
}

.section__title {
  font-size: var(--fz-28);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-4);
  letter-spacing: .05em;
}

/* 03. Text Utilities */
.eyebrow {
  font-size: var(--fz-14);
  color: var(--color-blue);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.muted {
  color: var(--color-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* 04. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: var(--ls-25);
  border-radius: 999px;
  border: 1px solid var(--color-button);
  background: var(--color-button);
  color: var(--color-white);
  transition: opacity .25s ease, transform .05s ease;
  cursor: pointer;
  text-decoration: none;
  width: 50rem;
}

@media screen and (max-width: 699px) {
  .btn {
    width: 70%;
    margin-inline: auto;
  }
}

.btn:hover {
  opacity: .85;
}
.btn:active {
  transform: translateY(1px);
}


/* 05. title */
.ttl {
  margin-block: var(--space-10);
}
.ttl img {
  text-align: center;
  margin: auto;
	height: 6rem;
}

@media screen and (max-width: 499px) {
  .ttl img {
    height: 4.5rem;
  }
}


/* ===== Download Section ===== */
.download {
  text-align: center;
  padding: var(--space-6) 0;
  border-radius: var(--radius);
}

.download p {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: var(--ls-15);
  margin-block-end: 1.2rem;
}

.download .text-link {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: var(--ls-15);
  color: var(--color-text);
  text-decoration: underline;
  margin-block-start: 1.8rem;
  transition: opacity .25s ease;
}

.download .text-link:hover {
  opacity: 0.7;
}


@media(min-width: 698px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/*
.header.is-scrolled {
  background: linear-gradient(90deg, #f0bc68 0%, #f0bc68 50%, #c4d7d1 50%, #c4d7d1 100%)!important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
  */