@charset "UTF-8";
* {
  position: relative;
  margin: 0;
  box-sizing: border-box;
  z-index: auto;
}

html {
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  font-family: sans-serif;
  font-size: 100%;
  /* 16px */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}
html[lang=ja] html {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 599px) {
  html {
    font-size: 4vmin;
  }
}
@media (min-width:600px) {
  html {
    /* clamp( 最小値px, 中間値{ 最小値 + ( 現在の画面幅 - TBブレイクポイント幅 ) / ( PC-TBブレイクポイント幅差 ) * ( 最大値 - 最小値 ) }, 最大値px )*/
    font-size: clamp(14px, 14px + (100vw - 600px) / 600 * 2, 16px);
  }
}
@media print {
  html {
    font-size: 9pt;
  }
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: 100%;
  min-height: 100%;
  background-color: #FFFFFF;
  color: #000000;
  fill: #000000;
  font-size: 1rem;
  overflow-x: hidden;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  font-family: sans-serif;
}
html[lang=ja] body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Droid Sans Japanese", sans-serif;
}
body:not(#home) .is_front_page {
  display: none !important;
}
@media (min-width:600px) {
  body {
    padding-left: clamp(200px, 20vw, 400px);
  }
}

a,
a::before,
a::after {
  transition: all 0.2s;
  color: inherit;
  fill: inherit;
}

a[href=""] {
  pointer-events: none;
  opacity: 0.5;
}

a:empty::before {
  content: attr(href);
  word-break: break-all;
  white-space: normal;
}

img,
svg {
  vertical-align: bottom;
}

img {
  max-width: 100%;
  height: auto;
}
img img[src$=".png"] {
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  -webkit-transform: translateZ(0);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-variation-settings: "wght" 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  text-wrap: balance;
}
html[lang=ja] h1, html[lang=ja] h2, html[lang=ja] h3, html[lang=ja] h4, html[lang=ja] h5, html[lang=ja] h6 {
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Droid Sans Japanese", sans-serif;
}

p {
  line-height: 1.75;
}

form input:disabled,
form textarea:disabled,
form select:disabled,
form button:disabled {
  pointer-events: none !important;
  opacity: 0.5 !important;
}
form input[type=text],
form input[type=search],
form input[type=tel],
form input[type=url],
form input[type=email],
form input[type=password],
form input[type=datetime],
form input[type=date],
form input[type=month],
form input[type=week],
form input[type=time],
form input[type=datetime-local],
form input[type=number],
form input[type=reset],
form input[type=button],
form textarea,
form select {
  padding: 0.5em 0.75em;
  max-width: 100%;
  border-radius: 0.5em;
  border: solid 1px #000000;
  width: 100%;
}
form [type=submit] {
  display: block;
  padding: 1em 2em;
  transition: all 0.2s;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
  font-variation-settings: "wght" 700;
  margin: auto;
  width: 10em;
  border: none;
  border-radius: 3em;
  background-color: #333333;
  color: #FFFFFF;
  fill: #FFFFFF;
  font-size: 1.125em;
}
form [type=submit]:hover {
  transform: scale(1.05, 1.05);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
}
form [type=submit]:active {
  transform: scale(0.95, 0.95);
}
form input[name^=tel] {
  width: auto;
}
@media screen and (max-width: 599px) {
  form input[type=text],
form input[type=search],
form input[type=tel],
form input[type=url],
form input[type=email],
form input[type=password],
form input[type=datetime],
form input[type=date],
form input[type=month],
form input[type=week],
form input[type=time],
form input[type=datetime-local],
form input[type=number],
form input[type=reset],
form input[type=button],
form textarea,
form select {
    font-size: 16px !important;
  }
}
form label {
  display: inline-block;
}
form .form_table {
  margin: 1.5rem auto;
  width: 100%;
}
form .form_table .required::after {
  content: "*";
  display: inline-block;
  width: 1em;
  text-align: center;
  color: #CC3333;
  font-size: 1em;
  vertical-align: top;
}
form .form_table caption {
  margin-bottom: 0.5em;
  text-align: left;
  font-size: 0.75em;
}
form .form_table tr th {
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 599px) {
  form .form_table {
    display: block;
  }
  form .form_table thead,
form .form_table tfoot,
form .form_table tbody,
form .form_table tr,
form .form_table th,
form .form_table td,
form .form_table caption {
    display: block;
  }
  form .form_table colgroup,
form .form_table col {
    display: none;
  }
  form .form_table caption {
    margin-bottom: 1rem;
  }
  form .form_table tr th {
    font-weight: 700;
    font-variation-settings: "wght" 700;
  }
  form .form_table tr:not(:last-child) {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: dotted 1px;
  }
}
@media (min-width:600px) {
  form .form_table {
    border-collapse: separate;
    border-spacing: 0 1em;
  }
  form .form_table tr th {
    padding-top: 0.5em;
    padding-right: 1em;
    text-align: left;
    white-space: nowrap;
    word-break: keep-all;
    vertical-align: top;
  }
}

