@import url(https://fonts.googleapis.com/earlyaccess/mplus1p.css);


* {
  border: 0;
  margin: 0;
  padding: 0;

  /* font */
  font-family: 'Mplus 1p', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

header {
  width: 100%;

  /* disable select */
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

body {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 80vw auto;
  background-position: center;
}


a {
  text-decoration: none;
  color: #000;
  transition: all .3s;
}

a:hover {
  color: #000;
  opacity: .5;
  text-decoration: none;
  transition: all .3s;
}

.active {
  color: #000;
  opacity: .7;
  text-decoration: none;
}
/* --- Common Area END --- */

.headerLogoSection {
  text-align: center;
  width: 100%;
}

.headerLogoSection img {
  width: 80%;
  height: auto;
  max-height: 80px;
}

.headerLogoSection a:hover {
  opacity: 1;
}

/* --- Header Logo Area END --- */

.headerMenuSection {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  /*background-color: brown;*/
}

.headerMenu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5%;
  line-height: 45px;
}

.headerMenu ul {
}

.headerMenu li {
  display: inline-flex;
  list-style: none;
  padding: 0 1px;
  text-align: center;
}

.headerMenu a {
  font-size: 18px;
  letter-spacing: .1em;
  padding: 10px 10px;
}
.spHeaderMenuSection {
  display: none;
}

/* --- Header Menu Area END --- */

@media screen and (max-width: 425px) {
  .spHeaderMenuSection {
    display: inline-block;
    width: 100%;
    margin-top: 25px;
  }

  .button_container {
    position: relative;
    /*top: 80px;*/
    margin: 0 auto;
    /*right: 45.5%;*/
    height: 15px;
    width: 26px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
  }
  .b-bg {
    /*top: 80px;*/
    /*right: 45.5%;*/
    margin: -28.5px auto 0 auto;
    height: 50px;
    width: 50px;
    background-color: rgba(0, 0, 0, .7);
    background-repeat: no-repeat;
    border-radius: 50px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  }
  .button_container:hover {
    opacity: .7;
  }
  .button_container.active {
    /* position: fixed; */
    /* top: 30px; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
  }
  .b-bg.active {
    /* display: none; */
    opacity: 0;
    animation-duration: .50s;
    animation-name: fade-out;
    -moz-animation-duration: .50s;
    -moz-animation-name: fade-out;
    -webkit-animation-duration: .50s;
    -webkit-animation-name: fade-out;
  }
  .button_container.active .top {
    -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
            transform: translateY(10px) translateX(0) rotate(45deg);
    background: #FFF;
  }
  .button_container.active .middle {
    opacity: 0;
    background: #FFF;
  }
  .button_container.active .bottom {
    -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
            transform: translateY(-10px) translateX(0) rotate(-45deg);
    background: #FFF;
  }
  .button_container span {
    background: rgba(255, 255, 255, .85);
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
  }
  .button_container span:nth-of-type(2) {
    top: 10px;
  }
  .button_container span:nth-of-type(3) {
    top: 20px;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, width .35s;
    transition: opacity .35s, visibility .35s, width .35s;
    z-index: 50;
  }
  .overlay:before {
    content: '';
    background: #000;
    left: -55%;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    -webkit-transition: left .35s ease;
    transition: left .35s ease;
  }
  .overlay:after {
    content: '';
    background: #000;
    right: -55%;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
  }
  .overlay.open {
    opacity: .8;
    visibility: visible;
    height: 100%;
  }
  .overlay.open:before {
    left: 0;
  }
  .overlay.open:after {
    right: 0;
  }
  .overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
            animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
            animation-delay: .35s;
  }
  .overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .45s;
            animation-delay: .45s;
  }
  .overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .55s;
            animation-delay: .55s;
  }
  /*.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .65s;
            animation-delay: .65s;
  }*/
  .overlay nav {
    position: relative;
    height: 70%;
    top: 70%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 50px;
    /* font-family: 'Vollkorn', serif; */
    font-weight: 300;
    text-align: center;
    z-index: 100;
  }
  .overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
  }
  .overlay ul li {
    display: block;
    height: 25%;
    height: calc(100% / 4);
    min-height: 50px;
    position: relative;
    opacity: 0;
  }
  .overlay ul li a {
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    font-size: 30px;
  }
  .overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
    width: 100%;
  }
  .overlay ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 3px;
    background: #FFF;
    -webkit-transition: .35s;
    transition: .35s;
  }
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }




  @keyframes fade-out {
        0% {
          opacity: 1;
        }

        /* 1% {
          display: block;
          opacity: 0;
        } */

        100% {
          display: none;
          opacity: 0;
        }
      }

      @-moz-keyframes fade-out {
        0% {
          opacity: 1;
        }

        /* 1% {
          display: block;
          opacity: 0;
        } */

        100% {
          display: none;
          opacity: 0;
        }
      }

      @-webkit-keyframes fade-out {
        0% {
          /* display: none; */
          opacity: 1;
        }

        /* 1% {
          display: block;
          opacity: 0;
        } */

        100% {
          display: none;
          opacity: 0;
        }
      }





  .headerMenuSection {
    display: none;
  }
}
/* --- SP Header Menu Area END --- */

