@charset "utf-8";

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

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 64px;
}

body {
  color: #5D4E72;
  font-family: sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

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

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

h1, h2 {
  font-family: "Kaisei Opti", serif;
  font-weight: 700;
  font-style: normal;
}

h1 {
  font-size: 100px;
}

h2 {
  display: inline-block;
  margin-bottom: 40px;
  padding: 0.2em 2em;
  border: 2px solid #9ec2c2;
}

h3 {
  text-align: left;
  margin-bottom: 0.5em;
}

p {
  text-align: left;
  line-height: 1.7;
}

.w-container {
  max-width: 1166px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

#news, #concept, #business, #company {
  margin-top: 80px;
  text-align: center;
}

header {
  height: 64px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.header-container, .footer-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Kaisei Opti", serif;
  font-weight: 400;
  font-style: normal;
}

.header-container p, .footer-container p {
  font-size: 24px;
  font-weight: 700;
}

.header-container ul, .footer-container ul {
  display: flex;
  gap: 32px;
}

.main-visual {
  margin-top: 64px;
  height: calc(100dvh - 64px);
  background-image: url(../images/office.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #f3e7e7;
}

.main-visual-txt {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 3px 3px 10px #333333;
}

.news-container {
  background-color: #f3e7e7;
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-container li {
  border-right: 1px solid #9ec2c2;
  padding-left: 56px;
  padding-right: 56px;
}

.news-container li:first-child {
  padding-left: 0;
}

.news-container li:last-child {
  padding-right: 0;
  border: none;
}

.concept-container {
  display: flex;
  align-items: center;
  gap: 56px;
}

.concept-container figure, .concept-container p {
  flex: 1;
}

.business li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 56px;
  margin-bottom: 56px;
}

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

.business figure, .business-txt {
  flex: 1;
}

.business figure img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.company-container {
  display: flex;
  background-color: #f3e7e7;
}

.company-container figure {
  flex: 0 0 60%;
}

.company-table {
  flex: 0 0 40%;
  padding: 24px;
  display: grid;
  place-items: center;
}

/* 枠線
 table, tr ,th ,td {
  border: 1px solid #000;
} */

table {
  border-collapse: collapse;
}

.company-table th, .company-table td {
  padding: 0.5em;
  text-align: left;
}

.company-table th {
  width: 6em;
  text-align-last: justify;
  vertical-align: top;
}

footer {
  background-color: #9ec2c2;
  height: 112px;
  display: grid;
  place-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: 80px;
}