hr {
  margin: 3rem auto;
}

.switch {
  display: none !important;
}

.-sp,
.-tb,
.-pc {
  display: none;
}

.inner,
.-sp_inner,
.-tb_inner,
.-pc_inner {
  margin-right: auto;
  margin-left: auto;
}

.narrow,
.-sp_narrow,
.-tb_narrow,
.-pc_narrow {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 599px) {
  .-sp {
    display: inherit;
  }
  .inner,
.-sp_inner {
    width: 90%;
  }
  .narrow,
.-sp_narrow {
    width: 60%;
  }
}
@media (min-width:600px) and (max-width:1199px) {
  .-tb {
    display: inherit;
  }
  .inner,
.-tb_inner {
    width: 95%;
  }
  .narrow,
.-tb_narrow {
    width: 60%;
  }
}
@media (min-width:1200px) {
  .-pc {
    display: inherit;
  }
  .inner,
.-pc_inner {
    width: 90%;
  }
  .narrow,
.-pc_narrow {
    width: 60%;
  }
}
.ib {
  display: inline-block;
}

.menu_list,
.sub-menu {
  list-style: none;
  padding: 0;
}
.menu_list a,
.sub-menu a {
  display: inline-block;
  text-decoration: none;
}

.split_mail {
  cursor: pointer;
  display: inline-flex !important;
  flex-direction: row-reverse;
  white-space: nowrap;
  word-break: keep-all;
}
.split_mail:hover {
  text-decoration: underline;
}
.split_mail > .mail_d::before {
  content: "@";
}

.logo {
  display: inline-block;
  line-height: 1;
  vertical-align: bottom;
}

.school_logo {
  display: inline-block;
  line-height: 1;
}
.school_logo .logo_img {
  display: block;
}
.school_logo .logo_txt {
  display: block;
  line-height: 1.25;
}

.message {
  padding: 3rem 0;
  text-align: center;
}

.map_block::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.map_block > iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#searchform {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  line-height: 1;
}
#searchform #s {
  padding: 0.5em 0;
  width: 16em;
  background-color: transparent;
  border-radius: 0;
  border-style: solid;
  border-width: 0 0 1px;
  color: #FFFFFF;
  fill: #FFFFFF;
  border-color: #FFFFFF;
  line-height: 1;
}
#searchform #s::-moz-placeholder {
  color: inherit;
  opacity: 0.5;
}
#searchform #s::placeholder {
  color: inherit;
  opacity: 0.5;
}
#searchform .search-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 1.5em;
  height: 1.5em;
  border: solid 1px;
  background-color: #FFFFFF;
}
#searchform .searchform_btn {
  display: block;
  margin: auto;
  width: 1em;
  height: 1em;
  color: #FFFFFF;
  fill: #FFFFFF;
  text-decoration: none;
}
#searchform .searchform_btn::before, #searchform .searchform_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 0;
  border-style: solid;
  border-width: 1px;
}
#searchform .searchform_btn::before {
  transform: rotate(45deg);
}
#searchform .searchform_btn::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 599px) {
  #searchform {
    margin: 1.5rem auto;
    background-color: #006E95;
  }
  #searchform .search-submit {
    font-size: 1.5em;
    color: #006E95;
    fill: #006E95;
  }
  #searchform .searchform_btn {
    display: none;
  }
}
@media (min-width:600px) {
  #searchform {
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 5.5555555556%;
    padding: 0.75rem;
    border-radius: 3em 0 0 3em;
    background-image: linear-gradient(140deg, #01A8E2 0%, #03B1EE 40%, #0770FF 100%);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
    z-index: 900;
    transition: all 0.2s;
  }
  #searchform.-active {
    transform: translate(0, -50%);
  }
  #searchform:not(.-active) {
    transform: translate(-100%, -50%);
  }
  #searchform .search-submit {
    font-size: 1.2em;
    color: #01A8E2;
    fill: #01A8E2;
  }
}

