@charset "UTF-8";
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media (min-width: 1366px) {
  .pc-min-xxl {
    display: none !important;
  }
}
@media (max-width: 1365px) {
  .pc-max-xxl {
    display: none !important;
  }
}
:root {
  /*size*/
  --site-width: 1200px;
  --site-width-sm: 830px;
  --site-padding: 0px;
  /*color*/
  --body-color: #333333;
  --dark-color: #000B67;
  --main-color: #004598;
  --light-color: #1E63C2;
  --very-light-color: #94B3D6;
  --border-color: #D9D9D9;
  --gray: #82829D;
  --gray-lt: #EDEBEB;
  --elementary-color: #4B90FF;
  --jrhighschool-color: #F67916;
  --highschool-color: #38C238;
  --red: #E80945;
  --yellow: #FFF351;
  --light-blue-color: #1CA8F4;
  /*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-Roboto: "Roboto", sans-serif;
  --font-ZKGN: "Zen Kaku Gothic New", sans-serif;
  --font-en: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", 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-page-top: 50;
  --z-index-footer-nav: 40;
  /*height*/
  --height-header: 80px;
}
@media (max-width: 767px) {
  :root {
    /*size*/
    --site-padding: 15px;
  }
}

/*==================================================
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 {
  cursor: pointer;
}

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;
  transition: opacity 0.3s;
}
a.link {
  color: #1CA8F4;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  a.link:hover {
    text-decoration: none;
  }
}
a.external {
  align-items: center;
  display: inline-flex;
  gap: 18px;
}
a.external::after {
  background: url(../img/common/ico_window.png) center/100% no-repeat;
  background-size: 100% auto;
  content: "";
  height: 18px;
  width: 16px;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

button {
  background: none;
  border: 0;
  outline: none;
  padding: 0;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  button:hover {
    opacity: 0.7;
  }
}

table {
  width: 100%;
  table-layout: fixed;
  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;
  }
}
address {
  font-style: normal;
}

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);
  overflow-wrap: anywhere;
}

main {
  overflow-x: hidden;
}

.button-wrap {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .button-wrap {
    margin-top: 40px;
  }
}

.button {
  align-items: center;
  display: inline-flex;
  font-weight: var(--font-weight-bold);
  justify-content: center;
  line-height: 1.44;
  position: relative;
  border-radius: 6px;
}
.button--lg {
  font-size: 20px;
  height: 84px;
  width: 100%;
}
@media (max-width: 767px) {
  .button--lg {
    font-size: 16px;
    height: 60px;
  }
}
.button--lg::after {
  height: 20px;
  right: 20px;
  width: 12px;
}
@media (max-width: 767px) {
  .button--lg::after {
    height: 11px;
    width: 7px;
  }
}
.button--cart {
  background-color: #EE9800;
  font-size: 20px;
  gap: 22px;
  color: #fff;
  width: 241px;
  height: 73px;
}
.button--blue {
  background-color: #2355A5;
  letter-spacing: 0.1em;
  color: #fff;
}
.button--orange {
  background-color: #EE9800;
  letter-spacing: 0.1em;
  color: #fff;
}
.button--orange-line {
  background-color: #fff;
  letter-spacing: 0.1em;
  border: 1px solid #FF9212;
}
.button--white {
  background-color: #fff;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .button--white-sp {
    background-color: #fff;
    letter-spacing: 0.1em;
    color: #555555;
  }
}
.button--gray {
  background-color: #F3F3F3;
  letter-spacing: 0.1em;
  color: #555;
}
@media (max-width: 767px) {
  .button--white-sp {
    background-color: #fff;
    letter-spacing: 0.1em;
    color: #555555;
  }
}
.button--link {
  font-size: 16px;
  font-weight: bold;
  max-width: 184px;
  min-height: 48px;
  padding: 12px 10px 14px;
  width: 100%;
}
.button--confirm {
  font-size: 18px;
  font-weight: bold;
  max-width: 489px;
  min-height: 58px;
  padding: 12px 10px 14px;
  width: 100%;
}
@media (max-width: 767px) {
  .button--confirm {
    font-size: 16px;
    max-width: 262px;
  }
}
.button--submit {
  font-size: 18px;
  font-weight: bold;
  max-width: 240px;
  min-height: 58px;
  padding: 12px 10px 14px;
  width: 100%;
}
.button--submit-back {
  font-size: 18px;
  font-weight: 400;
  max-width: 240px;
  min-height: 58px;
  padding: 12px 10px 14px;
  width: 100%;
}
.button--back {
  font-size: 18px;
  font-weight: 400;
  max-width: 240px;
  min-height: 58px;
  padding: 12px 10px 14px;
  width: 100%;
}
.button--header-contact {
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  max-width: 210px;
  min-height: 60px;
  padding: 12px 10px 14px;
}
@media (max-width: 991px) {
  .button--header-contact {
    min-height: 45px;
    font-size: 12px;
    flex-wrap: wrap;
    padding: 4px 3px 4px;
  }
}
.button--header-contact .icon {
  margin-right: 15px;
  margin-top: -6px;
}
@media (max-width: 991px) {
  .button--header-contact .icon {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-top: 0;
  }
  .button--header-contact .icon img {
    width: 16px;
  }
}
@media (max-width: 991px) {
  .button--header-contact .text {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: -4px;
  }
}
.button--spmenu-contact {
  font-size: 19px;
  width: 100%;
  min-height: 60px;
  padding: 12px 10px 14px;
  color: #2355A5;
}
.button--spmenu-contact-icon {
  width: 31px;
  height: 23px;
  background: url(../img/common/icon_mail_blue.png) no-repeat center center;
  background-size: 100% auto;
  margin-right: 18px;
}

.footer__cta {
  background: url(../img/common/ftr_img.jpg) no-repeat right bottom #EBEBEB;
  background-size: auto 100%;
  height: 510px;
}
@media (max-width: 767px) {
  .footer__cta {
    background-image: none;
    height: auto;
  }
}
.footer__cta-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .footer__cta-content {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .footer__cta-content {
    padding: 0;
  }
}
.footer__cta-head {
  position: relative;
  display: inline-block;
  margin-top: 140px;
  margin-bottom: 61px;
}
@media (max-width: 767px) {
  .footer__cta-head {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .footer__cta-head-wrap {
    display: block;
    background-color: #EBEBEB;
    padding: 60px 20px 54px 20px;
  }
}
.footer__cta-head-title {
  position: relative;
  display: inline;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.48;
  z-index: 2;
}
@media (max-width: 767px) {
  .footer__cta-head-title {
    font-size: 28px;
  }
}
.footer__cta-head-item01 {
  position: absolute;
  top: -5px;
  right: -117px;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer__cta-head-item01 {
    top: -15px;
    right: -74px;
  }
  .footer__cta-head-item01 img {
    width: 94px;
  }
}
.footer__cta-head-item02 {
  position: absolute;
  top: -91px;
  left: 106px;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer__cta-head-item02 {
    top: -59px;
    left: 67px;
  }
  .footer__cta-head-item02 img {
    width: 96px;
  }
}
@media (max-width: 767px) {
  .footer__cta-body {
    background: url(../img/common/ftr_img.jpg) no-repeat right bottom #EBEBEB;
    background-size: auto 100%;
    min-height: 283px;
    box-sizing: border-box;
    padding: 110px 20px 20px;
  }
}
.footer__cta-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
@media (max-width: 767px) {
  .footer__cta-lists {
    gap: 11px;
    justify-content: center;
  }
}
.footer__cta-list {
  width: 100%;
  max-width: 255px;
}
@media (max-width: 767px) {
  .footer__cta-list {
    width: calc((100% - 11px) / 2);
    text-align: center;
  }
}

.footer {
  position: relative;
  background-color: #2355A5;
  padding: 50px 0 50px;
}
@media (max-width: 767px) {
  .footer {
    padding: 32px 0 26px;
  }
}
.footer__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .footer__content {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .footer__content {
    padding: 0 20px;
  }
}
.footer__logo {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .footer__logo {
    text-align: center;
    margin-bottom: 36px;
  }
  .footer__logo img {
    width: 245px;
  }
}
.footer__block {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__block {
    display: block;
  }
}
.footer__block-left {
  width: 70%;
}
@media (max-width: 767px) {
  .footer__block-left {
    width: 100%;
    text-align: center;
  }
}
.footer__block-right {
  width: 30%;
  text-align: right;
}
@media (max-width: 767px) {
  .footer__block-right {
    width: 100%;
    text-align: center;
    margin-top: 36px;
  }
}
.footer__nav {
  display: flex;
  gap: 54px;
}
@media (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    margin: 0 auto;
    text-align: left;
  }
}
.footer__nav-link {
  color: #fff;
}
.footer__copy {
  font-size: 14px;
  color: #fff;
}

.pagetop {
  position: absolute;
  right: 20px;
  bottom: 105px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .pagetop {
    bottom: 37px;
    width: 35px;
    height: 35px;
  }
}
.pagetop__arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1px solid #2355A5;
  border-right: 1px solid #2355A5;
  transform: translateY(2px) rotate(-45deg);
}
@media (max-width: 767px) {
  .pagetop__arrow {
    width: 8px;
    height: 8px;
  }
}

body.-noscroll {
  overflow: hidden;
  height: 100%;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-header);
  transition: 0.3s;
  background-color: #fff;
}
.header__wrap {
  position: relative;
  z-index: var(--z-index-header);
}
.header__wrap.-show-sp {
  z-index: 99;
}
.header.-show-sp {
  z-index: 99;
}
.header__inner {
  width: 100%;
  max-width: 1200px;
  height: 95px;
  align-items: center;
  justify-content: space-between;
  display: flex;
  margin: 0 auto;
  box-sizing: border-box;
  padding-right: 285px;
  position: relative;
}
@media (max-width: 1365px) {
  .header__inner {
    box-sizing: border-box;
    padding: 0 285px 0 20px;
  }
}
@media (max-width: 767px) {
  .header__inner {
    box-sizing: border-box;
    padding: 0 10px 0 10px;
    height: 70px;
  }
}
.header__logo {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .header__logo {
    width: 100%;
    max-width: 180px;
    margin-right: 0;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 18px;
}
.header__nav a {
  color: #333333;
  display: block;
  position: relative;
  padding-bottom: 25px;
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__info {
  position: absolute;
  top: 16px;
  right: 16px;
  height: 60px;
}
@media (max-width: 767px) {
  .header__info {
    top: 9px;
    right: 77px;
    height: 60px;
  }
}
.header__info-lists {
  display: flex;
  align-items: center;
}
.header__contact {
  width: 210px;
  font-size: 18px;
}
@media (max-width: 991px) {
  .header__contact {
    width: 90px;
  }
}
.header.is-visible {
  position: fixed;
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px) {
  .header.is-visible {
    display: none;
  }
}
.header.is-visible .header__inner {
  box-sizing: border-box;
  padding-right: 415px;
}
@media (max-width: 991px) {
  .header.is-visible .header__inner {
    padding-right: 335px;
  }
}
@media (max-width: 767px) {
  .header.is-visible .header__inner {
    display: none;
  }
}
.header.is-visible .header__logo {
  background: url(../img/logo_bl.png) no-repeat center center;
  background-size: 100% auto;
}
@media (max-width: 991px) {
  .header.is-visible .header__logo {
    width: 70px;
    margin-right: 10px;
  }
}
@media (max-width: 991px) {
  .header.is-visible .header__nav {
    gap: 8px;
    font-size: 11px;
  }
}
.header.is-visible .header__nav a {
  color: #555;
}
.header.is-visible .header__info {
  display: block;
}
.header.no-header {
  background-color: #fff;
}
.header.no-header .header__logo {
  background: url(../img/logo_bl.png) no-repeat center center;
  background-size: 100% auto;
}

.header-fix {
  background-color: #fff;
  height: var(--height-header);
  left: 0;
  opacity: 0;
  padding-inline: 70px;
  position: fixed;
  top: 0;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: var(--z-index-header);
}
@media (min-width: 992px) {
  .header-fix {
    transition: 0.3s;
  }
  .header-fix.is-visible {
    opacity: 1;
    visibility: visible;
  }
  .is-nav-visible .header-fix {
    background-color: transparent;
  }
}
@media (max-width: 1365px) {
  .header-fix {
    padding-inline: 30px;
  }
}
@media (max-width: 1199px) {
  .header-fix {
    padding-inline: 20px;
  }
}
@media (max-width: 991px) {
  .header-fix {
    background-image: linear-gradient(#0076cc, #014598);
    color: #fff;
    padding: 14px var(--site-padding) 40px;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
  }
  .is-open .header-fix {
    opacity: 1;
    visibility: visible;
  }
}
.header-fix__inner {
  align-items: center;
  display: flex;
  height: inherit;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1260px;
  position: relative;
}
@media (max-width: 991px) {
  .header-fix__inner {
    display: block;
  }
}
.header-fix__logo {
  display: inline-block;
  line-height: 1;
}
@media (min-width: 992px) {
  .header-fix__logo {
    position: relative;
  }
}
@media (min-width: 992px) {
  .header-fix__logo-img {
    transition: 0.3s;
  }
  .is-nav-visible .header-fix__logo-img {
    opacity: 0;
    visibility: hidden;
  }
}
.header-fix__logo-img--white {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .is-nav-visible .header-fix__logo-img--white {
    opacity: 1;
    visibility: visible;
  }
}

.header-toggle {
  background-image: linear-gradient(#0076cc, #014598);
  border-bottom-left-radius: 10px;
  display: grid;
  gap: 6px;
  height: 59px;
  padding: 0;
  place-content: center;
  position: fixed;
  right: 0;
  top: 0;
  width: 59px;
  z-index: calc(var(--z-index-header) + 1);
}
@media (min-width: 992px) {
  .header-toggle {
    display: none;
  }
}
.is-open .header-toggle {
  background-image: none;
}
.header-toggle::after, .header-toggle::before {
  background: center/100% no-repeat;
  content: "";
  display: block;
  height: 6px;
  transition: opacity 0.3s;
  width: 29px;
}
.header-toggle::after {
  background-image: url(/assets/img/nav-toggle-menu.svg);
}
.is-open .header-toggle::after {
  opacity: 0;
}
.header-toggle::before {
  background-image: url(/assets/img/nav-toggle-close.svg);
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 15px;
}
.is-open .header-toggle::before {
  opacity: 1;
}
.header-toggle__line {
  background-color: #fff;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: 0.3s;
  width: 29px;
}
.is-open .header-toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
}
.is-open .header-toggle__line:nth-child(2) {
  opacity: 0;
}
.is-open .header-toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
}

.header-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  visibility: hidden;
  width: 100%;
  transition: 0.3s;
  z-index: calc(var(--z-index-header) - 1);
}
.is-nav-visible .header-overlay {
  opacity: 1;
  visibility: visible;
}

.sp__btn {
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.sp__btn span, .sp__btn::before, .sp__btn::after {
  position: absolute;
  left: 0px;
  width: 30px;
  height: 2px;
  background-color: #2355A5;
  transition: all 0.3s;
}
.sp__btn::before {
  content: "";
  top: 0px;
}
.sp__btn span {
  content: "";
  top: 9px;
}
.sp__btn::after {
  content: "";
  bottom: 0px;
}
.sp__btn.-show-sp::before {
  transform: translateY(10px) rotate(45deg);
}
.sp__btn.-show-sp span {
  opacity: 0;
}
.sp__btn.-show-sp::after {
  transform: translateY(-10px) rotate(-45deg);
}
.sp__btn-menu {
  width: 30px;
  height: 21px;
  position: absolute;
  top: 23px;
  right: 28px;
  z-index: 99;
}
@media (min-width: 768px) {
  .sp__btn-menu {
    display: none;
  }
}

.sp__menu-bg {
  opacity: 1;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 97;
  width: 100%;
  height: 100%;
  background: #2355A5;
  display: none;
}
@media (min-width: 768px) {
  .sp__menu-bg {
    display: none;
  }
}
.sp__menu-bg.-show-sp {
  display: block;
}

.sp__menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  z-index: 98;
  display: none;
  box-sizing: border-box;
}
.sp__menu.-show-sp {
  display: block;
}
.sp__menu-inner {
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 100px 35px 30px;
}
.sp__menu-nav li {
  border-bottom: 1px solid #fff;
}
.sp__menu-link {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 80px;
  box-sizing: border-box;
  padding: 35px 35px 22px 6px;
  font-size: 18px;
  color: #fff;
}
.sp__menu-link::after {
  content: "";
  background: url(../img/common/ion_arrow_blue.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  width: 22px;
  height: 22px;
  top: calc(50% - 5px);
  right: 12px;
}
.sp__menu-button-nav {
  margin: 30px 15px 0;
}
.sp__menu-button-nav li {
  margin-top: 20px;
}
.sp__menu-button-nav li:first-child {
  margin-top: 0;
}

.vertical-scroll::-webkit-scrollbar {
  display: none;
}
.vertical-scroll .simplebar-scrollbar::before {
  background: #41B7F7;
  border-radius: 0;
  width: 8px;
  margin-left: 3px;
  margin-top: 2px;
}
.vertical-scroll .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.vertical-scroll .vertical-scroll .simplebar-track {
  background: #ffffff;
  width: 10px !important;
}

/* 調整 */
.u-color-blue {
  color: #1FA0EC;
}

