@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;
  text-align: center;
  margin: auto;
  padding: 0 5% 10px 5%;
}

/* --- Contact Us Area END --- */


.telSection {
  display: inline-block;
  position: relative;
  border: 1px solid rgba(0,0,0,.16);
  /* padding: 10px; */
  background:rgba(0,0,0,.777);
  border-radius: 5px;
  color: rgba(255,255,255,.7);
  margin: 10px 0px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  width: 45%;
  height: 20vh;
}

.telSection-Contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  width: 40%;
  min-width: 300px;
}

.telSection p {
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  padding: 10px;
}

.hideTelNumber:hover{
  opacity: .6;
  transition: .5s;
}

.showTelNumber {
  display: none;
}

.showTelNumber a {
  color: white;
  text-align: center;
  font-size: 20px;
  padding: 10px;
  letter-spacing: .2em;
}

/* --- Tel Area END --- */

.eMailSection {
  display: inline-block;
  position: relative;
  border: 1px solid rgba(0,0,0,.16);
  /* padding: 10px; */
  background:rgba(0,0,0,.777);
  border-radius: 5px;
  color: rgba(255,255,255,.7);
  margin: 10px 0px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  width: 45%;
  height: 20vh;
}

.eMailSection-Contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  width: 40%;
  min-width: 300px;
}

.eMailSection p {
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  padding: 10px;
}

.hideEmailAddress:hover{
  opacity: .6;
  transition: .5s;
}

.showEmailAddress {
  display: none;
}

.showEmailAddress a {
  color: white;
  text-align: center;
  font-size: 20px;
  padding: 10px;
  letter-spacing: .2em;
}

/* --- eMail Area END --- */

@media screen and (max-width: 767px) {
  .telSection {
    display: block;
    width: 100%;
    height: 200px;
    text-align: center;
  }
  .eMailSection {
    display: block;
    width: 100%;
    height: 200px;
    text-align: center;
  }
}

/* .formContainer {
	max-width:1440px;
	width:90%;
	margin:0 5%;
	position:relative;
} */

#contact {
	background:#F9F9F9;
  border: 1px solid #F9F9F9;
  border-radius: 15px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 0 1px rgba(0, 0, 0, .08);
	padding: 25px;
	margin: 30px 0 50px 0;
}

#contact h3 {
	color: black;
	display: block;
	font-size: 30px;
	font-weight: 400;
}

#contact h4 {
	margin:5px 0 15px;
	display:block;
	font-size:13px;
}

fieldset {
	border: medium none !important;
  margin: 0 0 15px -23px;
	min-width: 100%;
	padding: 0;
	width: 100%;
  font-weight: 200;
}

#contact input[type="txt"], #contact input[type="email"], #contact input[type="tel"], #contact textarea {
	width:100%;
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

#contact input[type="txt"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#contact textarea {
	height:200px;
	max-width:100%;
  resize:none;
}
fieldset.submitButton {
  margin: 0 auto;
}
#contact button {
	cursor:pointer;
	width:150px;
	border:none;
	background:#0CF;
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
}

#contact button:hover {
	background:#09C;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}

/* --- From 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;
}
