* {
  box-sizing: border-box;
  /* -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; */
}
html {
  font-family: sans-serif;
  font-size: calc(84vw / 60);
  color: #333;
}
body {
  margin: 0;
}
header {
  position: fixed;
  top: 0;
  left: 8%;
  height: 4rem;
  width: 84%;
}
.fz1 {
  font-size: calc(84vw / 60);
}
.fz2 {
  font-size: calc(84vw / 50);
}
.fz3 {
  font-size: calc(84vw / 40);
}

.container {
  margin-top: 4rem;
  width: 84%;
  margin-left: 8%;
}
.container-kanri {
  margin-top: 4rem;
  width: 84%;
  margin-left: 8%;
}
.stepbox {
  width: 100%;
  height: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.stepbox img {
  display: block;
  width: 17%;
}
.title {
  text-align: center;
  margin-top: 3rem;
}
.title2 {
  text-align: center;
  margin-top: 7rem; 
}

section {
  margin: 1rem 0;
}
table {
  width: 90%;
  border-collapse: collapse;
  border: 1px solid #555;
  margin: 10px 5%;
  table-layout: fixed;
}
tr:nth-child(2n) {
  background-color: #fffffa;
}
th {
  border: 1px solid #555;
  text-align: center;
  background-color: #4682ca;
  color: white;
  /* height: calc(0.03 * 84vw); */
}
td {
  border: 1px solid #555;
  /* height: calc(0.03 * 84vw); */
  padding-left: 0.5rem;
}
table.bnone {
  border: none;
}
table.bnone tr {
  border: none;
}
table.bnone th,
table.bnone td {
  border: none;
}
a.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 120px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  background: #27acd9;
  border: 6px outset #1699c5;
  color: #fff;
  transition: 0.5s;
}
a.btn_:hover {
  background: #44c6f2;
  border: 6px outset #27acd9;
  color: #fff;
}
.flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.large-box {
  width: 100%;
}
.left-box,
.right-box {
  width: 50%;
}
.box {
  appearance: none;
  outline: none;
  border: none;
  display: block; /*inputなどのインライン用*/
  height: 3rem;
  border-radius: 0.4rem;
  text-align: center;
  color: white;
  line-height: 3rem;
  margin: 1rem auto;
  box-shadow: 0.1rem 0.1rem 0 #555, inset 0.1rem 0.1rem 0 #DDD;
  
}
.sbox {
  height: 2rem;
  border-radius: 0.4rem;
  text-align: center;
  color: white;
  line-height: 2rem;
  margin: 0.5rem 0;
  box-shadow: 0.1rem 0.1rem 0 #555, inset 0.1rem 0.1rem 0 #DDD;
}
.lbox {
  height: 3rem;
  border-radius: 0.4rem;
  text-align: center;
  color: white;
  line-height: 3rem;
  margin: 1rem auto 1rem 0;
  box-shadow: 0.1rem 0.1rem 0 #555, inset 0.1rem 0.1rem 0 #FFF;
}
.w1 {
  width: 10%;
}
.w2 {
  width: 20%;
}
.w3 {
  width: 30%;
}
.w4 {
  width: 40%;
}
.w5 {
  width: 50%;
}
.w6 {
  width: 60%;
}
.w7 {
  width: 70%;
}
.w8 {
  width: 80%;
}
.w9 {
  width: 90%;
  margin: 5%;
}
.w10 {
  width: 100%;
}
.pointer {
  cursor: pointer;
}
.green {
  background-color: #2de32d;
}
.pink {
  background-color: #e578e1;
}
.orange {
  background-color: #f1af3e;
}
.darkgreen {
  color: #006400;
}
.red {
  color: red;
}
.blue {
  color: blue;
}
.lightgreen {
  background-color: #f3f9e3;
}
.t-right {
  text-align: right;
  padding-right: 0.5rem;
}
.input-type1 {
  height: 2rem;
  border: 1px solid #333;
  line-height: 2rem;
  margin: 0.2rem 0.5rem;
  color: #333;
  font-size: 1.2rem;
  padding: 0.1rem 0.5rem;

}
.input-type2 {
  height: 100%;
  width: 100%;
  border: none;
  line-height: 2rem;
  vertical-align: middle;
  color: #333;
  font-size: 1.2rem;
  padding: 0.1rem 0.5rem;
}
.menuName {
  word-break: break-word;
}
.error {
  font-size: 0.8rem;
  color: red;
  display: none;
}
.comment {
  font-size: 0.6rem;
}
.center {
  text-align: center;
}
.div-center {
  margin: 0 auto;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.pcflex {
  display: flex;
}
.spflex {
  display: none;
}

@media screen and (max-width: 1025px) {
  header {
    height: 6rem;
    left: 0;
    width: 100%;
  }
  .container {
    width: 98%;
    margin-top: 5rem;
    margin-left: 1%;
  }
  .container-kanri {
    width: 96%;
    margin-top: 5rem;
    margin-left: 2%;
  }
  html {
    font-size: calc(84vw / 30);
  }
  .stepbox img {
    width: 20%;
  }
  .fz1 {
    font-size: calc(84vw / 30);
  }
  .fz2 {
    font-size: calc(84vw / 24);
  }
  .fz3 {
    font-size: calc(84vw / 20);
  }
  .pc {
    display: none;
  }
  .pcflex {
    display: none;
  }
  .sp {
    display: block;
  }
  .spflex {
    display: flex;
  }
  }

