@charset "UTF-8";
*, *::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

span {
  color: inherit;
  font-weight: inherit;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #333;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

img[src$=".svg"] {
  width: 100%;
}

input, select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, select {
  vertical-align: middle;
}

/*
 * Base Setting For Daitatsu
 */
body {
  color: #000;
  font-size: 14px;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", sans-serif;
  line-height: 1.7;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 2px;
  }
}

.wrapper {
  position: relative;
}

.inner {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 80%;
    max-width: 980px;
    margin: auto;
    padding: 0;
  }
}
@media screen and (min-width: 1600px) {
  .inner {
    max-width: 1180px;
  }
}

.text--serif {
  line-height: 2;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 1200px) {
  .text--serif {
    line-height: 2.5;
    letter-spacing: 0.4em;
  }
}

.serif {
  font-family: "yumincho", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
}

.heading {
  white-space: nowrap;
}
.heading--en {
  font-weight: 600;
  font-family: "yumincho", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: 3px;
  -webkit-font-smoothing: antialiased;
}
.heading--ja {
  font-size: 13px;
}
@media screen and (min-width: 1200px) {
  .heading--en {
    font-size: 40px;
    letter-spacing: 5px;
  }
  .heading--ja {
    font-size: 14px;
    letter-spacing: 3px;
  }
}

/* normal */
@font-face {
  font-family: "yumincho";
  src: url("../fonts/yumincho.woff") format("woff");
  font-weight: normal;
}
/* bold */
@font-face {
  font-family: "yumincho";
  src: url("../fonts/yuminchobold.woff") format("woff");
  font-weight: bold;
}
/*
 * ヘッダー
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
}
.header--home, .header--recruit {
  background: transparent;
}
.header--active {
  background: transparent !important;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.header__logo {
  position: relative;
  z-index: 99;
  width: 220px;
}
.header__logo--pc {
  display: none;
}
.header__button {
  position: relative;
  z-index: 99;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.header__line {
  position: absolute;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background: #000;
  transition: 0.2s;
}
.header__line--top {
  top: 4px;
  left: 50%;
}
.header__line--bottom {
  top: 16px;
  left: 50%;
}
.header__status {
  position: absolute;
  bottom: 4px;
  width: 100%;
  font-weight: bold;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.5px;
  text-align: center;
  text-indent: 0.5px;
}
.header--active .header__line {
  background: #000;
}
.header--active .header__line--top {
  top: 10px;
  transform: translateX(-50%) rotate(30deg);
}
.header--active .header__line--bottom {
  top: 10px;
  transform: translateX(-50%) rotate(-30deg);
}
.header--active .header__status {
  color: #000;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 30px 5% 20px;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    position: static;
  }
  .header__inner {
    z-index: 99;
    padding: 40px 5% 20px;
  }
  .header__logo {
    width: 145px;
  }
  .header__logo--sp {
    display: none;
  }
  .header__logo--pc {
    display: block;
  }
  .header__button {
    display: none;
  }
}

/*
 * ナビ
 */
.nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 89;
  width: 100%;
  height: 100%;
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
}
.nav nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.nav__item {
  margin-bottom: 25px;
}
.nav__item:last-of-type {
  margin-bottom: 0;
}
.nav__item a {
  display: inline-block;
}
.nav__item a span {
  white-space: nowrap;
}
.nav__item a span:first-of-type {
  font-size: 20px;
  line-height: 1.25;
}
.nav__item a span:last-of-type {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .nav__item {
    margin-bottom: 35px;
  }
  .nav__item a span:first-of-type {
    font-size: 22px;
  }
  .nav__item a span:last-of-type {
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .nav {
    display: block;
    top: 40px;
    height: auto;
    padding: 20px 0;
    background: transparent;
    transition: 0.2s;
  }
  .nav--fixed {
    top: 0;
    background: #fff;
    background: rgba(255, 255, 255, 0.9);
  }
  .nav nav {
    position: static;
    transform: none;
  }
  .nav__list {
    display: flex;
    justify-content: center;
  }
  .nav__item {
    margin: 0 30px;
  }
  .nav__item a {
    position: relative;
    line-height: 1.5;
  }
  .nav__item a span:first-of-type {
    font-size: 18px;
  }
  .nav__item a span:last-of-type {
    letter-spacing: 1px;
  }
  .nav__item a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: center top;
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    transition: 0.3s;
    content: "";
  }
  .nav__item a:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 1600px) {
  .nav__item {
    margin: 0 40px;
  }
  .nav__item a span:first-of-type {
    font-size: 20px;
  }
  .nav__item a span:last-of-type {
    font-size: 14px;
  }
}

/*
 * フッター
 */
.footer {
  position: relative;
  padding: 150px 0 30px;
  text-align: center;
}
.footer__logo {
  width: 135px;
  margin: 0 auto 30px;
}
.footer__info {
  letter-spacing: 1px;
  text-indent: 1px;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding: 180px 0 50px;
  }
  .footer__logo {
    width: 170px;
  }
  .footer__info {
    display: flex;
    justify-content: center;
  }
  .footer__info li {
    margin: 0 10px;
  }
}/*# sourceMappingURL=main.css.map */