.sectionContainer {
  max-width: 1440px;
  margin: auto;
  padding: 0 5% 10px 5%;
}
.sectionContainer h2.title {
  font-size: 35px;
  font-weight: 300;
  letter-spacing: .2em;
  width: 300px;
  font-style: italic;
  padding: 30px 0 25px 0;
  border-bottom: solid 1px #000;
  /*background-color: white;*/
  /*background-size: 100vw 50%;*/
  color: rgba(0, 0, 0, .8);
}
.sectionContainer p.text {
  padding: 10px 0;
  letter-spacing: .08em;
  line-height: 2.5em;
  color: rgba(0, 0, 0, .65);
  font-weight: 300;
}

/* --- Section Container Area END  */
.whatWeDoSection {

}
.ourPurposeAndValuesSection {

}
.ourInfoSection {
  margin-bottom: 80px;
}

.ourInfoSection table {
  width: 100%;
  margin-top: 30px;
  padding: 0 auto;
  border-collapse: collapse;
  /*background-color: pink;*/
}

.ourInfoSection tr {
  font-size: 15px;
}

.ourInfoSection th {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: #000;
  text-align: center;
  vertical-align: middle;
  border-top: 1px solid #ECECEC;
  border-bottom: 1px solid #ECECEC;
  padding: 25px 35px 25px 35px;
  width: 25%;
  box-sizing: border-box;
  white-space: pre;
}

.ourInfoSection td {
  font-weight: 300;
  line-height: 2;
  color: #000;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #ECECEC;
  border-bottom: 1px solid #ECECEC;
  padding: 25px 15px 25px 0;
  width: 75%;
  /*box-sizing: border-box;*/
}

.ourInfoSection ul li {
  list-style: none;
}

@media screen and (max-width: 425px) {
  .sectionContainer h2.title {
    font-size: 30px;
    text-align: center;
    letter-spacing: .2em;
    width: 100%;
    font-style: italic;
    padding: 30px auto 25px auto;
    border-bottom: solid 1px #000;
  }

  .ourInfoSection table {
    width: 100%;
    padding: 0 auto;
    margin-top: 0;
    border-collapse: collapse;
    /*background-color: pink;*/
  }

  .ourInfoSection tr {
    font-size: 15px;
  }

  .ourInfoSection th {
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    color: #000;
    text-align: left;
    vertical-align: middle;
    border-top: none;
    border-bottom: none;
    padding:  30px 0 0 0;
    width: 25%;
    box-sizing: border-box;
    white-space: pre;
    display: block;
  }

  .ourInfoSection td {
    font-weight: 300;
    line-height: 2;
    color: #000;
    text-align: left;
    vertical-align: top;
    border-top: none;
    border-bottom: none;
    padding: 10px 0 0 10px;
    width: 75%;
    white-space: nowrap;
    display: block;
    /*box-sizing: border-box;*/
  }

  .ourInfoSection ul li {
    list-style: none;
  }
}

/* --- Our Info Area END --- */

footer {
  position: absolute;
  width: 100%;
  height: 40px;



  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;


  background-color: black;
  opacity: .7;
}

.footerCopyRight {
  padding: 0 5%;
  line-height: 40px;
}

.footerCopyRight p {
  float: right;
  background-color: ;
  color: white;
  font-size: 12px;
}
