@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

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

a img {
  border: none; }

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

/*--------------------------------------------------------------------------------------------------------------
エンコーディング定義
--------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
Calc代用関数
	説明：
		Compassにはclac相当のファンクションが機能しない。
		（単位の異なる演算ができない）
		そのための代用となる。
----------------------------------------------------------------------------------------------------------*/
	/*----------------------------------------------------------------------------------------------------------
	BOX中央配置関数
		説明：
			要素を親要素topから50%に配置、すると子要素のtopが親要素の中央位置にくるので、
			子要素を自身の高さの半分マイナス上にずらす（transform: translateY(-50%))と、縦のセンタリングができる。

			width					... 自身の幅
			height					... 自身の高
			parent_width			... 親要素の幅
			parent_height			... 親要素の高

			translateX() = ( parent_width / 2 ) + ( width * -0.5 );
			translateY() = ( parent_height / 2 ) + ( height * -0.5 );

		注意事項：
			※親要素の高さが決まっている時のみ適用される。
	----------------------------------------------------------------------------------------------------------*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100; }
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200; }
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300; }
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400; }
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold; }
.wf-notosansjapanese {
  font-family: "Noto Sans Japanese", sans-serif; }

.macFont {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; }

.winFont {
  font-family: "Yu Gothic", "游ゴシック", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-weight: 500; }

.basefont {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; }

/* 基本のフォント
------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%; }

body {
  color: #000;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1em;
  line-height: 1.5;
  background-color: #fff;
  width: 100%;
  height: auto; }

#wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
  min-width: 1024px;
  position: relative; }

@media screen and (max-width: 767px) {
  #wrapper {
    min-width: 100%; } }
/* divの設定
------------------------------------------------------------*/
div {
  box-sizing: border-box; }

/* 大文字の設定
------------------------------------------------------------*/
.upperCase {
  text-transform: uppercase; }

/* リンクの色について
------------------------------------------------------------*/
a {
  color: #000;
  text-decoration: none;
  box-sizing: border-box; }

