@charset "UTF-8"; 

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("truetype");
}

:root {
    box-sizing: border-box;
  }

  *,
  *::before,
  *::after {
    box-sizing: inherit;
  } 

  body {
    background-color: #000;
    margin:0;
    font-size: 1rem;
  }

 .font_style {
    font-family: 'Noto Sans JP', sans-serif;
  }
  .font_style_yellow {
    font-family: 'Noto Sans JP', sans-serif;
    color: #fea;
    font-size: 1.125rem;
    font-weight: 700;
  }

  .font_color {
    font-family:  'Rubik', sans-serif;
    color: #ab061d;
    font-size: 1.125rem;
  }
  
  .font_black {
    font-family: 'Rubik', sans-serif;
    color: #000;
    font-size: 1.125rem;
  }
  
  .font_color_black {
    font-family:  'Roboto', sans-serif;
    color: #000;
    font-size: 1.125rem;
  }

  .font_color_blue {
    font-family:  'Roboto', sans-serif;
    color: rgb(16, 0, 245);
    font-size: 1.5rem;
  }
.font_color_white {
    font-family:  'Noto Sans JP', sans-serif;
    color: #FFFFFF;
    font-size: 1.125rem;
  }
  #wrapper {
      width: 61.25rem;
      margin:0 auto;
      background-repeat:no-repeat;
      background-color: #383838;
      border-left: #594431 solid 0.0625rem;
      border-right: #594431 solid 0.0625rem;
  }

  #title {
    display: -webkit-flex; /* Safari */
    -webkit-justify-content: space-betwen; /* Safari 6.1+ */
    display: flex;
    justify-content: space-between;
    
  }

  .title {
    width: 61.25rem;
    padding: 0.5rem;
    background-color: #000;
  }

 .footer {
    width: 20rem;
    padding: 0.5rem;
    background-color: #000;
  }
  
  @media only screen and (max-width : 40rem) {
    .title{
      display: flex;
      display: -webkit-flex;
    }
  }
  
  @media only screen and (max-width : 40rem) {
    .footer{
      display: flex;
      display: -webkit-flex;
    }
  }


  .text-shadow {
    color: white;
    text-shadow: 0.0625rem 0.0625rem 0.125rem #6666FF, 0 0 1.5625rem blue, 0 0 0.3125rem darkblue;
  }
  
  header {
    padding: 0;
    color: #FFFFFF;
    background-color: #cc9999;
    border-radius: 0.5rem;
    top: 0;
    border-bottom: 0.25rem solid #993399;
  }
 
  @media only screen and (max-width : 40rem) {
    header, footer{
      display: flex;
      display: -webkit-flex;
    }
  }
  
   .responsive {
     max-width: 100%; 
     height: auto; 
  }
  
  /* Three image containers (use 25% for four, and 50% for two, etc) */
 .column {
  float: left;
  padding: 0.5rem;
 }

 /* Clear floats after image containers */
 .row::after {
  content: "";
  clear: both;
  display: table;
 }

  h2, h3, h4, p {
    text-align: center;
  }

  .illustration {
    width:21rem;
    height:auto;
  }

  .container *+*{
    margin-top: 0.5rem;
    
  }

  .container {
    display:flex;
  }

  .super {
    vertical-align: baseline;
    position: relative;
    top: -0.4rem;
    font-size: 1.25rem;
  }

  .grad {
	background-color: #9e7b7b;
	border-radius: 20%;
}

