@charset "utf-8";

/* -------------------------
メインコンテンツ
-------------------------*/

a {
  appearance: none;
  -webkit-appearance: none;
}

/* -------------------------
基本のリンク色
-------------------------*/
& a {
  color: #0a77b1; /*bleu acide*/
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
& a:hover {
  color: #f8ae34; /*berlingot*/
  text-decoration: underline;
}
& a:visited {
  color: #550953; /*aubergine*/
  text-decoration: none;
}
#mainContents h1#title {
  display: inline-block;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 45px 0 5px 0;
  width: 100%;
  color: #2c2c2c;
}
.subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  & h2 {
    font-size: 16.5px;
    color: #2c2c2c;
    padding: 0 10px;
    font-weight: normal;
    letter-spacing: 0.05em;
  }
}
.subtitle::before,
.subtitle::after {
  border-top: 1px solid;
  content: '';
  width: 1.5em;
}
/* -------------------------
汎用
-------------------------*/
*:disabled {
  background-color: #c5c5c5 !important;
  color: white;
  opacity: 0.75;
}
span.inlineCode {
  display: inline-block;
  padding: 1.5px 3px;
  margin: 0 1.5px;
  font-size: small;
  font-weight: bold;
  font-family: 'Courier New', Courier, monospace;
  background-color: #2c2c2c;
  border-radius: 5px;
  color: white;
}
.innerRow {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  margin: 10px auto;
  padding: 4px 8px;
}
.innerRow-B {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 10px auto;
  padding: 4px 8px;
}
.box-side {
  text-align: right;
  margin: 0;
  padding: 0;
  padding-right: 35px;
  font-size: 15px;
}
span.hilight {
  color: #ff522d; /*rouge orange*/
  background-color: rgba(208, 255, 0, 0.545);
  margin: 0;
  padding: 0;
}
input[type='text'].ipt {
  height: 30px;
  border: 2px solid #c5c5c5;
  border-radius: 8px;
  margin: 5px 10px;
  padding: 8px;
}
input[type='text'].iptLong {
  height: 30px;
  width: 95%;
  border: 2px solid #c5c5c5;
  border-radius: 8px;
  margin: 5px 10px;
  padding: 8px;
}
input[type='text'].iptMid {
  height: 30px;
  width: 50%;
  border: 2px solid #c5c5c5;
  border-radius: 8px;
  margin: 5px 10px;
  padding: 8px;
}

input[type='text'].ipt:focus,
input[type='text'].iptLong:focus,
input[type='text'].iptMid:focus {
  outline: 2px solid #80cbc4;
}

textarea.ipt2 {
  height: 300px;
  width: 95%;
  margin: 10px auto;
  padding: 10px 15px;
  border: 2px solid #c5c5c5;
  border-radius: 8px;
  resize: none;
  font-family: 'Courier New', Consolas, monospace;
  font-size: 15px;
}

.font-sans {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans', Meiryo, sans-serif !important;
}
textarea.ipt2:focus {
  outline: 2px solid #80cbc4;
}
.btnContainer {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  width: 95%;
  & button.btn {
    height: 50px;
    width: 100px;
    font-size: 20px;
  }
}
button.minibtn {
  height: 30px;
  width: 50px;
  line-height: 1px;
  background-color: #80cbc4;
  border-radius: 8px;
  border: none;
  margin: 8px 10px;
  color: white;
  font-weight: bold;
  font-size: 14.5px;
  transition: all ease-in-out 0.5s;
  cursor: pointer;
}
button.btn {
  height: 30px;
  width: 70px;
  line-height: 1px;
  background-color: #80cbc4;
  border-radius: 8px;
  border: none;
  margin: 5px 10px;
  margin-bottom: 0;
  margin-left: 12px;
  padding: 5px;
  color: white;
  font-weight: bold;
  font-size: 15px;
  transition: all ease-in-out 0.5s;
  cursor: pointer;
}
button.longbtn {
  height: 30px;
  width: 120px;
  line-height: 1px;
  background-color: #80cbc4;
  border-radius: 8px;
  border: none;
  margin: 5px 10px;
  margin-bottom: 0;
  margin-left: 12px;
  padding: 5px;
  color: white;
  font-weight: bold;
  font-size: 15px;
  transition: all ease-in-out 0.5s;
  cursor: pointer;
}
button.btn:hover,
button.minibtn:hover,
button.longbtn:hover {
  opacity: 0.75;
}
.Container {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-all;
  font-family: 'Courier New', Consolas, monospace;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  padding: 15px;
  margin: 20px auto;
  background-color: #ddfdfa;
  border: 1px dotted #c5c5c5;
}

