@charset "utf-8";

/* ============================================================
   charge
============================================================ */

#main h1 {
  margin-bottom: 30px;
}
#main h1 img {
  width: 100%;
  max-width: 503px;
  height: auto;
}

#lead {
  margin-bottom: 30px;
}
#lead strong img {
  width: 100%;
  max-width: 317px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
#lead p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
}

#abstract {
  margin-bottom: 40px;
  padding: 20px;
  background: #fff9f0;
  border: 1px solid #d4b896;
  border-radius: 6px;
}
#abstract dl img {
  width: 100%;
  max-width: 883px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}
#abstract p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}
#abstract img#img_abst {
  width: 100%;
  max-width: 298px;
  height: auto;
  display: block;
}

#d_charge {
  margin-bottom: 40px;
}
#d_charge h2 {
  margin-bottom: 10px;
}
#d_charge h2 img {
  width: 100%;
  max-width: 881px;
  height: auto;
}
#d_charge p#notes {
  font-size: 0.78rem;
  color: #666;
  margin-bottom: 24px;
}

/* グループ見出し */
.group {
  margin-bottom: 30px;
}
.group h3 {
  margin-bottom: 12px;
  padding: 8px 12px;
  border-left: 4px solid #20664e;
  font-size: 1rem;
  font-weight: bold;
  color: #20664e;
  background: #f0f7f4;
  border-radius: 0 4px 4px 0;
}

/* 料金アイテム */
.c_item {
  padding: 14px 0;
  border-bottom: 1px dotted #ccc;
}
.c_item dl {
  display: grid;
  grid-template-columns: 120px 1fr 150px 90px;
  grid-template-rows: auto auto;
  gap: 8px 16px;
  align-items: center;
}
.c_item dt {
  grid-column: 1 / 5;
  grid-row: 1;
  color: #20664e;
  font-size: 0.95rem;
  font-weight: bold;
}
.c_item dd.img {
  grid-column: 1;
  grid-row: 2;
  text-align: center;
}
.c_item dd.img img {
  width: 100%;
  height: auto;
}
.c_item dd.caption {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.82rem;
  color: #444;
  line-height: 1.6;
}
.c_item dd.price {
  grid-column: 3;
  grid-row: 2;
  text-align: right;
  color: #b83d14;
  font-size: 1rem;
  font-weight: bold;
  white-space: nowrap;
}
.c_item dd.btn {
  grid-column: 4;
  grid-row: 2;
  text-align: center;
}
.c_item dd.btn img {
  width: 82px;
  height: auto;
}

/* ============================================================
   responsive (max 768px)
============================================================ */
@media (max-width: 768px) {

  .c_item dl {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .c_item dt {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .c_item dd.img {
    grid-column: 1;
    grid-row: 2;
  }
  .c_item dd.caption {
    grid-column: 2;
    grid-row: 2;
  }
  .c_item dd.price {
    grid-column: 1 / 3;
    grid-row: 3;
    text-align: left;
  }
  .c_item dd.btn {
    grid-column: 1 / 3;
    grid-row: 4;
    text-align: left;
  }
}