@charset "UTF-8";

/*==============================================================================================

    common css    

==============================================================================================*/
html {
  height: 100vh;
  height: -webkit-fill-available;
}

/*==========================================================

	body

==========================================================*/

body {
  position: relative;
  overflow-x: hidden;
  background: #bbbbbb;
  max-width: 980px;
  margin: 0 auto;
}

/*余計なものの非表示用スタイル*/

body>div {
  display: none !important;
  opacity: 0;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

input[type=checkbox],
input[type=radio] {
  display: none;
  opacity: 0;
}

a,
div {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.main_side_l {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(50% - 490px);
  height: 100%;
  background-image: url(/assets/img/sideborder_left.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 20px 100%;
  background-color: #fcfdeb;
  z-index: 100;
  opacity: 1;
  display: block !important;
  transform: none;
}

.main_side_r {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(50% - 490px);
  height: 100%;
  background-image: url(/assets/img/sideborder_right.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20px 100%;
  background-color: #fcfdeb;
  z-index: 100;
  opacity: 1;
  display: block !important;
  transform: none;
}


/*==========================================================

    main

==========================================================*/

main {
  position: relative;
  z-index: 0;
  height: 0;
  min-height: 100vh;
  height: -webkit-fill-available;
  box-sizing: border-box;
  overflow: hidden;
  background: #bbbbbb;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-transition: opacity .2s ease, padding-top .2s ease;
  -webkit-transition: opacity .2s ease, padding-top .2s ease;
  transition: opacity .2s ease, padding-top .2s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#main_sec {
  position: relative;
  width: 100%;
  background: #FFFFFF;
}

/*==========================================================

    contents title

==========================================================*/
.contents_title {
  width: 100%;
  background: #c3da49;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  margin-top: 30px;
}

.contents_title_pop {
  position: absolute;
  top: 3px;
  right: 0;
  transform: translateY(-100%);
}

.contents_title_pop img {
  height: 37px;
}





/*==========================================================

    check marker

==========================================================*/

.checkmarker {
  width: 12px;
  height: 12px;
  border: 1px solid #AAA;
  margin: 5px;
  position: relative;
  -moz-transition: transform .3s ease, border .3s ease;
  -webkit-transition: transform .3s ease, border .3s ease;
  transition: transform .3s ease, border .3s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

input[type=checkbox]:checked+label .checkmarker,
input[type=radio]:checked+label .checkmarker {
  border: 0px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkmarker .type-c,
.checkmarker .type-p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -moz-transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

input[type=checkbox]:checked+label .checkmarker .type-c,
input[type=checkbox]:checked+label .checkmarker .type-p,
input[type=radio]:checked+label .checkmarker .type-c,
input[type=radio]:checked+label .checkmarker .type-p {
  opacity: 1;
}

.checkmarker .type-c>div:nth-child(1) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background: #f08d36;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.checkmarker .type-c>div:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: #f08d36;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.checkmarker .type-c>div:nth-child(3) {
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 75%;
  background: #f08d36;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.checkmarker .type-p>div:nth-child(1) {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 75%;
  height: 20%;
  background: #f08d36;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.checkmarker .type-p>div:nth-child(2) {
  position: absolute;
  bottom: 20%;
  left: 25%;
  width: 20%;
  height: 55%;
  background: #f08d36;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.checkmarker .type-p>div:nth-child(3) {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 28%;
  height: 20%;
  background: #f08d36;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.checkmarker .type-p>div:nth-child(4) {
  position: absolute;
  top: 45%;
  left: 53%;
  width: 20%;
  height: 35%;
  background: #f08d36;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}