.cut1 {
  position: relative;
}


/* clip: rect( 右上Y, 右上X, 左下Y, 左下X ); */

.cut1 img {
  position: absolute;
  clip: rect(0px, 400px, 30px, 100px);
}


/*------------------------------------------------*/

.button_a1 {
  position: relative;
  width: 94%;
  z-index: 2;
  background-color: #333333;
  border: 2px solid #333333;
  color: #fff;
  line-height: 50px;
  padding-left: 8px;
}

.button_a1:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}

.button_a1::before, .button_a1::after {
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
}

.button_a1::before {
  right: 0;
}

.button_a1::after {
  left: 0;
}

.button_a1:hover::before, .button_a1:hover::after {
  width: 0;
  background-color: #59b1eb;
}


/*------------------------------------------------*/

.button_a2 {
  position: relative;
  width: 96%;
  z-index: 2;
  background-color: #7B3CFF;
  border: 2px solid #7B3CFF;
  color: #fff;
  line-height: 40px;
  padding-left: 8px;
}

.button_a2:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #7B3CFF;
}

.button_a2::before, .button_a2::after {
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #7B3CFF;
}

.button_a2::before {
  right: 0;
}

.button_a2::after {
  left: 0;
}

.button_a2:hover::before, .button_a2:hover::after {
  width: 0;
  background-color: #59b1eb;
}


/*------------------------------------------------*/

.button_a3 {
  position: relative;
  width: 96%;
  z-index: 2;
  background-color: #FF773E;
  border: 2px solid #FF773E;
  color: #fff;
  line-height: 40px;
  padding-left: 8px;
}

.button_a3:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #FF773E;
}

.button_a3::before, .button_a3::after {
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #FF773E;
}

.button_a3::before {
  right: 0;
}

.button_a3::after {
  left: 0;
}

.button_a3:hover::before, .button_a3:hover::after {
  width: 0;
  background-color: #59b1eb;
}


/*----------------fura fura neko mado-------------*/


/*------------------------------------------------*/


/*base code*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}


/*the animation definition*/

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
  }
  100% {
    -webkit-transform: none;
    transform: none
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble
}


/*----------------fura fura neko mado-------------*/


/*----------------end-----------------------------*/

.container_bgm {
  width: 100%;
  margin: 15px 0;
  position: relative;
  background-color: rgba(255, 0, 0, .2);
  border-radius: 4px;
  color: #f00;
  box-shadow: 0 3px 3px rgba(0, 0, 0, .2), inset 0 1px 1px rgba(255, 0, 0, .7);
  text-shadow: 0px 1px 0px rgba(0, 0, 0, .4);
}

.track-name {
  margin: 4px;
  color: #fff;
  font-size: 15px;
  padding: 1px 0;
  font-weight: bold;
  line-height: 20px;
  -webkit-transition: all 0.3s ease;
  -webkit-transition-delay: 0s;
  transition: all 0.3s ease 0s;
}

.track-name.active {
  color: #FFFF99;
}

#bgm {
  margin: 10px;
  font-size: 14px;
  display: inline-block;
  border-radius: 20px;
  background: #ffffff;
  padding: 10px;
  cursor: pointer;
}


/* ---------------------------------------- */


/* ---------------------------------------- */

.x1button {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 6px 10px;
  font-size: 18px;
  border-radius: 10px;
  background-color: #666666;
  box-shadow: 0 5px 5px #313131, 0 9px 0 #393939, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
}

.xbutton:hover {
  box-shadow: 0 5px 5px #313131, 0 9px 0 #393939, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 15px rgba(255, 255, 255, 0.4), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
  color: #fff!important;
}

.xbutton:active {
  top: 7px;
  box-shadow: 0 2px 0 #393939, 0px 4px 4px rgba(0, 0, 0, 0.4), inset 0px 2px 5px rgba(0, 0, 0, 0.2);
  color: #fff !important;
}

.shield {
  border-radius: 5px 5px 35px 35px;
  padding-left: 25px;
  padding-right: 25px;
}

.criss-cross {
  border-radius: 35px 5px;
}

.rectangular {
  border-radius: 10px / 35px;
}

.one-corner {
  border-radius: 5px 5px 35px 5px;
  padding-right: 25px;
}