#header .site_logo {
  display: block;
  line-height: 1;
  font-size: 1.25em;
  transition: all 0s;
}
@media screen and (max-width: 599px) {
  #header {
    height: 4rem;
    z-index: auto;
  }
  #header .site_logo {
    position: absolute;
    top: 2rem;
    transform: translate(0, -50%);
    z-index: 4200;
  }
}
@media (min-width:600px) {
  #header {
    overflow: hidden;
    z-index: 2000;
    height: clamp(100px, 7.5vw, 150px);
  }
  #header > .inner {
    display: flex;
    align-items: center;
    height: 100%;
  }
  #header .site_logo {
    position: fixed;
    top: calc(clamp(100px, 7.5vw, 150px) / 2);
    left: calc(clamp(200px, 20vw, 400px) / 2);
    transform: translate(-50%, -50%);
    font-size: clamp(20px, 2vw, 40px);
  }
}
@media screen and (min-width:600px) and (max-width: 782px) {
  body.admin-bar #header .site_logo {
    margin-top: 46px;
  }
}
@media (min-width:600px) and (min-width: 783px) {
  body.admin-bar #header .site_logo {
    margin-top: 32px;
  }
}
@media (min-width:1200px) {
  #header {
    height: clamp(100px, 7.5vw, 150px);
  }
}

#gnav_switch + #gnav_btn {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 1;
  z-index: 4100;
  transition: all 0.2s;
}
@media screen and (max-width: 782px) {
  body.admin-bar #gnav_switch + #gnav_btn {
    margin-top: 46px;
  }
}
@media (min-width: 783px) {
  body.admin-bar #gnav_switch + #gnav_btn {
    margin-top: 32px;
  }
}
@media (min-width:600px) {
  #gnav_switch + #gnav_btn {
    display: none;
  }
}
#gnav_switch + #gnav_btn::before, #gnav_switch + #gnav_btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 50%;
  height: 0;
  border: solid 1px;
}
#gnav_switch + #gnav_btn::before {
  bottom: 50%;
}
#gnav_switch + #gnav_btn::after {
  top: 50%;
}
#gnav_switch + #gnav_btn .btn_txt {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-bottom: 0.25rem;
  font-size: 10px;
  text-transform: uppercase;
  transform: translate(-50%, 0);
}
#gnav_switch:checked + #gnav_btn {
  background-color: #FFFFFF;
  color: #006E95;
  fill: #006E95;
}
#gnav_switch:checked + #gnav_btn::before, #gnav_switch:checked + #gnav_btn::after {
  transition: margin 0.1s 0s, transform 0.1s 0.1s;
}
#gnav_switch:checked + #gnav_btn::before {
  margin-bottom: -1px;
  transform: rotate(45deg);
}
#gnav_switch:checked + #gnav_btn::after {
  margin-top: -1px;
  transform: rotate(-45deg);
}
#gnav_switch:checked ~ .site_logo {
  position: fixed;
  color: #FFFFFF;
  fill: #FFFFFF;
}
@media screen and (max-width: 782px) {
  body.admin-bar #gnav_switch:checked ~ .site_logo {
    margin-top: 46px;
  }
}
@media (min-width: 783px) {
  body.admin-bar #gnav_switch:checked ~ .site_logo {
    margin-top: 32px;
  }
}
#gnav_switch:not(:checked) + #gnav_btn {
  background-image: linear-gradient(140deg, #01A8E2 0%, #03B1EE 40%, #0770FF 100%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #FFFFFF;
  fill: #FFFFFF;
}
#gnav_switch:not(:checked) + #gnav_btn::before, #gnav_switch:not(:checked) + #gnav_btn::after {
  transition: margin 0.1s 0.1s, transform 0.1s 0s;
}
#gnav_switch:not(:checked) + #gnav_btn::before {
  margin-bottom: 0.4rem;
}
#gnav_switch:not(:checked) + #gnav_btn::after {
  margin-top: 0.4rem;
}

