@charset "UTF-8";

:root {
  --font-color: #020000;
  --light-blue: #e0edfa;
  --dark-blue: #2153a1;
  --medium-blue: #1f5ca5;
  --bright-blue: #0f32c6;
  --light-gray: #d9d9d9;
  --button-color: linear-gradient(to right, #00477a, #21b79c);
  --search-con-btn-color: linear-gradient(to right, #00477a, #005b9d, #13898e, #017472);
  font-size: 10px;
}

html {
  font-size: 10px;
  text-rendering: optimizeLegibility !important;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  /*letter-spacing: 1px;*/
  color: #020000;
  background: transparent;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

.container {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

a:focus {
  outline: none;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */

/**
   * Remove the gray background on active links in IE 10.
   */

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

a {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

.ddl .ddl-options a,
.ddl .ddl-options a:visited {
  color: #000 !important;
}

a:hover {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  opacity: 0.9;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */

abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */

b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */

small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */

/**
   * Prevent vertical alignment issues.
   */

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */

/**
   * Reset form fields to make them styleable.
   * 1. Make form elements stylable across systems iOS especially.
   * 2. Inherit text-transform from parent.
   */

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
   * Reset radio and checkbox appearance to preserve their look in iOS.
   */

[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
   * Correct cursors for clickable elements.
   */

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

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

/**
   * Improve outlines for Firefox and unify style with input elements & buttons.
   */

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
   * Remove padding
   */

option {
  padding: 0;
}

/**
   * Reset to invisible
   */

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
  border: none;
}

legend {
  padding: 0;
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */

progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */

textarea {
  overflow: auto;
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the outline style in Safari.
   */

[type="search"] {
  outline-offset: -2px;
  /* 1 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Fix font inheritance.
   */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
   * Clickable labels
   */

label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */

/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */

details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */

summary {
  display: list-item;
}

/*
   * Remove outline for editable content.
   */

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */

/**
  1. Correct table border color inheritance in all Chrome and Safari.
  */

table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.tel {
  pointer-events: none;
}

p {
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* ------------------------------ */
/* UTILITY CLASSES */
/* ------------------------------ */
.mx-auto {
  margin-inline: auto;
}

.p-10 {
  padding: 10px;
}

.mb-9 {
  margin-bottom: 9px;
}

.mb-14 {
  margin-bottom: 14px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.pt-65 {
  padding-top: 65px;
}

.pb-80 {
  padding-bottom: 80px;
}

@charset "utf-8";

/* margin auto */
.m-auto {
  margin: 0 auto;
}

/* margin-top */
.mt0 {
  margin-top: 0;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mt-8 {
  margin-top: -8px;
}

/* margin-bottom */
.mb0 {
  margin-bottom: 0;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

/* margin-left */
.ml0 {
  margin-left: 0;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.ml30 {
  margin-left: 30px;
}

.ml35 {
  margin-left: 35px;
}

.ml40 {
  margin-left: 40px;
}

.ml45 {
  margin-left: 45px;
}

.ml50 {
  margin-left: 50px;
}

.ml55 {
  margin-left: 55px;
}

.ml60 {
  margin-left: 60px;
}

.ml65 {
  margin-left: 65px;
}

.ml70 {
  margin-left: 70px;
}

.ml75 {
  margin-left: 75px;
}

.ml80 {
  margin-left: 80px;
}

.ml85 {
  margin-left: 85px;
}

.ml90 {
  margin-left: 90px;
}

.ml95 {
  margin-left: 95px;
}

.ml100 {
  margin-left: 100px;
}

/* margin-right */
.mr0 {
  margin-right: 0;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

.mr30 {
  margin-right: 30px;
}

.mr35 {
  margin-right: 35px;
}

.mr40 {
  margin-right: 40px;
}

.mr45 {
  margin-right: 45px;
}

.mr50 {
  margin-right: 50px;
}

.mr55 {
  margin-right: 55px;
}

.mr60 {
  margin-right: 60px;
}

.mr65 {
  margin-right: 65px;
}

.mr70 {
  margin-right: 70px;
}

.mr75 {
  margin-right: 75px;
}

.mr80 {
  margin-right: 80px;
}

.mr85 {
  margin-right: 85px;
}

.mr90 {
  margin-right: 90px;
}

.mr95 {
  margin-right: 95px;
}

.mr100 {
  margin-right: 100px;
}

/* padding-top */
.pt0 {
  padding-top: 0;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt55 {
  padding-top: 55px;
}

.pt60 {
  padding-top: 60px;
}

.pt65 {
  padding-top: 65px;
}

.pt70 {
  padding-top: 70px;
}

.pt75 {
  padding-top: 75px;
}

.pt80 {
  padding-top: 80px;
}

.pt85 {
  padding-top: 85px;
}

.pt90 {
  padding-top: 90px;
}

.pt95 {
  padding-top: 95px;
}

.pt100 {
  padding-top: 100px;
}

/* padding-bottom */
.pb0 {
  padding-bottom: 0;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb55 {
  padding-bottom: 55px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb65 {
  padding-bottom: 65px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb75 {
  padding-bottom: 75px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb85 {
  padding-bottom: 85px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb95 {
  padding-bottom: 95px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb120 {
  padding-bottom: 120px;
}

/* padding-left */
.pl0 {
  padding-left: 0;
}

.pl5 {
  padding-left: 5px;
}

.pl10 {
  padding-left: 10px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl25 {
  padding-left: 25px;
}

.pl30 {
  padding-left: 30px;
}

.pl35 {
  padding-left: 35px;
}

.pl40 {
  padding-left: 40px;
}

.pl45 {
  padding-left: 45px;
}

.pl50 {
  padding-left: 50px;
}

.pl55 {
  padding-left: 55px;
}

.pl60 {
  padding-left: 60px;
}

.pl65 {
  padding-left: 65px;
}

.pl70 {
  padding-left: 70px;
}

.pl75 {
  padding-left: 75px;
}

.pl80 {
  padding-left: 80px;
}

.pl85 {
  padding-left: 85px;
}

.pl90 {
  padding-left: 90px;
}

.pl95 {
  padding-left: 95px;
}

.pl100 {
  padding-left: 100px;
}

/* padding-right */
.pr0 {
  padding-right: 0;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr25 {
  padding-right: 25px;
}

.pr30 {
  padding-right: 30px;
}

.pr35 {
  padding-right: 35px;
}

.pr40 {
  padding-right: 40px;
}

.pr45 {
  padding-right: 45px;
}

.pr50 {
  padding-right: 50px;
}

.pr55 {
  padding-right: 55px;
}

.pr60 {
  padding-right: 60px;
}

.pr65 {
  padding-right: 65px;
}

.pr70 {
  padding-right: 70px;
}

.pr75 {
  padding-right: 75px;
}

.pr80 {
  padding-right: 80px;
}

.pr85 {
  padding-right: 85px;
}

.pr90 {
  padding-right: 90px;
}

.pr95 {
  padding-right: 95px;
}

.pr100 {
  padding-right: 100px;
}

@media screen and (max-width: 768px) {
  /* margin-top */
  .mt0-sp {
    margin-top: 0;
  }

  .mt5-sp {
    margin-top: 5px;
  }

  .mt10-sp {
    margin-top: 10px;
  }

  .mt15-sp {
    margin-top: 15px;
  }

  .mt20-sp {
    margin-top: 20px;
  }

  .mt25-sp {
    margin-top: 25px;
  }

  .mt30-sp {
    margin-top: 30px;
  }

  .mt35-sp {
    margin-top: 35px;
  }

  .mt40-sp {
    margin-top: 40px;
  }

  .mt45-sp {
    margin-top: 45px;
  }

  .mt50-sp {
    margin-top: 50px;
  }

  /* margin-bottom */
  .mb0-sp {
    margin-bottom: 0;
  }

  .mb5-sp {
    margin-bottom: 5px;
  }

  .mb10-sp {
    margin-bottom: 10px;
  }

  .mb15-sp {
    margin-bottom: 15px;
  }

  .mb20-sp {
    margin-bottom: 20px;
  }

  .mb25-sp {
    margin-bottom: 25px;
  }

  .mb30-sp {
    margin-bottom: 30px;
  }

  .mb35-sp {
    margin-bottom: 35px;
  }

  .mb40-sp {
    margin-bottom: 40px;
  }

  .mb45-sp {
    margin-bottom: 45px;
  }

  .mb50-sp {
    margin-bottom: 50px;
  }

  /* margin-left */
  .ml0-sp {
    margin-left: 0;
  }

  .ml5-sp {
    margin-left: 5px;
  }

  .ml10-sp {
    margin-left: 10px;
  }

  .ml15-sp {
    margin-left: 15px;
  }

  .ml20-sp {
    margin-left: 20px;
  }

  .ml25-sp {
    margin-left: 25px;
  }

  .ml30-sp {
    margin-left: 30px;
  }

  .ml35-sp {
    margin-left: 35px;
  }

  .ml40-sp {
    margin-left: 40px;
  }

  .ml45-sp {
    margin-left: 45px;
  }

  .ml50-sp {
    margin-left: 50px;
  }

  /* margin-right */
  .mr0-sp {
    margin-right: 0;
  }

  .mr5-sp {
    margin-right: 5px;
  }

  .mr10-sp {
    margin-right: 10px;
  }

  .mr15-sp {
    margin-right: 15px;
  }

  .mr20-sp {
    margin-right: 20px;
  }

  .mr25-sp {
    margin-right: 25px;
  }

  .mr30-sp {
    margin-right: 30px;
  }

  .mr35-sp {
    margin-right: 35px;
  }

  .mr40-sp {
    margin-right: 40px;
  }

  .mr45-sp {
    margin-right: 45px;
  }

  .mr50-sp {
    margin-right: 50px;
  }

  /* padding-top */
  .pt0-sp {
    padding-top: 0;
  }

  .pt5-sp {
    padding-top: 5px;
  }

  .pt10-sp {
    padding-top: 10px;
  }

  .pt15-sp {
    padding-top: 15px;
  }

  .pt20-sp {
    padding-top: 20px;
  }

  .pt25-sp {
    padding-top: 25px;
  }

  .pt30-sp {
    padding-top: 30px;
  }

  .pt35-sp {
    padding-top: 35px;
  }

  .pt40-sp {
    padding-top: 40px;
  }

  .pt45-sp {
    padding-top: 45px;
  }

  .pt50-sp {
    padding-top: 50px;
  }

  .pt70-sp {
    padding-top: 70px;
  }

  .pt75-sp {
    padding-top: 75px;
  }

  .pt80-sp {
    padding-top: 80px;
  }

  /* padding-bottom */
  .pb0-sp {
    padding-bottom: 0;
  }

  .pb5-sp {
    padding-bottom: 5px;
  }

  .pb10-sp {
    padding-bottom: 10px;
  }

  .pb15-sp {
    padding-bottom: 15px;
  }

  .pb20-sp {
    padding-bottom: 20px;
  }

  .pb25-sp {
    padding-bottom: 25px;
  }

  .pb30-sp {
    padding-bottom: 30px;
  }

  .pb35-sp {
    padding-bottom: 35px;
  }

  .pb40-sp {
    padding-bottom: 40px;
  }

  .pb45-sp {
    padding-bottom: 45px;
  }

  .pb50-sp {
    padding-bottom: 50px;
  }

  .pb70-sp {
    padding-bottom: 70px;
  }

  /* padding-left */
  .pl0-sp {
    padding-left: 0;
  }

  .pl5-sp {
    padding-left: 5px;
  }

  .pl10-sp {
    padding-left: 10px;
  }

  .pl15-sp {
    padding-left: 15px;
  }

  .pl20-sp {
    padding-left: 20px;
  }

  .pl25-sp {
    padding-left: 25px;
  }

  .pl30-sp {
    padding-left: 30px;
  }

  .pl35-sp {
    padding-left: 35px;
  }

  .pl40-sp {
    padding-left: 40px;
  }

  .pl45-sp {
    padding-left: 45px;
  }

  .pl50-sp {
    padding-left: 50px;
  }

  /* padding-right */
  .pr0-sp {
    padding-right: 0;
  }

  .pr5-sp {
    padding-right: 5px;
  }

  .pr10-sp {
    padding-right: 10px;
  }

  .pr15-sp {
    padding-right: 15px;
  }

  .pr20-sp {
    padding-right: 20px;
  }

  .pr25-sp {
    padding-right: 25px;
  }

  .pr30-sp {
    padding-right: 30px;
  }

  .pr35-sp {
    padding-right: 35px;
  }

  .pr40-sp {
    padding-right: 40px;
  }

  .pr45-sp {
    padding-right: 45px;
  }

  .pr50-sp {
    padding-right: 50px;
  }
}

/* ===============================
Font
=============================== */
.fz-normal {
  font-weight: 400;
}

.fz-medium {
  font-weight: 500;
}

.fz-bold {
  font-weight: bold;
}

.fz-10 {
  font-size: 10px;
}

.fz-11 {
  font-size: 11px;
}

.fz-12 {
  font-size: 12px;
}

.fz-13 {
  font-size: 13px;
}

.fz-14 {
  font-size: 14px;
}

.fz-15 {
  font-size: 15px;
}

.fz-16 {
  font-size: 16px;
}

.fz-17 {
  font-size: 17px;
}

.fz-18 {
  font-size: 18px;
}

.fz-19 {
  font-size: 19px;
}

.fz-20 {
  font-size: 20px;
}

.fz-21 {
  font-size: 21px;
}

.fz-22 {
  font-size: 22px;
}

.fz-23 {
  font-size: 23px;
}

.fz-24 {
  font-size: 24px;
}

.fz-25 {
  font-size: 25px;
}

.fz-26 {
  font-size: 26px;
}

.fz-27 {
  font-size: 27px;
}

.fz-28 {
  font-size: 28px;
}

.fz-29 {
  font-size: 29px;
}

.fz-30 {
  font-size: 30px;
}

.fz-31 {
  font-size: 31px;
}

.fz-32 {
  font-size: 32px;
}

.fz-33 {
  font-size: 33px;
}

.fz-34 {
  font-size: 34px;
}

.fz-35 {
  font-size: 35px;
}

.fz-36 {
  font-size: 36px;
}

.fz-37 {
  font-size: 37px;
}

.fz-38 {
  font-size: 38px;
}

.fz-39 {
  font-size: 39px;
}

.fz-40 {
  font-size: 40px;
}

.fz-45 {
  font-size: 45px;
}

.fz-46 {
  font-size: 46px;
}

.fz-47 {
  font-size: 47px;
}

.fz-48 {
  font-size: 48px;
}

.fz-49 {
  font-size: 49px;
}

.fz-50 {
  font-size: 50px;
}

@media screen and (max-width: 768px) {
  .fz-10-sp {
    font-size: 10px;
  }

  .fz-11-sp {
    font-size: 11px;
  }

  .fz-12-sp {
    font-size: 12px;
  }

  .fz-13-sp {
    font-size: 13px;
  }

  .fz-14-sp {
    font-size: 14px;
  }

  .fz-15-sp {
    font-size: 15px;
  }

  .fz-16-sp {
    font-size: 16px;
  }

  .fz-17-sp {
    font-size: 17px;
  }

  .fz-18-sp {
    font-size: 18px;
  }

  .fz-19-sp {
    font-size: 19px;
  }

  .fz-20-sp {
    font-size: 20px;
  }

  .fz-21-sp {
    font-size: 21px;
  }

  .fz-22-sp {
    font-size: 22px;
  }

  .fz-23-sp {
    font-size: 23px;
  }

  .fz-24-sp {
    font-size: 24px;
  }

  .fz-25-sp {
    font-size: 25px;
  }

  .fz-26-sp {
    font-size: 26px;
  }

  .fz-27-sp {
    font-size: 27px;
  }

  .fz-28-sp {
    font-size: 28px;
  }

  .fz-29-sp {
    font-size: 29px;
  }

  .fz-30-sp {
    font-size: 30px;
  }

  .fz-31-sp {
    font-size: 31px;
  }

  .fz-32-sp {
    font-size: 32px;
  }

  .fz-33-sp {
    font-size: 33px;
  }

  .fz-34-sp {
    font-size: 34px;
  }

  .fz-35-sp {
    font-size: 35px;
  }

  .fz-36-sp {
    font-size: 36px;
  }

  .fz-37-sp {
    font-size: 37px;
  }

  .fz-38-sp {
    font-size: 38px;
  }

  .fz-39-sp {
    font-size: 39px;
  }

  .fz-40-sp {
    font-size: 40px;
  }

  .fz-45-sp {
    font-size: 45px;
  }
}

/* ===============================
  Font
  =============================== */

.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}
.d-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }
  .container {
    padding: 0 12px;
  }
  .jst-logo.sp-only a img {
    width: 36px;
    height: 31px;
  }
}

/*==================
Header start
===================*/
header {
  padding-top: 13px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
}

main {
  padding-top: 182px;
}

.header-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-container {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 32px;
  border: 1px solid var(--bright-blue);
}

.search-container input[type="text"] {
  border: none;
  outline: none;
  max-width: 199px;
  width: 100%;
  padding: 0 10px;
  flex: 1;
  height: 32px;
  background: #ffffff;
}

.search-container input::placeholder {
  font-weight: 500;
}

.search-container button {
  max-width: 32px;
  width: 100%;
  background-color: var(--dark-blue);
  border: none;
  color: white;
  padding: 9px 20px;
  cursor: pointer;
}

.search-container button img {
  vertical-align: middle;
  max-width: 17px;
  position: relative;
  right: 6px;
  top: 1px;
}

.search-container input[type="text"]:focus {
  border-color: var(--bright-blue);
}

.ssh-highschool-logo-content {
  padding: 15px 0;
  color: var(--font-color);
}

.ssh-highschool-logo-content {
  font-size: 2.4rem;
  margin-bottom: 0;/*20250130*/
}

.ssh-highschool-logo-content h1 {
  font-size: 3.2rem;
  margin-right: 20px;
  display: inline-block;
}

.ssh-highschool-logo-content > span {
  margin-left: 20px;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
}

.ssh-highschool-logo-content > span,
.ssh-highschool-logo-content h1 {
  font-weight: 500;
}

.ssh-highschool-logo-content h1 {
  position: relative;
  padding-left: 90px;
}

.ssh-highschool-logo-content h1::before {
  content: "";
  position: absolute;
  width: 77px;
  height: 46px;
  background: url(../img/super_science_highsch.png) no-repeat;
  left: 0;
  background-size: contain;
}

.ssh-highschool-logo-content .english-text {
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
}

.english-text .highlight {
  color: var(--dark-blue);
}

.logo-img-flex {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.google_search {
  position: relative;
  max-width: 240px;
}

.google_search label[for="google"] {
  display: none;
}

.google_search input[type="text"] {
  width: 100%;
  border: 1px solid #2153a1;
  height: 32px;
  position: relative;
  padding: 5px 10px 8px 10px;
  font-size: 1.4rem;
  font-weight: 400;
  background: #fff;
}

.google_search .google {
  display: none;
}

.search_btn {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  background: #2153a1;
}

.nav-container #header-nav li.google-search.sp {
  display: none;
}

/*==================
 Global Nav 
===================*/
.nav-container {
  background: linear-gradient(to right, #005b9d 30%, #13898e 60%);
}

.nav-container .nav-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.nav-container #header-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.nav-container #header-nav .sub-nav {
  display: none;
}

.nav-container #header-nav li {
  display: flex;
  justify-content: center;
}
.nav-container #header-nav li span {
  line-height: 1.7;
  display: block;
}

.nav-container #header-nav li span {
  border-right: 1px solid #fff;
}

.nav-container #header-nav li:first-child span {
  border-left: 1px solid #fff;
}

.nav-container #header-nav li a,
.nav-container #header-nav li .sub-menu {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding: 17px 0;
  width: 100%;
  text-align: center;
}

.nav-container #header-nav li .sub-menu.menu-sp {
  display: none;
}
@media screen and (max-width: 1280px) {
  .nav-container #header-nav li.first-menu:hover .sub-nav ul {
    gap: 20px;
    max-width: 800px;
  }
}
@media (min-width: 769px) {
  .nav-container {
    position: relative;
  }

  .nav-container #header-nav li .sub-menu.menu-pc {
    display: block;
  }

  .nav-container #header-nav li .sub-menu.menu-sp {
    display: none;
  }

  .nav-container #header-nav li .sub-menu {
    width: 100%;
    text-align: center;
    cursor: pointer;
  }

  .nav-container #header-nav li.first-menu:hover .sub-menu::after {
    position: absolute;
    content: " ";
    background: url(../img/hover_after.png) no-repeat;
    width: 10px;
    height: 8px;
    background-size: contain;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
  }

  .nav-container #header-nav .sub-nav {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: linear-gradient(to right, #005b9d 30%, #13898e 60%);
    padding: 25px 0;
    z-index: 1;
  }

  .nav-container #header-nav li.first-menu:hover .sub-nav,
  .nav-container #header-nav li.first-menu .sub-nav:hover {
    display: block;
    z-index: 1000;
  }

  .nav-container #header-nav li.first-menu:hover .sub-nav ul {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: start;
    gap: 50px;
    background: #ffffff;
    padding: 36px 40px 36px 50px;
    border-radius: 23px;
    z-index: 2;
  }

  .nav-container #header-nav li.first-menu .sub-nav li {
    border-right: unset;
  }

  .nav-container #header-nav li .sub-nav li span {
    color: #020000;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .nav-container #header-nav li .sub-nav li a {
    position: relative;
    padding: 0;
    width: 100%;
    text-align: start;
  }

  .nav-container #header-nav li .sub-nav li a::before {
    position: absolute;
    content: " ";
    background: url(../img/menu_before.png) no-repeat;
    background-size: contain;
    width: 11px;
    height: 15px;
    left: -19px;
    top: 3px;
  }
}

header .left-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .nav-container #header-nav li .sub-menu.menu-pc {
    display: none;
  }
  .nav-container #header-nav li .sub-menu.menu-sp {
    display: block;
  }
}
/*==================
 Global Nav 
===================*/

/*==================
Footer Section starts
===================*/
footer {
  border-top: 4px solid;
  border-image-source: linear-gradient(to right, #00477a, #21b79c);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-image-slice: 1;
  border-width: 4px;
}

footer .container {
  padding: 30px 20px 0;
}

.f-txt-flex {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
}

.f-txt-flex span {
  font-size: 1.4rem;
}

.f-txt-flex p {
  font-size: 1.8rem;
}

.logo-flex {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 10px 0 15px;
  font-weight: 500;
}

.f-logo-txt {
  display: flex;
  align-items: end;
  gap: 20px;
}

.logo-flex p {
  font-size: 3.2rem;
  font-weight: bold;
}

.logo-flex span {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.f-link-flex {
  display: flex;
  gap: 32px;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 5px 0 15px;
}

.f-link-flex a {
  position: relative;
  display: inline;
}

.f-link-flex a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.f-link-flex a::after {
  position: absolute;
  content: " ";
  background: url(../img/f_line.png) no-repeat;
  width: 10px;
  height: 1.3rem;
  right: -22px;
  background-size: contain;
}

.f-link-flex a:last-child:after {
  display: none;
}

footer .container.copyright {
  font-size: 1.2rem;
  padding: 16px 20px;
  font-family: "Poppins", sans-serif;
  display: block;
}

.copy-border {
  border-top: 1px solid;
  border-color: var(--light-gray);
}

/*==================
Footer Section ends
===================*/
@media screen and (max-width: 1020px) {
  .ssh-highschool-logo-content h1 {
    margin-bottom: 20px;
  }
  .ssh-highschool-logo-content {
    margin-bottom: 0;
  }
  .ssh-highschool-logo-content h1::before {
    width: 57px;
    height: 36px;
  }
  .ssh-highschool-logo-content h1 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1000px) {
  .ssh-highschool-logo-content > span {
    font-size: 2.2rem;
    margin-right: 7px;
  }
  .ssh-highschool-logo-content .english-text,
  .ssh-highschool-logo-content > span {
    font-size: 1.5rem;
  }
  .nav-container #header-nav li a,
  .nav-container #header-nav li .sub-menu {
    font-size: 1.3rem;
  }
  .logo-flex p {
    font-size: 2.2rem;
  }
  .logo-flex span {
    font-size: 1.8rem;
  }
  .f-logo-txt {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .nav-container #header-nav li.google-search.sp {
    display: block;
  }

  .google-search.sp .google_search .google {
    display: none !important;
  }

  .google-search.sp .google_search {
    max-width: 327px;
  }

  .google-search.sp .google_search input[type="text"] {
    height: 44px;
    font-size: 1.9rem;
  }

  .google-search.sp .search_btn {
    width: 44px;
    height: 44px;
  }

  .google-search.sp {
    padding-top: 50px !important;
  }
}

@media (max-width: 768px) {
  .logo-img-flex {
    display: none;
  }
  .ssh-highschool-logo-content h1 {
    margin-bottom: 0px;
  }
  .ssh-highschool-logo-content span {
    display: none;
  }

  .nav-container {
    display: none;
  }

  .ssh-highschool-logo-content > span,
  .ssh-highschool-logo-content h1 {
    font-size: 1.4rem;
    margin-right: 10px;
  }

  .header-logo {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .header-logo .big-txt {
    font-size: 1.1rem;
    padding-left: 4px;
    letter-spacing: normal;
  }

  .ssh-highschool-logo-content h1::before {
    width: 33px;
    height: 20px;
    background-size: contain;
  }

  .ssh-highschool-logo-content {
    display: flex;
    align-items: baseline;
    padding: 6px 0;
    margin-bottom: 0;
  }

  .header-logo-wrapper.container {
    display: flex;
    padding: 0 12px;
  }

  .ssh-highschool-logo-content h1 {
    padding-left: 38px;
    line-height: 1.25;
    letter-spacing: normal;
  }

  header {
    padding-top: 6.7px;
    border-bottom: 1px solid #e6e6e6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .nav-btn {
    position: relative;
  }

  .nav-btn::after {
    content: " ";
    position: absolute;
    background: url(../img/nav_btn.png) no-repeat;
    background-size: contain;
    width: 48px;
    height: 48px;
    top: -47px;
    right: 0;
  }

  .nav-container.active {
    display: block;
    height: 100vh;
    overflow-y: scroll;
  }

  .nav-container #header-nav {
    grid-template-columns: repeat(1, 1fr);
    padding: 25px 20px 140px 24px;
  }

  .nav-container #header-nav li {
    display: block;
    text-align: start;
    padding-top: 40px;
  }

  .nav-container #header-nav .google-search {
    display: flex;
    justify-content: start;
  }

  .nav-container #header-nav li a,
  .nav-container #header-nav li .sub-menu {
    font-size: 1.6rem;
    position: relative;
    margin: 0 0 0 20px;
    display: block;
    cursor: pointer;
    padding: 0;
    text-align: start;
  }

  .nav-container #header-nav li a::before,
  .nav-container #header-nav li .sub-menu::before {
    position: absolute;
    content: " ";
    background: url(../img/nav_line.png) no-repeat;
    background-size: contain;
    width: 8px;
    height: 2px;
    left: -15px;
    top: 50%;
  }

  .nav-container #header-nav li:not(:last-child) {
    border-right: none;
  }

  .nav-container #header-nav li:first-child span {
    border-left: none;
  }

  .nav-container #header-nav li span {
    border: none !important;
  }

  .nav-container #header-nav li span {
    border-left: none;
  }
  /*==================
   sub menu sp 
 ===================*/
    .nav-container #header-nav.showMenu .sub-nav {
