@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Zen+Maru+Gothic:wght@700&display=swap");

.wh-100 {
  width: 100%;
  height: 100%;
}

.base-wrapper {
  width: 100%;
}

.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
}
.zen-maru-gothic {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

.welcome-message {
  font-size: 46px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  text-align: center;
  margin-bottom: 44.86px;
}

@media (max-width: 767px) {
  .welcome-message {
    font-size: 44px;
    margin-bottom: 38.48px;
  }
}

@media (max-width: 469px) {
  .welcome-message {
    font-size: 24px;
  }
}

.eyecatch img {
  width: 100%;
  height: auto;
}

.batch-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 81px;
}

@media (max-width: 767px) {
  .batch-wrapper {
    margin-bottom: 58.01px;
  }
}

.batch-image {
  width: 100%;
  max-width: 398px;
  margin-top: -2rem;
}

@media (max-width: 767px) {
  .batch-image {
    width: 70%;
    margin-top: -2rem;
    max-width: none;
  }
}

@media (max-width: 496px) {
  .batch-image {
    width: 70%;
    margin-top: -1.4rem;
    max-width: none;
  }
}

.site-footer {
  width: 100%;
  height: 48px;
  background-color: #f8070b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 450px) {
  .site-footer {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .site-footer {
    font-size: 10px;
  }
}

.flex-row {
  display: flex;
}
.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-column-reverse {
  display: flex;
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
.flex-3 {
  flex: 3;
}
.flex-4 {
  flex: 4;
}
.flex-5 {
  flex: 5;
}
.flex-6 {
  flex: 6;
}
.flex-7 {
  flex: 7;
}
.flex-8 {
  flex: 8;
}
.flex-9 {
  flex: 9;
}
.flex-10 {
  flex: 10;
}
.flex-11 {
  flex: 11;
}
.flex-12 {
  flex: 12;
}
.flex-justify-start {
  justify-content: flex-start;
}
.flex-justify-end {
  justify-content: flex-end;
}
.flex-justify-center {
  justify-content: center;
}
.flex-justify-between {
  justify-content: space-between;
}
.flex-justify-around {
  justify-content: space-around;
}
.flex-align-start {
  align-items: flex-start;
}
.flex-align-end {
  align-items: flex-end;
}
.flex-align-center {
  align-items: center;
}
.flex-align-baseline {
  align-items: baseline;
}
.flex-align-stretch {
  align-items: stretch;
}
.flex-align-content-start {
  align-content: flex-start;
}
.flex-align-content-end {
  align-content: flex-end;
}
.flex-align-content-center {
  align-content: center;
}
.flex-align-content-between {
  align-content: space-between;
}
.flex-align-content-around {
  align-content: space-around;
}
.flex-align-content-stretch {
  align-content: stretch;
}
.flex-self-start {
  align-self: flex-start;
}
.flex-self-end {
  align-self: flex-end;
}
.flex-self-center {
  align-self: center;
}
.flex-self-baseline {
  align-self: baseline;
}
.flex-self-stretch {
  align-self: stretch;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
