.d-none {
  display: none;
}
@media screen and (min-width: 576px) {
  .d-sm-none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .d-md-none {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .d-lg-none {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .d-xl-none {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .d-xxl-none {
    display: none;
  }
}

.d-block {
  display: block;
}
@media screen and (min-width: 576px) {
  .d-sm-block {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .d-md-block {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .d-lg-block {
    display: block;
  }
}
@media screen and (min-width: 1080px) {
  .d-xl-block {
    display: block;
  }
}
@media screen and (min-width: 1440px) {
  .d-xxl-block {
    display: block;
  }
}

.d-inline {
  display: inline;
}
@media screen and (min-width: 576px) {
  .d-sm-inline {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .d-md-inline {
    display: inline;
  }
}
@media screen and (min-width: 992px) {
  .d-lg-inline {
    display: inline;
  }
}
@media screen and (min-width: 1080px) {
  .d-xl-inline {
    display: inline;
  }
}
@media screen and (min-width: 1440px) {
  .d-xxl-inline {
    display: inline;
  }
}

.d-inline-block {
  display: inline-block;
}
@media screen and (min-width: 576px) {
  .d-sm-inline-block {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block;
  }
}
@media screen and (min-width: 992px) {
  .d-lg-inline-block {
    display: inline-block;
  }
}
@media screen and (min-width: 1080px) {
  .d-xl-inline-block {
    display: inline-block;
  }
}
@media screen and (min-width: 1440px) {
  .d-xxl-inline-block {
    display: inline-block;
  }
}

.d-flex {
  display: flex;
}
@media screen and (min-width: 576px) {
  .d-sm-flex {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .d-md-flex {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .d-lg-flex {
    display: flex;
  }
}
@media screen and (min-width: 1080px) {
  .d-xl-flex {
    display: flex;
  }
}
@media screen and (min-width: 1440px) {
  .d-xxl-flex {
    display: flex;
  }
}

.d-flex-inline {
  display: flex-inline;
}
@media screen and (min-width: 576px) {
  .d-sm-flex-inline {
    display: flex-inline;
  }
}
@media screen and (min-width: 768px) {
  .d-md-flex-inline {
    display: flex-inline;
  }
}
@media screen and (min-width: 992px) {
  .d-lg-flex-inline {
    display: flex-inline;
  }
}
@media screen and (min-width: 1080px) {
  .d-xl-flex-inline {
    display: flex-inline;
  }
}
@media screen and (min-width: 1440px) {
  .d-xxl-flex-inline {
    display: flex-inline;
  }
}

.material-symbols-outlined {
  display: inline-block;
  overflow: hidden;
  font-size: 1em;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-family: "Material Symbols Outlined", serif;
}

:root {
  --spacing: 0.05em;
  --color-primary: #6937ff;
  --color-primary-rgb: 105 55 255;
  --color-secondary: #64d8bb;
  --color-secondary-rgb: 100 216 187;
  --color-success: #16b43b;
  --color-success-rgb: 22 180 59;
  --color-warning: #f8c11a;
  --color-warning-rgb: 248 193 26;
  --color-danger: #f13245;
  --color-danger-rgb: 241 50 69;
  --color-bg: #e9e9e9;
  --color-bg-rgb: 233 233 233;
  --color-shadow: #3a3a3a;
  --color-shadow-rgb: 58 58 58;
  --color-text: #1a1a1a;
  --color-text-rgb: 26 26 26;
  --color-text-inversion: #e9e9e9;
  --color-text-inversion-rgb: 233 233 233;
  --color-black: #000;
  --color-black-rgb: 0 0 0;
  --color-white: #fff;
  --color-white-rgb: 255 255 255;
}
@media (prefers-color-scheme: dark) {
  :root {
    --color-primary: #c0aaff;
    --color-primary-rgb: 192 170 255;
    --color-secondary: #9ddfcc;
    --color-secondary-rgb: 157 223 204;
    --color-success: #33e65d;
    --color-success-rgb: 51 230 93;
    --color-warning: #f1c339;
    --color-warning-rgb: 241 195 57;
    --color-danger: #f74254;
    --color-danger-rgb: 247 66 84;
    --color-bg: #1a1a1a;
    --color-bg-rgb: 26 26 26;
    --color-shadow: #c2c2c2;
    --color-shadow-rgb: 194 194 194;
    --color-text: #fff;
    --color-text-rgb: 255 255 255;
    --color-text-inversion: #1a1a1a;
    --color-text-inversion-rgb: 26 26 26;
    --color-black: #000;
    --color-black-rgb: 0 0 0;
    --color-white: #fff;
    --color-white-rgb: 255 255 255;
  }
}

a {
  text-decoration: none;
  border-bottom: 0.1rem solid var(--color-text);
}
@media screen and (min-width: 768px) {
  a:hover {
    border-color: transparent;
  }
}
a:active {
  border-color: transparent;
}

html {
  font-size: 2.6666666667vw;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 10px;
  }
}

body {
  padding-top: 5rem;
  overscroll-behavior: none;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-text);
  background-color: var(--color-bg);
}
body * {
  letter-spacing: var(--spacing);
}

section {
  margin-top: 5rem;
}

main > h1 {
  margin: 2rem 1rem;
  font-size: 1.8rem;
}
section h1 {
  padding: 0.5rem;
  margin: 0 1rem 2rem;
  font-size: 1.6rem;
  border-left: 0.3rem solid var(--color-primary);
}

section h2 {
  padding: 0.5rem;
  margin: 0 1rem 1rem;
  font-size: 1.4rem;
  border-bottom: 0.1rem solid var(--color-primary);
}

.description {
  margin: 0 1rem;
}

.comment {
  margin: 2rem 1rem;
  font-size: 1.2rem;
  line-height: 1.7;
}
.comment p {
  margin-top: 1rem;
}
.comment p:first-child {
  margin-top: 0;
}

[name=menu] {
  display: none;
}

.menu {
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 20;
  width: 4rem;
  height: 4rem;
  border: 0.1rem solid var(--color-primary);
  border-radius: 0.5rem;
}
.menu svg {
  width: 100%;
  height: auto;
  stroke: var(--color-primary);
}
.menu svg line {
  stroke-width: 1px;
  transition: transform 0.5s;
  transform-origin: center;
}
.menu svg line:nth-child(1) {
  transform: translate3d(0, -7px, 0);
}
#menu:checked ~ label .menu svg line:nth-child(1) {
  transform: translate3d(0, 0, 0) rotate(225deg);
}
#menu:checked ~ label .menu svg line:nth-child(2) {
  transform: scaleX(0);
}
.menu svg line:nth-child(3) {
  transform: translate3d(0, 7px, 0);
}
#menu:checked ~ label .menu svg line:nth-child(3) {
  transform: translate3d(0, 0, 0) rotate(135deg);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100dvh;
  pointer-events: none;
  background-color: transparent;
  transition: background-color 0.5s;
}
[name=menu]:checked ~ .nav {
  pointer-events: all;
  background-color: rgb(var(--color-black-rgb)/0.5);
}
[name=menu]:checked ~ .nav ul {
  right: 0;
}
.nav ul {
  position: absolute;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  padding: 10rem 3rem 0 5rem;
  font-size: 1.6rem;
  list-style: none;
  background-color: var(--color-bg);
  transition: right 0.5s;
}
.nav ul li {
  margin-top: 1rem;
}
.nav ul li:first-child {
  margin-top: 0;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 100%;
  height: 5rem;
  padding: 0 0.5rem;
  background-color: var(--color-bg);
  border-bottom: 0.1rem solid rgb(var(--color-text-rgb)/0.1);
}

.pagetop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 3rem;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: none;
  border-radius: 3rem;
}

[name=slide] {
  display: none;
}

.slider-container {
  position: relative;
}
.slider-caution {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5rem;
}
.slider-caution svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.slider-caution text {
  font-size: 13px;
  font-weight: bold;
  fill: var(--color-white);
  stroke: var(--color-bg);
  stroke-linejoin: round;
  stroke-width: 6;
}
.slider-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-image: url("../img/pat.svg");
  background-size: 1rem;
}
.slider-wrapper-scroll {
  display: flex;
  overflow: auto hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.slider #slide1:checked ~ .slider-container .slider-slide.slide1 {
  z-index: 3;
  animation-name: slide-in;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.slider #slide2:checked ~ .slider-container .slider-slide.slide2 {
  z-index: 3;
  animation-name: slide-in;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.slider #slide3:checked ~ .slider-container .slider-slide.slide3 {
  z-index: 3;
  animation-name: slide-in;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.slider #slide4:checked ~ .slider-container .slider-slide.slide4 {
  z-index: 3;
  animation-name: slide-in;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes slide-in {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-out {
  0% {
    transform: translateX();
  }
  100% {
    transform: translateX(-100%);
  }
}
.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  animation-name: slide-out;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.slider-slide-scroll {
  min-width: 90%;
  scroll-snap-align: start;
  padding-left: 1rem;
}
.slider-slide-scroll:last-child {
  margin-right: 1rem;
}

.slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.slider-pagination label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: transparent;
  border: 0.1rem solid var(--color-primary);
  border-radius: 1rem;
}
#slide1:checked ~ .slider-pagination label.slide1 {
  color: var(--color-text-inversion);
  background-color: var(--color-primary);
}
#slide2:checked ~ .slider-pagination label.slide2 {
  color: var(--color-text-inversion);
  background-color: var(--color-primary);
}
#slide3:checked ~ .slider-pagination label.slide3 {
  color: var(--color-text-inversion);
  background-color: var(--color-primary);
}
#slide4:checked ~ .slider-pagination label.slide4 {
  color: var(--color-text-inversion);
  background-color: var(--color-primary);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  padding: 0 1rem;
  margin-top: -2rem;
}
.slider-button label {
  display: none;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgb(var(--color-text-inversion-rgb)/0.3);
  border-radius: 3rem;
}
#slide1:checked ~ .slider-container .slider-button label.slide1 {
  display: flex;
}
#slide2:checked ~ .slider-container .slider-button label.slide2 {
  display: flex;
}
#slide3:checked ~ .slider-container .slider-button label.slide3 {
  display: flex;
}
#slide4:checked ~ .slider-container .slider-button label.slide4 {
  display: flex;
}
.slider-button label::before {
  color: var(--color-text-inversion);
  display: inline-block;
  overflow: hidden;
  font-size: 2rem;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-family: "Material Symbols Outlined", serif;
}
.slider-button-prev label::before {
  content: "chevron_left";
}
.slider-button-next label::before {
  content: "chevron_right";
}

