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

body {
  font-family: "arial",'Noto Serif JP', serif;
	font-size: 16px;
  color: #111;
  background: #fff;
  line-height: 1.8;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

p {
	font-size: 17px;
}

/* 1. First View */
.fv {
/*  height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
	padding: 140px 0 90px;
}

.logo {
  text-align: center;
}

.logo img {
  width: clamp(220px, 40vw, 600px);
  height: auto;
  display: block;
  margin: 0 auto;
}


/* 2. Statement */
.statement {
  padding: 60px 0;
}

.statement .container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.statement-text {
  flex: 8;
}

.statement-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
	line-height: 1.3;
}

.statement-text p {
  margin-bottom: 10px;
	text-align: justify;
}

.statement-text p.signature {
  text-align: right;
  font-weight: 600;
	margin-bottom: 0;
}

.statement-image {
  flex: 2;
}

.statement-image img {
  width: 100%;
  height: auto;
  display: block;
}


/* 3. Story */
.story {
  padding: 60px 0 100px;
/*  background: #f7f7f7;*/
}

.story h2 {
  font-size: 28px;
  margin-bottom: 15px;
	line-height: 1.3;
}

.story p {
  margin-bottom: 40px;
	text-align: justify;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 5px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: #fff;
}

table tr:nth-child(2n+1) {
	background: #f2f2f2;
}

th, td {
  border: 1px solid #ddd;
  padding: 3px 3px;
  font-size: 12px;
  text-align: left;
    line-height: 1.3;
	white-space: nowrap;
}

th {
  background: #fff;
	font-size: 10px;
	padding: 6px 3px;
}

.story td:nth-child(-n+3) {
	font-family: "courier-new", sans-serif;
}

.story td:first-child {
	text-align: right;
}

.story p.reference {
  text-align: right;
  font-size: 13px;
  opacity: 0.7;
}


/* Responsive */
@media (max-width: 768px) {
	p {
	font-size: 16px;
	}
	
	.statement .container {
		gap: 30px;
	}
	
  .statement {
    padding: 40px 0;
  }

  .story {
    padding: 40px 0;
  }
}
@media (max-width: 600px) {
  .statement .container {
    flex-direction: column;
  }
  .statement-text,
  .statement-image {
    flex: unset;
    width: 100%;
  }
	.statement-image img {
		max-width: 160px;
        margin-left: auto;
	}
	th, td {
	  font-size: 15px;
	}
}