.shop-corner {
  border-radius: 45px 5px 45px 45px;
  padding-left: 35px;
  padding-right: 35px;
}

.red {
  background-color: #c34747;
  box-shadow: 0 5px 5px #853232, 0 9px 0 #5e2525, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.red:hover {
  box-shadow: 0 5px 5px #853232, 0 9px 0 #5e2525, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 15px rgba(255, 255, 255, 0.4), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.red:active {
  box-shadow: 0 2px 0 #5e2525, 0px 4px 4px rgba(0, 0, 0, 0.4), inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.orange {
  background-color: #c37846;
  box-shadow: 0 5px 5px #855031, 0 9px 0 #5e3a25, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.orange:hover {
  box-shadow: 0 5px 5px #855031, 0 9px 0 #5e3a25, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 15px rgba(255, 255, 255, 0.4), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.orange:active {
  box-shadow: 0 2px 0 #5e3a25, 0px 4px 4px rgba(0, 0, 0, 0.4), inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.green {
  background-color: #7fc345;
  box-shadow: 0 5px 5px #508530, 0 9px 0 #385e25, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.green:hover {
  box-shadow: 0 5px 5px #508530, 0 9px 0 #385e25, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 15px rgba(255, 255, 255, 0.4), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.green:active {
  box-shadow: 0 2px 0 #385e25, 0px 4px 4px rgba(0, 0, 0, 0.4), inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.pink {
  box-shadow: 0 5px 5px #782d54, 0 9px 0 #5e254c, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
  background-color: #d7298b;
}

.pink:hover {
  box-shadow: 0 5px 5px #782d54, 0 9px 0 #5e254c, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 15px rgba(255, 255, 255, 0.4), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.pink:active {
  box-shadow: 0 2px 0 #5e254c, 0px 4px 4px rgba(0, 0, 0, 0.3), inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.blue {
  background: #2a8ad8;
  box-shadow: 0 5px 5px #364a8e, 0 9px 0 #25325e, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.blue:hover {
  box-shadow: 0 5px 5px #364a8e, 0 9px 0 #25325e, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 15px rgba(255, 255, 255, 0.4), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.blue:active {
  box-shadow: 0 2px 0 #25325e, 0px 4px 4px rgba(0, 0, 0, 0.3), inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.purple {
  background-color: #8a26d3;
  box-shadow: 0 5px 5px #54307b, 0 9px 0 #3f255e, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.purple:hover {
  box-shadow: 0 5px 5px #54307b, 0 9px 0 #3f255e, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 15px rgba(255, 255, 255, 0.4), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.purple:active {
  box-shadow: 0 2px 0 #42255e, 0px 4px 4px rgba(0, 0, 0, 0.3), inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.koncolor {
  background-color: #2a268a;
  box-shadow: 0 5px 5px #54307b, 0 9px 0 #3f255e, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.koncolor:hover {
  box-shadow: 0 5px 5px #54307b, 0 9px 0 #3f255e, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 15px rgba(255, 255, 255, 0.4), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.koncolor:active {
  box-shadow: 0 2px 0 #42255e, 0px 4px 4px rgba(0, 0, 0, 0.3), inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.moscolor {
  background-color: #aaa4e0;
  box-shadow: 0 5px 5px #54307b, 0 9px 0 #3f255e, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.moscolor:hover {
  box-shadow: 0 5px 5px #54307b, 0 9px 0 #3f255e, 0px 9px 10px rgba(0, 0, 0, 0.4), inset 0px 2px 15px rgba(255, 255, 255, 0.4), inset 0 -2px 9px rgba(0, 0, 0, 0.2);
}

.moscolor:active {
  box-shadow: 0 2px 0 #42255e, 0px 4px 4px rgba(0, 0, 0, 0.3), inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}


/* ---------------------------------------- */


/* ---------------------------------------- */

.bt-samp54 {
  display: block;
  text-decoration: none;
  position: relative;
  width: 172px;
  height: 172px;
}

.bt-samp54:before {
  content: "";
  position: absolute;
  top: -10px;
  right: -25px;
  border-radius: 10px;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.5), inset 0 -1px 3px rgba(0, 0, 0, 0.2);
  width: 20px;
  height: 20px;
  background: #acd373;
  z-index: 10;
}