[name=tab] {
  display: none;
}

nav.tab-nav ul {
  display: flex;
  padding: 0 1rem;
  margin: 0;
  overflow-x: auto;
  border-color: var(--color-primary);
  border-style: solid;
  border-width: 0 0 0.1rem;
}
nav.tab-nav ul li {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  white-space: nowrap;
  background-color: var(--color-bg);
  border-color: var(--color-primary);
  border-style: solid;
  border-width: 0.1rem 0.1rem 0;
  border-radius: 0.5rem 0.5rem 0 0;
}
nav.tab-nav ul li label {
  display: block;
  padding: 1rem;
  line-height: 1;
}
#tab1:checked ~ nav.tab-nav ul li.tab1 {
  color: var(--color-text-inversion);
  background-color: var(--color-primary);
}
#tab2:checked ~ nav.tab-nav ul li.tab2 {
  color: var(--color-text-inversion);
  background-color: var(--color-primary);
}
#tab3:checked ~ nav.tab-nav ul li.tab3 {
  color: var(--color-text-inversion);
  background-color: var(--color-primary);
}
#tab4:checked ~ nav.tab-nav ul li.tab4 {
  color: var(--color-text-inversion);
  background-color: var(--color-primary);
}

.tab-content {
  display: none;
  min-height: 10rem;
  padding: 1rem;
  border-bottom: 0.1rem solid var(--color-primary);
}
#tab1:checked ~ .tab-content.tab1 {
  display: block;
}
#tab2:checked ~ .tab-content.tab2 {
  display: block;
}
#tab3:checked ~ .tab-content.tab3 {
  display: block;
}
#tab4:checked ~ .tab-content.tab4 {
  display: block;
}

