@charset "UTF-8";
/*==================================================
Template design by anoSora and Yozora Eto
@link https://anosora.itsuka-yume.com/
@link https://yozora-eto.com/

テンプレートデザイン、およびコードの著作権は anoSora and Yozora Eto にあります。
==================================================*/
/* ーーーーーーーーーーーーー

■メディアクエリ　ブレイクPoint
デフォルトをスマホ用デザインとして、モバイルファースト設計にしています。
min-width: 320px（デザイン調整用）
min-width: 425px（デザイン調整用）
min-width: 768px（タブレット想定）
min-width: 1024px（ラップトップ想定）
min-width: 1280px（PC想定）
min-width: 1440px（デザイン調整用）
min-width: 1620px（デザイン調整用）
min-width: 1800px（デザイン調整用）

ーーーーーーーーーーーー */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100..700&family=Zen+Maru+Gothic:wght@400;500;700&family=Material+Symbols+Rounded&display=swap");
/*
インデックス用
_________________________________________*/
.header__ornament.demo {
  margin-left: 0px;
}

.demoside {
  margin-bottom: 25px;
}
.demoside__name {
  font-size: 25px;
  margin-bottom: 25px;
  color: var(--color-light);
}
.demoside__item {
  padding: 20px;
  background-color: rgba(var(--color-black-rgb), 0.8);
  border-radius: 5px;
  box-shadow: var(--shadow-inset);
}
.demoside__item:not(:last-child) {
  margin-bottom: 30px;
}
.demoside__item p:nth-child(1) {
  color: var(--color-gold);
  font-weight: 500;
  border-bottom: 1px dashed var(--color-gold);
  padding-bottom: 10px;
}
.demoside__item p:nth-child(2) {
  margin-top: 10px;
}

.linebox.demo {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.linebox.demo p {
  text-align: center;
}

.demolist {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 425px) {
  .demolist {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  .demolist {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.demolist__link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 1px;
  position: relative;
  width: 100%;
  height: 60px;
  background-color: var(--color-navy);
  border: 1px solid var(--color-gold);
  border-radius: 5px;
  font-weight: 500;
  transition: box-shadow var(--transition-all);
}
@media screen and (min-width: 768px) {
  .demolist__link {
    height: 75px;
    font-size: 16px;
  }
}
.demolist__link::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/back-dots.png");
  background-size: 12%;
  background-repeat: repeat;
  opacity: 0.4;
  pointer-events: none;
}
.demolist__link:hover {
  text-shadow: none;
  box-shadow: var(--shadow-main80);
}
.demolist__link.nolink {
  background-color: var(--color-glay);
  cursor: not-allowed;
}
.demolist__link.nolink:hover {
  box-shadow: none;
}
.demolist__ok {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-pink);
  border: 2px solid var(--color-pink);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.demotbl__tr {
  display: grid;
}
@media screen and (min-width: 768px) {
  .demotbl__tr {
    grid-template-columns: 150px 1fr;
    margin-bottom: 0;
  }
}
.demotbl__th, .demotbl__td {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5px;
  flex-direction: column;
  min-width: 1px;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .demotbl__th, .demotbl__td {
    padding: 10px 15px;
  }
}
.demotbl__th {
  color: var(--color-main);
  font-weight: 500;
  border-bottom: 1px dashed var(--color-glay);
}
@media screen and (min-width: 768px) {
  .demotbl__th {
    justify-content: center;
    align-items: flex-end;
    border-right: 1px dashed var(--color-glay);
    border-bottom: none;
  }
}/*# sourceMappingURL=demo.css.map */