.bt-samp54 div {
  position: absolute;
  top: 0;
  border-radius: 90px 0 90px 0px / 90px 0 90px 0px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1), inset 0 0 40px 15px #fff;
  position: absolute;
  height: 172px;
  width: 172px;
  display: block;
  border: 10px solid #d1eaac;
  background: #e1f1c9;
  color: #acd373;
  -webkit-transform-origin: 97% 0;
  transform-origin: 97% 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.bt-samp54:hover div {
  -webkit-transform: rotate(65deg);
  transform: rotate(65deg);
  z-index: 5;
}


.bt-samp54 div i {
  position: absolute;
  top: 35%;
  left: 0;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.bt-samp54 div span {
  position: absolute;
  top: 65%;
  left: 0;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.bt-samp54 p {
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
  width: 112px;
  height: 96px;
  padding: 60px 30px 20px;
  background: #bfe289;
  border: 10px solid #fff;
  border-radius: 90px 0 90px 0px / 90px 0 90px 0px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}


/* ---------------------------------------- */


/* ---------------------------------------- */

.mytbl1 {
  background-image: url(../gif_5/HT/HT_N1234/IV0004.jpg);
}

.readmore {
  position: relative;
  box-sizing: border-box;
  /*以下お好み*/
  /* ボーダーを付ける場合 */
  padding: 10px;
  border: 1px solid #CCC;
  //    background-image: url(../image_1/0011.jpg);
}

.readmore-content {
  position: relative;
  overflow: hidden;
  /*以下お好み*/
  /*高さの初期値*/
  height: 100px;
}

.readmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
  height: 50px;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
}


/* 続きを読むボタン */

.readmore-label {
  display: table;
  bottom: 5px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
  padding: 0 20px;
  background-color: #ff7777;
  border-radius: 10px;
  color: #FFF;
}

.readmore-label:before {
  content: '　続きを読む';
}

.readmore-check {
  display: none;
}


/*チェック時にボタンを非表示*/

.readmore-check:checked~.readmore-label {
  position: static;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
  /* display: none; */
}

.readmore-check:checked~.readmore-label:before {
  content: '　閉じる';
}


/*チェック時に高さを自動に戻す*/

.readmore-check:checked~.readmore-content {
  height: auto;
}


/*チェック時グラデーション等を削除*/

.readmore-check:checked~.readmore-content::before {
  display: none;
}


/* --------スイッチボタン------------------ */


/* ---------------------------------------- */

.switch__label {
  width: 50px;
  position: relative;
  display: inline-block;
}

.switch__content {
  display: block;
  cursor: pointer;
  position: relative;
  border-radius: 30px;
  height: 31px;
  overflow: hidden;
}

.switch__content:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  top: 0;
  left: 0;
  border: 1.5px solid #E5E5EA;
  border-radius: 30px;
  background-color: #fff;
}

