

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Jost", "Noto Sans JP", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
}

/* font */
.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.noto-sans-jp {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB; }
a:hover {
  color: #0FA0CE; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }

  img{
    vertical-align:top;
  }
/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }

/* edir */
.inner {
  width: 1000px;
  margin: 40px auto;
  position: relative;
}
.left-wire {
  float: left;
}
.right-wire {
  float: right;
}


/* menu */
header {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  height: 100px;
  width: 100%;
  top: 0;
}
header .inner {
  margin: 12px auto;
  padding: 0 20px;
}
h1 {
  display: inline-block;
  width: 120px;
  height:76px;
}
h1 img {
  display: inline-block;
  width: 100%;
}

#btn {
  display: none;
}
nav {
  display: flex;
  justify-content: left;
  padding: 10px;
  position: fixed;
  right: 0;
  top: 28px;
  margin-right: 40px;
}
nav a {
  color: #272727;
  text-decoration: none;
  margin: 0 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
}
nav a:hover {
  color: #163CC4;
  border-bottom: 1px solid #163CC4;
}

@media screen and (max-width: 900px) {
  header .inner {
    margin: 0 auto;
  }
  #btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
  }
  #btn span {
    display: block;
    background-color: #333;
    width: 36px;
    height: 2px;
    transition: all 0.5s ease;
  }
  #btn.on span {
    background-color: #fff;
  }
  #btn.on span:nth-of-type(1) {
    transform: translateY(11px) rotate(45deg);
  }
  #btn.on span:nth-of-type(2) {
    transform: scale(0);
  }
  #btn.on span:nth-of-type(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
  nav {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transition: all 0.5s ease;
    top: -500px;
    width: 100%;
    margin: 0;
    background-color: #163CC4;
  }
  nav.on {
    top: 0;
  }
  nav a {
    margin: 15px auto;
    color: #fff;
    font-size: 16px;
  }
}


/* hero */
.hero-area {
  margin: 180px auto;
}
.hero-area h2 {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 60px;
}
.hero-area p {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6;
}

/* btn */
.btn-more {
  display: block;
  background-color: #163CC4;
  
  width: 200px;
  margin: 40px auto;
  text-align: center;
  padding: 12px;
  border-radius: 24px;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 400;
  color: #fff;
}
.btn-more:hover {
  letter-spacing: 0.3em;
  transition:0.5s all;
  color: #fff;
  background-color: #163CC4;
}
.recruit-area .btn-more {
  border: solid 1px #fff;
  margin: 40px 0;
  color: #fff;
  background-color: #222;
}
.recruit-area .btn-more:hover {
  letter-spacing: 0.3em;
  transition:0.5s all;
  color: #163CC4;
  background-color: #fff;
}
.contact-area .btn-more {
  margin: 0px 0;
}
.left-caset {
  width: 48%;
  float: left;
}
.right-caset {
  width: 48%;
  float: right;
  text-align: right;
  position: relative;
}
.right-caset a {
  position: absolute;
  right: 0;
}
/* recruit */
.recruit-area {
  background: url(../images/flag.png) no-repeat bottom right;
  background-color: #222;
  background-position: 80% bottom;
  padding: 40px 0;
  color: #fff;
}
.recruit-area h3 {
  font-size: 32px;
  font-weight: 700;
}
.recruit-area p {
  max-width: 500px;
  line-height: 2;
  font-size: 16px;
}
/* contact */
.contact-area {
  padding: 40px 0;
}
.contact-area h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.contact-area p {
  max-width: 500px;
  line-height: 2;
  font-size: 16px;
}


/* footer */
footer {
  background-color: #F9F9F9;
  padding: 80px 0;
}
.sig {
  float: left;
  max-width: 400px;
}
.footer-list {
  float: left;
  max-width: 600px;
  margin-left: 80px;
}
.footer-list ul {
  list-style-type: none;
}
.footer-list li {
  margin-bottom: 20px;
  width: 50%;
  float: left;
}
.footer-list a {
  color: #222;
  font-size: 20px;
  text-decoration: none;
}
.footer-list a span {
  font-size: 12px;
  color: #222;
  display: inline-block;
  margin-left: 20px;
}
.magicss p {
  font-size: 12px;
}
address {
  font-style: normal;
  width: 50%;
  float: right;
  text-align: right;
}
.notice-wire {
  padding-top: 40px;
  margin-left: 40px;
  width: 100%;
}
.notice {
  width: 50%;
  float: left;
  list-style-type: none;
}
.notice li {
  display: inline-block;
  margin-right: 20px;
}
.notice li a {
  text-decoration: none;
  color: #163CC4;
  font-size: 12px;
}

