@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --blue-text: #007DE3;
  --blue-dark: #00569D;
  --font-mont: "Montserrat","Noto Sans JP","Yu Gothic","Meiryo",HelveticaNeue-Light,AppleSDGothicNeo-Light,sans-serif !important;
}

html {
  -webkit-text-size-adjust: none;
}

html, body, div, ul, ol, li, dl, dt, dd, p, strong, span, em, a, table, th, td, caption, input, button, textarea, label, form, legend, fieldset, select, hr, h1, h2, h3, h4, h5, h6, img {
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  background: none;
  line-height: inherit;
  font-size: inherit;
  font-family: inherit;
}

html, body {
  height: 100%;
  min-height: 100%;
  background: #fff;
  color: #00325C;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", HelveticaNeue-Light, AppleSDGothicNeo-Light, sans-serif !important;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  color: inherit;
  line-height: 1.2;
}

strong {
  font-weight: normal;
}

*, :after, :before {
  box-sizing: border-box;
}

header, footer, section, article, nav {
  display: block;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

th, td {
  vertical-align: middle;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
  color: #00325C;
}

select, button {
  cursor: pointer;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

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

i, em {
  font-style: normal;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

input, textarea, button, select {
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

/*** common ***/
.hide {
  display: none;
}

.mo {
  display: none;
}

.blind {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.1;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}

.w100 {
  width: 100% !important;
}

.w50 {
  width: 50% !important;
}

.tac {
  text-align: center !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.block {
  display: block;
}

.ib {
  display: inline-block;
}

.ellip {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

[class*=ellip]:not(.ellip) {
  overflow: hidden;
  text-overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.ellip2 {
  -webkit-line-clamp: 2;
}

.ellip3 {
  -webkit-line-clamp: 3;
}

.lts0 {
  letter-spacing: 0;
}

.indent {
  padding-left: 0.5em;
  text-indent: -0.5em;
}

textarea {
  display: block;
  width: 100%;
  height: 150px;
  overflow-y: auto;
  padding: 8px;
  resize: vertical;
}

::-moz-placeholder {
  color: #999;
}

::placeholder {
  color: #999;
}

.mont {
  font-family: "Montserrat", "Noto Sans JP", "Yu Gothic", "Meiryo", HelveticaNeue-Light, AppleSDGothicNeo-Light, sans-serif !important;
}

#wrap {
  width: 100%;
  font-size: 2.4rem;
}

.wfix {
  width: 100%;
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 4rem;
}

.wide {
  width: 100%;
  max-width: 208rem;
  margin: 0 auto;
  padding: 0 8rem;
}

.btn_animate {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  width: 28rem;
  padding: 0 1.6rem 0 5.6rem;
  border: 1px solid var(--blue-text);
  height: 7.2rem;
  border-radius: 7.2rem;
  background: #fff;
  box-shadow: 4px 4px 0 rgba(0, 86, 157, 0.3);
  color: var(--blue-text);
  font-size: 2.4rem;
  font-weight: 500;
  transition: 0.4s;
  overflow: hidden;
}
.btn_animate span {
  display: block;
  flex-grow: 1;
  text-align: center;
  transition: 0.4s;
  overflow: hidden;
}
.btn_animate:before {
  position: absolute;
  top: 50%;
  left: 1.6rem;
  width: 4rem;
  height: 4rem;
  margin-top: -2rem;
  background: url(../img/arrow.png) no-repeat center/contain;
  content: "";
}
@keyframes btn_animate {
  0% {
    left: 1.6rem;
  }
  10% {
    left: 1rem;
  }
  100% {
    left: calc(100% - 5.6rem);
  }
}
@media screen and (min-width: 1480px) {
  .btn_animate:hover {
    padding: 0 5.6rem 0 1.6rem;
    background: var(--blue-text);
  }
  .btn_animate:hover span {
    color: #fff;
  }
  .btn_animate:hover:before {
    animation: btn_animate 0.6s ease forwards 0.2s;
  }
}

.up_area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  border-radius: 72px 72px 0 0;
  transition: 0.2s;
}

@media screen and (max-width: 1480px) {
  html, body {
    font-size: 0.675vw;
  }
}
@media screen and (max-width: 1024px) {
  html, body {
    font-size: 7px;
  }
  .wide, .wfix {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .wide, .wfix {
    padding: 0 20px;
  }
  .up_area {
    border-radius: 9.3vw 9.3vw 0 0;
  }
}
/* layout */
body.hidden {
  overflow: hidden;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 0.5s;
}
#header:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  transition: 1s;
  opacity: 0;
  content: "";
}
#header .wide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 14rem;
  transition: 0.5s;
}
#header .logo {
  display: block;
  width: 19rem;
  height: 6rem;
  background: url(../img/logo.png) no-repeat left center/contain;
  font-size: 0;
  transition: 0.5s;
}
#header .btn_menu {
  display: none;
}
#header #menu .list {
  display: flex;
  gap: 8.8rem;
}
#header #menu a {
  display: block;
  padding: 0.5rem;
  font-weight: 500;
}
#header #menu .eng {
  display: none;
}
#header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
#header.narrow .wide {
  padding-bottom: 6rem;
}
@media screen and (min-width: 1480px) {
  #header.narrow:hover:before {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  #header #menu a {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #header .wide {
    height: 80px;
  }
  #header .logo {
    width: 17rem;
  }
  #header .btn_menu {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    font-size: 0;
    z-index: 9;
    transition: 0.3s;
  }
  #header .btn_menu span {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0.1;
  }
  #header .btn_menu:before, #header .btn_menu:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    transform: translate(-50%, -50%);
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    content: "";
  }
  #header .btn_menu:before {
    margin-top: -6px;
  }
  #header .btn_menu:after {
    margin-top: 6px;
  }
  #header #menu .list {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    position: fixed;
    top: 80px;
    left: 50%;
    bottom: 80px;
    width: calc(100vw - 30px);
    transform: translateX(-50%) scale(0);
    padding: 30px;
    opacity: 0;
    background-color: var(--blue-dark);
    color: #fff;
    transition: 0.5s;
    border-radius: 20px;
    text-align: center;
    z-index: 8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  }
  #header #menu .list a {
    font-size: 32px;
  }
  #header #menu .list .eng {
    display: block;
    font-size: 16px;
    font-family: var(--font-mont);
  }
  #header #menu.active .list {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  #header #menu.active .btn_menu:before {
    margin: 0;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #header #menu.active .btn_menu:after {
    margin: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  #header.narrow {
    background: rgba(255, 255, 255, 0.9);
  }
  #header.narrow .wide {
    height: 60px;
    padding-bottom: 0;
  }
}

