p {
  font-size: 1.6rem;
  line-height: 1.6;
  vertical-align: middle;
}
p img {
  display: inline;
  margin: 0 5px;
}

table {
  border-collapse: collapse;
  border: 1px solid #CFBBAD;
  font-size: 1.6rem;
  text-align: left;
  vertical-align: top;
  max-width: 100%;
  width: 100%;
  height: fit-content;
}

th {
  background-color: #F3E7D6;
  border: 1px solid #CFBBAD;
  font-weight: bold;
  padding: 0.8em 0.5em;
  vertical-align: top;
}
th *:not(li) {
  margin-top: 5px;
}
th *:first-child {
  margin-top: 0;
}

td {
  background-color: #fff;
  border: 1px solid #CFBBAD;
  padding: 0.8em;
  vertical-align: top;
}
td *:not(li) {
  margin-top: 5px;
}
td *:first-child {
  margin-top: 0;
}

.textCenter {
  text-align: center;
}

.textMiddle {
  vertical-align: middle;
}

.pageHowtoRmmAgri .borderLeftTitle::before {
  background-color: #78BE5A;
}
.pageHowtoRmmMarine .borderLeftTitle::before {
  background-color: #2D83D3;
}

.attemptWrap {
  display: grid;
  gap: 30px;
}

.attempt {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}