.u-fw-bold {
  font-weight: bold !important;
}

.u-fw-black {
  font-weight: 900 !important;
}

.u-fs-sm {
  font-size: var(--font-small);
}

.u-fs-ml {
  font-size: 20px;
}

.u-marker-white {
  background-color: #fff;
  padding: 2px 10px;
  border-radius: 5px;
}

.u-pr-30 {
  padding-right: 30px !important;
}

.u-link-external {
  font-size: 12px;
  color: #333333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: 1px solid #707070;
  background-color: #fff;
  position: relative;
  box-sizing: border-box;
  padding: 3px 22px 4px 12px;
  min-width: 140px;
  min-height: 35px;
}
.u-link-external::after {
  content: "＞";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

[data-animation=fade-up] {
  opacity: 0;
  transform: translateY(30%) scale(1.5, 0.5);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0, 2.05, 0.59, 1.01);
}
.u-animation.is-show [data-animation=fade-up] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-animation=fade-down] {
  opacity: 0;
  transform: translateY(-30%) scale(1.5, 0.5);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0, 2.05, 0.59, 1.01);
}
.u-animation.is-show [data-animation=fade-down] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-animation-delay=lv1] {
  transition-delay: 0.3s;
}

[data-animation-delay=lv2] {
  transition-delay: 0.6s;
}

