/* 三　ハンバーガーメニュー */
.h-menu
{
  position: fixed;
  top: 40px;
  right: 10px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;

  box-sizing: border-box;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 10px;
}

.h-menu span,
.h-menu span:before,
.h-menu span:after
{
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 2px;
  background-color: #000;
  position: absolute;
}
.h-menu span:before
{
  bottom: 10px;
}
.h-menu span:after
{
  top: 10px;
}
#h-menu-check:checked ~ .h-menu span
{
  color: #fff;
  background-color: #fff;
}
#h-menu-check:checked ~ .h-menu span::before
{
  bottom: 0;
  transform: rotate(45deg);
}
#h-menu-check:checked ~ .h-menu span::after
{
  top: 0;
  transform: rotate(-45deg);
}
#h-menu-check{
  display: none;
}

#h-menu-check:checked ~ .menu-content
{
  top: 0;
}

.menu-content
{
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 100%;
  z-index: 80;
  background-color: #333333;
  transition: all 1.5s;
}
.menu-content ul
{
  padding: 10% 30% 0 20%;
}
.menu-content ul li
{
  border-bottom: solid 1px #fff;
  list-style: none;
}
.menu-content ul li a
{
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before
{
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

/* LINE風 左 */
.talk_left{
  position: relative;
  padding: 20px;
  min-width: 120px;
  max-width: 80%;
  background-color: #ffffcc;
  color: #000;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  display: inline-block; 
  border-radius: 15px;
  border: solid 1px #000;
  box-sizing: border-box;
}

.talk_left:before{
  content: "";
  position: absolute;
  top: 12px;
  left: -14px;
  border-top: 7px solid #000;
  border-right: 7px solid #000;
  border-bottom: 7px solid transparent;
  border-left: 7px solid transparent;
}
.talk_left:after{
  content: "";
  position: absolute;
  top: 13px;
  left: -12px;
  border-top: 7px solid #ffffcc;
  border-right: 7px solid #ffffcc;
  border-bottom: 7px solid transparent;
  border-left: 7px solid transparent;
  z-index: 70;
}

/* LINE風 右 */
.talk_right{
  position: relative;
  padding: 20px;
  min-width: 120px;
  max-width: 80%;
  background-color: #ffffff;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  display: inline-block; 
  border-radius: 15px;
  border: solid 1px #000;
  box-sizing: border-box;
}

.talk_right:before{
  content: "";
  position: absolute;
  top: 12px;
  right: -14px;
  border-top: 7px solid #000;
  border-right: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #000;
}
.talk_right:after{
  content: "";
  position: absolute;
  top: 13px;
  right: -12px;
  border-top: 7px solid #ffffff;
  border-right: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #ffffff;
  z-index: 70;
}

/* TITLE 15丸 */
.titleR15w{
  position: relative;
  padding: 20px;
  min-width: 120px;
  max-width: 80%;
  background-color: #ffffff;
  color: #000;
  font-size: 25px;
  font-weight: bold;
  display: inline-block; 
  border-radius: 15px;
  border: solid 3px #000;
  box-sizing: border-box;
}
/* TITLE 5丸  */
.titleR5w{
  position: relative;
  padding: 10px;
  min-width: 120px;
  max-width: 90%;
  background-color: #ffffff;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  line-height: 30px;
  display: inline-block; 
  border-radius: 5px;
  border: solid 2px #000;
  box-sizing: border-box;
}

/* 四角いボタン*/
.btn-square {
  display: inline-block;
  padding: 1em 2em;
  font-weight: bold;
  font-size: 20px;
  background: #ffffff;
  color: #000;
  border-radius: 15px;
  border: solid 2px #000;
}
.btn-square:active {
  transform: translateY(5px);
  border-bottom: none;
}

/* blueボタン*/
.blue-button {
  display: inline-block;
  padding: 0.5em 1em;
  font-weight: bold;
  font-size: 20px;
  background: #0000ff;
  color: #fff;
  border-radius: 5px;
  border: solid 3px #000;
}
.blue-button:active {
  transform: translateY(5px);
  border-bottom: none;
}

input[type="number"],[type="text"] {
  width:100px;
  height:30px;
  font-size:20px;
}
