@charset "UTF-8";


/*======================================

||| 変数

======================================*/

:root {
  --fontSize_s: 1.2rem;
  --fontSize_m: 1.4rem;
  --fontSize_l: 1.6rem;
}

:root {
  --color_base: #FFF;
  --color_text: #333;
  --color_main: #A3C2FF;
  --color_pu: #BFACF8;
  --color_pk: #F8ACCD;
  --color_re: #FF6B83;
  --color_bl: #008CFF;
  --color_ttl: #6046BF;
  --color_grey: #aaa;
}

:root {
  --gap: 8px;
  --gaps: calc(var(--gap) * 2);
  --gap_content: calc(var(--gap) * 4);
  --gap_section: calc(var(--gap) * 6);
  --innerWid_m: min(94%, 523px);
  --innerWid_s: min(80%, 523px);
}

@media screen and (min-width:568px) {
  :root {
    --fontSize_s: 1.4rem;
    --fontSize_m: 1.6rem;
    --fontSize_l: 1.8rem;
  }
}

@media screen and (min-width:768px) {
  :root {
    --gap_content: calc(var(--gap) * 6);
    --gap_section: calc(var(--gap) * 12);
    --innerWid_m: min(96%, 1200px);
    --innerWid_s: min(80%, 960px);
  }
}

:root {
  --font_gothic: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --font_ttl_en:
    "Racing Sans One", "Noto Sans JP", sans-serif;
}


/*======================================

||| 共通設定

======================================*/

html {
  font-size: 62.5%;
}

body {
  background-color: var(--color_base);
  color: var(--color_text);
  font-size: var(--fontSize_m);
  font-family: var(--font_gothic);
  line-height: 1.8;
}

img,
picture,
a:has(img),
span:has(img) {
  display: block;
}

::before,
::after {
  pointer-events: none;
}

img {
  max-width: 100%;
}

a {
  color: var(--color_text);
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

h3 {
  font-size: 2rem;
  line-height: 1.7;
}


html {
  scrollbar-gutter: auto !important;
}


@media screen and (min-width:768px) {
  h3 {
    font-size: 3rem;
  }

  /*--- media (min-width:768px) --- */
}

/* classed _____________________________*/

.inner {
  width: var(--innerWid_m);
  margin-inline: auto;
}

.ib {
  display: inline-block;
}

@media screen and (min-width:380px) {
  .u380 {
    display: none;
  }
}

@media screen and (min-width:480px) {
  .u480 {
    display: none;
  }
}

@media screen and (min-width:568px) {
  .is-sp {
    display: none;
  }
}