@charset "utf-8;";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* custom */

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

h2 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  line-height: 1.78;
  white-space: nowrap;
}

h3,
h4,
h5 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 800;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
}

h3 {
  font-size: 36px;
  line-height: 1.78;
  color: #2b498d;
}

h4 {
  font-size: 24px;
  line-height: 1.5;
  color: #2b498d;
}

h5 {
  font-size: 18px;
  line-height: 1.5;
}

p,
li {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  line-height: 1.78;
}

button {
  font-size: 16px;
  font-family: Noto Sans JP;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding-block: 0;
  padding-inline: 20px;
  appearance: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

button:hover {
  background-color: #d3d1e8;
}

.button__blue {
  height: 46px;
  background-color: #2b498d;
  border-radius: 10px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.button__blue::after {
  content: "";
  margin-left: 0.5em;
  display: inline-block;
  border-style: solid;
  border-width: 0.5em 0 0.5em 0.865em;
  border-color: transparent transparent transparent #fff;
  transform: translateY(0.1em) scale(0.8);
}

.button__white,
.button__white--arrow {
  height: 46px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  color: #2b498d;
}

.button__white--arrow::after {
  content: "";
  margin-left: 0.5em;
  display: inline-block;
  border-style: solid;
  border-width: 0.5em 0 0.5em 0.865em;
  border-color: transparent transparent transparent #2b498d;
  transform: translateY(0.1em) scale(0.8);
}

.button__number {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }
}

.es-header-btn {
  background-color: #2b498d !important;
}