/*        display: block;*/
        background-color: #ffffff;
        border-radius: 24px;
        margin-top: 22px;
        padding: 0 28px 28px;
        font-size: 1.4rem;
    }

    .nav-container #header-nav.showMenu .sub-nav li a {
        color: #020000;
        font-size: 1.4rem;
    }

    .nav-container #header-nav.showMenu .sub-nav li a span {
        line-height: 1.6;
    }

    .nav-container #header-nav.showMenu .sub-nav li a::before {
        position: absolute;
        content: " ";
        background: url(../img/menu_before.png) no-repeat;
        background-size: contain;
        width: 11px;
        height: 15px;
        left: -19px;
        top: 3px;
    }

    .nav-container #header-nav.showMenu .sub-nav li {
        padding-top: 21px;
    }
/*
    .nav-container #header-nav.showMenu .sub-menu {
        color: #f0f2b4;
    }
*/
    
    .nav-container #header-nav .menu_open+.sub-nav {
        display: block;
    }
    .nav-container #header-nav.showMenu .sub-menu.menu_open {
        color: #f0f2b4;
    }
    
    
    
    
    
    
    
/*==================
Footer Section sp
===================*/
  footer .container {
    padding: 20px 10px 15px;
  }

  footer .container.copyright {
    font-size: 1rem;
    padding: 15px 10px 15px;
    letter-spacing: 0;
  }

  .f-logo-txt {
    flex-direction: column;
    gap: 4px;
    align-items: start;
  }

  .logo-flex {
    gap: 10px;
  }

  .f-txt-flex span {
    font-size: 1rem;
  }

  .f-txt-flex p {
    font-size: 1.6rem;
  }

  .logo-flex p {
    font-size: 1.8rem;
    letter-spacing: -1px;
  }

  .logo-flex span {
    font-size: 1.4rem;
  }

  .f-link-flex {
    gap: 13px;
    letter-spacing: 0;
    padding: 5px 0 0;
    flex-wrap: wrap;
  }

  .f-link-flex a::after {
    width: 10px;
    height: 11px;
    right: -13px;
    bottom: 1px;
    background-size: contain;
  }

  .copyright {
    font-size: 1rem;
    letter-spacing: 0;
  }

  .footer-logo img {
    width: 100%;/*20250130*/
  }
}

