@charset "UTF-8";
/*-----------------------*/
/*     1.Initialize      */
/*-----------------------*/
/*CSSリセット*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html {
  font-size: 100%;
  line-height: 1.125em;
}

/*-----------------------*/
/*      Pagenation       */
/*-----------------------*/
.pagenation {
  font-family: "Aoto Gothic Light", sans-serif;
}
.pagenation a {
  display: inline-block;
}
.pagenation span {
  display: inline-block;
}

.page_number, .page_first, .page_prev, .pager, .page_next, .page_last {
  display: inline-block;
  font-family: "Aoto Gothic Light", sans-serif;
  margin-right: 6px;
  transition: color 0.3s, border-color 0.3s;
}

.page_first, .page_prev, .pager, .page_next, .page_last {
  border: solid 1px #bd9833;
  height: 32px;
  padding-top: 6px;
  text-align: center;
  color: #bd9833;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
.page_first:hover, .page_prev:hover, .pager:hover, .page_next:hover, .page_last:hover {
  color: #961d19;
  border-color: #961d19;
}
.page_first:active, .page_prev:active, .pager:active, .page_next:active, .page_last:active {
  color: #961d19;
}

.page_first, .page_prev, .pager, .page_next {
  width: 32px;
}

.page_number {
  font-size: 84%;
  margin-right: 10px;
}

.page_current {
  height: 24px !important;
  color: #961d19;
  background-color: rgba(150, 29, 25, 0.1);
  border-color: #961d19;
  font-weight: bold;
}
.page_current:hover {
  color: #961d19;
}
.page_current:active {
  color: #961d19;
}

.page_last {
  width: 56px;
}

html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, code, em, img, small,
strong, sub, sup, tt, center, dl, dt, dd,
ol, ul, li, fieldset, form, label, table,
caption, tbody, tfoot, thead, tr, th, td,
article, aside, embed, figure, figcaption,
input, button, textarea, canvas, audio, video,
footer, header, hgroup, menu, nav, section {
  box-sizing: border-box;
}

/*-----------------------*/
/*     2. Variables      */
/*-----------------------*/
/*-----------------------*/
/* 3. Additional Mixin  */
/*-----------------------*/
/*-----------------------*/
/*  4. Global settings   */
/*-----------------------*/
.pc-only {
  display: block;
}
@media screen and (max-width: 864px) {
  .pc-only {
    display: none;
  }
}

.mobile-only {
  display: none;
}
@media screen and (max-width: 540px) {
  .mobile-only {
    display: block;
  }
}

.mobile-only-inline {
  display: none;
}
@media screen and (max-width: 540px) {
  .mobile-only-inline {
    display: inline-block;
  }
}

.mt20 {
  margin-top: 20px !important;
}

.mt40 {
  margin-top: 40px;
}

.mt60 {
  margin-top: 60px;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb60 {
  padding-bottom: 60px;
}

.ph20 {
  padding-left: 20px;
  padding-right: 20px;
}

.ph40 {
  padding-left: 40px;
  padding-right: 40px;
}

.cf {
  clear: both;
}

@media screen and (max-width: 540px) {
  .br540::before {
    content: "\A";
    white-space: pre;
  }
}

@media screen and (max-width: 640px) {
  .br640::before {
    content: "\A";
    white-space: pre;
  }
}

.alert-red {
  color: #c00;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.inline-center {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.vertical-center, #catchcopy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.horizontal-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.absolute-center, .imgwrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) !important;
  -moz-transform: translateX(-50%) translateY(-50%) !important;
  -webkit-transform: translateX(-50%) translateY(-50%) !important;
}

a {
  color: #bd9833;
  text-decoration: none;
  transition: color,0.3s;
}
a:link {
  color: #bd9833;
}
a:visited {
  color: #bd9833;
}
a:hover {
  color: #961d19;
}
a:focus {
  color: #bd9833;
}
a:active {
  color: #bd9833;
}

body {
  font-family: "NeueFrutigerWorld-Book", "FP-KoburinaGoStdN-W3", sans-serif;
  font-weight: normal;
}

strong, h1, h2, h3, h4, h5, h6 {
  font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 125%;
}

p {
  font-size: 100%;
  padding: 12px 0;
  line-height: 175%;
}

ul {
  list-style-type: disc;
  list-style-position: outside;
  padding: 6px 0 10px 24px;
}

li {
  font-size: 94%;
  padding: 0;
  line-height: 175%;
}

ol {
  list-style-type: decimal;
  padding-left: 30px;
}

.small {
  font-size: 84%;
}

.clearfix {
  clear: both;
}

/*-----------------------*/
/*    5. Appearances     */
/*-----------------------*/
body {
  -webkit-text-size-adjust: 100%;
}

header {
  position: relative;
  max-width: 1600px;
  height: 64px;
  margin: 0 auto;
  padding-top: 8px;
  padding-left: 8px;
  padding-bottom: 8px;
}
header img {
  display: block;
  height: 100%;
  width: auto;
}
@media screen and (max-width: 540px) {
  header {
    height: 48px;
    text-align: center;
  }
}

nav {
  position: absolute;
}
@media not screen and (max-width: 720px) {
  nav {
    top: 0;
    right: 0;
    width: calc(100% - 160px);
  }
  nav ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    height: 64px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  nav ul li {
    display: block;
    font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
    font-weight: normal;
    font-size: 87%;
    list-style: none;
    height: 100%;
    padding-left: 6px;
    border-left: solid 4px #e0debc;
    text-align: left;
    color: #666666;
    flex-basis: 100px;
  }
  nav ul li:nth-child(2) {
    border-left-color: rgba(150, 29, 25, 0.4);
  }
  nav ul li.li-sp {
    border-left-color: rgba(150, 29, 25, 0.4);
  }
}

.workicon {
  display: none;
  position: absolute;
}
@media screen and (max-width: 720px) {
  .workicon {
    top: 12px;
    right: 12px;
    display: block;
  }
  .workicon i {
    font-size: 147%;
  }
  .workicon p {
    font-size: 74%;
    font-weight: bold;
    font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
    margin: 0;
    margin-top: 6px;
    padding: 0;
    line-height: 1;
  }
}
@media screen and (max-width: 540px) {
  .workicon i {
    top: 2px;
    right: 10px;
    font-size: 107%;
  }
  .workicon p {
    font-size: 60%;
    font-weight: bold;
    font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
    margin: 0;
    margin-top: 2px;
    padding: 0;
    line-height: 1;
  }
}

#head-img-base, #head-img-fp, #head-img {
  position: relative;
  width: 100%;
  min-width: 360px;
  background-image: url("../images/header-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 20vw;
  min-height: 90px;
}
@media screen and (max-width: 540px) {
  #head-img-base, #head-img-fp, #head-img {
    text-align: center;
  }
}

@media not screen and (max-width: 1600px) {
  #head-img-fp {
    height: 320px;
  }
}
@media screen and (max-width: 540px) {
  #head-img-fp {
    height: 240px;
    background-position: right center;
  }
}

