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

:root {
  --header-h: 60px;
}

@media screen and (min-width: 1024px) {
  :root {
    --header-h: 120px;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
  background-repeat: no-repeat;
}

* {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.63;
  overflow-wrap: anywhere;
  word-break: normal;
}

:where(h1,
  h2,
  h3,
  h4,
  h5,
  h6) {
  font: inherit;
}

:where(em) {
  font-style: normal;
}

:where(a:any-link) {
  color: inherit;
  text-decoration: none;
}

:where(a:any-link):has(> img) {
  display: block;
}

:where(img,
  svg,
  picture) {
  display: block;
  max-width: 100%;
}

:where(img,
  svg) {
  height: auto;
}

:where(ul,
  ol) {
  list-style-type: "";
}

:where(table) {
  border-collapse: collapse;
  width: 100%;
}

:where(button) {
  display: block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  background: none;
  background-repeat: no-repeat;
  border: none;
  border-radius: unset;
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
}

.pc,
.tab {
  display: none;
}

@media screen and (min-width: 768px) {
  .tab {
    display: revert;
  }
}

@media screen and (min-width: 1024px) {
  .pc {
    display: revert;
  }
}

.inner {
  width: calc(100% - 40px);
  max-width: 1140px;
  margin-inline: auto;
}

.inner.lg {
  max-width: 1200px;
}

.inner.sm {
  max-width: 960px;
}

.link-btn {
  width: 100%;
  max-width: 220px;
  border-radius: 50px;
  overflow: hidden;
  isolation: isolate;
}

.link-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 45px;
  padding: 5px;
  color: var(--link-txt, #fff);
  text-decoration: none;
  background-color: var(--link-bg, #191a1a);
}

.link-btn.icon a {
  padding: 5px 45px;
  background-image: url("../img/link_arrow.svg");
  background-position: center right 18px;
  background-size: 20px auto;
}

.link-btn.back a {
  background-image: url("../img/link_arrow_back.svg");
  background-position: center left 18px;
}

@media (any-hover: hover) {
  .link-btn a {
    transition: opacity 0.3s ease;
  }

  .link-btn a:hover {
    opacity: 0.7;
  }
}

.list-dot li {
  padding-left: 1em;
  text-indent: -1em;
}

.list-dot li::before {
  content: '●';
  color: #004b86;
}

/* header */
.site--header {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: space-between;
  width: 100%;
  height: var(--header-h);
  padding-left: 18px;
  color: #fff;
  background-image: url("../img/bg.png");
  background-position: center top;
  background-size: 250% auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

.site--header .logo {
  align-self: center;
  max-width: 60px;
}

.gnav {
  display: none;
}

.site--header .box-sp {
  align-self: center;
  display: flex;
}

.site--header .link-contact a {
  display: block;
  aspect-ratio: 1;
  width: 60px;
  color: transparent;
  font-size: 8px;
  text-align: center;
  background-color: #00A4FF;
  background-image: url("../img/h_contact.svg");
  background-position: center;
  background-size: 37px auto;
}

@media screen and (min-width: 1024px) {
  .site--header {
    background-size: cover;
  }

  .site--header .logo {
    max-width: 117px;
  }

  .gnav {
    display: revert;
  }

  .site--header .box-sp,
  .menu {
    display: none;
  }
}

@media screen and (min-width: 1240px) {
  .site--header {
    padding-left: 45px;
  }
}

@media (any-hover: hover) {
  .site--header a {
    transition: opacity 0.3s ease;
  }

  .site--header a:hover {
    opacity: 0.7;
  }
}

.gnav--list {
  display: flex;
  column-gap: 30px;
  height: 100%;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.gnav--list .item {
  display: grid;
  align-items: center;
  position: relative;
}

.gnav--list .current > a {
  text-decoration-line: underline;
  text-decoration-color: #87ffee;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.gnav--list .child {
  width: max-content;
  padding: 24px 34px 26px;
  color: #000;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  opacity: 0;
  visibility: hidden;
}

.gnav--list-lv2 {
  display: grid;
  row-gap: 1em;
  font-size: 16px;
}

.gnav--list-lv2 a {
  padding-left: 13px;
  background-image: url("../img/nav_arrow_bk.svg");
  background-position: center left;
  background-size: 6px auto;
}

.gnav--list .btn {
  min-width: 10em;
  margin-left: 10px;
}

.gnav--list .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 5px;
  background-color: #00a4ff;
}

@media screen and (min-width: 1240px) {
  .gnav--list {
    column-gap: 58px;
    font-size: 20px;
  }
}

@media (any-hover: hover) {

  .gnav--list .item:hover .child,
  .gnav--list .item:focus-within .child {
    opacity: 1;
    visibility: visible;
  }
}

.menu--btn {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  width: 60px;
  background: linear-gradient(90deg, #759AC7 0%, #6484B0 100%);
}

.menu--btn .line {
  display: block;
  width: 29px;
  height: 8px;
  position: relative;
}

.menu--btn .line::before,
.menu--btn .line::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentcolor;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.menu--btn .line::before {
  top: -2px;
}

.menu--btn .line::after {
  bottom: -2px;
}

.menu--btn[aria-expanded="true"] .line::before {
  rotate: 20deg;
  translate: 0 5px;
}

.menu--btn[aria-expanded="true"] .line::after {
  rotate: -20deg;
  translate: 0 -5px;
}

.menu {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 8;
}

.menu[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
}

.menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.menu--content {
  display: grid;
  grid-template-rows: 1fr auto;
  row-gap: 38px;
  height: 100%;
  padding-top: 110px;
  color: #fff;
  background-image: url("../img/bg.png");
  background-position: center top;
  background-size: 250% auto;
  overflow-y: auto;
  position: relative;
}

.menu--inner {
  max-width: 420px;
  margin-inline: auto;
}

.menu--top {
  align-self: center;
  padding: 0 20px;
}

.menu--list {
  display: grid;
  row-gap: 15px;
}

.menu--list .item-lv1 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.menu--list .item-lv1:not(:first-child) {
  margin-top: 25px;
}

.menu--list .item-lv1:not(:last-child) {
  margin-bottom: 10px;
}

.menu--list .item-lv2 {
  padding-left: 3px;
  letter-spacing: 0.02em;
}

.menu--list .item-lv2 a {
  padding-left: 13px;
  background-image: url("../img/nav_arrow_w.svg");
  background-position: center left;
  background-size: 6px auto;
}

.menu--list-2 {
  display: grid;
  row-gap: 11px;
  margin-top: 60px;
  letter-spacing: 0.02em;
}

.menu--list-2 a[target="_blank"] {
  padding-right: 20px;
  background-image: url("../img/link_ex_w.svg");
  background-position: center right;
  background-size: 13px auto;
}

.menu--bottom {
  display: grid;
  row-gap: 9px;
  padding: 38px 20px;
  letter-spacing: 0.02em;
  background-color: #333;
}

.site--main {
  position: relative;
}

h1.visually-hidden {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  position: absolute;
}

.page {
  padding-top: var(--header-h);
}

.page--nav {
  margin-top: 35px;
}

.page--nav .nav--list {
  display: flex;
  flex-direction: column;
  row-gap: 17px;
  text-align: center;
}

.page--nav a {
  color: #878787;
}

.page--nav .current {
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-color: #87ffee;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.page--content {
  margin-top: 45px;
}

.page--headline {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.64;
}

.page--headline span {
  display: inline-block;
}

.page--lead {
  line-height: 1.75;
}

.page--tab {
  margin-inline: -20px;
  padding: 0 20px;
  font-size: 13px;
  line-height: 1.54;
  border-bottom: 1px solid #070304;
}

.page--tab .tab--list {
  display: flex;
  align-items: flex-end;
  gap: 1px;
}

.page--tab .item {
  width: 100%;
}

.page--tab a,
.page--tab .current {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2px;
}

.page--tab a {
  min-height: 48px;
  background-color: #d5d5d5;
}

.page--tab .current {
  min-height: 60px;
  color: var(--current-txt, #fff);
  background-color: var(--current-bg, #003b74);
}

.news--list {
  letter-spacing: 0.02em;
  border-bottom: 1px solid;
}

.news--list .item {
  padding-top: 20px;
  padding-bottom: 25px;
  border-top: 1px solid;
  position: relative;
}

.news--list .item::before {
  content: '';
  display: block;
  width: 150px;
  height: 4px;
  position: absolute;
  top: -1px;
  left: 0;
}

.news--list .item a::before {
  content: '';
  position: absolute;
  inset: 0;
}

.news--list .item:nth-child(odd)::before {
  background-color: #87ffee;
}

.news--list .item:nth-child(even)::before {
  background-color: #ffff9e;
}

.news--list .title {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .page--nav .nav--list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 4em;
  }

  .page--tab {
    margin-inline: 0;
    padding: 0;
  }

  .page--tab .tab--list {
    justify-content: center;
    gap: 23px;
  }

  .page--tab .item {
    max-width: 204px;
  }
}

@media screen and (min-width: 1024px) {
  .page--content {
    margin-top: 71px;
  }

  .page--headline {
    font-size: 32px;
    line-height: 1.43;
    text-align: center;
  }

  .page--lead {
    text-align: center;
  }

  .page--tab {
    font-size: 16px;
  }

  .page--tab a {
    min-height: 35px;
  }

  .page--tab .current {
    min-height: 41px;
  }

  .news--list .item {
    padding-right: 70px;
  }

  .news--list .item a::before {
    background-image: url("../img/news_arrow.svg");
    background-position: center right 14px;
    background-size: 52px auto;
  }
}

@media (any-hover: hover) {
  .page--nav .nav--list a:hover {
    color: inherit;
  }

  .news--list a:hover {
    text-decoration: underline;
  }
}

.footer-top {
  padding: 56px 0 32px;
  color: #adadad;
  background-color: #333;
  background-image: url("../img/f_bg.png");
  background-position: right bottom 87px;
  background-size: 305px auto;
}

.footer-top .nav {
  display: grid;
  row-gap: 40px;
}

.footer-top .nav--list {
  display: grid;
  row-gap: 16px;
}

.footer-top .nav--list .item-lv1 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.footer-top .nav--list .item-lv2 {
  letter-spacing: 0.02em;
}

.footer-top .nav--list .item-lv2 a {
  display: inline-block;
  padding-left: 12px;
  background-image: url("../img/nav_arrow_w.svg");
  background-position: center left 3px;
  background-size: 6px auto;
}

.footer-top .logo {
  max-width: 165px;
  margin-top: 62px;
}

.footer-top .name {
  margin-top: 176px;
}

.footer-top .address {
  margin-top: 9px;
  line-height: 1.65;
}

.footer-top .address span {
  display: inline-block;
}

.footer-bottom {
  padding: 31px 0 25px;
  background-color: #004b86;
}

.footer-bottom .nav--list {
  display: grid;
  row-gap: 10px;
  color: #b2c8da;
}

.footer-bottom .nav--list a[target="_blank"] {
  padding-right: 20px;
  background-image: url("../img/link_ex_bl.svg");
  background-position: center right;
  background-size: 13px auto;
}

.footer-bottom .copyright {
  margin-top: 27px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
  .footer-top .nav {
    grid-template-columns: repeat(2, max-content);
    align-items: start;
    column-gap: 120px;
  }
}

@media screen and (min-width: 1024px) {
  .site--footer .inner {
    max-width: 1794px;
  }

  .footer-top {
    padding: 55px 0 46px;
    background-position: right bottom;
    background-size: 34% auto;
  }

  .footer-top .nav {
    grid-template-columns: repeat(4, max-content);
    column-gap: 90px;
  }

  .footer-top .logo {
    margin-top: 218px;
  }

  .footer-top .name {
    margin-top: 36px;
  }

  .footer-top .address br {
    display: none;
  }

  .footer-bottom {
    padding: 12px 0 17px;
  }

  .footer-bottom .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-bottom .nav--list {
    grid-auto-flow: column;
    column-gap: 0.5em;
  }

  .footer-bottom .nav--list .item:not(:last-child)::after {
    content: '｜';
    padding-left: 0.5em;
  }

  .footer-bottom .copyright {
    order: -1;
    margin-top: 0;
    font-size: 16px;
  }
}

@media screen and (min-width: 1240px) {
  .footer-top {
    background-size: 654px auto;
  }
}

@media (any-hover: hover) {
  .site--footer a:hover {
    text-decoration: underline;
  }
}

.standard {
  padding-bottom: 110px;
}

.standard .page--lead {
  margin-top: 43px;
}

.standard .page--tab {
  margin-top: 43px;
}

.standard .sec-1 {
  margin-top: 43px;
}

.standard .sec-1 .box-1 {
  display: grid;
  row-gap: 27px;
}

.standard .sec-1 .heading-1 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.standard .sec-1 .text-1 {
  margin-top: 63px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.standard .sec-1 .link-btn {
  margin-inline: auto;
  margin-top: 64px;
}

.standard .sec-1 .table-1 {
  margin-top: 43px;
  font-size: 14px;
  text-align: center;
}

.standard .sec-1 thead {
  background-color: #a8b7d1;
}

.standard .sec-1 thead th {
  padding: 6px 5px;
  font-weight: normal;
}

.standard .sec-1 tbody {
  background-color: #f2f4f8;
}

.standard .sec-1 tbody tr:nth-child(2n) {
  background-color: #dfe5ee;
}

.standard .sec-1 tbody td {
  padding: 6px 10px;
}

.standard .table-outer {
  overflow-x: auto;
}

.standard .table-outer table {
  width: 1200px;
}

@media screen and (min-width: 768px) {
  .standard .sec-1 .box-1 {
    grid-template-columns: 1fr 75.9%;
    align-items: center;
    justify-content: space-between;
  }

  .standard .sec-1 .heading-1 {
    text-align: center;
  }

  .standard .sec-1 .img-1 {
    max-width: 781px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 1024px) {
  .standard .page--lead {
    margin-top: 52px;
  }

  .standard .page--tab {
    margin-top: 93px;
  }

  .standard .sec-1 .text-1 {
    margin-top: 99px;
    font-size: 26px;
  }

  .standard .sec-1 .link-btn {
    margin-top: 86px;
  }

  .standard .table-outer table {
    width: 100%;
  }
}

.customize {
  padding-bottom: 110px;
}

.customize .page--headline {
  font-size: clamp(19px, 5.6vw, 22px);
  text-align: center;
}

.customize .page--tab {
  --current-bg: #00a4ff;
  margin-top: 59px;
  font-size: clamp(10px, 3.4vw, 13px);
}

.customize .sec-1 {
  margin-top: 43px;
}

.customize .sec-1 .heading-1 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.customize .sec-1 .list-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: start;
  gap: 35px;
  margin-top: 49px;
}

.customize .sec-1 .list-1 dt {
  padding: 9px 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  background-color: #d0d7e5;
}

.customize .sec-1 .list-1 dd {
  margin-top: 25px;
  line-height: 1.5;
}

.customize .sec-1 .list-1 .img:not(:last-child) {
  margin-bottom: 18px;
}

.customize .sec-1 .list-1 .list-dot {
  display: grid;
  row-gap: 8px;
}

.customize .sec-1 .list-1 .list-dot:not(:first-child) {
  margin-top: 8px;
}

.customize .sec-1 .list-1 .list-dot:not(:last-child) {
  margin-bottom: 8px;
}

.customize .sec-1 .text-1 {
  margin-top: 63px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.customize .sec-1 .link-btn {
  margin-inline: auto;
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
  .customize .sec-1 .heading-1 {
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .customize {
    padding-bottom: 115px;
  }

  .customize .page--headline {
    font-size: 32px;
  }

  .customize .page--tab {
    margin-top: 88px;
    font-size: 16px;
  }

  .customize .sec-1 {
    margin-top: 64px;
  }

  .customize .sec-1 .heading-1 {
    font-size: 27px;
    letter-spacing: 0.02em;
  }

  .customize .sec-1 .list-1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 30px;
    margin-top: 65px;
  }

  .customize .sec-1 .list-1 dt {
    padding: 9px 21px;
    font-size: 18px;
  }

  .customize .sec-1 .list-1 dd {
    margin-top: 28px;
  }

  .customize .sec-1 .list-1 .img:not(:last-child) {
    margin-bottom: 22px;
  }

  .customize .sec-1 .text-1 {
    margin-top: 122px;
    font-size: 26px;
  }

  .customize .sec-1 .link-btn {
    margin-top: 86px;
  }
}


/* Cookie使用同意のポップアップ */

.cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2em;
  color: #fff;
  font-size: 12px;
  background: rgba(0, 0, 0, .7);
  position: fixed;
  bottom: -200px;
  z-index: 10;
  visibility: visible;
  transition: .5s;
}

.cookie-consent.is-show {
  bottom: 0;
}

.cookie-text {
  width: 90%;
}

.cookie-consent a {
  text-decoration: underline;
}

.cookie-agree {
  color: #fff;
  background: dodgerblue;
  padding: .5em 1.5em;
}

.cookie-agree:hover {
  cursor: pointer;
}

.cc-hide1 {
  display: none;
}

.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}

@keyframes hide {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media screen and (max-width: 650px) {
  .cookie-consent {
    flex-direction: column;
  }

  .cookie-text {
    width: 100%;
    margin-bottom: 1em;
  }
}