@charset "UTF-8";
/* CSS Document */
/*
GENERAL STYLING
================================================ */
body {
  text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
}
section {
  position: relative;
}
/*
article {
  margin-bottom: 1rem;
  padding: 1rem 3rem;
  background: var(--light-green);
  border-radius: 8px;
}
*/
img {
  max-width: 100%;
}
article{
border-top: 1px solid #d5d4cf;   /* 上線 */
  padding: 1rem 6%;                /* 内側の余白 */
  margin: 10px 0;               /* ボックス間の余白 */
}

#guide a {
  text-decoration: none;
  color: inherit;
}
#guide article a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000;
  line-height: 2em;
}
/*
article a {
  --underline-color: var(--green);
  --underline-thick: 1px;
  position: relative;
  text-decoration: none;
  color: inherit;
  padding-bottom: 3px;
}
article a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: var(--underline-thick);
  width: 100%;
  background: var(--underline-color);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 280ms cubic-bezier(.25,.8,.25,1);
  transition: all 0.7s ease;
}

article a:hover::after,
article a:focus::after {
  transform: scaleX(1);
}*/

#guide section {}
#page-bg{
	display: block;
	margin: 0 4%;
	height: 50vh;
  background-image: url("../images/guide/guide-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
#keyWrap.thick.kwAbout {
  background-image: url("../images/guide/guide-bg.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
}
#keyWrap.thick {
  color: #fff;
  width: 100%;
  height: 50vh;
  display: block;
  background-size: cover;
  background-position: 20% center;
  background-attachment: scroll;
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 20px;
  padding: 60px 4%;
}
.guide-grid:last-child{
border-bottom: 1px solid #d5d4cf;   /* 上線 */
}

/* タブレット以上：2列 */
@media (min-width: 640px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* デスクトップ以上：3列 */
@media (min-width: 1024px) {
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}