@charset "UTF-8";

/* =========================================================
   Reset
========================================================= */

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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}


ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
picture {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

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

/* =========================================================
   Base
========================================================= */

:root {
  /* Brand colors */
  --color-accent: #e3494b;
  --color-gray0: #ffffff;
  --color-brown: #bda684;
  --color-green: #47a386;
  --color-navy: #3f6f86;

  /* Text colors */
  --color-text-main: #2a363c;
  --color-text-sub: #696969;

  /* Background colors */
  --color-back-pink: #fdf0f1;
  --color-back-beige: #fcfbf9;
  --color-back-lightbrown: #f5f2ef;

  /* Layout */
  --content-width: 1130px;
  --page-gutter-pc: 40px;
  --page-gutter-tablet: 32px;
  --page-gutter-sp: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  color: var(--color-text-main);
  font-family:
    "Nunito", "Helvetica Neue", "Noto Sans JP", "Yu Gothic Medium", YuGothic,
    "游ゴシック Medium", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

/* --------------------------------------------------
  Utility
-------------------------------------------------- */

/* PC / SP 改行制御 */
.br-pc {
  display: block;
}

.br-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .br-pc {
    display: none;
  }

  .br-mobile {
    display: block;
  }
}