@media not screen and (max-width: 1600px) {
  #head-img {
    height: 320px;
  }
}
@media screen and (max-width: 540px) {
  #head-img {
    height: 160px;
    background-position: right center;
  }
}

#catchcopy {
  position: relative;
  padding-left: 20px;
  font-family: "RodinBokutohPro-B", sans-serif;
  font-weight: bold;
  font-size: 160%;
  color: #fff;
  text-shadow: 0 0 5px #002952;
}
@media screen and (max-width: 1024px) {
  #catchcopy {
    font-size: 147%;
    text-shadow: 0 0 4px #002952;
  }
}
@media screen and (max-width: 720px) {
  #catchcopy {
    font-size: 120%;
  }
}
@media screen and (max-width: 540px) {
  #catchcopy {
    display: inline-block;
    position: relative;
    text-align: right;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    height: 220px;
    font-size: 134%;
  }
}

footer {
  position: fixed;
  bottom: 0;
  left: auto;
  right: auto;
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0;
  font-size: 74%;
  text-align: center;
  background-color: #e0debc;
}
footer p {
  margin: 0;
  padding: 0;
  padding-top: 4px;
  color: #fff;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:link {
  color: #fff;
}
footer a:visited {
  color: #fff;
}
footer a:hover {
  color: #fff;
}
footer a:focus {
  color: #fff;
}
footer a:active {
  color: #fff;
}

