@charset "UTF-8";
/* ----------------------------------------------------
	sassを使用しています。css編集の際はご注意ください。
	compass/scss
---------------------------------------------------- */
/* ----------------------------------------------------
base
---------------------------------------------------- */
html, body {
  padding: 0;
  margin: 0;
  font-family: "メイリオ", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.8px;
  color: #333;
  height: 100%;
  background: #f0f0f0;
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

ul {
  list-style: none;
  box-sizing: border-box;
}
ul li {
  box-sizing: border-box;
}

/* ----------------------------------------------------
link
---------------------------------------------------- */
a {
  color: #333;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
a:visited {
  text-decoration: none;
  color: #333;
}
a:hover {
  color: #333;
}
a:hover img {
  opacity: 0.6;
  transition: 0.2s;
}
a:active {
  color: #333;
}

/* ----------------------------------------------------
input
---------------------------------------------------- */
input[type="text"],
input[type="submit"],
select {
  border: 0;
  background: none;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 1px;
  box-sizing: border-box;
}

/* ----------------------------------------------------
.fixed
---------------------------------------------------- */
.fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------
.loginWrap
---------------------------------------------------- */
.loginWrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loginWrap div.login {
  width: 500px;
}
@media (max-width: 768px) {
  .loginWrap div.login-input {
    padding: 0 20px;
  }
}
.loginWrap p.title {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.loginWrap p.title span {
  display: inline-block;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .loginWrap p.title span {
    display: block;
    margin-left: 0;
  }
}
.loginWrap p.pass {
  margin-top: 20px;
  text-align: center;
}
.loginWrap p.pass a {
  text-decoration: underline;
}
.loginWrap p.pass a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}
.loginWrap p.pass:before {
  content: "\e887";
  font-family: "Material Icons";
  color: #666;
  font-size: 16px;
  position: relative;
  top: 2px;
}
.loginWrap input.input-id, .loginWrap input.input-pass {
  padding: 16px;
  margin-bottom: 4px;
  width: 100%;
  font-size: 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.loginWrap input.loginbtn {
  padding: 16px 0 14px 0;
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  width: 100%;
  cursor: pointer;
  background: #fdc44f;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
}
.loginWrap input.loginbtn:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/* ----------------------------------------------------
header
---------------------------------------------------- */
header {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 768px) {
  header {
    padding: 10px 15px;
    flex-wrap: wrap;
  }
}
header h1 {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
header div.userbox {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header div.userbox {
    flex-wrap: wrap;
  }
}
header p.username {
  margin-right: 30px;
  font-weight: bold;
}
@media (max-width: 768px) {
  header p.username {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  header p.logout {
    display: flex;
    align-items: center;
    font-size: 13px;
  }
}
header p.logout a {
  padding: 8px 16px 6px 16px;
  color: #fff;
  font-weight: bold;
  background: #fdc44f;
  border-radius: 3px;
}
header p.logout a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}
@media (max-width: 768px) {
  header p.logout a {
    padding: 6px 16px;
  }
}

/* ----------------------------------------------------
nav
---------------------------------------------------- */
nav {
  background: #e4e4e4;
}
nav ul {
  display: flex;
}
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
  }
}
nav ul li {
  font-weight: bold;
  border-right: 1px solid #ccc;
}
@media (max-width: 768px) {
  nav ul li {
    font-size: 13px;
    text-align: center;
  }
  nav ul li:last-child {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 0;
  }
}
nav ul li a {
  padding: 10px 20px;
  display: block;
}
nav ul li a:hover {
  background: #e8e8e8;
}
@media (max-width: 768px) {
  nav ul li a {
    padding: 6px 10px;
  }
}

/* ----------------------------------------------------
#mainContents
---------------------------------------------------- */
#mainContents {
  padding: 100px 0;
  margin: 0 auto;
  width: 1200px;
}
@media (max-width: 1200px) {
  #mainContents {
    padding: 100px 20px;
    width:100%;
  }
}
@media (max-width: 768px) {
  #mainContents {
    padding: 50px 20px;
  }
}
#mainContents.application {
  padding: 60px 0;
}
@media (max-width: 768px) {
  #mainContents.application {
    padding: 50px 20px;
  }
}
#mainContents.wide {
  padding: 60px 0;
  width: 86%;
}
@media (max-width: 1440px) {
  #mainContents.wide {
    padding: 50px 20px;
    width: auto;
  }
}
#mainContents h2 {
  padding: 0 8px 10px 8px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
}
#mainContents h3 {
  padding: 2px 0 0 14px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: bold;
  border-left: 6px solid #ccc;
}
@media (max-width: 768px) {
  #mainContents h3 {
    padding: 2px 14px;
  }
}
#mainContents p + .appformWrap {
  margin-top: 20px;
}
@media (max-width: 768px) {
  #mainContents p + .appformWrap {
    margin-top: 10px;
  }
}

