/* 
--- 01 TYPOGRAPHY SYSTEM 

- Font Size(px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Mediam: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter apacing
0.5px
0.75px

--- 02 COLOR

- Primary: #d22f2a
- Secondary: #d7443f
- Tints: #f6d5d4 #e4827f #db5955
- Shades: #541311
- Accents:
- Button: #fab005
- Greys:
#4c4b4c (Lightest grey allowed on #fff)
#767676
#6f6f6f (Lightest grey allowed on #fdf2e9 )
#555
#333

--- 05 SHADOWS
0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS
Default: 9px
Medium: 11px

--- 07 WHITESPACE
- Spacing System (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*/

/**************************/
/* GENERAL REUSABLE COMPONENTS */
/**************************/

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

html {
  /* 10px / 16px = 0.625 = 62.5% */
  /* 1rem = 10px */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Rubik", "Inter", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

h2 {
  font-size: 4.2rem;
}

h3 {
  font-size: 3.6rem;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(250, 176, 5, 0.501);
}

.margin-bottom-md {
  margin-bottom: 9.6rem;
}

.margin-bottom-sm {
  margin-bottom: 3.2rem;
}

.margin-bottom-sm-cta {
  margin-bottom: 1.2rem;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.heading-primary {
  color: #fff;
  font-size: 5.2rem;
  line-height: 1.1;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  color: #2a0908;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.subheading {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #a82622;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

/***********/
.btn,
.btn:link,
.btn:visited {
  display: inline-block;

  text-decoration: none;
  font-family: inherit;
  font-size: 2rem;
  font-weight: 600;
  /* padding: 1.6rem 3.2rem; */
  border-radius: 15px;
  border: none;
  background-color: #fab005;
  color: #fff;

  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.btn:hover,
.btn:active {
  background-color: #e19e05;
  cursor: pointer;
}

.btn--form {
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}

.btn--form:hover {
  background-color: #fdf2e9;
  color: #555;
}

.container {
  max-width: 120rem;
  padding: 0 4.8rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 12.8rem;
}

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.gird--center-v {
  align-items: center;
}

/* お知らせ欄のスタイル */
.announcement {
  background-color: #ffdd57; /* 明るい黄色 */
  padding: 10px 0; /* 上下のパディング */
  font-size: 2rem;
  line-height: 1.6;
}

.announcement p {
  margin: 0; /* マージンの初期化 */
  color: #333; /* テキストの色 */
  font-weight: bold; /* テキストを太字に */
}

.announcement a {
  color: #d43f00; /* リンクの色 */
  text-decoration: underline; /* アンダーラインの装飾 */
}

.about .message .pic-scenery {
  position: relative;
  width: 600px;
  height: 570px;
  z-index: 0;
}

.about .message .discription {
  position: relative;
  width: 50%;
  margin: -400px 0 0 480px;
  z-index: 1;
  padding: 40px 24px;
  background-color: #D22F2A;
}
.about .aboutus table {
  display: block;
  width: 100%;
  padding-left: 24px;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.about .message .borderless {
  position: absolute;
  top: 70px;
  right: 80px;
  z-index: 2;
}

.about .aboutus table tbody tr th {
  width: 144px;
  text-align: left;
  vertical-align: top;
}

body.about td, body.about th {
  background: none;
  border: none;
}
.about .aboutus table tbody tr td {
  width: 792px;
}