/*!
 * ress.css v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Libre+Baskerville&display=swap");
html {
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, select {
  text-transform: none;
}

button, input, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
} /*select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}*/
legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

html {
  --clr-txt: #444;
  --clr-red: #F20000;
  --clr-white: #fff;
  --clr-ohzora: #00A3E9;
}

body {
  background: var(--clr-white);
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  color: var(--clr-txt);
}

main {
  line-height: 1.875;
}
main p:not([class]) {
  margin-block-start: 1.5em;
}
main p:not([class]):first-child {
  margin-block-start: 0;
}

a {
  color: var(--clr-ohzora);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.wd-m {
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-column.between {
  justify-content: space-between;
}

body > .flex-column {
  min-height: 100dvh;
}

.section-pd {
  padding-top: min(90px, 12vw);
  padding-bottom: min(90px, 12vw);
}

.bg-white {
  background: var(--clr-white);
  color: var(--clr-txt);
}

.bg-ohzora {
  background: var(--clr-ohzora);
  color: var(--clr-white);
}

.hdr {
  font-weight: bold;
}
.hdr + * {
  margin-top: min(60px, 8vw);
}

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

#header {
  font-size: min(24px, 5.3333333333vw);
}
#header .wd-m {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#header a {
  text-decoration: none;
}
#header a:hover {
  text-decoration: underline;
}

#footer a {
  color: inherit;
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}

#copyright {
  display: block;
  text-align: center;
}

@media (orientation: portrait) or (max-width: 999.98px) {
  body {
    font-size: min(40px, 4.2666666667vw);
  }
  .wd-m {
    padding-right: 2.13%;
    padding-left: 2.13%;
  }
  .hdr {
    font-size: min(50px, 5.3333333333vw);
  }
  #header {
    font-size: min(60px, 6.4vw);
  }
  #header .wd-m {
    height: 13.3333333333vw;
  }
  #footer .wd-m {
    display: flex;
    height: 16vw;
    align-items: center;
    justify-content: flex-start;
  }
  #copyright {
    height: 7.4666666667vw;
    line-height: 7.4666666667vw;
  }
}
@media print, screen and (orientation: landscape) and (min-width: 1000px) {
  .hdr {
    font-size: 20px;
  }
  #header .wd-m {
    height: 80px;
  }
  #footer {
    height: 160px;
  }
  #footer .wd-m {
    display: flex;
    height: 105px;
    align-items: center;
    justify-content: flex-start;
  }
  #copyright {
    height: 55px;
    line-height: 55px;
  }
}
/*@media (orientation: landscape) and (width < 1024px) {
@import "tStyle";
}*/
/*@media (orientation: landscape) and (width < 1120px) {
  .wd-l {
    padding-left: 12px;
    padding-right: 12px;
  }
}*/
/*@media (orientation: landscape) and (width >= 1024px) {
@import "pStyle";
@import "pUtil";
}*/
/*.btn-request {
  display: none !important;
}*/