@charset "UTF-8";
/*
**  ===================================================================
**  各種設定：var,reset,base-font,break-point
**  ===================================================================
*/
/**
 * Foundation
**/
/*
**  ===================================================================
**  foundation CSS ※サイト全体に共通のスタイル
**  ===================================================================
*/
/*!
     * YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
     * http://cssreset.com
     * Copyright 2012 Yahoo! Inc. All rights reserved.
     * http://yuilibrary.com/license/
     */
/*
        TODO will need to remove settings on HTML since we can't namespace it.
        TODO with the prefix, should I group by selector or property for weight savings?
    */
html {
  color: #000;
  background: #FFF; }

/*
        TODO remove settings on BODY since we can't namespace it.
    */
/*
        TODO test putting a class on HEAD.
            - Fails on FF.
    */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

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

fieldset,
img {
  border: 0; }

/*
        TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
    */
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal; }

ol,
ul {
  list-style: none; }

caption,
th {
  text-align: left; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal; }

q:before,
q:after {
  content: ''; }

abbr,
acronym {
  border: 0;
  font-variant: normal; }

/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top; }

sub {
  vertical-align: text-bottom; }

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit; }

/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%; }

/*because legend doesn't inherit in IE */
legend {
  color: #000; }

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset {
  display: none; }

/*
**  ===================================================================
**  Mixin CSS
**  ===================================================================
*/
/**
 * clearfix
**/
.clearfix:after {
  content: "";
  clear: both;
  display: block; }

html {
  font-size: 62.5%;
  color: #0F1315;
  background: #fff;
  min-height: 100vh;
  opacity: 0; }
  html.loaded {
    opacity: 1;
    -webkit-transition: all .3s;
    transition: all .3s; }

body {
  font-family: "Hiragino Kaku Gothic ProN" , "Hiragino Sans" , Meiryo , sans-serif;
  font-size: 1.4rem;
  line-height: 1.56;
  margin-top: 50px;
  width: 100%; }
  body.fix {
    overflow-y: hidden; }

a {
  text-decoration: none;
  opacity: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #0F1315; }
  a:hover {
    opacity: .7;
    -webkit-transition: all .3s;
    transition: all .3s; }

picture {
  max-width: 100%;
  height: 10%; }

p {
  letter-spacing: -.3;
  max-width: 100%; }

a:hover, a:active, a:focus {
  color: #0F1315; }

b {
  font-weight: 600; }

.sp {
  display: block; }
  @media only screen and (min-width: 480px) {
    .sp {
      display: none; } }

.pc {
  display: none; }
  @media only screen and (min-width: 480px) {
    .pc {
      display: block; } }

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 15px;
  box-sizing: border-box;
  background: #012C51;
  z-index: 10; }
  header h1 img {
    height: 25px; }
  header .entry_btn {
    position: absolute;
    right: 60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    header .entry_btn img {
      width: 80px;
      height: 23px; }
  header .nav_btn {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer; }
  header .nav_btn img {
    height: 20px;
    width: auto; }
  header nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    -webkit-transition: all .5s;
    transition: all .5s; }
    header nav.close {
      opacity: 0;
      pointer-events: none; }
    header nav.open {
      opacity: 1;
      pointer-events: all; }
    header nav ul li {
      text-align: center;
      margin-bottom: 5px; }
      header nav ul li a {
        line-height: 36px;
        font-size: 1.6rem; }
    header nav .sub_nav li {
      margin-top: 30px;
      margin-bottom: 0; }
    header nav .nav_logo {
      position: absolute;
      bottom: 30px; }
      header nav .nav_logo img {
        height: 32px; }
  header .home_link {
    width: calc(100% - 40px);
    text-align: center;
    margin: 20px auto;
    padding-top: 20px;
    border-top: 1px solid #D4DBE0; }
    @media only screen and (min-width: 480px) {
      header .home_link {
        width: 330px; } }
    header .home_link a {
      font-size: 1.6rem; }

.entry_block {
  padding: 0 20px 30px;
  box-sizing: border-box;
  margin-top: 50px; }
  @media only screen and (min-width: 480px) {
    .entry_block {
      text-align: center; } }
  .entry_block h2 {
    border-top: 7px solid #012C51;
    border-bottom: 7px solid #012C51;
    text-align: center;
    padding: 17px 0; }
    .entry_block h2 img {
      width: 151px;
      height: auto; }
  .entry_block p {
    margin: 38px 0; }
  @media only screen and (min-width: 480px) {
    .entry_block a {
      width: 458px; } }

footer {
  background: #012C51;
  padding-bottom: 16px; }
  footer nav {
    border-bottom: 1px dotted #fff; }
    footer nav ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      footer nav ul li {
        text-align: center;
        height: 60px;
        width: 100%;
        background: #F4F4F4;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-bottom: 1px dotted #959595; }
        footer nav ul li:last-child {
          border-bottom: none; }
        footer nav ul li a {
          color: #012C51;
          font-size: 1.2rem; }
    footer nav .did_top {
      height: 60px;
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #fff; }
  footer .logo img {
    width: 102px;
    height: auto;
    display: block;
    margin: 42px auto 36px; }
  footer .copy {
    text-align: center; }
    footer .copy img {
      height: 10px; }

.mainvisual_slide {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative; }
  .mainvisual_slide img {
    object-fit: cover;
    width: 100%;
    height: 100%; }
  .mainvisual_slide .top_logo {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
    .mainvisual_slide .top_logo img {
      width: 194px;
      height: auto; }
  .mainvisual_slide .scrool_img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    pointer-events: none; }
    .mainvisual_slide .scrool_img img {
      height: 104px;
      width: auto; }

.mainvisual {
  height: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box; }
  @media only screen and (min-width: 480px) {
    .mainvisual {
      height: 300px;
      padding: 0 calc(50% - 450px); } }
  .mainvisual h2 {
    color: #0F1315;
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0 8px;
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 3.6rem; }
    @media only screen and (min-width: 480px) {
      .mainvisual h2 {
        font-size: 5rem;
        line-height: 1.2; } }
  .mainvisual p {
    background: rgba(255, 255, 255, 0.9);
    padding: 0 8px;
    font-weight: bold;
    line-height: 2.5rem;
    margin-top: 15px; }
    @media only screen and (min-width: 480px) {
      .mainvisual p {
        font-size: 2rem;
        line-height: 1.2; } }

.top .top_logo {
  position: absolute;
  z-index: 1;
  width: 194px;
  height: 112px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.top .top_introduction {
  background: #5CC9A7;
  padding: 43px 20px; }
  @media only screen and (min-width: 480px) {
    .top .top_introduction {
      padding: 43px calc(50vw - 450px); } }
  .top .top_introduction h3 {
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.3;
    margin: 20px 0; }
  .top .top_introduction p {
    color: #fff; }

.top .thumb_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px; }
  @media only screen and (min-width: 480px) {
    .top .thumb_wrap {
      width: 758px;
      margin: 50px auto 0; } }
  .top .thumb_wrap a {
    margin-bottom: 12px;
    position: relative; }
    @media only screen and (min-width: 480px) {
      .top .thumb_wrap a {
        pointer-events: none; } }
    .top .thumb_wrap a:after {
      content: "";
      width: 12px;
      height: 15px;
      background: url("../images/top/thumb_arrow.svg");
      background-size: contain;
      display: block;
      position: absolute;
      bottom: 6px;
      left: 50%;
      margin-left: -6px;
      -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg); }
      @media only screen and (min-width: 480px) {
        .top .thumb_wrap a:after {
          display: none; } }
    .top .thumb_wrap a img {
      width: 182px;
      height: 186px; }

.top .top_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 70px 20px;
  box-sizing: border-box;
  background: #fff; }
  @media only screen and (min-width: 480px) {
    .top .top_content {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      width: 1060px;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin: 0 auto;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .top .top_content:after {
        content: "";
        width: calc(33% - 10px);
        height: 0;
        display: block; } }
  .top .top_content .block {
    width: 100%;
    margin-bottom: 50px;
    background: #F4F4F4;
    position: relative;
    padding-bottom: 26px; }
    @media only screen and (min-width: 480px) {
      .top .top_content .block {
        width: calc(33% - 10px); }
        .top .top_content .block iframe {
          width: 100%;
          height: 184px; } }
    .top .top_content .block::after {
      content: "";
      width: 73px;
      height: 18px;
      background: url("../images/top/thumb_bg_logo.svg");
      background-size: contain;
      display: block;
      position: absolute;
      bottom: 10px;
      right: 10px; }
    .top .top_content .block:last-child {
      margin-bottom: 0; }
      @media only screen and (min-width: 480px) {
        .top .top_content .block:last-child {
          margin-bottom: 50px; } }
    .top .top_content .block iframe {
      border-bottom: 5px solid #D4DBE0; }
    .top .top_content .block a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      font-size: 1.6rem;
      font-weight: bold;
      position: relative;
      border: 1px solid #5CC9A7;
      color: #5CC9A7;
      width: calc(100% - 30px);
      margin: 12px auto;
      height: 78px;
      line-height: 1;
      background: #F2FFFB;
      -webkit-transition: all .3s;
      transition: all .3s; }
      .top .top_content .block a:after {
        content: "";
        width: 12px;
        height: 15px;
        background: url("../images/top/btn_arrow.svg");
        background-size: contain;
        display: block;
        position: absolute;
        right: 16px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all .3s;
        transition: all .3s; }
      .top .top_content .block a:hover {
        background: #67F0C6;
        color: #fff;
        -webkit-transition: all .3s;
        transition: all .3s; }
        .top .top_content .block a:hover:after {
          content: "";
          width: 12px;
          height: 15px;
          background: url("../images/top/btn_arrow_white.svg");
          background-size: contain;
          display: block;
          position: absolute;
          right: 16px;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          -webkit-transition: all .3s;
          transition: all .3s; }

.about .mainvisual {
  background: url("../images/about/mainvisual_sp.jpg");
  background-size: cover;
  background-position: center; }

.about .about_read {
  background: url("../images/about/about_read_bg.jpg");
  background-size: cover;
  height: 505px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 20px; }
  @media only screen and (min-width: 480px) {
    .about .about_read {
      background: url("../images/about/about_read_bg_pc.jpg");
      background-size: cover;
      padding: 0 calc(50vw - 450px); } }
  .about .about_read.about_read02 {
    background: url("../images/about/about_read_bg02.jpg");
    background-size: cover; }
    @media only screen and (min-width: 480px) {
      .about .about_read.about_read02 {
        background: url("../images/about/about_read_bg02_pc.jpg");
        background-size: cover; } }
  .about .about_read h3 {
    color: #fff;
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 24px; }
    @media only screen and (min-width: 480px) {
      .about .about_read h3 br {
        display: none; } }
  .about .about_read p {
    color: #fff; }

@media only screen and (min-width: 480px) {
  .about .about_img02 {
    width: 100%;
    height: 606px; } }

.works .mainvisual {
  background: url("../images/works/mainvisual_sp.jpg");
  background-size: cover;
  background-position: center; }

@media only screen and (min-width: 480px) {
  .works .works_block {
    width: 900px;
    margin: 0 auto; } }

.works .works_block#sales .img {
  border-bottom: 10px solid #D82A00; }
  @media only screen and (min-width: 480px) {
    .works .works_block#sales .img {
      border: none; } }

@media only screen and (min-width: 480px) {
  .works .works_block#sales .visual {
    background: #D82A00;
    border-radius: 20px; } }

.works .works_block#assistant .img {
  border-bottom: 10px solid #0082C3; }
  @media only screen and (min-width: 480px) {
    .works .works_block#assistant .img {
      border: none; } }

@media only screen and (min-width: 480px) {
  .works .works_block#assistant .visual {
    background: #0082C3;
    border-radius: 20px; } }

.works .works_block#assistant .title br {
  display: none; }
  @media only screen and (min-width: 480px) {
    .works .works_block#assistant .title br {
      display: block; } }

.works .works_block#logistics .img {
  border-bottom: 10px solid #219148; }
  @media only screen and (min-width: 480px) {
    .works .works_block#logistics .img {
      border: none; } }

@media only screen and (min-width: 480px) {
  .works .works_block#logistics .visual {
    background: #219148;
    border-radius: 20px; } }

