body, html {
  height: 100%
}
.breadcrumb a, a {
  text-decoration: none
}
* {
  box-sizing: border-box
}
html {
  font-size: clamp(16px, 1.05vw + .2rem, 18px);
  scroll-behavior: smooth
}
body {
  margin: 0;
  background: #f5f9ff;
  color: #1a1a1a;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased
}
a {
  color: inherit
}
a:hover {
  transition: .2s
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0
}
::selection {
  background: #5f5fff;
  color: #fff
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 1rem;
  background: linear-gradient(to bottom, #e8effb 0, #cfd6de 100%);
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, .4), 0 1px 4px rgba(0, 0, 0, .4)
}
.breadcrumb li, .logo-wrapper {
  display: flex;
  align-items: center
}
.logo-mark, .logo-type {
  height: 28px;
  width: auto;
  margin-right: 10px
}
.navigation-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center
}
.navigation-menu li a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
  padding: calc(10px + .8vw)
}
.navigation-menu li:hover a {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  text-decoration-color: #5f5fff
}
.menu-toggle {
  display: none
}
.head-title, footer {
  background: #0a1a3c
}
.head-title {
  text-align: center;
  padding: 1.6rem 1rem
}
.head-title h2 {
  font-family: "Funnel Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.6rem, 6vw, 2rem);
  margin: 0;
  letter-spacing: .5em;
  color: #fff
}
.table-info th, .table-info thead th {
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif
}
.breadcrumb {
  font-size: .875rem;
  margin-bottom: 1rem;
  color: #4d4d4d
}
.button-surface, footer {
  color: #fff;
  text-align: center
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center
}
.breadcrumb li + li::before {
  content: "›";
  margin: 0 .5rem;
  color: #adadad;
  font-size: .9rem
}
.breadcrumb a {
  color: #0078ff;
  transition: color .2s
}
.breadcrumb a:hover {
  color: #005bb5;
  text-decoration: underline
}
.breadcrumb li[aria-current=page] {
  color: #1a1a1a;
  font-weight: 500;
  cursor: default
}
.table-info {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}
.table-info tbody tr, .table-info thead {
  border-bottom: 1px solid #e2e6ec
}
.table-info thead th {
  padding: 1rem;
  text-align: center
}
.table-info td, .table-info th {
  padding: 1.2rem 1rem;
  vertical-align: top;
  text-align: left;
  border-right: 1px solid #e2e6ec
}
.table-info th {
  width: 25%;
  min-width: 120px;
  color: #1a1a1a;
  background: rgba(0, 120, 255, .06)
}
.price {
  text-align: center
}
@media (max-width:768px) {
  .logo-mark, .logo-type {
    height: 24px
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    border: none;
    border-radius: 4px;
    z-index: 1000;
    position: fixed;
    top: 0;
    right: 1rem
  }
  .menu-button {
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px
  }
  .line {
    transition: transform .3s, opacity .3s;
    transform-origin: center;
    stroke-linecap: round
  }
  .menu-button .line1, .menu-button .line3 {
    transform: translateY(0) rotate(0)
  }
  .menu-button .line2 {
    opacity: 1
  }
  .menu-button.active .line1 {
    transform: translateY(7px) rotate(45deg)
  }
  .menu-button.active .line2 {
    opacity: 0
  }
  .menu-button.active .line3 {
    transform: translateY(-7px) rotate(-45deg)
  }
  .navigation-menu {
    position: fixed;
    top: 60px;
    right: -280px;
    width: 280px;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
    transition: right .3s ease-in-out;
    background: #e8effb;
    box-shadow: inset 0 1px 4px rgba(255, 255, 255, .4);
    z-index: 999
  }
  .navigation-menu.active {
    right: 0
  }
  .navigation-menu li {
    text-align: left
  }
  .navigation-menu li a {
    font-size: 1.2rem
  }
  nav {
    display: flex;
    align-items: center
  }
  .table-info td::before, .table-info thead {
    display: none
  }
  .table-info, .table-info tbody, .table-info td, .table-info th, .table-info tr {
    display: block;
    width: 100%;
    margin: 0 auto
  }
  .table-info {
    background: 0 0;
    box-shadow: none
  }
  .table-info tr {
    margin: 0 0 1rem;
    padding: 1rem;
    border: 1px solid #e2e6ec;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    position: relative
  }
  .table-info tr::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #0078ff 0, #5f5fff 100%)
  }
  .table-info th {
    padding: 0 1rem;
    border: none;
    background: 0 0;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: #5f5fff;
    text-transform: uppercase
  }
  .table-info td {
    padding: 0 1rem;
    border: none;
    font-size: 1rem;
    line-height: 1.7;
    color: #1a1a1a
  }
  .table-info td a {
    font-size: .96rem
  }
}
.button {
  width: 200px;
  margin: 2rem auto auto;
  display: block;
  padding: 0;
  border: none;
  background: 0 0;
  cursor: pointer;
  outline: 0
}
.button-bezel, .button-surface {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 50px
}
.button-bezel {
  padding: .2em;
  background: linear-gradient(to bottom, #fff, #66b2ff, #005bb5 60%, #66b2ff, #d9e6ff)
}
.button-surface {
  padding: .5em 1em;
  background: linear-gradient(to bottom, #66b2ff, #0078ff);
  font-weight: 500;
  text-shadow: 0 -.0469em .0156em rgba(0, 0, 0, .35)
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.2)
}
.button:active {
  filter: brightness(.9);
  transform: translateY(2px)
}
footer {
  position: sticky;
  top: 100vh;
  padding: 2.4rem 1rem;
  clear: both
}
footer p {
  margin: 0;
  letter-spacing: .03em;
  line-height: 1.6
}