article h1 {
  font-family: "RodinBokutohPro-B", sans-serif;
  font-weight: bold;
  font-size: 134%;
  color: #961d19;
  min-width: 360px;
}
article p {
  min-width: 360px;
}

.preload {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1000000;
  font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
  opacity: 0;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

section {
  position: relative;
}

/*-----------------------*/
/*     6. List Design    */
/*-----------------------*/
.post-content {
  max-width: 1024px;
  min-width: 360px;
  margin: 0 auto;
  padding-top: 20px;
  padding-left: 5px;
  padding-right: 5px;
}

.category-list {
  line-height: 2.5;
}

.btn-design, .btn-movie, .btn-compose, .btn-trial, .btn-operation, .btn-others, .btn-all {
  display: inline-block;
  font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
  font-weight: bold;
  width: 90px;
  font-size: 94%;
  text-align: center;
  padding: 0;
  border-style: solid;
  border-width: 2px;
  border-bottom-width: 4px;
  border-radius: 22px;
  margin: 0 4px 15px 4px;
  cursor: pointer;
  opacity: 1;
  transition: opacity,0.3s;
}
.btn-design:hover, .btn-movie:hover, .btn-compose:hover, .btn-trial:hover, .btn-operation:hover, .btn-others:hover, .btn-all:hover {
  opacity: 0.6;
}

.btn-design {
  border-color: #e07991;
  color: #e07991;
  background-color: rgba(224, 121, 145, 0.1);
}

.btn-movie {
  border-color: #3b9c55;
  color: #3b9c55;
  background-color: rgba(59, 156, 85, 0.1);
}

.btn-compose {
  border-color: #5c668a;
  color: #5c668a;
  background-color: rgba(92, 102, 138, 0.1);
}

.btn-trial, .btn-others {
  border-color: #b8ac54;
  color: #b8ac54;
  background-color: rgba(184, 172, 84, 0.1);
}

.btn-operation {
  border-color: #539ba3;
  color: #539ba3;
  background-color: rgba(83, 155, 163, 0.1);
}

.btn-all {
  border-color: #e0423d;
  color: #e0423d;
  background-color: rgba(224, 66, 61, 0.1);
}

.btn-all2 {
  display: inline-block;
  font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
  font-weight: bold;
  font-size: 107%;
  text-align: center;
  padding: 0 20px;
  border-style: solid;
  border-width: 2px;
  border-bottom-width: 4px;
  border-radius: 26px;
  margin: 0 4px 15px 4px;
  cursor: pointer;
  opacity: 1;
  transition: opacity,0.3s;
  border-color: #e0423d;
  color: #e0423d;
  background-color: rgba(224, 66, 61, 0.1);
}
.btn-all2:hover {
  opacity: 0.6;
}

.head-alert {
  position: absolute;
  top: 25px;
  left: 100px;
  color: #c33;
  font-weight: bold;
  font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
}

.card-link {
  opacity: 1;
  transition: opacity,0.3s;
}
.card-link:hover {
  opacity: 0.7;
}

.card, .card-disabled {
  position: relative;
  margin: 10px 5px;
  width: calc(calc(100% / 3) - 10px);
  float: left;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .card, .card-disabled {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 540px) {
  .card, .card-disabled {
    width: calc(100% - 10px);
  }
}

.new-card {
  margin: 10px auto;
  width: calc(50% - 10px);
  float: none;
  color: #333333;
}
@media screen and (max-width: 540px) {
  .new-card {
    width: calc(100% - 10px);
  }
}

.card-disabled {
  filter: saturate(0);
  opacity: 70%;
}
.card-disabled h2 {
  color: #666;
}
.card-disabled .titlewrap {
  border-color: #999;
}

.cat-tab {
  display: inline-block;
  position: relative;
  background-color: #bd9833;
  color: #fff;
  width: 84px;
  font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
  font-weight: bold;
  font-size: 87%;
  text-align: left;
  padding: 5px 18px 5px 8px;
  border-radius: 6px 28px 0 0;
}

.dline-none, .dline-today, .dline-end, .dline-soon, .dline-rest {
  display: inline-block;
  position: relative;
  background-color: #fff;
  font-size: 74%;
  text-align: center;
  padding: 0 6px;
  border-radius: 3px;
  border: solid 1px #aaa;
  color: #aaa;
}

.dline-soon, .dline-today {
  color: #c33;
}

.titlewrap {
  position: relative;
  padding: 8px;
  border-style: solid;
  border-width: 2px;
  border-bottom-width: 5px;
  border-radius: 0 12px 12px 12px;
  overflow: hidden;
  height: 83px;
}
.titlewrap h2 {
  font-size: 107%;
  padding: 1px 0 2px 10px;
  width: calc(100% - 88px);
  float: left;
  color: #333333;
  transition: color 0.3s;
}
.titlewrap h2:link {
  color: #333333;
}
.titlewrap h2:visited {
  color: #333333;
}
.titlewrap h2:hover {
  color: #333333;
}
.titlewrap h2:active {
  color: #333333;
}

.imgwrap {
  position: relative;
  width: 80px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  float: left;
}
.imgwrap img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.15);
}