/* ----------------------------------------------------
.menuWrap
---------------------------------------------------- */
.menuWrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .menuWrap {
    flex-wrap: wrap;
  }
}
.menuWrap div.menu {
  margin-bottom: 50px;
  width: 48%;
}
@media (max-width: 768px) {
  .menuWrap div.menu {
    margin-bottom: 25px;
    width: 100%;
  }
}
.menuWrap div.btn {
  margin-bottom: 20px;
  height: 100px;
  font-size: 16px;
  font-weight: bold;
}
.menuWrap div.btn a {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
  background: #fcfcfc;
  border-radius: 3px;
  border: 1px solid #e8e8e8;
}
.menuWrap div.btn a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/* ----------------------------------------------------
.listWrap
---------------------------------------------------- */
/* ----------------------------------------------------
table
---------------------------------------------------- */
table {
  width: 100%;
}
@media (max-width: 768px) {
  table {
    font-size: 13px;
  }
}
table.tableList01 {
  border-collapse: collapse;
  border: 0;
}
table.tableList01:not(:first-child) thead {
  display: none;
}
@media (max-width: 768px) {
  table.tableList01:not(:first-child) thead {
    display: block;
  }
}
table.tableList01:last-child tr {
  border-bottom: 1px solid #ffc199;
}
@media (max-width: 768px) {
  table.tableList01 {
    margin-bottom: 20px;
    display: flex;
  }
  table.tableList01 thead {
    display: block;
    width: 36%;
  }
  table.tableList01 thead tr {
    width: 100%;
  }
  table.tableList01 tbody {
    display: block;
    width: 64%;
  }
  table.tableList01 tbody tr {
    width: 100%;
  }
}
table.tableList01 tr {
  border-bottom: 1px solid #ffc199;
}
table.tableList01 tr:hover td {
  background: #fff6f2;
}
@media (max-width: 768px) {
  table.tableList01 tr {
    display: block;
    border-bottom: 0;
    width: 100%;
  }
}
table.tableList01 th {
  padding: 10px;
  color: #fcfcfc;
  text-align: center;
  background: #f6a068;
  border-right: 1px solid #ffc199;
  vertical-align: middle;
}
table.tableList01 th:last-child {
  border-right: 0;
}
@media (max-width: 768px) {
  table.tableList01 th {
    padding: 10px 6px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1px solid #ffc199;
    border-right: 0;
  }
  table.tableList01 th:first-child {
    height: 60px;
    border-top: 1px solid #ffc199;
  }
}
table.tableList01 td {
  padding: 10px;
  text-align: left;
  background: #fcfcfc;
  border-right: 1px solid #ffc199;
  vertical-align: middle;
}
table.tableList01 td:last-child {
  border-right: 0;
}
@media (max-width: 768px) {
  table.tableList01 td:last-child {
    border-right: 1px solid #ffc199;
  }
}
@media (max-width: 768px) {
  table.tableList01 td {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1px solid #ffc199;
  }
  table.tableList01 td:first-child {
    border-top: 1px solid #ffc199;
  }
}
table.tableList01 a {
  color: #f6a068;
  text-decoration: underline;
}
table.tableList01 a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}
table .wid30 {
  width: 30%;
}
@media (max-width: 768px) {
  table .wid30 {
    width: auto;
  }
}
table .center {
  text-align: center !important;
}
@media (max-width: 768px) {
  table .center {
    text-align: left !important;
  }
}
table .right {
  text-align: right !important;
}
@media (max-width: 768px) {
  table .right {
    text-align: left !important;
  }
}
table .left {
  text-align: left !important;
}
@media (max-width: 768px) {
  table span.hurigana {
    display: block;
  }
}

