/*-------------
 	const,common
-------------*/
img {
  max-width: 100%;
}

/*-------------
 	General
-------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

ul, nav {
  list-style: none;
}

a {
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.7;
}

p {
  line-height: 2;
}

section {
  width: 100%;
  padding: 30px 30px 60px 30px;
}

section h2.title {
  font-family: "Helvetica", sans-serif;
  font-size: 36px;
  line-height: 24px;
  margin: 40px 0 30px 0;
  border-bottom: 1px solid #333;
}

section p {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  section {
    padding: 15px 20px 15px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.container {
  position: relative;
}

.anchorPos {
  position: relative;
  top: 0;
  display: block;
}

/*-------------
 	Header
-------------*/
#top > header {
  position: fixed;
}

header {
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  margin-bottom: 60px;
}

header .logo img {
  width: 300px;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav li {
  margin: 0 20px;
}

header nav li:first-child {
  margin-left: 0;
}

header nav li:last-child {
  margin-right: 0;
}

header nav a {
  display: block;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 10px;
}

@media screen and (max-width: 767px) {
  header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
  header .logo img {
    width: 240px;
  }
  header nav li {
    margin: 0 6px;
  }
  header nav li a {
    font-size: 14px;
  }
  header h2 {
    margin-bottom: 20px;
  }
}

/*----------------
 	HERO Section
----------------*/
.hero {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 140px 30px 60px 30px;
  word-break: break-word;
}

.hero .heroTxt {
  position: fixed;
  z-index: -1;
}

.hero h1 {
  font-family: "Helvetica", sans-serif;
  font-size: 100px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 120px;
}

@media screen and (max-width: 767px) {
  .hero {
    margin: 160px 20px 0 0;
  }
  .hero h1 {
    font-size: 46px;
    line-height: 48px;
    letter-spacing: -0.02em;
  }
}

.para_wrap {
  z-index: 10;
  margin: 0 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .para_wrap {
    margin: 0 20px;
  }
}

.para_wrap_img {
  margin: 80px 0;
}

/*--------------------
 	NEWS Section
---------------------*/
.news .contents {
  position: relative;
  margin-top: 90px;
}

.news .contents h2 {
  position: absolute;
  top: -90px;
  left: 0;
  right: -30px;
}

.news dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  width: 100%;
  font-size: 16px;
  line-height: 2;
}

.news dl dt {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.news dl dd {
  -ms-flex-preferred-size: 85%;
      flex-basis: 85%;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .news .contents {
    margin-top: 30px;
  }
  .news dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
  .news dl dt {
    padding: 20px 0 3px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .news dl dd {
    padding: 0;
  }
}

/*--------------------
 	BUSINESS Section
---------------------*/
.business {
  background-color: #f5f5f5;
}

.business .contents {
  position: relative;
  margin-top: 90px;
}

.business .contents h2 {
  position: absolute;
  top: -90px;
  left: -30px;
  padding-left: 30px;
}

.business .business_img img {
  width: 100%;
  max-width: 1000px;
}

/*--------------------
 	CONTACT Section
--------------------*/
.contact {
  background-color: #fff;
  margin-top: 90px;
}

.contact .contents {
  position: relative;
}

.contact .contents h2 {
  position: absolute;
  top: -90px;
  left: 0;
  right: -30px;
}

/*---------------------
 	ABOUT Section
---------------------*/
.about {
  color: #fff;
  background-color: #333;
}

.about .contents {
  position: relative;
  margin-top: 90px;
}

.about .contents h2 {
  position: absolute;
  top: -90px;
  left: -30px;
  padding-left: 30px;
  border-color: #fff;
}

.about table {
  width: 100%;
  margin-bottom: 30px;
}

.about table th {
  font-weight: 300;
  width: 160px;
  white-space: nowrap;
  padding: 8px 0;
}

.about table td {
  padding: 8px 0;
}

.about table.txtEn {
  font-family: "Helvetica", sans-serif;
  font-weight: 300;
}

.about table.txtJa {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .about table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about table tr th {
    width: 100%;
  }
  .about table tr td {
    padding: 0 0 14px 0;
  }
}

/*-------------
 	Footer
-------------*/
footer {
  text-align: center;
  font-size: 12px;
  color: #fff;
  background-color: #333;
  padding: 30px 0;
}

/*# sourceMappingURL=styles.css.map */