.cat-design .cat-tab {
  background-color: #e07991;
}
.cat-design .titlewrap {
  border-color: #e07991;
}

.cat-movie .cat-tab {
  background-color: #3b9c55;
}
.cat-movie .titlewrap {
  border-color: #3b9c55;
}

.cat-compose .cat-tab {
  background-color: #5c668a;
}
.cat-compose .titlewrap {
  border-color: #5c668a;
}

.cat-trial .cat-tab, .cat-others .cat-tab {
  background-color: #b8ac54;
}
.cat-trial .titlewrap, .cat-others .titlewrap {
  border-color: #b8ac54;
}

.cat-operation .cat-tab {
  background-color: #539ba3;
}
.cat-operation .titlewrap {
  border-color: #539ba3;
}

.cat-new .cat-tab {
  background-color: #7ccbed;
}
.cat-new .titlewrap {
  border-color: #7ccbed;
}

.edit-icon-area {
  position: absolute;
  top: -6px;
  right: 4px;
}

/*-----------------------*/
/*   7. Post Contents    */
/*-----------------------*/
.post-head, .post-head-design, .post-head-movie, .post-head-operation, .post-head-compose, .post-head-trial, .post-head-others, .post-head-manual {
  position: relative;
  width: 100%;
  border-style: solid;
  border-width: 2px;
  border-bottom-width: 5px;
  padding: 15px 20px;
  border-radius: 0 10px 10px 10px;
}

.post-head-design {
  border-color: #e07991;
  background-color: rgba(224, 121, 145, 0.1);
}

.post-head-movie {
  border-color: #3b9c55;
  background-color: rgba(59, 156, 85, 0.1);
}

.post-head-operation {
  border-color: #539ba3;
  background-color: rgba(83, 155, 163, 0.1);
}

.post-head-compose {
  border-color: #5c668a;
  background-color: rgba(92, 102, 138, 0.1);
}

.post-head-trial, .post-head-others {
  border-color: #b8ac54;
  background-color: rgba(184, 172, 84, 0.1);
}

