@charset "UTF-8";
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
:root {
  /*size*/
  --site-width: 1280px;
  --site-width-md: 1080px;
  --site-width-sm: 960px;
  --site-padding: 40px;
  /*color*/
  --body-color: #333;
  --dark-color: #002E6C;
  --main-color: #2355A5;
  --main-color-2: #048DDD;
  --light-color: #42AFEF;
  --base-color: #E8F6FD;
  --base-color-2: #FFFAEB;
  --border-color: #dddddd;
  --gray: #aaa;
  --gray-lt: #F7F7F7;
  --elementary-color: #F79C20;
  --elementary-dark-color: #E06800;
  --elementary-bg-color: #FFF5E8;
  --jrhighschool-color: #51C138;
  --jrhighschool-dark-color: #1C9D00;
  --jrhighschool-bg-color: #EDF9EA;
  --highschool-color: #5286E8;
  --highschool-dark-color: #3165C7;
  --highschool-bg-color: #EDF3FD;
  --event-color: #EA6D97;
  --course-color: #35B06E;
  --school-color: #E85F22;
  --news-color: #058DBF;
  --individual-color: #4478CC;
  --small-people-color: #44ADCC;
  --blue: #2898EA;
  --green: #35B06E;
  --orange: #F88412;
  --pink: #F05CBD;
  --red: #E80945;
  --yellow: #FFF351;
  --navy: #283FBE;
  --green: #26C401;
  --line-color: #05C755;
  /*font*/
  --font-base: 16px;
  --font-middle: 18px;
  --font-large: 24px;
  --font-small: 14px;
  --font-extra-small: 12px;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Roboto", sans-serif;
  --font-weight-base: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --base-line: 1.7;
  /*z-index*/
  --z-index-modal-close: 100;
  --z-index-modal: 90;
  --z-index-modal-bg: 80;
  --z-index-nav: 70;
  --z-index-header: 60;
  --z-index-cta-nav: 50;
  /*height*/
  --height-header: 110px;
}
@media (max-width: 1079px) {
  :root {
    /*height*/
    --height-header: 90px;
  }
}
@media (max-width: 767px) {
  :root {
    /*size*/
    --site-padding: 20px;
    /*height*/
    --height-header: 70px;
  }
}

/*==================================================
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;
  vertical-align: baseline;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

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

span {
  line-height: inherit;
  font-size: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
  font-weight: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

em,
strong,
em *,
strong *,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

/*--form初期化--*/
input[type=submit],
button {
  color: var(--body-color);
  cursor: pointer;
}

select {
  color: var(--body-color);
}

button,
input[type=text],
input[type=image],
input[type=password],
input[type=file],
input[type=submit],
input[type=reset],
input[type=button],
input[type=email],
input[type=tel],
textarea {
  font-family: inherit;
}

::placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

a {
  text-decoration: none;
  border: none;
  color: inherit;
}

button {
  background: none;
  border: 0;
  outline: none;
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

th {
  text-align: left;
}

@media screen and (max-width: 767px) {
  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 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  textarea,
  input[type=email],
  input[type=text],
  input[type=image],
  input[type=password] {
    -webkit-appearance: none;
    appearance: none;
  }
}

body {
  color: var(--body-color);
  font-family: var(--font-jp);
  font-size: var(--font-base);
  font-weight: var(--font-weight-base);
  line-height: var(--base-line);
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.box {
  padding: 70px 0px 0px;
}

@media (max-width: 767px) {
  .box {
    padding: 20px 0;
  }
}

.title-sub {
  border-left: 6px solid var(--light-color);
  font-size: 28px;
  font-weight: var(--font-weight-base);
  line-height: 1.4;
  margin-bottom: 20px;
  padding-left: 12px;
}
@media (max-width: 767px) {
  .title-sub {
    border-left-width: 4px;
    font-size: 22px;
    margin-bottom: 20px;
    padding-left: 10px;
  }
}

.u-container {
  margin: 0 auto;
  max-width: var(--site-width);
  padding-inline: var(--site-padding);
  width: 100%;
}
.u-container--sm {
  max-width: var(--site-width-sm);
}
.u-container--md {
  max-width: var(--site-width-md);
}

@media (max-width: 767px) {
  .pageread__txt {
    font-size: 16px;
  }
}

.pageread {
  padding-top: 50px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .pageread {
    padding-top: 30px;
  }
}

.pagettl {
  background-image: repeating-linear-gradient(135deg, #e1f7fd, #e1f7fd 4px, #f3fafe 4px, #f3fafe 8px);
  padding-block: 135px 55px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .pagettl {
    padding-block: 115px 55px;
  }
}
.pagettl__ttl {
  font-size: 34px;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .pagettl__ttl {
    font-size: 24px;
  }
}
.pagettl__ttl::before {
  color: var(--light-color);
  content: attr(data-en);
  display: block;
  font-family: var(--font-en);
  font-size: 19px;
  margin-bottom: 6px;
}
.pagettl__bg img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.custom-dot-list li {
  position: relative;
  padding-left: 2em;
}

.custom-dot-list li::before {
  content: "・";
  position: absolute;
  left: 1em;
  top: 0;
}