.reg_date {
	background-color: rgb(255, 128, 1);
  border-radius: 20%;
  color: #00008b;
}

  .main {
	width: 40%;
	/*padding: 0.5rem 1.5rem;*/
	margin-left: 0.1875rem;
	background-color: #009900;
	border-radius: 0.5rem;
	margin-top: 0.1875rem;
	margin-bottom: 0.1875rem;
  }

  @media only screen and (max-width : 40rem) {
    .main{
      margin-left: 0;
      margin-top: 0.1875rem;
      margin-bottom: 0;
    }
  }
  .sidebar  {
	width: 60%;
	padding: 0.5rem 1.5rem;
	background-color: #B5B5B5;
	border-radius: 0.5rem;
	margin-top: 0.1875rem;
	margin-bottom: 0.1875rem;
	display: block;
  }

  @media only screen and (max-width : 40rem) {
    .sidebar{
      margin-top: 0.1875rem;
      margin-bottom: 0;
    }
  }
  .sidebarnext  {
    width: 100%;
    padding: 0.25rem 0.5rem;
    background-color: #b4b1b1;
    border-radius: 0.5rem;
    margin-top: 0.1875rem;
    margin-bottom: 0.1875rem;
    display:block;
  }

  .button-link {
	display: block;
	padding: 0.5rem;
	color: #FFFFFF;
	background-color: #000080;
	text-align: center;
	text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  }

  button {
	background-color: #CC6600;
	color: #FFFFFF;
	box-shadow: 0.0625rem 0.125rem rgb(255,128,1);
	align-items: center;
	justify-content: center;
	width: 100%;
	border: 0;
	font-size: 1.3rem;
	padding: 0.5rem;
	margin-bottom: 0.5rem;
	transition: border-radius 0.5s ease,
                background-color 1s linear;
	-moz-transition: border-radius 0.5s ease,
                background-color 1s linear;
	-webkit-transition: border-radius 0.5s ease,
                background-color 1s linear;
  }
  button:hover {
    background-color: #C4B4BE;
    color: #000080;
    border-radius: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
  }
  button:active {
    background-color: #ffaa80;
    color: #99004d;
    box-shadow: none;
    font-size: 1.25rem;
    font-weight: 700;
  }

  .flex {
    margin: 0 -1rem;
  }
  .flex > * {
    margin: 0 1rem;
  }

  a, a:hover, a:active{
    text-decoration: none;
  }
  
  a[href$=".pdf"]::before {
    font-family: "fontawesome";
    content: "\f1c1";
    color: #ff5906;
    font-size: 0.75rem;
  }

  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .img1 {
    margin-top:0;
    float: left;
    margin-bottom: 0.125rem;
  }

#features {
background: #993399;
margin-top: 0;
padding: 0;
display: inline-block;
width: 100%;

}

.feature {
  float:left;
  padding: 0.0625rem 0.45rem;
  margin: 0 auto;
 } 

.feature__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.feature__image {
background: #003737;
border: 0.125rem solid #424242;
border-radius: 5%;
margin: auto;
padding: 0.0625rem 1rem;

}

.register {
  text-align: left;
}

.core {
  margin-top: 3.4375rem;
  border-radius: 0.25rem;
}

.exam {
  display:inline-block;
}

.show {
  float:left;
  width:50%;
  padding:0.0625rem;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

@media only screen and (max-width: 40rem) {
.exam {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
  }
}

@media only screen and (max-width: 40rem) {
  .row {
      display: block;
      width: 100%;
      font-size: 1.2rem;
    }
  }

  .map {
    width:100%;
    height:18.75rem;
    border:0.0625rem solid lightgray;
    overflow: hidden;
    margin: 0; 
  }

@media only screen and (max-width: 40rem) {
  .map {
      width: 100%;
    }
  }

@media only screen and (max-width: 40rem) {
  #features, #slideshow-container, #form {
    visibility: hidden;
    clear: both;
    float: left;
    margin: 0.625rem auto 0.3125rem 1.25rem;
    width: 28%;
    display: none;
  }
}

.footer {
	color: #FFFFFF;
	background-color: #000;
	padding: 0.9375rem 0.875rem;
	text-align: center;
	font-size: 0.875rem;
	border-radius: 0.5rem;
	bottom: 0;
	border-top: 0.25rem solid #993399;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 85%;
  z-index: 99;
  font-size: 1.5rem;
  text-align: left;
  border: none;
  outline: none;
  background-color: darkblue;
  color: #B5B5B5;
  cursor: pointer;
  border-radius: 0.25rem;
}

#myBtn:hover {
  background-color: #6666FF;
  color: #000;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

.row::after {
  content: "";
  clear: both;
  display: table;
}
@media only screen and (max-width : 40rem) {
  .col-12, .col-5, .col-7 {
    width:50.05%;
  }
}