body{
  margin:0;
  font-size:0;
}

.wrapper{
  background:white;
  width:750px;
  margin:0 auto;
}

#header{
  background-color:#333F50;
  position:fixed;
  height:40px;
  width:100%;
  top:0;
  left:0;
  z-index:1;
}

#main-logo{
  width:150px;
  margin:0;
}


nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp ul {
  background: #ccc;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  font-size: 1.1em;
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px dotted #333;
  height:58px;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li a {
  display: block;
  color: black;
  padding: 1em 0;
  font-size: 20px;
  font-weight:bold;
  text-decoration:none;
}

nav.globalMenuSp.active {
  transform: translateY(0%);
}

.navToggle {
  display: block;
  position: fixed;
  right: 12px;
  top: 1px;
  width: 42px;
  height: 51px;
  cursor: pointer;
  z-index: 3;
  text-align: center;
}

.navToggle span {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: solid 3px #fff;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 6px;
}

.navToggle span:nth-child(1) {
  top: 9px;
}

.navToggle span:nth-child(2) {
  top: 18px;
}

.navToggle span:nth-child(3) {
  top: 27px;
}

.navToggle.active span:nth-child(1) {
  top: 18px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}




.login-modal-wrapper{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: none;
}

.modal {
  position: absolute;
  top: 8%;
  left: 10%;
  background-color: #e6ecf0;
  padding: 20px 0 40px;
  border-radius: 10px;
  width: 290px;
  height: auto;
  text-align: center;
}

.fa-times {
  position: absolute;
  top: 4px;
  right: 12px;
  color: rgba(128, 128, 128, 0.46);
  z-index:2;
}

.fa {
  margin-right:3px;
  margin-top:1px;
  font-size:40px;
  font-weight:bold;
}

#login-form {
  width: 100%;
}

#login-form h2 {
  color: #5f5d60;
  letter-spacing: 1px;
  margin-bottom: 0px;
  font-size:20px;
  line-height:22px;
}

#login-form input {
  width: 280px;
  margin-bottom: 10px;
  font-size: 18px;
  padding: 12px 12px;
  border: 1px solid #d0d5d8;
  border-radius: 5px;
}

#submit-btn a{
  display: inline-block;
  padding: 10px 50px;
  background-color: #008080;
  border: none;
  border-radius: 3px;
  color: white;
  margin: 10px auto;
  cursor: pointer;
  font-size:20px;
  font-weight:bold;
  text-decoration:none;
}

#submit-btn-new a{
  display: inline-block;
  padding: 10px 50px;
  background-color: #003399;
  border: none;
  border-radius: 3px;
  color: white;
  margin: 10px auto;
  cursor: pointer;
  font-size:20px;
  font-weight:bold;
  text-decoration:none;
}

#submit-btn a:hover, #submit-btn-new a:hover{
  opacity:0.7;
}

#login-form h2{
  font-size:17px;
  font-weight:bold;
  margin-bottom: 15px;
}

h4{
  font-size: 16px;
  font-weight:normal;
  color: #5f5d60;
  margin-top: 0px;
  margin-bottom: 10px;
}

#login-form p:before, #login-form p:after {
  content: '';
  position: absolute;
  top: 40%;
  display: inline-block;
  width: 25px;
  height: 2px;
  border-top: solid 1px #5f5d60;
  border-bottom: solid 1px #5f5d60;
}

#login-form p:before {
  left:-25;
}
#login-form p:after {
  right:-25;
}

#login-form p {
  color: #5f5d60;
  letter-spacing: 1px;
  margin-bottom: 0px;
  font-size:17px;
  font-weight:bold;
  position: relative;
  display: inline-block;
  padding: 0 5px;
}




.main-title{
  margin-top:40px;
  text-align:center;
}

h1 {
  font-size:25px;
  color:midnightblue;
  position: relative;
  display: inline-block;
  padding: 0 45px;
  margin-bottom:0px;
}

h1:before, h1:after {
  content: '';
  position: absolute;
  top: 45%;
  display: inline-block;
  width: 40px;
  height: 2px;
  border-top: solid 1px midnightblue;
  border-bottom: solid 1px midnightblue;
}

h1:before {
  left:0;
}
h1:after {
  right: 0;
}

.main-title p {
  font-size:13px;
  color:black;
  position: relative;
  display: inline-block;
  text-align: left;
  margin:0 5px 20px 10px;
}




.contents-wrapper{
  background:white;
  height:400px;
}

.left-img img{
  width:210px;
  float:left;
  border:solid darkgray 2px;
  border-radius:7px;
  margin:0 0 0 5px;
}



.btn-first{
  color:white;
  padding:10px 7px;
  background:rgb(0,32,96);
  border-radius:7px;
  position:absolute;
  margin:0 0 0 5px;
}

.first a{
  font-size:24px;
  text-decoration:none;
  text-align:center;
}

.answer-first {
  display: none;
  padding: 10px 10px 5px 10px;
  margin:0px 15px 0 20px;
  border:solid 2px rgb(0,32,96);
  border-radius:7px;
  position:absolute;
  width:180px;
  height:120px;
  background-color:white;
  z-index:10;
}

.btn-item1{
  color:white;
  padding:10px 15px;
  background:rgb(0,32,96);
  border-radius:3px;
  position:absolute;
  margin:0px 0 30px 15px;
}

