/*
    Theme Name: Project_Name
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, address, em, img, small, strong, b, i,
dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, canvas, footer,
header, menu, nav, section, time, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, footer, header, menu, nav, section {
  display: block; }

ul {
  list-style: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

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

em, b {
  font-style: normal; }

img {
  vertical-align: top; }

hr {
  display: block;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0; }

input, select {
  vertical-align: middle; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

html,
body {
  width: 100%;
  height: 100%;
  font-size: 10px; }

body {
  position: relative;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  @media screen and (max-width: 767px) {
    body {
      font-size: 1.3rem;
      -webkit-text-size-adjust: 100%; } }

a {
  text-decoration: none;
  color: #000000; }
  a:active, a:focus {
    text-decoration: none; }
  a:hover {
    text-decoration: underline; }

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

.acs {
  opacity: 0;
  transition: 1.5s ease-out; }
  .acs.is-inview {
    opacity: 1; }

main {
  display: block; }

input [type="submit"] {
  cursor: pointer; }

input {
  border: none;
  font-family: "Noto Sans JP", sans-serif; }

.st-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.7); }
  @media screen and (max-width: 767px) {
    .st-header {
      padding: 25px 20px; } }

.st-header__logo {
  display: block; }

@media screen and (max-width: 767px) {
  .st-header__nav {
    position: fixed;
    right: 20px;
    top: 65px;
    opacity: 0;
    visibility: hidden;
    transition: .3s; }
    .st-header__nav.is-open {
      opacity: 1;
      visibility: visible; } }
.st-header__nav ul {
  display: flex; }
  @media screen and (max-width: 767px) {
    .st-header__nav ul {
      display: block;
      padding: 20px 20px 20px 35px;
      background-color: #000000; } }
  .st-header__nav ul li + li {
    margin-left: 15px; }
    @media screen and (max-width: 767px) {
      .st-header__nav ul li + li {
        margin-left: 0; } }
  .st-header__nav ul li a {
    display: block;
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    letter-spacing: .05em;
    overflow: hidden;
    transition: .5s; }
    @media screen and (max-width: 767px) {
      .st-header__nav ul li a {
        padding: 5px 0;
        text-align: right;
        color: #ffffff; } }
    .st-header__nav ul li a:after {
      display: block;
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      bottom: 0;
      width: 100%;
      background-color: #000000;
      transition: .15s; }
      @media screen and (max-width: 960px) {
        .st-header__nav ul li a:after {
          display: none; } }
    .st-header__nav ul li a:hover {
      color: #BDBDBD;
      text-decoration: none; }
      .st-header__nav ul li a:hover:after {
        left: 100%; }

.st-header__menu {
  display: none;
  width: 35px;
  height: 35px;
  background-color: #EEEEEE; }
  @media screen and (max-width: 767px) {
    .st-header__menu {
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 999999; } }
  .st-header__menu span {
    display: block;
    width: 19px;
    height: 1px;
    background-color: #000000;
    transition: .3s; }
    .st-header__menu span:nth-child(2) {
      margin-top: 3px; }
  .st-header__menu.is-open {
    background-color: #000000; }
    .st-header__menu.is-open span {
      background-color: #ffffff; }
      .st-header__menu.is-open span:nth-child(1) {
        transform: translateY(2px) rotate(45deg); }
      .st-header__menu.is-open span:nth-child(2) {
        transform: translateY(-2px) rotate(-45deg); }

.st-footer {
  margin-top: 120px;
  background-color: #000000; }
  @media screen and (max-width: 767px) {
    .st-footer {
      margin-top: 80px; } }

.st-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 45px;
  color: #ffffff; }
  @media screen and (max-width: 767px) {
    .st-footer__inner {
      display: block;
      padding: 45px 30px; } }

.st-footer__logo {
  margin-bottom: 55px; }
  @media screen and (max-width: 767px) {
    .st-footer__logo {
      margin-bottom: 35px; } }

.st-footer__detail p {
  font-size: 1.2rem; }
  .st-footer__detail p + p {
    margin-top: 15px; }

@media screen and (max-width: 767px) {
  .st-footer__nav {
    margin-top: 35px; } }
.st-footer__nav ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 460px; }
  @media screen and (max-width: 767px) {
    .st-footer__nav ul {
      justify-content: flex-start; } }
  .st-footer__nav ul li {
    margin-bottom: 10px; }
    @media screen and (max-width: 767px) {
      .st-footer__nav ul li {
        margin-right: 15px;
        margin-bottom: 5px; } }
    .st-footer__nav ul li + li {
      margin-left: 15px; }
      @media screen and (max-width: 767px) {
        .st-footer__nav ul li + li {
          margin-left: 0; } }
    .st-footer__nav ul li a {
      color: #ffffff;
      font-weight: bold; }
      @media screen and (max-width: 767px) {
        .st-footer__nav ul li a {
          font-size: 1.2rem; } }

.st-fixed__copyright {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 30px;
  height: 100vh; }
  @media screen and (max-width: 767px) {
    .st-fixed__copyright {
      left: 8px; } }
  .st-fixed__copyright img {
    width: 8px;
    height: 184px; }
    @media screen and (max-width: 767px) {
      .st-fixed__copyright img {
        width: 6px;
        height: 138; } }

.st-fixed__language {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100vh;
  z-index: 1; }

.st-fixed__languageUnit a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  background-color: #EEEEEE; }
  @media screen and (max-width: 767px) {
    .st-fixed__languageUnit a {
      width: 24px;
      height: 44px; } }
  .st-fixed__languageUnit a.is-active {
    color: #ffffff;
    background-color: #000000; }

.st-fixed__line {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1; }

.st-fixed__lineVertical {
  position: fixed;
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 1px;
  height: 100vh;
  background-color: #EEEEEE; }

.st-fixed__lineHorizontal {
  position: fixed;
  top: 50%;
  right: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 1px;
  background-color: #EEEEEE; }

.st-fixed__circle {
  position: fixed;
  top: 50%;
  right: 0;
  left: 50%;
  z-index: -1;
  width: 600px;
  height: 600px;
  margin-top: -300px;
  margin-left: -300px;
  border: 1px solid #EEEEEE;
  border-radius: 999999px; }
  @media screen and (max-width: 767px) {
    .st-fixed__circle {
      width: 280px;
      height: 280px;
      margin-top: -140px;
      margin-left: -140px; } }

.sw-contentWrap {
  max-width: 800px;
  margin: 0 auto; }
  @media screen and (max-width: 960px) {
    .sw-contentWrap {
      padding: 0 5%; } }
  @media screen and (max-width: 767px) {
    .sw-contentWrap {
      padding: 0 30px; } }

.sw-button__normal {
  margin-top: 27px; }
  .sw-button__normal a {
    display: inline-block;
    position: relative;
    padding-top: 8px;
    padding-bottom: 10px;
    font-family: "Montserrat", sans-serif; }
    .sw-button__normal a span {
      display: flex;
      align-items: center; }
      .sw-button__normal a span:before {
        content: '';
        display: inline-block;
        width: 7px;
        height: 5px;
        margin-right: 8px;
        background-image: url(assets/img/common/arrow-01.svg);
        background-size: 7px 5px;
        background-position: center; }
    .sw-button__normal a:before {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 4px;
      background-color: #EEEEEE;
      border-radius: 2px;
      transition: .5s; }
    .sw-button__normal a:after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 15px;
      height: 4px;
      background-color: #000000;
      border-radius: 2px;
      transition: .25s; }
    .sw-button__normal a:hover {
      text-decoration: none; }
      .sw-button__normal a:hover:before {
        width: 100%; }
      .sw-button__normal a:hover:after {
        width: 100%; }
    .sw-button__normal a.if-white:before {
      background-color: #ffffff; }

.sw-button__large {
  margin-top: 35px; }
  @media screen and (max-width: 767px) {
    .sw-button__large {
      margin-top: 25px; } }
  .sw-button__large a {
    display: block;
    position: relative;
    text-align: center;
    padding: 55px 35px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    border: 1px solid #EEEEEE;
    background-color: #ffffff;
    overflow: hidden;
    transition: .5s; }
    .sw-button__large a.if-ja {
      font-family: "Noto Sans JP", sans-serif; }
    @media screen and (max-width: 767px) {
      .sw-button__large a {
        padding: 35px;
        font-size: 1.5rem; } }
    .sw-button__large a:after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      right: 30px;
      width: 10px;
      height: 7px;
      margin-top: -4px;
      background-image: url(assets/img/common/arrow-01.svg);
      background-size: 10px 7px;
      background-position: center; }
      @media screen and (max-width: 767px) {
        .sw-button__large a:after {
          right: 20px; } }
    .sw-button__large a:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: -100%;
      bottom: 0;
      width: 100%;
      height: 100%;
      background-color: #000000;
      transition: .2s; }
    .sw-button__large a:hover {
      text-decoration: none;
      background-color: #F5F5F5; }
      .sw-button__large a:hover:before {
        left: 100%; }

.sw-button__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px; }
  @media screen and (max-width: 767px) {
    .sw-button__list {
      display: block; } }
  .sw-button__list .sw-button__large {
    width: calc(50% - 15px);
    margin-top: 0; }
    @media screen and (max-width: 767px) {
      .sw-button__list .sw-button__large {
        width: 100%; } }
    @media screen and (max-width: 767px) {
      .sw-button__list .sw-button__large + .sw-button__large {
        margin-top: 15px; } }
    .sw-button__list .sw-button__large.if-col3 {
      width: calc(33.33% - 8px); }
      @media screen and (max-width: 767px) {
        .sw-button__list .sw-button__large.if-col3 {
          width: 100%; } }

.sw-button__input input {
  display: block;
  width: 100%;
  max-width: 260px;
  padding: 20px 0;
  margin: 30px auto 0;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
  border-radius: 0;
  outline: none;
  background-color: #000000;
  transition: .3s; }
  .sw-button__input input:hover {
    background-color: #616161; }

.sw-heading__normal {
  margin-bottom: 35px; }
  @media screen and (max-width: 767px) {
    .sw-heading__normal {
      margin-bottom: 25px; } }
  .sw-heading__normal .ja {
    font-size: 3.2rem;
    line-height: 1; }
    @media screen and (max-width: 767px) {
      .sw-heading__normal .ja {
        font-size: 2.4rem; } }
  .sw-heading__normal .en {
    display: block;
    margin-top: 3px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.0rem;
    color: #9E9E9E; }

.sw-heading__normalInner {
  display: inline-block; }
  .sw-heading__normalInner:after {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    margin-top: 5px;
    background-color: #EEEEEE;
    border-radius: 3px; }
    @media screen and (max-width: 767px) {
      .sw-heading__normalInner:after {
        height: 5px; } }
  .sw-heading__normalInner.if-white:after {
    background-color: #ffffff; }

.sw-project {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media screen and (max-width: 767px) {
    .sw-project {
      display: block; } }

.sw-project__unit {
  width: calc(50% - 15px);
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .sw-project__unit {
      display: block;
      width: 100%; } }
  .sw-project__unit:hover {
    text-decoration: none; }
    .sw-project__unit:hover .sw-project__bg {
      transform: scale(1.05); }
    .sw-project__unit:hover .sw-project__viewmore {
      opacity: 1; }
    .sw-project__unit:hover .sw-project__title:before {
      left: 100%; }

.sw-project__title {
  position: relative;
  transition: .3s;
  overflow: hidden; }
  .sw-project__title:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    background-color: #000000;
    transition: .2s; }
  .sw-project__title .en {
    display: block;
    font-size: 2.0rem;
    line-height: 1.3; }
    @media screen and (max-width: 767px) {
      .sw-project__title .en {
        font-size: 1.8rem; } }
  .sw-project__title .ja {
    display: block;
    margin-top: 3px;
    font-size: 1.2rem; }
    @media screen and (max-width: 767px) {
      .sw-project__title .ja {
        margin-top: 5px;
        line-height: 1.3; } }

.sw-project__image {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 6px;
  border: 6px solid #000000; }
  @media screen and (max-width: 767px) {
    .sw-project__image {
      margin-bottom: 13px; } }

.sw-project__bg {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  transition: .3s; }
  @media screen and (max-width: 767px) {
    .sw-project__bg {
      padding-top: 67.25%; } }
  .sw-project__bg:before {
    content: '';
    display: block;
    position: absolute;
    top: 0; }

.sw-project__viewmore {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: .3s; }
  .sw-project__viewmore span {
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem; }
    .sw-project__viewmore span:before {
      content: '';
      display: inline-block;
      width: 12px;
      height: 8px;
      margin-right: 8px;
      background-image: url(assets/img/common/arrow-01_white.svg);
      background-size: 12px 8px;
      background-position: center; }

.sw-news__units {
  display: flex;
  flex-wrap: wrap; }
  @media screen and (max-width: 767px) {
    .sw-news__units {
      display: block; } }

.sw-news__unit {
  width: calc(33% - 10px);
  margin-right: 15px;
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .sw-news__unit {
      display: block;
      width: 100%;
      margin-right: 0; } }
  .sw-news__unit:nth-child(3n) {
    margin-right: 0; }
  .sw-news__unit:hover {
    text-decoration: none; }
    .sw-news__unit:hover .sw-news__bg {
      transform: scale(1.05); }
    .sw-news__unit:hover .sw-news__viewmore {
      opacity: 1; }
    .sw-news__unit:hover .sw-news__heading:before {
      left: 100%; }

.sw-news__heading {
  position: relative;
  transition: .3s;
  overflow: hidden; }
  .sw-news__heading:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    background-color: #000000;
    transition: .2s; }
  .sw-news__heading .en {
    display: block;
    font-size: 2.0rem;
    font-family: "Montserrat", sans-serif;
    line-height: 1; }
  .sw-news__heading .ja {
    display: block;
    font-size: 1.1rem; }

.sw-news__info {
  margin-bottom: 3px;
  font-size: 1.1rem; }

.sw-news__title {
  line-height: 1.5; }
  @media screen and (max-width: 767px) {
    .sw-news__title {
      font-size: 1.5rem; } }

.sw-news__image {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 6px;
  border: 6px solid #000000; }

.sw-news__bg {
  position: relative;
  width: 100%;
  padding-top: 67.25%;
  background-size: cover;
  background-position: center;
  transition: .3s; }
  @media screen and (max-width: 767px) {
    .sw-news__bg {
      padding-top: 67.25%; } }

.sw-news__viewmore {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: .3s; }
  .sw-news__viewmore span {
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem; }
    .sw-news__viewmore span:before {
      content: '';
      display: inline-block;
      width: 12px;
      height: 8px;
      margin-right: 8px;
      background-image: url(assets/img/common/arrow-01_white.svg);
      background-size: 12px 8px;
      background-position: center; }

.sw-hero {
  padding: 160px 0 80px; }
  @media screen and (max-width: 767px) {
    .sw-hero {
      padding: 80px 0 40px; } }

.sw-hero__heading {
  position: relative; }
  .sw-hero__heading:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -155px;
    margin-left: -155px;
    content: '';
    display: block;
    width: 310px;
    height: 310px;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
    background-color: #ffffff; }
    @media screen and (max-width: 767px) {
      .sw-hero__heading:before {
        width: 240px;
        height: 240px;
        margin-top: -120px;
        margin-left: -120px; } }
  .sw-hero__heading:after {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -175px;
    content: '';
    display: block;
    width: 350px;
    height: 350px;
    border: 1px solid #F6F6F6;
    border-radius: 50%; }
    @media screen and (max-width: 767px) {
      .sw-hero__heading:after {
        width: 270px;
        height: 270px;
        top: 50%;
        margin-top: -135px;
        margin-left: -135px; } }
  .sw-hero__heading h1,
  .sw-hero__heading h2 {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 350px;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    font-size: 2.6rem; }
    @media screen and (max-width: 767px) {
      .sw-hero__heading h1,
      .sw-hero__heading h2 {
        width: 270px;
        height: 270px;
        font-size: 2.3rem; } }

.sw-clients {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 20px 5px;
  background-color: #F5F5F5; }
  @media screen and (max-width: 767px) {
    .sw-clients {
      padding: 10px 10px 0; } }

.sw-clients__client {
  width: calc(33.33% - 10px);
  margin-right: 15px;
  margin-bottom: 15px;
  transition: .3s; }
  @media screen and (max-width: 767px) {
    .sw-clients__client {
      width: calc(50% - 5px);
      margin-right: 10px;
      margin-bottom: 10px; } }
  .sw-clients__client:nth-of-type(3n) {
    margin-right: 0; }
    @media screen and (max-width: 767px) {
      .sw-clients__client:nth-of-type(3n) {
        margin-right: 10px; } }
  @media screen and (max-width: 767px) {
    .sw-clients__client:nth-of-type(even) {
      margin-right: 0; } }
  .sw-clients__client.if-logo {
    border: 1px solid #EEEEEE; }
    .sw-clients__client.if-logo:hover .sw-clients__image img {
      transform: scale(1.05); }
    .sw-clients__client.if-logo:hover .sw-clients__name:before {
      left: 100%; }
  .sw-clients__client:hover {
    text-decoration: none; }

.sw-clients__name {
  position: relative;
  padding-bottom: 10px;
  overflow: hidden; }
  .sw-clients__name:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    background-color: #000000;
    transition: .2s; }
  .sw-clients__name h3 {
    padding-top: 8px;
    font-size: 1.8rem; }
    @media screen and (max-width: 767px) {
      .sw-clients__name h3 {
        font-size: 1.4rem; } }
  .sw-clients__name p {
    font-size: 1.1rem; }

.sw-clients__heading {
  width: 100%;
  padding: 15px 0 35px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.0rem;
  letter-spacing: .05em; }
  @media screen and (max-width: 767px) {
    .sw-clients__heading {
      font-size: 1.8rem; } }

.sw-clients__image {
  overflow: hidden; }
  .sw-clients__image img {
    transition: .3s; }

.sw-clients__sort {
  text-align: right;
  margin-bottom: 10px;
  width: 100%; }

.sw-pagination {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #EEEEEE; }
  .sw-pagination ul {
    display: flex;
    justify-content: center; }
    .sw-pagination ul a,
    .sw-pagination ul span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      font-family: "Montserrat", sans-serif;
      background-color: #ffffff; }
      @media screen and (max-width: 767px) {
        .sw-pagination ul a,
        .sw-pagination ul span {
          width: 28px;
          height: 28px;
          font-size: 1.3rem; } }
    .sw-pagination ul span {
      color: #ffffff;
      background-color: #000000; }

.sw-form__section {
  padding: 45px;
  border: 1px solid #EEEEEE;
  background-color: #ffffff; }
  .sw-form__section + .recruit-archive__section {
    margin-top: 60px; }
    @media screen and (max-width: 767px) {
      .sw-form__section + .recruit-archive__section {
        margin-top: 30px; } }
  @media screen and (max-width: 767px) {
    .sw-form__section {
      padding: 30px; } }

.sw-form__heading {
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.0rem;
  font-family: "Montserrat", sans-serif; }
  @media screen and (max-width: 767px) {
    .sw-form__heading {
      font-size: 1.8rem; } }

.sw-form__text {
  margin-bottom: 30px; }

.sw-form__inner {
  max-width: 600px;
  margin: 0 auto; }

.sw-form__table table {
  width: 100%;
  border-top: 1px solid #EEEEEE; }
  .sw-form__table table tr th {
    width: 160px;
    padding: 20px 0;
    text-align: left;
    border-bottom: 1px solid #EEEEEE;
    vertical-align: middle; }
    @media screen and (max-width: 767px) {
      .sw-form__table table tr th {
        display: block;
        width: 100%;
        padding-bottom: 0;
        border: none; } }
    .sw-form__table table tr th span {
      display: inline-block;
      padding-left: 3px;
      color: #B70000; }
  .sw-form__table table tr td {
    padding: 20px 0;
    border-bottom: 1px solid #EEEEEE; }
    @media screen and (max-width: 767px) {
      .sw-form__table table tr td {
        display: block;
        width: 100%; } }
    .sw-form__table table tr td input {
      display: block;
      width: 100%;
      height: 42px;
      padding: 5px 10px;
      font-size: 1.5rem;
      font-family: "Noto Sans JP", sans-serif;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border: none;
      background: none;
      background-color: #F5F5F5;
      border: 1px solid #EEEEEE;
      border-radius: 0;
      outline: none; }
    .sw-form__table table tr td textarea {
      display: block;
      width: 100%;
      height: 200px;
      padding: 5px 10px;
      font-size: 1.5rem;
      font-family: "Noto Sans JP", sans-serif;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border: none;
      background: none;
      background-color: #F5F5F5;
      border: 1px solid #EEEEEE;
      border-radius: 0;
      outline: none;
      resize: none; }
    .sw-form__table table tr td .mwform-file-delete {
      display: none; }
    .sw-form__table table tr td input[type="file"] {
      padding: 10px;
      font-size: 11px; }

.sw-form__select {
  position: relative; }
  .sw-form__select select {
    display: block;
    width: 100%;
    height: 42px;
    padding: 5px 10px;
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #F5F5F5;
    border: 1px solid #EEEEEE;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  .sw-form__select:after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: 19px;
    border: 5px solid transparent;
    border-top: 5px solid #000000; }

.front-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px; }
  @media screen and (max-width: 767px) {
    .front-hero {
      height: auto;
      min-height: auto;
      margin-top: 80px;
      margin-bottom: 30px; } }

@media screen and (max-width: 960px) {
  .front-hero__inner {
    padding: 0 5%; } }

.front-hero__slider {
  max-width: 800px;
  background-color: #EEEEEE;
  border: 8px solid #000000;
  border-radius: 5px; }
  @media screen and (max-width: 767px) {
    .front-hero__slider {
      width: calc(100vw - 60px); } }
@media screen and (min-width: 1281px) and (min-height: 800px) {
  .front-hero__slider {
    max-width: 960px; } }
@media screen and (min-width: 1281px) and (min-height: 920px) {
  .front-hero__slider {
    max-width: 1080px; } }

.swiper-slide {
  display: block;
  position: relative; }
  .swiper-slide:hover .swiper-slide__image:after {
    opacity: 0.35; }
  .swiper-slide:hover .swiper-slide__image img {
    transform: scale(1.05); }

.swiper-slide__image {
  position: relative;
  width: 100%;
  background-size: cover; }
  .swiper-slide__image:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    opacity: 0;
    transition: .3s; }
  .swiper-slide__image img {
    width: 100%;
    height: auto;
    transition: .3s; }

.swiper-button-prev,
.swiper-button-next {
  width: 58px !important;
  height: 58px !important;
  margin-top: -29px !important; }
  @media screen and (max-width: 767px) {
    .swiper-button-prev,
    .swiper-button-next {
      width: 32px !important;
      height: 32px !important;
      margin-top: -16px !important; } }

.swiper-button-prev {
  left: -8px !important;
  background-image: url(assets/img/front/swiper-prev.svg) !important;
  background-size: 58px !important;
  background-position: center !important; }
  @media screen and (max-width: 767px) {
    .swiper-button-prev {
      left: -5px !important;
      background-size: 32px !important; } }

.swiper-button-next {
  right: -8px !important;
  background-image: url(assets/img/front/swiper-next.svg) !important;
  background-size: 58px !important;
  background-position: center !important; }
  @media screen and (max-width: 767px) {
    .swiper-button-next {
      right: -5px !important;
      background-size: 32px !important; } }

.swiper-pagination {
  position: static !important;
  display: flex !important;
  margin-top: 20px;
  justify-content: center !important; }

.swiper-pagination-bullet {
  margin: 0 4px !important; }

.swiper-pagination-bullet-active {
  background-color: #000000 !important; }

.swiper-slide__content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 15px 25px 15px 15px;
  color: #ffffff;
  background-color: #000000; }
  @media screen and (max-width: 767px) {
    .swiper-slide__content {
      position: static;
      padding: 10px 20px 10px 10px; } }
  .swiper-slide__content h2 {
    font-size: 1.8rem; }
    @media screen and (max-width: 767px) {
      .swiper-slide__content h2 {
        font-size: 1.5rem;
        line-height: 1.45; } }
  .swiper-slide__content p {
    font-size: 1.2rem; }
    @media screen and (max-width: 767px) {
      .swiper-slide__content p {
        font-size: 1.0rem; } }

.swiper-container {
  background-color: #000000; }

.front-hero__scroll {
  position: absolute;
  bottom: 0;
  right: 30px; }
  @media screen and (max-width: 767px) {
    .front-hero__scroll {
      display: none; } }
  .front-hero__scroll p {
    margin-bottom: 5px;
    font-size: 1.0rem;
    font-family: "Montserrat", sans-serif; }
    .front-hero__scroll p:after {
      content: '';
      display: block;
      width: 1px;
      height: 100px;
      margin: 5px auto 0;
      background-color: #000000; }
      @media screen and (max-width: 960px) {
        .front-hero__scroll p:after {
          height: 70px; } }

.front-about {
  padding-bottom: 80px; }

.front-about__heading {
  margin-bottom: 50px; }
  @media screen and (max-width: 767px) {
    .front-about__heading {
      margin-bottom: 25px; } }
  .front-about__heading > span {
    display: block;
    font-size: 2.6rem;
    line-height: 1; }
    @media screen and (max-width: 767px) {
      .front-about__heading > span {
        font-size: 1.8rem; } }
    .front-about__heading > span + span {
      margin-top: 8px; }
      @media screen and (max-width: 767px) {
        .front-about__heading > span + span {
          margin-top: 6px; } }
    .front-about__heading > span span {
      position: relative;
      display: inline-block;
      padding-bottom: 8px; }
      @media screen and (max-width: 767px) {
        .front-about__heading > span span {
          padding-bottom: 6px; } }
      .front-about__heading > span span:after {
        content: '';
        display: block;
        width: 100%;
        height: 6px;
        margin-top: 8px;
        background-color: #EEEEEE;
        border-radius: 3px; }
        @media screen and (max-width: 767px) {
          .front-about__heading > span span:after {
            height: 5px;
            margin-top: 6px; } }

.front-about__units {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 45px; }
  @media screen and (max-width: 767px) {
    .front-about__units {
      display: block;
      margin-bottom: 30px; } }

.front-about__logo {
  margin-bottom: 40px; }
  @media screen and (max-width: 767px) {
    .front-about__logo {
      margin-bottom: 25px; } }
  .front-about__logo span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.2rem; }
    @media screen and (max-width: 767px) {
      .front-about__logo span {
        font-size: 1.0rem; } }
  @media screen and (max-width: 767px) {
    .front-about__logo img {
      width: 140px;
      height: 70px; } }

.front-about__text p {
  line-height: 2; }
  .front-about__text p + p {
    margin-top: 20px; }

.front-about__imageList {
  max-width: 400px;
  flex: 1; }
  @media screen and (max-width: 767px) {
    .front-about__imageList {
      margin-top: 35px; } }
  .front-about__imageList .if-img-01 {
    margin-bottom: 30px; }
    @media screen and (max-width: 767px) {
      .front-about__imageList .if-img-01 img {
        width: 200px;
        height: auto; } }
  .front-about__imageList .if-img-02 img {
    position: relative;
    right: -30px; }
    @media screen and (max-width: 767px) {
      .front-about__imageList .if-img-02 img {
        right: auto;
        left: 45px;
        width: 200px;
        height: auto; } }

.front-member {
  padding-bottom: 100px; }
  @media screen and (max-width: 767px) {
    .front-member {
      padding-bottom: 60px; } }

.front-member__units {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media screen and (max-width: 767px) {
    .front-member__units {
      display: block; } }

.front-member__content {
  order: 2; }

.front-member__images {
  order: 1; }
  @media screen and (max-width: 767px) {
    .front-member__images {
      margin-top: 35px; } }

.front-member__text p {
  line-height: 2; }
  .front-member__text p + p {
    margin-top: 15px; }

.front-member__images .if-img-01 {
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .front-member__images .if-img-01 img {
      width: 200px;
      height: auto; } }
.front-member__images .if-img-02 img {
  position: relative;
  left: 60px; }
  @media screen and (max-width: 767px) {
    .front-member__images .if-img-02 img {
      width: 200px;
      height: auto; } }

.front-project {
  padding: 120px 0;
  background-color: rgba(0, 0, 0, 0.05); }
  @media screen and (max-width: 767px) {
    .front-project {
      padding: 60px 0; } }

.front-project__button {
  display: flex;
  justify-content: center;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .front-project__button .sw-button__normal {
      margin-top: 0; } }

.front-news {
  padding: 120px 0 0; }
  @media screen and (max-width: 767px) {
    .front-news {
      padding: 60px 0 0; } }

.front-news__heading {
  margin-bottom: 30px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.0rem; }
  @media screen and (max-width: 767px) {
    .front-news__heading {
      margin-bottom: 25px;
      font-size: 1.8rem; } }

.front-news__button {
  display: flex;
  justify-content: center;
  width: 100%; }

.project-list {
  padding-bottom: 100px; }

.project-list__nav {
  display: flex;
  justify-content: center;
  margin-bottom: 35px; }
  @media screen and (max-width: 767px) {
    .project-list__nav {
      margin-bottom: 25px; } }

.project-list__navButton {
  position: relative; }
  .project-list__navButton button {
    display: block;
    width: 180px;
    padding: 15px 15px;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    border: 1px solid #EEEEEE;
    background-color: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    transition: .3s; }
    @media screen and (max-width: 767px) {
      .project-list__navButton button {
        width: 85px;
        padding: 15px 8px 30px;
        text-align: center;
        font-size: 1.1rem; } }
    .project-list__navButton button:hover {
      cursor: pointer;
      background-color: #F5F5F5; }
  .project-list__navButton:after {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    z-index: 3;
    display: block;
    content: '';
    width: 9px;
    height: 5px;
    background-image: url(assets/img/common/arrow-02.svg);
    background-size: 9px 5px;
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s; }
    @media screen and (max-width: 767px) {
      .project-list__navButton:after {
        right: 50%;
        top: auto;
        bottom: 15px;
        margin-right: -4.5px; } }
  .project-list__navButton.is-open:after {
    transform: rotate(180deg); }

.project-list__navUnit {
  position: relative;
  margin: 0 10px; }
  @media screen and (max-width: 767px) {
    .project-list__navUnit {
      margin: 0 3px; } }

.project-list__navContent {
  position: absolute;
  top: 65px;
  left: 0;
  z-index: 9;
  padding: 15px 20px;
  background-color: #000000;
  visibility: hidden;
  opacity: 0;
  transition: .3s; }
  .project-list__navContent.is-open {
    opacity: 1;
    visibility: visible; }
  .project-list__navContent li a {
    display: block;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem; }

.project-archive {
  padding-bottom: 60px; }

.project-archive__heading {
  margin-bottom: 30px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.0rem;
  letter-spacing: .05em; }

.project-archive__list table {
  width: 100%;
  font-size: 1.2rem;
  border-top: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
  background-color: #ffffff; }
  @media screen and (max-width: 767px) {
    .project-archive__list table {
      border-right: 1px solid #EEEEEE; } }
  @media screen and (max-width: 767px) {
    .project-archive__list table tr:first-child {
      display: none; } }
  @media screen and (max-width: 767px) {
    .project-archive__list table tr {
      display: block;
      padding: 15px;
      border-bottom: 1px solid #EEEEEE; } }
  .project-archive__list table tr th {
    font-weight: normal;
    padding: 10px;
    border-right: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    background-color: #F8F8F8;
    white-space: nowrap; }
  .project-archive__list table tr td {
    padding: 10px;
    text-align: center;
    border-right: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    vertical-align: middle; }
    @media screen and (max-width: 767px) {
      .project-archive__list table tr td {
        display: block;
        width: 100%;
        padding: 0;
        border: none; } }
    .project-archive__list table tr td span {
      display: none; }
      @media screen and (max-width: 767px) {
        .project-archive__list table tr td span {
          display: inline; } }
    .project-archive__list table tr td.if-name {
      font-weight: bold;
      text-align: left; }
      @media screen and (max-width: 767px) {
        .project-archive__list table tr td.if-name {
          margin-bottom: 8px;
          line-height: 1.5; } }
      .project-archive__list table tr td.if-name a {
        pointer-events: auto;
        text-decoration: underline; }
    .project-archive__list table tr td.if-nowrap {
      white-space: nowrap; }
    .project-archive__list table tr td a {
      pointer-events: none;
      text-decoration: none; }
      .project-archive__list table tr td a:hover {
        text-decoration: none; }

.project-archive__taxonomy {
  margin-bottom: 45px; }
  .project-archive__taxonomy h1 {
    text-align: center;
    font-size: 2.8rem;
    line-height: 1; }
    .project-archive__taxonomy h1 span {
      display: block;
      padding-top: 8px;
      font-size: 1.4rem; }

.project-single {
  padding-top: 160px; }
  @media screen and (max-width: 767px) {
    .project-single {
      padding-top: 100px; } }

.project-single__section {
  padding: 60px;
  border: 1px solid #EEEEEE;
  background-color: #ffffff; }
  @media screen and (max-width: 767px) {
    .project-single__section {
      padding: 15px; } }

.project-single__heading {
  margin-bottom: 15px;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .project-single__heading {
      text-align: left; } }
  .project-single__heading h1 {
    font-size: 2.2rem; }
    @media screen and (max-width: 767px) {
      .project-single__heading h1 {
        margin-bottom: 10px;
        font-size: 1.6rem;
        line-height: 1.5; } }
  .project-single__heading p {
    font-size: 1.2rem; }

.project-single__category {
  margin-bottom: 25px; }
  .project-single__category div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
    @media screen and (max-width: 767px) {
      .project-single__category div {
        justify-content: flex-start; } }
    .project-single__category div a {
      display: block;
      margin: 0 6px 6px 0;
      padding: 0 12px;
      font-size: 1.2rem;
      height: 24px;
      line-height: 23px;
      border-radius: 12px;
      background-color: #E5E5E5;
      transition: .3s; }
      .project-single__category div a:hover {
        color: #ffffff;
        background-color: #000000;
        text-decoration: none; }

.project-single__thumbnail {
  margin-bottom: 45px; }
  @media screen and (max-width: 767px) {
    .project-single__thumbnail {
      margin-bottom: 30px; } }

.project-single__caption {
  text-align: center; }
  @media screen and (max-width: 767px) {
    .project-single__caption {
      text-align: left; } }
  .project-single__caption dt {
    margin-bottom: 5px;
    font-weight: bold; }
    @media screen and (max-width: 767px) {
      .project-single__caption dt {
        margin-bottom: 8px; } }
    .project-single__caption dt span {
      display: inline-block;
      position: relative; }
      .project-single__caption dt span:after {
        content: '';
        display: block;
        width: 100%;
        height: 4px;
        margin-top: 2px;
        background-color: #EEEEEE;
        border-radius: 2px; }
        @media screen and (max-width: 767px) {
          .project-single__caption dt span:after {
            height: 5px; } }
  .project-single__caption dd {
    margin-bottom: 20px; }
    @media screen and (max-width: 767px) {
      .project-single__caption dd {
        margin-bottom: 15px; } }

.project-single__content {
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.5rem; }
  @media screen and (max-width: 767px) {
    .project-single__content {
      font-size: 1.4rem; } }
  .project-single__content h2 {
    margin-top: 60px;
    text-align: center; }
    @media screen and (max-width: 767px) {
      .project-single__content h2 {
        text-align: left;
        margin-top: 45px; } }
  .project-single__content p {
    margin-top: 20px;
    text-align: justify;
    line-height: 2; }
  .project-single__content .wp-caption-text {
    text-align: center;
    margin-top: 10px;
    font-size: 1.1rem; }
    @media screen and (max-width: 767px) {
      .project-single__content .wp-caption-text {
        margin-top: 5px; } }
  .project-single__content img {
    margin-top: 20px;
    max-width: 100%;
    height: auto; }
  .project-single__content .wp-caption {
    width: 100% !important; }

.project-single__member {
  max-width: 550px;
  margin: 60px auto 0; }
  @media screen and (max-width: 767px) {
    .project-single__member {
      margin-top: 45px; } }

.project-single__memberHeading {
  margin-bottom: 35px;
  font-size: 1.6rem;
  text-align: center; }

.project-single__memberUnit + .project-single__memberUnit {
  margin-top: 30px; }

.project-single__memberProfile {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media screen and (max-width: 767px) {
    .project-single__memberProfile {
      display: block; } }

.project-single__memberImage {
  width: 50%;
  padding-top: 50%;
  background-size: cover;
  background-position: center;
  background-color: #F5F5F5;
  overflow: hidden; }
  @media screen and (max-width: 767px) {
    .project-single__memberImage {
      width: 220px;
      height: 220px;
      max-width: 100%;
      margin: 0 auto;
      padding: 0;
      margin-bottom: 15px; } }

.project-single__memberContent {
  width: 50%;
  padding-left: 25px; }
  @media screen and (max-width: 767px) {
    .project-single__memberContent {
      width: 100%;
      padding: 0;
      margin-bottom: 15px; } }

.project-single__memberName {
  margin-bottom: 10px; }
  @media screen and (max-width: 767px) {
    .project-single__memberName {
      margin-bottom: 5px;
      text-align: center; } }
  .project-single__memberName .ja {
    display: block;
    font-weight: bold;
    font-size: 1.8rem; }
  .project-single__memberName .en {
    display: block;
    font-size: 1.0rem;
    opacity: 0.25; }

.project-single__memberJob {
  font-size: 1.1rem; }
  @media screen and (max-width: 767px) {
    .project-single__memberJob {
      text-align: center; } }

@media screen and (max-width: 767px) {
  .project-single__memberButton .sw-button__normal {
    text-align: center;
    margin-top: 10px; } }

.project-single__memberComment {
  margin-top: 15px;
  font-size: 1.3rem; }
  @media screen and (max-width: 767px) {
    .project-single__memberComment {
      margin-top: 5px; } }

.business-section + .business-section {
  margin-top: 60px; }

.business-section__heading {
  margin-bottom: 25px;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .business-section__heading {
      margin-bottom: 20px; } }
  .business-section__heading .ja {
    display: block;
    font-size: 2.2rem; }
    @media screen and (max-width: 767px) {
      .business-section__heading .ja {
        font-size: 1.8rem; } }
  .business-section__heading .en {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem; }
    @media screen and (max-width: 767px) {
      .business-section__heading .en {
        font-size: 1.0rem; } }

.business-section__lead {
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold; }
  @media screen and (max-width: 767px) {
    .business-section__lead {
      padding: 0 25px;
      text-align: left; }
      .business-section__lead br {
        display: none; } }

.business-section__section {
  padding: 60px;
  border: 1px solid #EEEEEE;
  background-color: #ffffff; }
  @media screen and (max-width: 767px) {
    .business-section__section {
      padding: 25px; } }

.business-strength__unit {
  display: flex;
  align-items: center;
  padding: 45px 45px;
  border: 1px solid #EEEEEE;
  background-color: #ffffff; }
  .business-strength__unit + .business-strength__unit {
    margin-top: 20px; }
  @media screen and (max-width: 767px) {
    .business-strength__unit {
      display: block;
      padding: 25px; } }

@media screen and (max-width: 767px) {
  .business-strength__icon {
    text-align: center; } }

.business-strength__content {
  flex: 1;
  padding-left: 30px; }
  @media screen and (max-width: 767px) {
    .business-strength__content {
      padding-left: 0; } }

.business-strength__heading {
  margin-bottom: 15px; }
  @media screen and (max-width: 767px) {
    .business-strength__heading {
      text-align: center; } }
  .business-strength__heading h3 {
    font-size: 1.2rem; }
    .business-strength__heading h3 span {
      display: block;
      position: relative;
      left: -11px;
      margin-top: 3px;
      font-size: 2.2rem;
      line-height: 1; }
      @media screen and (max-width: 767px) {
        .business-strength__heading h3 span {
          position: static;
          font-size: 1.8rem; } }

.business-domain__lead {
  text-align: center;
  margin-bottom: 65px; }
  @media screen and (max-width: 767px) {
    .business-domain__lead {
      margin-bottom: 35px;
      text-align: left; } }

.business-domain__design {
  max-width: 460px;
  margin: 0 auto 30px; }
  @media screen and (max-width: 767px) {
    .business-domain__design {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px; } }

.business-domain__designInner {
  padding: 30px;
  background-color: #07597E; }
  @media screen and (max-width: 767px) {
    .business-domain__designInner {
      order: 1;
      padding: 30px 20px 20px; } }

.business-domain__designHeading {
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem; }
  @media screen and (max-width: 767px) {
    .business-domain__designHeading {
      font-size: 2.4rem; } }

.business-domain__designUnits {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 767px) {
    .business-domain__designUnits {
      display: block; } }

.business-domain__designUnit {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 10px;
  width: calc(50% - 5px);
  background-color: #ffffff; }
  @media screen and (max-width: 767px) {
    .business-domain__designUnit {
      width: 100%; }
      .business-domain__designUnit + .business-domain__designUnit {
        margin-top: 10px; } }
  .business-domain__designUnit h4 {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.6rem; }
  .business-domain__designUnit ul li {
    margin-top: 3px;
    font-size: 1.3rem; }

.business-domain__designText {
  margin-bottom: 13px;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .business-domain__designText {
      order: 2;
      text-align: left;
      margin: 13px 0 0; }
      .business-domain__designText br {
        display: none; } }

.business-domain__units {
  display: flex;
  justify-content: space-between;
  max-width: 590px;
  margin: 0 auto; }
  @media screen and (max-width: 767px) {
    .business-domain__units {
      display: block; } }

.business-domain__unit {
  width: calc(50% - 15px); }
  @media screen and (max-width: 767px) {
    .business-domain__unit {
      width: 100%; }
      .business-domain__unit + .business-domain__unit {
        margin-top: 15px; } }

.business-domain__unitInner {
  background-color: #EEEEEE;
  padding: 30px; }
  @media screen and (max-width: 767px) {
    .business-domain__unitInner {
      padding: 30px 20px 20px; } }

.business-domain__unitHeading {
  margin-bottom: 15px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem; }
  @media screen and (max-width: 767px) {
    .business-domain__unitHeading {
      font-size: 2.0rem; } }

.business-domain__unitContent {
  display: flex;
  justify-content: center;
  padding: 20px 10px;
  background-color: #ffffff; }
  .business-domain__unitContent ul li {
    margin-top: 3px;
    font-size: 1.3rem; }

.business-domain__unitLead {
  margin-top: 15px;
  text-align: justify;
  font-size: 1.3rem; }

.business-flow__flow {
  position: relative;
  overflow: hidden; }
  .business-flow__flow:after {
    content: '';
    display: block;
    position: absolute;
    top: 100px;
    right: 20px;
    z-index: 0;
    width: 18px;
    height: 2129px;
    background-image: url(assets/img/common/arrow-flow.svg);
    background-size: 18px 2129px; }
    @media screen and (max-width: 767px) {
      .business-flow__flow:after {
        top: 140px; } }

.business-flow__heading {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.6rem; }

.business-flow__lead {
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.3rem; }
  @media screen and (max-width: 767px) {
    .business-flow__lead {
      text-align: left; }
      .business-flow__lead br {
        display: none; } }

.business-flow__unit {
  display: flex;
  position: relative;
  z-index: 1; }
  @media screen and (max-width: 767px) {
    .business-flow__unit {
      display: block; } }

.business-flow__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  background-color: #07597E; }
  @media screen and (max-width: 767px) {
    .business-flow__head {
      width: 100%; } }
  .business-flow__head h4 {
    text-align: center;
    color: #ffffff; }
    @media screen and (max-width: 767px) {
      .business-flow__head h4 {
        padding: 5px; } }

.business-flow__content {
  flex: 1;
  padding: 20px;
  background-color: #F5F5F5; }
  @media screen and (max-width: 767px) {
    .business-flow__content {
      padding: 15px; } }
  .business-flow__content p {
    font-size: 1.3rem; }

.business-flow__arrow {
  padding: 8px 0 10px;
  text-align: center; }

.business-area__heading {
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.6rem; }

.business-area__lead {
  text-align: center; }
  @media screen and (max-width: 767px) {
    .business-area__lead {
      text-align: left; }
      .business-area__lead br {
        display: none; } }
  .business-area__lead.if-taj {
    text-align: justify;
    max-width: 520px;
    margin: 0 auto; }

.business-area__units {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin-top: 45px;
  margin-bottom: 60px;
  padding: 30px 0;
  background-image: url(assets/img/business/map.png);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat; }
  @media screen and (max-width: 767px) {
    .business-area__units {
      margin-top: 0px;
      margin-bottom: 35px; } }

.business-area__content {
  padding: 100px 0 120px;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .business-area__content {
      padding: 60px 0 60px; } }
  .business-area__content h4 {
    margin-bottom: 10px;
    font-size: 1.6rem; }
  .business-area__content ul {
    display: inline-block;
    text-align: left;
    font-size: 1.3rem; }

.business-area__unit {
  position: relative;
  z-index: 2;
  margin: 0 16px; }
  @media screen and (max-width: 767px) {
    .business-area__unit {
      margin: 0 3px; } }
  .business-area__unit h4 {
    margin-bottom: 8px; }
    @media screen and (max-width: 767px) {
      .business-area__unit h4 {
        font-size: 1.2rem; } }
  @media screen and (max-width: 767px) {
    .business-area__unit ul {
      font-size: 1.2rem; } }

.business-area__caution {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 25px;
  text-align: center;
  font-size: 1.1rem; }

.business-area__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 35px; }
  .business-area__icons + .business-area__icons {
    margin-top: 15px; }

.business-area__icon {
  margin: 0 10px 10px; }
  .business-area__icon p {
    margin-top: 8px;
    text-align: center; }

.business-target {
  padding-top: 45px; }

.business-target__target {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
  background-color: #07597E; }
  .business-target__target:before {
    display: block;
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    border: 1px solid #07597E;
    border-radius: 50%; }

.business-target__targetInner p {
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif; }
.business-target__targetInner h4 {
  padding-bottom: 11px;
  font-size: 1.8rem;
  line-height: 1.35; }

.business-target__arrow {
  text-align: center;
  margin: 20px 0; }

.business-target__innovation {
  padding: 35px 20px;
  background-color: #EEEEEE;
  border-radius: 10px; }
  @media screen and (max-width: 767px) {
    .business-target__innovation {
      padding: 25px 15px; } }

.business-target__innovationTitle {
  max-width: 150px;
  margin: 0 auto 20px;
  padding: 8px 8px 11px;
  text-align: center;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: .1em;
  background-color: #07597E;
  border-radius: 5px; }

.business-target__innovationUnits {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 767px) {
    .business-target__innovationUnits {
      display: block; } }

.business-target__innovationUnit {
  width: calc(33.33% - 8px); }
  @media screen and (max-width: 767px) {
    .business-target__innovationUnit {
      width: 100%; }
      .business-target__innovationUnit + .business-target__innovationUnit {
        margin-top: 20px; } }

.business-target__innovationHeading {
  margin-bottom: 10px;
  padding-left: 8px;
  border-left: 3px solid #07597E; }
  .business-target__innovationHeading h5 {
    margin-bottom: 3px;
    font-size: 1.6rem; }
    @media screen and (max-width: 767px) {
      .business-target__innovationHeading h5 {
        line-height: 1; } }
  .business-target__innovationHeading p {
    font-size: 1.1rem; }

.business-target__innovationList {
  border-top: 1px solid #E0E0E0;
  border-left: 1px solid #E0E0E0; }
  .business-target__innovationList li {
    padding: 10px;
    font-size: 1.2rem;
    line-height: 1.45;
    border-right: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    background-color: #ffffff; }

.business-target__impact {
  padding: 25px;
  color: #ffffff;
  text-align: center;
  background-color: #07597E;
  border-radius: 10px; }
  .business-target__impact h4 {
    margin-bottom: 10px;
    font-size: 1.6rem; }
  .business-target__impact ul {
    display: inline-block;
    text-align: left;
    font-weight: bold;
    font-size: 1.2rem; }

.about-section__heading {
  margin-bottom: 45px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.0rem;
  letter-spacing: .05em; }
  @media screen and (max-width: 767px) {
    .about-section__heading {
      margin-bottom: 30px;
      font-size: 1.8rem; } }

.about-section__lead {
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold; }
  @media screen and (max-width: 767px) {
    .about-section__lead {
      padding: 0 25px;
      text-align: left; }
      .about-section__lead br {
        display: none; } }

.about-section__section {
  padding: 60px;
  border: 1px solid #EEEEEE;
  background-color: #ffffff; }
  @media screen and (max-width: 767px) {
    .about-section__section {
      padding: 25px; } }
  .about-section__section + .about-section__section {
    margin-top: 60px; }

.about-section__table {
  max-width: 545px;
  margin: 0 auto; }
  .about-section__table tr th {
    width: 95px;
    text-align: left;
    padding-bottom: 20px; }
    @media screen and (max-width: 767px) {
      .about-section__table tr th {
        display: block;
        width: 100%;
        padding-bottom: 10px; } }
  .about-section__table tr td {
    padding-bottom: 20px; }
    @media screen and (max-width: 767px) {
      .about-section__table tr td {
        display: block;
        width: 100%;
        margin-bottom: 20px;
        border-bottom: 1px solid #EEEEEE; } }
    .about-section__table tr td p + dl {
      margin-top: 15px; }
    .about-section__table tr td dl dd {
      margin-top: 5px; }
      .about-section__table tr td dl dd + dt {
        margin-top: 15px; }
    .about-section__table tr td a {
      text-decoration: underline; }
      .about-section__table tr td a:hover {
        text-decoration: none; }
    .about-section__table tr td iframe {
      width: 100%;
      height: 250px;
      margin-top: 20px; }

.about-section__clients {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 20px 5px;
  background-color: #F5F5F5; }
  @media screen and (max-width: 767px) {
    .about-section__clients {
      padding: 10px 10px 0; } }

.about-section__client {
  width: calc(33.33% - 10px);
  border: 1px solid #EEEEEE;
  margin-right: 15px;
  margin-bottom: 15px;
  transition: .3s; }
  @media screen and (max-width: 767px) {
    .about-section__client {
      width: calc(50% - 5px);
      margin-right: 10px;
      margin-bottom: 10px; } }
  .about-section__client:nth-child(3n) {
    margin-right: 0; }
    @media screen and (max-width: 767px) {
      .about-section__client:nth-child(3n) {
        margin-right: 10px; } }
  @media screen and (max-width: 767px) {
    .about-section__client:nth-child(even) {
      margin-right: 0; } }
  .about-section__client:hover {
    opacity: 0.75; }

.mission-section__heading {
  margin-bottom: 35px; }
  @media screen and (max-width: 767px) {
    .mission-section__heading {
      margin-bottom: 15px; } }
  .mission-section__heading > span {
    display: block;
    text-align: center;
    font-size: 2.2rem;
    line-height: 1; }
    @media screen and (max-width: 767px) {
      .mission-section__heading > span {
        font-size: 1.4rem; } }
    .mission-section__heading > span + span {
      margin-top: 6px; }
      @media screen and (max-width: 767px) {
        .mission-section__heading > span + span {
          margin-top: 4px; } }
    .mission-section__heading > span span {
      position: relative;
      display: inline-block;
      padding-bottom: 8px; }
      @media screen and (max-width: 767px) {
        .mission-section__heading > span span {
          padding-bottom: 6px; } }
      .mission-section__heading > span span:after {
        content: '';
        display: block;
        width: 100%;
        height: 6px;
        margin-top: 8px;
        background-color: #EEEEEE;
        border-radius: 3px; }
        @media screen and (max-width: 767px) {
          .mission-section__heading > span span:after {
            height: 5px;
            margin-top: 6px; } }

.mission-section__section {
  border: 1px solid #EEEEEE;
  background-color: #ffffff; }

.mission-section__inner {
  padding: 60px 45px; }
  @media screen and (max-width: 767px) {
    .mission-section__inner {
      padding: 25px; } }

.mission-section__en {
  margin-bottom: 30px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem; }
  @media screen and (max-width: 767px) {
    .mission-section__en {
      padding: 0 20px;
      font-size: 1.0rem; } }

.mission-section__text {
  max-width: 500px;
  margin: 0 auto 20px; }
  .mission-section__text p {
    line-height: 2; }
    .mission-section__text p + p {
      margin-top: 20px; }

.mission-section__imgList {
  display: flex;
  flex-wrap: wrap; }

.mission-section__img {
  width: 50%; }

.mission-section__title {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.8;
  font-size: 1.5rem; }
  @media screen and (max-width: 767px) {
    .mission-section__title {
      margin-bottom: 20px;
      font-size: 1.4rem; } }

.people-archive .sw-clients {
  margin-top: 60px; }

.people-archive__units {
  display: flex;
  justify-content: center;
  margin-bottom: 45px; }
  @media screen and (max-width: 767px) {
    .people-archive__units {
      display: block; } }

.people-archive__unit {
  width: 33.33%;
  padding: 13px; }
  @media screen and (max-width: 767px) {
    .people-archive__unit {
      display: block;
      width: 100%;
      padding: 10px; } }
  .people-archive__unit:hover {
    text-decoration: none; }
    .people-archive__unit:hover .people-archive__image img {
      transform: scale(1.05); }
    .people-archive__unit:hover .people-archive__name:before {
      left: 100%; }

.people-archive__heading {
  margin-bottom: 25px;
  text-align: center; }
  .people-archive__heading span {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem;
    letter-spacing: .05em; }
    @media screen and (max-width: 767px) {
      .people-archive__heading span {
        padding-bottom: 2px;
        font-size: 1.8rem; } }
    .people-archive__heading span:after {
      content: '';
      display: block;
      width: 100%;
      height: 6px;
      margin-top: 0px;
      background-color: #EEEEEE;
      border-radius: 3px; }
      @media screen and (max-width: 767px) {
        .people-archive__heading span:after {
          height: 5px;
          margin-top: 6px; } }

.people-archive__name {
  position: relative;
  padding: 10px 0 10px;
  overflow: hidden; }
  .people-archive__name:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    background-color: #000000;
    transition: .2s; }
  .people-archive__name h3 {
    font-size: 1.8rem; }
  .people-archive__name p {
    font-size: 1.1rem; }

.people-archive__image {
  overflow: hidden; }
  .people-archive__image img {
    transition: .3s; }

.people-single .sw-project {
  margin-bottom: 30px; }

.people-single__head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 45px; }
  @media screen and (max-width: 767px) {
    .people-single__head {
      display: block; } }

.people-single__image {
  flex: 1;
  border-radius: 50%;
  overflow: hidden; }
  @media screen and (max-width: 767px) {
    .people-single__image {
      max-width: 280px;
      margin: 0 auto; } }

.people-single__name {
  width: 330px;
  padding-left: 30px; }
  @media screen and (max-width: 767px) {
    .people-single__name {
      width: 100%;
      margin-top: 20px;
      padding-left: 0; } }
  .people-single__name h2 {
    display: flex;
    align-items: center;
    margin-bottom: 20px; }
    @media screen and (max-width: 767px) {
      .people-single__name h2 {
        display: block;
        text-align: center; } }
    .people-single__name h2 .ja {
      font-size: 2.6rem;
      line-height: 1; }
      @media screen and (max-width: 767px) {
        .people-single__name h2 .ja {
          display: block;
          margin-bottom: 5px;
          font-size: 2.0rem; } }
    .people-single__name h2 .en {
      display: inline-block;
      padding-top: 2px;
      padding-left: 10px;
      font-size: 1.2rem;
      font-family: "Montserrat", sans-serif;
      line-height: 1; }
      @media screen and (max-width: 767px) {
        .people-single__name h2 .en {
          display: block;
          padding-left: 0;
          font-size: 1.1rem; } }
  .people-single__name p {
    font-size: 1.1rem; }
    @media screen and (max-width: 767px) {
      .people-single__name p {
        text-align: center;
        padding: 0 20px; } }

.people-single__profile {
  margin-bottom: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid #EEEEEE; }

.people-single__text {
  max-width: 650px;
  margin: 0 auto; }
  .people-single__text p {
    line-height: 2; }
    .people-single__text p + p {
      margin-top: 20px; }

.people-single__tag {
  display: flex;
  max-width: 650px;
  margin: 20px auto 0; }
  .people-single__tag li + li {
    margin-left: 15px; }

.people-single__heading {
  padding: 20px 0 30px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.0rem;
  letter-spacing: .05em; }

.news-single__head {
  margin-bottom: 15px; }
  .news-single__head h1 {
    margin-bottom: 5px;
    font-size: 2.0rem;
    line-height: 1.5; }
    @media screen and (max-width: 767px) {
      .news-single__head h1 {
        font-size: 1.6rem; } }
  .news-single__head p {
    font-size: 1.1rem; }

.news-single__thumbnail {
  border: 1px solid #EEEEEE; }
  .news-single__thumbnail img {
    width: 100%;
    height: auto; }

.news-single__content {
  margin-top: 35px; }
  @media screen and (max-width: 767px) {
    .news-single__content {
      margin-top: 25px; } }
  .news-single__content p {
    line-height: 2; }
    .news-single__content p + p {
      margin-top: 20px; }
  .news-single__content img {
    width: 100%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 30px; }

.news-single__button {
  margin-top: 35px;
  border-top: 1px solid #EEEEEE; }

.recruit-archive__section {
  padding: 45px;
  border: 1px solid #EEEEEE;
  background-color: #ffffff; }
  .recruit-archive__section + .recruit-archive__section {
    margin-top: 60px; }
    @media screen and (max-width: 767px) {
      .recruit-archive__section + .recruit-archive__section {
        margin-top: 30px; } }
  @media screen and (max-width: 767px) {
    .recruit-archive__section {
      padding: 30px; } }

.recruit-archive__heading {
  position: relative;
  left: -13px;
  margin-bottom: 20px;
  font-size: 2.2rem; }
  @media screen and (max-width: 767px) {
    .recruit-archive__heading {
      left: -10px;
      margin-bottom: 15px;
      font-size: 1.6rem; } }

.recruit-archive__descreption {
  margin-bottom: 20px;
  line-height: 1.85; }

.recruit-archive__info {
  padding: 40px 40px 15px;
  background-color: #F5F5F5; }
  @media screen and (max-width: 767px) {
    .recruit-archive__info {
      padding: 20px; } }
  .recruit-archive__info table tr th {
    width: 95px;
    padding-bottom: 25px;
    text-align: left; }
    @media screen and (max-width: 767px) {
      .recruit-archive__info table tr th {
        display: block;
        width: 100%;
        padding-bottom: 5px; } }
  .recruit-archive__info table tr td {
    padding-bottom: 25px; }
    @media screen and (max-width: 767px) {
      .recruit-archive__info table tr td {
        display: block;
        width: 100%;
        padding-bottom: 15px; } }

.u-container-base {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto; }

.u-align-center {
  text-align: center; }

.u-align-left {
  text-align: left; }

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

.u-margin-top-xs {
  margin-top: 5px !important; }

.u-margin-top-sm {
  margin-top: 15px !important; }

.u-margin-top-md {
  margin-top: 30px !important; }

.u-margin-top-lg {
  margin-top: 45px !important; }

.u-margin-top-xl {
  margin-top: 60px !important; }

.u-margin-right-xs {
  margin-right: 5px !important; }

.u-margin-right-sm {
  margin-right: 15px !important; }

.u-margin-right-md {
  margin-right: 30px !important; }

.u-margin-right-lg {
  margin-right: 45px !important; }

.u-margin-right-xl {
  margin-right: 60px !important; }

.u-margin-bottom-xs {
  margin-bottom: 5px !important; }

.u-margin-bottom-sm {
  margin-bottom: 15px !important; }

.u-margin-bottom-md {
  margin-bottom: 30px !important; }

.u-margin-bottom-lg {
  margin-bottom: 45px !important; }

.u-margin-bottom-xl {
  margin-bottom: 60px !important; }

.u-margin-left-xs {
  margin-left: 5px !important; }

.u-margin-left-sm {
  margin-left: 15px !important; }

.u-margin-left-md {
  margin-left: 30px !important; }

.u-margin-left-lg {
  margin-left: 45px !important; }

.u-margin-left-xl {
  margin-left: 60px !important; }

.u-padding-top-xs {
  padding-top: 5px !important; }

.u-padding-top-sm {
  padding-top: 15px !important; }

.u-padding-top-md {
  padding-top: 30px !important; }

.u-padding-top-lg {
  padding-top: 45px !important; }

.u-padding-top-xl {
  padding-top: 60px !important; }

.u-padding-right-xs {
  padding-right: 5px !important; }

.u-padding-right-sm {
  padding-right: 15px !important; }

.u-padding-right-md {
  padding-right: 30px !important; }

.u-padding-right-lg {
  padding-right: 45px !important; }

.u-padding-right-xl {
  padding-right: 60px !important; }

.u-padding-bottom-xs {
  padding-bottom: 5px !important; }

.u-padding-bottom-sm {
  padding-bottom: 15px !important; }

.u-padding-bottom-md {
  padding-bottom: 30px !important; }

.u-padding-bottom-lg {
  padding-bottom: 45px !important; }

.u-padding-bottom-xl {
  padding-bottom: 60px !important; }

.u-padding-left-xs {
  padding-left: 5px !important; }

.u-padding-left-sm {
  padding-left: 15px !important; }

.u-padding-left-md {
  padding-left: 30px !important; }

.u-padding-left-lg {
  padding-left: 45px !important; }

.u-padding-left-xl {
  padding-left: 60px !important; }

.u-fontsize-xs {
  font-size: 1rem !important; }

.u-fontsize-sm {
  font-size: 1.2rem !important; }

.u-fontsize-md {
  font-size: 1.5rem !important; }

.u-fontsize-lg {
  font-size: 1.8rem !important; }

.u-fontsize-xl {
  font-size: 2.6rem !important; }

.u-fontweight-lighter {
  font-weight: lighter !important; }

.u-fontweight-normal {
  font-weight: normal !important; }

.u-fontweight-bold {
  font-weight: bold !important; }

.u-heading-xs {
  font-size: 1rem;
  font-weight: bold;
  line-height: 2rem;
  letter-spacing: 0.1rem; }

.u-heading-sm {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2.4rem;
  letter-spacing: 0.1rem; }

.u-heading-md {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.8rem;
  letter-spacing: 0.1rem; }

.u-heading-lg {
  font-size: 2rem;
  font-weight: bold;
  line-height: 4rem;
  letter-spacing: 0.2rem; }

.u-heading-xl {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 5.2rem;
  letter-spacing: 0.2rem; }

.u-color-main {
  color: #000000; }

.u-color-sub {
  color: #ffffff; }

.u-color-white {
  color: #ffffff; }

.u-color-black {
  color: #000000; }

.u-color-text {
  color: #212121; }

.u-wrap-xs {
  width: 100%;
  max-width: 200px;
  margin: auto; }

.u-wrap-sm {
  width: 100%;
  max-width: 400px;
  margin: auto; }

.u-wrap-md {
  width: 100%;
  max-width: 600px;
  margin: auto; }

.u-wrap-lg {
  width: 100%;
  max-width: 800px;
  margin: auto; }

.u-wrap-xl {
  width: 100%;
  max-width: 1000px;
  margin: auto; }

@media screen and (min-width: 1281px) {
  .u-display-pc {
    display: block !important; } }
@media screen and (max-width: 960px) {
  .u-display-pc {
    display: none; } }

@media screen and (min-width: 1281px) {
  .u-display-tl {
    display: none; } }
@media screen and (max-width: 1280px) {
  .u-display-tl {
    display: block !important; } }
@media screen and (max-width: 767px) {
  .u-display-tl {
    display: none; } }

.u-display-sp {
  display: none !important; }
  @media screen and (max-width: 767px) {
    .u-display-sp {
      display: block !important; } }

@media screen and (max-width: 767px) {
  .u-display-none-sp {
    display: none !important; } }

.u-fadein {
  opacity: 0;
  transition: .8s;
  transform: translate(0, 50px);
  -webkit-transform: translate(0, 50px); }
  .u-fadein.is-active {
    opacity: 1.0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0); }

.u-fadein-first,
.u-fadein-second,
.u-fadein-third {
  opacity: 0;
  transition: .8s;
  transform: translate(0, 50px);
  -webkit-transform: translate(0, 50px); }
  .u-fadein-first.is-active,
  .u-fadein-second.is-active,
  .u-fadein-third.is-active {
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0); }

.u-fadein-fourth {
  opacity: 0;
  transition: .8s;
  transform: translate(0, -50px);
  -webkit-transform: translate(0, -50px); }
  .u-fadein-fourth.is-active {
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0); }

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