.attemptHead {
  color: #EA6001;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
.attemptHead.new {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.attemptHead.new::before {
  content: "NEW";
  background-color: #F90000;
  border-radius: 5px;
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  width: 50px;
  min-width: 50px;
  padding: 5px 0;
}

.history {
  border-top: 1px dashed #CFBBAD;
  display: grid;
  gap: 10px 20px;
  width: 100%;
  margin-top: 15px;
  padding-top: 15px;
}
.history:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.historyDate {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  vertical-align: middle;
}

.historyColumnBox {
  display: grid;
  gap: 20px;
  width: 100%;
}

.historyTitle {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.historyText {
  line-height: 1.8;
}

.columnImgBox {
  gap: 12px;
}
.columnImgBox img {
  margin-inline: auto;
}

.rmmNav {
  border-bottom: 4px solid #EA6001;
}

.rmmNavList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 960px;
  width: 95%;
  margin-inline: auto;
}

.rmmNavLink {
  border: 4px solid #EA6001;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  padding: 0.5em 5px;
  transition: background 0.3s, color 0.3s;
}
.rmmNavLink.-active {
  background-color: #EA6001;
  color: #fff;
  pointer-events: none;
}
.rmmNavLink:hover {
  background-color: #EA6001;
  color: #fff;
}

.rmmLastUpdate {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: right;
}

.rmmSearchHead {
  background-color: #EA6001;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  width: fit-content;
  padding: 0.5em 15px;
}

.rmmSearch {
  background-color: #fff;
  border: 3px solid #EA6001;
  display: grid;
  gap: 10px;
  padding: 20px 12px;
}

.rmmSearchTop {
  background-color: #F4F4F4;
  display: grid;
  gap: 20px 40px;
  padding: 15px 12px;
}

.rmmSearchSelectLabel {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  min-width: fit-content;
}

.rmmSearchSelectDeco {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  min-width: 1em;
}

.rmmSearchSelect {
  border: 2px solid #EA6001;
  border-radius: 5px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.rmmSearchSelect:before {
  content: "";
  display: block;
  background-color: #EA6001;
  width: 25px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.rmmSearchSelect:after {
  content: "";
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  width: 10px;
  height: 10px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 3px;
  right: 6px;
  transform: rotate(45deg);
  pointer-events: none;
}
.rmmSearchSelect select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
  padding: 0.2em 30px 0.2em 8px;
}
.rmmSearchSelect input {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
  padding: 0.2em 30px 0.2em 8px;
}

.rmmSearchArea {
  display: flex;
  align-items: center;
  gap: 12px 15px;
  max-width: 310px;
  width: 100%;
}

.rmmSearchDateWrap {
  display: grid;
  gap: 10px;
  max-width: 580px;
  width: 100%;
}

.rmmSearchDate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 5px;
  width: 100%;
}

.rmmSearchMiddle {
  background-color: #F4F4F4;
  border: none;
  padding: 15px;
}

.rmmSearchMiddleTitleWrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.rmmSearchMiddleTitle {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
}

.rmmSearchKanaHeadWrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rmmSearchKanaHead {
  display: none;
}

.rmmSearchKanaHeadLabel {
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 30px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 0.4em 0.7em;
  transition: background 0.3s, color 0.3s;
}

.rmmSearchKanaHead:checked + .rmmSearchKanaHeadLabel {
  background-color: #EA6001;
  color: #fff;
}

.rmmSearchKanaGroupWrap {
  height: 250px;
  padding: 10px 0;
  overflow-y: scroll;
}

.rmmSearchKanaGroup {
  border-top: 1px solid #D9D9D9;
  padding: 20px 0;
}
.rmmSearchKanaGroup.-hidden {
  display: none;
}
.rmmSearchKanaGroup.-active {
  display: block;
}

.rmmSearchKanaWrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.rmmSearchKana {
  display: none;
}

.rmmSearchKanaLabel {
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 30px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 0.4em 1em;
  transition: background 0.3s, color 0.3s;
}

.rmmSearchKana:checked + .rmmSearchKanaLabel {
  background-color: #EA6001;
  color: #fff;
}

.rmmSearchSampleItemWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.rmmSearchSampleItem.-hidden {
  display: none;
}
.rmmSearchSampleItem.-active {
  display: block;
}

.rmmSearchSampleItemLabel {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rmmSearchSampleItemText {
  font-size: 1.6rem;
  line-height: 1.2;
}

.rmmSearchBottom {
  border-top: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 30px;
  padding-top: 10px;
}

.selectWord {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  width: 100%;
}

.selectWordText {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.rmmSearchButton {
  max-width: 180px;
  margin-inline: auto;
  padding: 0.5em 5px;
}

.rmmSearchNote {
  font-size: 1.2rem;
  margin-top: 10px;
}

.rmmResultTitle {
  font-size: 1.8rem;
  line-height: 1.4;
}

.rmmResultTable {
  font-size: 1.4rem;
}
.rmmResultTable th, .rmmResultTable td {
  text-align: center;
}
.rmmResultTable th {
  padding: 0.5em 5px;
}
.rmmResultTable td {
  padding: 0.5em 5px;
}

.rmmListTitle, .rmmListText, .rmmNoteTitle, .rmmNoteText {
  font-size: 1.4rem;
  line-height: 1.6;
}

.rmmListTitle {
  padding-left: 1.1em;
  position: relative;
}
.rmmListTitle::before {
  content: "";
  display: block;
  background-color: #EA6001;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 7px;
  left: 0;
}

.rmmListText {
  padding-left: 1.1em;
}

.pageHowtoRmmAgri .howtoRmm {
  border-bottom: 4px solid #78BE5A;
}
.pageHowtoRmmMarine .howtoRmm {
  border-bottom: 4px solid #2D83D3;
}

.howtoRmmList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-inline: auto;
}

.howtoRmmLink {
  background-color: #C3C3C3;
  border: 4px solid #C3C3C3;
  border-radius: 5px 5px 0 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  padding: 5px;
  transition: background 0.3s, border 0.3s, color 0.3s;
}
.pageHowtoRmmAgri .howtoRmmLink.-active {
  background-color: #78BE5A;
  border: 4px solid #78BE5A;
  color: #fff;
  pointer-events: none;
}
.pageHowtoRmmAgri .howtoRmmLink:hover {
  background-color: #2D83D3;
  border: 4px solid #2D83D3;
  color: #fff;
}
.pageHowtoRmmMarine .howtoRmmLink.-active {
  background-color: #2D83D3;
  border: 4px solid #2D83D3;
  color: #fff;
  pointer-events: none;
}
.pageHowtoRmmMarine .howtoRmmLink:hover {
  background-color: #78BE5A;
  border: 4px solid #78BE5A;
  color: #fff;
}

.rmmLeadText {
  font-size: 1.6rem;
  line-height: 1.6;
}

.rmmFlowWrap {
  counter-reset: flowNum;
  display: grid;
  gap: 30px 20px;
}

.rmmFlowColumnBox {
  background-color: #fff;
  display: grid;
  align-items: center;
  gap: 30px 50px;
  padding: 20px;
}

.rmmFlowTitle {
  counter-increment: flowNum;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
.rmmFlowTitle::before {
  content: counter(flowNum);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  min-width: 34px;
  width: 34px;
  height: 34px;
}
.pageHowtoRmmAgri .rmmFlowTitle::before {
  background-color: #78BE5A;
}
.pageHowtoRmmMarine .rmmFlowTitle::before {
  background-color: #2D83D3;
}

.rmmFlowText {
  font-size: 1.6rem;
  line-height: 1.6;
}

.rmmQA {
  background-color: #fff;
  border-radius: 10px;
  padding: 35px 20px 25px;
  position: relative;
}
.pageHowtoRmmAgri .rmmQA {
  border: 1px dashed #78BE5A;
}
.pageHowtoRmmMarine .rmmQA {
  border: 1px dashed #2D83D3;
}

.rmmQATitle {
  border-radius: 4px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 4px 10px;
  position: absolute;
  top: -12px;
}
.rmmQATitle::before {
  content: "";
  display: block;
  width: 12px;
  height: 10.3923048454px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-inline: auto;
  position: absolute;
  left: 10px;
  bottom: -9px;
}
.pageHowtoRmmAgri .rmmQATitle {
  background-color: #78BE5A;
}
.pageHowtoRmmAgri .rmmQATitle::before {
  background-color: #78BE5A;
}
.pageHowtoRmmMarine .rmmQATitle {
  background-color: #2D83D3;
}
.pageHowtoRmmMarine .rmmQATitle::before {
  background-color: #2D83D3;
}

.rmmQALabel {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}
.pageHowtoRmmAgri .rmmQALabel {
  color: #78BE5A;
}
.pageHowtoRmmMarine .rmmQALabel {
  color: #2D83D3;
}

.rmmQAText {
  font-size: 1.6rem;
  line-height: 1.6;
}

.rmmSystemWrap {
  background-color: #F4ECD6;
  margin: 100px 0 80px;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}
.rmmSystemWrap::before {
  content: "";
  display: block;
  background-image: url(../images/deco-beige.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 90px;
  margin: auto;
  transform: scale(1, 1);
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  z-index: 0;
}
.rmmSystemWrap::after {
  content: "";
  display: block;
  background-image: url(../images/deco-beige.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 90px;
  margin: auto;
  transform: scale(-1, -1);
  position: absolute;
  bottom: -48px;
  left: 0;
  right: 0;
  z-index: 0;
}
.pageHowtoRmmMarine .rmmSystemWrap {
  background-color: #E9F6FF;
}
.pageHowtoRmmMarine .rmmSystemWrap::before {
  background-image: url(../images/deco-blue.png);
}
.pageHowtoRmmMarine .rmmSystemWrap::after {
  background-image: url(../images/deco-blue.png);
}
.rmmSystemWrap .maxContainer {
  position: relative;
  z-index: 2;
}

.rmmSystemAgriDeco {
  position: absolute;
  top: -90px;
  left: 0;
  z-index: 2;
}

.rmmSystem {
  display: grid;
  align-items: center;
  gap: 40px 30px;
}

.rmmSystemTitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
.pageHowtoRmmAgri .rmmSystemTitle {
  color: #78BE5A;
}
.pageHowtoRmmMarine .rmmSystemTitle {
  color: #2D83D3;
}

.rmmSystemTitleLabel {
  color: #333;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.rmmSystemText {
  font-size: 1.6rem;
  line-height: 1.6;
}

.rmmSystemImgBox img {
  margin-inline: auto;
}

.rmmDevice {
  display: grid;
  grid-template-columns: 65px 1fr;
  align-items: center;
  gap: 12px;
}

.rmmDeviceTitle {
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
  width: 65px;
  height: 65px;
}
.pageHowtoRmmAgri .rmmDeviceTitle {
  background-color: #78BE5A;
}

.rmmDeviceText {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
}

.rmmSystemMarineTitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.rmmSystemMarinTable {
  border: 1px solid #ADC9DD;
  font-size: 1.6rem;
  line-height: 1.4;
}

.rmmSystemMarinTableTitle {
  background-color: #D0E3F0;
  border-bottom: 1px solid #ADC9DD;
  padding: 0.8em;
}

.rmmSystemMarinTableText {
  background-color: #fff;
  padding: 0.8em;
}

.rmmCardWrap {
  counter-reset: cardNum;
  display: grid;
  gap: 20px;
}

.rmmCard {
  counter-increment: cardNum;
  background-color: #fff;
  padding: 15px 15px 20px;
}

.rmmCardImgBox {
  position: relative;
  overflow: hidden;
}
.rmmCardImgBox::before {
  content: counter(cardNum);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.rmmCardImgBox::after {
  content: "";
  border-radius: 50%;
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 0;
}
.pageHowtoRmmAgri .rmmCardImgBox::after {
  background-color: #78BE5A;
}
.pageHowtoRmmMarine .rmmCardImgBox::after {
  background-color: #2D83D3;
}

.rmmCardTextBox {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.rmmCardTitle {
  border-bottom: 1px dashed #B5B5B5;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 8px;
}

.rmmCardText {
  font-size: 1.5rem;
  line-height: 1.4;
}

ul.rmmCardText {
  list-style: disc;
  margin-left: 1em;
}

.middleTitle {
  font-size: 2.2rem;
  line-height: 1.4;
}

.restrictionStatus {
  color: #DC3C3C;
}

.pageRmmInfo .tableScrollOuter table {
  min-width: 900px;
}

.rmmInfoWrap {
  background-color: #fff;
  height: 360px;
  padding: 15px 20px 20px;
  overflow-y: scroll;
}

.rmmInfo {
  border-bottom: 1px dashed #CFBBAD;
  display: grid;
  gap: 10px;
  padding: 15px 0;
}

.rmmInfoTitle {
  display: flex;
  align-items: center;
  gap: 5px 10px;
  flex-wrap: wrap;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.rmmInfoLabel {
  background-color: #DC3C3C;
  border-radius: 5px;
  color: #fff;
  font-size: 1.4rem;
  padding: 2px 10px;
}

.rmmInfoText {
  font-size: 1.4rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  p {
    line-height: 2;
  }
  table {
    width: revert-layer;
  }
  th {
    padding: 1em;
  }
  td {
    padding: 1em;
  }
  .textFlexCenter {
    text-align: center;
  }
  .attempt {
    padding: 30px;
  }
  .attemptHead {
    font-size: 2rem;
  }
  .attemptHead.new::before {
    font-size: 1.6rem;
  }
  .history {
    grid-template-columns: 130px 1fr;
  }
  .rmmNavList {
    gap: 30px;
  }
  .rmmNavLink {
    font-size: 2.4rem;
  }
  .rmmLastUpdate {
    font-size: 1.8rem;
  }
  .rmmSearchHead {
    font-size: 2rem;
  }
  .rmmSearch {
    padding: 30px 20px;
  }
  .rmmSearchTop {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
  }
  .rmmSearchSelectLabel {
    font-size: 2rem;
  }
  .rmmSearchSelectDeco {
    font-size: 2rem;
  }
  .rmmSearchSelect:before {
    width: 50px;
  }
  .rmmSearchSelect:after {
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    width: 12px;
    height: 12px;
    bottom: 5px;
    right: 18px;
  }
  .rmmSearchSelect select {
    padding: 0.5em 60px 0.5em 20px;
  }
  .rmmSearchSelect input {
    padding: 0.5em 60px 0.5em 20px;
  }
  .rmmSearchArea {
    gap: 12px 20px;
  }
  .rmmSearchDateWrap {
    display: flex;
    align-items: center;
    gap: 12px 20px;
  }
  .rmmSearchDate {
    gap: 12px 20px;
  }
  .rmmSearchMiddleTitle {
    font-size: 2rem;
  }
  .rmmSearchKanaHeadWrap {
    gap: 10px 15px;
  }
  .rmmSearchKanaHeadLabel {
    font-size: 1.8rem;
  }
  .rmmSearchKanaWrap {
    gap: 10px 12px;
  }
  .rmmSearchSampleItemWrap {
    gap: 8px 20px;
  }
  .rmmSearchBottom {
    flex-wrap: nowrap;
  }
  .selectWord {
    width: fit-content;
  }
  .rmmSearchButton {
    margin-inline: 0;
  }
  .rmmSearchNote {
    font-size: 1.4rem;
  }
  .rmmResultTitle {
    font-size: 2rem;
  }
  .rmmResultTable {
    font-size: 1.6rem;
  }
  .rmmResultTable th {
    padding: 0.8em 0.5em;
  }
  .rmmResultTable td {
    padding: 0.8em;
  }
  .rmmListTitle, .rmmListText, .rmmNoteTitle, .rmmNoteText {
    font-size: 1.6rem;
  }
  .howtoRmmList {
    gap: 30px;
  }
  .howtoRmmLink {
    gap: 15px;
    font-size: 2.4rem;
    padding: 0.5em 5px;
  }
  .rmmLeadText {
    font-size: 1.8rem;
  }
  .rmmFlowWrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .rmmQA {
    padding: 35px 35px 25px;
  }
  .rmmQALabel {
    font-size: 2rem;
  }
  .rmmSystemWrap {
    margin: 170px 0 150px;
    padding: 30px 0;
  }
  .rmmSystemWrap::before {
    top: -89px;
  }
  .rmmSystemWrap::after {
    bottom: -89px;
  }
  .rmmSystemAgriDeco {
    top: -130px;
    left: 0;
  }
  .rmmSystemTitle {
    font-size: 2.6rem;
  }
  .rmmSystemTitle span {
    display: inline-block;
  }
  .rmmSystemTitleLabel {
    font-size: 1.8rem;
  }
  .rmmDevice {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }
  .rmmDeviceTitle {
    font-size: 1.6rem;
    width: 80px;
    height: 80px;
  }
  .rmmDeviceText {
    font-size: 1.8rem;
  }
  .rmmSystemMarinTable {
    display: flex;
    align-items: stretch;
    width: fit-content;
  }
  .rmmSystemMarinTableTitle {
    border: none;
    border-right: 1px solid #ADC9DD;
  }
  .rmmCardWrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .rmmCardImgBox::before {
    font-size: 2.4rem;
    width: 40px;
    height: 40px;
  }
  .rmmCardImgBox::after {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
  }
  .rmmCardText {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .middleTitle {
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .pageRmmInfo .tableScrollOuter table {
    min-width: auto;
  }
  .rmmInfoWrap {
    height: 460px;
    padding: 20px 30px 30px;
  }
  .rmmInfo {
    gap: 15px;
  }
  .rmmInfoTitle {
    font-size: 1.8rem;
  }
  .rmmInfoText {
    font-size: 1.6rem;
  }
}

@media (min-width: 960px) {
  .historyColumnBox {
    grid-template-columns: 1fr 240px;
  }
  .rmmSearchKanaHeadLabel {
    font-size: 2rem;
  }
  .rmmSearchKanaHead:hover + .rmmSearchKanaHeadLabel {
    background-color: rgba(234, 96, 1, 0.7);
    color: #fff;
  }
  .rmmSearchKanaLabel {
    font-size: 1.8rem;
  }
  .rmmSearchKana:hover + .rmmSearchKanaLabel {
    background-color: rgba(234, 96, 1, 0.7);
    color: #fff;
  }
  .rmmFlowWrap {
    gap: 50px;
    grid-template-columns: repeat(1, 1fr);
  }
  .rmmFlowColumnBox {
    grid-template-columns: 1fr 40%;
    padding: 30px 20px;
  }
  .rmmFlowTitle {
    font-size: 2.4rem;
  }
  .rmmFlowTitle::before {
    font-size: 2.4rem;
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .rmmSystemWrap {
    margin: 190px 0 170px;
  }
  .rmmSystemAgriDeco {
    top: -150px;
    left: -30px;
  }
  .rmmSystem {
    grid-template-columns: 1fr 28%;
  }
  .rmmCardWrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .rmmCard {
    padding: 20px;
  }
  .rmmInfoWrap {
    height: 680px;
  }
}

/*# sourceMappingURL=food-safety.css.map*/