.u-container {
  margin: 0 auto;
  max-width: var(--site-width);
  padding-inline: var(--site-padding);
  width: 100%;
}
@media (max-width: 1365px) {
  .u-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .u-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.u-container--sm {
  max-width: var(--site-width-sm);
}

.u-list li {
  line-height: 1.6;
  padding-left: 15px;
  position: relative;
}
.u-list li + li {
  margin-top: 4px;
}
.u-list li::before {
  background-color: var(--light-color);
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 11px;
  width: 5px;
}

.u-fs-sm {
  font-size: var(--font-small);
}

.u-fw-medium {
  font-weight: var(--font-weight-medium) !important;
}
.u-fw-bold {
  font-weight: var(--font-weight-bold) !important;
}
.u-fw-black {
  font-weight: var(--font-weight-black) !important;
}

.u-color-red {
  color: var(--red);
}
.u-color-dark {
  color: var(--dark-color);
}
.u-color-light-blue {
  color: var(--light-blue-color);
}

.u-marker-yellow {
  background-image: linear-gradient(transparent 75%, var(--yellow) 75%);
}

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

.u-margin-top0 {
  margin-top: 0px;
}
.u-margin-top5 {
  margin-top: 5px;
}
.u-margin-top10 {
  margin-top: 10px;
}
.u-margin-top15 {
  margin-top: 15px;
}
.u-margin-top20 {
  margin-top: 20px;
}
.u-margin-top25 {
  margin-top: 25px;
}
.u-margin-top30 {
  margin-top: 30px;
}
