@charset "UTF-8";
/* typography
---------------------------------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media print, all and (min-width: 769px) {
  .text-center-md {
    text-align: center;
  }
  .text-left-md {
    text-align: left;
  }
  .text-right-md {
    text-align: right;
  }
}
@media print, all and (max-width: 768px) {
  .nobr-sm br {
    display: none;
  }
}

.nowrap {
  white-space: nowrap;
}

h1, .h1, h2, .h2, h3, .h3 {
  line-height: 1.5;
}

h1, .h1 {
  font-size: 2.2rem;
}

h2, .h2 {
  font-size: 1.8rem;
}

h3, .h3 {
  font-size: 1.4rem;
}

h4, .h4 {
  font-size: 1.2rem;
}

h5, .h5 {
  font-size: 1rem;
  font-weight: bold;
}

.small {
  font-size: 12px;
}

.large {
  font-size: 1.8rem;
  vertical-align: baseline;
}

strong, .bold {
  font-weight: bold;
}

code, tt {
  font-family: "Courier New", Courier, monospace;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

dt {
  font-weight: normal;
}

li, dd {
  margin-left: 2rem;
}

@media print, all and (min-width: 768px) {
  dl.horizontal {
    display: flex;
    flex-flow: row wrap;
  }
  dl.horizontal > dt, dl.horizontal > dd {
    border-top: solid 1px #ccc;
    margin: 0;
    padding: 0.5rem 0;
  }
  dl.horizontal > dt {
    flex: 0 1 30%;
  }
  dl.horizontal > dd {
    flex: 0 1 70%;
  }
}

ul.warning {
  list-style: none;
}
ul.warning li {
  margin-left: 1em;
  text-indent: -1em;
}
ul.warning li::before {
  content: "※";
}

hr {
  width: 100%;
  height: 1px;
  border: none;
  border-top: solid 1px #B7BDC4;
}

/* margin, padding
---------------------------------------------------------------------------- */
.m0 {
  margin: 0;
}

.mtb0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mt0 {
  margin-top: 0;
}

.mb0 {
  margin-bottom: 0;
}

.p0 {
  padding: 0;
}

