/*
Theme Name: ハピくる
Theme URI: https://www.hapikul.com/
Description: 「ハピくる」のWordPressテーマです。
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hapikul
*/

/* ===== Reset CSS (ゼロベース用) ===== */

/* 余白・枠線・フォントを初期化 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5要素をブロックに */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* 基本設定 */
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 追加でよく入れる現代的リセット */
*,
*::before,
*::after {
  box-sizing: border-box;
}

img, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* 初期はPC表示、SP非表示 */
.nav--pc-head, .nav--pc-foot { display:block; }
.nav--sp-head, .nav--sp-foot { display:none; }

@media (max-width: 767px){
  .nav--pc-head, .nav--pc-foot { display:none; }
  .nav--sp-head, .nav--sp-foot { display:block; }
}

/* 体裁は自由に。例：PCフッターを3カラムで */
.menu--pc-foot {
  column-count: 3;
  column-gap: 32px;
  list-style: none;
  padding: 0;
}
.menu--pc-foot > li { break-inside: avoid; padding: 6px 0; }
