/* Box Model tutorial*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/* RESET CSS BEGIN */

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-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*Reset CSS END*/


/* fonts
font-family: 'Fredoka One', cursive;
font-family: 'Noto Sans JP', sans-serif;
*/



/* colors
#0A2463
#FB3640
#605F5E
#247BA0
#E2E2E2
#020202
*/






/* Global Styles*/
* {
    margin: 0;
    padding: 0;
     box-sizing: border-box;
}

h1 {
    color: #247BA0;
    font-family: 'Fredoka One', cursive;
    text-align: center;
    font-size: 50px;
    line-height: 54px;
    vertical-align: middle;
}

h2 {
    color: #FB3640;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: left;
    font-size: 30px;
    line-height: 34px;
}

p {
    color: #020202;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: left;
    font-size: 20px;
    line-height: 24px;
    padding: 10px 0px;
}

ol {
    list-style-type: none;
margin: 0;
padding-left: 50px;
}
li {
      color: #020202;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 0px;
}


/*  NAVIGATION START */
nav {
    background-color: #0A2463;  
  }
  
  .nav {
      margin: 0 auto;
      max-width: 1200px;
      
  }
  .nav ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      position: sticky;
      top: 0;
    }
    
    .nav li {
      float: left;
    }
    
    .nav li a {
      display: block;
      color: #E2E2E2;
      text-align: center;
      padding: 10px 20px;
      text-decoration: none;
    }
    
    .nav li a:hover {
      background-color: #605F5E;
      border-radius: 8px;
    }
    
    .nav .active {
      background-color: #247ba0;
      border-radius: 8px;
    }
  
    /*  NAVIGATION END */

/*    VALUES  START   */
.wrap1 {
    padding: 200px 0px;
}
.wrap2 {

    margin: 0 auto;
    max-width: 1200px;
    padding: 50px;
    
}
.values {
    
}
.cover-text {
    z-index: 10;
    font-size: 16px;
}
.textcolumns {
    padding-top: 20px;
}

.left {
    width: 400px;
    height: 300px;
}

.right {
    margin-left: 400px;
    margin-top: -50px

}

.try {
    height: 400px;
      float: left;
}

hr {
  border: 5px solid #247BA0;
  border-radius: 5px;
    width: 75%;
    margin: auto;

}

/*    VALUES  END   */

/*    PUTTING IT ALL TOGETHER  START   */
.piat {
    
}

.center {
  display: block;
  margin: auto;
  min-width: 25%;
    max-width: 60%;
    padding-top: 50px;
}

iframe {
    margin-bottom: 50px;
    margin-top: -50px;
}


/* Clear floats columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


.imgcss {
  padding-top: 30%;
    
    
}

/* SECTIONS*/

header {
    background-color: #E2E2E2
}
main {
        background-color: white;

}

/* FOOTER */

.copyright .container {
    padding: 40px;
}

section.copyright p {
    margin-bottom: 0;
    color: #E2E2E2;
}

.copyright {
    background-color: #0A2463;
    text-align: center;
    font-size: 15px;
}

.inline {
    display: inline-block;
    vertical-align: middle;

}

.cr,
.me {
    margin-right: 40px;
}

.yt,
.tw {
    margin-right: 40px;
    width: 30px;
    

}

.cr:after,
.me:after {
    content: "";
    border: 1px solid #555555;
    margin-left: 30px;
}




