 :root {
    --bg:        #ffffff;
    --text:      #000000;
    --text-sec:  #333333;
    --gray:      #777777;
    --silver:    #cccccc;
    --silver-dk: #999999;
    --line:      #dddddd;
    --line-dk:   #555555;

    --font-sans:  "Lato", system-ui, sans-serif;
    --font-serif: "EB Garamond", Georgia, serif;
    --font-title: "Bruno Ace SC", serif;
  }

 html{
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
 }

body {
  margin: 0;
  width: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'EB Garamond', sans-serif;
  -webkit-font-smoothing: antialiased;
}

#articleTitle {
  text-align: center;
  font-family: var(--font-title);
  text-transform: uppercase;
  color: var(--text);
}

#articleTitle::after {
  content: "";
  display: block;
  background: linear-gradient(90deg, transparent, var(--silver-dk), transparent);
}

h1:not(#articleTitle){
    font-family:var(--font-serif);
    text-align:center;
    color:var(--text);
}

.intro {
  font-family: var(--font-serif);
  color: var(--gray);
  text-align: center;
  font-style: italic;
}

.article{
    display:grid;
}

.division{
    border:1px solid var(--line);
    background:#fafafa;
    position:relative;
    transition:transform 0.35s ease,border-color 0.35s ease,box-shadow 0.35s ease;
}

.division:hover{
    border-color:var(--silver-dk);
    box-shadow:0 18px 45px rgba(0,0,0,0.08);
}

.division::before{
  content:"";
  position:absolute;
    background:linear-gradient(90deg,var(--silver-dk),transparent);
}

.division h2{
    font-family:var(--font-serif);
    color:var(--text);
}

.division p{
color:var(--text-sec);
font-family: 'EB Garamond', sans-serif;
}

ul li{
  font-family: 'EB Garamond', sans-serif;
  font-size: 1.1rem;
}

.division strong{
color:var(--text);
}

.images{
display:flex;
justify-content:center;
}

.picture{
overflow:hidden;
background:#f8f8f8;
border:1px solid var(--line);
}

.image{
display:block;
transition:transform 0.5s ease,filter 0.5s ease;
}

.picture:hover .image{
transform:scale(1.03);
filter:brightness(1.02);
}

figcaption{
    color:var(--gray);
    background:#ffffff;
    border-top:1px solid var(--line);
}

::selection{
  background:var(--silver);
  color:var(--text);
}

@media screen and (min-width: 1025px) {
body {
  margin: 0;
  font-size: 1.075rem;
}

article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw 10rem;
}

#articleTitle {
margin: 6rem auto 6rem;
font-size: clamp(1.9rem, 4vw, 2.4rem);
font-weight: 400;
letter-spacing: 0.55em;
white-space: nowrap;
}

#articleTitle::after {
width: 220px;
height: 2px;
margin: 2.8rem auto 0;
}

h1:not(#articleTitle){
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 auto 2.5rem;
  max-width: 800px;
}

.intro {
  font-size: 1.28rem;
  line-height: 1.75;
  margin: 0 auto 4rem;
  max-width: 780px;
}

.division{
  padding: 2.4rem;
}

.division::before{
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.division h2{
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 1.8rem;
  line-height: 1.25;
}

.division p{
  margin: 0 0 1.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.division p:last-child{
  margin-bottom: 0;
}

.division strong{
  font-weight: 700;
}

.article{
  gap: 2.5rem;
}

.images{
  margin-top: 5rem;
}

.picture{
  max-width: 400px;
  width: 100%;
  margin: 20px auto;
  justify-content: center;
}

.image{
  width: 100%;
  height: auto;
}

figcaption{
  padding: 1.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
}

@media screen and (min-width: 901px) and (max-width: 1024px){
body {
  margin: 0;
  font-size: 1.075rem;
}

article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw 10rem;
}

#articleTitle {
margin: 6rem auto 6rem;
font-size: clamp(1.9rem, 4vw, 2.4rem);
font-weight: 400;
letter-spacing: 0.55em;
white-space: nowrap;
}

#articleTitle::after {
width: 220px;
height: 2px;
margin: 2.8rem auto 0;
}

h1:not(#articleTitle){
  font-size: clamp(1.7rem,7vw,2.5rem);
  margin-bottom: 1.8rem;
}

h1:not(#articleTitle){
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 2rem;
}

.intro{
  max-width: 900px;
  margin: 0 auto 5rem;
  font-size: 1.2rem;
  line-height: 1.95;
}

.division{
  padding: 2.4rem;
}

.division::before{
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.division h2{
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 1.8rem;
  line-height: 1.25;
}

.division p{
  margin: 0 0 1.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.division p:last-child{
  margin-bottom: 0;
}

.division strong{
  font-weight: 700;
}

.article{
  gap: 2.5rem;
}

.images{
  margin-top: 5rem;
}

.picture{
  max-width: 400px;
  width: 100%;
  margin: 20px auto;
  justify-content: center;
}

.image{
  width: 100%;
  height: auto;
}

figcaption{
  padding: 1.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
}


@media screen and (min-width: 769px) and (max-width: 900px) {
body {
  margin: 0;
  font-size: 1.075rem;
}

article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw 10rem;
}

#articleTitle {
margin: 6rem auto 6rem;
font-size: clamp(1.9rem, 4vw, 2.4rem);
font-weight: 400;
letter-spacing: 0.55em;
}

#articleTitle::after {
width: 220px;
height: 2px;
margin: 2.8rem auto 0;
}