/* ----------------------------------------------------
.formWrap
---------------------------------------------------- */
.formWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.formWrap + .btnbox {
  margin-top: 50px;
}
.formWrap + h3 {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .formWrap + h3 {
    margin-top: 30px;
  }
}
.formWrap input[type="text"] {
  padding: 10px;
  margin-bottom: 4px;
  font-size: 15px;
  background: #fcfcfc;
  border: 1px solid #ccc;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .formWrap input[type="text"] {
    width: 100%;
  }
}
.formWrap select {
  padding: 6px 10px;
  font-size: 15px;
  background: #fcfcfc;
  border: 1px solid #ccc;
}
.formWrap label {
  cursor: pointer;
}
.formWrap div.formbox {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 49%;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 768px) {
  .formWrap div.formbox {
    padding: 15px 0;
    width: 100%;
  }
}
.formWrap div.flex {
  display: flex;
  align-items: center;
}
.formWrap div.flex input[type="text"]:first-child {
  margin-right: 10px;
}
.formWrap div.flex input[type="text"].postalcode01 {
  margin-right: 0;
}
.formWrap div.flex label {
  display: flex;
}
.formWrap div.flex label:first-child {
  margin-right: 20px;
}
.formWrap div.flex p {
  display: flex;
  align-items: center;
}
.formWrap div.flex p.birth {
  margin: 0 16px 0 4px;
}
.formWrap div.flex p.number {
  margin: 0 4px;
}
.formWrap div.flex span.postalcode {
  padding: 0 10px;
  display: inline-block;
}
.formWrap div .box input[type="text"] {
  width: 100%;
}
.formWrap p.item {
  margin-bottom: 6px;
  font-weight: bold;
}
.formWrap p span {
  padding: 1px 6px;
  margin-left: 10px;
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background: #ed3e3e;
}