@media (max-width: 370px) {
  .header-logo {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: start;
  }

  .header-logo-wrapper.container {
    padding: 0 7px;
    gap: 5px;
  }

  .ssh-highschool-logo-content > span,
  .ssh-highschool-logo-content h1 {
    font-size: 1rem;
  }

  .ssh-highschool-logo-content h1::before {
    width: 25px;
  }

  .jst-logo.sp-only a img {
    width: 28px;
  }

  .sp-only {
    letter-spacing: 0;
  }

  .nav-container #header-nav li a,
  .nav-container #header-nav li .sub-menu {
    font-size: 1.4rem;
  }

  .header-logo .big-txt {
    font-size: 0.9rem;
    padding-left: 4px;
  }
  /* footer */
  .f-txt-flex {
    gap: 5px;
  }

  .f-txt-flex a {
    font-size: 1rem;
  }

  .f-txt-flex span {
    font-size: 0.8rem;
  }

  .logo-flex p {
    font-size: 1.5rem;
  }

  .f-link-flex {
    font-size: 1rem;
  }

  footer .container.copyright {
    font-size: 0.8rem;
  }

  .footer-logo img {
    width: 60px;
  }
}

/*==================
blue button
===================*/
.seemore-btn {
  max-width: 224px;
  background: var(--button-color);
  border-radius: 32px;
  margin: 0 auto 57px;
}