.btn-item2{
  color:white;
  padding:10px 15px;
  background:rgb(0,32,96);
  border-radius:3px;
  position:absolute;
  margin:60px 0 30px 15px;
}

.answer-first a{
  font-size: 24px;
  color:white;
  text-decoration:none;
  text-align:left;
}


.btn-second{
  color:white;
  padding:10px 7px;
  background:rgb(79,34,112);
  border-radius:7px;
  position:absolute;
  margin:60px 0 0 5px;
}


.second a{
  font-size:24px;
  text-decoration:none;
  text-align:center;
}

.answer-second {
  display: none;
  padding: 10px 10px 5px 10px;
  margin:0px 15px 0 20px;
  border:solid 2px rgb(79,34,112);
  border-radius:7px;
  position:absolute;
  width:180px;
  height:245px;
  background-color:white;
  z-index:10;
}

.btn-item3{
  color:white;
  padding:10px 15px;
  background:rgb(79,34,112);
  border-radius:3px;
  position:absolute;
  margin:0px 0 30px 15px;
}

.btn-item4{
  color:white;
  padding:10px 15px;
  background:rgb(79,34,112);
  border-radius:3px;
  position:absolute;
  margin:60px 0 30px 15px;
}

.btn-item5{
  color:white;
  padding:10px 15px;
  background:rgb(79,34,112);
  border-radius:3px;
  position:absolute;
  margin:120px 0 30px 15px;
}

.btn-item6{
  color:white;
  padding:10px 15px;
  background:rgb(79,34,112);
  border-radius:3px;
  position:absolute;
  margin:180px 0 30px 15px;
}

.btn-third{
  color:white;
  padding:7px 4px;
  background:rgb(0,122,55);
  border-radius:7px;
  position:absolute;
  margin:120px 0 0 5px;
}

.third a{
  font-size:14px;
  font-weight:bold;
  text-decoration:none;
  text-align:center;
}

.answer-third {
  display: none;
  padding: 10px 10px 5px 10px;
  margin:-60px 15px 0 20px;
  border:solid 2px rgb(0,122,55);
  border-radius:7px;
  position:absolute;
  width:180px;
  height:420px;
  background-color:white;
  z-index:10;
}

.btn-item7{
  color:white;
  padding:10px 15px;
  background:rgb(0,122,55);
  border-radius:3px;
  position:absolute;
  margin:0px 0 30px 15px;
}

.size-24 a{
  font-size:24px;
  font-weight:normal;
}

.btn-item8{
  color:white;
  padding:10px 15px;
  background:rgb(0,122,55);
  border-radius:3px;
  position:absolute;
  margin:60px 0 30px 15px;
}

.btn-item9{
  color:white;
  padding:15px 3px;
  background:rgb(0,122,55);
  border-radius:3px;
  position:absolute;
  margin:120px 0 30px 15px;
}

.size-18 a{
  font-size:18px;
  font-weight:normal;
}

.btn-item10{
  color:white;
  padding:12px 9px;
  background:rgb(0,122,55);
  border-radius:3px;
  position:absolute;
  margin:180px 0 30px 15px;
}

.size-22 a{
  font-size:22px;
  font-weight:normal;
}

.btn-item11{
  color:white;
  padding:10px 27px;
  background:rgb(0,122,55);
  border-radius:3px;
  position:absolute;
  margin:240px 0 30px 15px;
}

.btn-item12{
  color:white;
  padding:10px 15px;
  background:rgb(0,122,55);
  border-radius:3px;
  position:absolute;
  margin:300px 0 30px 15px;
}

.btn-item13{
  color:white;
  padding:18px 3px;
  background:rgb(0,122,55);
  border-radius:3px;
  position:absolute;
  margin:360px 0 30px 15px;
}

.size-13 a{
  font-size:13px;
  font-weight:normal;
}

.btn-fourth{
  color:white;
  padding:10px 7px;
  background:rgb(103,47,9);
  border-radius:7px;
  position:absolute;
  margin:180px 0 0 5px;
}

.fourth a{
  font-size:24px;
  text-decoration:none;
  text-align:center;
}

.answer-fourth {
  display: none;
  padding: 10px 10px 5px 10px;
  margin:130px 15px 0 20px;
  border:solid 2px rgb(103,47,9);
  border-radius:7px;
  position:absolute;
  width:180px;
  height:240px;
  background-color:white;
  z-index:10;
}

.btn-item14{
  color:white;
  padding:10px 15px;
  background:rgb(103,47,9);
  border-radius:3px;
  position:absolute;
  margin:0px 0 30px 15px;
}

.btn-item15{
  color:white;
  padding:10px 3px;
  background:rgb(103,47,9);
  border-radius:3px;
  position:absolute;
  margin:60px 0 30px 15px;
}

.btn-item16{
  color:white;
  padding:10px 3px;
  background:rgb(103,47,9);
  border-radius:3px;
  position:absolute;
  margin:120px 0 30px 15px;
}

.btn-item17{
  color:white;
  padding:10px 3px;
  background:rgb(103,47,9);
  border-radius:3px;
  position:absolute;
  margin:180px 0 30px 15px;
}





.btn-point{
  padding:2px 10px;
  background:darkblue;
  color:white;
  display:block;
  border-radius:7px;
  margin-top:10px;
}

.btn-choice a{
  font-size:22px;
  color:white;
  text-decoration:none;
  text-align:center;
}

#iframe-bottom {
  border:none;
  margin: auto;
  display: block;
}