.white-bg {
  background-color: #fff;
  display: inline;
}

/*  */
.animation {
  padding: 10px;
  animation: fadeIn 2s ease 1s 1 normal backwards;
}
 
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.c01 {
  position: relative;
  color: transparent;
}
.c01::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0%;
  right: 100%;
  bottom: 0%;
  left: 0%;
  background: #222;
}
.c01.active {
  animation-name: kf_c01a;
  animation-duration: 0s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.c01.active::before {
  animation-name: kf_c01b;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes kf_c01a {
  100% {
      color: inherit;
  }
}
@keyframes kf_c01b {
  50% {
      left: 0%;
      right: 0%;
  }
  100% {
      left: 100%;
      right: 0%;
  }
}



.css-typing{
  font-family: "Courier";
  font-size: 14px;
  width: 50em;
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation: type 5s steps(40, end);
  animation: type 5s steps(40, end);
}

.css-typing:nth-child(2) {
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  -webkit-animation: type 5s steps(40, end);
  animation: type2 5s steps(40, end);
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.css-typing:nth-child(3) {
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  -webkit-animation: type 5s steps(40, end);
  animation: type3 5s steps(40, end);
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes type {
  from {
    width: 0;
  }
}

@-webkit-keyframes type {
  from {
    width: 0;
  }
}

span {
  animation: blink 1s infinite;
}

@keyframes type2 {
  0% {
    width: 0;
  }
  from {
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes type2 {
  0% {
    width: 0;
  }
  from {
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes type3 {
  0% {
    width: 0;
  }
  from {
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes type3 {
  0% {
    width: 0;
  }
  from {
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}



/* service */
.service-area {
  background: url(../images/home-image1.jpg) no-repeat top center;
  background-size: cover;
  padding: 100px 0 60px;
}
.service-area.caset2 {
  background: url(../images/home-image2.jpg) no-repeat bottom center;
  background-size: cover;
}
.service-area.sp {
  background: url(../images/home-image1_02.jpg) no-repeat top center;
  background-size: 1000px 400px;
  padding: 400px 0 60px;
  margin: 0 auto;
}
.service-area.sp.caset2 {
  background: url(../images/home-image2_02.jpg) no-repeat top center;
  background-size: 1000px 400px;
  padding: 400px 0 60px;
  margin: 0 auto;
}
.service-area .left-wire,
.point-area .left-wire {
  width: 60%;
}
.service-area .right-wire,
.point-area .right-wire {
  width: 60%;
  margin: 0 auto;
}



#service .service-area {
  background: none;
}
#service .service-area h3 {
  font-size: 40px;
}
#service .service-area p {
  font-size: 16px;
  line-height: 2;
}
#service .service-area span.caption {
  font-size: 12px;
  margin-bottom: 12px;
  display: block;
  font-weight: 700;
}
#service .service-area .left-wire {
  width: 50%;
  margin: 0 auto;
}
#service .service-area .right-wire {
  width: 40%;
  margin: 0 auto;
}
#service .service-area .left-wire.second-caset {
  width: 40%;
  margin: 0 auto;
}
#service .service-area .right-wire.second-caset {
  width: 50%;
  margin: 0 auto;
}
.service-area .right-wire img,
.point-area .right-wire img {
  margin: 0 auto;
  display: block;
  width: auto;
}
.service-area h3 {
  font-size: 80px;
  font-weight: 700;
}
.service-area h4,
.point-area h4 {
  font-size: 32px;
  font-weight: 900;
}
.service-area p,
.point-area p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
.service-area h3 span {
  font-size: 14px;
  font-weight: 500;
}
.service-area .btn-more {
  margin: 40px 0;
}

.service-area.service-2 {
}
.service-area.service-2 .left-wire {
  width: 47%;
  text-align: center;
}
.service-area.service-2 .right-wire {
  width: 47%;
  text-align: center;
}
.service-area.service-2 img {
  display: block;
  margin: 0 auto 20px;
}
.service-area.service-2 .btn-more {
  margin: 40px auto;
}

.works-area {
  position: relative;
}
.works-area h3,
.news-area h3 {
  font-size: 80px;
  font-weight: 700;
}
.works-area p,
.news-area p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.works-area ul,
.news-area ul {
  list-style-type: none;
}
.works-area li {
  display: inline-block;
  width: 46.7%;
  margin-bottom: 40px;
}
.works-area .btn-more,
.news-area .btn-more {
  position: absolute;
  top: 0px;
  right: 0;
}
.works-area li:nth-child(odd){
  margin-right: 6%;
}
.works-area li img {
  display: block;
  width: 100%;
  height: 300px;
}
.works-area li p {
  margin: 20px 0;
}
.works-area li a {
  color: #163CC4;
  text-decoration: none;
}
.news-area p {
  margin-bottom: 40px;
}
.news-area dl {
  border-bottom: #163CC4 solid 1px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.news-area dt {
  display: inline-block;
  margin: 0 4% 0 0;
  padding: 0;
  width: 10%;
  float: left;
}
.news-area dd {
  float: left;
  margin: 0;
  padding: 0;
  font-size: 16px;
  display: inline-block;
  width: 86%;
  line-height: 2;
}
.news-area a {
  text-decoration: none;
  color: #163CC4;
}
.news-area,
.slide-area {
  margin-bottom: 200px;
}
.slide-area h3 {
  text-align: center;
  margin-bottom: 40px;
}
.swiper--wrapper {
  width: 100%;
  height: 300px;
}

.swiper-slide {
  color: #ffffff;
  max-width: 230px;
  margin-right: 40px;
  height: 100%;
  text-align: left;
}
.swiper-slide img {
  width: 230px;
  height: 167px;
  margin-bottom: 20px;
}
.swiper-slide a {
  text-decoration: none;
  color: #163CC4;
}
.swiper-slide span {
  display: block;
  margin-bottom: 12px;
}
.slide-1st {
  margin-left: 200px;
}

/* light */
#bg-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 0.2;
}

.mb-60 {
  margin-bottom: 60px;
}

/* Service */
.service-first {
  margin-top: 200px;
}

.flex-container.second-p {
  margin: 0;
  padding: 0;
  height: 200px;
}
.dammy-200 {
  width: 200px;
  height: 200px;
}
h4.caps {
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 40px;
}
.point-area {
  margin-bottom: 200px;
}

/**/
.teams-area {
  margin: 80px auto;
}
.teams-area ul {
  list-style-type: none;
}
.teams-area li {
  float: left;
  width: 30%;
  margin-left: 3%;
}
.teams-area li img {
  width: 100%;
  margin-bottom: 20px;
}
.teams-area li span {
  margin-bottom: 20px;
  display: block;
}
.teams-area li h4 {
  margin-bottom: 10px;
  display: block;
  font-size: 32px;
  font-weight: 900;
}
.teams-area li p {
  line-height: 2;
}
.profile-area {
  margin-bottom: 200px;
}
.profile-area .u-cf {
  width: 100%;
}
.profile-area dl {
  float: left;
  width: 100%;
  margin-right: 2%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;  
}
.profile-area dt {
  font-size: 12px;
}
.profile-area dd {
  font-size:16px;
  margin: 0;
  font-weight: 500;
}
.profile-area iframe {
  width: 100%;
  margin-top: 40px;
}

.t-3 {
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 8px;
  margin-bottom: 40px;
}
.t-2 h3{
  font-weight: 700;
  font-size: 60px;
  letter-spacing: 8px;
}
.t-2 p {
  font-size: 24px;
  font-weight: 700;
margin: 0;
}
.mission-area {
  margin: 100px auto;
  text-align: center;
}.mission-area span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;

}
.mission-area h2 {
font-size: 40px;
line-height: 1.2;
text-align: left;
font-weight: 900;
margin-bottom: 40px;
}
.mission-area p {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  font-weight: 700;
  }


  
.mission-area h4 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 40px;
}

