/*----------------------------------------------------
Outline
----------------------------------------------------*/
#outline .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 2.07;
  border-bottom: 1px solid #dedede;
  padding: 1em 0;
}
@media all and (min-width: 751px) {
  #outline .list > li {
    gap: 13%;
    padding: 1.42em 2em;
  }
}
#outline .list > li .head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 6em;
}
#outline .list > li .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media all and (min-width: 751px) {
  #outline .list > li .content.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 1em;
       -moz-column-gap: 1em;
            column-gap: 1em;
    row-gap: 0.2em;
  }
}

/*----------------------------------------------------
Access
----------------------------------------------------*/
#access .map {
  aspect-ratio: 105/61;
}
@media all and (min-width: 751px) {
  #access .map {
    aspect-ratio: 470/183;
  }
}
#access .map iframe {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (min-width: 751px) {
  #access .map iframe {
    border-radius: 15px;
  }
}
#access .address {
  line-height: 2.07;
  margin-top: 16px;
}
@media all and (min-width: 751px) {
  #access .address {
    line-height: 2.14;
    margin-top: 34px;
  }
}
#access .map_btn {
  width: min(304px, 100%);
  margin-top: 30px;
}
@media all and (max-width: 750px) {
  #access .map_btn {
    margin-inline: auto;
  }
}
#access .map_btn a {
  position: relative;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #00a3df;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  padding: 0.9em;
}
@media all and (min-width: 751px) {
  #access .map_btn a {
    border-radius: 10px;
  }
}
#access .map_btn a::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/watercolor/mdl_blue.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (hover: hover) {
  #access .map_btn a, #access .map_btn a::before {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  #access .map_btn a:hover {
    color: #fff;
    background-color: #00a3df;
  }
  #access .map_btn a:hover::before {
    opacity: 0;
  }
}

/*----------------------------------------------------
History
----------------------------------------------------*/
#history .history {
  position: relative;
}
#history .history .readmore_btn {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  cursor: pointer;
  z-index: 1;
}
@media all and (min-width: 751px) {
  #history .history .readmore_btn {
    height: 100px;
  }
}
#history .history .readmore_btn::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/common/icon/arrow_down.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 21/11;
  width: 20px;
}
#history .history .readmore_btn::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
  background: linear-gradient(transparent 0%, #fff 100%);
  pointer-events: none;
  z-index: -1;
}
@media all and (min-width: 751px) {
  #history .history .readmore_btn::after {
    height: 100px;
  }
}
@media (hover: hover) {
  #history .history .readmore_btn::before {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  #history .history .readmore_btn:hover::before {
    top: 60%;
  }
}
#history .history input[type=checkbox] {
  display: none;
}
#history .history input[type=checkbox]:checked ~ .list {
  height: auto;
}
#history .history input[type=checkbox]:checked ~ label {
  display: none;
}
#history .history .list {
  overflow: hidden;
  height: 490px;
}
@media all and (min-width: 751px) {
  #history .history .list {
    height: 500px;
  }
}
#history .history .list > li:not(:last-child) {
  margin-bottom: 8px;
}
#history .history .list > li .year {
  font-weight: bold;
  font-size: 14px;
}
@media all and (min-width: 751px) {
  #history .history .list > li .year {
    font-size: 20px;
  }
}
#history .history .list > li .content {
  font-size: 13px;
  line-height: 1.9;
  margin: 8px 0 0 26px;
  border-left: 1px solid #595757;
  padding: 8px 0 8px 20px;
}
@media all and (min-width: 751px) {
  #history .history .list > li .content {
    font-size: 14px;
    margin: 10px 0 0 40px;
    border-left-width: 2px;
    padding: 20px 0 20px 40px;
  }
}
#history .history .list > li .content .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
#history .history .list > li .content .wrap:not(:last-child) {
  margin-bottom: 10px;
}
#history .history .list > li .content .wrap .month {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: bold;
}
#history .history .list > li .content .wrap .tx {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*----------------------------------------------------
Data
----------------------------------------------------*/
#data .data_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
@media all and (min-width: 751px) {
  #data .data_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 40px;
    width: min(800px, 100%);
    margin-inline: auto;
  }
}
#data .data_list > li {
  text-align: center;
}
@media all and (min-width: 751px) {
  #data .data_list > li {
    width: 47.5%;
  }
  #data .data_list > li.full {
    width: 100%;
  }
}
#data .data_list > li .head {
  font-weight: bold;
  font-size: 16px;
}
@media all and (min-width: 751px) {
  #data .data_list > li .head {
    font-weight: 500;
    font-size: 24px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  #data .data_list > li .head {
    font-size: 20px;
  }
}
#data .data_list > li .content {
  margin-top: 10px;
}
@media all and (min-width: 751px) {
  #data .data_list > li .content {
    margin-top: 20px;
  }
}
#data .data_list > li .content p {
  color: #294599;
  font-weight: bold;
  line-height: 1;
  font-size: 33px;
}
@media all and (min-width: 751px) {
  #data .data_list > li .content p {
    font-size: 46px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  #data .data_list > li .content p {
    font-size: 36px;
  }
}
#data .data_list > li .content p:not(:last-child) {
  margin-bottom: 6px;
}
@media all and (min-width: 751px) {
  #data .data_list > li .content p:not(:last-child) {
    margin-bottom: 14px;
  }
}
#data .data_list > li .content p span {
  font-size: 0.63em;
}
@media all and (min-width: 751px) {
  #data .data_list > li .content p span {
    font-size: 0.69em;
  }
}
#data .data_list > li .content p .before {
  display: block;
  font-size: 0.36em;
  margin-bottom: 0.5em;
}
@media all and (min-width: 751px) {
  #data .data_list > li .content p .before {
    font-size: 0.52em;
  }
}
#data .data_list > li .content p .after {
  display: block;
  font-size: 0.34em;
  margin-top: 0.5em;
}
@media all and (min-width: 751px) {
  #data .data_list > li .content p .after {
    font-size: 0.5em;
  }
}
#data .data_list > li .content p.note {
  font-size: 12px;
  line-height: 1.8;
}
@media all and (min-width: 751px) {
  #data .data_list > li .content p.note {
    font-size: 16px;
  }
}