<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* フローチャート */
.flowchart {
  width: 100%;
  margin: 20px 0 0 0;
  font-size: 85%;
}
.flowchart caption {
  margin: 0 0 20px 0;
  text-align: left;
  font-size: 120%;
  font-weight: bold;
  color: #ffa529;
}
.flowchart_box {
  width: 160px;
  padding: 15px 10px 10px 10px;
  position: relative;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  background-color: #ffe99e ;
}
.f_number {
  width: 25px;
  height: 25px;
  line-height: 25px;
  display: block;
  text-align: center;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #ffa529;
}
.flowchart_box p {
  margin: 0;
  padding: 0;
}
.f_arrow {
  width: 0px;
  height: 0px;
  margin: 0 5px;
  display: block;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 10px solid #ffa529;
  border-right: 0px solid transparent;
}

/* タブレット向けのレイアウトの指定：～960px */
@media only screen and (max-width: 960px) {
.f_arrow {
  margin: 0 auto;
}
}

/* タブレット向けのレイアウトの指定：～767px */
@media only screen and (max-width: 767px) {
.flowchart tr td {
  display: list-item;
  list-style: none;
}
.flowchart_box {
  width: 100%;
}
.f_arrow {
  margin: 10px auto;
  display: block;
  border-top: 10px solid #ffa529;
  border-bottom: 0px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
}</pre></body></html>