.post-head-manual {
  border-color: #84cfd0;
  background-color: rgba(132, 207, 208, 0.1);
}

.post-box, .post-box-design, .post-box-movie, .post-box-operation, .post-box-compose, .post-box-trial, .post-box-others, .post-box-manual {
  position: relative;
  width: 100%;
  border-style: solid;
  border-width: 2px;
  border-bottom-width: 5px;
  padding: 15px 20px;
  border-radius: 10px;
  overflow: hidden;
}
.post-box h2, .post-box-design h2, .post-box-movie h2, .post-box-operation h2, .post-box-compose h2, .post-box-trial h2, .post-box-others h2, .post-box-manual h2 {
  font-family: "RodinBokutohPro-B", sans-serif;
  font-size: 120%;
}
.post-box p, .post-box-design p, .post-box-movie p, .post-box-operation p, .post-box-compose p, .post-box-trial p, .post-box-others p, .post-box-manual p {
  padding-left: 15px;
  padding-right: 15px;
}
.post-box img, .post-box-design img, .post-box-movie img, .post-box-operation img, .post-box-compose img, .post-box-trial img, .post-box-others img, .post-box-manual img {
  display: block;
  max-width: 640px;
  min-width: 300px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px !important;
}
@media screen and (max-width: 720px) {
  .post-box img, .post-box-design img, .post-box-movie img, .post-box-operation img, .post-box-compose img, .post-box-trial img, .post-box-others img, .post-box-manual img {
    max-width: 480px;
  }
}
@media screen and (max-width: 540px) {
  .post-box img, .post-box-design img, .post-box-movie img, .post-box-operation img, .post-box-compose img, .post-box-trial img, .post-box-others img, .post-box-manual img {
    display: inline;
    width: 100%;
  }
}
.post-box .deadline, .post-box-design .deadline, .post-box-movie .deadline, .post-box-operation .deadline, .post-box-compose .deadline, .post-box-trial .deadline, .post-box-others .deadline, .post-box-manual .deadline {
  font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
  font-size: 120%;
  letter-spacing: 0.1em;
  color: #c33;
}

.post-box-design {
  border-color: #e07991;
  background-color: rgba(224, 121, 145, 0.1);
}

.post-box-movie {
  border-color: #3b9c55;
  background-color: rgba(59, 156, 85, 0.1);
}

.post-box-operation {
  border-color: #539ba3;
  background-color: rgba(83, 155, 163, 0.1);
}

.post-box-compose {
  border-color: #5c668a;
  background-color: rgba(92, 102, 138, 0.1);
}

.post-box-trial, .post-box-others {
  border-color: #b8ac54;
  background-color: rgba(184, 172, 84, 0.1);
}

.post-box-manual {
  border-color: #84cfd0;
  background-color: rgba(132, 207, 208, 0.1);
}

.cat-tab-manual {
  background-color: #84cfd0;
}

.post-imgwrap {
  position: relative;
  margin: 20px auto;
  max-width: 480px;
  min-width: 300px;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}
.post-imgwrap img {
  display: block;
  width: 100%;
  height: auto;
}

.annotation {
  color: #c33;
  font-size: 87%;
}

/*-----------------------*/
/*    8. form design     */
/*-----------------------*/
label {
  font-weight: bold;
  font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
}

form > label {
  display: block;
  font-size: 100%;
  padding: 8px 0;
}
form > label:not(:first-child) {
  margin-top: 10px;
}

input, textarea, button {
  -webkit-appearance: none;
}

input[type="text"], input[type="email"], input[type="password"], textarea {
  margin: 4px 20px;
  padding: 12px;
  width: calc(100% - 40px);
  border: solid 1px #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 94%;
  font-family: sans-serif;
  line-height: 140%;
}

textarea {
  height: 12rem;
}

.ofr-txtbox {
  margin: 4px 20px 15px;
  padding: 12px;
  width: calc(100% - 40px);
  border: solid 1px #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 94%;
  font-family: sans-serif;
  line-height: 140%;
  color: #999;
}

