/**
 * minimal reset
 */

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
figure {
  margin: 0;
  padding: 0;
}

/**
 * browser
 */

body {
  font-family: 'HiraKakuProN-W6', 'Noto Sans CJK JP BOLD';
  line-height: 44px;
}

h1 {
  background: linear-gradient(to right, #ff972f, #ffc679);
  border-top-right-radius: 40px;
  border-bottom-right-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

h1::before {
  content: '★';
  width: 24px;
  height: 24px;
  color: #ffdcae;
  font-size: 24px;
  margin-left: 16px;
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

h2 {
  border-top-left-radius: 4px;
  border-top-right-radius: 24px;
  background-color: #ffb863;
  display: flex;
  flex-direction: row;
  align-items: center;
}

h3 {
  position: relative;
  display: flex;
}

h3::before {
  content: '★';
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #ff7600;
  margin-right: 10px;
}

h3::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
}

img {
  display: block;
}

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

hr {
  max-width: 920px;
  height: 4px;
  border: 0;
}

table {
  display: table;
  table-layout: auto;
  border-collapse: collapse;
}

td,
th {
  border-style: solid;
  vertical-align: middle;
}

.star1 {
  display: flex;
}

.star1::before {
  content: '★';
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #cccccc;
  margin-right: 10px;
}

.star2 {
  display: flex;
}

.star2::before {
  content: '★';
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #cccccc;
  margin-right: 16px;
}

.star2::after {
  content: '★';
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #cccccc;
  margin-left: 16px;
}

/**
 * attributes
 */
.fc_black {
  color: #333333 !important;
}

.fc_gray {
  color: #666666 !important;
}

.fc_blue {
  color: #0fb5ff !important;
}

.fc_red {
  color: #ff5f5f !important;
}

.fc_pink {
  color: #ff3381 !important;
}

.flex {
  display: flex;
  flex-direction: row;
}

.flex_center {
  justify-content: center;
}

.flex_space {
  justify-content: space-between;
}

.flex_vertical {
  flex-direction: column;
}

.flex_fit {
  flex: 1;
}

.fs_24 {
  font-size: 24px !important;
  line-height: 28px !important;
}

.fs_28 {
  font-size: 28px !important;
  line-height: 32px !important;
}

.fs_32 {
  font-size: 32px !important;
  line-height: 36px !important;
}

.fs_36 {
  font-size: 36px !important;
  line-height: 40px !important;
}

.fs_40 {
  font-size: 40px !important;
  line-height: 44px !important;
}

.fs_48 {
  font-size: 48px !important;
  line-height: 52px !important;
}

.fs_60 {
  font-size: 60px !important;
  line-height: 54px !important;
}

.mt_8 {
  margin-top: 8px;
}

.mt_16 {
  margin-top: 16px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_32 {
  margin-top: 32px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_48 {
  margin-top: 40px;
}

.ml_24 {
  margin-left: 24px;
}

.align_left {
  text-align: left;
}

.align_center {
  text-align: center;
}

.align_right {
  text-align: right;
}

/**
 * unity
 */
body {
  width: 1000px;
  padding: 0 40px;
  font-size: 36px;
  color: #333333;
}

body > * {
  max-width: 920px;
}

h1 {
  width: 920px;
  height: 72px;
  color: white;
  font-size: 42px;
}

h2 {
  width: 880px;
  height: 60px;
  color: white;
  font-size: 36px;
  padding-left: 36px;
}

h3 {
  width: 920px;
  height: 62px;
  color: #333333;
  font-size: 42px;
}

section {
  padding-bottom: 48px;
}

p {
  max-width: 920px;
}

.bg_gray {
  background-color: rgba(144, 120, 91, 0.1);
  padding: 24px;
}

.bg_white {
  background-color: white;
  padding: 40px;
}

.w_920 {
  width: 920px;
}

.w_880 {
  width: 880px;
}

hr {
  width: 100%;
  min-height: 4px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  margin-top: 24px;
  margin-bottom: 24px;
}

table {
  width: 100%;
  text-align: left;
}

td,
th {
  border-width: 2px;
  border-color: rgb(204, 204, 204);
  min-height: 72px;
  padding: 14px 14px 14px 24px;
  border-color: #666666;
}

th {
  background-color: rgba(74, 85, 89, 0.502);
  color: white;
}

.table1 {
}

.table1 td,
.table1 th {
  border-color: #495559;
  border-width: 4px;
}

.table2 {
  border-color: #495559;
  border-width: 4px;
}

.table2 td,
.table2 th {
  border-color: #495559;
  border-width: 4px;
}

.table2 th {
  background-color: #ff9c46;
  color: white;
}

.table3 {
  background-color: rgba(73, 86, 90, 0.1);
}

.table3 th {
  background-color: #495559;
}

.table3 td,
.table3 th {
  border-width: 0;
}