.switch__content:after {
  content: "";
  display: block;
  position: absolute;
  background-color: transparent;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  border-radius: 30px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.switch__input {
  display: none;
}

.switch__circle {
  display: block;
  top: 2px;
  left: 2px;
  position: absolute;
  -webkit-box-shadow: 0 2px 6px #999;
  box-shadow: 0 2px 6px #999;
  width: 27px;
  height: 27px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.switch__input:checked~.switch__circle {
  left: 21px;
}

.switch__input:checked~.switch__content:after {
  background-color: #4BD964;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ---------------------------------------- */


/* ---------------------------------------- */

.box_srcollbar {
  width: 100%;
  height: 70px;
  padding: 10px 4px;
  border: 1px solid #000;
  border-color: #f5fff5;
  background-color: #F9F9F9;
  color: #000;
  font-family: 'ＭＳ ゴシック', 'MS Gothic', 'Osaka−等幅', Osaka-mono, monospace;
  font-size: 14px;
  white-space: pre;
  overflow:scroll;
}

.box_srcollbar1 {
  width: 100%;
  height: 160px;
  padding: 10px 4px;

  border:none;
  overflow: hidden;
  resize: none;

  background:#f5f5dc;
  color: #000;
  line-height: 1.2em; 
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 16px;
}

.box_srcollbar1_1 {
  width: 100%;
  height: 60px;
  padding: 10px 4px;

  border:none;
  overflow: hidden;
  resize: none;

  color: #000;
  line-height: 1.2em; 
  font-family: 'ＭＳ ゴシック', 'MS Gothic', 'Osaka−等幅', Osaka-mono, monospace;
  font-size: 14px;
}

.box_srcollbar1_2 {
  width: 100%;
  height: 60em;
  box-sizing: border-box;

  padding: 10px 10px;
  border-color: #f5f5dc;
  border:solid 1px #87CEFA;
  background-color: #f5f5dc;
  color: #000;
  font-family: 'ＭＳ ゴシック', 'MS Gothic', 'Osaka−等幅', Osaka-mono, monospace;
  font-size: 10px;
  white-space: pre;
}

.box_srcollbar1_2a{
  width: 100%;
  height: 44em;
  box-sizing: border-box;

  padding: 10px 10px;
  border-color: #f5f5dc;
  border:solid 1px #87CEFA;
  background-color: #f5f5dc;
  color: #000;
  font-family: 'BIZ UDゴシック';
  font-size: 14px;
  white-space: pre;
}

.box_srcollbar1_3 {
  width: 100%;
  height: 44em;
  padding: 10px 10px;
  border-color: #f5f5dc;
  border:solid 1px #87CEFA;
  background-color: #f5f5dc;
  color: #000;
  font-family: 'ＭＳ ゴシック', 'MS Gothic', 'Osaka−等幅', Osaka-mono, monospace;
  font-size: 14px;
  white-space: pre;
}

.box_srcollbar1_4 {
  width: 100%;
  height: 110px;
  padding: 10px 4px;

  border: 1px solid #000;
  border-color: #f5f5dc;
  background-color: #f5f5dc;

  color: #000;
  line-height: 1.2em;
  font-size: 16px;
}

.box_srcollbar2 {
  width: 100%;
  height: 340px;
  padding: 10px 4px;
  border: 1px solid #000;
  border-color: #f5fff5;
  background-color: #ffffff;

  color: #667;
  line-height: 1.2em;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
}

.box_srcollbar2_1 {
  width: 100%;
  height: 340px;
  padding: 8px 4px;
  border: 1px solid #000;
  border-color: #f5fff5;
  background-color: #191970;

  color: #f0f8ff;
  line-height: 1.2em;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
}

.box_srcollbar3 {
  width: 100%;
  height: 60em;
  padding: 10px 10px;
  border-color: #f5fff5;
  border:solid 1px #87CEFA;
  background-color: #ffffff;
  color: #000;
  font-family: 'ＭＳ ゴシック', 'MS Gothic', 'Osaka−等幅', Osaka-mono, monospace;
  font-size: 10px;
  white-space: pre;
}


.box_srcollbar3a {
  width: 100%;
  height: 616px;
  padding: 10px 10px;
  border: 1px solid #000;
  border-color: #f5fff5;
  background-color: #ffffff;
  color: #000;
  font-family: 'BIZ UDゴシック';
  font-size: 14px;
  white-space: pre;
}

.box_srcollbar4 {
  width: 100%;
  height: 60em;
  padding: 10px 10px;
  border: 1px solid #000;
  border-color: #f5fff5;
  background-color: #ffffff;
  color: #000;
  font-family: 'ＭＳ ゴシック', 'MS Gothic', 'Osaka−等幅', Osaka-mono, monospace;
  font-size: 10px;
  white-space: pre;
}

.box_srcollbar4a {
  width: 100%;
  height: 654px;
  padding: 10px 10px;
  border: 1px solid #000;
  border-color: #f5fff5;
  background-color: #ffffff;
  color: #000;
  font-family: 'BIZ UDゴシック';
  font-size: 14px;
  white-space: pre;
}

.box_srcollbar5 {
  width: 100%;
  height: 500px;
  padding: 10px 10px;
  border: 1px solid #000;
  border-color: #f5fff5;
  background-color: #ffffff;
  color: #000;
  font-family: 'BIZ UDゴシック';
  font-size: 12px;
  white-space: pre;
}

.box_srcollbar5a {
  width: 100%;
  height: 600px;
  padding: 10px 10px;
  border: 1px solid #000;
  border-color: #f5fff5;
  background-color: #ffffff;
  color: #000;
  font-family: 'ＭＳ ゴシック', 'MS Gothic', 'Osaka−等幅', Osaka-mono, monospace;
  font-size: 14px;
  white-space: pre;
}

.box_srcollbar_1 {
  width: 100%;
  height: calc( 1.3em * 41);
  line-height: 1.3;
  padding: 10px 0px 4px 10px;
  border: 1px solid #000;
  border-color: #f5fff5;
  background-color: #ffffff;
  color: #000;
  font-family: 'ＭＳ ゴシック', 'MS Gothic', 'Osaka−等幅', Osaka-mono, monospace;
  font-size: 12px;
  white-space: pre;
}

div#tmp2nd {
  display: inline-block;
  _display: inline;
}

.filelabel {
  background-color: #f5fff5;
  right: 0;
  font-size: 130px;
  color: white;
  /* 文字色 */
  border: 2px solid orange;
  /* 枠線 */
  border-radius: 2em;
  /* 角丸 */
  padding: 6px 6px;
  /* 内側の余白 */
  display: inline-block;
  /* インラインブロック化 */
}

.filelabel img {
  vertical-align: bottom;
  /* 画像の垂直方向の配置 */
}

.filelabel:hover {
  opacity: 0.5;
  /* 半透明 */
  border: 2px solid red;
  /* 枠線(赤色) */
  cursor: pointer;
  /* マウス形状(ポインタ) */
}

#Cal_in {
  display: none;
  /* 本来のファイル選択フォームは非表示に */
}

.box1 {
  width: 300px;
  height: 300px;
  border-radius: 5px;
  box-shadow: 0 2px 30px rgba(black, .2);
  background: lighten(#f0f4c3, 10%);
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.wave1 {
  opacity: .4;
  position: absolute;
  top: 3%;
  left: 50%;
  background: #0af;
  width: 500px;
  height: 500px;
  margin-left: -250px;
  margin-top: -250px;
  transform-origin: 50% 48%;
  border-radius: 43%;
  animation: drift 3000ms infinite linear;
}

.wave1.-three {
  animation: drift 5000ms infinite linear;
}

.wave1.-two {
  animation: drift 7000ms infinite linear;
  opacity: .1;
  background: yellow;
}

.box1:after {
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(#e8a, 1), rgba(#def, 0) 80%, rgba(white, .5));
  z-index: 11;
  transform: translate3d(0, 0, 0);
}

.title1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  line-height: 300px;
  text-align: center;
  transform: translate3d(0, 0, 0);
  color: white;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
  letter-spacing: .4em;
  font-size: 24px;
  text-shadow: 0 1px 0 rgba(black, .1);
  text-indent: .3em;
}

@keyframes drift {
  from {
    transform: rotate(0deg);
  }
  from {
    transform: rotate(360deg);
  }
}

.main .item-frame {
  margin: 1rem auto;
}

.main .text {
  vertical-align: middle;
}

.main label {
  cursor: pointer;
}

.main .switch {
  position: relative;
}

.main .switch:before, .main .switch:after {
  content: '';
  vertical-align: middle;
  display: inline-block;
}

.main .switch:before {
  width: 2em;
  height: 1em;
  border: 2px solid #C4C9FF;
  border-radius: 32px;
  background: #999;
}

.main .switch:after {
  position: relative;
  width: 1em;
  height: 1em;
  background: #C4C9FF;
  border-radius: 50%;
  left: -2.2em;
}

.main input {
  display: none;
}

.main input:checked~.switch:before {
  background: #00b715;
  border-color: #84ff92;
}

.main input:checked~.switch:after {
  background: #84ff92;
  left: -1.1em;
}

.haibun .item-frame {
  margin: 1rem auto;
}

.haibun .text {
  vertical-align: middle;
}

.haibun label {
  cursor: pointer;
}

.haibun .switch {
  position: relative;
}

.haibun .switch:before, .haibun .switch:after {
  content: '';
  vertical-align: middle;
  display: inline-block;
}

.haibun .switch:before {
  width: 2em;
  height: 1em;
  border: 2px solid #C4C9FF;
  border-radius: 32px;
  background: #999;
}

.haibun .switch:after {
  position: relative;
  width: 1em;
  height: 1em;
  background: #C4C9FF;
  border-radius: 50%;
  left: -2.2em;
}

.haibun input {
  display: none;
}

.haibun input:checked~.switch:before {
  background: #ff8c00;
  border-color: #d2b48c;
}

.haibun input:checked~.switch:after {
  background: #fffff0;
  left: -1.1em;
}


/* 時計本体 */

#clock2 {
  margin: 40px auto;
  max-width: 700px;
  /* 幅のレスポンシブ対応 、height 値は JavaScript で決める*/
  position: relative;
}


/* 秒針 */

#second-hand2 {
  animation: rotation-s2 60s linear infinite;
  /* 60秒かけて一周 */
  background-color: #999;
  border-radius: 2px;
  height: 4px;
  /* 線幅 */
  position: absolute;
  right: calc(50% - 2px);
  /* 位置調整 線幅の半分ずらす */
  top: calc(50% - 2px);
  /* 位置調整 線幅の半分ずらす */
  transform-origin: calc(100% - 2px) center;
  /* アニメーションの中心軸 線幅の半分ずらす */
  width: 50%;
}


/* 分針 */

#minute-hand2 {
  animation: rotation-m2 3600s linear infinite;
  /* 3600秒、1時間かけて一周 */
  background-color: #000;
  border-radius: 5px;
  height: 10px;
  /* 線幅 */
  position: absolute;
  right: calc(50% - 5px);
  /* 位置調整 線幅の半分ずらす */
  top: calc(50% - 5px);
  /* 位置調整 線幅の半分ずらす */
  transform-origin: calc(100% - 5px) center;
  /* アニメーションの中心軸 線幅の半分ずらす */
  width: 40%;
}