.ptb0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt0 {
  padding-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.m1 {
  margin: 1rem;
}

.mtb1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mt1 {
  margin-top: 1rem;
}

.mb1 {
  margin-bottom: 1rem;
}

.p1 {
  padding: 1rem;
}

.ptb1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt1 {
  padding-top: 1rem;
}

.pb1 {
  padding-bottom: 1rem;
}

.m2 {
  margin: 2rem;
}

.mtb2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mt2 {
  margin-top: 2rem;
}

.mb2 {
  margin-bottom: 2rem;
}

.p2 {
  padding: 2rem;
}

.ptb2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt2 {
  padding-top: 2rem;
}

.pb2 {
  padding-bottom: 2rem;
}

.m3 {
  margin: 3rem;
}

.mtb3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mt3 {
  margin-top: 3rem;
}

.mb3 {
  margin-bottom: 3rem;
}

.p3 {
  padding: 3rem;
}

.ptb3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt3 {
  padding-top: 3rem;
}

.pb3 {
  padding-bottom: 3rem;
}

.m4 {
  margin: 4rem;
}

.mtb4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.mt4 {
  margin-top: 4rem;
}

.mb4 {
  margin-bottom: 4rem;
}

.p4 {
  padding: 4rem;
}

.ptb4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pt4 {
  padding-top: 4rem;
}

.pb4 {
  padding-bottom: 4rem;
}

.m5 {
  margin: 5rem;
}

.mtb5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.mt5 {
  margin-top: 5rem;
}

.mb5 {
  margin-bottom: 5rem;
}

.p5 {
  padding: 5rem;
}

.ptb5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt5 {
  padding-top: 5rem;
}

.pb5 {
  padding-bottom: 5rem;
}

.m6 {
  margin: 6rem;
}

.mtb6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.mt6 {
  margin-top: 6rem;
}

.mb6 {
  margin-bottom: 6rem;
}

.p6 {
  padding: 6rem;
}

.ptb6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pt6 {
  padding-top: 6rem;
}

.pb6 {
  padding-bottom: 6rem;
}

.mt05 {
  margin-top: 0.5rem;
}

.mb05 {
  margin-bottom: 0.5rem;
}

.mtb05 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* container
-------------------------------------------------------------------------- */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media print, all and (max-width: 1280px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.container.md {
  max-width: 1024px;
}
.container.sm {
  max-width: 768px;
}
@media print, all and (max-width: 1280px) {
  .container.nop {
    padding-left: 0;
    padding-right: 0;
  }
}

/* grid
--------------------------------------------------------------------------- */
.row {
  display: flex;
  flex-flow: row wrap;
  gap: 0 2.5%;
}
.row.content-center {
  justify-content: center;
}
.row.align-center {
  align-items: center;
}
.row.reverse {
  flex-direction: row-reverse;
}
.row [class|=col] {
  flex-grow: 0;
  flex-shrink: 1;
}
.row .col-all {
  flex-basis: 100%;
  max-width: 100%;
}
.row .vline {
  border-left: solid 1px #B7BDC4;
}
.row.nogap {
  gap: 0 0;
}
.row .col-1-2 {
  flex-basis: 48.75%;
  max-width: 48.75%;
}
.row .col-1-3 {
  flex-basis: 31.6666666667%;
  max-width: 31.6666666667%;
}
.row .col-1-4 {
  flex-basis: 23.125%;
  max-width: 23.125%;
}
.row .col-1-5 {
  flex-basis: 18%;
  max-width: 18%;
}
.row .col-2-3 {
  flex-basis: 65.8333333333%;
  max-width: 65.8333333333%;
}
.row .col-2-4 {
  flex-basis: 48.75%;
  max-width: 48.75%;
}
.row .col-2-5 {
  flex-basis: 38.5%;
  max-width: 38.5%;
}
.row .col-3-4 {
  flex-basis: 74.375%;
  max-width: 74.375%;
}
.row .col-3-5 {
  flex-basis: 59%;
  max-width: 59%;
}
.row .col-4-5 {
  flex-basis: 79.5%;
  max-width: 79.5%;
}
.row.nogap .col-1-2 {
  flex-basis: 50%;
  max-width: 50%;
}
.row.nogap .col-1-3 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}
.row.nogap .col-1-4 {
  flex-basis: 25%;
  max-width: 25%;
}
.row.nogap .col-1-5 {
  flex-basis: 20%;
  max-width: 20%;
}
.row.nogap .col-2-3 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}
.row.nogap .col-2-4 {
  flex-basis: 50%;
  max-width: 50%;
}
.row.nogap .col-2-5 {
  flex-basis: 40%;
  max-width: 40%;
}
.row.nogap .col-3-4 {
  flex-basis: 75%;
  max-width: 75%;
}
.row.nogap .col-3-5 {
  flex-basis: 60%;
  max-width: 60%;
}
.row.nogap .col-4-5 {
  flex-basis: 80%;
  max-width: 80%;
}
@media print, all and (min-width: 768px) {
  .row .col-all-m {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row .col-1-2m {
    flex-basis: 48.75%;
    max-width: 48.75%;
  }
  .row .col-1-3m {
    flex-basis: 31.6666666667%;
    max-width: 31.6666666667%;
  }
  .row .col-1-4m {
    flex-basis: 23.125%;
    max-width: 23.125%;
  }
  .row .col-1-5m {
    flex-basis: 18%;
    max-width: 18%;
  }
  .row .col-2-3m {
    flex-basis: 65.8333333333%;
    max-width: 65.8333333333%;
  }
  .row .col-2-4m {
    flex-basis: 48.75%;
    max-width: 48.75%;
  }
  .row .col-2-5m {
    flex-basis: 38.5%;
    max-width: 38.5%;
  }
  .row .col-3-4m {
    flex-basis: 74.375%;
    max-width: 74.375%;
  }
  .row .col-3-5m {
    flex-basis: 59%;
    max-width: 59%;
  }
  .row .col-4-5m {
    flex-basis: 79.5%;
    max-width: 79.5%;
  }
  .row.nogap .col-1-2m {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row.nogap .col-1-3m {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row.nogap .col-1-4m {
    flex-basis: 25%;
    max-width: 25%;
  }
  .row.nogap .col-1-5m {
    flex-basis: 20%;
    max-width: 20%;
  }
  .row.nogap .col-2-3m {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .row.nogap .col-2-4m {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row.nogap .col-2-5m {
    flex-basis: 40%;
    max-width: 40%;
  }
  .row.nogap .col-3-4m {
    flex-basis: 75%;
    max-width: 75%;
  }
  .row.nogap .col-3-5m {
    flex-basis: 60%;
    max-width: 60%;
  }
  .row.nogap .col-4-5m {
    flex-basis: 80%;
    max-width: 80%;
  }
  .row .vline-md {
    border-left: solid 1px #B7BDC4;
  }
}
@media print, all and (min-width: 1280px) {
  .row .col-all-l {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row .col-1-2l {
    flex-basis: 48.75%;
    max-width: 48.75%;
  }
  .row .col-1-3l {
    flex-basis: 31.6666666667%;
    max-width: 31.6666666667%;
  }
  .row .col-1-4l {
    flex-basis: 23.125%;
    max-width: 23.125%;
  }
  .row .col-1-5l {
    flex-basis: 18%;
    max-width: 18%;
  }
  .row .col-2-3l {
    flex-basis: 65.8333333333%;
    max-width: 65.8333333333%;
  }
  .row .col-2-4l {
    flex-basis: 48.75%;
    max-width: 48.75%;
  }
  .row .col-2-5l {
    flex-basis: 38.5%;
    max-width: 38.5%;
  }
  .row .col-3-4l {
    flex-basis: 74.375%;
    max-width: 74.375%;
  }
  .row .col-3-5l {
    flex-basis: 59%;
    max-width: 59%;
  }
  .row .col-4-5l {
    flex-basis: 79.5%;
    max-width: 79.5%;
  }
  .row.nogap .col-1-2m {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row.nogap .col-1-3m {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row.nogap .col-1-4m {
    flex-basis: 25%;
    max-width: 25%;
  }
  .row.nogap .col-1-5m {
    flex-basis: 20%;
    max-width: 20%;
  }
  .row.nogap .col-2-3m {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .row.nogap .col-2-4m {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row.nogap .col-2-5m {
    flex-basis: 40%;
    max-width: 40%;
  }
  .row.nogap .col-3-4m {
    flex-basis: 75%;
    max-width: 75%;
  }
  .row.nogap .col-3-5m {
    flex-basis: 60%;
    max-width: 60%;
  }
  .row.nogap .col-4-5m {
    flex-basis: 80%;
    max-width: 80%;
  }
  .row .vline-lg {
    border-left: solid 1px #B7BDC4;
  }
}

/* form
--------------------------------------------------------------------------- */
input[type=text], input[type=search], input[type=email],
input[type=url], input[type=tel], input[type=number],
select,
textarea {
  width: 100%;
  line-height: 1.5;
  padding: 0.5em;
  background-color: #fff;
  border: solid 1px #999;
  border-radius: 6px;
  outline: none;
  transition: box-shadow 0.3s;
}
input[type=text]:focus, input[type=search]:focus, input[type=email]:focus,
input[type=url]:focus, input[type=tel]:focus, input[type=number]:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 12px rgba(0, 66, 153, 0.6);
}

input[type=checkbox], input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  transform: translateY(-2px);
}

label.check {
  display: inline-block;
  padding: 0 0.7rem 0.7rem 0;
  word-break: keep-all;
  white-space: nowrap;
}

select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

textarea {
  resize: vertical;
}

.input-wrap {
  display: flex;
}
.input-wrap input {
  flex: 0 1 auto;
  border-radius: 6px 0 0 6px;
}
.input-wrap button {
  flex: 1 0 auto;
  padding: 0.5em 0.8em;
  border-radius: 0 6px 6px 0;
}
.input-wrap.search input {
  border-radius: 21px 0 0 21px;
  padding-left: 1rem;
}
.input-wrap.search button {
  border-radius: 0 21px 21px 0;
}

fieldset {
  border-width: 1px;
}
fieldset legend {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* buttons
--------------------------------------------------------------------------- */
.btn, ul.pager li a {
  display: inline-block;
  padding: 0.8em 1.6em;
  color: inherit;
  background-color: transparent;
  text-align: center;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  border: solid 1px #ccc;
  transition: background-color 0.3s;
  color: #fff;
  background-color: #004299;
}
.btn:hover, ul.pager li a:hover {
  text-decoration: none;
  background-color: #326FD4;
}
.btn.expanded, ul.pager li a.expanded {
  width: 100%;
}
.btn.theme, ul.pager li a {
  color: #fff;
  background-color: #004299;
  border: none;
}
.btn.theme:hover, ul.pager li a:hover {
  background-color: #BA6813;
}

ul.list-btn {
  list-style: none;
}
ul.list-btn li {
  margin: 0;
  border-top: solid 1px #D7DBE0;
}
ul.list-btn li a {
  display: block;
  padding: 0.8rem 1rem;
  color: inherit;
  transition: color 0.3s, background-color 0.3s;
}
ul.list-btn li a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #004299;
}

ul.page-numbers {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  list-style: none;
}
ul.page-numbers li {
  flex: 0 0 3rem;
  margin: 0;
}
ul.page-numbers li a, ul.page-numbers li span {
  display: block;
  color: inherit;
  text-align: center;
  line-height: 3rem;
  border: solid 1px #D7DBE0;
  border-right: none;
}
ul.page-numbers li span.current, ul.page-numbers li a:hover {
  text-decoration: none;
  background-color: #004299;
}
ul.page-numbers li:first-child a, ul.page-numbers li:first-child span {
  border-radius: 4px 0 0 4px;
}
ul.page-numbers li:last-child a, ul.page-numbers li:last-child span {
  border-right: solid 1px #D7DBE0;
  border-radius: 0 4px 4px 0;
}

ul.pager {
  display: flex;
  list-style: none;
}
ul.pager li {
  flex: 0 0 50%;
  margin: 0;
}
/* table
--------------------------------------------------------------------------- */
table {
  border-collapse: collapse;
  line-height: 1.6;
  width: 100%;
}
table th, table td {
  padding: 0.8em;
}
@media print, all and (max-width: 768px) {
  table th, table td {
    padding: 0.4em;
  }
}
table.bordered {
  border-bottom: solid 1px #B7BDC4;
}
table.bordered th, table.bordered td {
  border-top: solid 1px #B7BDC4;
}
table.compact th, table.compact td {
  padding: 0.4em;
}
table tr.text-center th, table tr.text-center td {
  text-align: center;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
}
@media print, all and (max-width: 768px) {
  .table-wrap table th, .table-wrap table td {
    white-space: nowrap;
  }
}

/* card
--------------------------------------------------------------------------- */
.card {
  display: block;
  background-color: #fff;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}
.card .card-img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.card .card-body {
  padding: 1rem;
  line-height: 1.5;
}
.card.mini {
  max-width: 300px;
}

a.card {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.5s, box-shadow 0.5s;
}
a.card:hover {
  text-decoration: none;
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.2);
}

/* alert
--------------------------------------------------------------------------- */
.alert {
  background-color: #fafafa;
  padding: 1rem;
  border: solid 1px #999999;
  border-radius: 6px;
}
.alert.warning {
  color: #884106;
  background-color: #FFFCF2;
  border-color: #EB9B34;
}

/* for print
--------------------------------------------------------------------------- */
@media print {
  body {
    width: 1400px !important;
    zoom: 0.8;
  }
}
html {
  font: normal normal normal 16px Lato, sans-serif;
}

body {
  line-height: 1.8;
}

a {
  color: #004299;
}
a:hover {
  text-decoration: underline;
}

.phone-l {
  display: inline-block;
  font-size: 2rem;
  line-height: 1.5;
}
.phone-l:hover {
  text-decoration: none;
}
@media print, all and (max-width: 768px) {
  .phone-l {
    padding: 0.3em 0.8em;
    border: solid 1px #ccc;
  }
}

/* header
--------------------------------------------------------------------------- */
#header {
  position: fixed;
  display: flex;
  width: 100%;
  height: 80px;
  left: 0;
  top: 0;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  z-index: 9997;
}
#header #toggle {
  display: none;
  flex: 0 0 60px;
  text-align: center;
  font-size: 32px;
  line-height: 60px;
}
#header #logo {
  flex: 0 0 280px;
  padding: 15px 0 15px 1rem;
}
#header #logo img {
  height: 50px;
}
#header ul {
  flex: 2 0 auto;
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding-right: 2rem;
}
#header ul li {
  flex: 0 0 auto;
  margin: 0;
}
#header ul li a {
  display: block;
  line-height: 80px;
  padding: 0 1.4rem;
  color: inherit;
}
#header ul li a:hover {
  text-decoration: none;
  background-color: #eee;
}
@media print, all and (max-width: 1024px) {
  #header {
    height: 60px;
  }
  #header #toggle {
    display: block;
  }
  #header #logo {
    flex: 1 0 auto;
    padding: 10px 0;
  }
  #header #logo img {
    height: 40px;
  }
  #header ul {
    display: none;
  }
}