.Container-cols {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-all;
  font-family: 'Courier New', Consolas, monospace;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  padding: 15px;
  margin: 20px auto;
  background-color: #ddfdfa;
  border: 1px dotted #c5c5c5;
}
.childContainer {
  width: 445px;
  height: 445px;
  margin: 10px auto;
  background-color: white;
  border: 2px solid #c5c5c5;
}
.grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(11, 40px);
}
.gridChild {
  border: 1px dotted #c5c5c5;
}
.cntr {
  text-align: center;
  align-self: center;
  margin: 0 auto;
}
ul.square {
  list-style-type: square;
  font-size: 17.5px;
  width: 100%;
  padding: 15px;
  & li {
    margin: 0 8px;
  }
}
button.intLink {
  display: block;
  width: 200px;
  height: 60px;
  background-color: #80cbc4;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 20px;
  font-weight: bold;
  margin: 70px auto;
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
button.intLink:hover {
  letter-spacing: 0.1em;
  opacity: 0.75;
}
p.pn {
  margin-left: 15px;
}
.innerRow-C {
  display: flex;
  flex-direction: row;
  margin: 10px 0;
  align-items: center;
  padding: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .Container {
    display: flex;
    flex-direction: column;
  }
  .Container-cols {
    padding: 8px;
  }
  span.inlineCode {
    font-size: smaller;
  }
  .innerRow-C {
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
    & .ipt {
      width: 90%;
    }
    & .innerRow-B {
      & .btn {
        margin: 0 5px;
      }
    }
  }
  p.pn {
    font-size: 13px !important;
    text-align: center;
    margin: 5px 0;
  }
  .innerRow {
    margin: 10px auto;
    padding: 0 4px;
  }
  .innerRow-B {
    margin: 5px auto;
    padding: 0 4px;
  }
  .box-side {
    padding-right: 0;
    font-size: 13.5px;
  }
  textarea.ipt2 {
    height: 200px;
    width: 100%;
    font-size: 13.5px;
  }
  .btnContainer {
    width: 100%;
    & button.btn {
      height: 40px;
      width: 100%;
      font-size: 17.5px;
    }
  }
  button.btn {
    height: 27.5px;
    width: 75px;
    display: inline-block;
    margin: 5px auto;
  }
  button.longbtn {
    height: 27.5px;
    width: 100px;
    display: inline-block;
    font-size: 13.5px;
    margin: 5px auto;
  }
  ul.square {
    font-size: 15px;
    padding: 10px;
  }
  button.intLink {
    width: 175px;
    height: 45px;
    font-size: 16.5px;
    margin: 45px auto;
  }
}
span.new {
  display: inline-block;
  color: white;
  background-color: #bf4040; /*braise*/
  font-weight: bold;
  line-height: 1.5em;
  font-size: 9.5px;
  margin-left: 5px;
  padding: 2px 4px;
}
/* -------------------------
見出しなど
-------------------------*/
h2.title {
  font-size: 24px;
  letter-spacing: 0.05em;
  margin: 20px 0 14px 0;
  padding: 12px 10px;
  display: inline-block;
  height: 55px;
  width: 100%;
  border-bottom: 1px solid rgb(197, 197, 197);
  border-left: 10px solid #80cbc4;
  background-color: white;
}
/* -------------------------
テキスト入れ
-------------------------*/
.textHolder {
  width: 100%;
  overflow-wrap: break-word;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 15px;
  margin: 20px 0px;
}
.textHolderB {
  display: block;
  width: 80%;
  overflow-wrap: break-word;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 15px;
  margin: 20px auto;
}
/* -------------------------
ギャラリーカード 
-------------------------*/
.cardsContainer {
  display: flex;
  align-items: top;
  justify-content: top;
  flex-direction: column;
  width: 95%;
  background-color: #f3f3f3;
  height: auto;
  padding: 30px;
  & h1 {
    display: inline-block;
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
  }
}
div.cards a.cardsLink {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 12.5px;
}
div.cards a:hover.cardsLink {
  /*background-color: #d9d9d9;
  opacity: 0.25;*/
  box-shadow: 0px 0px 20px 0px #aeaeaed4;
}
.cardsContainer .cards {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 15px;
  padding: 0 0 20px 0;
  height: auto;
  background-color: #ffffff;
  font-size: 15px;
  color: #000;
  border-radius: 12.5px;
  text-align: left;
  border: 1px solid #d6d6d6;
}
.cards .cardsHeader {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #2c2c2c;
  color: white;
  width: 100%;
  /*height: 100%;*/
  border-top-left-radius: 12.5px;
  border-top-right-radius: 12.5px;
  padding: 15px;
}
.cards .cardsHeader h1 {
  font-size: 22.5px !important;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: inline-block;
  text-align: left;
  margin: 5px 0;
}
.cards .cardscontent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 10px;
}
.cards .posterBlock {
  display: block;
  width: 250px;
  height: 250px;
  background-color: #ffffff;
  align-self: flex-end;
  margin: auto;
}
.posterBlock img {
  border: 1px solid gray;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.infoList {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 65%;
  padding: 5px 5px;
  margin: 5px 5px;
}
.infoList div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 0 0 15px 0;
}
.infoList dt::after {
  content: '：';
  position: absolute;
  left: 128px;
}
.infoList dt {
  font-size: 18px;
  font-weight: bold;
  padding-left: 8px;
  text-align: left;
  display: inline-block;
  width: 170px;
  position: relative;
  &.t4 {
    letter-spacing: 0.4em;
  }
  &.t3 {
    letter-spacing: 1.1em;
  }
  &.t2 {
    letter-spacing: 3.2em;
  }
}
.finfoList dd {
  font-size: 16.5px;
}
@media (max-width: 768px) {
  #mainContents {
    padding: 0;
    width: 100%;
  }
  .cardsContainer {
    padding: 10px 0px;
    width: 100%;
  }
  .cards .cardscontent {
    flex-direction: column;
  }
  .cards .posterBlock {
    width: 150px;
    height: 150px;
  }
  .cards .cardsHeader h1 {
    font-size: 20px !important;
    font-weight: bold;
    letter-spacing: 0.1em;
    display: inline-block;
    text-align: center;
    margin: 5px 0;
  }
  .infoList {
    width: 100%;
  }
  .infoList div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0 0 15px 0;
  }
  .infoList dt {
    font-size: 15px;
    font-weight: bold;
    padding-left: 5px;
    text-align: left;
    display: inline-block;
    width: 145px;
    position: relative;
  }
  .infoList dd {
    display: inline-block;
    width: 40%;
    font-size: 13px;
    margin-inline-start: 0;
    margin-left: 12px;
    overflow-wrap: break-word;
  }
}
/* -------------------------
新着情報Box 
-------------------------*/
.newsBox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 300px;
  overflow: scroll;
  border: 1px solid #d6d6d6;
  background-color: #ffffff;
  margin: 10px auto;
}
.newsBox ul.newsList {
  width: 100%;
  list-style-type: none;
  & li {
    font-size: 13.5px;
    & span {
      letter-spacing: 0.13em;
    }
  }
}
.newsBox dl.newsList {
  width: 100%;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  & .nrows {
    display: flex;
    flex-direction: row;
    margin: 5px 0;
    justify-content: left;
  }
  & dt {
    font-family: 'Courier New', Consolas, monospace;
    text-align: right;
    font-size: 15px;
    font-weight: bold;
    margin-left: 15px;
  }
  & dd {
    text-align: left;
    font-size: 13.5px;
    font-weight: normal;
    margin: 0;
  }
}

