@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-all;
}

body {
  background-color: #F6F6F6;
  color: #1C1C1C;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D70E18;
  padding-inline: 20px;
  height: 72px;
}

header .logo {
  height: 100%;
  width: 200px;
  padding: 20px 10px;
}

main {
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 100vh;
}

ul{
  list-style: disc;
  margin: 0;
  padding-left: 1.2em;
}

ul li {
}

.fz-head-xl{
  font-size: 22px;
  font-weight: bold;
  line-height: 120%;
  letter-spacing: 10%;
}
.fz-head-l{
  font-size: 18px;
  font-weight: bold;
  line-height: 150%;
  letter-spacing: 10%;
}
.fz-head-m{
  font-size: 16px;
  font-weight: bold;
  line-height: 150%;
  letter-spacing: 10%;
}

a {
  color: #0000ee;
  text-decoration: underline;
}

a:hover {
  opacity: 0.6;
}

.txt-right {
  text-align: right;
}
.txt-left {
  text-align: left;
}
.txt-center {
  text-align: center;
}


.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 168px 20px;
  max-width: 1200px;
  width: 100%;
}

.card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px 24px;
  background-color: #fff;
  max-width: 640px;
  width: 100%;
  padding: 16px 40px 40px 40px;
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
  gap: 32px 32px;
}

.card__item {
  width: 100%;
}

.card .icon {
  width: 100px;
  height: 100px;
  margin: 8px 0 0 0;
}



@media(max-width: 500px) {
  .container {
    padding: 20px;
  }
}
