@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

:is(textarea, input) {
  field-sizing: content; /* 内容に合わせてサイズ調整 */
}

textarea {
  resize: none;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-family: "Shippori Mincho", serif;
  background-color: #f3e9dc;
  color: #333;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  font-style: italic;
}

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

ul {
  list-style: none;
}