/* -------------------------
フローティングXボタン
-------------------------*/
.floatingX {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  z-index: 1000;
  border-radius: 50%;
  & a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-decoration: none;
    background-color: black;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13.5px;
    border-radius: 10px;
    border-radius: 50%;
    transition: 0.5s ease-in-out;
    & img {
      height: 50px;
      width: 50px;
    }
  }
  & a:hover {
    opacity: 0.75;
  }
}
@media only screen and (max-width: 768px) {
  #mainContents h1#title {
    font-size: 24px;
  }
  .subtitle {
    margin-bottom: 20px;
  }
  .subtitle h2 {
    font-size: 15px;
  }
  h2.title {
    font-size: 18.5px;
    height: 40px;
    padding: 8px 10px;
  }
  .textHolder {
    font-size: 12.5px;
    padding: 10px;
    margin: 15px 0px;
  }
  .textHolderB {
    width: 100%;
    font-size: 12.5px;
    padding: 10px;
    margin: 15px 0px;
  }
  .floatingX {
    width: 50px;
    height: 50px;
    & img {
      height: 25px !important;
      width: 25px !important;
    }
  }
  .newsBox {
    height: 200px;
  }
  .newsBox ul.newsList li {
    font-size: 11.5px;
  }
  .newsBox dl.newsList {
    & .nrows {
      flex-direction: column;
    }
    & dt {
      font-size: 13.5px;
      margin-left: 0;
      margin-bottom: 8px;
      text-align: left;
    }
    & dd {
      font-size: 12px;
    }
  }

  .indexBox {
    width: 100% !important;
    border: 1px solid #2c2c2c;
  }
  li.childItem {
    font-size: 12.5px !important;
  }
  li.parentItem {
    font-size: 14.5px !important;
  }
}
.indexBox {
  width: 65%;
  background-color: white;
  /* border: 1px solid #2c2c2c; */
  padding: 10px;
  margin: 0 auto;
  margin-bottom: 25px;
  & ul {
    display: flex;
    list-style-type: none;
    flex-direction: column;
    margin: 15px 0;
    & li.childItem {
      font-size: 14.5px;
      font-weight: normal;
    }
  }
}
.indexBox ul li.parentItem {
  color: #2c2c2c;
  font-weight: bold;
  font-size: 16.5px;
}
/* ----------------------------------------
イメージギャラリー 
---------------------------------------- */
.galContainer {
  display: flex;
  flex-direction: column;
  margin: 45px auto;
  padding: 20px;
}
.fullImage {
  position: relative;
  display: block;
  align-content: center;
  width: 500px;
  height: 500px;
  margin: 15px auto;
  & img {
    width: 100%;
  }
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background-color: rgba(0, 0, 0, 0);
}
button.dark,
button.light {
  border: 0;
  background: #80cbc4;
  color: white;
  position: absolute;
  border-radius: 8px;
  padding: 5px;
  cursor: pointer;
  top: 2px;
  left: 2px;
}
.thumb-bar {
  display: flex;
  flex-direction: row;
  width: 500px;
  margin: 0 auto;
  & img {
    display: block;
    width: 20%;
    float: left;
    cursor: pointer;
  }
}
.codesContainer {
  width: 100%;
  overflow-wrap: break-word;
  font-size: 13.5px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  padding: 15px;
  margin: 20px auto;
  background-color: #ddfdfa;
  border: 1px dotted #c5c5c5;
}
pre.codes {
  overflow-wrap: break-word;
  width: 100%;
  padding: 20px;
  font-size: 15px;
  margin: 20px auto;
  background-color: #ddfdfa;
  border: 1px dotted #c5c5c5;
  white-space: pre-wrap;
  font-family: 'Courier New', Courier, monospace;
}
pre {
  overflow-x: scroll !important;
  -webkit-overflow-scrolling: touch; /* スクロールを滑らかにする */
}
/* .totopbtn {
  width: 200px;
  height: 45px;
  font-size: 14px;
  border-radius: 15px;
  background-color: #80cbc4;
  color: white;
  margin: 0 auto;
} */
@media only screen and (max-width: 768px) {
  .galContainer {
    margin: 25px auto;
    padding: 12px;
  }
  .fullImage {
    width: 250px;
    height: 250px;
    margin: 10px auto;
  }
  .overlay {
    width: 250px;
    height: 250px;
  }
  button.dark,
  button.light {
    font-size: 10px;
  }
  .thumb-bar {
    width: 250px;
  }
  .codesContainer {
    font-size: 12.5px;
    padding: 10px;
    margin: 17.5px auto;
    & pre {
      white-space: break-spaces;
    }
  }
  pre.codes {
    width: 100%;
    padding: 10px;
    margin: 15px auto;
    font-size: 11.5px;
  }
}
/* ----------------------------------------
8パズル
---------------------------------------- */
.sCon {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  margin-top: 5px;
  margin-right: 10px;
  & p {
    margin: 0 5px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5em;
  }
  & p.texts {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.5em;
  }
}
select.select {
  height: 30px;
  width: 50px;
  border: 1px solid #c5c5c5;
  border-radius: 8px;
}
select.select:focus {
  outline: 2px solid #80cbc4;
}
select.select-wide {
  height: 30px;
  width: 100px;
  margin: 5px 10px;
  border: 2px solid #c5c5c5;
  border-radius: 8px;
}
select.select-wide:focus {
  outline: 2px solid #80cbc4;
}
.puzzleContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 455px;
  height: 455px;
  margin: 45px auto 0 auto;
  border: 1px solid #c5c5c5;
  background-color: white;
}
.puzzleContainer15 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 605px;
  height: 605px;
  margin: 45px auto 0 auto;
  border: 1px solid #c5c5c5;
  background-color: white;
}
.puzzleContainer-free {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 45px auto 0 auto;
  border: 1px solid #c5c5c5;
  background-color: white;
}
.tile-wrapperF {
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  padding: 1px;
}
.tileF {
  width: 100%;
  height: 100%;
  line-height: 95px;
  user-select: none;
  text-align: center;
  border: 1px solid #333;
  border-radius: 5px;
  font-size: 26px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
.tile-nF {
  background-color: #80cbc4;
}
.tile-noneF {
  background: white;
  border: none;
}
.disabled {
  pointer-events: none;
}
.tile-wrapper {
  width: 150px;
  height: 150px;
  box-sizing: border-box;
  padding-right: 1px;
  padding-bottom: 1px;
}
.tile {
  width: 100%;
  height: 100%;
  /* width: 150px;
  height: 150px; */
  line-height: 147px;
  /* box-sizing: border-box; */
  user-select: none;
  text-align: center;
  border: 1px solid #333;
  border-radius: 5px;
  font-size: 26px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
.congrats p {
  text-align: center;
  margin: 15px 0;
  font-size: 18px;
  font-weight: bold;
  color: red;
}
.clickCounter8 {
  width: 448px;
  color: #2c2c2c;
  font-weight: bold;
  margin: 0 auto;
  & p {
    margin: 0;
    font-size: 21px;
  }
}
.clickCounter15 {
  width: 598px;
  color: #2c2c2c;
  font-weight: bold;
  margin: 0 auto;
  & p {
    margin: 0;
    font-size: 21px;
  }
}

@media only screen and (max-width: 768px) {
  .sCon {
    justify-content: center;
    margin-bottom: 10px;
    & p.texts {
      font-size: 12.5px;
    }
  }
  select.select {
    text-align: center;
  }
  select.select-wide {
    text-align: center;
    font-size: 12.5px;
    margin: 5px;
  }
  .puzzleContainer {
    width: 230px;
    height: 230px;
    margin: 25px auto 0 auto;
  }
  .clickCounter8 {
    width: 225px;
    & p {
      font-size: 17.5px;
    }
  }
  .clickCounter15 {
    width: 300px;
    & p {
      font-size: 17.5px;
    }
  }

  .puzzleContainer15 {
    width: 305px;
    height: 305px;
    margin: 25px auto 0 auto;
  }

  .tile-wrapper {
    width: 75px;
    height: 75px;
  }
  .tile {
    line-height: 72px;
    font-size: 20px;
  }
  .tile-wrapperF {
    width: 50px;
    height: 50px;
  }
  .tileF {
    line-height: 45px;
    font-size: 20px;
  }
  .congrats p {
    font-size: 15px;
  }
  .reset {
    width: 230px !important;
    margin: 10px auto 30px auto !important;
    font-size: 14px !important;
  }
}
.tile-0 {
  background: #80cbc4;
}
.tile-1 {
  background: #80cbc4;
}
.tile-2 {
  background: #80cbc4;
}
.tile-3 {
  background: #80cbc4;
}
.tile-4 {
  background: #80cbc4;
}
.tile-5 {
  background: #80cbc4;
}
.tile-6 {
  background: #80cbc4;
}
.tile-7 {
  background: #80cbc4;
}
.tile-8 {
  background: #80cbc4;
}
.tile-9 {
  background: #80cbc4;
}
.tile-10 {
  background: #80cbc4;
}
.tile-11 {
  background: #80cbc4;
}
.tile-12 {
  background: #80cbc4;
}
.tile-13 {
  background: #80cbc4;
}
.tile-14 {
  background: #80cbc4;
}
.tile-15 {
  background: #80cbc4;
}
.tile-none {
  background: white;
  border: none;
}

.reset {
  display: block;
  width: 450px;
  color: white;
  text-align: center;
  cursor: pointer;
  background: #80cbc4;
  padding: 10px 0;
  border: none;
  border-radius: 15px;
  margin: 15px auto 45px auto;
  font-size: 16px;
}

/* 
*
*
UIセクション用 
*
*
*/
.UIBox {
  display: flex;
  flex-flow: row wrap;
  margin: 10px auto;
  width: 100%;
}
.UIContainer {
  display: flex;
  flex-direction: column;
  width: 310px;
  height: 310px;
  margin: 10px;
  border: 1px solid #dcdcdc;
  border-radius: 15px;
  background-color: white;
}
.UIContainer .header h4 {
  color: #2c2c2c;
  display: inline-block;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  margin: 0;
  padding: 20px 15px;
  border-bottom: 1px solid #dcdcdc;
}
.indexBox ul li.listItem {
  font-size: 17.5px;
}

/* -------------------------
スマホ
------------------------- */
@media only screen and (max-width: 768px) {
  .UIBox {
    flex-direction: column;
  }
  .UIContainer {
    width: 280px;
    height: 280px;
    margin: 10px auto;
  }
  .UIContainer .header h4 {
    font-size: 16.5px;
    padding: 16.5px 12px;
  }
  .indexBox ul li.listItem {
    font-size: 15px;
  }
}
/* -------------------------
音楽雑感用
------------------------- */
div.ytbcontainer {
  display: block;
  margin: 30px auto;
  width: 560px;
}
dl.music-info {
  width: 85%;
  padding: 5px 10px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  & .irows {
    display: flex;
    flex-direction: row;
    margin: 0;
    justify-content: left;
  }
  & dt {
    position: relative;
    display: inline-block;
    width: 200px;
    color: #2c2c2c;
    padding: 5px;
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    padding-right: 12px;
    line-height: 2em;
  }
  & dt::after {
    position: absolute;
    content: '';
    display: block;
    top: 20%;
    right: 0;
    height: 60%;
    width: 3px;
    background-color: #80cbc4;
  }
  & dd {
    padding: 5px;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    margin: 0;
    line-height: 2.4em;
  }
}
iframe.music {
  width: 560px;
  height: 315px;
}
@media only screen and (max-width: 768px) {
  div.ytbcontainer {
    display: block;
    margin: 30px auto;
    width: 100%;
  }
  dl.music-info {
    width: 100%;
    & .irows {
      flex-direction: column;
    }
    & dt {
      width: auto;
      text-align: left;
      font-size: 15px;
      margin-bottom: 10px;
      line-height: 1.5em;
      border-bottom: 2px solid #80cbc4;
    }
    & dt::after {
      display: none;
    }
    & dd {
      font-size: 13px;
      line-height: 1.5em;
    }
  }
  iframe.music {
    width: 100%;
    height: calc(width / 1.8);
  }
}
/* -------------------------------
キャンバス
------------------------------- */
canvas.canvas {
  height: 500px;
  width: 500px;
  margin: 0 auto;
  padding: 0;
  border: 2px solid #c5c5c5;
  background-color: white;
}
/* -------------------------------
Editable List
------------------------------- */
.myList {
  width: 90%;
  list-style-type: square !important;
  text-align: left;
  font-size: 20px;
  color: #2c2c2c;
  font-weight: bold;
  margin: 10px auto;
  & li {
    margin: 7.5px;
    padding: 4px 8px;
    padding-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .myList {
    width: 100%;
    font-size: 17px;
    & li {
      margin: 4px;
      padding: 2.5px 4px;
      padding-left: 0;
    }
  }
}
/* -------------------------------
Maze
------------------------------- */
.mazeDisplay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* width: 500px;
  height: 500px; */
  border: 2px solid #c5c5c5;
  background-color: white;
  margin: 0 auto;
}
.mazeRow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 15px;
}
.mazeCell {
  height: 100%;
  width: 15px;
  border: 1px dotted #c5c5c5;
}
.mazeWall {
  background-color: #80cbc4;
}
.mazeStart {
  background-color: #f8ae34;
}
.mazeGoal {
  background-color: #bf4040;
}
.mazeRoute {
  background-color: #ffe5e7; /*atoll*/
}

@media only screen and (max-width: 768px) {
  .mazeRow {
    height: 6.5px;
  }
  .mazeCell {
    width: 6.5px;
    border: none;
  }
}

/* -------------------------
Message
------------------------- */
span.green {
  background-color: #00a265; /*menthe*/
  color: white;
  font-weight: bold;
  padding: 5px 10px;
}
span.red {
  background-color: #ee432b; /*feu*/
  color: white;
  font-weight: bold;
  padding: 5px 10px;
}
.pic_container {
  width: 80%;
  height: auto;
  margin: 10px auto;
  background-color: #ddfdfa;
  & img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
.txt {
  display: block;
  width: 85%;
  height: auto;
  margin: 10px auto;
}
/* -------------------------
Table
------------------------- */
table {
  border-collapse: collapse;
  margin: 8px;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans', Meiryo, sans-serif !important;
  font-size: medium;
  text-align: center;
  align-self: start;
}
.table-wrap {
  overflow-x: auto;
}
.no-wrap {
  white-space: nowrap;
}
th,
td {
  padding: 5px;
  border: 1px dotted #a194a6;
}
.tableA td {
  background-color: white;
}
.tableA th {
  background-color: #80cbc4;
  color: white;
}
/* .tableA tr:nth-child(odd) {
  background-color: #ddfdfa !important;
} */
.tableContainer-cols {
  width: 100%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
h3.childLabel {
  color: #2e80f2;
  display: inline-block;
  width: 100%;
  padding: 5px 0;
  margin: 12px 0;
  margin-top: 20px;
  font-size: 21px;
}
span.note {
  color: #ee432b;
  font-weight: bold;
  vertical-align: super;
  font-size: 0.6em;
}
p.note {
  font-size: small;
  font-weight: bold;
  color: #ee432b; /*feu*/
  display: inline-block;
  width: 100%;
  margin: 2px 0;
}
p.forsmartphone {
  display: none;
  width: 100%;
  font-size: small;
  padding: 5px 12px;
}
span.emphasis {
  color: #ee432b;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  table {
    font-size: small;
    margin: 4px;
  }
  th,
  td {
    padding: 3px;
  }
  h3.childLabel {
    padding: 3px 0;
    margin: 8px 0;
    margin-top: 17px;
    font-size: 17.5px;
  }
  p.note {
    font-size: smaller;
    margin: 0.5px 0;
  }
  p.forsmartphone {
    display: inline-block;
  }
}
