@charset "UTF-8";
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: #000; }

main {
  background: #fff; }

/* NAVIGATION MENU */
/*-- Navigation Menu --*/
#navToggle {
  position: absolute;
  /*bodyに対しての絶対位置指定です*/
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 30px;
  height: 25px;
  cursor: pointer; }

#navToggle div {
  position: relative; }

/*spanの絶対位置指定の親にします*/
#navToggle span {
  display: block;
  position: absolute;
  /*#navToggle div に対して*/
  width: 100%;
  border-bottom: solid 3px #999;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out; }

#navToggle span:nth-child(1) {
  top: 0; }

#navToggle span:nth-child(2) {
  top: 11px; }

#navToggle span:nth-child(3) {
  top: 22px; }

.openNav #navToggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

body.naviActive {
  overflow: hidden; }

/*2番目と3番目のspanを45度に*/
.openNav #navToggle span:nth-child(2),
.openNav #navToggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

header {
  position: fixed;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-transition: .5s ease;
  transition: .5s ease; }

.header-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 64px;
  background: #A20A0A; }
  .header-navi--brand {
    margin: auto;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    line-height: 64px; }
    .header-navi--brand img {
      display: none; }
    .header-navi--brand a {
      text-decoration: none;
      color: #BB9518; }
      .header-navi--brand a:visited {
        color: #BB9518; }
  .header-navi--description {
    display: none; }
  .header-navi--sw {
    position: relative;
    width: 64px;
    height: 64px;
    background: #000;
    z-index: 1000; }
    .header-navi--sw__text {
      display: none; }

nav {
  min-height: 100vh;
  z-index: 5;
  opacity: 0;
  background: #A20A0A url("../images/img-gourd_red.png") no-repeat center center;
  background-size: cover;
  position: absolute;
  width: 100%;
  -webkit-transition: ease 1s;
  transition: ease 1s;
  left: -100vw; }
  nav ul {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    list-style-type: none;
    margin: 0;
    padding: 60px 0 0; }
    nav ul li:not(:last-child) {
      border-bottom: 1px solid #cdcdcd; }
    nav ul li.insta {
      background: #000;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }
    nav ul a {
      display: inline-block;
      width: 100%;
      text-align: center;
      text-decoration: none;
      font-size: 20px;
      color: #fff;
      padding: 1em; }
      nav ul a:hover {
        color: #BB9518; }

.openNav nav {
  display: block;
  opacity: 1;
  left: 0; }

.insta a small {
  font-size: .6em; }

@media screen and (min-width: 960px) {
  .have-bg-color .header-navi--brand {
    width: 200px; }
  .have-bg-color .header-navi--description--title {
    font-size: 12px; }
  .header-navi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: none;
    height: 100vh; }
    .header-navi--sw {
      top: 50%;
      height: 100px; }
      .header-navi--sw__text {
        display: block;
        color: #fff;
        font-size: 12px;
        text-transform: uppercase;
        text-align: center; }
    .header-navi--brand {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 240px;
      margin: 0;
      -webkit-transition: .5s ease;
      transition: .5s ease; }
      .header-navi--brand img {
        display: block;
        margin: 20px auto; }
    .header-navi--description {
      display: block; }
      .header-navi--description--title {
        padding: .5em 0;
        font-size: 16px;
        color: #fff;
        background: rgba(0, 0, 0, 0.3);
        text-align: center;
        -webkit-transition: .5s ease;
        transition: .5s ease; }
      .header-navi--description--body {
        padding: .5em;
        color: #fff; }
  nav {
    opacity: 1; } }

/* --- 共通 --- */
a[href^="tel:"] {
  color: #fff;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; }
  @media screen and (min-width: 560px) {
    a[href^="tel:"] {
      pointer-events: none;
      text-decoration: none; } }

.text-right {
  text-align: right; }

.top-image {
  width: 100%;
  height: 100vh;
  background: url("../images/img-top.jpg") no-repeat center center;
  background-size: cover; }
  .top-image--text {
    display: none; }

.footer-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6); }
  .footer-menu--header__text {
    text-align: center; }
  .footer-menu--contents {
    -webkit-transition: all .5s ease;
    transition: all .5s ease; }
  .footer-menu--title {
    font-size: 22px; }
  .footer-menu--body {
    font-size: 16px;
    margin: 10px 5px; }
  .footer-menu--contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
    .footer-menu--contact__btn {
      margin: 16px auto;
      background: rgba(255, 255, 255, 0.2);
      padding: 10px 15px;
      border-radius: 20px; }
      .footer-menu--contact__btn a {
        color: #fff;
        text-decoration: none; }
        .footer-menu--contact__btn a:visited {
          color: #fff; }

.contents-header {
  position: relative;
  height: 280px;
  background: url("../images/img_company_president.jpg") no-repeat center center;
  background-size: cover; }
  .contents-header--catchphrase {
    display: none; }
  .contents-header--title {
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 50%;
    padding: 8px;
    background: #eee;
    border-left: 20px solid #BB9518;
    font-size: 18px;
    letter-spacing: .3em;
    text-align: center; }

#company .contents-header {
  background-image: url("../images/img_company_office.jpg"); }

#works .contents-header {
  background-image: url("../images/img_works.jpg"); }

#recruit .contents-header {
  background-image: url("../images/img_recruit.jpg"); }

#equipment .contents-header {
  background-image: url("../images/img_equipment.jpg"); }

#contact .contents-header {
  background-image: url("../images/img_contact.jpg"); }