.btnbox {
  text-align: center;
}
.btnbox.right {
  text-align: right;
}
.btnbox + div {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .btnbox + div {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .btnbox {
    margin-top: 25px;
  }
}
.btnbox input[type="submit"] {
  padding: 16px 0 14px 0;
  margin: 0 auto;
  width: 300px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #fdc44f;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.btnbox input[type="submit"]:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}
@media (max-width: 768px) {
  .btnbox input[type="submit"] {
    padding: 12px 0;
    margin-bottom: 10px;
    width: 100%;
  }
}
.btnbox input[type="submit"].backbtn {
  background: #aaa;
}
.btnbox input[type="submit"].addbtn {
  padding: 10px 0 8px 0;
  margin: 0 0 0 auto !important;
  font-size: 15px;
  width: 140px;
}
@media (max-width: 768px) {
  .btnbox input[type="submit"].addbtn {
    padding: 12px 0;
    width: 100%;
  }
}

/* ----------------------------------------------------
.appformWrap
---------------------------------------------------- */
.appformWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.appformWrap + .btnbox {
  margin-top: 50px;
}
.appformWrap + h3 {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .appformWrap + h3 {
    margin-top: 25px;
  }
}
.appformWrap input[type="text"] {
  padding: 6px;
  margin-bottom: 4px;
  font-size: 15px;
  background: #fcfcfc;
  border: 1px solid #ccc;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .appformWrap input[type="text"] {
    width: 100%;
  }
}
.appformWrap select {
  padding: 6px 10px;
  font-size: 15px;
  background: #fcfcfc;
  border: 1px solid #ccc;
}
.appformWrap label {
  cursor: pointer;
}
.appformWrap div.formbox {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}
.appformWrap div.formbox + .formboxList {
  margin-top: 26px;
}
@media (max-width: 768px) {
  .appformWrap div.formbox + .formboxList {
    margin-top: 18px;
  }
}
.appformWrap div.formbox:last-child {
  border-bottom: 0;
}
.appformWrap div.formbox.topbox {
  padding: 16px 30px;
}
@media (max-width: 768px) {
  .appformWrap div.formbox.topbox {
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .appformWrap div.formbox {
    padding: 15px;
    flex-wrap: wrap;
  }
}
.appformWrap div.formboxList {
  padding: 12px 30px;
  margin-bottom: 6px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}
@media (max-width: 768px) {
  .appformWrap div.formboxList {
    padding: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
}
.appformWrap div.formboxList:hover {
  background: #fff6f2;
}
.appformWrap div.formboxList div.nameL {
  width: 20%;
  font-weight: bold;
}
.appformWrap div.formboxList div.nameL.wid44 {
    width: 44%;
    min-width: 380px;
}
@media (max-width: 768px) {
  .appformWrap div.formboxList div.nameL.wid44 {
      min-width: auto;
      width: 100%;
  }
}
@media (max-width: 768px) {
  .appformWrap div.formboxList div.nameL {
    width: 100%;
  }
}
.appformWrap div.formboxList div.itemR {
  width: 80%;
  display: flex;
  justify-content: space-between;
}
.appformWrap div.formboxList div.itemR.flexstart {
  justify-content: flex-start;
}
.appformWrap div.formboxList div.itemR.wid56 {
  width: 56%;
}
@media (max-width: 768px) {
  .appformWrap div.formboxList div.itemR.wid56 {
    width: 100%;
  }
}
/* .appformWrap div.formboxList div.itemR.wid56 .box { */
/*   width: 32%; */
/* } */
@media (max-width: 768px) {
  .appformWrap div.formboxList div.itemR.wid56 .box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .appformWrap div.formboxList div.itemR {
    width: 100%;
    flex-wrap: wrap;
  }
}
.appformWrap div.formboxList div.itemR div {
  padding: 0 6px;
  /* width: 24%; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .appformWrap div.formboxList div.itemR div {
    padding: 12px 0 0 0;
    width: 100%;
  }
}
.appformWrap div.formboxList div.itemR p.item {
  width: 20%;
}
@media (max-width: 768px) {
  .appformWrap div.formboxList div.itemR p.item {
    width: 100%;
  }
}
.appformWrap div.formboxList div.itemR select {
  width: 100%;
}
.appformWrap div.item {
  margin-bottom: 6px;
  width: 20%;
  font-weight: bold;
}
@media (max-width: 768px) {
  .appformWrap div.item {
    width: 100%;
  }
}
.appformWrap div.item span {
  padding: 1px 6px;
  margin-left: 10px;
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background: #ed3e3e;
}
.appformWrap div.flex {
  display: flex;
  width: 80%;
}
@media (max-width: 768px) {
  .appformWrap div.flex {
    width: 100%;
  }
}
.appformWrap div.flex.namecheck {
  flex-direction: column;
}
.appformWrap div.flex.namecheck label {
  margin-bottom: 4px;
}
.appformWrap div.flex.namecheck label:last-child {
  margin-bottom: 0;
}
.appformWrap div.flex input[type="text"]:first-child {
  margin-right: 10px;
}
.appformWrap div.flex label {
  display: flex;
}
.appformWrap div.flex label:first-child {
  margin-right: 20px;
}
.appformWrap div.flex p {
  display: flex;
  align-items: center;
}
.appformWrap div.flex p.birth {
  margin: 0 16px 0 4px;
}
.appformWrap div.flex p.number {
  margin: 0 4px;
}

.btnbox {
  text-align: center;
}
.btnbox.right {
  text-align: right;
}
.btnbox + div {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .btnbox + div {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .btnbox {
    margin-top: 25px;
  }
}
.btnbox input[type="submit"] {
  padding: 16px 0 14px 0;
  margin: 0 auto;
  width: 300px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #fdc44f;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.btnbox input[type="submit"]:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}
@media (max-width: 768px) {
  .btnbox input[type="submit"] {
    padding: 12px 0;
    margin-bottom: 10px;
    width: 100%;
  }
}
.btnbox input[type="submit"].backbtn {
  background: #aaa;
}
.btnbox input[type="submit"].addbtn {
  padding: 10px 0 8px 0;
  margin: 0 0 0 auto !important;
  font-size: 15px;
  width: 140px;
}
@media (max-width: 768px) {
  .btnbox input[type="submit"].addbtn {
    padding: 12px 0;
    width: 100%;
  }
}

/* ----------------------------------------------------
.backbtn
---------------------------------------------------- */
.backbtn {
  margin: 50px auto 0 auto;
  width: 260px;
}
@media (max-width: 768px) {
  .backbtn {
    margin-top: 25px;
    width: 100%;
  }
}
.backbtn a {
  padding: 12px 0 10px 0;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: #fdc44f;
  border-radius: 3px;
}
.backbtn a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}
@media (max-width: 768px) {
  .backbtn a {
    padding: 10px 0;
  }
}

/* ----------------------------------------------------
footer
---------------------------------------------------- */
footer {
  padding: 20px 30px;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  font-size: 12px;
  margin-top: auto;
}