.works .works_block .visual {
  position: relative; }
  @media only screen and (min-width: 480px) {
    .works .works_block .visual {
      height: 450px; } }
  .works .works_block .visual .img img {
    width: 100%;
    height: auto; }
    @media only screen and (min-width: 480px) {
      .works .works_block .visual .img img {
        height: 450px;
        width: auto; } }
  .works .works_block .visual .title {
    position: absolute;
    left: 20px; }
    @media only screen and (min-width: 480px) {
      .works .works_block .visual .title {
        top: 20px !important;
        left: 610px; } }
    .works .works_block .visual .title h2 {
      color: #0F1315;
      font-size: 4rem;
      background: rgba(255, 255, 255, 0.9);
      padding: 0 8px;
      font-family: din-2014, sans-serif;
      font-weight: 700;
      font-style: normal;
      line-height: 4.4rem; }
    .works .works_block .visual .title p {
      background: rgba(255, 255, 255, 0.9);
      padding: 0 8px;
      font-weight: bold;
      font-size: 1.8rem;
      line-height: 2.8rem;
      margin-top: 15px;
      display: inline-block; }
  .works .works_block .visual .text {
    padding: 20px;
    box-sizing: border-box; }
    @media only screen and (min-width: 480px) {
      .works .works_block .visual .text {
        position: absolute;
        top: auto;
        bottom: 20px;
        left: 610px;
        padding: 0 20px 0 0; }
        .works .works_block .visual .text p {
          color: #fff; } }

.works .staff_inner {
  padding: 0 20px;
  box-sizing: border-box; }
  @media only screen and (min-width: 480px) {
    .works .staff_inner {
      width: 900px;
      margin: 20px auto; } }
  .works .staff_inner h4 {
    margin-bottom: 36px;
    line-height: 1; }

.works .view_all_staff {
  margin-bottom: 57px; }

.message .mainvisual {
  background: url("../images/message/mainvisual_sp.jpg");
  background-size: cover;
  background-position: center; }

.message .president_block .visual {
  position: relative; }
  @media only screen and (min-width: 480px) {
    .message .president_block .visual {
      width: 900px;
      margin: 0 auto; } }
  .message .president_block .visual .img {
    border-bottom: 10px solid #012C51; }
    @media only screen and (min-width: 480px) {
      .message .president_block .visual .img {
        border-bottom: none; } }
    .message .president_block .visual .img img {
      width: 100%;
      height: auto; }
  .message .president_block .visual .title {
    position: absolute;
    left: 20px; }
    @media only screen and (min-width: 480px) {
      .message .president_block .visual .title {
        right: 20px;
        left: auto; } }
    .message .president_block .visual .title h2 {
      color: #0F1315;
      font-size: 4rem;
      background: rgba(255, 255, 255, 0.9);
      padding: 0 8px;
      font-family: din-2014, sans-serif;
      font-weight: 700;
      font-style: normal;
      line-height: 4.4rem; }
    .message .president_block .visual .title p {
      background: rgba(255, 255, 255, 0.9);
      padding: 0 8px;
      font-weight: bold;
      font-size: 1.8rem;
      line-height: 2.8rem;
      margin-top: 15px;
      display: inline-block; }
  .message .president_block .visual .text {
    padding: 20px;
    box-sizing: border-box; }

@media only screen and (min-width: 480px) {
  .message .profile_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%; }
    .message .profile_wrap img {
      width: 300px;
      height: auto;
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto; }
    .message .profile_wrap .text {
      margin-left: 20px; } }

.message .profile {
  width: 100%; }
  .message .profile .name {
    font-size: 2rem;
    font-weight: bold; }
    .message .profile .name span {
      display: block;
      font-weight: normal;
      font-size: 1.4rem; }

.career .mainvisual {
  background: url("../images/career/mainvisual_sp.jpg");
  background-size: cover;
  background-position: center; }

.career .read_densenist {
  background: #CC4509;
  padding: 26px 20px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 80px; }
  @media only screen and (min-width: 480px) {
    .career .read_densenist {
      padding: 26px 20px 64px 20px; } }
  .career .read_densenist:before {
    content: "";
    width: 100%;
    height: 74px;
    background: #FBFCF7;
    position: absolute;
    right: 0;
    bottom: -80px; }
  .career .read_densenist:after {
    content: "";
    width: 74px;
    height: 134px;
    background: url("../images/career/did_boy.png");
    background-size: contain;
    position: absolute;
    right: 40px;
    bottom: -57px;
    display: block; }
    @media only screen and (min-width: 480px) {
      .career .read_densenist:after {
        right: calc(50% - 384px); } }
  .career .read_densenist .text {
    background: url("../images/career/read_baloon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 286px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 26px 30px;
    box-sizing: border-box; }
    @media only screen and (min-width: 480px) {
      .career .read_densenist .text {
        background: url("../images/career/read_baloon_pc.svg");
        background-size: contain;
        width: 868px;
        height: 340px;
        margin: 0 auto; } }
    .career .read_densenist .text h3 {
      font-size: 3rem;
      color: #012C51;
      font-weight: bold;
      margin-top: -1em; }
      @media only screen and (min-width: 480px) {
        .career .read_densenist .text h3 {
          font-size: 5.4rem;
          line-height: 1.2;
          margin-bottom: .5em; } }
    .career .read_densenist .text p {
      color: #012C51; }
      @media only screen and (min-width: 480px) {
        .career .read_densenist .text p {
          padding: 0 100px; } }

@media only screen and (min-width: 480px) {
  .career .step {
    width: 900px;
    margin: 0 auto; } }

.career .step h4 {
  color: #CC4509;
  line-height: 58px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center; }

.career .step .step_block .step_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 10px 20px;
  box-sizing: border-box;
  background: #F4F4F4;
  position: relative;
  height: 72px;
  font-size: 2rem;
  cursor: pointer; }
  .career .step .step_block .step_title:after {
    content: "";
    width: 26px;
    height: 26px;
    background: url("../images/career/btn_plus.svg");
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    right: 7px;
    top: calc(50% - 13px); }
  .career .step .step_block .step_title.active:after {
    content: "";
    width: 26px;
    height: 26px;
    background: url("../images/career/btn_minus.svg");
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    right: 7px;
    top: calc(50% - 13px); }
  .career .step .step_block .step_title img {
    width: 34px;
    height: auto;
    margin-right: 12px; }

.career .step .step_block .step_content {
  padding: 27px 20px 43px;
  box-sizing: border-box;
  background: #FAD9D6; }
  .career .step .step_block .step_content img {
    display: block;
    margin: 50px auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }
  @media only screen and (min-width: 480px) {
    .career .step .step_block .step_content.col {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 27px 60px 43px;
      box-sizing: border-box; }
      .career .step .step_block .step_content.col img {
        width: 252px;
        height: auto;
        margin-right: 20px; } }
  @media only screen and (min-width: 480px) {
    .career .step .step_block .step_content .col {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start; }
      .career .step .step_block .step_content .col .col_block {
        width: calc(50% - 10px); }
        .career .step .step_block .step_content .col .col_block .step_label:first-child {
          margin-top: 0; } }
  @media only screen and (min-width: 480px) {
    .career .step .step_block .step_content .col4 {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .career .step .step_block .step_content .col4 .step_label {
        width: calc(50% - 5px); } }
  .career .step .step_block .step_content .step_label {
    margin-top: 20px;
    background: #fff;
    width: 100%;
    height: 80px;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .career .step .step_block .step_content .step_label .title {
      font-size: 2rem;
      font-weight: bold; }
    .career .step .step_block .step_content .step_label p {
      color: #CC4509; }

.career .step_about {
  padding: 20px;
  box-sizing: border-box; }
  @media only screen and (min-width: 480px) {
    .career .step_about {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 900px;
      margin: 0 auto;
      padding: 20px 0; } }
  .career .step_about h4 {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 50px; }
    @media only screen and (min-width: 480px) {
      .career .step_about h4 {
        width: 100%; } }
  @media only screen and (min-width: 480px) {
    .career .step_about p {
      width: 300px; } }
  .career .step_about img {
    margin-top: 32px;
    width: 100%; }
    @media only screen and (min-width: 480px) {
      .career .step_about img {
        width: 580px;
        height: auto;
        margin-top: 0; } }

@media only screen and (min-width: 480px) {
  .career .col_stage {
    width: 900px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -20px; } }
  @media only screen and (min-width: 480px) and (min-width: 480px) {
    .career .col_stage p {
      width: 300px; } }

@media only screen and (min-width: 480px) {
    .career .col_stage img {
      width: 580px;
      height: auto;
      margin-top: 0; } }

.staff .mainvisual {
  background: url("../images/staff/mainvisual_sp.jpg");
  background-size: cover;
  background-position: center; }

.staff .staff_read {
  margin-bottom: 50px; }
  @media only screen and (min-width: 480px) {
    .staff .staff_read .read_visual {
      background: url("../images/staff/staff_img01_pc_bg.jpg");
      background-size: contain;
      height: 620px;
      padding-top: 60px;
      box-sizing: border-box;
      margin-bottom: 40px; } }
  .staff .staff_read img {
    max-width: 100%; }
    @media only screen and (min-width: 480px) {
      .staff .staff_read img.mv {
        width: 700px;
        margin: 0 auto;
        display: block; } }

@media only screen and (min-width: 480px) {
  .staff .staff_block {
    width: 900px;
    margin: 0 auto; } }

.staff .staff_block#type01 {
  background: #FDF166; }
  .staff .staff_block#type01 .staff_content .text p {
    color: #5B1818; }

.staff .staff_block#type02 {
  background: #A998D1; }
  .staff .staff_block#type02 .staff_content .text p {
    color: #fff; }

.staff .staff_block#type03 {
  background: #467AB2; }
  .staff .staff_block#type03 .staff_content .text p {
    color: #fff; }

.staff .staff_block#type04 {
  background: #F7C9E2; }
  .staff .staff_block#type04 .staff_content .text p {
    color: #C60447; }

.staff .staff_block#type05 {
  background: #FDFFF4; }
  .staff .staff_block#type05 .staff_content .text p {
    color: #088069; }

.staff .staff_block#type06 {
  background: #F6685E; }
  .staff .staff_block#type06 .staff_content .text p {
    color: #fff; }

.staff .staff_block .staff_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 10px 20px;
  box-sizing: border-box;
  background: #F4F4F4;
  position: relative;
  height: 72px;
  font-size: 1.4rem;
  color: #012C51;
  border-bottom: 1px dotted #959595;
  cursor: pointer; }
  .staff .staff_block .staff_title span {
    display: block;
    font-weight: bold; }
  .staff .staff_block .staff_title:after {
    content: "";
    width: 26px;
    height: 26px;
    background: url("../images/career/btn_plus.svg");
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    right: 7px;
    top: calc(50% - 13px); }
  .staff .staff_block .staff_title.active:after {
    content: "";
    width: 26px;
    height: 26px;
    background: url("../images/career/btn_minus.svg");
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    right: 7px;
    top: calc(50% - 13px); }
  .staff .staff_block .staff_title img {
    width: 50px;
    height: auto;
    margin-right: 12px; }

.staff .staff_block .staff_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 65px 20px;
  box-sizing: border-box; }
  @media only screen and (min-width: 480px) {
    .staff .staff_block .staff_content {
      padding: 65px 20px 0; } }
  .staff .staff_block .staff_content .text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1; }
    @media only screen and (min-width: 480px) {
      .staff .staff_block .staff_content .text {
        margin-top: -65px; } }
    .staff .staff_block .staff_content .text p {
      margin: 0;
      padding: 0; }
    .staff .staff_block .staff_content .text .title {
      font-size: 3.4rem;
      margin: 8px 0 16px; }
  .staff .staff_block .staff_content .img {
    height: 312px;
    width: auto;
    margin-left: 10px; }
    @media only screen and (min-width: 480px) {
      .staff .staff_block .staff_content .img {
        height: 440px;
        width: 260px;
        overflow: hidden;
        position: relative;
        margin-left: 30px; } }
    .staff .staff_block .staff_content .img img {
      width: 115px; }
      @media only screen and (min-width: 480px) {
        .staff .staff_block .staff_content .img img {
          width: auto;
          margin: 0 auto;
          display: block; } }

.staff .works_block .staff_inner {
  padding: 0 20px;
  box-sizing: border-box; }
  @media only screen and (min-width: 480px) {
    .staff .works_block .staff_inner {
      width: 900px;
      margin: 0 auto;
      padding: 0; }
      .staff .works_block .staff_inner .staff_wrap {
        width: 100%; }
        .staff .works_block .staff_inner .staff_wrap:after {
          content: "";
          width: 218px;
          height: 0;
          display: block; }
        .staff .works_block .staff_inner .staff_wrap:before {
          content: "";
          width: 218px;
          height: 0;
          display: block;
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
          -ms-flex-order: 1;
          order: 1; }
      .staff .works_block .staff_inner .staff_thumb a img {
        width: 218px;
        height: 218px; } }

.staff .object-image {
  object-fit: cover;
  object-position: left top;
  font-family: 'object-fit: cover; object-position: left top;'; }

.faq .mainvisual {
  background: url("../images/faq/mainvisual_sp.jpg");
  background-size: cover;
  background-position: center; }

.faq .faq_list {
  padding: 46px 20px;
  box-sizing: border-box; }
  @media only screen and (min-width: 480px) {
    .faq .faq_list {
      width: 900px;
      margin: 0 auto; } }
  .faq .faq_list dl {
    font-size: 1.2rem;
    border-top: 1px dotted #D4DBE0;
    border-bottom: 1px dotted #D4DBE0;
    padding: 20px 0; }
    @media only screen and (min-width: 480px) {
      .faq .faq_list dl {
        font-size: 1.4rem; } }
    .faq .faq_list dl dt {
      font-weight: bold;
      margin-bottom: 8px; }

.recruitment .mainvisual {
  background: url("../images/recruitment/mainvisual_sp.jpg");
  background-size: cover;
  background-position: center; }

.recruitment .recruitment_tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media only screen and (min-width: 480px) {
    .recruitment .recruitment_tab {
      background: #F4F4F4;
      padding: 40px 0; } }
  .recruitment .recruitment_tab div {
    height: 88px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
    cursor: pointer; }
    @media only screen and (min-width: 480px) {
      .recruitment .recruitment_tab div {
        width: 450px;
        background: #fff; } }
    .recruitment .recruitment_tab div.active {
      background: #5CC9A7;
      color: #fff; }

.recruitment .recruitment_list {
  padding: 46px 20px;
  box-sizing: border-box; }
  @media only screen and (min-width: 480px) {
    .recruitment .recruitment_list {
      width: 900px;
      margin: 0 auto; } }
  .recruitment .recruitment_list div {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    height: 0px; }
    .recruitment .recruitment_list div h3 {
      margin: 0; }
    .recruitment .recruitment_list div dl {
      font-size: 1.2rem;
      border-top: 1px dotted #D4DBE0;
      border-bottom: 1px dotted #D4DBE0;
      padding: 20px 0;
      height: 0px; }
      @media only screen and (min-width: 480px) {
        .recruitment .recruitment_list div dl {
          font-size: 1.4rem; } }
      .recruitment .recruitment_list div dl.first {
        margin-top: 30px; }
      .recruitment .recruitment_list div dl dt {
        font-weight: bold;
        margin-bottom: 8px; }
    .recruitment .recruitment_list div.active {
      height: auto;
      visibility: visible;
      opacity: 1;
      -webkit-transition: opacity .3s;
      transition: opacity .3s; }
      .recruitment .recruitment_list div.active dl {
        height: auto; }

.office#headoffice .mainvisual {
  background: url("../images/office/mainvisuasl_headoffice_sp.jpg");
  background-size: cover;
  background-position: center; }
  @media only screen and (min-width: 480px) {
    .office#headoffice .mainvisual {
      background: url("../images/office/mainvisuasl_headoffice_sp.jpg");
      background-size: cover;
      background-position: center; } }

.office#yamanashi .mainvisual {
  background: url("../images/office/mainvisuasl_yamanashi_sp.jpg");
  background-size: cover;
  background-position: center; }
  @media only screen and (min-width: 480px) {
    .office#yamanashi .mainvisual {
      background: url("../images/office/mainvisuasl_yamanashi_pc.jpg");
      background-size: cover;
      background-position: center; } }

.office#tohoku .mainvisual {
  background: url("../images/office/mainvisuasl_tohoku_sp.jpg");
  background-size: cover;
  background-position: center; }
  @media only screen and (min-width: 480px) {
    .office#tohoku .mainvisual {
      background: url("../images/office/mainvisuasl_tohoku_pc.jpg");
      background-size: cover;
      background-position: center; } }

.office#kitakanto .mainvisual {
  background: url("../images/office/mainvisuasl_kitakanto_sp.jpg");
  background-size: cover;
  background-position: center; }
  @media only screen and (min-width: 480px) {
    .office#kitakanto .mainvisual {
      background: url("../images/office/mainvisuasl_kitakanto_pc.jpg");
      background-size: cover;
      background-position: center; } }