#footer {
  padding: 8rem 0;
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.9);
}
#footer .wfix {
  display: flex;
  justify-content: space-between;
}
#footer .ft_logo {
  display: block;
  width: 19rem;
}
#footer .ft_info {
  margin-top: 4rem;
}
#footer .ft_info span {
  display: block;
  line-height: 1.6;
  font-weight: 300;
}
#footer .ft_mark {
  width: 12rem;
}
#footer .ft_right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  text-align: right;
}
#footer .ft_menu {
  display: flex;
  margin-top: 8rem;
}
#footer .ft_menu li + li {
  margin-left: 6rem;
}
#footer .ft_menu a {
  display: block;
  line-height: 1.2;
}
#footer .ft_menu strong {
  display: block;
  font-family: var(--font-mont);
  font-size: 2rem;
  font-weight: 700;
}
#footer .ft_menu span {
  display: block;
  font-size: 3rem;
  font-weight: 300;
}
#footer .copyright {
  font-size: 1.8rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 50px 0;
  }
  #footer .wfix {
    display: block;
    position: relative;
  }
  #footer .ft_logo {
    width: 16rem;
  }
  #footer .ft_info {
    margin-top: 24px;
  }
  #footer .ft_info span {
    font-size: 14px;
  }
  #footer .ft_mark {
    position: absolute;
    top: 0;
    right: 20px;
    width: 52px;
  }
  #footer .ft_menu {
    margin-top: 32px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    gap: 24px;
  }
  #footer .ft_menu li {
    flex-grow: 1;
    text-align: center;
  }
  #footer .ft_menu li + li {
    margin-left: 0;
  }
  #footer .ft_menu strong {
    font-size: 13px;
  }
  #footer .ft_menu span {
    font-size: 23px;
  }
  #footer .ft_right {
    display: block;
    margin-top: 24px;
    text-align: center;
  }
}
.sysa_color {
    color: #009aee;
}