#gnav .menu_list a {
  display: inline-block;
  text-wrap: balance;
}
#gnav .main_menu {
  line-height: 1.25;
}
#gnav .icon_menu {
  font-size: 2em;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  #gnav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    background-color: #006E95;
    color: #FFFFFF;
    fill: #FFFFFF;
    overflow: hidden;
    z-index: 4000;
    transition: all 0.2s;
  }
}
@media screen and (max-width: 599px) and (max-width: 782px) {
  body.admin-bar #gnav {
    margin-top: 46px;
  }
}
@media screen and (max-width: 599px) and (min-width: 783px) {
  body.admin-bar #gnav {
    margin-top: 32px;
  }
}
@media screen and (max-width: 599px) {
  #gnav .gnav_inner {
    padding-top: 4rem;
    max-height: 100%;
    overflow-y: auto;
  }
}
@media screen and (max-width: 599px) {
  #gnav .main_menu .menu_list > li {
    margin-bottom: 0.75rem;
    padding: 0 5% 0.75rem;
    border-style: solid;
    border-width: 0 0 1px;
    border-color: rgba(255, 255, 255, 0.5);
  }
  #gnav .main_menu .menu_list > li:first-child {
    padding-top: 0.75rem;
    border-top-width: 1px;
  }
  #gnav .main_menu .menu_list > li a {
    display: block;
    padding-right: 1.5em;
    background-image: url(/wp-content/themes/hokkai-ac-jp/assets/images/arr-white.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.5em 1.5em;
  }
}
@media screen and (max-width: 599px) {
  #gnav .icon_menu {
    position: absolute;
    top: 2rem;
    right: 4rem;
    margin-right: 5%;
    transform: translate(0, -50%);
  }
  #gnav .icon_menu .menu_list {
    display: flex;
    justify-content: flex-end;
    gap: 0.5em;
    margin-right: 5%;
  }
  #gnav .icon_menu .icn-menu_search {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #gnav_switch:checked ~ #gnav {
    max-height: 100vh;
  }
}
@media screen and (max-width: 599px) {
  #gnav_switch:not(:checked) ~ #gnav {
    max-height: 0;
  }
}
@media (min-width:600px) {
  #gnav {
    width: 100%;
  }
  #gnav .menu_list {
    display: flex;
    gap: 0.75rem;
  }
  #gnav .main_menu .menu_list {
    justify-content: space-between;
  }
  #gnav .icon_menu {
    margin-bottom: 0.5rem;
  }
  #gnav .icon_menu .menu_list {
    justify-content: flex-end;
  }
}
@media (min-width:900px) {
  #gnav .gnav_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  #gnav .menu_list > li:hover, #gnav .menu_list > li.current-menu-item {
    color: #01A8E2;
    fill: #01A8E2;
  }
  #gnav .icon_menu {
    order: 10;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  #gnav .main_menu {
    order: 0;
    flex-grow: 1;
  }
}