/* Google Map 設定 */
.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative; }

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%; }

.contents-main {
  padding-top: 30px;
  padding-bottom: 80px; }
  .contents-main--title {
    margin: 40px 0 40px -10px;
    padding-left: 15px;
    border-left: 20px solid #000; }
  .contents-main--section-title {
    padding-left: 15px;
    border-left: 20px solid #ccc;
    margin: 4em 0 2em; }
    .contents-main--section-title:first-child {
      margin: 1em 0 2em; }
  .contents-main--body {
    padding: 10px; }
    .contents-main--body p {
      text-indent: 1em;
      line-height: 1.8em;
      letter-spacing: .2em; }
      .contents-main--body p.signature {
        font-size: 1.1em;
        text-align: right;
        font-style: oblique; }
        .contents-main--body p.signature__pre {
          margin-top: 2em;
          letter-spacing: 0;
          text-align: right; }
    .contents-main--body__footer {
      margin-top: .9em; }

dl {
  padding: 20px 10px;
  border-bottom: 1px solid #CDD6DD; }

dt {
  color: #707F89; }

dd {
  color: #3B4043; }

table {
  width: 100%;
  border-collapse: collapse; }
  table thead th {
    font-size: 14px;
    font-weight: normal; }
  table tbody th, table tbody td {
    padding: 10px 0; }
  table tbody th {
    text-align: left; }
  table tbody td {
    text-align: center; }
    table tbody td.text-left {
      text-align: left; }
  table tr {
    border-bottom: 1px solid #000; }
  table .place {
    color: #757575;
    font-size: .9em; }
  table a, table a:visited {
    color: #000; }
  table a {
    display: block;
    position: relative; }
    table a::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }
  table a:hover {
    color: red; }

@media screen and (min-width: 960px) {
  .top-image--text {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-style: oblique; }
    .top-image--text--title {
      font-size: 4vw;
      font-weight: bold; }
    .top-image--text--body {
      text-align: center;
      font-size: 18px;
      letter-spacing: .1em; }
    .top-image--text .wrapper {
      padding: .5em;
      background: rgba(0, 0, 0, 0.6); }
  main {
    position: relative;
    width: 100%;
    background: none; }
  .footer-menu {
    display: none; }
  #obj {
    -webkit-transition: all .5s ease;
    transition: all .5s ease; }
  .scrolled .contents-hero::after {
    background: rgba(0, 0, 0, 0.8); }
  .scrolled .contents-header--title::before {
    -webkit-animation: none;
    animation: none; }
  #message .contents-header,
  #company .contents-header,
  #contact .contents-header,
  #works .contents-header,
  #equipment .contents-header,
  #recruit .contents-header {
    background-image: none; }
  #company .contents-hero {
    background-image: url("../images/img_company_office.jpg"); }
  #message .contents-hero {
    background-image: url("../images/img_company_president.jpg"); }
  #works .contents-hero {
    background-image: url("../images/img_works.jpg"); }
  #recruit .contents-hero {
    background-image: url("../images/img_recruit.jpg"); }
  #equipment .contents-hero {
    background-image: url("../images/img_equipment.jpg"); }
  #contact .contents-hero {
    background-image: url("../images/img_contact.jpg"); }
  .contents-hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: fixed;
    background-color: red;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100vh; }
    .contents-hero::after {
      -webkit-transition: all .5s ease;
      transition: all .5s ease;
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4); }
  .contents-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100vh;
    background-image: none; }
    .contents-header--catchphrase {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: auto;
      text-align: center; }
      .contents-header--catchphrase .sub-text {
        font-size: 18px;
        text-align: left; }
      .contents-header--catchphrase p {
        font-size: 3vw;
        font-style: italic;
        font-weight: bold;
        color: #fff; }
      .contents-header--catchphrase img {
        width: 160px;
        border-radius: 50%;
        margin: 0 auto; }
    .contents-header--title {
      margin: 0 auto;
      padding: .6em 0;
      width: 600px;
      position: relative;
      background: #fff;
      border-left: none;
      border-bottom: 20px solid #BB9518;
      border-radius: 30px 30px 0 0;
      font-size: 30px; }
      .contents-header--title::after {
        display: block;
        color: #757575;
        content: attr(data-text);
        font-size: 18px;
        font-weight: normal;
        font-style: oblique;
        letter-spacing: .1em;
        text-transform: capitalize; }
      .contents-header--title::before {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-right: 30px solid transparent;
        border-left: 30px solid transparent;
        border-top: 30px solid #A20A0A;
        -webkit-animation: flash 1s linear infinite;
        animation: flash 1s linear infinite; }
  @-webkit-keyframes flash {
    0%, 100% {
      opacity: 1; }
    50% {
      opacity: 0; } }
  @keyframes flash {
    0%, 100% {
      opacity: 1; }
    50% {
      opacity: 0; } }
  .contents-main {
    z-index: 100;
    margin: 0 auto;
    padding: 0;
    width: 600px;
    background: #fff; }
    .contents-main--body {
      padding: 2em; } }