[name=modal] {
  display: none;
}

.modal-nav {
  margin: 0 1rem;
}
.modal-nav ul {
  list-style: disc;
  padding: 0 0 0 2rem;
}
.modal-wrapper {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  inset: 0;
  z-index: 30;
  background-color: rgb(var(--color-black-rgb)/0.8);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
[name=modal]:checked ~ .modal-wrapper {
  opacity: 1;
  pointer-events: all;
}
#modal-close:checked ~ .modal-wrapper {
  opacity: 0;
  pointer-events: none;
}
.modal-wrapper label {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: default;
}
.modal-content {
  display: none;
  background-color: rgb(var(--color-white-rgb)/1);
  color: rgb(var(--color-black-rgb)/1);
  border: 0.2rem solid rgb(var(--color-primary-rgb)/1);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgb(var(--color-black-rgb)/1);
  width: 90%;
  padding: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  max-width: 60rem;
}
@media screen and (min-width: 768px) {
  .modal-content {
    font-size: 1.4rem;
    line-height: 2;
    padding: 3rem;
  }
}
#modal1:checked ~ .modal-wrapper .modal-content.modal1 {
  display: block;
}
#modal2:checked ~ .modal-wrapper .modal-content.modal2 {
  display: block;
}
#modal3:checked ~ .modal-wrapper .modal-content.modal3 {
  display: block;
}
#modal4:checked ~ .modal-wrapper .modal-content.modal4 {
  display: block;
}
.modal-close {
  background-color: rgb(var(--color-white-rgb)/1);
  color: rgb(var(--color-black-rgb)/1);
  border-radius: 100vw;
  width: 4rem;
  height: 4rem;
  position: absolute;
  z-index: 3;
  top: 2rem;
  right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-close label {
  cursor: pointer;
}
.modal-close::before {
  content: "close";
  display: inline-block;
  overflow: hidden;
  font-size: 2rem;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-family: "Material Symbols Outlined", serif;
}

footer .copyright {
  padding: 2rem 0;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