input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

span.radio {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 5px 30px;
  width: auto;
}

span.radio::before {
  background: #fff;
  border: 1px solid #84cfd0;
  border-radius: 50%;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: calc(50% - 1.5px);
  width: 16px;
}

span.radio::after {
  background: #a3000d;
  border-radius: 50%;
  content: '';
  display: block;
  height: 10px;
  left: 9px;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 1.5px);
  transform: scale3d(0.3, 0.3, 1);
  transition: transform .2s ease-in-out, opacity .2s ease-in-out;
  width: 10px;
}

input[type="radio"]:checked + span.radio::before {
  border-color: #a3000d;
}

input[type="radio"]:checked + span.radio::after {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.input-wrap {
  position: relative;
}

.toggle-pass {
  position: absolute;
  top: 50%;
  right: 42px;
  transform: translateY(-50%);
}

#file_uploader {
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 1px;
  z-index: -1000;
  opacity: 0;
}

#fakepath {
  -webkit-appearance: none;
  display: block;
  position: relative;
  margin: 10px 0 20px;
  padding: 15px 20px;
  width: 100%;
  font-family: sans-serif;
  font-size: 87%;
  color: #666;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  border: dotted 1px #999;
  border-radius: 6px;
}

#uploader {
  display: none;
}

#img-chg:checked + #uploader {
  display: block;
}

.btnWrapper {
  text-align: center;
}

.ul-image {
  padding-top: 10px;
}

.pushbtn, input[type="submit"] {
  position: relative;
  padding: 10px 30px;
  font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
  font-weight: bold;
  font-size: 114%;
  letter-spacing: 0.2em;
  border: solid 2px #84cfd0;
  border-radius: 40px;
  color: #fff;
  transition: color 0.3s;
  background-color: #84cfd0;
  transition: background-color 0.3s;
}
.pushbtn:link, input[type="submit"]:link {
  color: #fff;
}
.pushbtn:visited, input[type="submit"]:visited {
  color: #fff;
}
.pushbtn:hover, input[type="submit"]:hover {
  color: #84cfd0;
}
.pushbtn:active, input[type="submit"]:active {
  color: #84cfd0;
}
.pushbtn:hover, input[type="submit"]:hover {
  background-color: #fff;
}

.jumpbtn {
  position: relative;
  padding: 10px 30px;
  font-family: "NeueFrutigerWorld-Medium", "FP-KoburinaGoStdN-W6", sans-serif;
  font-weight: bold;
  font-size: 114%;
  letter-spacing: 0.2em;
  border: solid 2px #84cfd0;
  border-radius: 40px;
  color: #fff;
  transition: color 0.3s;
  background-color: #84cfd0;
  transition: background-color 0.3s;
}
.jumpbtn:link {
  color: #fff;
}
.jumpbtn:visited {
  color: #fff;
}
.jumpbtn:hover {
  color: #84cfd0;
}
.jumpbtn:active {
  color: #84cfd0;
}
.jumpbtn:hover {
  background-color: #fff;
}

.linkbtn {
  display: inline-block;
  border: none;
  padding: 0 4px 4px;
  background: none;
  font-size: 107%;
  color: #bbb;
  cursor: pointer;
  transition: color 0.3s;
}
.linkbtn:hover {
  color: #ddd;
}
.linkbtn input[type="submit"] {
  display: none;
}

/*-----------------------*/
/*   9. Print settings   */
/*-----------------------*/
@media print {
  .unprint {
    display: none;
  }

  body {
    font-size: 80%;
  }

  .hcb_wrap {
    -webkit-print-color-adjust: exact;
  }
  .hcb_wrap code {
    font-size: 80% !important;
  }

  #contents {
    width: 100% !important;
  }

  #menu {
    display: none;
  }

  #page-top, #page-top a {
    display: none;
  }
}