/* clearfixの定義
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.clearfix:after {
  content: "";
  display: block;
  clear: both; }

/* アニメーションを使うため先にベンダープレフィックスを定義 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* アニメーションを使うため上とセット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* アニメーション
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px); }
  50% {
    -webkit-transform: translatey(-20px);
    transform: translatey(-20px); }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px); } }
@keyframes floating {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px); }
  50% {
    -webkit-transform: translatey(-20px);
    transform: translatey(-20px); }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px); } }
.is-show {
  visibility: visible !important;
  opacity: 1 !important; }

/* loadingの定義
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 10; }

#loading_main {
  position: fixed;
  top: 45%;
  left: 50%;
  width: 160px;
  height: auto;
  -moz-transform: translate(-50%, -45%);
  -ms-transform: translate(-50%, -45%);
  -webkit-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
  text-align: center;
  z-index: 20; }

/* headerの定義
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
  width: 100%;
  min-width: 1024px;
  height: 700px;
  position: relative; }

.header-img {
  width: 45%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
  .header-img img {
    display: block;
    max-width: 100%; }

.arrow-img {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 60px;
  left: 50%;
  margin-left: -20px;
  -webkit-animation: floating 3s ease-in-out infinite;
  animation: floating 3s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }
  .arrow-img img {
    display: block;
    max-width: 100%; }

/* top gnavの定義
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#top-gnav {
  width: 100%;
  min-width: 1024px;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 0;
  visibility: hidden;
  padding: 17px 0; }
  #top-gnav ul {
    width: 750px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    #top-gnav ul li {
      -webkit-flex-basis: auto;
      flex-basis: auto;
      font-size: 1.5em;
      letter-spacing: .15em; }

/* contentsの定義
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#contents {
  width: 100%;
  height: auto; }

/* 背景lineの定義
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.line-back {
  width: 101%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover; }

.line-about {
  height: 30px; }

.line-work {
  height: 50px; }

.line-archievement {
  height: 50px; }

@media screen and (min-width: 1500px) {
  .line-about {
    height: 40px; }

  .line-work {
    height: 70px; }

  .line-archievement {
    height: 70px; } }
/* aboutの定義
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#about {
  width: 100%;
  min-width: 1024px;
  padding: 110px 0; }

.about-inner {
  width: 85%;
  margin: 0 auto; }

.about-box {
  width: 100%;
  height: auto; }

.about-title {
  text-align: center;
  font-size: 2.8em;
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 30px; }

.about-txt {
  text-align: center;
  font-size: 1.5em;
  letter-spacing: .12em;
  line-height: 1.7;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1; }
  .about-txt p {
    margin-bottom: 15px; }
    .about-txt p:last-child {
      margin-bottom: 0; }

/* workの定義
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#work {
  width: 100%;
  min-width: 1024px;
  padding: 120px 0 140px; }

.work-inner {
  width: 960px;
  margin: 0 auto; }

.work-box {
  width: 100%;
  height: auto; }

.work-title {
  text-align: center;
  font-size: 2.8em;
  letter-spacing: .15em;
  margin-bottom: 80px;
  font-weight: 600; }

.work-main {
  width: 100%;
  height: auto; }

.work-child {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  .work-child .child01 {
    -webkit-flex-basis: 270px;
    flex-basis: 270px;
    padding-right: 40px;
    box-sizing: border-box; }
  .work-child .child02 {
    -webkit-flex-basis: 690px;
    flex-basis: 690px; }
    .work-child .child02 li {
      font-size: 1.5em;
      letter-spacing: .12em;
      margin-bottom: 15px;
      -webkit-font-feature-settings: 'palt' 1;
      font-feature-settings: 'palt' 1; }
      .work-child .child02 li:last-child {
        margin-bottom: 0; }

/* arhievementの定義
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#archievement {
  width: 100%;
  min-width: 1024px;
  padding: 110px 0 190px; }

.archievement-inner {
  width: 960px;
  margin: 0 auto; }

.archievement-box {
  width: 100%;
  height: auto; }

.archievement-title {
  text-align: center;
  font-size: 2.8em;
  font-weight: 600;
  letter-spacing: .8em;
  margin-bottom: 80px;
  padding-left: 15px;
  box-sizing: border-box; }

.archievement-main {
  width: 100%;
  height: auto; }

.archievement-child {
  width: 100%;
  height: auto;
  margin-bottom: 30px; }
  .archievement-child:last-child {
    margin-bottom: 0; }
  .archievement-child .child01 {
    float: left;
    width: 270px;
    padding-right: 40px;
    box-sizing: border-box; }
    .archievement-child .child01 p:nth-of-type(1) {
      font-size: 1.4em;
      letter-spacing: .1em;
      line-height: 2; }
  .archievement-child .child02 {
    float: left;
    width: 690px; }
    .archievement-child .child02 p {
      font-size: 1.4em;
      line-height: 2; }
    .archievement-child .child02 h2 {
      font-size: 1.9em;
      letter-spacing: .15em;
      margin-bottom: 3px; }

/* footerの定義
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
  width: 100%;
  min-width: 1024px;
  height: auto;
  padding: 70px 0 50px;
  background: #e40b1e; }

.footer-inner {
  width: 100%;
  height: auto; }

.footer-img {
  width: 5.5%;
  height: auto;
  margin: 0 auto; }
  .footer-img img {
    display: block;
    max-width: 100%; }

.footer-gnav {
  width: 100%;
  min-width: 1024px;
  height: auto;
  padding: 60px 0 50px 0; }
  .footer-gnav ul {
    width: 750px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    .footer-gnav ul li {
      -webkit-flex-basis: auto;
      flex-basis: auto;
      font-size: 1.5em;
      letter-spacing: .15em;
      color: white; }
      .footer-gnav ul li a {
        color: white; }

.copylight-box {
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.2em; }

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