#navigation {
  position: fixed;
  z-index: 3000;
}
@media screen and (max-width: 782px) {
  body.admin-bar #navigation {
    margin-top: 46px;
  }
}
@media (min-width: 783px) {
  body.admin-bar #navigation {
    margin-top: 32px;
  }
}
#navigation .target_menu .menu_list > li {
  border: solid 0px #F1F1F1;
}
#navigation .target_menu .menu_list > li.icn-target_testtaker a {
  background-color: #FAFA00;
}
#navigation .target_menu .menu_list > li.icn-target_testtaker a .menu_icn {
  color: #006E95;
  fill: #006E95;
}
#navigation .target_menu a {
  display: block;
}
#navigation .target_menu a .menu_icn {
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  color: #959595;
  fill: #959595;
}
#navigation .target_menu a .menu_txt {
  text-wrap: balance;
}
#navigation .target_menu a:hover {
  color: #006E95;
}
#navigation .target_menu a:hover .menu_icn {
  color: #006E95;
  fill: #006E95;
}
#navigation .bnr_menu .banner a {
  display: block;
  text-decoration: none;
  color: inherit;
  fill: inherit;
}
@media screen and (max-width: 599px) {
  #navigation {
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.3);
  }
  #navigation .target_menu {
    width: 100%;
    text-align: center;
    font-size: 10px;
  }
  #navigation .target_menu .menu_list {
    display: flex;
    width: 100%;
  }
  #navigation .target_menu .menu_list > li {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 20%;
    border-bottom-width: 1px;
  }
  #navigation .target_menu .menu_list > li:not(:last-child) {
    border-right-width: 1px;
  }
  #navigation .target_menu a {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1em 0.5em;
    height: 100%;
  }
  #navigation .target_menu a .menu_icn {
    margin: 0px auto auto;
    font-size: 2.75em;
  }
  #navigation .target_menu a .menu_txt {
    margin: auto 0;
  }
  #navigation .bnr_menu {
    display: flex;
    justify-content: center;
  }
  #navigation .bnr_menu .widget {
    flex-basis: 50%;
  }
  #navigation .bnr_menu .widget:not(:last-child) {
    border-right: solid 1px #F1F1F1;
  }
  #navigation .bnr_menu .banner {
    margin: 0;
  }
  #navigation .bnr_menu .banner a:has(img) {
    display: none;
  }
  #navigation .bnr_menu .banner a:not(:has(img)) {
    padding: 0.75em 1.5em 0.75em 4.5em;
    text-align: left;
    font-size: 10px;
  }
  #navigation .bnr_menu .banner a:not(:has(img)) .icn {
    font-size: 3em;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0.5em;
    color: #01A8E2;
    fill: #01A8E2;
  }
  #navigation .bnr_menu .banner a:not(:has(img)) strong {
    font-size: 1.25em;
  }
  #navigation .bnr_menu .banner a:not(:has(img))::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0.75em;
    width: 1.5em;
    height: 1.5em;
    background-image: url(/wp-content/themes/hokkai-ac-jp/assets/images/arr-blue.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
  }
  #navigation .bnr_menu .banner a:not(:has(img))[target=_blank]::after {
    background-image: url(/wp-content/themes/hokkai-ac-jp/assets/images/arr-blank-blue.svg);
  }
  #navigation .bnr_menu .banner .wp-element-caption {
    margin: 0;
  }
}
@media (min-width:600px) {
  #navigation {
    overflow-y: auto;
    top: clamp(100px, 7.5vw, 150px);
    bottom: 0;
    left: 0;
    padding: 0 2%;
    width: clamp(200px, 20vw, 400px);
    background-color: rgba(255, 255, 255, 0.5);
  }
  #navigation .target_menu {
    font-size: 1.125em;
  }
  #navigation .target_menu .menu_list > li {
    border-bottom-width: 1px;
  }
  #navigation .target_menu .menu_list > li.icn-target_testtaker a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    margin-right: -1px;
    width: calc(2vw + 1px);
    background-color: #FAFA00;
  }
  #navigation .target_menu a {
    display: flex;
    padding: 1rem 0;
    width: 100%;
    align-items: center;
  }
  #navigation .target_menu a .menu_icn {
    margin-right: 0.25em;
    font-size: 2em;
  }
  #navigation .bnr_menu .banner a:not(:has(img)) {
    display: none;
  }
}

#footer {
  flex-shrink: 0;
}
@media screen and (max-width: 599px) {
  #footer {
    padding-bottom: 6rem;
    text-align: center;
  }
  #footer > .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
}
@media (min-width:600px) {
  #footer > .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 3rem 0;
  }
}

.copyright {
  line-height: 1;
  font-size: 1.25em;
}
.copyright > a {
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .copyright {
    width: 100%;
    font-size: 10px;
  }
}
@media (min-width:600px) {
  .copyright {
    order: 100;
    width: 100%;
    font-size: 0.875em;
    text-align: right;
  }
}

.site_address {
  font-style: normal;
}
.site_address .school_logo {
  margin-bottom: 0.75rem;
}
.site_address p {
  line-height: 1.5;
}
.site_address p span {
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .site_address {
    width: 100%;
  }
  .site_address .school_logo {
    font-size: 1.7em;
  }
  .site_address p {
    font-size: 0.75em;
  }
}
@media (min-width:600px) {
  .site_address {
    order: 10;
    align-self: start;
  }
  .site_address .school_logo {
    font-size: 1.8em;
  }
  .site_address p {
    font-size: 0.875em;
  }
}

