@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# foundation
	## reset
	## base
# component
	## c-link
# layout
	## l-header
	## l-footer
	## l-main
	## l-form
	## l-result
  ## l-doc
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@600&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  height: 100vh;
  width: 100%;
  color: #091f30;
}
@media print, screen and (min-width: 600px) {
  body {
    font-size: 1.6rem;
  }
}

::-moz-selection {
  background: #6dbce9;
}

::selection {
  background: #6dbce9;
}

.l-header {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
  border-top: 8px solid #6dbce9;
}
@media print, screen and (min-width: 600px) {
  .l-header {
    justify-content: space-between;
    height: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .l-header {
    height: 100px;
  }
}
.l-header-logo h1 {
  width: 100%;
}
.l-header-logo h1 img {
  width: 260px;
}
@media print, screen and (min-width: 600px) {
  .l-header-logo h1 img {
    width: 300px;
  }
}
@media screen and (min-width: 1025px) {
  .l-header-logo h1 img {
    width: 360px;
  }
}

.l-footer {
  padding: 20px;
}
@media screen and (min-width: 1025px) {
  .l-footer {
    padding: 20px;
  }
}
.l-footer p {
  text-align: center;
  font-size: 1.2rem;
  margin: 0;
}
@media print, screen and (min-width: 600px) {
  .l-footer p {
    text-align: right;
  }
}
@media print, screen and (min-width: 600px) {
  .l-footer p br {
    display: none;
  }
}

.l-form {
  border: 1px solid #c6d5e1;
}
.l-form__inner {
  width: 100%;
  padding: 20px;
}
@media print, screen and (min-width: 600px) {
  .l-form__inner {
    padding: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .l-form__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
  }
}
.l-form__inner p {
  font-weight: bold;
  margin-bottom: 2em;
}
.l-form__inner p span {
  color: #ff0000;
}
.l-form-list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .l-form-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.l-form-list dt {
  width: 100%;
  font-weight: bold;
  margin-bottom: 1em;
  background-color: #E7ECF2;
  padding: 0.5em;
}
@media screen and (min-width: 1025px) {
  .l-form-list dt {
    width: 8em;
    margin-bottom: 0;
    background-color: white;
    padding: 0;
  }
}
.l-form-list dd {
  width: 100%;
  margin-bottom: 2em;
}
@media screen and (min-width: 1025px) {
  .l-form-list dd {
    width: calc(100% - 8em);
    margin-bottom: 1em;
  }
}
.l-form-list dd p {
  margin-bottom: 0.2em;
}
.l-form-list dd p.keyword {
  font-weight: normal;
}
@media screen and (min-width: 1025px) {
  .l-form-list dd p.keyword {
    font-size: 1.5rem;
  }
}
.l-form-list dd input[type=text] {
  padding: 4px 6px;
  background-color: white;
  border: 1px solid #808080;
  border-radius: 0;
  font-size: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  caret-color: #4895cc;
}
.l-form-list dd input[type=text]:focus {
  outline: none;
  background-color: #E7ECF2;
  border: 1px solid #4895cc;
}
.l-form-list dd select {
  font-size: 1.4rem;
  padding: 8px 6px;
  border-radius: 0;
}
.l-form-list dd select:focus {
  outline: none;
  background-color: #E7ECF2;
  border: 1px solid #4895cc;
}
.l-form-side {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .l-form-side {
    flex-direction: row;
  }
}
.l-form-side__inner {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .l-form-side__inner {
    width: 50%;
  }
}
.l-form-side__inner:first-of-type {
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  .l-form-side__inner:first-of-type {
    margin-bottom: 0;
  }
}
.l-form-search {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .l-form-search {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.l-form-search input[type=text] {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .l-form-search input[type=text] {
    width: calc(100% - 5.5em);
  }
}
.l-form-search p {
  width: 100%;
  font-weight: normal;
}
@media screen and (min-width: 1025px) {
  .l-form-search p {
    width: 5em;
  }
}
.l-form-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 1em;
}
.l-form-button input {
  cursor: pointer;
  border-style: none;
  padding: 0.3em 1em 0.4em;
  background: #efefef;
  border: 1px solid #808080;
  border-radius: 5px;
}
.l-form-button input:hover {
  background-color: #c0c0c0;
}

.l-wrapper {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .l-wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.l-wrapper h3 {
  font-size: 2rem;
  line-height: 5rem;
  margin: 1rem 0 2rem;
  padding: 0 0 0 1rem;
  background: #EFF3F6;
  border-left: 4px solid #4895cc;
}
.l-wrapper h4 {
  padding: .5em;
  margin: 1em 0;
  background: #EFF3F6;
}
.l-wrapper p.date {
  text-align: right;
}
.l-wrapper p.notice {
  font-size: 77%;
  margin-top: 2em;
}
.l-main {
  padding: 20px;
}
.l-main h2 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 1.8rem;
}
@media print, screen and (min-width: 600px) {
  .l-main h2 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .l-main h2 {
    font-size: 2.5rem;
  }
}

.l-result {
  width: 100%;
  overflow-x: scroll;
  margin-top: 2em;
}
.l-result.detail {
  width: 100%;
  overflow-x: auto;
  margin: .5em 0 ;
}
.l-result table {
  min-width: 960px;
  width: 100%;
  border-collapse: collapse;
}
.l-result.detail table {
  min-width: auto;
  width: 100%;
  border-collapse: collapse;
}
.l-result.detail table td.photo{
  width: auto;
}
@media screen and (min-width: 1025px) {
  .l-result.detail table td.photo {
    width: 200px;
  }
}
.l-result.detail table td.photo img{
  margin:0 auto;
}

@media screen and (min-width: 1025px) {
  .l-result table {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.l-result table th {
  background-color: #4895cc;
  color: white;
  padding: 0.4em 0.2em;
  font-size: 1.2rem;
  border: 1px solid #4895cc;
  border-right: 1px solid white;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
}
.l-result table th:first-of-type {
  border-left: 1px solid #4895cc;
}
.l-result table th:last-of-type {
  border-right: 1px solid #4895cc;
}
.l-result.detail table th {
  width: auto;
}
@media screen and (min-width: 1025px) {
  .l-result.detail table th {
    width: 200px;
  }
}

.l-result table td {
  border: 1px solid #c6d5e1;
  padding: 0.3em;
  font-size: 1.4rem;
}
.l-result table td span {
  margin-right: 0.2em;
}
.l-result table td span.star {
  color: #ff0000;
}

.l-doc {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.l-doc h3 {
  background-color: #c6d5e1;
  padding: 0.2em 0.4em;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 1025px) {
  .l-doc h3 {
    padding: 0.2em 0.5em;
    font-size: 1.7rem;
  }
}
.l-doc section {
  margin-bottom: 1.5em;
}
.l-doc p {
  margin-bottom: 1em;
}
.l-doc p.example {
  text-align: center;
  font-weight: bold;
}

a {
  color: #006699;
  text-decoration: none;
}
a:visited {
  color: #006699;
}
a:hover, a:focus, a:active {
  color: #006699;
  text-decoration: underline;
}
a:hover, a:active {
  outline: 0;
}
a[href$=".pdf"]::after {
  padding-left: 10px;
  display: inline-block;
  content: url("/ridb/img/icon_pdf.gif") !important;
  vertical-align: middle !important;
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  transform: translateY(0%);
}