/* 時針 */

#hour-hand2 {
  animation: rotation-h2 86400s linear infinite;
  /* 86400秒、12時間かけて一周 */
  background-color: #cc3b3b;
  border-radius: 5px;
  height: 10px;
  /* 線幅 */
  position: absolute;
  right: calc(50% - 5px);
  /* 位置調整 線幅の半分ずらす */
  top: calc(50% - 5px);
  /* 位置調整 線幅の半分ずらす */
  transform-origin: calc(100% - 5px) center;
  /* アニメーションの中心軸 線幅の半分ずらす */
  width: 25%;
}

.hover-red:hover {
  color: red;
}

canvas {
    top: 20px;
    left: 20px;
}ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
li {
    cursor:pointer;
    cursor:hand;
    width: 26px;
    height: 16px;
}


/*
<div class="balloonoya">マウスを乗せてください
  <span class="balloon">吹き出しが表示される></span>
</div>
*/


.balloonoya {
  position   : relative;                /* 指定した分だけ相対的に移動 */
}
.balloonoya:hover .balloon {
  display: inline;                /* インライン要素として表示 */
}
.balloon {
  position   : absolute;                /* 親要素を基準 */
  display: none;                        /* 要素を非表示 */
  padding: 2px;                         /* テキストの前後の余白 */
  background-color: rgba(102, 102, 255, 0.39);       /* 背景色（透明度） */
  width:180px;                          /* 吹き出し全体の幅 */
  left : 30%;                           /* 表示位置 */
  top : 100%;                           /* 表示位置 */
  margin-top : 12px;                    /* 表示位置 */
  font-size: 80%;                       /* 文字サイズ */
}
.balloon:after{
  border-bottom: 12px solid rgba(102, 102, 255, 0.39); /* 吹き出し口の高さ・色 */
  border-left: 10px solid transparent;    /* 吹き出し口の幅１／２ */
  border-right: 10px solid transparent;   /* 吹き出し口の幅１／２ */
  top: -12px;                             /* 吹き出し口の位置調整 */
  left : 5%;                              /* 吹き出し口の横位置 */
  content: "";                       /* コンテンツの挿入 */
  position: absolute;                /* 親要素を基準 */
}

.hover-green {
 max-height: 7em;
 margin-bottom: 1em;
 overflow-y: auto;
 width: 100px
}
.hover-green:hover {
  color: green;
}


.hover-royalblue {
 max-height: 7em;
 margin-bottom: 1em;
 overflow-y: auto;
 width: 100px;
}
.hover-royalblue:hover {
  color: royalblue;
}


.hover-orange {
 max-height: 7em;
 margin-bottom: 1em;
 overflow-y: auto;
 width: 100px;
}
.hover-orange:hover {
  color: orange;
}

input[type="text"] {
  border: 1px solid #999;
}
input[type="text"]:focus {
  border: 1px solid #ff9900;
  outline: 0;
}