.seemore-btn a {
  width: 100%;
  text-align: center;
  padding: 20px 45px 20px 25px;
  font-size: 1.6rem;
  color: #ffffff;
  position: relative;
  font-weight: 500;
}

.seemore-btn a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--dark-blue);
  transition: all 0.1s;
  border-radius: 32px;
  z-index: -1;
}

.seemore-btn a:hover:before {
  width: 100%;
}

.seemore-btn a::after {
  position: absolute;
  content: "";
  background: url(../img/btn_after.png) no-repeat;
  width: 36px;
  height: 36px;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
}
.seemore-btn a:hover {
  color: #f0f2b4;
}
.seemore-btn.pdf-download a {
  padding: 20px 5px 20px 14px;
}
.pdf-download span {
  position: relative;
}
.pdf-download span::before {
  content: " ";
  position: absolute;
  background: url(../img/pdf_img.png) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 0;
  left: -30px;
}
/*==================
blue button
===================*/

/*==================
the breadcrumb
===================*/

.ssh-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 1.2rem;
  padding: 20px;
}
.ssh-breadcrumb ul li {
  display: inline-block;
}

.ssh-breadcrumb ul li a {
  font-family: "Zen Kaku Gothic New", "Poppins", sans-serif;
  font-weight: 400;
  color: var(--dark-blue);
  position: relative;
}

