@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
:root {
  --black: #141417;
  --white: #fff;
  --gray: #ccc;
  --darkgray: #888;
  --moderateblue: #4D55CC;
  --lightblue: #f1f4f8;
  --blue: #3498db;
  --skyblue: #dcf1ff;
  --footer: #f2ecee
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light
}
@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html: focus-within) {
    scroll-behavior: smooth
  }
}
:where(a) {
  text-underline-offset: .2ex
}
:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px
}
:where(ul, ol) {
  list-style: none
}
:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: middle
}
p {
  margin: 0 0 1rem
}
p:last-child {
  margin: 0
}
a {
  color: var(--blue);
  text-decoration: underline
}
a:hover {
  text-decoration: none
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none
}
a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none
}
a:not([href]):not([tabindex]):focus {
  outline: 0
}
main img {
  border-radius: 1rem
}
h2 {
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2
}
h3 {
  margin: 0 0 3rem;
  font-size: 5.5vw;
  font-weight: 600;
  text-align: center;
  line-height: 1.7
}
h3 span {
  display: block;
  font-size: 1rem;
  font-weight: 400
}
h3 i {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--darkgray);
  font-size: 1.1rem;
  font-style: normal;
}
h4 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}
body {
  block-size: 100%;
  block-size: 100dvb;
  font: 400 1rem/2 "Noto Sans JP", sans-serif;
  background-color: var(--white);
  color: var(--black);
  text-align: left;
  letter-spacing: .02rem;
  -webkit-font-smoothing: antialiased
}
main {
  margin-top: 4.5rem;
}
article {
  padding-bottom: 6rem;
}
section {
  padding-bottom: 6rem
}
article:last-child {
  padding-top: 6rem;
  border-top: 1px solid #ddd
}
section:last-child {
  padding-bottom: 0
}
.container {
  margin: auto;
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 1300px;
  width: 100%
}
@media (min-width: 576px) {
  h3 {
    font-size: 1.7rem
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
  }
  .grid2 h3 {
    text-align: left
  }
}
/* Header */
.header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3.4rem;
  position: fixed;
  top: 0;
  z-index: 9998;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between
}
.header h1 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}
.header h1 span {
  display: block;
  font-size: .875rem;
}
.header a {
  color: var(--black);
  text-decoration: none
}
@media (min-width: 992px) {
  .header h1 span {
    font-size: 1rem;
  }
}
/* Humberger */
.hamburger {
  display: block;
  height: 3.4rem;
  margin-left: auto;
  position: relative;
  z-index: 10;
  width: 60px;
  border: none;
  background-color: transparent
}
.hamburger.-active .hamburger__line {
  background-color: transparent
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg)
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg)
}
.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  background-color: var(--black);
  transition: .2s
}
.hamburger__line:before, .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: var(--black);
  transition: inherit
}
.hamburger__line:before {
  top: -12px
}
.hamburger__line:after {
  top: 12px
}
.header__nav-area {
  margin-top: 3.4rem;
  padding-top: 3rem;
  display: flex;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9;
  height: 100vh; /* fallback */
  height: 100svh;
  width: 21rem;
  font-size: 1.25rem;
  visibility: hidden;
  background-color: var(--white);
  transition: .2s
}
.header__nav-area.-active {
  left: 0;
  visibility: visible;
}
.global-navigation__list a {
  padding: 1rem 1.5rem;
  display: block;
  text-decoration: none
}
.cur {
  font-weight: 700
}
.global-navigation__link {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: var(--black);
  transition: color .1s
}
.global-navigation__list .-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  font-size: 1rem;
  font-weight: 500
}
.global-navigation__list .-accordion::before, .global-navigation__list .-accordion::after {
  content: '';
  display: block;
  background-color: var(--black);
  position: absolute;
  transition: .2s;
}
.global-navigation__list .-accordion::before {
  height: 2px;
  right: 1rem;
  width: 1rem;
}
.global-navigation__list .-accordion::after {
  height: 1rem;
  right: 1.45rem;
  width: 2px;
}
.global-navigation__list .-active::before, .global-navigation__list .-active::after {
  rotate: 45deg;
}
.accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: .2s
}
.accordion.-active {
  height: auto;
  visibility: visible
}
.global-navigation__list > li ul li a {
  padding: .5rem 0 .5rem 2.5rem
}
.btn-area {
  display: grid;
  grid-gap: 1rem
}
.header-right.btn-area {
  display: none;
}
.global-navigation__list .btn-area {
  margin-top: 2rem
}
header a.btn {
  margin-right: 1rem;
  margin-left: 1rem;
}
@media (min-width: 992px) {
  .header {
    height: 4.5rem
  }
  .hamburger {
    display: none
  }
  .header__nav-area {
    margin: 0;
    padding-top: 0;
    border: none;
    left: 0;
    width: auto;
    height: auto;
    position: static;
    align-items: center;
    font-size: 1rem;
    visibility: inherit;
  }
  .header-right.btn-area {
    display: flex;
  }
  .global-navigation__list {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 1rem;
    justify-content: start;
    align-items: center;
  }
  .global-navigation__list > li {
    border-bottom: none;
    height: 100%;
  }
  .global-navigation__list a {
    padding: 0 .5rem;
    height: 100%;
    display: flex;
    align-items: center;
    transition: opacity 0.2s
  }
  .global-navigation__list ul li {
    display: block;
    position: relative;
    opacity: 0
  }
  .global-navigation__list:hover a:not(:hover) {
    opacity: 0.4;
  }
  .global-navigation__list:hover a.cur:not(:hover) {
    opacity: 1;
  }
  .global-navigation__list:hover a:not(:hover).btn {
    opacity: 1;
  }
  .btn-area {
    display: flex;
    grid-gap: 1rem;
  }
  header li:nth-child(3) {
    display: none;
  }
  .header-left {
    display: flex;
    grid-gap: 3rem;
  }
  header a.btn {
    margin-right: 0;
    margin-left: 0
  }
}
/* Button */
.btn {
  padding: 1rem;
  border-radius: 1rem;
  display: inline-block;
  font-weight: 500;
  text-align: center
}
a.btn:hover {
  background-color: #dcdaf5
}
a.btn {
  padding: .5rem 1.5rem;
  background-color: var(--skyblue);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 2rem;
  text-decoration: none
}
a.btn:hover {
  background-color: #2b83bd;
  color: var(--white);
}
a.btn2 {
  border-color: var(--gray);
  background-color: var(--lightblue)
}
a.btn2:hover {
  background-color: #dfe5ec;
  color: var(--black);
}
.link {
  position: relative
}
.link:after {
  content: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" fill="%23000" class="bi bi-box-arrow-up-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z"></path><path fill-rule="evenodd" d="M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z"></path></svg>');
  width: 12px;
  height: 12px;
  padding-left: .2rem;
}
.visually-hidden {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* Hero */
.hero {
  margin-top: 5rem;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  place-content: center;
  color: var(--white);
  background: url("../img/hero.jpg") no-repeat center;
  background-size: cover;
  background-color: #77c3d7;
  border-radius: 1rem
}
.hero {
  height: 40vh; /* fallback */
  height: 40svh;
  border-radius: 1rem;
  overflow: hidden
}
.hero .hero-inner {
  padding-right: 2rem;
  padding-left: 2rem;
  z-index: 2;
}
.hero-inner {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}
.hero-inner2 {
  display: flex;
  flex-direction: column;
  justify-content: center
}
.hero h2 {
  margin-bottom: .5rem;
  font-size: 5.5vw;
  line-height: 1.4;
}
.hero-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4
}
.cover {
  margin-top: 7rem;
  margin-bottom: 4rem;
  padding: 1.5rem;
  color: var(--white);
  height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cover02 {
  background: url("../img/cover02.jpg") no-repeat right;
  background-size: cover;
  border-radius: 1rem
}
.diagonal-grid-wrap {
  position: relative;
  margin-top: 4.5rem;
  height: 15rem;
  width: 100%;
  display: grid;
  align-items: center;
}
.diagonal-grid {
  background: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.35) 1px, transparent 0px) 0% 0% / 20px 20px rgb(255, 255, 255);
  mask-image: radial-gradient(80% 80% at 100% 0%, rgb(0, 0, 0) 50%, transparent 90%);
  position: absolute;
  height: 15rem;
  width: 100%;
}
@media (min-width: 768px) {
  .hero {
    margin-top: 6.5rem;
  }
  .hero, .hero svg {
    height: 60vh; /* fallback */
    height: 60svh;
  }
  .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 992px) {
  .hero-inner2, .hero-inner2:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center
  }
  .hero-inner2:first-child {
    white-space: nowrap;
  }
  .hero h2 {
    font-size: 2.4rem;
  }
  .hero-text {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    width: 39vw;
  }
  .hero .hero-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    height: 58vw;
  }
}
/* Footer */
footer {
  padding-top: 4rem;
  padding-bottom: 2rem;
  font-size: .875rem;
  background-color: var(--footer);
}
footer h1 {
  width: 180px
}
footer h1 svg {
  width: 100%
}
.footer-top {
  margin-bottom: 4rem;
}
.sns {
  display: flex;
  grid-gap: 2rem;
  align-items: center;
}
/* Button */
.list-faq {
  border: 1px solid var(--gray);
  border-radius: 1rem
}
.list-faq dt {
  padding: 1rem;
  border-bottom: 1px solid var(--gray);
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
  display: flex;
  grid-gap: .5rem;
}
.list-faq dt span {
  display: block;
}
.list-faq dt::before {
  content: "Q.";
  color: var(--blue);
}
.list-faq dd {
  padding: 1rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .list-faq dt {
    font-size: 1.25rem
  }
}
/* Grid */
.grid {
  display: grid;
}
.grid2 {
  grid-gap: 1rem;
}
.grid3 {
  grid-gap: 1rem;
}
.grid4 {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem
}
.grid5 {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem
}
.grid6 {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem .5rem;
}
.gap2 {
  grid-gap: 2rem !important
}
.gap4 {
  grid-gap: 2rem
}
footer .grid {
  grid-gap: 2rem
}
.m-66 {
  max-width: 66rem;
  width: 100%
}
.mb-4 {
  margin-bottom: 4rem
}
@media (min-width: 768px) {
  .grid3 {
    grid-template-columns: repeat(3, 1fr)
  }
  .grid4 {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem
  }
  .grid5, .grid6 {
    grid-template-columns: repeat(4, 1fr)
  }
  .gap4 {
    grid-gap: 4rem
  }
  .flex-between {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
  footer .grid {
    grid-template-columns: 1.5fr 1fr 1fr
  }
}
@media (min-width: 992px) {
  .grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid5 {
    grid-template-columns: repeat(5, 1fr)
  }
  .grid6 {
    grid-template-columns: repeat(6, 1fr)
  }
}
/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  border-right: 1px solid var(--gray);
  table-layout: fixed;
  width: 100%;
  font-size: .875rem;
  line-height: 1.6
}
th, td {
  border-left: 1px solid var(--gray);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  padding: .5rem
}
th {
  width: 4rem;
  text-align: right
}
.list-news {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  grid-gap: 2rem;
}
.category .card {
  display: none;
}
.category .card.is-show {
  display: block;
}
.card {
  border: 1px solid var(--gray);
  border-radius: 1rem;
  height: 100%;
}
.grid2 .card {
  height: auto
}
.card.is-show {
  border: none;
  background-color: var(--lightblue);
}
.card.is-show:hover {
  background-color: #dcdaf5
}
.card img {
  border-radius: 1rem;
  width: 100%;
}
.card-inner {
  padding: 1.5rem;
  text-box-trim: trim-both;
  text-box-edge: text;
}
figcaption {
  padding: 1rem;
  font-weight: 500;
  line-height: 1.3;
}
.card figcaption span {
  padding-top: .3rem;
  display: block;
  font-size: .875rem;
  font-weight: 200
}
.figure-img {
  position: relative;
  aspect-ratio: 40 / 21;
}
.figure-img::before {
  content: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="%23ff0133" class="bi bi-box-arrow-up-right" viewBox="0 0 16 16"><path d="M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.01 2.01 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.01 2.01 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31 31 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.01 2.01 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A100 100 0 0 1 7.858 2zM6.4 5.209v4.818l4.157-2.408z"/></svg>');
  height: 80px;
  width: 80px;
  position: absolute;
  z-index: 1;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  background: rgb(255, 255, 255, .7);
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.employee {
  text-align: center
}
.employee figcaption span {
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.4;
}
.employee img {
  width: 80%;
  border-radius: 50%
}
.thumb {
  width: 100%;
  position: relative;
  background-color: #fbe2c9;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  aspect-ratio: 40 / 21;
}
.youtube::after {
  content: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24"><path d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"/></svg>');
  background-color: var(--white);
  border-radius: 4rem;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.pdf::after {
  content: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="currentColor" class="bi bi-file-earmark-pdf-fill" viewBox="0 0 16 16"><path d="M5.523 12.424q.21-.124.459-.238a8 8 0 0 1-.45.606c-.28.337-.498.516-.635.572l-.035.012a.3.3 0 0 1-.026-.044c-.056-.11-.054-.216.04-.36.106-.165.319-.354.647-.548m2.455-1.647q-.178.037-.356.078a21 21 0 0 0 .5-1.05 12 12 0 0 0 .51.858q-.326.048-.654.114m2.525.939a4 4 0 0 1-.435-.41q.344.007.612.054c.317.057.466.147.518.209a.1.1 0 0 1 .026.064.44.44 0 0 1-.06.2.3.3 0 0 1-.094.124.1.1 0 0 1-.069.015c-.09-.003-.258-.066-.498-.256M8.278 6.97c-.04.244-.108.524-.2.829a5 5 0 0 1-.089-.346c-.076-.353-.087-.63-.046-.822.038-.177.11-.248.196-.283a.5.5 0 0 1 .145-.04c.013.03.028.092.032.198q.008.183-.038.465z"/><path fill-rule="evenodd" d="M4 0h5.293A1 1 0 0 1 10 .293L13.707 4a1 1 0 0 1 .293.707V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2m5.5 1.5v2a1 1 0 0 0 1 1h2zM4.165 13.668c.09.18.23.343.438.419.207.075.412.04.58-.03.318-.13.635-.436.926-.786.333-.401.683-.927 1.021-1.51a11.7 11.7 0 0 1 1.997-.406c.3.383.61.713.91.95.28.22.603.403.934.417a.86.86 0 0 0 .51-.138c.155-.101.27-.247.354-.416.09-.181.145-.37.138-.563a.84.84 0 0 0-.2-.518c-.226-.27-.596-.4-.96-.465a5.8 5.8 0 0 0-1.335-.05 11 11 0 0 1-.98-1.686c.25-.66.437-1.284.52-1.794.036-.218.055-.426.048-.614a1.24 1.24 0 0 0-.127-.538.7.7 0 0 0-.477-.365c-.202-.043-.41 0-.601.077-.377.15-.576.47-.651.823-.073.34-.04.736.046 1.136.088.406.238.848.43 1.295a20 20 0 0 1-1.062 2.227 7.7 7.7 0 0 0-1.482.645c-.37.22-.699.48-.897.787-.21.326-.275.714-.08 1.103"/></svg>');
  background-color: var(--white);
  border-radius: 4rem;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
/* Modal */ :where(dialog) {
  inline-size: unset;
  max-inline-size: unset;
  block-size: unset;
  max-block-size: unset;
  padding: unset;
  margin: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}
:focus:not(:focus-visible) {
  outline: none;
}
:where(:root[data-mousedown] dialog *) {
  outline: none;
}
[data-modal-open]:where(:root[data-mousedown] *) {
  outline: none;
}
.modal {
  inline-size: min(calc(100% - calc(max(5vi, 20px) * 2)), 840px);
  block-size: min(calc(100svb - calc(max(5vi, 20px) * 2)), 475px);
  margin: auto;
  color: #f7f8f8;
  background-color: #1a1a1a;
  box-shadow: 0 0 0 100vmax color-mix(in srgb, #1a1a1a, transparent 20%);
  transition: opacity 0.5s, scale 0.5s;
  contain: strict;
}
.modal:not([data-active="true"]) {
  opacity: 0;
  scale: 0.95;
}
.modal::-webkit-backdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.modal::backdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.5s;
}
.modal:not([data-active="true"])::-webkit-backdrop {
  opacity: 0;
}
.modal:not([data-active="true"])::backdrop {
  opacity: 0;
}
.modal-container {
  block-size: 100%;
  padding: 3rem;
  overflow: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  aspect-ratio: 16 / 9;
  display: flex;
}
.headline {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  font-size: clamp(1rem, 0.571rem + 1.9vi, 2rem);
}
.description {
  -webkit-margin-before: 1lh;
  margin-block-start: 1lh;
  line-height: 1.75;
}
.close {
  --icon-color: #f7f8f8;
  position: absolute;
  inset-block-start: 4px;
  inset-inline-end: 4px;
  z-index: 1;
  inline-size: 3em;
  aspect-ratio: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: #1a1a1a;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgb(0 0 0 / 20%);
  transition: background-color 0.3s;
}
.close::before, .close::after {
  position: absolute;
  inset: 0;
  display: inline-block;
  width: 45%;
  height: 2px;
  margin: auto;
  content: "";
  background-color: #f7f8f8;
}
.close::before {
  rotate: 45deg;
}
.close::after {
  rotate: 135deg;
}
.close:focus-visible {
  background-color: #484848;
}
iframe {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 16 / 9;
}
@media (any-hover: hover) {
  .close:hover {
    background-color: #484848;
  }
}
.list-disc {
  margin-top: 2rem;
  line-height: 2.4;
}
.list-disc li {
  padding-left: 2rem;
  position: relative
}
.list-disc li::before {
  content: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%2384bb1d"><path d="M23.334 11.96c-.713-.726-.872-1.829-.393-2.727.342-.64.366-1.401.064-2.062-.301-.66-.893-1.142-1.601-1.302-.991-.225-1.722-1.067-1.803-2.081-.059-.723-.451-1.378-1.062-1.77-.609-.393-1.367-.478-2.05-.229-.956.347-2.026.032-2.642-.776-.44-.576-1.124-.915-1.85-.915-.725 0-1.409.339-1.849.915-.613.809-1.683 1.124-2.639.777-.682-.248-1.44-.163-2.05.229-.61.392-1.003 1.047-1.061 1.77-.082 1.014-.812 1.857-1.803 2.081-.708.16-1.3.642-1.601 1.302s-.277 1.422.065 2.061c.479.897.32 2.001-.392 2.727-.509.517-.747 1.242-.644 1.96s.536 1.347 1.17 1.7c.888.495 1.352 1.51 1.144 2.505-.147.71.044 1.448.519 1.996.476.549 1.18.844 1.902.798 1.016-.063 1.953.54 2.317 1.489.259.678.82 1.195 1.517 1.399.695.204 1.447.072 2.031-.357.819-.603 1.936-.603 2.754 0 .584.43 1.336.562 2.031.357.697-.204 1.258-.722 1.518-1.399.363-.949 1.301-1.553 2.316-1.489.724.046 1.427-.249 1.902-.798.475-.548.667-1.286.519-1.996-.207-.995.256-2.01 1.145-2.505.633-.354 1.065-.982 1.169-1.7s-.135-1.443-.643-1.96zm-12.584 5.43l-4.5-4.364 1.857-1.857 2.643 2.506 5.643-5.784 1.857 1.857-7.5 7.642z"/></svg>');
  position: absolute;
  top: .2rem;
  left: 0
}
.bg-blue {
  background-color: var(--skyblue);
  padding-top: 2rem;
  padding-bottom: 4rem;
  margin-bottom: 6rem;
}
.bg-blue h3 {
  margin-bottom: 2rem;
  font-size: 1.25rem
}
.sticky {
  position: sticky;
  top: 6rem;
  border-radius: 1rem;
}
.jirei {
  align-items: center;
  max-width: 1000px;
  margin: auto;
  padding: 0 2rem;
}
.jirei div:nth-child(3) {
  width: 130px;
  margin: auto;
}
.jirei div:nth-child(4) {
  width: 90%;
  margin: auto;
}
.btn-area2 {
  display: flex;
  flex-direction: column;
  grid-gap: 2rem
}
@media (min-width: 768px) {
  .btn-area2 {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.tab-menu__container {}
.tab-menu__container:last-child {
  margin: auto;
}
.tab-menu__head {
  margin-bottom: 1rem;
  box-shadow: 0 0 0 2px #f8f1f6;
  display: flex;
  background-color: #f8f1f6;
  border-radius: 2rem;
}
.tab-menu__head li {
  flex: 1;
  font-weight: 500;
  padding: .3rem .5rem;
  cursor: pointer;
  border-radius: 2rem;
  text-align: center
}
.tab-menu__head li:last-child {
  border-right: none;
}
.tab-menu__head li.is-active {
  background-color: var(--skyblue);
}
.tab-menu__head li.is-active {
  box-shadow: 0 0 0 2px var(--gray)
}
.tab-menu__main {}
.tab-menu__main div {
  display: none;
}
.tab-menu__main div.is-active {
  display: block;
}