.info_menu .menu_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
@media screen and (max-width: 599px) {
  .info_menu .menu_list {
    justify-content: center;
  }
}
@media (min-width:600px) {
  .info_menu {
    order: 30;
    font-size: 0.875em;
  }
}
@media screen and (max-width: 599px) {
  #header .info_menu {
    font-size: 0.875em;
  }
}
@media (min-width:600px) {
  #header .info_menu {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #footer .info_menu {
    width: 100%;
  }
  #footer .info_menu .menu_list {
    justify-content: center;
  }
}

.foot_banner .menu_list {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.foot_banner .banner {
  display: inline-block;
}
.foot_banner .banner img {
  max-width: none;
  width: auto;
}
@media screen and (max-width: 599px) {
  .foot_banner .banner img {
    height: 3em;
  }
}
@media (min-width:600px) {
  .foot_banner {
    order: 40;
    margin-left: auto;
  }
  .foot_banner .banner img {
    height: 4em;
  }
}

.sns_menu {
  line-height: 1;
}
.sns_menu .menu_list {
  display: flex;
  gap: 0.5em;
}
.sns_menu a {
  display: block;
  padding: 0.25em;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  #header .sns_menu {
    margin-top: 1.5rem;
    font-size: 1.5em;
  }
  #header .sns_menu .menu_list {
    justify-content: center;
  }
  #header .sns_menu a {
    background-color: #FFFFFF;
    color: #006E95;
    fill: #006E95;
  }
}
@media (min-width:600px) {
  #header .sns_menu {
    display: none;
  }
}
#footer .sns_menu a {
  background-color: #01A8E2;
  color: #FFFFFF;
  fill: #FFFFFF;
}
@media screen and (max-width: 599px) {
  #footer .sns_menu {
    font-size: 1.5em;
  }
}
@media (min-width:600px) {
  #footer .sns_menu {
    order: 20;
    font-size: 1.4em;
  }
}

#bookmark {
  background-image: linear-gradient(140deg, #01A8E2 0%, #03B1EE 40%, #0770FF 100%);
  color: #FFFFFF;
  fill: #FFFFFF;
}
#bookmark .menu_list .sub-menu > li {
  padding-left: 1em;
}
#bookmark .menu_list .sub-menu > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto calc(0.5em - 1px);
  width: 0;
  height: 0;
  border: solid 2px;
  border-radius: 50%;
}
#bookmark .menu_list a {
  display: block;
  text-wrap: balance;
}
#bookmark .menu_list a[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  width: 1em;
  height: 1em;
  background-image: url(/wp-content/themes/hokkai-ac-jp/assets/images/arr-blank-white.svg);
  background-size: 1em 1em;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 599px) {
  #bookmark > .inner {
    padding: 1.5rem 0;
  }
}
@media (min-width:600px) {
  #bookmark {
    text-align: center;
  }
  #bookmark > .inner {
    padding: 1.5rem 0;
  }
  #bookmark .menu_list {
    display: inline-block;
    text-align: left;
  }
  #bookmark .menu_list > li {
    display: flex;
  }
  #bookmark .menu_list .sub-menu {
    display: flex;
    gap: 1em;
    margin-left: 1em;
    padding-left: 1em;
    border-left: solid 1px;
  }
}