.office#hokuriku .mainvisual {
  background: url("../images/office/mainvisuasl_hokuriku_sp.jpg");
  background-size: cover;
  background-position: center; }
  @media only screen and (min-width: 480px) {
    .office#hokuriku .mainvisual {
      background: url("../images/office/mainvisuasl_hokuriku_pc.jpg");
      background-size: cover;
      background-position: center; } }

.office .mod_section {
  padding-top: 0; }
  .office .mod_section h2 {
    background: #F4F4F4;
    line-height: 127px;
    font-size: 3rem;
    color: #012C51;
    letter-spacing: .2em;
    text-align: center;
    width: 100%; }
  @media only screen and (min-width: 480px) {
    .office .mod_section .col2 {
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .office .mod_section .col2 p {
        width: calc(50% - 10px); }
      .office .mod_section .col2 img {
        width: calc(50% - 10px);
        height: auto; } }

.office .staff_wrap {
  padding: 20px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media only screen and (min-width: 480px) {
    .office .staff_wrap:after {
      content: "";
      width: 218px;
      height: 0;
      display: block; }
    .office .staff_wrap:before {
      content: "";
      width: 218px;
      height: 0;
      display: block;
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1; } }
  @media only screen and (min-width: 480px) {
    .office .staff_wrap {
      width: 900px;
      margin: 0 auto;
      padding: 20px 0; }
      .office .staff_wrap .staff_thumb a img {
        width: 218px;
        height: 218px; } }

.office .access {
  background: #FBFCF7;
  padding: 38px 40px; }
  @media only screen and (min-width: 480px) {
    .office .access {
      padding: 38px calc(50vw - 450px); } }
  @media only screen and (min-width: 480px) {
    .office .access .col2 {
      margin: 0 auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  .office .access img {
    width: 100%;
    margin-bottom: 15px; }
    @media only screen and (min-width: 480px) {
      .office .access img {
        width: 314px;
        height: 193px;
        margin-right: 20px; } }
  .office .access h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px; }
  .office .access .btn {
    width: calc(100% - 20px); }
    @media only screen and (min-width: 480px) {
      .office .access .btn {
        width: 100%; } }

.office .office_list {
  padding: 0 20px;
  margin: 28px 0; }
  @media only screen and (min-width: 480px) {
    .office .office_list {
      width: 900px;
      margin: 28px auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  .office .office_list h2 {
    font-size: 2.1rem;
    color: #012C51;
    text-align: center;
    border: 5px solid #012C51;
    line-height: 83px;
    margin-bottom: 28px; }
    @media only screen and (min-width: 480px) {
      .office .office_list h2 {
        width: 100%; } }
  .office .office_list a {
    margin-bottom: 20px !important;
    text-align: center !important;
    display: block;
    font-size: 1.6rem; }
    .office .office_list a img {
      width: 100%; }
    @media only screen and (min-width: 480px) {
      .office .office_list a {
        width: calc(50% - 5px); } }
  .office .office_list .wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    @media only screen and (min-width: 480px) {
      .office .office_list .wrap {
        width: calc(50% - 10px); } }
    .office .office_list .wrap a {
      width: calc(50% - 5px); }
      @media only screen and (min-width: 480px) {
        .office .office_list .wrap a div {
          height: 100px;
          width: 100%; }
          .office .office_list .wrap a div img {
            width: 100%;
            height: 100%;
            object-fit: cover; } }

.btn {
  background: #fff;
  height: 64px;
  width: calc(100% - 60px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  line-height: 1;
  margin: 20px auto;
  border-radius: 4px;
  border: 1px solid #012C51;
  color: #012C51; }
  @media only screen and (min-width: 480px) {
    .btn {
      max-width: 315px; } }
  .btn:after {
    content: "";
    width: 9px;
    height: 11px;
    background: url("../images/global/link_arrow.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 11px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

.btn_small {
  background: #fff;
  height: 40px;
  width: 182px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  line-height: 1;
  border-radius: 4px;
  border: 1px solid #D4DBE0;
  box-sizing: border-box;
  color: #6E7376;
  font-size: 1.6rem; }
  .btn_small:after {
    content: "";
    width: 9px;
    height: 11px;
    background: url("../images/top/link_arrow.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

.contact .mainvisual {
  background: url("../images/contact/mainvisual_sp.jpg");
  background-size: cover;
  background-position: center; }

@media only screen and (min-width: 480px) {
  .contact .mod_page_read {
    padding: 0;
    max-width: 900px;
    margin: 60px auto; } }

.contact .mod_page_read p {
  font-size: 1.4rem; }

.contact .mod_section {
  padding-top: 0; }

.contact #caution {
  visibility: hidden;
  position: fixed;
  pointer-events: none; }

.contact .modaal-container {
  border-radius: 10px;
  overflow: hidden;
  padding: 0 20px;
  box-sizing: border-box; }
  .contact .modaal-container h3 {
    margin-bottom: 24px; }
  .contact .modaal-container .modal_close {
    background: #012C51;
    border: 1px solid #445176;
    width: 290px;
    height: 60px;
    color: #fff;
    font-weight: bold;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
    margin: 24px auto; }

.contact h3 {
  margin-top: 34px; }

.contact form {
  margin-top: 44px; }
  @media only screen and (min-width: 480px) {
    .contact form {
      width: 767px;
      margin: 44px auto 0; } }
  .contact form .title {
    margin-bottom: .3em; }
  .contact form .block {
    margin-bottom: 10px; }
    .contact form .block .error {
      color: red; }
    .contact form .block.address input[type="text"] {
      width: 25%; }
      @media only screen and (max-width: 480px) {
        .contact form .block.address input[type="text"] {
          width: 50%; } }
    .contact form .block.address input[type="button"] {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border: none;
      background: none;
      margin-left: 1em;
      color: #FA7D00;
      text-decoration: underline; }
  .contact form input[type="text"] {
    width: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #D4DBE0;
    border-radius: 5px;
    line-height: 34px;
    padding: 4px; }
    @media only screen and (max-width: 480px) {
      .contact form input[type="text"] {
        width: 100%; } }
    .contact form input[type="text"].wd75 {
      width: 73%; }
      @media only screen and (max-width: 480px) {
        .contact form input[type="text"].wd75 {
          width: 100%; } }
    .contact form input[type="text"].wd90 {
      width: 90%; }
      @media only screen and (max-width: 480px) {
        .contact form input[type="text"].wd90 {
          width: 100%; } }
  .contact form input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    width: 100%;
    height: 100%;
    color: #012C51; }
  .contact form .btn {
    margin: 32px auto; }
  .contact form textarea {
    width: 100%;
    height: 280px;
    padding: 4px;
    box-sizing: border-box; }
  .contact form .caution {
    margin-top: 64px;
    padding-top: 8px;
    text-align: center; }
    .contact form .caution p {
      margin-bottom: 0;
      padding-bottom: 0; }
    .contact form .caution a {
      color: #FA7D00;
      text-decoration: underline; }

.title_style_h2 {
  height: 78px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #012C51;
  background: #fff;
  box-sizing: border-box;
  line-height: 1.2; }
  .title_style_h2::before {
    content: "";
    background: url("../images/global/title_h2_label.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
    width: 10px;
    height: 45px;
    display: block; }

.title_style_h3 {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0F1315;
  box-sizing: border-box;
  position: relative;
  padding-top: 10px;
  margin: 30px 0; }
  .title_style_h3::before {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
    width: 100%;
    height: 4px;
    display: block;
    background: #D4DBE0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  .title_style_h3::after {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
    width: 37px;
    height: 4px;
    display: block;
    background: #012C51;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }

.title_style_h4 {
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold; }

.mt-60 {
  margin-top: 60px; }

.mod_section {
  padding: 27px 0; }
  .mod_section .mod_section_inner {
    padding: 0 20px 0 20px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media only screen and (min-width: 480px) {
      .mod_section .mod_section_inner {
        width: 900px;
        padding: 0;
        margin: 0 auto; } }
    .mod_section .mod_section_inner .thumb {
      margin-bottom: 20px; }
    .mod_section .mod_section_inner a {
      margin-bottom: 28px; }
    .mod_section .mod_section_inner p {
      padding-bottom: 28px; }
    .mod_section .mod_section_inner img {
      max-width: 100%;
      margin-bottom: 28px; }

.mod_column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 28px; }
  .mod_column .mod_column_block {
    width: calc(50% - 10px);
    margin-bottom: 20px; }
    .mod_column .mod_column_block a, .mod_column .mod_column_block div {
      font-size: 1.4rem; }
      .mod_column .mod_column_block a img, .mod_column .mod_column_block div img {
        max-width: 100%;
        margin-bottom: 4px; }
    .mod_column .mod_column_block div {
      text-align: center; }

.mod_page_read {
  padding: 20px 20px;
  box-sizing: border-box;
  background: #fff; }
  @media only screen and (min-width: 480px) {
    .mod_page_read {
      padding: 100px calc(50% - 450px); } }
  .mod_page_read p {
    font-size: 1.6rem; }

.mod_movie_block {
  background: #5CC9A7;
  padding: 32px 20px;
  box-sizing: border-box;
  text-align: center; }
  .mod_movie_block h2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: #fff;
    font-size: 2rem; }
    @media only screen and (min-width: 480px) {
      .mod_movie_block h2 {
        padding: 0 calc(50% - 500px); } }
    .mod_movie_block h2 img {
      height: 29px;
      width: auto;
      margin-bottom: 12px; }
  .mod_movie_block iframe {
    margin-top: 32px; }
    @media only screen and (min-width: 480px) {
      .mod_movie_block iframe {
        width: 800px;
        height: 450px;
        margin: 32px auto 0; } }

.staff_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  box-sizing: border-box;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media only screen and (min-width: 480px) {
    .staff_wrap:after {
      content: "";
      width: 182px;
      height: 0;
      display: block; }
    .staff_wrap:before {
      content: "";
      width: 182px;
      height: 0;
      display: block;
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1; } }

.staff_thumb {
  position: relative;
  margin-bottom: 40px; }
  .staff_thumb.sales:before {
    content: "SALES";
    width: 58px;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(216, 42, 0, 0.8);
    font-size: 1rem; }
  .staff_thumb.assistant:before {
    content: "ASSISTANT\ASALES";
    white-space: pre;
    width: 58px;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 130, 195, 0.8);
    font-size: 1rem;
    line-height: 1.2; }
  .staff_thumb.logistics:before {
    content: "LOGISTICS";
    white-space: pre;
    width: 58px;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(53, 145, 72, 0.8);
    font-size: 1rem;
    line-height: 1.2; }
  .staff_thumb a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1; }
    .staff_thumb a img {
      width: 182px;
      height: 182px;
      margin-bottom: 14px; }

.modal_staff {
  display: none; }

.modaal-container {
  border-radius: 20px !important;
  overflow: hidden; }

.modaal-content-container .modal_inner {
  background: #fff;
  width: 100%;
  padding: 28px 0; }
  .modaal-content-container .modal_inner .header h2 {
    padding: 0 20px;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 12px; }
  .modaal-content-container .modal_inner .header p {
    padding: 0 20px;
    line-height: 1;
    margin-bottom: 28px; }
  .modaal-content-container .modal_inner .header img {
    width: 100%; }
  .modaal-content-container .modal_inner .interview {
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 32px;
    counter-reset: question; }
    @media only screen and (min-width: 480px) {
      .modaal-content-container .modal_inner .interview {
        padding: 0 50px; } }
    .modaal-content-container .modal_inner .interview dl {
      border-top: 1px dotted #6E7376;
      padding: 20px 0; }
      .modaal-content-container .modal_inner .interview dl:last-child {
        border-bottom: 1px dotted #6E7376; }
      .modaal-content-container .modal_inner .interview dl dt {
        color: #012C51;
        font-weight: bold;
        font-size: 1.2rem;
        text-align: center; }
        .modaal-content-container .modal_inner .interview dl dt:before {
          counter-increment: question;
          content: "Q" counter(question) ":";
          font-weight: bold; }
      .modaal-content-container .modal_inner .interview dl dd {
        font-size: 1.8rem;
        text-align: center; }
  .modaal-content-container .modal_inner .profile {
    margin: 0 20px;
    background: #F4F4F4;
    margin-top: 28px;
    padding: 28px 20px;
    box-sizing: border-box; }
    @media only screen and (min-width: 480px) {
      .modaal-content-container .modal_inner .profile {
        margin: 28px 50px 20px;
        padding: 28px 36px; } }
    .modaal-content-container .modal_inner .profile .title_pickup {
      font-size: 2.4rem;
      color: #012C51;
      text-align: center;
      line-height: 1; }
      @media only screen and (min-width: 480px) {
        .modaal-content-container .modal_inner .profile .title_pickup {
          margin-bottom: 24px; } }
      .modaal-content-container .modal_inner .profile .title_pickup span {
        font-weight: bold; }
    @media only screen and (min-width: 480px) {
      .modaal-content-container .modal_inner .profile .pickup_content:after {
        content: "";
        display: block;
        clear: both; } }
    .modaal-content-container .modal_inner .profile .pickup_content .title {
      font-weight: bold;
      font-size: 1.6rem;
      margin: 18px 0; }
      @media only screen and (min-width: 480px) {
        .modaal-content-container .modal_inner .profile .pickup_content .title {
          float: right;
          width: 534px;
          text-align: left;
          margin-top: 0; } }
    .modaal-content-container .modal_inner .profile .pickup_content .img {
      width: 100%;
      height: 184px;
      overflow: hidden; }
      @media only screen and (min-width: 480px) {
        .modaal-content-container .modal_inner .profile .pickup_content .img {
          width: 270px;
          height: 170px;
          float: left; } }
      .modaal-content-container .modal_inner .profile .pickup_content .img img {
        object-fit: cover;
        width: 100%;
        height: 100%; }
    @media only screen and (min-width: 480px) {
      .modaal-content-container .modal_inner .profile .pickup_content .text {
        float: right;
        width: 532px; } }
    .modaal-content-container .modal_inner .profile .pickup_content .text p {
      margin-top: 18px; }
      @media only screen and (min-width: 480px) {
        .modaal-content-container .modal_inner .profile .pickup_content .text p {
          margin-top: 0; } }

.modaal-content-container .modal_close {
  width: calc(100% - 40px);
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #012C51;
  border: 1px solid #012C51;
  margin: 50px auto 22px;
  cursor: pointer; }
  @media only screen and (min-width: 480px) {
    .modaal-content-container .modal_close {
      width: 315px; } }

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden; }

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden; }

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0; }

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  .modaal-wrapper * {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden; }
  .modaal-wrapper.open {
    opacity: 1; }
  .modaal-wrapper .modaal-close {
    border: none;
    background: transparent;
    padding: 0;
    -webkit-appearance: none; }
  .modaal-wrapper.modaal-start_none {
    display: none;
    opacity: 1; }
  .modaal-wrapper.modaal-start_fade {
    opacity: 0; }
  .modaal-wrapper *[tabindex="0"] {
    outline: none !important; }
  .modaal-wrapper.modaal-fullscreen {
    overflow: hidden; }

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%; }
  .modaal-fullscreen .modaal-outer-wrapper {
    display: block; }

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px; }
  .modaal-fullscreen .modaal-inner-wrapper {
    padding: 0;
    display: block;
    vertical-align: top; }
  .modaal-inner-wrapper:after {
    content: "";
    width: 50px;
    height: 50px;
    background: url("../images/global/modal_close_btn.png");
    background-size: contain;
    display: block;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer; }
    @media only screen and (min-width: 480px) {
      .modaal-inner-wrapper:after {
        right: calc(50% - 510px); } }

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto; }
  .modaal-container.is_loading {
    height: 100px;
    width: 100px;
    overflow: hidden; }
  .modaal-fullscreen .modaal-container {
    max-width: none;
    height: 100%;
    overflow: auto; }

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .modaal-close:focus, .modaal-close:hover {
    outline: none;
    background: #fff; }
    .modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
      background: #b93d0c; }
  .modaal-close span {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden; }
  .modaal-close:before, .modaal-close:after {
    display: block;
    content: " ";
    position: absolute;
    top: 14px;
    left: 23px;
    width: 4px;
    height: 22px;
    border-radius: 4px;
    background: #fff;
    -webkit-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out; }
  .modaal-close:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .modaal-close:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .modaal-fullscreen .modaal-close {
    background: #afb7bc;
    right: 10px;
    top: 10px; }

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0; }

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent; }
  .modaal-confirm-btn.modaal-ok {
    padding: 10px 15px;
    color: #fff;
    background: #555;
    border-radius: 3px;
    -webkit-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out; }
    .modaal-confirm-btn.modaal-ok:hover {
      background: #2f2f2f; }
  .modaal-confirm-btn.modaal-cancel {
    text-decoration: underline; }
    .modaal-confirm-btn.modaal-cancel:hover {
      text-decoration: none;
      color: #2f2f2f; }

@keyframes instaReveal {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes instaReveal {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important; }

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent; }

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important; }

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards; }

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px; }

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%; }

.modaal-gallery-wrap {
  position: relative;
  color: #fff; }

.modaal-gallery-item {
  display: none; }
  .modaal-gallery-item img {
    display: block; }
  .modaal-gallery-item.is_active {
    display: block; }

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff; }
  .modaal-gallery-label:focus {
    outline: none; }

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .modaal-gallery-control.is_hidden {
    opacity: 0;
    cursor: default; }
  .modaal-gallery-control:focus, .modaal-gallery-control:hover {
    outline: none;
    background: #fff; }
    .modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
      background: #afb7bc; }
  .modaal-gallery-control span {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden; }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    display: block;
    content: " ";
    position: absolute;
    top: 16px;
    left: 25px;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background: #fff;
    -webkit-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out; }
  .modaal-gallery-control:before {
    margin: -5px 0 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .modaal-gallery-control:after {
    margin: 5px 0 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px; }

.modaal-gallery-next-outer {
  right: 45px; }

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px; }

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px; }

.modaal-gallery-prev-outer {
  left: 45px; }

.modaal-video-wrap {
  margin: auto 50px;
  position: relative; }

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto; }
  .modaal-video-container iframe,
  .modaal-video-container object,
  .modaal-video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%; }

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block; }

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px; } }

@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px; }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: rgba(0, 0, 0, 0.7); }
    .modaal-gallery-control:before, .modaal-gallery-control:after {
      background: #fff; }
  .modaal-gallery-next {
    left: auto;
    right: 20px; }
  .modaal-gallery-prev {
    left: 20px;
    right: auto; } }

@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important; } }

@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important; } }

@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px; }
  .modaal-instagram iframe {
    width: 600px !important; } }

@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important; }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px; } }

@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important; } }

@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none; } }

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
  -ms-transform: scale(0.25);
  transform: scale(0.25); }

@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute; }

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff; }

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite; }

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .12s;
  animation-delay: .12s; }

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .25s;
  animation-delay: .25s; }

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite; }

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .37s;
  animation-delay: .37s; }

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .5s;
  animation-delay: .5s; }

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite; }

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .62s;
  animation-delay: .62s; }

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .75s;
  animation-delay: .75s; }

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .87s;
  animation-delay: .87s; }

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0); }

/*# sourceMappingURL=../maps/common.css.map */
