@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;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 20px;
}

.sectionTitle {
  font-size: clamp(1.8rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  color: #d2691e;
  position: relative;
  
  &::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #dc143c;
    border-radius: 2px;
  }
}