:root {
  --noto-sans: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --body: #f0fcff;
  --white: #ffffff;
  --black: #000000;
  --blue: #115ca9;
  --ease: cubic-bezier(0.83, 0, 0.17, 1);
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

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

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

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

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: 0;
}

sup {
  top: -0.5em;
}

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

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

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

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

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  field-sizing: content;
}

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

[type=search] {
  outline-offset: -2px;
}

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

:focus:not(:focus-visible) {
  outline: none;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

.sticky-element {
  position: sticky;
  top: 0;
  background: white;
}

*[data-scroll=fade-up] {
  translate: 0 20px;
  opacity: 0;
}
*.fade-up {
  animation: fadeup 0.5s 0.1s forwards ease-out;
}
@keyframes fadeup {
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

html {
  height: 100%;
  overflow-x: clip;
  font-family: var(--noto-sans);
  font-size: 100%;
  color: var(--black);
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0.05em;
}

body {
  background-color: var(--body);
  position: relative;
  overflow-x: clip;
}

* {
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}

img {
  width: 100%;
  line-height: 0;
  vertical-align: bottom;
  border-style: none;
}

a {
  color: var(--black);
}

p,
dd,
li {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  p,
  dd,
  li {
    font-size: 15px;
    line-height: 2;
  }
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.4;
}

table {
  border-collapse: collapse;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 20;
  transition: background-color 0.3s;
  background-color: var(--body);
}
header nav {
  width: 100%;
  height: 85px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 980px) {
  header nav {
    height: 70px;
  }
}
header nav .logo {
  margin-left: 20px;
  max-width: 186px;
  margin-right: auto;
}
@media screen and (max-width: 980px) {
  header nav .logo {
    max-width: 160px;
  }
}
@media screen and (max-width: 500px) {
  header nav .logo {
    margin-left: 15px;
  }
}
header nav .logo a {
  display: block;
  width: 186px;
  max-width: 100%;
}
header nav ul.menu-list {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1280px) {
  header nav ul.menu-list {
    gap: 30px;
  }
}
@media screen and (max-width: 1100px) {
  header nav ul.menu-list {
    gap: clamp(0.938rem, -6.719rem + 12.5vw, 1.875rem);
  }
}
@media screen and (max-width: 980px) {
  header nav ul.menu-list {
    display: none;
  }
}
header nav ul.menu-list li > a {
  font-size: 14px;
  position: relative;
}
header nav ul.menu-list li > a:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #115ca9;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media (hover) {
  header nav ul.menu-list li > a:hover:after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
header nav ul.menu-list li > a.is-active:after {
  transform-origin: left top;
  transform: scale(1, 1);
}
header nav ul.menu-list li:last-child {
  line-height: 1.5;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100%;
  background-color: var(--blue);
  color: var(--white);
  font-size: 11px;
  border-radius: 0 0 0 48px;
}
@media screen and (max-width: 1280px) {
  header nav ul.menu-list li:last-child {
    width: clamp(15.625rem, 4.464rem + 17.86vw, 18.75rem);
    padding-left: 10px;
  }
}
header nav ul.menu-list li:last-child span {
  padding-left: 25px;
  display: block;
  font-size: 22px;
  position: relative;
  background: url(/common/img/icn_tel.svg) no-repeat left/18px;
}
header nav button.hamburger {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  top: 0;
  right: 0;
  border: none;
  cursor: pointer;
  z-index: 30;
}
@media screen and (max-width: 980px) {
  header nav button.hamburger {
    display: block;
  }
}
header nav button.hamburger:focus {
  outline: none;
}
header nav button.hamburger span {
  width: 44px;
  height: 3px;
  display: inline-block;
  position: absolute;
  left: 50%;
  background-color: #003b83;
  translate: -50% 0;
  transition: background-color 0.3s;
}
@media screen and (max-width: 980px) {
  header nav button.hamburger span {
    height: 2px;
  }
}
header nav button.hamburger span:nth-child(1) {
  top: 26px;
}
@media screen and (max-width: 980px) {
  header nav button.hamburger span:nth-child(1) {
    top: 29px;
  }
}
header nav button.hamburger span:nth-child(2) {
  top: 34px;
}
@media screen and (max-width: 980px) {
  header nav button.hamburger span:nth-child(2) {
    top: 39px;
  }
}
header nav button.hamburger.active span {
  background-color: var(--white);
}
header nav button.hamburger.active span:nth-child(1) {
  top: 35px;
  transform: translateY(0px) rotate(40deg);
  transition: background-color 0.3s, transform 0.3s;
}
header nav button.hamburger.active span:nth-child(2) {
  top: 35px;
  transform: translateY(0px) rotate(-40deg);
  transition: background-color 0.3s, transform 0.3s;
}
header nav button.hamburger.active p {
  color: var(--black);
}
header nav button.hamburger p {
  color: var(--white);
  font-size: 14px;
  text-align: center;
  padding-top: 23px;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  header nav button.hamburger p {
    font-size: 2.9333333333vw;
    padding-top: 4.6666666667vw;
  }
}
header nav .global-menu {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: #003b83;
  transition: opacity 0.3s;
  padding: 25px 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  header nav .global-menu {
    width: 100%;
    padding: 0;
  }
}
header nav .global-menu .logo {
  margin-left: 20px;
  max-width: 188px;
  margin-right: auto;
}
@media screen and (max-width: 980px) {
  header nav .global-menu .logo {
    max-width: 160px;
    padding-top: 12px;
    margin-bottom: 20px;
    margin-left: 15px;
  }
}
header nav .global-menu.active {
  opacity: 1;
  pointer-events: visible;
  transition: opacity 0.3s;
}
header nav .global-menu li {
  text-align: center;
  border-top: 2px solid #002953;
}
header nav .global-menu li > a {
  display: flex;
  align-items: center;
  color: var(--white);
  height: 60px;
  font-size: 18px;
  padding: 0 5%;
}
header nav .global-menu li > a[target=_blank] {
  position: relative;
}
header nav .global-menu li > a[target=_blank] span {
  padding-right: 21px;
  background: url(/common/img/icn_blank.svg) no-repeat top 9px right/12px;
}
header nav .global-menu li:nth-last-child(2) {
  border-bottom: 2px solid #002953;
}
header nav .global-menu li:last-child {
  width: 90%;
  height: 100px;
  background-color: #044b95;
  color: var(--white);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.5;
  padding-bottom: 8px;
  margin: 20px auto 0;
  border: none;
}
header nav .global-menu li:last-child span {
  padding-left: 34px;
  display: block;
  font-size: 30px;
  position: relative;
  font-weight: 500;
  background: url(/common/img/icn_tel.svg) no-repeat left top 11px/24px;
}
header nav .global-menu li:last-child span a {
  color: #ffffff;
}

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
a[href^="tel:"] {
  color: #ffffff;
}

main {
  padding: 85px 0 200px;
}
@media screen and (max-width: 767px) {
  main {
    padding: 60px 0;
  }
}

.btn-cta {
  width: 230px;
  height: 60px;
  margin-top: 30px;
  margin-left: auto;
}
.btn-cta a {
  width: 100%;
  height: 100%;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid var(--white);
  background-color: var(--blue);
  color: var(--white);
  position: relative;
  padding: 0 40px;
  line-height: 1.3;
  transition: border 0.3s, background-color 0.3s, color 0.3s;
}
@media (hover) {
  .btn-cta a:hover {
    border: 1px solid var(--blue);
    background-color: var(--white);
    color: var(--blue);
  }
  .btn-cta a:hover:after {
    background-color: var(--blue);
  }
}
.btn-cta a:after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 20px;
  width: 13px;
  height: 10px;
  mask-image: url("/common/img/icn_arw.svg");
  mask-size: 6px 11px;
  mask-repeat: no-repeat;
  mask-position: right center;
  background-color: var(--white);
  transition: background-color 0.3s;
}

footer {
  color: var(--white);
}
footer .inner {
  height: 560px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 980px) {
  footer .inner {
    height: auto;
    display: block;
  }
}
footer .inner .left-area {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(/common/img/bg_footer01.jpg) no-repeat left bottom/160px, url(/common/img/bg_footer02.jpg) no-repeat top right/160px;
  background-color: #115ca9;
}
@media screen and (max-width: 980px) {
  footer .inner .left-area {
    width: 100%;
    padding: 40px 5%;
  }
}
footer .inner .left-area .box {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  footer .inner .left-area .box {
    width: 100%;
    max-width: 100%;
  }
}
footer .inner .left-area .box hgroup {
  line-height: 1;
}
footer .inner .left-area .box hgroup p {
  position: relative;
  font-size: 16px;
  padding-left: 17px;
}
footer .inner .left-area .box hgroup p:before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: var(--white);
}
footer .inner .left-area .box hgroup h2 {
  font-weight: 500;
  font-size: 50px;
  margin-top: 10px;
}
@media screen and (max-width: 500px) {
  footer .inner .left-area .box hgroup h2 {
    font-size: 32px;
  }
}
footer .inner .left-area .box ul.contact-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .inner .left-area .box ul.contact-list li {
  width: 100%;
  height: 100px;
  background-color: #044b95;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.5;
  padding-bottom: 8px;
}
footer .inner .left-area .box ul.contact-list li a {
  color: #fff;
  display: block;
}
footer .inner .left-area .box ul.contact-list li a:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media (hover) {
  footer .inner .left-area .box ul.contact-list li a:hover:after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
footer .inner .left-area .box ul.contact-list li span {
  padding-left: 38px;
  display: block;
  font-size: 30px;
  position: relative;
  font-weight: 500;
}
footer .inner .left-area .box ul.contact-list li:nth-child(1) span {
  background: url(/common/img/icn_tel.svg) no-repeat left/23px;
}
footer .inner .left-area .box ul.contact-list li:nth-child(2) span {
  font-size: 22px;
  background: url(/common/img/icn_mail.svg) no-repeat top 12px left/26px;
}
footer .inner .right-area {
  background-color: #044b95;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 980px) {
  footer .inner .right-area {
    width: 100%;
    padding: 40px 5%;
  }
}
footer .inner .right-area .box {
  width: 90%;
  max-width: 590px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  footer .inner .right-area .box {
    width: 100%;
    max-width: 100%;
  }
}
footer .inner .right-area .box .company-area {
  padding: 0 25px;
}
@media screen and (max-width: 400px) {
  footer .inner .right-area .box .company-area {
    padding: 0;
  }
}
footer .inner .right-area .box .company-area .logo {
  width: 224px;
}
@media screen and (max-width: 400px) {
  footer .inner .right-area .box .company-area .logo {
    width: 160px;
  }
}
footer .inner .right-area .box .company-area p {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 400px) {
  footer .inner .right-area .box .company-area p {
    margin-top: 20px;
  }
}
footer .inner .right-area .box .company-area p span {
  font-size: 16px;
  display: block;
}
footer .inner .right-area .box nav {
  margin-top: 50px;
  padding: 35px 25px 0;
  border-top: 1px solid #6893bf;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 500px) {
  footer .inner .right-area .box nav {
    margin-top: 30px;
    padding: 25px 25px 0;
  }
}
@media screen and (max-width: 400px) {
  footer .inner .right-area .box nav {
    padding: 25px 0 0;
  }
}
footer .inner .right-area .box nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 500px) {
  footer .inner .right-area .box nav ul:last-child {
    width: 100%;
    margin-top: 30px;
  }
}
footer .inner .right-area .box nav ul li a {
  position: relative;
  line-height: 1;
  color: var(--white);
  font-size: 16px;
}
footer .inner .right-area .box nav ul li a[target=_blank] {
  padding-right: 21px;
  background: url(/common/img/icn_blank.svg) no-repeat top 6px right/12px;
}
footer .inner .right-area .box nav ul li a:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media (hover) {
  footer .inner .right-area .box nav ul li a:hover:after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
footer .copyright {
  height: 35px;
  background-color: #002953;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .copyright small {
  color: var(--white);
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .pcImg {
    display: inline-block !important;
  }
  .sp {
    display: none !important;
  }
  .spImg {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  .spImg {
    display: inline-block !important;
  }
  .pc {
    display: none !important;
  }
  .pcImg {
    display: none !important;
  }
}