/* ----------------------------------------------------------------------------
/* reset
---------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
ol, ul, li {
  margin: 0;
  padding: 0;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: subpixel-antialiased;
}
body {
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}
a, a:link, a:active, a:visited, a:hover, a:focus {
  text-decoration: none;
}
body * {
  text-shadow: none;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: normal;
}
dl, dl dt, dl dd {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  vertical-align: top;
}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="file"] {
  -webkit-appearance: none;
  border-radius: 0;
}
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="file"] {
  ime-mode: disabled;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="button"],
input[type="file"] {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 18px;
}
input::placeholder {
  font-size: 16px;
  font-weight: 300;
  color: #aaaaaa;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 1;
}
select::-ms-expand {
  display: none;
}
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
sup {
  font-size: 70%;
  vertical-align: super;
}
sub {
  font-size: 70%;
  vertical-align: sub;
}
a {
  color: #333333;
}





/* ----------------------------------------------------------------------------
/* common
---------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  font-weight: 500;
  font-size: 18px;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 1.6em;
  color: #555555;
}

header {
  padding: 20px;
  background-color: #095ca8;
}
header .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header .inner img {
  height: 40px;
}
header .inner span {
  font-size: 30px;
}
header .inner a {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  transition: 0.5s;
}
header .inner a:hover,
header .inner a:active,
header .inner a:focus {
  opacity: 0.5;
}



#container {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f5f5f5;
}
#container .inner {
  margin-left: 20px;
  margin-right: 20px;
  padding: 40px 30px;
  background-color: #ffffff;
  border-radius: 20px 20px 0 0;
}
#container .inner + .inner {
  background-color: #555555;
  border-radius: 0 0 20px 20px;
  color: #ffffff;
}
@media (840px <= width) {
  #container .inner {
    width: calc(800px - 120px);
    margin-left: auto;
    margin-right: auto;
    padding: 60px;
  }
}



#container h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #555555;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
}
#container h1 span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #555555;
  font-size: 16px;
  color: #ffffff;
  line-height: 1em;
}

#container h2 {
  margin-top: 60px;
  margin-bottom: 20px;
  padding: 10px;
  border-top: 1px solid #555555;
  border-bottom: 1px solid #555555;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4em;
}

#container a {
  text-decoration: underline;
  transition: 0.5s;
}
#container a:hover,
#container a:active,
#container a:focus {
  color: #095ca8;
  text-decoration: none;
}

#container table {
  width: 100%;
  border: 1px solid #cccccc;
}
#container table thead th {
  background-color: #777777;
  font-weight: 600;
  color: #ffffff;
}
#container table th,
#container table td {
  padding: 10px;
  border: 1px solid #cccccc;
  vertical-align: middle;
}
#container table th,
#container table td span {
  font-weight: 800;
}

#container table + p {
  margin-top: 30px;
  font-weight: 400;
}

#container table .address {
  display: flex;
  flex-direction: column;
}
@media (840px <= width) {
  #container table .address {
    flex-direction: row;
    gap: 10px;
  }
}

#container .inner:nth-of-type(2) table th,
#container .inner:nth-of-type(2) table td {
  display: block;
}
#container .inner:nth-of-type(2) table th {
  background-color: #ffffff;
  color: #555555;
}
#container .inner:nth-of-type(2) h2:nth-of-type(1) {
  margin-top: 0;
}
#container .inner:nth-of-type(2) h2 {
  margin-top: 40px;
  border-color: #ffffff;
}
#container .inner:nth-of-type(2) a {
  color: #ffffff;
}
@media (840px <= width) {
  #container .inner:nth-of-type(2) a {
    text-decoration: none;
    pointer-events: none;
    cursor: text;
  }
}
#container .info {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
}

#container p + p {
  margin-top: 20px;
}

#container ol {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
}



#container table td + td {
  text-align: center;
}



footer {
  padding: 20px 20px 60px;
  border-top: 4px solid #3d3d3d;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transform: rotate(0.03deg);
}