.recruit-image {
  margin: 0 auto;
  max-width: 1400px;

}
.break-image {
  background: url(../images/hr-image.jpg) no-repeat center center;
  background-size: contain;
}
.break-image.recruit-image {
  background: none;
  letter-spacing: -1em;
}
.break-image.recruit-image img {
  display: inline-block;
  width: 50%;
  margin: 0;
  padding: 0;
  letter-spacing: 0em;
}
.declaration-area {
   background-color: #F1F1F1;
  padding: 60px 20px;
}
.declaration-area h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 80px;
}

.declaration-area dl {
margin-bottom: 40px;
}
.declaration-area dt {
  font-size: 24px;
  font-weight: 900;

}
.declaration-area dd {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.declaration-area .btn-more {
  width: 40%;
  margin-top: 80px;
}

.recruit-image img {
  width: 100%;
  max-height: 400px;
  margin: 160px 0;
}

.checklist {
  margin-top: 40px;
  list-style-type: none;
}
.checklist li {
  background: url(../images/news/check.png) no-repeat;
  padding-left: 40px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 500;
}
.recruit-area-2 h3 {
  font-weight: 700;
  font-size: 40px;
}
#recruit .swiper-slide {
color: #000;
}
.news-date {
  float: left;
  width: 200px;
}
.btn-more.back {
  position: inherit;
  width:100%;
}
.news-detail {
  float: left;
  width: 700px;
  position: relative;
}
.news-detail h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 60px;
}
.news-detail img {
  width: 100%;
  margin-bottom: 40px;
}
.black header,
.black header a,
.black .hero-area {
  background: #222;
  color: #fff;
}
.black .hero-area {
  margin: auto;
  padding: 180px 0;
}
.black header a:hover {
  border-color: #fff; 
}
#recruit .btn-more-entry {
  display: block;
  border: solid 1px #163CC4;
  width: 400px;
  margin: 40px auto;
  text-align: center;
  padding: 12px;
  border-radius: 24px;
  font-size: 32px;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 400;
  color: #163CC4;
  margin-bottom: 200px;
}
#recruit .btn-more-entry:hover {
  letter-spacing: 0.3em;
  transition: 0.5s all;
  color: #fff;
  background-color: #163CC4;
}
h3.works-caption {
  font-size: 32px;
}
.works-area img.first-image {
  width: 100%;
  display: block;
  height: 400px;
  margin-bottom: 40px;
}
.pp-wire ol {
  margin: 20px 0;
}
.pp-wire li {
  margin: 0 0 20px;
}
.pp-wire .pp-sig {
  margin: 0 0 40px;
}
.pp-wire {font-weight: 500;}
.pp-wire .caption {
  font-size: 20px;
}
.pp-wire p {
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.pp-wire h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.policy-option {
  background-color: #f1f1f1;
  padding: 20px;
}


.cast {
  margin: 80px 0;
}

.cast dt {
  float: left;
  max-width: 180px;  
}
.cast dt img {
  width: 100%;
}
.cast dd {
  float: left;
  max-width: 700px;  
}
.cast .name {
  font-size: 24px;
  font-weight: 700;
}
.cast .sub {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.cast p {
  font-size: 16px;
}
.contents-wire img {
  width: 100%;
  margin-bottom: 40px;
}
.contents-wire h4 {
  font-weight: 500;
  margin-bottom: 80px;
  line-height: 1.4;
}
.contents-wire dl {
  margin-bottom: 40px;
}
.contents-wire dt {
  width: 60px;
  float: left;
  padding-right: 40px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.contents-wire dd {
  max-width: 880px;
  float: left;
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.hero-area {

}
.span-image {
  background: url(../images/span-image.jpg) no-repeat top center;
  background-size: 1000px 400px;
  max-width: 1000px;
  min-height: 400px;
  margin: 0 auto;
}


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (max-width: 900px) {
  .inner {
    width: 100%;
  }
  .flex-container h2 {
    font-size: 32px;
  }
  .flex-container h2 br {
    display: block;
  }
  .sig {
    float: initial;
    margin: 0 20px;
  }
  .footer-list {
    margin: 20px;
    float: inherit;
    overflow: hidden; -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  address, .notice, footer  {
    float: initial;
    width: 100%;
    text-align: left;
  }
  section {
    width: 100%;
  }
  footer {
    padding: 40px 0 80px;
  }
  .footer-list li {
    width: 100%;
    float: initial;
  }
  .notice-wire {
    padding-top: 20px;
    margin-left: 20px;
    width: auto;
  }
  .notice {
    margin-bottom: 40px;
  }
  .recruit-area {
    background-size: 220px;
    padding: 40px 20px 160px;
    width: auto;
  }
  .recruit-area h3, .contact-area h3 {
    font-size: 20px;
    font-weight: 700;
  }
  .recruit-area p, .contact-area p {
    max-width: inherit;
    line-height: 2;
    font-size: 14px;
  }
  .contact-area, .service-area, .works-area,.news-area  {
    padding: 40px 20px;
  }
  .contact-area .left-caset {
    margin-bottom: 20px;
  }
  section {
    width: auto;
  }
  .left-wire, .right-wire {
    float: initial;
  }
  .service-area .left-wire,
  .service-area .right-wire,
  .service-area.service-2 .left-wire,
  .service-area.service-2 .right-wire {
    width: 100%;
  }
  .service-area.service-2 .left-wire {
    margin-bottom: 80px;
  }
  .service-area span {
    display: block;
  }
  .service-area .right-wire img {
    margin: 0 auto;
    display: block;
    width: 100%;
  }
  .service-area.service-2 .right-wire img {
    width: auto;
  }
  .service-area h3,.works-area h3, .news-area h3 {
    font-size: 40px;
  }
  .works-area {
    text-align: left;
  }
  .works-area .btn-more, .news-area .btn-more {
    position: inherit;
    margin-top: 0;
  }
  .works-area ul {
    margin-bottom: 0;
  }
  .works-area li {
    width: 100%;
  }
  .works-area li:nth-child(odd) {
    margin: 0;
  }
  .news-area dt, .news-area dd {
    float: initial;
    width: 100%;
  }
  .slide-1st {
    margin-left: 40px;
  }
  .t-2 h3 {
    font-size: 40px;
  }
  .t-3 {
    font-size: 32px;
  }
  .teams-area li {
    float: none;
    width: auto;
    margin: 0 20px 80px;
  }
  .teams-area li img {
    display: block;
    width: 100%;
    margin: 0 auto 20px;
  }
  .mission-area {
    margin: 40px auto 0px;
    text-align: center;
  }

  .iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    margin: 0 20px;
  }
  .mission-area p {
    margin: 20px;
    font-size: 14px;
  }
  .mission-area h4 {
    margin: 20px;
    font-size: 40px;
  }
  .mission-area h2 {
    font-size: 32px;
    margin: 0 20px;
  }
  .t-2 .inner {
    margin: 0 20px;
    width: auto;
  }
  .profile-area dl {
    float: none;
    width: auto;
    margin: 20px;
  }
  .pp-wire {
  padding:0 20px;
}
  .service-area .right-wire img, .point-area .right-wire img {
    width: 100%;
  }
  .service-area .left-wire, .point-area .left-wire {
    width: auto;
    float: none;
  }
  .service-area.caset2 {
    background-size: cover;
    background-position: left center;
  }
  .break-image {
    background-size: cover;
  }
  .service-area {
    background-size: cover;
    background-position: -180px center;
  }
  .service-area h4, .point-area h4 {
    font-size: 20px;
  }
  .point-area h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 20px;
  }
  .service-area.service-2 .left-wire {
    width: auto;
  }

.cast dt {
  float: inherit;
  max-width: 100%;  
}
.cast dd {
  float: inherit;
  max-width: 100%; 
  margin: 20px 0 0 0;
}
.cast .sub {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.news-detail {
  float: inherit;
  width: 100%;
}
.btn-more.back {
  width: 80%;
}
.news-date {
  float: inherit;
  width: 100%;
}
.news-detail h2 {
  font-size: 24px;
}
h1 {
  height: 80px;
}
h1 img {
  width: 80%;
  height: 80%;
  margin: 12px 0;
}
header {
  height: 92px;
}
.inner {
  padding: 0;
  width: 100%;
  margin: 0;
}
.hero-area h2 {
  font-size: 32px;
  margin-bottom: 40px;
}
.hero-area p {
  font-size: 20px;
  line-height: 1.6;
}
.service-area p, .point-area p {
  font-size:14px;
}
.hero-area {
  margin: 140px auto 80px;
  padding: 0 20px;
}
.service-area .left-wire {

}
.left-caset,.right-caset {
  float: inherit;
  width: 100%;
}
.right-caset {
  text-align: left;
}
.right-caset a {
  position: inherit;
    right: auto;
}
#service .service-area .left-wire {
  width: 100%;
  margin: 0 auto;
}
#service .service-area .right-wire {
  width: 100%;
  margin: 0 auto;
}
#service .service-area .left-wire.second-caset {
  width: 100%;
  margin: 0 auto;
}
#service .service-area .right-wire.second-caset {
  width: 100%;
  margin: 0 auto;
}
.second-caset img {
  width: 100%;
}
#service .service-area h3 {
  font-size: 32px;
}
.break-image.recruit-image img {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  letter-spacing: 0em;
}
.declaration-area .btn-more {
  width: 80%;
}
.service-area.sp {
  background: url(../images/home-image1_02.jpg) no-repeat top center;
  background-size: 100% 200px;
  padding: 240px 20px 60px;
  margin: 0 auto;
}
.service-area.sp.caset2 {
  background: url(../images/home-image2_02.jpg) no-repeat top center;
  background-size: 100% 200px;
  padding: 240px 20px 60px;
  margin: 0 auto;
}
.span-image {
  background: url(../images/span-image.jpg) no-repeat top center;
  background-size: 100% 200px;
  max-width: 1000px;
  min-height: 200px;
  margin: 0 auto;
}

}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}
