/*各種申請用CSS*/

/* 全体*/
body {
  padding: 0px;
  font-size:14px;
  line-height:14px;
  margin-left: 30px;

  background-color: #9966cc;

  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";

}

/* 全体ここまで*/


/*コーナータイトル*/
.title{
  font-size:36px;
  margin-top:0px;
}
/*コーナータイトルここまで*/


/*テキストボックスに説明*/
.description {
  border: 1px solid #CCCCCC;
  padding: 5px;
  margin-top: 5px; 
}
.info{
  background-color: #FFFFFF;
  border-radius: 10px;
}
/*テキストボックスに説明ここまで*/


/*メニューボタン用*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 60%;
  height: 100%;
}

.btn,
a.btn,
button.btn {
  width:220px;
  height:48px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-border-shadow {
  padding: calc(2rem - 8px) 3rem 2rem;

  background: #fff;
}

a.btn-border-shadow:before {
  position: absolute;
  top: -6px;
  left: -6px;

  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;

  border: 3px solid #000;
  border-radius: 0.5rem;
}

a.btn-border-shadow:hover {
  padding: calc(1.5rem - 2px) 3rem;
}

a.btn-border-shadow:hover:before {
  top: 0;
  left: 0;
}


/*メニューボタン用ここまで*/

/*二重枠*/

.double_line {
  display: inline-block;
  position: absolute;
  padding: 18px;
  border: solid 4px #000000;
  font-size: 18px;
  border-radius: 0.5rem;
  width:660px;
  height:95%;
  top: 6px;
  left: 280px;
  bottom: -10px;
  right: -10px;
}
 
.double_line::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 280px;
  bottom: -10px;
  right: -10px;
  left: 6px;
  border: solid 4px #FFFFFF;
  background-color: #FFFFFF;
  z-index: -1;
  border-radius: 0.5rem;
  width:660px;
  margin: 0;
}

/*二重枠ここまで*/