#overall {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9998;
}

#off-canvas {
  position: fixed;
  left: -280px;
  top: 0;
  width: 280px;
  height: 100svh;
  padding: 1rem;
  background-color: #004299;
  z-index: 9999;
}
#off-canvas ul {
  list-style: none;
}
#off-canvas ul li {
  margin-left: 0;
  border-top: solid 1px rgba(255, 255, 255, 0.5);
}
#off-canvas ul li a, #off-canvas ul li span {
  display: block;
  color: #fff;
  line-height: 1.4;
  padding: 1rem 0.5rem;
}
#off-canvas ul li ul {
  margin-left: 1.5rem;
}

/* main
--------------------------------------------------------------------------- */
main {
  padding-top: 80px;
}
@media print, all and (max-width: 1024px) {
  main {
    padding-top: 60px;
  }
}

.page-title {
  background: linear-gradient(to right bottom, #004299, #23b6bc);
  color: rgba(255, 255, 255, 0.85);
}
.page-title h2, .page-title h3 {
  border-left: solid 6px rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  padding-left: 0.5em;
}

.sub-title {
  color: #004299;
  border-left: solid 4px #004299;
  border-bottom: dashed 1px #004299;
  padding: 0 0 3px 10px;
}

.gmap iframe {
  width: 100%;
  height: 50svh;
  min-height: 300px;
}
@media print {
  .gmap {
    height: 5cm;
  }
}

/* footer
--------------------------------------------------------------------------- */
footer#footer {
  padding: 3rem 0 6rem 0;
  background-color: #f6f6f6;
}
footer#footer #footer-com {
  text-align: right;
  font-size: 0.8rem;
  line-height: 1.6;
}
footer#footer #footer-com img {
  margin-bottom: 8px;
}
@media print, all and (max-width: 768px) {
  footer#footer {
    text-align: center;
  }
  footer#footer .phone-l {
    margin-bottom: 8px;
  }
  footer#footer .btn, footer#footer ul.pager li a, ul.pager li footer#footer a {
    margin-top: 8px;
  }
  footer#footer #footer-com {
    margin-top: 2rem;
    text-align: center;
  }
}