@charset "utf-8";

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

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

body {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background-color: #fbfbfb;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.sectionContainer {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 4rem 0;
}

.sectionTitle {
  font-size: clamp(1.75rem, 1.5rem + 1.25vw, 3rem);
  text-align: center;
  margin-bottom: 2rem;
}