.ssh-breadcrumb ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ssh-breadcrumb ul li a::after {
  content: " ";
  position: absolute;
  background: url(../img/breadcrumb_after.png) no-repeat;
  width: 5px;
  height: 4px;
  background-size: contain;
  top: 50%;
  right: -11px;
  transform: translateY(-50%);
}

.ssh-breadcrumb ul li span {
  font-family: "Zen Kaku Gothic New", "Poppins", sans-serif;
  color: var(--font-color);
}

/* h2-ttl block */
.cat-blk {
  background: url(../img/ttl_bg.jpg) no-repeat;
  background-size: 100% 100%;
}

.cat-blk .wrapper {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
  height: 194px;
  position: relative;
}

.cat-blk .cat-name-blk {
  position: absolute;
  margin-top: 40px;
}

.cat-blk .cat-name {
  font-size: 2rem;
  line-height: 0.9;
  color: #2153a1;
  position: relative;
  padding-left: 15px;
}

.cat-blk .cat-name::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #2153a1;
}

.cat-blk .cat-ttl {
  font-size: 4rem;
  letter-spacing: 1.6px;
  position: relative;
  padding-left: 45px;
  display: flex;
  align-items: center;
  height: 100%;
}

.cat-blk .cat-ttl::before {
  content: "";
  position: absolute;
  background: url(../img/cat_ttl_img.png) no-repeat;
  background-size: 100% 100%;
  width: 32px;
  height: 44px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.cat-blk .cat-ttl span {
  font-size: 2.4rem;
  margin-top: 15px;
}
.cat-blk .cat-ttl .box {
  background: #2153a1;
  border-radius: 8px;
  font-size: 2rem;
  color: #fff;
  padding: 9px 14px;
  margin-top: 0;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .pdf-download span::before {
    width: 18px;
    height: 18px;
    left: -20px;
  }
  .cat-blk {
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .ssh-breadcrumb ul {
    padding: 21px 20px 15px;
    font-size: 1rem;
    row-gap: 5px;
    column-gap: 15px;
  }

  .cat-blk {
    background-size: cover;
  }

  .ssh-breadcrumb {
    margin-top: -5px;
  }

  .cat-blk .wrapper {
    padding: 0 12px;
    height: 116px;
  }

  .cat-blk .cat-name-blk {
    margin-top: 25px;
  }

  .cat-blk .cat-name {
    font-size: 1.4rem;
  }

  .cat-blk .cat-ttl {
    font-size: 2.2rem;
    padding-left: 25px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .cat-blk .cat-ttl::before {
    width: 18px;
    height: 24px;
  }

  .cat-blk .cat-ttl span {
    font-size: 1.4rem;
    display: block;
    position: absolute;
    bottom: 25px;
    margin-top: 0;
  }
  .cat-blk .cat-ttl .box {
    position: relative;
    font-size: 1.4rem;
    padding: 5px 7px;
    margin: 53px 5px 0 0;
    border-radius: 4px;
  }
  .cat-blk .cat-ttl:has(.box) {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}

@media (max-width: 376px) {
  .cat-blk {
    margin-top: -7px;
  }
}
/* main h2 title */

.h3-com-ttl {
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0;
  padding-left: 40px;
  position: relative;
}

.h3-com-ttl::before {
  content: "";
  position: absolute;
  background: url(../img/news_icon.png) no-repeat;
  background-size: 100% 100%;
  width: 24px;
  height: 33px;
  left: 0;
  top: 7px;
}
/* To Top Button */
.scrolltop {
  display: flex;
  justify-content: flex-end;
  padding: 0 22px;
}
.scrolltop .pagetop {
  position: fixed;
  bottom: 50px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: url(../img/top_btn.png) no-repeat;
  background-size: 100% 100%;
  z-index: 80;
}
.scrolltop .pagetop:hover {
  opacity: 0.8;
}
.scrolltop.pos {
  position: relative;
}
.scrolltop.pos .pagetop {
  position: absolute;
  bottom: 250px;
}
@media (max-width: 768px) {
  .h3-com-ttl {
    font-size: 2rem;
    line-height: 1.4;
    padding-left: 20px;
  }
  .h3-com-ttl::before {
    width: 14px;
    height: 18px;
    top: 6px;
  }
  .scrolltop {
    padding: 0 8px;
  }
  .scrolltop .pagetop {
    width: 40px;
    height: 40px;
    bottom: 50px;
  }
  .scrolltop.pos .pagetop {
    bottom: 200px;
  }
}

/* add 250130*/
.sec-logo-container .result-container li a {
    display: inline-block;
}
.sec-logo-container .result-container li span::after {
    background: url(../img/about/download_icon.png) no-repeat;
    background-size: contain;
}

@media (max-width: 768px) {
  .header-logo-container h1 .ssh-highschool-logo-content {
    width: 247px;
  }
}