#content {
  flex-grow: 1;
  background-color: #F1F1F1;
}
#content .message {
  text-align: center;
}
#content .post_list {
  list-style: none;
  padding: 0;
}
#content .post_list.text_list > li {
  padding-bottom: 0.5em;
  border-bottom: solid 1px #959595;
}
#content .post_list.text_list .post_title {
  font-weight: 500;
  font-variation-settings: "wght" 500;
}
@media screen and (max-width: 599px) {
  #content .post_list.text_list .post_date {
    display: block;
  }
}
@media (min-width:600px) {
  #content .post_list.text_list > li {
    display: flex;
  }
  #content .post_list.text_list .post_date {
    flex-shrink: 0;
    width: 8em;
  }
}
#content .post_list.card_list {
  display: flex;
  flex-wrap: wrap;
}
#content .post_list.card_list > li {
  flex-shrink: 0;
  flex-grow: 0;
}
#content .post_list.card_list a {
  display: block;
  text-decoration: none;
}
@media (max-width: 1199px) {
  #content .post_list.card_list > li {
    width: 50%;
  }
}
@media (min-width:900px) {
  #content .post_list.card_list > li {
    width: 33.3333333333%;
  }
}
#content .post_list.row_list > li {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-style: solid;
  border-width: 0 0 1px;
  border-color: #959595;
}
#content .post_list.row_list > li:first-child {
  border-top-width: 1px;
}
#content .post_list.row_list > li a {
  display: flex;
  width: 100%;
  text-decoration: none;
}
#content .post_list.row_list > li a:hover {
  opacity: 0.6;
}
#content .post_list.row_list > li a .post_thumb {
  align-self: center;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 5%;
  width: 24%;
}
#content .post_list.row_list > li a .post_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#content .post_list.row_list > li a .post_summary {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 1.5em;
}
#content .post_list.row_list > li a .post_summary .post_date {
  color: #01A8E2;
  fill: #01A8E2;
}
#content .post_list.row_list > li a .post_summary .post_cate {
  list-style: none;
  margin-bottom: -0.5em;
  padding: 0;
  color: #01A8E2;
  fill: #01A8E2;
  line-height: 1;
}
#content .post_list.row_list > li a .post_summary .post_cate > li {
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 0.25em 0.75em;
  border-radius: 1em;
  border: solid 1px;
  word-break: keep-all;
  white-space: nowrap;
}
#content .post_list.row_list > li a .post_summary .more {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #01A8E2;
  background-image: url(/wp-content/themes/hokkai-ac-jp/assets/images/arr-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1em 1em;
  overflow: hidden;
  text-indent: 1em;
  font-size: 1.5em;
}
@media screen and (max-width: 599px) {
  #content .post_list.row_list > li a .post_thumb {
    aspect-ratio: 1;
  }
  #content .post_list.row_list > li a .post_summary .post_date {
    font-size: 10px;
  }
  #content .post_list.row_list > li a .post_summary .post_title {
    font-size: 1em;
  }
  #content .post_list.row_list > li a .post_summary .post_cate {
    font-size: 10px;
  }
}
@media (min-width:600px) {
  #content .post_list.row_list > li a {
    padding: 0.5rem;
  }
  #content .post_list.row_list > li a .post_thumb {
    aspect-ratio: 1.42;
  }
  #content .post_list.row_list > li a .post_summary .post_date {
    font-size: 0.875em;
  }
  #content .post_list.row_list > li a .post_summary .post_title {
    font-size: 1.125em;
  }
  #content .post_list.row_list > li a .post_summary .post_cate {
    font-size: 0.75em;
  }
}