h1:not(#articleTitle){
  font-size: clamp(1.7rem,7vw,2.5rem);
  margin-bottom: 1.8rem;
}

h1:not(#articleTitle){
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 2rem;
}

.intro{
  max-width: 900px;
  margin: 0 auto 5rem;
  font-size: 1.2rem;
  line-height: 1.95;
}

.division{
  padding: 2.4rem;
}

.division::before{
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.division h2{
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 1.8rem;
  line-height: 1.25;
}

.division p{
  margin: 0 0 1.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.division p:last-child{
  margin-bottom: 0;
}

.division strong{
  font-weight: 700;
}

.article{
  gap: 2.5rem;
}

.images{
  margin-top: 5rem;
}

.picture{
  max-width: 400px;
  width: 100%;
  margin: 20px auto;
  justify-content: center;
}

.image{
  width: 100%;
  height: auto;
}

figcaption{
  padding: 1.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
}


@media screen and (min-width: 481px) and (max-width: 768px){
body {
  margin: 0;
  font-size: 1.075rem;
}

article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw 10rem;
}

#articleTitle {
margin: 6rem auto 6rem;
font-size: clamp(1.9rem, 4vw, 2.4rem);
font-weight: 400;
letter-spacing: 0.55em;
}

#articleTitle::after {
width: 220px;
height: 2px;
margin: 2.8rem auto 0;
}

h1:not(#articleTitle){
  font-size: clamp(1.7rem,7vw,2.5rem);
  margin-bottom: 1.8rem;
}

h1:not(#articleTitle){
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 2rem;
}

.intro{
  max-width: 900px;
  margin: 0 auto 5rem;
  font-size: 1.2rem;
  line-height: 1.95;
}

.division{
  padding: 2.4rem;
}

.division::before{
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.division h2{
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 1.8rem;
  line-height: 1.25;
}

.division p{
  margin: 0 0 1.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.division p:last-child{
  margin-bottom: 0;
}

.division strong{
  font-weight: 700;
}

.article{
  gap: 2.5rem;
}

.images{
  margin-top: 5rem;
}

.picture{
  max-width: 400px;
  width: 100%;
  margin: 20px auto;
  justify-content: center;
}

.image{
  width: 100%;
  height: auto;
}

figcaption{
  padding: 1.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
}


@media screen and (min-width: 345px) and (max-width: 480px){
body {
  margin: 0;
  font-size: 1.075rem;
}

article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw 10rem;
}

#articleTitle {
  margin: 4rem auto 1rem;
  font-size: clamp(1.4rem, 3vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.55em;
}

#articleTitle::after {
width: 220px;
height: 2px;
margin: 2.8rem auto 0;
}

h1:not(#articleTitle){
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 auto 2.5rem;
  max-width: 800px;
}

.intro{
  max-width: 900px;
  margin: 0 auto 5rem;
  font-size: 1.2rem;
  line-height: 1.95;
}

.division{
  padding: 2.4rem;
}

.division::before{
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.division h2{
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 1.8rem;
  line-height: 1.25;
}

.division p{
  margin: 0 0 1.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.division p:last-child{
  margin-bottom: 0;
}

.division strong{
  font-weight: 700;
}

.article{
  gap: 2.5rem;
}

.images{
  margin-top: 5rem;
}

.picture{
  max-width: 400px;
  width: 100%;
  margin: 20px auto;
  justify-content: center;
}

.image{
  width: 100%;
  height: auto;
}

figcaption{
  padding: 1.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
}


@media screen and (max-width: 344px) {
body {
  margin: 0;
  font-size: 1.075rem;
}

article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw 10rem;
}

#articleTitle {
  margin: 4rem auto 1rem;
  font-size: clamp(1.4rem, 3vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.55em;
}

#articleTitle::after {
width: 220px;
height: 2px;
margin: 2.8rem auto 0;
}

h1:not(#articleTitle){
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 auto 2.5rem;
  max-width: 800px;
}

.intro {
  font-size: 1.28rem;
  line-height: 1.75;
  margin: 0 auto 4rem;
  max-width: 780px;
}

.division{
  padding: 2.4rem;
}

.division::before{
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.division h2{
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 1.8rem;
  line-height: 1.25;
}

.division p{
  margin: 0 0 1.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.division p:last-child{
  margin-bottom: 0;
}

.division strong{
  font-weight: 700;
}

.article{
  gap: 2.5rem;
}

.images{
  margin-top: 5rem;
}

.picture{
  max-width: 400px;
  width: 100%;
  margin: 20px auto;
  justify-content: center;
}

.image{
  width: 100%;
  height: auto;
}

figcaption{
  padding: 1.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
}