/* 共通の文字設定・ヘッダー・フッター。本文の装飾はルートの style.css で編集。 */
@font-face {
  src: url(../fonts/NotoSansJP-Bold.woff) format("woff"),url(../fonts/NotoSansJP-Bold.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../fonts/NotoSansJP-Medium.woff) format("woff"),url(../fonts/NotoSansJP-Medium.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url(../fonts/NotoSansJP-Regular.woff) format("woff"),url(../fonts/NotoSansJP-Regular.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url(../fonts/Roboto-Bold.woff) format("woff"),url(../fonts/Roboto-Bold.woff2) format("woff2");
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../fonts/Roboto-Medium.woff) format("woff"),url(../fonts/Roboto-Medium.woff2) format("woff2");
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url(../fonts/Roboto-Regular.woff) format("woff"),url(../fonts/Roboto-Regular.woff2) format("woff2");
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
html {
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  html {
    font-size: .6944444444vw;
  }
}
body {
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  font-size: 1.4rem;
}
@media only screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}
.pc_hide {
  display: block;
}
@media only screen and (min-width: 750px) {
  .pc_hide {
    display: none;
  }
}
.en {
  font-family: "Roboto",sans-serif;
  line-height: 1;
}
h2 {
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 1em;
}
@media only screen and (min-width: 750px) {
  h2 {
    font-size: 3.2rem;
  }
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
header .call-center {
  background: #333;
  color: #fff;
  height: 4.5rem;
  padding: 0 1rem;
  font-size: 1.4rem;
  text-align: right;
  line-height: 1.1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  header .call-center {
    height: 3rem;
    padding: 0 2rem;
    pointer-events: none;
  }
}
header .call-center a {
  color: inherit;
  text-decoration: none;
}
.header_wrap {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #fff;
}
@media only screen and (min-width: 750px) {
  .header_wrap {
    padding: 1.5rem 4rem;
  }
}
.header_wrap h1 img {
  width: 8rem;
}
@media only screen and (min-width: 750px) {
  .header_wrap h1 img {
    width: 15rem;
  }
}
.header_wrap .right {
  display: flex;
  align-items: center;
  gap: .8rem;
}
@media only screen and (min-width: 750px) {
  .header_wrap .right {
    gap: 1rem;
  }
}
.header_wrap .right .btn {
  font-size: 1.2rem;
  padding: 1em 1.5em;
  border-radius: 10rem;
}
@media only screen and (min-width: 750px) {
  .header_wrap .right .btn {
    font-size: 1.6rem;
    padding: .75em 2em;
  }
}
.header_wrap .right .btn.sim_btn {
  border: solid .1rem #01245a;
  color: #01245a;
  font-weight: 700;
  cursor: pointer;
  padding: .75em 1em;
}
@media only screen and (min-width: 750px) {
  .header_wrap .right .btn.sim_btn {
    order: 2;
  }
}
.header_wrap .right .btn.biz_btn {
  border: #01245a solid 1px;
  color: #01245a;
  display: none;
}
@media only screen and (min-width: 750px) {
  .header_wrap .right .btn.biz_btn {
    order: 3;
    display: block;
  }
}
.header_wrap .right .btn.cta_btn_header {
  background: #ff1d97;
  color: #fff;
}
@media only screen and (min-width: 750px) {
  .header_wrap .right .btn.cta_btn_header {
    order: 4;
  }
}
.header_wrap .right .nav_btn {
  display: none;
}
@media only screen and (max-width: 749px) {
  .header_wrap .right .nav_btn {
    position: relative;
    display: block;
    width: 2rem;
    height: 1.6rem;
    transition: all .4s;
    z-index: 1000;
    margin-left: 1rem;
  }
}
.header_wrap .right .nav_btn span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #01245a;
  transition: all .4s;
}
.header_wrap .right .nav_btn span:first-of-type {
  top: 0;
}
.header_wrap .right .nav_btn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header_wrap .right .nav_btn span:last-of-type {
  bottom: 0;
}
.header_wrap .right .nav_btn.open span {
  background: #fff;
}
.header_wrap .right .nav_btn.open span:first-of-type {
  top: 1rem;
  transform: rotate(-45deg);
}
.header_wrap .right .nav_btn.open span:nth-last-of-type(2) {
  display: none;
}
.header_wrap .right .nav_btn.open span:last-of-type {
  top: 1rem;
  transform: rotate(45deg);
}
@media only screen and (max-width: 749px) {
  .header_wrap .right nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    font-size: 1.4rem;
    transition: all .4s;
    z-index: 999;
  }
}
@media only screen and (min-width: 750px) {
  .header_wrap .right nav {
    order: 1;
    margin-right: 1rem;
  }
}
.header_wrap .right nav.open {
  right: 0;
}
.header_wrap .right nav .nav_menu {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  gap: 2rem;
}
@media only screen and (max-width: 749px) {
  .header_wrap .right nav .nav_menu {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    color: #fff;
  }
}
.header_wrap .right nav .nav_menu li a {
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
}
@media only screen and (max-width: 749px) {
  .header_wrap .right nav .nav_menu li a {
    display: block;
    padding: 1em 0;
    color: #fff;
  }
}
.footer {
  background: #333;
  color: #fff;
  padding: 4rem 2.5rem;
  font-weight: 400;
  text-align: center;
  font-size: 1.2rem;
}
@media only screen and (min-width: 750px) {
  .footer {
    padding: 4rem 27rem;
    font-size: 1.4rem;
  }
}
.footer .logo {
  width: 17rem;
  margin: 0 auto;
}
.footer .logo+div {
  margin-top: 3rem;
}
.footer .info p:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
}
.footer .info p:first-child .box {
  background: #555;
  font-size: 1rem;
  padding: 0 1em;
}
@media only screen and (min-width: 750px) {
  .footer .info p:first-child .box {
    font-size: 1.2rem;
  }
}
.footer .info+div {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: solid 1px #555;
}
@media only screen and (min-width: 750px) {
  .footer .footer_menu {
    display: flex;
    gap: 3rem;
  }
}
.footer .footer_menu .top_menu {
  display: flex;
}
@media only screen and (max-width: 749px) {
  .footer .footer_menu .top_menu {
    flex-wrap: wrap;
    row-gap: 1.5rem;
  }
}
@media only screen and (min-width: 750px) {
  .footer .footer_menu .top_menu {
    gap: 3rem;
  }
}
@media only screen and (max-width: 749px) {
  .footer .footer_menu .top_menu li {
    width: 50%;
  }
}
@media only screen and (max-width: 749px) {
  .footer .footer_menu .top_menu+ul {
    margin-top: 1.5rem;
  }
}
.footer .copy {
  margin-top: 5rem;
}
@media only screen and (min-width: 750px) {
  .header_wrap {
    box-sizing: border-box;
    height: 80px;
    padding: 0 4rem;
  }
}
@media only screen and (min-width: 750px) {
  .header_wrap .right nav {
    position: static;
    height: auto;
    padding-top: 0;
    align-self: center;
  }
  .header_wrap .right nav .nav_menu {
    flex-wrap: nowrap;
  }
  .header_wrap .right nav .nav_menu a {
    white-space: nowrap;
  }
}

/* メニューの操作領域とキーボード操作時の目印 */
.header_wrap .right .nav_btn::before {
  content: "";
  position: absolute;
  inset: -12px;
}
.header_wrap .right .nav_btn:focus-visible,
.header_wrap .right nav a:focus-visible {
  outline: 2px solid #4a96ff;
  outline-offset: 4px;
}
@media only screen and (max-width: 749px) {
  .header_wrap .right nav {
    padding-top: 12rem;
    padding-bottom: 3rem;
    overflow-y: auto;
  }
}