.main_block .main_head .main_title {
  font-weight: 700;
  font-variation-settings: "wght" 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  text-wrap: balance;
  margin-bottom: 1.5rem;
}
html[lang=ja] .main_block .main_head .main_title {
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Droid Sans Japanese", sans-serif;
}
.main_block .main_head .main_visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2.74/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_block .main_body {
  padding: 5%;
  background-color: #FFFFFF;
}
@media screen and (max-width: 599px) {
  .main_block {
    padding: 1.5rem 0 3rem;
  }
  .main_block .main_head .main_title {
    font-size: 1.5em;
  }
}
@media (min-width:600px) {
  .main_block {
    padding: 1.5rem 0 4.5rem;
  }
  .main_block .main_head .main_title {
    font-size: 2.5em;
  }
  .main_block .main_visual {
    position: relative;
    z-index: 10;
    left: 5.5555555556%;
    margin-bottom: -18.2481751825%;
  }
  .main_block.has-post-thumbnail .main_body {
    position: relative;
    z-index: 0;
    padding-top: calc(18.2481751825% + 1.5rem);
  }
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 10px;
  line-height: 1.25;
  z-index: 1900;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .bc_list {
  list-style: none;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin: auto;
  padding: 0;
}
.breadcrumb .bc_list > li:not(:first-child)::before {
  content: "";
  display: inline-block;
  margin: -0.1em 0.5em auto;
  width: 0.4em;
  height: 0.4em;
  border-style: solid;
  border-width: thin thin 0 0;
  vertical-align: middle;
  transform: rotate(45deg);
}
.breadcrumb .home,
.breadcrumb .current {
  font-weight: 500;
  font-variation-settings: "wght" 500;
  font-style: normal;
}
@media screen and (max-width: 599px) {
  .breadcrumb .bc_list {
    overflow-x: auto;
    white-space: nowrap;
    -ms-word-break: keep-all;
    word-break: keep-all;
  }
}

/* Pager */
.pager {
  margin: 3rem auto;
  line-height: 1;
  font-size: 1em;
  text-align: center;
  color: #01A8E2;
  fill: #01A8E2;
}
.pager .page_list,
.pager .page-numbers {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.pager.pager_single .page_list {
  display: flex;
}
.pager.pager_single .page_list > li {
  margin: 0;
  width: 12em;
}
.pager.pager_single .page_list > li.prev::before, .pager.pager_single .page_list > li.next::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-style: solid;
  border-width: 1px 1px 0 0;
}
.pager.pager_single .page_list > li.prev {
  margin-right: auto;
}
.pager.pager_single .page_list > li.prev::before {
  transform: rotate(-135deg);
}
.pager.pager_single .page_list > li.next {
  margin-left: auto;
}
.pager.pager_single .page_list > li.next::after {
  transform: rotate(45deg);
}
.pager.pager_single .page_list > li.index {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  .pager.pager_single .page_list {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 4.5rem;
  }
}
.pager:not(.pager_single) .page_list > li:not(:last-child),
.pager:not(.pager_single) .page-numbers > li:not(:last-child) {
  margin-right: 0.5em;
}
.pager:not(.pager_single) .page_list a,
.pager:not(.pager_single) .page_list span.current,
.pager:not(.pager_single) .page-numbers a,
.pager:not(.pager_single) .page-numbers span.current {
  display: block;
  padding: 0.5em;
  width: 2em;
  height: 2em;
  text-decoration: none;
}
.pager:not(.pager_single) .page_list a:hover,
.pager:not(.pager_single) .page_list span.current:hover,
.pager:not(.pager_single) .page-numbers a:hover,
.pager:not(.pager_single) .page-numbers span.current:hover {
  background-color: #DBEAEF;
}
.pager:not(.pager_single) .page_list .page-numbers.current,
.pager:not(.pager_single) .page-numbers .page-numbers.current {
  border-bottom: solid 1px #01A8E2;
}
.pager:not(.pager_single) .page_list .page-numbers:not(.current, .next, .prev),
.pager:not(.pager_single) .page-numbers .page-numbers:not(.current, .next, .prev) {
  background-color: #DBEAEF;
}
.pager:not(.pager_single) .page_list .prev,
.pager:not(.pager_single) .page_list .next,
.pager:not(.pager_single) .page-numbers .prev,
.pager:not(.pager_single) .page-numbers .next {
  border: none;
}

.totop_btn {
  display: block;
  position: fixed;
  bottom: -6em;
  right: 0;
  margin: 1rem;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  color: #333333;
  fill: #333333;
  text-align: center;
  text-decoration: none;
  z-index: 2999;
  overflow: hidden;
  transition: all 0.2s;
  box-shadow: 0 0 0 2px #333333;
}
.totop_btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: -0.3em auto auto;
  width: 1.2em;
  height: 1.2em;
  border-style: solid;
  border-width: 0.2em 0.2em 0 0;
  transform: rotate(-45deg);
}
.totop_btn.-active {
  bottom: 0;
}
.totop_btn .btn_txt {
  display: inline-block;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: auto;
  -ms-word-break: keep-all;
  word-break: keep-all;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .totop_btn {
    display: none;
  }
}

.sp-slides .sp-slide .sp-image {
  max-width: none;
}

.mfp-container .mfp-content {
  width: 90%;
  max-width: 1000px !important;
}
.mfp-container .mfp-content .mfp-close {
  padding: 0;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  text-align: center;
  line-height: 1;
}
.mfp-container .mfp-content .mfp-figure::after {
  background-color: #000000;
}
.mfp-container .mfp-content .mfp-figure .mfp-title {
  font-size: 10px;
}
.mfp-container .mfp-content .mfp-figure .mfp-counter {
  font-size: 10px;
}
@media screen and (max-width: 599px) {
  .mfp-container .mfp-content .mfp-iframe-scaler {
    padding-top: 90vh;
  }
}

[data-inview] {
  transition: all 0.3s 0.1s;
}

[data-inview=true] {
  opacity: 1;
}

[data-inview=false] {
  opacity: 0;
}

.-hide {
  display: none !important;
}

body:not(.logged-in) .-logged-in {
  display: none !important;
}

body.logged-in .-logged-in {
  opacity: 0.5;
}
/*# sourceMappingURL=layout.css.map */