

/* ##############################################################################

    KEYFRAMES

############################################################################## */


@font-face{
    font-family: "MYuenHK-Medium";
    src: url('../fonts/MYuenHK-Medium.ttf');
}
@font-face{
    font-family: "MYuenHK-SemiBold";
    src: url('../fonts/MYuenHK-SemiBold.ttf');
}

body,p,a,nav,span,b,small{
    font-family: "MYuenHK-Medium" !important;
}

h1,h2,h3,h4,h5,h6{
   font-family: "MYuenHK-SemiBold" !important;
}



  /* --- top baroon --- */
  @keyframes swing {
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
  }
  .swing {
    transform-origin: top center;
    animation-name: swing;
  }
  .animated-slow {
    animation-duration: 5s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-iteration-count:infinite;
  }
  .animated-very-slow {
    animation-duration: 8s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-iteration-count:infinite;
  }
  .animated {
    animation-duration: 1.8s;
    animation-fill-mode: both;
    animation-iteration-count:infinite;
  }

  @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-30px); }
      60% { transform: translateY(-15px); }
  }
  @keyframes bounce_2 {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-45px); }
      60% { transform: translateY(-8px); }
  }
  @keyframes bounce_3 {
      0%, 20%, 50%, 80%, 100% { transform: translate(0); }
      40% { transform: translate(-8px,16px); }
      60% { transform: translate(-40px.-24px); }
  }

  .bounce {
    animation-name: bounce;
  }
  .bounce_2 {
    animation-name: bounce_2;
  }
  .bounce_3 {
    animation-name: bounce_3;
  }
  .snowfall-flakes {
    -webkit-animation: spin 3s linear infinite;
    -moz-animation: spin 3s linear infinite;
    -ms-animation: spin 3s linear infinite;
    -o-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
    height: auto!important;
    width: auto;
  }

  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg)
    }
    100% {
      -webkit-transform: rotate(360deg)
    }
  }

  @-moz-keyframes spin {
    0% {
      -moz-transform: rotate(0deg)
    }
    100% {
      -moz-transform: rotate(360deg)
    }
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg)
    }
    100% {
      transform: rotate(360deg)
    }
  }


/* ##############################################################################

    COMMON

############################################################################## */

  html {
    height: 100%;
  }
  body {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

/* layout
**************************************** */

  /* --- inner --- */
  .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .inner-sm { max-width: 880px; }
  .inner-lg { max-width: calc(100% - 112px); }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* --- float --- */
  .flt-rgt { float: right; }
  .flt-lft { float: left; }

  /* --- position --- */
  .pos_rel {
    position: relative;
    z-index: 0;
  }

  /* --- margin --- */
  .mgn-btm8 { margin-bottom: 8px; }
  .mgn-btm16 { margin-bottom: 16px; }
  .mgn-btm24 { margin-bottom: 24px; }
  .mgn-btm32 { margin-bottom: 32px; }
  .mgn-btm40 { margin-bottom: 40px; }
  .mgn-btm48 { margin-bottom: 48px; }
  .mgn-btm56 { margin-bottom: 56px; }
  .mgn-btm64 { margin-bottom: 64px; }
  .mgn-btm72 { margin-bottom: 72px; }
  .mgn-btm80 { margin-bottom: 80px; }

  /* --- pc or sp --- */
  .pc-none,
  .pc-none-inline,
  .pc-none-table,
  .pc-none-flex { display: none; }
  .sp-none { display: block; }
  .sp-none-inline { display: inline; }
  .sp-none-table { display: table; }
  .sp-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  @media screen and  (max-width: 767px) {
    .inner { width: 86%; }
    .mgn-btm16 { margin-bottom: 8px; }
    .mgn-btm24 { margin-bottom: 16px; }
    .mgn-btm32 { margin-bottom: 16px; }
    .mgn-btm40 { margin-bottom: 24px; }
    .mgn-btm48 { margin-bottom: 24px; }
    .mgn-btm56 { margin-bottom: 32px; }
    .mgn-btm64 { margin-bottom: 32px; }
    .mgn-btm72 { margin-bottom: 40px; }
    .mgn-btm80 { margin-bottom: 40px; }
    .sp-none,
    .sp-none-inline,
    .sp-none-table,
    .sp-none-flex { display: none; }
    .pc-none { display: block; }
    .pc-none-inline { display: inline; }
    .pc-none-table { display: table; }
    .pc-none-flex {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }

/* flex
**************************************** */
  /* --- block --- */
  .flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  /* --- inline --- */
  .flex-inline {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  /* --- reverse --- */
  .flex-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  /* --- vertical --- */
  .flex-column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* --- horizon --- */
  .flex-j-start {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex-j-end {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex-j-ctr {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-j-between {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-j-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  /* --- align --- */
  .flex-a-start {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex-a-end {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex-a-ctr {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-a-baseline {
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .flex-a-stretch {
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  /* --- item-wrap --- */
  .flex-c-nowrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-c-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  /* --- item-wrap-content --- */
  .flex-c-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-c-start {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-start {
    -webkit-align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-end {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .flex-c-ctr {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .flex-c-baseline {
    -webkit-align-content: baseline;
    -ms-flex-line-pack: baseline;
    align-content: baseline;
  }
  .flex-c-stretch {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }

  /* --- flex_layout --- */
  .flex-col2,
  .flex-col3,
  .flex-col4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-col2 > * {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col2 > *:nth-child(even) { margin-right: 0; }
  .flex-col3 > * {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col3 > *:nth-child(3n+3) { margin-right: 0; }
  .flex-col4>* {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .flex-col4 > *:nth-child(4n+4) { margin-right: 0; }

  @media screen and (max-width: 768px) {

    /* --- ?k?K??- sp --- */
    .flex-sp-block {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }

    /* --- ???ä???lex?쥤??????- sp --- */
    .flex-sp-col2 > *,
    .flex-sp-col2.flex-col3 > *:nth-child(3n+3) {
      width: 48.5%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col2 > *:nth-child(even) { margin-right: 0; }
    .flex-sp-col3 > *,
    .flex-sp-col3.flex-col4 > *:nth-child(4n+4) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col3 > *:nth-child(3n+3) { margin-right: 0; }

  }

/* bg
**************************************** */
  .bg-wh {
    background: #fff;
  }

/* ttl
**************************************** */
  /* --- page_ttl --- */
  .page_ttl {
    padding: 155px 0 181px;
    text-align: center;
  }
  .page_ttl-jp,
  .page_ttl-en { display: block; }
  .page_ttl-jp {
    font-size: 320%;
    color: #fff;
    line-height: 1em;
    margin-bottom: 16px;
  }
  .page_ttl-en {
    font-size: 120%;
    font-style: italic;
    font-weight: normal;
    color: #fff;
    background: #ed4e52;
    padding: 9px 23px;
    display: inline-block;
    line-height: 1em;
    border-radius: 50px;
  }
  .page_ttl-img {
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .page_ttl-img .img01,
  .page_ttl-img .img02 {
    width: 50%;
    height: 500px;
  }
  .page_ttl-img .img01 {
    background: #333;
  }
  .page_ttl-img .img02 {
    background: #555;
  }
  .page_ttl-img {
    background-size: cover;
    height: 100%;
    background-position: top center!important;
  }
  .page_ttl-img.company {
    background: url(../images/ttl_company.jpg);
  }
  .page_ttl-img.message {
    background: url(../images/ttl_message.jpg);
  }
  .page_ttl-img.news {
    background: url(../images/ttl_news.jpg);
  }
  .page_ttl-img.social {
    background: url(../images/ttl_social.jpg);
  }
  .page_ttl-img.guideline {
    background: url(../images/ttl_guideline.jpg);
  }
  .page_ttl-img.faq,
  .page_ttl-img.about,
  .page_ttl-img.entry {
    background: url(../images/ttl_faq.jpg);
  }
  .page_ttl-img.thanks {
    background: url(../images/ttl_faq.jpg);
  }
  .page_ttl-img.media {
    background: url(../images/ttl_media.jpg);
  }

  /* --- section_ttl --- */
  .section_ttl {
    font-size: 220%;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: .1em;
    position: relative;
    z-index: 1;
    color: #353b43;
  }
  .section_ttl-sm { font-size: 267%; }
  .section_catch {
    text-align: center;
    font-size: 120%;
    font-weight: 700;
  }

  /* --- heading --- */
  .heading-1 { font-size: 213%; }
  .heading-2 { font-size: 160%; }
  .heading-3 { font-size: 120%; }
  .heading-4 { font-size: 100%; }

/* txt
**************************************** */
  .txt-lg {
    font-size: 107%;
  }
  .txt-sm { font-size: 93%; }
  .txt-ctr { text-align: center; }
  .txt-rgt { text-align: right; }
  .txt-red {
    color: #ed4e52;
    text-decoration: underline;
  }
  .txt-attention {
    font-size: 88%;
    color: #999;
  }
  .txt-attention-kome {
    position: relative;
    padding-left: 1.4em;
  }
  .txt-attention-kome::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
  }
  .deco-font-jp {
    font-family: Shuei MaruGo B;
  }
  .deco-font-en {
    font-family: dinosaur, sans-serif;
  }
  .txtarea p:not(:last-child) { margin-bottom: 1em; }

/* table & list
**************************************** */
  table { width: 100%; }

  /* --- table_default --- */
  .table_default th,
  .table_default td {
    padding: 16px 8px;
  }
  .table_default th {
    border-bottom: 2px solid #666;
  }
  .table_default td {
    padding: 16px 16px;
    border-bottom: 1px solid #666;
    border-left: 4px solid #fff;
  }

  /* --- table-01 --- */
  .table-01 tr {
    width: 100%;
    border-bottom: 1px dotted #B8C7D1;
  }
  .table-01.company tr {
    background: #fff;
    white-space: nowrap;
  }
  .table-01 table {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .table-01 th,
  .table-01 td {
    padding: 24px 32px;
  }
  .table-01 th {
    width: 22%;
    color: #E94E51;
    font-size: 107%;
    text-align: left;
  }
  .table-01 td {
    width: 80%;
    font-size: 94%;
    line-height: 1.8;
    letter-spacing: .05em;
    color: #383A3C;
    white-space: normal;
  }
  .table-01 td a {
    color: #ee4d52;
    font-weight: normal;
    text-decoration: underline;
  }
  .table-01 table {
    margin: 0 auto;
  }

  /* --- table-02 --- */
  .table-02 th {
    width: 50%;
    background: #AFD4EA;
    padding: 12px 0;
    font-size: 107%;
    line-height: 1em;
  }
  .table-02 td {
    width: 50%;
    padding: 12px 0;
    text-align: center;
    border: 1px solid #D2D2D2;
    border-top: 0;
    border-right: 0;
  }
  .table-02 td:nth-child(2) {
    border-right: 1px solid #d2d2d2;
  }
  .under--list li {
    position: relative;
    padding: 16px 0 16px 1.5em;
    line-height: 1.5em;
  }
  .under--list li::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ED4E52;
    border-radius: 30px;
    left: 0;
    top: 40%;
  }
  .under-dl-list dl {
    border-bottom: 1px solid #B8C7D1;
    padding: 24px 16px;
  }
  .under-dl-list dt {
    width: 30%;
    color: #e94e51;
    font-weight: normal;
    font-size: 107%;
  }

  /* --- table-recruit_detail --- */
  .table-recruit_detail tr {
    border-bottom: 1px dashed #CCCFD5;
  }
  .table-recruit_detail th,
  .table-recruit_detail td {
    padding: 24px 20px;
  }
  .table-recruit_detail th {
    width: 22%;
    color: #E94E51;
    font-size: 107%;
    text-align: left;
  }
  .table-recruit_detail td {
    width: 80%;
    font-size: 94%;
    line-height: 1.8;
    letter-spacing: .05em;
    color: #383A3C;
  }
  .table-recruit_detail td .list li:not(:last-child) {
    margin-bottom: .2em;
  }
  .table-recruit_detail td .list li ul {
    margin-top: .2em;
    margin-bottom: .8em;
  }

  /* --- table_line --- */
  .table_line th,
  .table_line td {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .table_line th {
    background-color: #666;
    border: 1px solid #666;
    color: #fff;
    font-size: 107%;
  }
  .table_line td {
    border: 1px solid #D2D2D2;
    font-size: 93%;
  }

  /* --- list ---- */
  .list { list-style-type: none; }
  .list li:not(:last-child) { margin-bottom: 16px; }
  .list li {
    position: relative;
    padding-left: 1.4em;
  }
  .list-disc li::before,
  .list-square li::before,
  .list-circle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6em;
    width: 8px;
    height: 8px;
    border-radius: 6px;
    background-color: #666;
  }
  /* ???????ꥹ?? */
  .list-num {
    padding-left: 1.4em;
    list-style-type: decimal;
  }
  .list-num li { padding-left: 0; }
  .list-num li::before { display: none; }
  /* ??踶???ꥹ?? */
  .list-circle li::before {
    border: 1px solid #666;
    background-color: transparent;
  }
  /* ??Ǹ????ꥹ?? */
  .list-square li::before {
    border-radius: 0;
    background-color: #666;
  }
  /* ???ӤΥ??????? */
  .list li ul { margin-top: 16px; }
  .list li ul li::before {
    width: 6px;
    height: 6px;
    top: .8em;
  }

  /* --- dl?ꥹ??--- */
  .list-dl {
    position: relative;
    border-top: 1px solid #BFBFBF;
  }
  .list-dl dt {
    position: absolute;
    padding-top: 16px;
    color: #666;
    font-weight: 700;
  }
  .list-dl dd {
    padding-left: 140px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #BFBFBF;
  }
  @media screen and (max-width: 767px) {
    .table-01 th,
    .table-01 td {
      padding: 8px;
    }
  }

/* btn
**************************************** */
  .btn {
    width: 100%;
    max-width: 311px;
    z-index: 5;
    position: relative;
    display: block;
    padding: 16px 0;
    color: #ed4e52;
    border: 2px solid #ed4e52;
    line-height: 1em;
    font-weight: normal;
    font-size: 107%;
    border-radius: 60px;
    left: 0;
    right: 0;
    margin: auto;
    background-image: linear-gradient(45deg,#ed4e52 50%, #fff 50%);
    background-position: 100%;
    background-size: 400%;
    transition: all .9s ease-in-out;
  }
  .btn:hover {
    background-position: 0;
    color: #fff;
  }
  .btn.voice {
    max-width: 393px;
    width: 393px;
  }
  .btn_wrapper {
    max-width: 840px;
    margin: auto;
  }
  .btn.entry {
    background: transparent;
    max-width: 400px;
    min-width: 400px;
    font-style: italic;
    border: 0;
    border-radius: 0;
  }
  .btn.entry {
    color: #fff;
    max-width: 400px;
    font-size: 163%;
    position: relative;
    padding: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 25px 0 29px;
    top: 0;
    background: #ED4E52;
    border-radius: 50px;
    border: 0;
    transition: .6s all ease-in-out;
  }
  .btn.entry:hover {
    background: #9D1F22;
    transform: scale(.98);
  }
  .btn::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 8px;
    background: url(../images/head-submenu_arrow.png);
    right: 24px;
    top: 20px;
    transition: .8s all ease-in-out;
  }
  .btn.entry::before {
    content: none;
  }
  .btn:hover::before {
    background: url(../images/head-submenu_arrow-wh.png);
  }
  .btn.preview {
    max-width: 47%;
    font-style: normal;
  }
  .btn.preview.entry {
    transform: translateY(0)scale(1);
  }
  .btn.preview.entry:hover {
    transform: translateY(-4px)scale(1);
    background: #f56064;
    box-shadow: 0 0 6px 3px #ededed;
  }


/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
  .header.under {
    position: fixed;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 101;
    top: 0;
  }
  .header.top-fixed {
    left: 0;
    top: 0;
    transition: .6s all ease-in-out;
  }
  .home .header.top-fixed {
    top: -106px;
  }
  .home .header.top-fixed.show {
    top: 0;
  }
  .header--logo {
    text-align: center;
    padding: 32px 0 24px;
  }
  .header--logo.under {
    padding: 0;
    position: absolute;
    top: 16px;
    width: 201px;
    height: 70px;
    background: url(../images/ftr-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .head-menu-area .inner {
    max-width: 956px;
  }
  .header--logo.under a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
  }
  .logo.fixed--menu {
    position: relative;
    width: 207px;
    height: 71px;
    left: 0;
    right: 0;
    margin: 0 auto 24px;
    background: url(../images/ftr-logo.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .logo.fixed--menu a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
  }
  .header-subnav-wrapper {
    padding-top: 48px;
    padding-bottom: 56px;
    padding-left: 58px;
    position: relative;
  }
  .header-subnav-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #E5E5E5;
    left: 0;
    top: -4px;
  }
  .header-subnav-wrapper.first::before {
    border: none;
  }
  #under_ttl {
    margin-top: 103px;
    max-height: 420px;
    position: relative;
    overflow: hidden;
  }

/* loading
**************************************** */
  .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    text-align: center;
    transition: 1.5s cubic-bezier(.165, .84, .44, 1);
    transform: translateY(0);
  }
  .loading::before {
    content: '';
    position: absolute;
    width: 100%;
    background: url(../images/loading-bg-cloud.png);
    height: 462px;
    bottom: 0;
    display: block;
  }
  .loading.section_pdg {
    padding-top: 320px;
  }
  .loading_heart {
    max-width: 56px;
    position: relative;
    margin: 0 auto 24px;
  }
  .loading_heart::before {
    content: '';
    position: absolute;
    width: 56px;
    max-width: 56px;
    background: url(../images/logos.png);
    height: 100%;
    background-size: cover;
    max-height: 56px;
    transition: 1.8s cubic-bezier(.48, .18, 0, .98);
    transform-origin: bottom;
  }
  .loading_heart.active::before {
    height: 0;
  }
  .loading.open {
    pointer-events: none;
    opacity: 0;
    transform: translateY(-1300px);
  }

/* hero
**************************************** */
  #hero {
    background: rgba(0,0,0,.25);
    max-height: 900px;
    height: 900px;
    position: relative;
  }
  .img-01,
  .img-02 {
    width: 50%;
    height: 900px;
    position: absolute;
    background: #fff;
    z-index: -1;
    background-position: top center!important;
  }
  .img-01 li,
  .img-02 li {
    width: 100%;
    height: 900px;
    max-height: 900px;
  }
  .img-01 li img,
  .img-02 li img {
    max-height: 900px;
    width: 100%;
  }
  .fade-slide.slick-slider .slick-slide li {
    transform-origin: top center;
    transform: scale(1.05);
    filter: blur(16px);
    transition: 4s cubic-bezier(.165, .84, .44, 1);
    background-position: top center!important;
  }
  .fade-slide_2.slick-slider .slick-slide li {
    transform-origin: top center;
    transform: scale(1.05);
    filter: blur(16px);
    transition: 4s cubic-bezier(.165, .84, .44, 1);
  }
  .fade-slide.slick-slider .slick-active li {
    transform: scale(1.0);
    filter: blur(0px);
  }
  .fade-slide_2.slick-slider .slick-active li {
    filter: blur(0px);
    transform: scale(1.0);
  }
  .slide .slick-slide {
    opacity: .5;
  }
  .slide .slick-current {
    opacity: 1;
  }
  .img-02 {
    right: 0;
  }
  .hero--ttl_wrapper {
    position: relative;
    opacity: 0;
    background: url(../images/album_bg.png);
    max-height: 440px;
    max-width: 450px;
    margin: 0 auto;
    background-repeat: no-repeat;
    filter: blur(24px);
    transform: scale(.98);
    transition: 2s cubic-bezier(.48, .18, 0, .98);
  }
  .hero--ttl_wrapper.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
  .hero--ttl {
    padding: 72px 0 88px;
  }
  .hero--ttl p {
    position: relative;
    display: block;
  }
  .hero--ttl p::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 47px;
    left: 64px;
    top: 13px;
    border-left: 4px dotted #ed4e52;
    transform: rotate(-30deg);
  }
  .hero--ttl p::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 47px;
    right: 95px;
    top: 13px;
    border-left: 4px dotted #ed4e52;
    transform: rotate(30deg);
  }
  .hero--ttl small {
    line-height: 2em;
    font-size: 94%;
    color: #948f8f;
    border-bottom: 1px dotted #948f8f;
    padding-bottom: 5px;
  }
  .hero--ttl .second-letter {
    position: relative;
  }
  .hero--ttl .second-letter::after {
    content: '';
    position: absolute;
    background: url(../images/hero-ribbon.png);
    bottom: -40px;
    width: 20px;
    height: 9px;
    background-size: cover;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    margin: auto;
  }
  .hero-entry {
    z-index: 100;
    opacity: 0;
    display: block;
    position: fixed;
    right: 120px;
    bottom: 64px;
    transform: scale(1);
    transition: .9s cubic-bezier(.165, .84, .44, 1);
  }
  .hero-entry.active {
    opacity: 1;
  }
  .hero-entry:hover {
    transform: scale(.98);
  }
  .second-letter span:nth-child(2n) {
    transform: translateY(16px);
    display: inline-block;
  }
  .animation-1 {
    background: url(../images/img1.png);
    width: 81px;
    height: 90px;
    left: -40px;
    top: -16px;
  }
  .animation-2 {
    background: url(../images/img8.png);
    width: 62px;
    height: 68px;
    left: 0;
    right: 0;
    margin: auto;
    top: -34px;
  }
  .animation-3 {
    background: url(../images/img2.png);
    width: 126px;
    height: 107px;
    right: -32px;
    top: -24px;
  }
  .animation-4 {
    background: url(../images/img3.png);
    width: 89px;
    height: 94px;
    top: 40%;
    left: -50px;
  }
  .animation-5 {
    background: url(../images/img4.png);
    width: 83px;
    height: 102px;
    top: 37%;
    right: -15px;
  }
  .animation-6 {
    background: url(../images/img5.png);
    width: 147px;
    height: 107px;
    bottom: -35px;
    left: -64px;
  }
  .animation-7 {
    background: url(../images/img6.png);
    width: 77px;
    height: 89px;
    bottom: -45px;
    left: -20px;
    right: 0;
    margin: auto;
  }
  .animation-8 {
    background: url(../images/img7.png);
    width: 101px;
    height: 101px;
    bottom: -25px;
    right: -10px;
  }
  .animation-1,
  .animation-2,
  .animation-3,
  .animation-4,
  .animation-5,
  .animation-6,
  .animation-7,
  .animation-8 {
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
  }

/* gnav
**************************************** */
  .header--nav {
    position: relative;
  }
  .sub-nav-drawer {
    width: 62px;
    height: 62px;
    position: absolute;
    background: #fff;
    top: -24px;
    right: 64px;
    border-radius: 50%;
    z-index: 999;
    transition: .4s all;
    box-shadow: 0 1px 2px #333;
  }
  .drawer-btn {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
  }
  .sub-nav-drawer span {
    width: 24px;
    height: 2px;
    position: absolute;
    background: #ED4E52;
    margin: auto;
    left: 0;
    right: 0;
    top: 20px;
    transition: .4s all;
  }
  .sub-nav-drawer span:nth-child(2) {
    top: 26px;
  }
  .sub-nav-drawer span:nth-child(3) {
    top: 32px;
  }
  .gnav a {
    display: block;
    padding: 0 35px 0 25px;
    line-height: 1em;
    font-size: 107%;
    color: #fff;
    font-weight: normal;
    position: relative;
    transition: .4s all ease-in-out;
  }
  .gnav a:hover {
    color: #ed4e52;
  }
  .gnav a::before {
    content: '';
    position: absolute;
     background: url(../images/inco1.png);
     width: 13px;
    height: 14px;
    left: 0;
    top: 0;
  }



  .show .gnav a::before {
    border-top: 2px solid #ed4e52;
    border-right: 2px solid #ed4e52;
  }

  .under-header--nav {
    padding: 44px 160px 44px 56px;
    height: 0;
  }

  .header.top-fixed.show .under-header--nav {
    height: unset;
  }

  .under-header--nav a {
    color: #353b43;
  }
  .under-header--nav .gnav a {
    padding: 0 20px;
  }
  .sub-nav-drawer.fixed {
    top: 20px;
    right: 56px;
    background: #ed4e52;
    z-index: 200;
    box-shadow: none;
  }
  .sub-nav-drawer.fixed span {
    background: #fff;
    transition: .4s all;
  }
  .sub-nav-drawer.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
    left: 10px;
  }
  .sub-nav-drawer.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  .sub-nav-drawer.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
    left: 10px;
  }
  .head-menu-area {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 900px;
    background: url(../images/menu-bg.png);
    transition: .6s cubic-bezier(.48, .18, 0, .98);
    right: 0;
    transform: translate(0%, 0%);
    top: -900px;
    cursor: pointer;
    z-index: -10;
    background-repeat: no-repeat;
  }
  .head-menu-area.active {
    top: 0;
    opacity: 1;
    z-index: 10;
  }
  .head-menu-area > .section_pdg {
    padding-top: 40px;
  }
  .home .top-fixed .head-menu-area.active {
    top: 0;
    opacity: 1;
    z-index: 10;
    top: 100px;
  }
  .home .top-fixed.show .head-menu-area.active {
    top: 0;
  }
  .head-menu-area.active::before {
    z-index: 99;
    display: block;
  }
  .sub-nav {
    max-width: 610px;
    padding-left: 16px;
  }
  .sub-navs {
   display: flex;
   flex-direction: column;
  }
  .sub-nav li {
    position: relative;
    margin-right: 40px;
    justify-content: flex-end;
    padding: 25px 0 0;
    min-width: 256px;
    max-width: 256px;
    padding-left: 0;
    font-size: 107%;
    font-weight: normal;
    color: #353b43;
  }
  .sub-nav li::before {
    content: '';
    position: absolute;
    width: 13px;
    height: 14px;
    background: url(../images/inco1.png);
    left: -25px;
    top: 30px;
  }
  .first-logo,
  .first-logo.service,
  .first-logo.about,
  .first-logo.recruit {
    position: relative;
    padding-left: 40px;
    max-width: 240px;
  }
  .header-subnav-wrapper:nth-child(1)::before {
    content: none;
  }
  .first-logo.service::before {
    content: '';
    position: absolute;
    background: url(../images/ttl-icn01.png);
    width: 35px;
    height: 26px;
    background-size: cover;
    left: 0;
    top: 8px;
  }
  .first-logo.about::before {
    content: '';
    position: absolute;
    background: url(../images/ttl-icn02.png);
    width: 25px;
    height: 31px;
    background-size: cover;
    left: 0;
    top: 8px;
  }
  .first-logo.recruit::before {
    content: '';
    position: absolute;
    background: url(../images/ttl-icn03.png);
    width: 27px;
    height: 23px;
    background-size: cover;
    left: 0;
    top: 8px;
  }
  .first-logo a {
    color: #ed4e52;
    font-size: 160%;
  }
  #top .header .gnav .header-nav .gnav--company::before,
  #top .header .gnav .header-nav .gnav--recruit::before {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  @media screen and (max-width: 767px) {
    .gnav {
      top: 0;
      left: 0;
      transition: .4s ease-out;
    }
    .header.active .gnav {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }
    .gnav_btn {
      position: fixed;
      top: 0;
      right: 0;
      width: 48px;
      height: 48px;
      background-color: #000;
      z-index: 9999;
    }
    .gnav_btn--lines {
      position: relative;
      width: 24px;
      height: 13px;
    }
    .gnav_btn--lines span {
      transition: all .4s;
      box-sizing: border-box;
    }
    .gnav_btn--lines span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: #fff;
    }
    .gnav_btn--lines span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines span:nth-of-type(2) {
      top: 6px;
    }
    .gnav_btn--lines span:nth-of-type(3) {
      bottom: 0;
    }
    .header.active .gnav_btn--lines span:nth-of-type(1) {
      -webkit-transform: translateY(6px) rotate(-35deg);
      transform: translateY(6px) rotate(-35deg);
    }
    .header.active .gnav_btn--lines span:nth-of-type(2) {
      opacity: 0;
    }
    .header.active .gnav_btn--lines span:nth-of-type(3) {
      -webkit-transform: translateY(-6px) rotate(35deg);
      transform: translateY(-6px) rotate(35deg);
    }
  }


/* ##############################################################################

    FOOTER

############################################################################## */
  .footer {
    padding: 40px 0 0;
    position: relative;
    z-index: 1;
  }
  .footer.under {
    padding-top: 0;
  }
  .ftr-logo {
    max-width: 204px;
    margin: 0 0 32px;
  }
  .address {
    position: relative;
  }
  .page--menu {
    padding: 24px 0 0;
    font-size: 110%;
  }
  .page--menu li {
    padding-left: 24px;
    position: relative;
  }
  .page--menu li img {
    vertical-align: text-top;
  }
  .addess-item {
    padding-bottom: 28px;
  }
  .honsha--address {
    line-height: 1.5em;
    font-size: 94%;
    font-weight: normal;
    color: #6C7073;
  }
  .addess-item h3 {
    font-size: 260%;
    line-height: 1em;
    font-weight: normal;
    font-style: italic;
    color: #ed4e52;
    position: relative;
  }
  .addess-item a {
    color: #ed4e52;
  }
  .addess-item h3::before {
    content: '';
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #DADDE5;
    bottom: -21px;
  }
  .addess-item.entry h3::before {
    content: '';
    border-bottom: 2px dashed #ed4e52;
    width: 48px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .addess-item small {
    font-size: 100%;
  }
  .addess-item.entry h3 {
    font-size: 330%!important;
  }
  .addess-item p {
    color: #A4A4A4;
    font-size: 114%;
    font-weight: normal;
  }
   .addess-item p a{
    color: #A4A4A4;
  }

  .page--menu li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-top: 2px solid #ed4e52;
    border-right: 2px solid #ed4e52;
    left: 0;
    top: 11px;
    transform: rotate(45deg);
  }
  .page--menu li a {
    color: #EC1930;
  }
  .page--menu .submenu {
    font-size: 95%;
  }
  .footer nav {
    z-index: 10;
    display: block;
    position: absolute;
    background: url(../images/ftr-nav-bg.png);
    max-width: 1565px;
    height: 603px;
    bottom: 0;
    background-size: cover;
    width: 100%;
    padding-top: 240px;
  }
  .footer.under nav {
    position: relative;
    max-width: 100%;
    background: none;
    padding: 64px 0 90px;
    height: auto;
  }
  .ftr-acc_01,
  .ftr-acc_02,
  .ftr-acc_03 {
    position: absolute;
    opacity: 0;
    width: 100%;
  }
  .ftr-acc_01 {
    background: url(../images/footer-acc01.png);
    transform: translateX(1200px);
    width: 446px;
    height: 179px;
    transition: 1s cubic-bezier(.48, .18, 0, .98);
    top: -150px;
    z-index: 10;
  }
  .ftr-acc_01.active {
    transform: translateX(1000px);
    opacity: 1;
  }
  .ftr-acc_02 {
    background: url(../images/ftr-bg-cloud02.png);
    transform:translateY(40px);
    right: 0;
    width: 578px;
    height: 404px;
    transition: .6s cubic-bezier(.48, .18, 0, .98);
    top: -160px;
    z-index: 10;
  }
  .ftr-acc_02.active {
    opacity: 1;
    transform:translateY(0);
  }
  .ftr-acc_03 {
    background: url(../images/ftr-cloud01.png);
    transform: translateY(96px);
    width: 698px;
    height: 548px;
    transition: .8s cubic-bezier(.48, .18, 0, .98);
    top: -360px;
    z-index: 10;
  }
  .ftr-acc_03.active {
    opacity: 1;
    transform: translateY(0);
  }
  .earth-bg {
    position: relative;
    background: url(../images/ftr-bg.png);
    padding-top: 64px;
    width: 100%;
    height: 802px;
    bottom: 0;
    background-size: cover;
    background-position: top center;
    z-index: 1;
  }
  .pagetop {
    position: fixed;
    right: 40px;
    bottom: 190px;
    z-index: -1;
    opacity: 0;
    transition: .4s all ease-in-out;
  }
  .pagetop.active {
    bottom: 160px;
    z-index: 999;
    opacity: 1;
  }
  .footer--copyright {
    text-align: center;
  }
  .pbl {
    width: 160px;
  }
  .ftr-pbl_wrapper {
    position: absolute;
    bottom: 0;
    z-index: 10;
    right: 0;
    color: #fff;
    padding: 16px 0;
  }
  .ftr-pbl_wrapper.under {
    position: relative;
    background: #E7F6FF;
    color: #333;
    padding: 12px 0;
    line-height: 1em;
  }
  .ftr-pbl_wrapper.under > .pbl {
    opacity: .5;
  }
  .copyright {
    opacity: 0.9;
    font-size: 16px;
    margin-right: 24px;
    color: #2371AC;
  }
  .service--first,
  .about--first,
  .recruit--first {
    font-size: 140%;
    color: #E94E51;
    line-height: 1em;
    padding-left: 1.5em!important;
  }
  .service--first::before,
  .about--first::before,
  .recruit--first::before {
    border: none!important;
  }
  .service--first::before {
    content: '';
    position: absolute;
    width: 35px!important;
    height: 26px!important;
    background: url(../images/ttl-icn01.png);
    background-size: cover;
    left: -4px!important;
    top: 0!important;
    transform: rotate(0)!important;
  }
  .about--first::before {
    content: '';
    position: absolute;
    width: 25px!important;
    height: 31px!important;
    background: url(../images/ttl-icn02.png);
    background-size: 100%;
    left: 0!important;
    top: 0!important;
    transform: rotate(0)!important;
  }
  .recruit--first::before {
    content: '';
    position: absolute;
    width: 26px!important;
    height: 23px!important;
    background: url(../images/ttl-icn03.png);
    background-size: cover;
    left: -3px!important;
    top: 0!important;
    transform: rotate(0)!important;
  }


/* ##############################################################################

    INDEX

############################################################################## */
  #home_message.section_pdg {
    padding-top: 240px;
    padding-bottom: 240px;
  }
  #home_message {
    position: relative;
    background: url(../images/bg_blue.png);
  }
  .blur-baroon {
    position: absolute;
    background: url(../images/blur-baroon.png);
    width: 129px;
    height: 210px;
    right: 28%;
    bottom: 280px;
  }
  #home_message::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 240px;
    top: -120px;
    background: url(../images/bg_top-section.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #home_message::after {
    content: '';
    position: absolute;
    background: url(../images/message-content_bg.png);
    width: 100%;
    height: 420px;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #home_message h2 {
    font-size: 307%;
    line-height: 1.109em;
    color: #ED4E52;
    position: relative;
    opacity: 0;
    transition: .9s cubic-bezier(.165, .84, .44, 1);
    filter: blur(16px);
  }
  #home_message h2.active {
    opacity: 1;
    filter: blur(0);
  }
  #home_message h2 span {
    position: absolute;
    font-size: 229%;
    font-style: italic;
    color: #fff;
    z-index: -1;
    top: -50px;
    left: 0;
    right: 0;
    font-weight: 500;
    margin: auto;
    letter-spacing: 0;
  }
  #home_message h3 {
    font-size: 214%;
    color: #353B43;
    line-height: 1.4em;
    position: relative;
    margin-bottom: 88px;
    opacity: 0;
    filter: blur(24px);
    transition: 1s cubic-bezier(.165, .84, .44, 1);
  }
  #home_message h3.active {
    opacity: 1;
    filter: blur(0);
  }
  #home_message h3::before {
    content: '';
    background: url(../images/hero-ribbon.png);
    position: absolute;
    bottom: -48px;
    width: 20px;
    height: 9px;
    left: 0;
    right: 0;
    margin: auto;
  }
  #home_message p {
    max-width: 517px;
    margin: 0 auto 110px;
    line-height: 2.5em;
    font-size: 107%;
    font-weight: normal;
    color: #6C7073;
    position: relative;
    z-index: 2;
    transform: translateY(24px);
    -ms-transform: translateY(24px);
    -moz-transform: translateY(24px);
    opacity: 0;
    transition: 1.2s cubic-bezier(.86,0,.07,1);
  }
  #home_message p.active {
    transform: translateY(0);
    opacity: 1;
  }
  .baroon-wrapper {
    position: absolute;
    display: block;
    z-index: 10;
    opacity: 0;
    filter: blur(24px);
    transition: .8s all ease-in-out;
    transform: translateY(-24px);
    -ms-transform: translateY(-24px);
    -moz-transform: translateY(-24px);
  }
  .baroon-wrapper.right {
    right: 0;
    top: 32px;
    transform: translateY(-32px);
    -ms-transform: translateY(-32px);
    -moz-transform: translateY(-32px);
  }
  .baroon-wrapper.active {
    opacity: 1;
    filter: blur(0);
    -ms-filter: blur(0);
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
  }
  #home_service {
    background: url(../images/service-bg.jpg);
    background-size: 100%;
    background-repeat: repeat;
    position: relative;
  }
  .service-txt {
    opacity: 0;
    transform: translateY(24px);
    -ms-transform: translateY(24px);
    transition: 1s cubic-bezier(.48, .18, 0, .98);
  }
  .service-txt.active {
    opacity: 1;
    transform: translateY(0);
    -ms-transform: translateY(0);
  }
  #home_service.section_pdg {
    padding-top: 40px;
    padding-bottom: 0;
  }
  #home_service h2,
  #home_voice h2,
  #home_staff h2,
  #home_recruitment h2,
  #home_carrerup h2,
  #home_social h2 {
    position: relative;
    font-size: 307%;
    color: #353b43;
    letter-spacing: .01em;
    opacity: 0;
    -ms-filter: blur(8px);
    filter: blur(8px);
    transition: .9s cubic-bezier(.165, .84, .44, 1);
  }
  #home_service h2.active,
  #home_voice h2.active,
  #home_staff h2.active,
  #home_recruitment h2.active,
  #home_carrerup h2.active,
  #home_social h2.active {
    opacity: 1;
    filter: blur(0);
    -ms-filter: blur(0);
    -moz-filter: blur(0);
  }
  #home_service h2 small,
  #home_voice h2 small,
  #home_staff h2 small,
  #home_recruitment h2 small,
  #home_carrerup h2 small,
  #home_social h2 small {
    display: block;
    font-size: 53%;
    letter-spacing: .01em;
    line-height: 1em;
    font-weight: normal;
    font-style: italic;
    color: #ed4e52;
  }
  #home_service h2::before,
  #home_voice h2::before,
  #home_staff h2::before,
  #home_recruitment h2::before,
  #home_carrerup h2::before,
  #home_social h2::before {
    content: '';
    position: absolute;
    background: url(../images/service--ttl_bg.png);
    width: 47px;
    height: 37px;
    background-size: cover;
    top: -56px;
    left: 0;
    right: 0;
    margin: auto;
  }
  #bg--snowfall,
  #bg--snowfall_2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    overflow: hidden;
  }
  #bg--snowfall_2 {
    transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
  }
  .service-wrapper {
    opacity: 0;
    transform: translateY(16px);
    -ms-transform: translateY(16px);
    -moz-transform: translateY(16px);
    transition: .6s cubic-bezier(.165, .84, .44, 1);
  }
  .service-wrapper.active {
    opacity: 1;
    transform: translateY(0);
  }
  .service-cont {
    width: calc(25% - 30px);
    margin: 0 15px;
    position: relative;
    margin-bottom: 80px;
  }
  .service-bg {
    position: relative;
  }
  .service-bg::before {
    content: '';
    background: url(../images/album-parts_hover.png);
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 293px;
    top: 8px;
    left: 0;
    right: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: .4s all ease-in-out;
    opacity: 0;
  }
  .service-cont a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .service-cont:hover .service-bg::before {
    opacity: 1;
  }
  .service--sub-ttl {
    font-size: 24px;
    line-height: 1.3;
    color: #001650;
  }
  .morep{
    text-align: center;
    margin-top: 15px;
  }
  .morep span{
    font-size: 16px;
    color: #E72A2F;
    border-bottom: 1px dotted #E72A2F;
    padding-bottom: 5px;
  }

/*  .service-cont:nth-child(3n) {
    margin-right: 0;
  }*/
  .service-cont:nth-child(2),
  .service-cont:nth-child(4),
  .service-cont:nth-child(5) {
    transform: translateY(80px);
  }
  .cloud-acc01,
  .cloud-acc02,
  .cloud-acc03 {
    position: absolute;
  }
  .cloud-acc01 {
    background: url(../images/cloud-acc01.png);
    width: 315px;
    height: 224px;
    background-size: cover;
    top: 45%;
    left: -100px;
  }
  .cloud-acc03 {
    background: url(../images/cloud-acc02.png);
    width: 315px;
    height: 337px;
    background-size: cover;
    bottom: -72px;
    right: 0;
    transition: .8s all ease-in-out;
    opacity: 0;
    filter: blur(8px);
  }
  .cloud-acc03.active {
    opacity: 1;
    filter: blur(0);
  }
  #home_voice {
    position: relative;
    background: url(../images/bg_voice.png);
    background-size: 100%;
    background-repeat: repeat;
  }
  #home_voice.section_pdg {
    padding-top: 320px;
    padding-bottom: 350px;
  }
  #home_voice::before {
    content: '';
    position: absolute;
    background: url(../images/voice-content_bg.png);
    width: 100%;
    height: 410px;
    background-size: cover;
    top: 0;
    z-index: 10;
  }
  #home_voice::after {
    content: '';
    position: absolute;
    background: url(../images/staff-content_bg.png);
    width: 100%;
    height: 421px;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #home_voice .slick-initialized .slick-slide {
    display: block;
    margin-right: 16px;
    margin-left: 16px;
    max-height: 432px;
    min-height: 432px;
  }




  .voice-slider-item {
    position: relative;
    max-width: 90%px;
    width: 100%;
    height: 100%;
    max-height: 423px;
    min-height: 423px;
  }

  .voice-slider-item>a {
    width: 92%;
    display: block;
    z-index: 999;
    top: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 4%;
    position: relative;
  }

   .voice-slider-item>a img{
    width: 100%;
   }

  .voice-slider-item>a::before {
    background-image: url(../images/more-txt.png);
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    content: '';
    margin: auto;
    width: 100%;
    top: 35%;
    opacity: 0;
    display: block;
    z-index: 21;
    height: 84px;
    transition: .4s all ease-in-out;
  }
  .voice-slider-item>a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    transition: .4s all ease-in-out;
    background-color: transparent;
    display: block;
    z-index: 20;
  }
  .voice-slider-item.on_hover>a::after {
    background: rgba(163, 214, 244, .9);
  }
  .voice-slider-item.on_hover>a::before {
    opacity: 1;
    transition: .4s all ease-in-out;
  }
  .voice-slider_wrapper {
    position: relative;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    transition: .8s cubic-bezier(.165, .84, .44, 1);
    transform: translateY(24px);
  }
  .voice-slider_wrapper.active {
    transform: translateY(0);
    opacity: 1;
  }


   .voice-slider-item .items{
    background: #fff;
    position: relative;
    top: -50px;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    z-index: -1;
    min-height: 240px;
   }

  .voice-slider-item .items h4{
    color: #001650;
    font-size: 24px;
    font-weight: normal;
    margin: 50px 0 20px 0;
    line-height: 1.2;
  }
  .voice-slider-item .items p{
      color: #8BD6A4;
  }
  .voice-slider-item .items .morepp{
      text-align: right;
  }
  .voice-slider-item .items .morepp span{
    font-size: 18px;
    color: #B9B9B9;
    margin-top: 20px;
  }


  #cboxClose {
    position: absolute;
    top: 0;
    right: -16px;
    width: 45px;
    height: 45px;
    font-size: 0;
    transform: translateX(40px);
    background: #e94e51;
    border: 2px solid #e94e51;
    border-radius: 45px;
  }
  #cboxClose::before,
  #cboxClose::after {
    content: '';
    position: absolute;
    display: block;
    width: 2px;
    height: 32px;
    background: #fff;
  }
  #cboxClose::before {
    transform: rotate(45deg);
    top: 4px;
    right: 19px;
  }
  #cboxClose::after {
    transform: rotate(-45deg);
    top: 4px;
    right: 19px;
  }
  #cboxPrevious,
  #cboxNext {
    visibility: hidden;
  }
  #home_carrerup.section_pdg {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  #works-slider .slick-arrow.slick-prev,
  #works-slider .slick-arrow.slick-next,
  .voice-slider .slick-arrow.slick-prev,
  .voice-slider .slick-arrow.slick-next {
    z-index: 100;
    font-size: 0;
    border: none;
    width: 0;
    height: 0;
    background: #fff;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 2px solid #ed4e52;
  }
  .voice-slider .slick-arrow.slick-prev {
    left: 40px;
  }
  .voice-slider .slick-arrow.slick-next {
    right: 40px;
  }
  #works-slider .slick-arrow::before,
  .voice-slider .slick-arrow::before {
    content: '';
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    right: 0;
    top: 40%;
    border-left: 2px solid #ed4e52;
    border-top: 2px solid #ed4e52;
  }
  .voice-slider .slick-arrow.slick-prev::before,
  #works-slider .slick-arrow.slick-prev::before {
    right: -5px;
    top: 17px;
  }
  .voice-slider .slick-arrow.slick-next::before,
  #works-slider .slick-arrow.slick-next::before {
    transform: rotate(135deg);
    left: 16px;
  }
  #works-slider .slick-arrow::before,
  .voice-slider .slick-arrow::before {
    left: 20px;
  }
  .voice-slider .slick-initialized .slick-slide {
    display: block;
    width: 100%!important;
    margin-right: 24px;
    margin-left: 24px;
  }
  .works-slider-item .txt .btn {
    color: #bababa;
    border: 2px solid #bababa;
    background-image: linear-gradient(45deg,#bababa 50%, #fff 50%);
    margin-left: 0;
  }
  .works-slider-item .txt .btn::before {
    background-image: url(../images/recruit-btn_arrow.png);
  }
  .works-slider-item .txt .btn::before:hover {
    background: url(../images/head-submenu_arrow-wh.png)!important;
  }
  .works-slider-item .txt .btn:hover {
    color: #fff;
  }
  #home_staff {
    background-position: top center;
    position: relative;
    z-index: 0;
  }
  #home_staff::after {
    content: '';
    position: absolute;
    /*background: url(../images/home_staff-bg.png);*/
    width: 100%;
    max-width: 887px;
    height: 706px;
    background-size: cover;
    bottom: 80px;
    z-index: -1;
  }
  #home_staff.section_pdg {
    padding-top: 280px;
    padding-bottom: 60px;
  }
  #home_staff::before {
    content: '';
    position: absolute;
    background: url(../images/staff-content_under-bg.png);
    width: 100%;
    height: 168px;
    display: block;
    background-size: cover;
    left: 0;
    top: 0;
    z-index: 5;
  }
  .staff-txt {
    opacity: 0;
    transform: translateY(16px);
    transition: .6s cubic-bezier(.165, .84, .44, 1);
  }
  .staff-txt.active {
    opacity: 1;
    transform: translateY(0);
  }
  .carrer-acc01,
  .carrer-acc02 {
    position: absolute;
  }
  .carrer-acc01 {
    background: url(../images/carrer-acc01.png);
    width: 315px;
    height: 224px;
    background-size: cover;
    left: 64px;
    top: 60%;
  }
  .carrer-acc02 {
    background: url(../images/carrer-acc02.png);
    width: 315px;
    height: 221px;
    background-size: cover;
    right: 64px;
    top: 10%;
  }
  .carrerup_img01,
  .carrerup_img02 {
    opacity: 0;
    transition: 1.5s cubic-bezier(.48, .18, 0, .98);
    filter: blur(8px);
  }
  .carrerup_img01.active,
  .carrerup_img02.active {
    opacity: 1;
    filter: blur(0);
  }
  .carrerup_img01 {
    position: absolute;
    bottom: 0;
    right: 160px;
  }
  .carrerup_img02 {
    position: absolute;
    top: -80px;
    left: 160px;
  }

  .ttl-baroon {
    position: absolute;
    left: 60px;
    bottom: 0;
    top: -160px;
  }
  #home_carrerup p {
    line-height: 2em;
    font-size: 107%;
    font-weight: normal;
    color: #6c7073;
    opacity: 0;
    transition: .6s cubic-bezier(.165, .84, .44, 1);
    transform: translateY(16px);
  }
  #home_carrerup p.active {
    transform: translateY(0);
    opacity: 1;
  }
  .staff--slider-wrapper {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    position: relative;
    transform: translateX(500px);
    -ms-transform: translateX(500px);
    -moz-transform: translateX(500px);
    opacity: 0;
    transition: 1.8s cubic-bezier(.165, .84, .44, 1);
    max-height: 500px;
  }
  .staff--slider-wrapper.active {
    transform: translateX(0);
    -ms-transform: translateX(0);
    -moz-transform: translateX(0);
    opacity: 1;
  }
  .slide-item {
    overflow: hidden;
  }
  .staff--air-plane {
    position: absolute;
    top: -20px;
    width: 142px;
    left: -140px;
  }
  .staff--slider-wrapper .news-item.staff {
    position: relative;
    overflow: visible;
    transform: none;
  }
  .staff--slider-wrapper .news-item.staff::before {
    content: '';
    position: absolute;
    width: 49px;
    height: 84px;
    background: url(../images/staff-woodpinch.png);
    background-size: cover;
    z-index: 10;
    top: -52px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .staff--slider-wrapper .news-item.staff.odd::before {
    left: -48px;
  }
  .staff--slider-wrapper .news-item.staff.even::before {
    right: -8px;
  }
  .staff--slider-wrapper .news-item.staff::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 64px;
    background-image: url(../images/staff-line-2_longver.png);
    left: -180px;
    top: -40px;
    border-radius: 0%;
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .staff--slider-wrapper .news-item.staff.odd::after {
    transform: rotate(-5deg)translate(0,16px);
    left: -210px;
  }
  .staff--slider-wrapper .news-item.staff.even::after {
    transform: rotate(5deg)translate(0,-14px);
  }
  #home_recruitment.section_pdg {
    padding-top: 80px;
    padding-bottom: 500px;
  }
  #home_recruitment {
    position: relative;
  }
  #home_recruitment::before {
    content: '';
    position: absolute;
    background: url(../images/home_recruitment-bg02.png);
    width: 100%;
    max-width: 840px;
    height: 706px;
    right: 0;
    background-size: cover;
    top: -240px;
  }
  #home_carrerup {
    position: relative;
  }
  .tab {
    width: 100%;
  }
  .tab li {
    width: 25%;
    max-width: 247px;
    background: #bababa;
    color: #fff;
    margin: 0 12px;
    padding: 22px 0;
    font-size: 107%;
    font-weight: normal;
    border-radius: 2px;
    line-height: 1em;
    position: relative;
    transition: .4s all;
  }
  .tab li::before {
    content: '';
    position: absolute;
    transition: .4s all;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #ed4f54 transparent transparent transparent;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -8px;
    opacity: 0;
  }
  .tab li.active {
    background: #ed4f53;
  }
  .tab li.active::before {
    content: '';
    position: absolute;
    opacity: 1;
  }
  .works-slider_wrapper {
    opacity: 0;
    -ms-transform: translateY(24px);
    -moz-transform: translateY(24px);
    transform: translateY(24px);
    transition: 1s cubic-bezier(.48, .18, 0, .98);
    max-width: 1060px;
    margin: auto;
  }
  .works-slider_wrapper.active {
    opacity: 1;
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
  }
  .works-slider-item {
    display: flex!important;
    background: #fff;
  }
  #works-slider .slick-dots {
    top: -90px;
    display: flex;
    bottom: auto;
  }
  #works-slider.slick-slider {
    margin-top: 160px;
  }
  #works-slider .slick-dots li {
    width: 25%;
    height: 60px;
  }
  #works-slider .slick-dots li:first-child {
    margin-left: 0;
  }
  #works-slider .slick-dots li:nth-child(4) {
    margin-right: 0;
  }
  #works-slider .slick-dots li:first-child button::before {
    content: '営業部';
  }
  #works-slider .slick-dots li:nth-child(2) button::before {
    content: '広報部';
  }
  #works-slider .slick-dots li:nth-child(3) button::before {
    content: 'マーケティング部';
  }
  #works-slider .slick-dots li:nth-child(4) button::before {
    content: '制作部';
  }
  #works-slider .slick-dots li button::before {
    width: 100%;
    font-size: 16px;
    line-height: 1em;
    opacity: 1;
    z-index: 10;
    top: 21px;
    font-weight: normal;
    color: #fff;
    font-family: Shuei MaruGo B;
  }
  #works-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    background: #ccc;
    transition: .4s all ease-in-out;
    border-radius: 2px;
  }
  #works-slider .slick-dots li.slick-active button {
    background: #ed4e52;
    position: relative;
  }
  #works-slider .slick-dots li button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #ed4e53 transparent transparent transparent;
    bottom: -8px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    transition: .4s all ease-in-out;
    opacity: 0;
  }
  #works-slider .slick-dots li.slick-active button::after {
    opacity: 1;
  }
  #works-slider .slick-dots li::before {
    content: none;
  }
  #works-slider .slick-arrow.slick-next {
    right: -64px;
  }
  #works-slider .slick-arrow.slick-prev {
    left: -64px;
  }
  #home_social.section_pdg {
    padding-top: 470px;
    padding-bottom: 240px;
  }
  #home_social::before {
    content: '';
    position: absolute;
    width: 100%;
    background: url(../images/home_works-bg01.png);
    max-width: 1920px;
    width: 100%;
    height: 168px;
    background-size: cover;
    top: 0;
  }
  .under-works-slider .link-item {
    border: 8px solid #fff;
  }
  .under-works-slider .link-item a {
    padding-top: 72px;
  }
  .under-works-slider .link-item:nth-child(2n) {
    transform: translateY(40px);
  }
  .under-works-slider .link-item:nth-child(1) {
    background: url(../images/works-img01.jpg);
    background-size: cover;
  }
  .under-works-slider .link-item:nth-child(2) {
    background: url(../images/works-img02.jpg);
    background-size: cover;
  }
  .under-works-slider .link-item:nth-child(3) {
    background: url(../images/works-img03.jpg);
    background-size: cover;
  }
  .under-works-slider .link-item:nth-child(4) {
    background: url(../images/works-img04.jpg);
    background-size: cover;
  }
  .under-works-slider .link-item a:hover {
    background: rgba(67, 85, 96, .2);
    opacity: 1;
  }
  .under-works-slider {
    z-index: 10;
    position: relative;
  }
  .link-item_wrapper {
    margin: auto;
  }
  .social-items h3 {
    font-size: 200%;
    color: #ed4e52;
    margin-top: 24px;
  }
  .social-items {
    margin-left: 64px;
    margin-right: 64px;
    position: relative;
    max-width: 33%;
  }
  .social-wrapper {
    opacity: 0;
    transform: translateY(-16px);
    -ms-transform: translateY(-16px);
    -moz-transform: translateY(-16px);
    transition: 1s cubic-bezier(.48, .18, 0, .98);
  }
  .social-wrapper.active {
    opacity: 1;
    transform: translateY(0);
  }
  .social-wrapper .social-items {
    opacity: 0;
    filter: blur(16px);
    transition: .8s cubic-bezier(.48, .18, 0, .98);
  }
  .social-wrapper.active .social-items {
    opacity: 1;
    filter: blur(0);
  }
  .social-items a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .item-img {
    position: relative;
    border-radius: 310px;
    overflow: hidden;
    width: 310px;
    height: 310px;
    max-width: 310px;
    max-height: 310px;
    margin: auto;
  }
  .item-img img {
    min-height: 310px;
    min-width: 310px;
  }
  .item-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: .4s all ease-in-out;
  }
  .item-img::after {
    content: '';
    position: absolute;
    background: url(../images/more-txt.png);
    width: 73px;
    height: 82px;
    background-size: cover;
    background-position: top center;
    transition: .4s all ease-in-out;
    left: 0;
    right: 0;
    top: 40%;
    margin: auto;
    opacity: 0;
  }
  .social-items:hover .item-img::before {
    background: rgba(0,0,0,.5);
  }
  .social-items:hover .item-img::after {
    opacity: 1;
  }
  .social-items:nth-child(1) {
    margin-left: 0;
  }
  .social-items:nth-child(3) {
    margin-right: 0;
  }
  #entry h2 span,
  #under_section01.history h2 span {
    position: absolute;
    font-size: 206%;
    font-style: italic;
    color: #dff2fd;
    z-index: -1;
    top: -30px;
    left: 0;
    right: 0;
    font-weight: 500;
    margin: auto;
    letter-spacing: 0;
  }
  #under_section01.history h2 span {
    top: -80px;
  }
  #under_section01.history h2::before {
    content: none;
  }
  .entry h2 {
    font-size: 307%;
    line-height: 1.109em;
    color: #353b43;
  }
  .entry-parts {
    position: absolute;
    opacity: 0;
    filter: blur(16px);
    transition: .8s all ease-in-out;
  }
  .entry-parts.active {
    filter: blur(0);
    opacity: 1;
  }
  .home-entry {
    position: absolute;
    width: 100%;
    max-width: 100%;
    max-height: 790px;
    background-size: cover;
    left: 0;
    z-index: 10;
    background: url(../images/home_entry-bg.png);
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    transform: translateY(-50%);
    display: block;
    z-index: 1;
    padding-top: 240px;
    background-position: 0;
  }
  .slider-item {
    background: #fffbeb;
  }
  .txt-wrapper {
    width: 50%;
    padding: 160px 40px;
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  .slider-item .img {
    width: 50%;
    display: inline-block;
  }
  .social .img,
  .home_recruitment .img {
    width: 50%;
    float: left;
    max-height: 560px;
  }
  .social .txt-wrapper {
    background: url(../images/report_bg.jpg);
  }
  .txt-wrapper h3 {
    font-size: 227%;
    color: #353b43;
  }
  .social .txt-wrapper h3 {
    position: relative;
    padding: 32px 0 32px 56px;
    line-height: 1em;
    color: #353b43;
  }
  .ethiopia .flug {
    background: url(../images/ethiopia-flag.jpg);
    width: 41px;
    height: 30px;
    position: absolute;
    left: 0;
  }
  .tanzania .flug {
    background: url(../images/tanzania-flag.jpg);
    width: 40px;
    height: 30px;
    position: absolute;
    left: 0;
  }
  .kenya .flug {
    background: url(../images/kenya-flag.jpg);
    width: 40px;
    height: 30px;
    position: absolute;
    left: 0;
  }
  .ruwanda .flug {
    background: url(../images/rwanda-flag.jpg);
    width: 40px;
    height: 30px;
    position: absolute;
    left: 0;
  }
  .social .txt-wrapper h3::before,
  .social .txt-wrapper h3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    background: url(../images/txt-wrapper_line.png);
  }
  .social .txt-wrapper h3::before {
    top: 0;
  }
  .social .txt-wrapper h3::after {
    bottom: 0;
  }
  .social .txt-wrapper p {
    line-height: 2.5em;
    font-size: 107%;
    font-weight: normal;
    color: #6c7073;
    position: relative;
  }
  .social .txt-wrapper p::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    height: 2px;
    background: url(../images/txt-wrapper_line.png);
    bottom: -32px;
  }
  .social .txt-wrapper {
    padding-top: 120px;
    padding: 120px 80px;
  }
  .fund-wrapper {
    background: url(../images/common-entry-bg.png);
    background-size: cover;
    width: 100%;
    min-height: 887px;
    padding-top: 280px;
    padding-bottom: 0;
    margin-bottom: -340px;
    margin-top: 0;
    z-index: 10;
  }
  .section_ttl-sm.social {
    line-height: 1.2em;
    font-size: 214%;
    color: #ed4e52;
  }
  .section_ttl.report {
    color: #ed4e52;
    font-size: 267%;
    position: relative;
  }
  .cloud--parts {
    position: absolute;
    background: url(../images/common_section-cloud.png);
    background-size: cover;
    width: 841px;
    height: 706px;
    display: block;
    right: 0;
  }
  .section_ttl.report::before {
    content: '';
    position: absolute;
    background: url(../images/report_icn.png);
    width: 50px;
    height: 52px;
    top: -56px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .link-item-wrapper {
    width: 45%;
    position: relative;
  }
  .link-item-wrapper:first-child::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    border-right: 2px dotted #ccc;
    right: -64px;
  }
  .txt {
    margin-right: 60px;
    margin-left: 60px;
    width: 40%;
  }
  .link-item {
    width: 260px;
    height: 260px;
    background: #eee;
    border-radius: 260px;
    position: relative;
  }
  .link-item.graduate {
    background: url(../images/hero-first.jpg);
    background-size: cover;
  }
  .link-item.graduate_school {
    background: url(../images/hero-second.jpg);
    background-size: cover;
  }
  .link-item.tft {
    background: url(../images/tft-item-img01.jpg);
    background-size: cover;
    background-position: top center;
  }
  .link-item.tft-news {
    background: url(../images/report-img02.jpg);
    background-size: cover;
    background-position: top center;
  }
  .link-item a {
    position: absolute;
    font-size: 150%;
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 100%;
    background: rgba(67, 85, 96, .8);
    color: #fff;
    padding-top: 96px;
    line-height: 1.5em;
    transition: .4s all ease-in-out;
  }
  .link-item a:hover {
    opacity: .8;
  }
  .link-item a::before {
    content: '';
    position: absolute;
    background: url(../images/link-item-arrow.png);
    width: 20px;
    height: 20px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 30px;
  }
  .link-item.tft a::before,
  .link-item.tft-news a::before {
    background: url(../images/blank-link-item.png);
  }
  .link-item a.last {
    padding-top: 80px;
  }
  #report-section.section_pdg {
    padding-top: 240px;
    padding-bottom: 10px;
  }
  #under_section02.social.section_pdg {
    padding-top: 400px;
    padding-bottom: 320px;
  }
  #under_section02.social::before {
    background: none;
  }
  .thumblist li {
    width: 100px;
    height: 100px;
    margin-right: 16px;
    margin-bottom: 16px;
    border-radius: 170px;
    position: relative;
    overflow: hidden;
  }
  .thumblist li:nth-child(5),
  .thumblist li:nth-child(6),
  .thumblist li:nth-child(7),
  .thumblist li:nth-child(8) {
    margin-bottom: 0;
  }
  .thumblist li:nth-child(4n) {
    margin-right: 0;
  }
  .thumblist li img {
    position: absolute;
    max-width: 120px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    display: block;
  }
  .social .slick-dots .thumb_img {
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 120px;
    filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    transition: .4s ease-out;
    z-index: 10;
  }
  .social .slick-dots li.slick-active .thumb_img {
    filter: grayscale(0%);
    -ms-filter: grayscale(0%);
  }
  .social .slick-dots li {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 120px;
    margin-bottom: 16px;
  }
  .social .slick-dots {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    display: flex!important;
    margin: 0;
    list-style: none;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* service
  **************************************** */
    .about-us {
      max-width: 1200px;
      margin: 0 auto 320px;
      position: relative;
    }
    .about-us.second {
      margin-bottom: 110px;
    }
    .about-us_line {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
    }
    .about-us_line::after {
      content: '';
      position: absolute;
      background: url(../images/about_us-line.png);
      width: 1208px;
      height: 100%;
      background-repeat: no-repeat;
      background-size: 100%;
      top: 60px;
      left: 0;
      right: 0;
      margin: auto;
    }
    .about-us .img {
      display: block;
      z-index: 2;
    }
    .about-us .txt {
      width: 50%;
      font-weight: normal;
      color: #6c7073;
      font-size: 106%;
      margin-left: 0;
      position: relative;
      z-index: 1;
    }
    .about-us .txt::before {
      content: '';
      position: absolute;
      background: url(../images/about--large_cloud02.png);
      background-size: cover;
      background-repeat: no-repeat;
      width: 1454px;
      height: 760px;
      left: -390px;
      top: 220px;
      z-index: -1;
      display: block;
    }
    .about-us_section {
      position: relative;
      background: url(../images/about_world-brand.png);
      min-height: 900px;
      background-position: top center;
      background-repeat: no-repeat;
      padding-top: 120px;
      z-index: 1;
    }
    .about-us_section .section_ttl {
      color: #ed4e52!important;
      position: relative;
    }
    .about-us_section p {
      line-height: 1.875em!important;
    }
    .about-us_section .section_ttl::before {
      content: '';
      position: absolute;
      background: url(../images/hero-ribbon.png);
      width: 20px;
      height: 9px;
      background-size: cover;
      bottom: -40px;
      left: 0;
      right: 0;
      margin: auto;
    }
    .about-us_cloud {
      position: absolute;
      background: url(../images/about--large_cloud01.png);
      width: 1662px;
      height: 760px;
      z-index: 0;
      display: block;
      bottom: 240px;
      right: 0;
    }
    .about-movie{
      position: relative;
      margin-bottom: 660px;
      width: 92%;
      margin: -160px auto 150px;
      height: 400px;
    }
    .about-movie iframe{
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      margin: auto;
      z-index: 100;
    }
    @media screen and (max-width: 768px) {
      .about-movie{
        margin: 0 auto 150px;
        height: 180px;
      }
    }
    .service_ttl {
      font-size: 280%;
      color: #5092cf;
      line-height: 1em;
    }
    .btn-wrapper a {
      margin-left: 0;
      margin-top: 32px;
    }
    .other-service_item {
      max-width: 568px;
      margin-right: 64px;
    }
    .other-service_item .txt {
      width: 100%;
      margin-left: 0;
    }
    .other-service_item:nth-child(2) {
      margin-right: 0;
    }
    #under_section01.about-content02 {
      position: relative;
    }
    #under_section01.about-content02::before {
      content: '';
      position: absolute;
      background: url(../images/service-top_bg.png);
      width: 100%;
      max-width: 100%;
      height: 13px;
      background-size: 100%;
      background-repeat: no-repeat;
      top: -8px;
    }
    #under_section01.about-content02.history::before {
      content: none;
    }
    #under_section02.about-content03 {
      position: relative;
      padding-bottom: 160px;
    }
    #under_section02.about-content03::before {
      content: '';
      position: absolute;
      width: 1920px;
      height: 13px;
      background: url(../images/service-bottom_bg.png);
      bottom: 0;
    }
    #under_section02.about-content03::after {
      content: '';
      position: absolute;
      width: 100%;
    }
    .about-us > p {
      line-height: 1.875em!important;
    }
    #under_message .section-parts {
      position: relative;
    }
    #under_message .section-parts::before {
      content: '';
      position: absolute;
      background: url(../images/about_us-top-bg.png);
      background-size: cover;
      background-repeat: no-repeat;
      width: 703px;
      height: 706px;
      right: -400px;
      top: -240px;
    }
    #under_message.about-content01::after {
      content: none;
    }
    .about-content01 h2 {
      color: #353B43;
      position: relative;
    }
    .about-content01 h2::before,
    .about-content02 h2::before,
    .about-content03 h2::before {
      content: '';
      position: absolute;
      background: url(../images/service--ttl_bg.png);
      width: 47px;
      height: 37px;
      background-size: cover;
      top: -56px;
      left: 0;
      right: 0;
      margin: auto;
    }
    .about-content01 h2 small {
      display: block;
      font-size: 53%;
      letter-spacing: .01em;
      font-weight: normal;
      font-style: italic;
      color: #ed4e52;
    }
    .about-content02 p {
      max-width: 605px;
      margin: 0 auto;
      line-height: 2.5em;
      font-size: 107%;
      letter-spacing: 0;
      font-weight: normal;
      color: #6c7073;
    }
    #under_entry.about-content04 {
      background: url(../images/about-entry_bg.png);
      position: relative;
      padding-bottom: 160px;
      z-index: 3;
    }
    #under_entry.about-content04 > .inner {
      overflow: hidden;
    }
    #under_entry .btn.entry {
      font-style: normal;
      font-size: 135%;
    }
    #under_entry.about-content04::before {
      content: '';
      position: absolute;
      background: url(../images/about-us_entry-bg-top.png);
      width: 100%;
      height: 118px;
      top: -109px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top center;
    }
    #under_entry.about-content04::after {
      content: '';
      position: absolute;
      background: url(../images/about-us_entry-bg-bottom.png);
      width: 100%;
      height: 128px;
      bottom: -8px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top center;
      display: block;
      z-index: 10;
    }
    .entry-acc01,
    .entry-acc02 {
      position: absolute;
    }
    .entry-acc01 {
      background: url(../images/entry-acc02.png);
      left: -40px;
      bottom: 110px;
      width: 633px;
      height: 718px;
      background-size: cover;
    }
    .entry-acc02 {
      background: url(../images/entry_acc01.png);
      right: 0;
      bottom: 110px;
      width: 640px;
      height: 544px;
      background-size: cover;
    }
    .item h3 {
      font-size: 150%;
      text-align: center;
      font-size: 200%;
      color: #ed4e52;
      position: relative;
      display: block;
    }
    .item h3::before {
      content: '';
      position: absolute;
      background: url(../images/service--ttl_bg.png);
      width: 47px;
      height: 37px;
      background-size: cover;
      top: -56px;
      left: 0;
      right: 0;
      margin: auto;
    }
    .item li {
      font-size: 140%;
      text-align: left;
    }
    .item {
      width: calc(50% - 16px);
      text-align: center;
      background: #f9f8f8;
      padding: 88px 56px 32px;
      border-radius: 4px;
    }
    .breadcrumb.section_pdg {
      padding-top: 20px;
      padding-bottom: 24px;
      justify-content: flex-start;
    }
    .page-list li {
      margin-right: 32px;
      position: relative;
    }
    .page-list li::before {
      content: '';
      position: absolute;
      width: 8px;
      height: 8px;
      border-top: 2px solid #333;
      border-right: 2px solid #333;
      right: -16px;
      top: 9px;
      transform: rotate(45deg);
    }
    .page-list li:last-child::before {
      content: none;
    }
    #philosophy-book iframe {
      width: 100%!important;
    }
    .item.tane-words h3 {
      line-height: 1em;
      margin-bottom: 0;
    }
    .item h4 {
      font-size: 130%;
      padding: 16px 0;
      background: #e1f3fb;
      border-radius: 4px;
      color: #353b43;
      margin-top: 24px;
    }
    .item.w100 {
      padding: 32px 96px;
      margin: 0 auto;
    }
    .item-wrap {
      margin-bottom: 160px;
    }
    .future-item {
      max-width: 280px;
      width: 33%;
      margin: 0 28px;
      background: #fff;
      border-radius: 160px;
      max-height: 280px;
      min-height: 280px;
    }
    .future-item h4 {
      text-align: center!important;
      padding-top: 48px;
    }
    .future-item p {
      line-height: 1.5em!important;
    }
    .reason--parts .txt h3 {
      line-height: 1.3em;
      position: relative;
    }
    .reason--parts .txt h3 small {
      position: absolute;
      font-size: 356%;
      font-style: italic;
      font-weight: normal;
      color: #fff;
      display: block;
      z-index: -1;
      top: -48px;
      left: -72px;
    }
    .about-us_line.reason::after {
      background: url(../images/about-line-reason.png);
      background-repeat: no-repeat;
      background-size: cover;
      left: 0;
      right: 0;
      margin: auto;
      z-index: 0;
      display: block;
      width: 100%;
    }

    .kikkake .item{
      width: 100%;
    }

  /* message
  **************************************** */
    #under_message.owner-message h2 {
      color: #ed4e52;
      z-index: 1;
      position: relative;
    }
    #under_section01.owner-message {
      position: relative;
      padding-top: 200px;
      padding-bottom: 280px;
    }
    #under_section01.owner-message::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 240px;
      top: -120px;
      background: url(../images/bg_top-section.png);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top center;
    }
    .section--parts.even .img {
      margin-right: 120px;
    }
    .section--parts.even .txt {
      margin-right: 0;
    }
    .staff-img {
      max-width: 910px;
      margin: 0 auto 40px;
      overflow: hidden;
      border-radius: 4px;
      padding: 24px 16px 72px;
      position: relative;
      background: #fff;
      box-shadow: 0 0 6px 2px rgba(0,0,0,.1);
      transform: rotate(-2deg);
    }
    #under_message.message h4 {
      text-align: center;
    }
    #under_message.message h2 {
      color: #ed4e52;
    }

  /* crosstalk
  **************************************** */
    .staff-item {
      max-width: 160px;
    }
    .crosstalk-img {
      width: 160px;
      height: 160px;
      position: relative;
      margin-bottom: 24px;
      border-radius: 80px;
      overflow: hidden;
    }
    .staff-item::before {
      content: '×';
      position: absolute;
      font-family: Shuei MaruGo B;
      font-size: 500%;
      color: #ed4e52;
      z-index: 1;
      right: -124px;
      top: 56px;
      line-height: 1em;
    }
    .speeching-bubble .crosstalk-img {
      width: 120px;
      height: 120px;
      margin-bottom: 0;
      margin-right: 56px;
    }
    .speeching-bubble:nth-child(even) {
      -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
    }
    .speeching-bubble:nth-child(even) .crosstalk-img {
      margin-right: 0;
      margin-left: 56px;
    }
    .staff-speech {
      padding: 24px 32px;
      background: #daedf9;
      width: calc(100% - 160px);
      border-radius: 4px;
      font-size: 130%;
      font-weight: normal;
      color: #353b43;
      position: relative;
    }
    .staff-speech::before {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 16px 27.7px 16px 0;
      border-color: transparent #daedf9 transparent transparent;
      left: -26px;
      top: 30%;
    }
    .speeching-bubble:nth-child(even) .staff-speech::before {
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 16px 0 16px 27.7px;
      border-color: transparent transparent transparent #daedf9;
      right: 0;
      left: 100%;
    }
    .speeching-bubble .crosstalk-img img {
      max-width: 160px;
      position: absolute;
      left: 0;
      right: 0;
      margin: auto;
      width: 160px;
      transform: translateX(-24px);
    }
    #under_section02 .staff-speech,
    #under_section04 .staff-speech {
      background: #fff;
    }
    #under_section02 .staff-speech::before,
    #under_section04 .staff-speech:before {
      border-color: transparent #fff transparent transparent;
    }
    #under_section02 .speeching-bubble:nth-child(even) .staff-speech::before,
    #under_section04 .speeching-bubble:nth-child(even) .staff-speech:before {
      border-color: transparent transparent transparent #fff;
    }
    .crosstalk.section_pdg {
      padding-top: 120px!important;
      padding-bottom: 80px;
    }
    .staff-img.crosstalk-last {
      margin-bottom: 160px;
    }
    @media screen and (max-width: 768px) {
      .staff-wrapper {
        display: block;
      }
      .crosstalk.section_pdg {
        padding-bottom: 240px!important;
      }
      .about-content02.crosstalk.section_pdg {
        padding-top: 0!important;
        padding-bottom: 80px!important;
      }
      .about-content03.crosstalk.section_pdg,
      .about-content04.crosstalk.section_pdg,
      .about-content05.crosstalk.section_pdg {
        padding-bottom: 80px!important;
      }
      .staff-item {
        width: 100%;
        max-width: 100%;
        margin-bottom: 80px;
      }
      .staff-item::before {
        left: 0;
        right: 0;
        margin: auto;
        top: auto;
        bottom: -80px;
      }
      .staff-item:last-child::before {
        content: none;
      }
      .staff-info h3 {
        text-align: center!important;
      }
      .crosstalk-img {
        margin-left: auto;
        margin-right: auto;
      }
      .staff-speech {
        margin: auto;
        margin-right: 0;
        padding: 16px;
        font-size: 100%;
        width: calc(100% - 110px);
        line-height: 1.6em;
      }
      .speeching-bubble .crosstalk-img {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
        margin-right: auto;
        margin-left: 0;
      }
      .speeching-bubble .crosstalk-img img {
        max-width: 80px;
        transform: translateX(0);
      }
      .ftr-pbl_wrapper.under {
        bottom: -96px;
      }
    }


  /* social
  **************************************** */
    .project-num {
      position: relative;
      font-size: 120%;
      line-height: 1.4em;
      color: #fff;
      z-index: 1;
      display: block;
      font-style: normal;
    }
    .project-num::before {
      content: '';
      position: absolute;
      width: 40px;
      height: 40px;
      background: #ed4e52;
      z-index: -1;
      display: block;
      border-radius: 40px;
      left: 0;
      right: 0;
      margin: auto;
      top: 3px;
    }
    #under_section01.social.section_pdg {
      padding-top: 40px;
      padding-bottom: 80px;
    }
    #under_section01.social,
    #under_section03.social {
      position: relative;
    }
    #under_section01.social::after,
    #under_section02.social::after {
      content: '';
      position: absolute;
      background: url(../images/social-section-cloud.png);
      width: 100%;
      height: 168px;
      background-size: cover;
      background-position: top center;
      background-repeat: no-repeat;
    }
    #under_section02.social::after {
      background: url(../images/message-content_bg.png);
      height: 421px;
    }
    #under_section01 .project-ttl h2::before {
      content: none;
    }
    .volunteer-wrapper {
      max-width: 100%;
    }
    .slick-slide .turn-up-item {
      transition: .3s ease;
      transform: scale(.85);
      transform-origin: 100% 50%;
    }
    .slick-current .turn-up-item {
      transform: scale(1);
      transform-origin: 50% 50%;
    }
    .slick-current + .slick-slide  .turn-up-item {
      transform-origin: 0 50%;
    }
    /* here - undermessage */

  @media screen and (max-width: 1450px) {
      .baroon-wrapper.right,
      .baroon-wrapper.left {
        max-width: 380px;
      }
      .entry-acc01 {
        width: 480px;
        height: 550px;
        background-repeat: no-repeat;
        background-size: 100%;
        top: -240px;
      }
      .entry-acc02 {
        width: 480px;
        height: 480px;
        bottom: 40px;
        background-repeat: no-repeat;
        background-size: 100%;
      }
      .ftr-acc_01 {
        top: -240px;
        left: -220px;
      }
      .ftr-acc_02 {
        background-size: contain;
        background-repeat: no-repeat;
        width: 490px;
        height: 404px;
        transform: translateY(0);
      }
      .ftr-acc_03 {
        width: 600px;
        height: 471px;
        background-repeat: no-repeat;
        background-size: contain;
      }
    }

    @media screen and (max-width: 1440px) {
      .under-header--nav {
        padding-right: 120px;
      }
      .under-header--nav {
          padding: 37px 154px 32px 56px;
      }

      .header--logo.under {
        top: 22px;
        width: 160px;
      }
      .sub-nav li {
        font-size: 100%;
      }
      .header-subnav-wrapper {
        padding-top: 32px;
        padding-bottom: 32px;
      }
      #home_carrerup p {
        transform: none;
        opacity: 1;
      }
      .carrerup_img01,
      .carrerup_img02 {
        -ms-filter: blur(0);
        filter: blur(0);
      }
      .carrerup_img01.active,
      .carrerup_img02.active {
        -ms-filter: blur(0);
        filter: blur(0);
      }
      .staff--slider-wrapper {
        opacity: 1;
        transform: translateX(0);
      }
      .voice-slider_wrapper {
        transform: translateY(0);
        opacity: 1;
      }
      .carrerup_img01,
      .carrerup_img02 {
        opacity: 1;
        filter: blur(0);
      }
      #home_carrerup h2,
      #home_social h2,
      #home_recruitment h2,
      #home_staff h2 {
        opacity: 1;
        filter: blur(0);
      }
      #home_recruitment::before {
        z-index: -1;
      }
      .staff-txt {
        opacity: 1;
      }
      .works-slider_wrapper {
        opacity: 1;
        transform: translateY(0);
      }
      .social-wrapper .social-items,
      .social-wrapper {
        opacity: 1;
        transform: translateY(0);
      }
      .under-header--nav .gnav a {
        font-size: 100%;
        padding: 0 16px;
      }
      .service-cont {
        /*margin-right: 40px;*/
      }
      .social-items {
        margin-right: 32px;
        margin-left: 32px;
      }
    }

  @media screen and (max-width: 1350px) {
    .entry-acc01 {
      width: 400px;
      height: 480px;
    }
    .entry-acc02 {
      width: 320px;
      height: 320px;
      bottom: 160px;
    }

    .carrerup_img02 {
        position: absolute;
        top: -80px;
        left: 160px;
        max-width: 300px;
    }

    .carrerup_img01 {
      position: absolute;
      bottom: 0;
      right: 140px;
      max-width: 300px;

  }

    .hero-entry {
      right: 100px;
      bottom: 64px;
      max-width: 150px;
  }

  .voice-slider-item .items h4 {
    color: #001650;
      font-size: 22px;
      font-weight: normal;
      margin: 50px 0 20px 0;
      line-height: 1.2;
  }


  }

  @media screen and (max-width: 1250px) {
    .baroon-wrapper.right, .baroon-wrapper.left {
      max-width: 220px;
    }
    /*.under-header--nav .gnav .gnav--message {
      display: none;
    }*/
    .baroon-wrapper.right{
      top: 80px;
    }

    #home_service .imgdivvs img{
        max-width: 300px;
    }

    .logindiv {
        top: -32px;
        right: -20px !important;
    }

  }

  @media screen and (max-width: 1080px) {
    .under-header--nav .gnav {
      /*display: none;*/
    }
    .sub-nav-drawer {
      right: -24px;
    }
    .under-header--nav {
      padding-top: 45px;
    }
    .side--entry_btn {
      display: none;
    }
  }

  @media screen and (max-width: 1024px) {
   .service-cont{
        width: calc(50% - 30px);
   }
   .service-cont .service-bg .mask-1{
    width: 100%;
   }

    #home_service .imgdivvs img{
        max-width: 250px;
    }
   

    .carrerup_img02 {
        position: absolute;
        top: -80px;
        left: 140px;
        max-width: 250px;
    }

    .carrerup_img01 {
      position: absolute;
      bottom: 0;
      right: 80px;
      max-width: 250px;

  }

      .hero-entry {
      right: 80px;
      bottom: 64px;
      max-width: 120px;
  }

  .voice-slider-item .items{
    min-height: 220px;
  }
    .voice-slider-item .items h4 {
    color: #001650;
      font-size: 22px;
      font-weight: normal;
      margin: 50px 0 20px 0;
      line-height: 1.2;
  }
  .voice-slider-item .items .morepp span{
    font-size: 16px;
  }
  .baroon-wrapper.right{
    top: 250px;
  }

  .baroon-wrapper.left{
    top: 400px;
  }

  }

  

@media screen and (min-width: 992px) {
    .sub-nav-drawer {
      display: none;
    }
    
  }

@media screen and (max-width: 992px) {
    ul.gnav--list{
      display: none;

    }
    .header--nav{
      position: unset;
    }

    .sub-nav-drawer{
          right: 24px;
          top: 49px;
    }

    .logindiv1{
      display: none !important;
    }

    .baroon-wrapper.right, .baroon-wrapper.left {
        max-width: 180px;
    }

        .logindiv {
          position: absolute;
         right: 104px !important;
            top: 49px !important;
          border-radius: 50%;
          z-index: 99;
          width: 62px;
          height: 62px;
          transition: .4s all;
      }

      .logindiv1{
        position: relative;
        top: -8px;
      }

  }

  @media screen and (max-width: 767px) {
    .page_ttl-jp {
      font-size: 233%;
    }
    .loading.section_pdg {
      padding-top: 64%;
    }
    .loading::before {
      height: 90px;
      display: block;
      background-size: 100%;
    }
    .sub-nav li {
      min-width: 50%;
      max-width: 50%;
      margin-right: 0;
      font-size: 84%;
      padding-top: 8px;
      letter-spacing: 0;
    }
    .hero-slide {
      display: block;
    }
    .header-subnav-wrapper {
      padding: 10px 0 10px;
    }
    .header-subnav-wrapper::before {
      top: 2px;
    }
    .first-logo, .first-logo.service, .first-logo.about, .first-logo.recruit {
      margin-bottom: 0;
      line-height: 1.5em;
    }
    .first-logo.service::before,
    .first-logo.about::before,
    .first-logo.recruit::before {
      top: -2px;
    }
    .header--logo.under {
      width: 159px;
      height: 65px;
      top: 20px;
      left: 24px;
      background: none;
    }
    .btn.entry {
      max-width: 95%;
      min-width: 95%;
      margin: 8px auto;
      padding: 16px 0 16px;
    }
    .img-01,
    .img-02 {
      width: 100%;
      height: 500px;
    }
    .img-02 {
      bottom: 0;
    }
    .img-01 li, .img-02 li {
      height: 500px;
      background-size: cover!important;
      background-position: top center!important;
    }
    .hero-entry {
      display: none;
    }
    .header--logo {
      max-width: 160px;
      padding-left: 21px;
    }
   /* .sub-nav-drawer {
      top: -90px;
      right: 0;
      box-shadow: 0 1px 2px #333;
    }*/
    .hero--ttl small{
      color: #fff;
      position: relative;
      top: 15px;
    }
    .hero--ttl small a{
      color: #fff;
    }

    #home_message p {
      width: 100%;
      max-width: 100%;
      text-align: left;
      margin-bottom: 40px;
    }
    #home_message p br {
      display: none;
    }
    .baroon-wrapper {
      display: none;
    }
    #home_message h2 {
      font-size: 200%;
    }
    #home_message h2 span {
      font-size: 249%;
      top: -32px;
    }
    #home_message h3 {
      font-size: 173%;
      margin-bottom: 40px;
    }
    #home_message h3::before {
      bottom: -24px;
    }
    #home_message.section_pdg {
      padding-top: 160px;
      padding-bottom: 160px;
    }
    .service-cont {
      width: 100%;
      margin-right: 0;
      margin-bottom: 40px;
    }
    .section_ttl {
      line-height: 1.4em;
    }
    #home_service h2,
    #home_voice h2,
    #home_staff h2,
    #home_recruitment h2,
    #home_carrerup h2,
    #home_social h2 {
      font-size: 220%;
    }
    #home_service h2::before,
    #home_voice h2::before,
    #home_staff h2::before,
    #home_recruitment h2::before,
    #home_carrerup h2::before,
    #home_social h2::before {
      background: url(../images/service--ttl_bg_sp.png);
      background-size: 100%;
      width: 38px;
      height: 30px;
      top: -32px;
      background-repeat: no-repeat;
    }
    .pagetop {
      width: 40px;
    }
    .service-txt {
      text-align: left;
    }
    .service-txt br {
      display: none;
    }
    .service-cont:nth-child(2), .service-cont:nth-child(4), .service-cont:nth-child(5) {
      transform: translateY(0);
    }
    .link-item-wrapper:first-child::before {
      content: none;
    }
    .cloud-acc01,
    .cloud-acc02,
    .cloud-acc03 {
      display: none;
    }
    .social .img, .home_recruitment .img {
      float: none;
      width: 100%;
      display: block;
      margin-top: 60px;
    }
    .staff--slider-wrapper {
      max-height: 100%;
    }
    .works-slider-item {
      display: block!important;
    }
    .social .txt-wrapper h3 {
      text-align: left;
    }
    .social_slick-prev,
    .social_slick-next {
      position: absolute;
      top: 45%;
    }
    .social_slick-next {
      left: -30px;
    }
    .social_slick-prev {
      right: 16px;
    }
    .social_slick-prev::before {
      transform: rotate(135deg)!important;
      top: -24px!important;
      left: 6px!important;
    }
    .social_slick-next::before {
      top: -24px!important;
      z-index: 2;
      left: 24px!important;
    }
    .social_slick-prev::before,
    .social_slick-prev::after {
      z-index: 2;
    }
    .social_slick-prev::after,
    .social_slick-next::after {
      content: '';
      position: absolute;
      background: #fff;
      width: 40px;
      height: 40px;
      border: 1px solid #ed4e52;
      border-radius: 40px;
      z-index: 1;
    }
    .social_slick-prev::after {
      left: -8px;
      top: -40px;
    }
    .social_slick-next::after {
      left: 8px;
      top: -40px;
    }
    .ethiopia .flug,
    .tanzania .flug,
    .kenya .flug,
    .ruwanda .flug {
      left: 0;
      top: 32%;
    }
    .txt {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      padding-top: 24px;
      padding-bottom: 24px;
      padding-left: 24px;
      padding-right: 24px;
    }
    .txt h3 {
      font-size: 160%!important;
      text-align: center;
    }
    .social .section--parts .txt h3 {
      text-align: left;
      line-height: 1.5em;
    }
    .social .section--parts .txt h3 br {
      display: none;
    }
    .social .section--parts .txt {
      padding: 0;
    }
    .works-slider-item .txt .btn {
      margin-left: auto;
    }
    #works-slider .slick-arrow.slick-next,
    #works-slider .slick-arrow.slick-prev {
      display: none!important;
    }
    .fund-wrapper {
      padding-top: 80px;
    }
    #home_service.section_pdg {
      padding-bottom: 0;
    }
    .sub-nav-drawer.fixed {
      display: block;
      right: 24px;
    }
    .header.top-fixed {
      background: transparent;
      border-bottom: none;
      position: absolute;
    }
    .head-menu-area .section_pdg {
      padding-top: 24px;
    }
    .logo.fixed--menu {
      width: 132px;
      height: 53px;
      margin: 0 auto;
    }
    .header-subnav-wrapper {
      display: block;
      padding-left: 0;
      padding: 20px 0!important;
    }
    .home .head-menu-area {
      height: 900px;
      overflow-y: scroll;
    }
    .sub-nav li::before {
      left: -16px;
      top: 16px;
    }
    .hero--ttl_wrapper {
      background: none;
    }
    .hero_ttl_sp {
      transform: translate(0, 15%);
    }
    .inner.hero-parts {
      width: 100%;
    }
    .media-wrapper {
      padding: 24px 32px!important;
    }
    .media-txt {
      width: 100%!important;
      margin-right: 0;
    }
    .media-cont {
      display: block!important;
    }
    .media-txt h3 {
      font-size: 170%!important;
    }
    #under_message h4 {
      max-width: 100%;
    }
    .media-img {
      display: block;
      overflow: hidden;
      margin: 24px auto;
    }
    .news-item {
      width: 100%!important;
      margin-right: 0!important;
      margin-bottom: 40px!important;
    }
    .single-wrapper {
      padding-left: 32px;
      padding-right: 32px;
      padding-top: 32px;
      padding-bottom: 32px;
    }
    #news_content.section_pdg {
      padding-bottom: 80px!important;
    }
    #home_message::before {
      background: url(../images/hero-under_bg_sp.png);
      width: 100%;
      background-size: 100%;
      height: 124px;
      top: -56px;
      background-repeat: no-repeat;
    }
    .news-item.staff,
    .news-item.staff:nth-child(3n) {
      margin: 24px auto 56px;
    }
    .news-item {
      margin-left: auto!important;
      margin-right: auto!important;
    }
    .news-item:nth-child(2),
    .news-item:nth-child(5),
    .news-item:nth-child(8),
    .news-item:nth-child(11),
    .news-item:nth-child(14),
    .news-item:nth-child(17),
    .news-item.staff:nth-child(4) {
      transform: none!important;
      margin-left: auto!important;
      margin-right: auto!important;
    }
    #works-slider .slick-dots {
      top: 0;
    }
    #works-slider.slick-slider {
      margin-top: 40px;
    }
    #works-slider .slick-dots li {
      margin: 0;
    }
    #works-slider .slick-dots li button::after {
      content: none;
    }
    .link-item_wrapper {
      display: block;
    }
    #home_staff.section_pdg {
      padding-top: 180px;
      padding-bottom: 2px;
    }
    #home_voice.section_pdg {
      padding-bottom: 240px;
      padding-top: 210px;
    }
    #home_message::after {
      height: 180px;
      background: url(../images/message-content_bg_sp.png);
      background-size: 100%;
    }
    #home_voice::before {
      background: url(../images/voice-content_bg_sp.png);
      background-size: 100%;
      background-repeat: no-repeat;
      height: 185px;
    }
    #home_voice::after {
      background: url(../images/staff-content_bg_sp.png);
      height: 185px;
      background-size: 100%;
    }
    #home_voice {
      background: url(../images/voice_bg_sp.jpg);
      background-size: cover;
    }
    .link-item {
      margin: 0 auto 24px;
    }
    .under-works-slider .link-item:nth-child(2n) {
      transform: none;
    }
    #home_recruitment.section_pdg {
      padding-bottom: 160px;
    }
    #home_carrerup p {
      text-align: left;
    }
    #home_carrerup p br {
      display: none;
    }
    #home_carrerup.section_pdg {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .home-entry {
      padding-top: 80px;
      max-height: 100%;
      position: relative;
      background: url(../images/home-entry_bg-sp.jpg);
      background-size: cover;
      transform: none;
    }
    .home-entry::before,
    .home-entry::after {
      content: '';
      position: absolute;
    }
    .home-entry::before {
      background: url(../images/home_entry-bg_sp.png);
      height: 88px;
      width: 100%;
      top: -80px;
      background-size: cover;
    }
    .home-entry::after {
      background: url(../images/common_under-bg_sp.png);
      background-size: cover;
      height: 185px;
      width: 100%;
      bottom: 0;
    }
    .home-entry p {
      max-width: 90%;
      margin: 0 auto 48px;
    }
    .home-entry p br {
      display: none;
    }
    .carrer-acc01,
    .carrer-acc02,
    .carrerup_img01,
    .carrerup_img02 {
      display: none;
    }
    .social-wrapper {
      display: block;
    }
    .social-items {
      width: 100%;
      max-width: 100%;
      margin: 0 auto 32px;
    }
    .staff-txt {
      text-align: left;
      margin-bottom: 120px;
    }
    .staff-txt br {
      display: none;
    }
    .head-menu-area {
      z-index: -100;
      top: -2000px;
    }
    .staff--slider-wrapper .news-item.staff {
      margin-left: auto;
      margin-right: auto;
      transform: none!important;
    }
    .under-works-slider .link-item:nth-child(1),
    .under-works-slider .link-item:nth-child(3) {
      margin-left: 0!important;
    }
    .under-works-slider .link-item:nth-child(2),
    .under-works-slider .link-item:nth-child(4) {
      margin-right: 0!important;
    }
    .entry-parts {
      display: none;
    }
    #home_recruitment > .inner {
      width: calc(100% - 24px);
    }
    .item-img {
      margin: 0 auto 32px;
    }
    #home_social.section_pdg {
      padding-top: 160px;
      padding-bottom: 400px;
    }
    #works-slider .slick-dots li:nth-child(1) button::before,
    #works-slider .slick-dots li:nth-child(2) button::before,
    #works-slider .slick-dots li:nth-child(4) button::before {
      top: 21px;
    }
    #works-slider .slick-dots li:nth-child(3) button::before {
      top: 13px;
      width: 80%;
      margin: 0 auto;
      text-align: center;
      left: 0;
      right: 0;
    }
    #home_social::before {
      content: '';
      position: absolute;
      background: url(../images/common_under-bg_sp.png);
      background-size: 100%;
    }
    .pagetop {
      right: 16px;
    }
    .pagetop.active {
      bottom: 16px;
      right: 16px;
    }
    .addess-item h3::before {
      left: 0;
    }
    .footer nav {
      max-width: 100%;
      height: 100%;
      padding-top: 40px;
      padding-bottom: 40px;
      background-size: 100%;
      position: absolute;
      background: url(../images/ftr_bg-common_sp.jpg);
      top: 80px;
      background-repeat: repeat;
      min-height: 600px;
      margin-top: 100px;
    }
    .footer nav::before {
      content: '';
      position: absolute;
      display: block;
      background: url(../images/footer-bg_content_sp.png);
      width: 100%;
      height: 195px;
      background-size: 100%;
      top: -180px;
      z-index: 10;
    }
    .address {
      width: 100%;
    }
    .footer {
      padding: 0;
    }
    .ftr--logo img {
      max-width: 244px;
      margin-top: 24px;
    }
    .earth-bg {
      padding-top: 34px;
      height: 401px;
    }
    .ftr-acc_02 {
      transform: translateY(-160px);
      background: url(../images/ftr-bg-cloud02_sp.png);
      opacity: 1;
      background-size: 100%;
      width: 100%;
      max-width: 400px;
      background-repeat: no-repeat;
    }
    .page--menu {
      padding: 24px 0 0;
      width: 100%;
    }
    .about-us .txt::before {
      content: none;
    }
    .about-us_section {
      background-image: none;
      background: #fff;
      padding-top: 64px;
      border: 16px solid #B4DAEE;
      padding: 40px 16px;
      height: 100%;
      min-height: auto;
    }
    .about-us_section p {
      margin-bottom: 0!important;
    }
    .about-us_cloud {
      bottom: 80px;
    }
    .about-us_section h3 {
      text-align: center!important;
    }
    .about-us_section .section_ttl::before {
      bottom: -24px;
    }
    .about-us_line::after,
    .about-us_line.reason::after {
      background: url(../images/message_us-line_sp.png);
      left: 0;
      background-size: 100%;
      width: 100%;
    }
    #under_message .section-parts::before {
      content: none;
    }
    .service--first,
    .about--first,
    .recruit--first {
      line-height: 1.8em;
      padding-left: 44px!important;
      width: 100%!important;
      display: block;
    }
    .page--menu li {
      font-size: 86%;
      width: calc(53% - 24px);
      display: inline-block;
      padding-left: 16px;
    }
    .page--menu li::before {
      top: 8px;
    }
    .page--menu li img {
      vertical-align: sub;
    }
    .btn.voice {
      width: 100%;
      max-width: 95%;
    }
    .voice-slider-item {
      min-height: 423px;
    }
    .ttl-baroon {
      left: 0;
      right: 0;
      max-width: 318px;
      margin: auto;
      top: -80px;
      display: none;
    }
    #home_staff::before {
      background: url(../images/staff-content_under-bg_sp.png);
      background-size: cover;
      height: 85px;
    }
    .staff--slider-wrapper {
      transform: translateX(0);
      opacity: 1;
    }
    .staff--slider-wrapper .news-item.staff.odd::after,
    .staff--slider-wrapper .news-item.staff.even::after {
      content: none;
    }
    .staff--slider-wrapper .news-item.staff::before
    .staff--air-plane {
      display: none;
    }
    .staff--slider-wrapper .news-item.staff.odd::before {
      left: 0;
    }
    .staff--slider-wrapper .news-item.staff::before {
      background: none;
      width: 1px;
      height: 48px;
      border-right: 4px dotted #ed5256;
    }
    .staff--air-plane {
      top: -115px;
      width: 61px;
      left: 0;
      right: 0;
      margin: auto;
    }
    .entry h2 {
      font-size: 250%;
    }
    .page_ttl {
      padding: 144px 0 64px;
      font-size: 80%;
    }
    #under_ttl {
      margin-top: 0;
    }
    .sub-nav-drawer.fixed {
      top: 16px;
      box-shadow: 0 1px 2px #999;
    }
    .sub-nav-drawer.fixed.under.show {
      position: fixed;
    }
    .head-menu-area.active {
      position: fixed;
    }
    .home .top-fixed .head-menu-area.active {
      top: 0;
    }
    .home .sub-nav-drawer.sp  {
      opacity: 0;
      transition: .4s all ease;
    }
    .home .sub-nav-drawer.sp.show {
      position: fixed;
      opacity: 1;
    }
    .page_ttl_jp {
      font-size: 240%;
    }
    #under_message.section_pdg {
      padding-top: 100px!important;
      padding-bottom: 80px!important;
    }
    #under_message.faq.section_pdg {
      padding-top: 64px;
    }
    #under_message .section-parts::before {
      z-index: -1;
    }
    #under_message .section-parts {
      padding-top: 0;
      display: block;
      margin-bottom: 40px;
    }
    .answer {
      padding-top: 16px;
      padding-left: 2.4em;
    }
    .answer::before {
      top: 0!important;
      font-size: 190%!important;
    }
    .faq-nav_item a {
      padding: 16px 40px 16px 16px;
    }
    .faq_nav .faq-nav_item a[href="#faq-01"] {
      border:none;
    }
    .about-us .txt {
      text-align: left;
      padding: 24px 0;
      width: 100%!important;
    }
    #under_message::after {
      background-size: 100%;
      height: 80px;
    }
    #under_message::before {
      height: 30px;
      top: -22px;
      background-size: 100%;
    }
    #under_message h2 {
      font-size: 240%!important;
    }
    #under_message h2 span {
      font-size: 180%!important;
      line-height: 1em;
    }
    #under_message h3 {
      font-size: 170%!important;
      text-align: left;
    }
    #under_message .addess-item.entry h3 {
      text-align: center;
    }
    #under_message h3 br {
      display: none;
    }
    .section_ttl-sm.social br {
      display: none;
    }
    #under_message p {
      text-align: left;
      line-height: 2em;
    }
    .future-item {
      width: 280px;
      margin: 0 auto 28px;
    }
    .future-item h4 {
      max-width: 175px!important;
      margin: auto;
    }
    .future-item > p {
      text-align: center!important;
      margin-top: 24px!important;
    }
    #under_section01 h2,
    #under_section02 h2,
    #under_content03 h2 {
      font-size: 210%!important;
      line-height: 1.2em;
    }
    #under_message.owner-message::after {
      content: none;
    }
    #under_message.owner-message h2 {
      font-size: 230%;
    }
    .about-content02 p {
      text-align: left;
    }
    .about-content02 p br {
      display: none;
    }
    .service_ttl {
      font-size: 200%;
    }
    .section--parts {
      display: block;
      margin-bottom: 80px;
    }
    .section--parts::before {
      bottom: -24px;
    }
    #under_section01.section_pdg {
      padding-top: 80px!important;
      padding-bottom: 80px!important;
    }
    #under_section01.history h2 span {
      top: -30px;
    }
    #under_section01.social::after {
      width: 100%;
      height: 40px;
      background-size: 100%;
      bottom: -40px;
    }
    /*#under_section02.section_pdg {
      padding-top: 120px!important;
    }*/
    #under_section02.about-content03::before {
      background-size: cover;
      width: 100%;
    }
    #under_section01.about-content02::before {
      width: 100%;
      height: 13px;
      background-size: cover;
    }
    .about-content01 h2::before,
    .about-content02 h2::before,
    .about-content03 h2::before {
      background: url(../images/service--ttl_bg_sp.png);
      width: 38px;
      height: 30px;
      background-size: cover;
    }
    #philosophy-book iframe {
      height: 200px;
    }
    .reason--parts {
      display: block;
    }
    .reason--parts .txt h3 small {
      top: -16px;
      left: 0;
    }
    .works-slider_wrapper.under {
      opacity: 1;
    }
    .btn-wrapper a {
      margin: 16px auto 0;
    }
    .item-wrap {
      margin-bottom: 0;
    }
    .item {
      width: 100%;
      padding: 64px 16px 32px;
      margin-bottom: 24px;
    }
    .social .txt-wrapper {
      padding-top: 40px;
      padding-left: 24px;
      padding-right: 24px;
      padding-bottom: 80px;
    }
    .item h3::before {
      background: url(../images/service--ttl_bg_sp.png);
      background-size: cover;
      width: 38px;
      height: 30px;
      top: -40px;
    }
    .item h4 {
      padding: 16px 8px;
      font-size: 119%;
    }
    .item-odd, .item-even {
      display: block;
      margin-bottom: 24px!important;
    }
    .faq-wrapper .txt h3::before {
      bottom: -8px!important;
    }
    .faq-wrapper .txt {
      width: 100%!important;
      margin-right: 0;
      padding: 24px 0!important;
    }
    .faq-wrapper .img img {
      max-width: 100%!important;
    }
    .staff-lg-img {
      margin-bottom: 40px;
    }
    .table-01 tr {
      display: block;
      text-align: left;
    }
    .table-01 th {
      display: block;
      width: 100%;
    }
    .project-num {
      line-height: 2.3em;
    }
    .section_ttl.report {
      margin-bottom: 0;
    }
    #works-slider.social.slick-slider {
      margin-top: 0;
    }
    #report-section.section_pdg {
      padding-top: 160px;
    }
    .link-item-wrapper {
      width: 100%;
    }
    .footer.under nav {
      margin-top: 0;
      padding-top: 0;
      padding-bottom: 0;
      min-height: auto;
    }
    .footer.under nav::before {
      content: none;
    }
    .entry-acc01,
    .entry-acc02 {
      display: none;
    }
    #under_entry.about-content04 {
      padding-bottom: 240px;
      padding-top: 40px;
    }
    #under_entry.about-content04::before {
      background: url(../images/about-us_entry-bg-top_sp.png);
      background-size: 100%;
      height: 50px;
      top: -48px;
    }
    #under_entry.about-content04::after {
      content: none;
    }
    .footer.under::before {
      content:'';
      position: absolute;
      background: url(../images/about-us_entry-bg-bottom_sp.png);
      width: 100%;
      top: -240px;
      height: 280px;
      background-size: contain;
    }
    .addess-item {
      text-align: left;
    }
    .uuls{
      bottom: -30px !important;
    }
   

    .side-post .table th, .post .table th {
      width: 96px;
      margin-right: 16px;
    }
    .post h3 {
      font-size: 160%!important;
    }
    .post .post--img {
      width: 100%!important;
      height: 240px!important;
    }
    .recruit-item {
      padding: 32px 16px!important;
    }
    .post .item-txt {
      width: 100%!important;
    }
    .recruit--img {
      height: 180px!important;
    }
    .single-guideline#under_message h2 {
      font-size: 177%!important;
      line-height: 1.6em;
      margin-bottom: 40px;
    }
    .table-recruit_detail th,
    .table-recruit_detail td {
      width: 100%!important;
      display: block;
      padding: 8px 8px 8px;
    }
    .single-guideline .wp-pagenavi {
      display: block;
    }
    .single-guideline .wp-pagenavi a,
    .single-guideline .wp-pagenavi a:not(:first-child) {
      width: 100%!important;
    }
    #sidefix--main_column {
      width: 100%!important;
      margin-left: 0!important;
      max-width: 100%!important;
    }
    #sidefix--side_column {
      float: none;
      width: 100%;
    }
    #sidefix--side_content {
      width: 100%;
      margin: 0 0 40px;
      padding: 16px 8px;
    }
    .pmark {
      max-width: 63px;
    }
    .icn_sp {
      width: 18px;
    }
    /*#under_section02.social.section_pdg {
      padding-bottom: 80px;
    }*/
    #under_section02.social::after {
      height: 81px;
      width: 100%;
      background-size: 100%;
    }
    #under_content03.section_pdg {
      padding-bottom: 160px!important;
    }
    #under_message .privacy-wrapper p {
      max-width: 100%;
      margin-bottom: 80px;
    }
    #under_message .privacy-wrapper {
      padding-left: 24px;
      padding-right: 24px;
    }
    #cboxClose {
      top: -56px;
      right: 40px;
    }
    #colorbox, #cboxOverlay, #cboxWrapper {
      overflow: hidden;
    }
    .ftr-acc_02 {
      transform: translateY(-20%)!important;
    }
    .social .slick-dots li {
      max-width: 62px;
      width: 100%;
      height: 62px;
    }
    .social .slick-dots .thumb_img {
      width: 62px;
      height: 62px;
    }
    #under_section02.social::after {
      background: url(../images/message-content_bg_sp.png)!important;
      height: 180px!important;
      background-size: 100%!important;
    }
    #under_section02.section_pdg {
      padding-bottom: 160px!important;
    }
  }

/* iPhone SE,5s
**************************************** */
    @media screen and (max-width: 321px) {
      .loading_heart {
        max-width: 28px;
      }
      .loading-ttl {
        max-width: 164px;
        margin: auto;
      }
      .loading_heart::before {
        max-width: 28px;
        max-height: 56px;
        background-size: 100%;
      }
      #hero {
        height: 600px;
      }
      .home .top-fixed .head-menu-area.active {
        overflow: scroll;
        max-height: 100%;
      }
      .img-01,
      .img-02 {
        height: 320px;
      }
      .item-img {
        max-width: 280px;
        max-height: 280px;
      }
      #home_message.section_pdg {
        padding-top: 120px;
      }
      #home_message::after,
      #home_voice::after,
      #home_staff::before {
        height: 150px;
      }
      #cboxContent {
        max-width: 320px!important;
        width: 320px!important;
        margin: 4px;
      }
    }

/* Firefox
**************************************** */
  @-moz-document url-prefix() {
    .staff--slider-wrapper {
      transform: none;
      opacity: 1;
    }
  }

/* iPad Safari
**************************************** */
  @media screen and (-webkit-min-device-pixel-ratio:0) {
    .staff--slider-wrapper {
      transform: none;
      opacity: 1;
    }
    .ftr-acc_02 {
      transform: none;
    }
    .ftr-acc_01 {
      transform: translateX(1000px);
    }
  }


/* ##############################################################################

    PAGE

############################################################################## */

/* sitemap
*************************************************** */
  .sitemap--list { width: 49%; }
  .sitemap--list-page.sitemap--list > li { margin-bottom: 10px; }
  .sitemap--list-posts.sitemap--list .sitemap--item-ttl:not(:first-child) { margin-top: 10px; }
  .sitemap--list-posts.sitemap--list > .sitemap--item-child { margin-bottom: 16px; }
  .sitemap--list li a {
    display: block;
    text-decoration: none;
  }
  .sitemap--list li a:hover {
    color: #4267b2;
    text-decoration: underline;
  }
  .sitemap--item-ttl { font-weight: normal; }
  .sitemap--item:not(.sitemap--item-ttl) { font-size: 85%; }

  /* --- category --- */
  .sitemap--list li.sitemap--item-child a { padding-left: 8px; }
  .sitemap--list li.sitemap--item-child.sitemap--item-page { padding: 6px 0 6px 24px; }
  .sitemap--list li.sitemap--item-taxonomy ul { letter-spacing: -.4em; }
  .sitemap--list li.sitemap--item-taxonomy ul li {
    display: inline-block;
    padding: 0;
    margin-right: 8px;
    letter-spacing: normal;
  }

  @media screen and (max-width: 767px) {
    .sitemap--list { width: 100%; }
    .sitemap--list-posts.sitemap--list > .sitemap--item-child { margin-bottom: 8px; }
  }

/* common-parts
**************************************** */
  #under_message {
    position: relative;
    background: url(../images/bg_blue.png);
  }
  #under_message::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 118px;
    top: -110px;
    background: url(../images/under-ttl_content_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #under_message h2 {
    font-size: 307%;
    line-height: 1.109em;
    position: relative;
  }
  #under_message h2 span {
    position: absolute;
    font-size: 229%;
    font-style: italic;
    color: #fff;
    z-index: -1;
    top: -50px;
    left: 0;
    right: 0;
    font-weight: 500;
    margin: auto;
    letter-spacing: 0;
  }
  #under_message h3 {
    font-size: 214%;
    color: #353B43;
    line-height: 1.4em;
    position: relative;
  }
  #under_message h4 {
    font-size: 160%;
    text-align: left;
    line-height: 1.5em;
  }
  #under_message h4 br {
    display: none;
  }
  #under_message.section_pdg {
    padding-top: 160px;
    padding-bottom: 320px;
  }
  #under_message.single-guideline.section_pdg {
    padding-bottom: 240px!important;
  }
  #under_message.section_pdg.coming {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  #under_message p {
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 2.5em;
    font-size: 107%;
    font-weight: normal;
    color: #6C7073;
    position: relative;
    z-index: 2;
  }
  #under_message::after,
  #under_section02.social::after {
    content: '';
    position: absolute;
    background: url(../images/message-content_bg.png);
    width: 100%;
    height: 420px;
    bottom: 0;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  .page-404#under_message::after,
  .thanks#under_message::after,
  .message#under_message::after {
    content: none;
  }
  .common-parts.inner,
  .common-parts.inner-sm {
    padding: 24px 0;
  }
  #under_section01,
  #under_content03 {
    background: url(../images/bg-wh.jpg);
    background-repeat: repeat;
    position: relative;
  }
  #under_message.page-404.section_pdg {
    padding-top: 70px;
  }
  #under_section01 h2,
  #under_section02 h2,
  #under_content03 h2 {
    position: relative;
    font-size: 307%;
    color: #353b43;
    letter-spacing: .01em;
  }
  #under_section01 h2 small,
  #under_section02 h2 small,
  #under_content03 h2 small {
    display: block;
    font-size: 53%;
    letter-spacing: .01em;
    font-weight: normal;
    font-style: italic;
    color: #ed4e52;
  }
  #under_section01 h2::before {
    content: '';
    position: absolute;
    background: url(../images/service--ttl_bg.png);
    width: 47px;
    height: 37px;
    background-size: cover;
    top: -56px;
    left: 0;
    right: 0;
    margin: auto;
  }
  #under_section02 {
    position: relative;
  }
  #under_section02::before {
    content: '';
    position: absolute;
    background: url(../images/voice-content_bg.png);
    width: 100%;
    height: 168px;
    background-size: cover;
    top: 0;
  }
  #under_section02.section_pdg {
    padding-top: 240px;
  }
  #under_content03.section_pdg {
    padding-top: 0;
    padding-bottom: 240px;
  }
  .txt.txt-lrg {
    width: auto;
  }
  .txt h3,
  .txt h4 {
    color: #E94E51!important;
  }
  .txt h3 {
    font-size: 227%;
    line-height: 1em;
  }
  .txt h4 {
    font-size: 174%;
  }
  .txt h5 {
    font-size: 140%;
  }
  .section--parts {
    position: relative;
    margin-bottom: 144px;
  }
  .section--parts:last-child {
    margin-bottom: 0;
  }
  .section--parts::before {
    content: '';
    position: absolute;
    border-bottom: 2px dotted #ccc;
    width: 100%;
    height: 1px;
    bottom: -72px;
  }
  .section--parts:last-child::before {
    content: none;
  }
  #under_section01.section_pdg {
    padding-top: 120px;
    padding-bottom: 160px;
  }
  .message-acc01,
  .message-acc02 {
    position: absolute;
    display: block;
  }
  .message-acc01 {
    background: url(../images/message-2-1.png);
    width: 420px;
    height: 420px;
    transform: translate(-40%, -60%);
  }
  .message-acc02 {
    background: url(../images/message-2-2.png);
    width: 420px;
    height: 420px;
    transform: translate(240%, -80%);
  }
  .section--parts.owner-message .txt {
    padding-left: 0;
    padding-right: 0;
  }
  .p-mark img {
    width: 100px;
    height: auto;
  }
  #under_message .privacy-wrapper p {
    max-width: 100%;
    margin-bottom: 80px;
  }
  #under_message .privacy-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
  .color-item {
    width: calc(25% - 16px);
    text-align: center;
    margin-right: 16px;
    background: #fff;
  }
  .color-item span {
    padding: 100px 0;
    background: #333;
    width: 100%;
    display: block;
  }
  .color-item.main-color span {
    background: #ED4F53;
  }
  .color-item.sub-color01 span {
    background: #E7F6FF;
  }
  .color-item.sub-color02 span {
    background: #FFEDC5;
  }
  .color-item.txt-color span {
    background: #383a3c;
  }
  .color-item:last-child {
    margin-right: 0;
  }
  .bg-item {
    width: calc(33% - 24px);
    height: 200px;
    margin-right: 24px;
    background-repeat: repeat;
    background-size:
  }
  .bg-item:nth-child(3n) {
    margin-right: 0;
  }
  .bg-01 {
    background: url(../images/bg_voice.png);
    background-size: 100%;
  }
  .bg-02 {
    background: url(../images/bg_blue.png);
  }
  .bg-03 {
    background: url(../images/bg-wh.jpg);
  }
  .bg-04 {
    background: url(../images/bg-footer.jpg);
  }
  .bg-05 {
    background: url(../images/bg-gr.jpg);
  }
  .bg-item.bg-03 {
    border: 1px solid #ccc;
  }

/* news
**************************************** */
  .news-wrapper {
    padding: 64px 0;
  }
  .news-item {
    width: calc(33% - 16px);
    margin-right: 24px;
    margin-bottom: 64px;
    position: relative;
    background: #fff;
    padding: 16px 16px 72px;
    overflow: hidden;
    box-shadow: 0 0 6px 2px rgba(0,0,0,.1);
    border-radius: 2px;
  }
  .news-item:nth-child(2),
  .news-item:nth-child(5),
  .news-item:nth-child(8),
  .news-item:nth-child(11),
  .news-item:nth-child(14),
  .news-item:nth-child(17) {
    transform: translateY(70px);
  }
  .news-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    right: 0;
    top: 0;
  }
  .news-item a::before {
    content: '';
    position: absolute;
    font-size: 400%;
    opacity: 0;
    left: 0;
    right: 0;
    background: url(../images/more-txt.png);
    margin: auto;
    z-index: 10;
    text-align: center;
    top: 0;
    padding-top: 0%;
    bottom: 0;
    display: block;
    line-height: 1em;
    color: #fff;
    transition: .6s cubic-bezier(.86,0,.07,1);
    width: 100%;
    height: 100%;
    background-position: 150px 90px!important;
    background-repeat: no-repeat;
    filter: blur(1px);
  }
  .news-item a:hover::before {
    opacity: 1;
    filter: blur(0);
  }
  .news-item {
    height: 300px;
  }
  .news-items {
    position: relative;
    margin-bottom: 32px;
  }
  .news-items:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #ed4e52;
    bottom: -20px;
  }
  .news-item:nth-child(2n) > .news-img,
  .news-item:nth-child(7) > .news-img,
  .news-item:nth-child(9) > .news-img {
    height: 100%;
  }
  .news-img,
  .news-img.old {
    width: 100%;
    height: 100%;
    max-height: 280px;
    background: #333;
    overflow: hidden;
    position: relative;
  }
  .news-img::before {
    content: '';
    position: absolute;
    width: 100%;
    background: rgba(0,0,0,.3);
    height: 100%;
    z-index: -1;
    display: block;
    opacity: 0;
  }
  .news-item:hover .news-img::before {
    opacity: 1;
  }
  .news-img img,
  .news-img.old img {
    position: absolute;
    top: 0;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    transition: .8s cubic-bezier(.165, .84, .44, 1);
    transform: scale(1);
    max-width: 100%;
  }
  .news-ttl {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto auto 20px;
    /* padding: 235px 20px 0; */
    overflow: hidden;
    opacity: 1;
    text-align: center;
    transform: scale(1);
    transition: .8s cubic-bezier(.165, .84, .44, 1);
    cursor: pointer;
  }
  .news-ttl:hover {
    padding-left: 4px;
  }
  .news-item .news-img img,
  .news-item .news-img.old img {
    transition: .8s cubic-bezier(.165, .84, .44, 1);
  }
  .news-item:hover .news-img img,
  .news-item.on_hover .news-img.old img {
    -webkit-filter: sepia(50%);
    -moz-filter: sepia(50%);
    -ms-filter: sepia(50%);
    -o-filter: sepia(50%);
    filter: sepia(50%);
    transform: scale(1.05);
    opacity: .8;
  }
  .news-ttl h3 {
    font-size: 16px;
    line-height: 1.5;
    color: #777777;
    margin-bottom: 4px;
    font-weight: normal;
  }
  .news-content{
    display: none;
    width: 80%;
    margin: auto;
  }
  .news-chosen .news-content{
    display: block;
  }
  @media all and (-ms-high-contrast:none) {
    .news-ttl h3 {
      position: relative;
      text-overflow: clip;
    }
    .news-ttl h3::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      width: 1em;
      height: 100%;
      background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 70%);
      background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 70%);
      background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 70%);
      padding-left: 50px;
    }
  }
  .news-ttl span {
    font-size: 94%;
  }
  .news-ttl:nth-child(even) p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .news-item:nth-child(3n) {
    margin-right: 0;
  }
  #news_content {
    position: relative;
    background: url(../images/bg_blue.png);
  }
  #news_content.section_pdg {
    padding-bottom: 240px;
  }
  #news_content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 118px;
    top: -110px;
    background: url(../images/under-ttl_content_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  .single-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .single-wrapper p {
    max-width: 100%!important;
  }
  .single-wrapper p a {
    word-wrap : break-word;
    overflow-wrap : break-word;
  }
  .single--news-ttl::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #ed4e52;
    bottom: -20px;
  }
  .page-nav {
    background: #ed4e52;
    margin-right: 14px;
    text-align: center;
    border-radius: 40px;
  }
  .page-nav a {
    margin: 0 auto;
    padding: 16px 19px;
    color: #fff;
    border: 2px solid #ed4e52;
  }
  .page-nav.current,
  .page-nav:hover {
    color: #ed4e52;
    background: #fff;
  }
  .faq-item {
    padding: 40px 32px;
    border-radius: 2px;
    display: block;
    position: relative;
    z-index: 1;
  }
  .faq-item h3 {
    position: relative;
    padding-left: 1.6em;
  }
  .faq-item h3::before {
    content: 'Q.';
    position: absolute;
    font-family: dinosaur, sans-serif;
    font-size: 140%;
    left: 0;
    top: -5px;
    font-weight: lighter;
    font-style: italic;
    color: #ed4e52;
  }
  .faq-item h3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #afd4ea;
    left: 0;
    bottom: -24px;
  }
  .answer {
    position: relative;
    padding-left: 3em;
    font-size: 120%;
    font-weight: normal;
    color: #353b43;
  }
  .answer::before {
    content: 'A.';
    position: absolute;
    left: 0;
    font-size: 230%;
    top: -24px;
    font-weight: lighter;
    font-style: italic;
    font-family: dinosaur, sans-serif;
  }
  .link-btn {
    margin: 0 8px;
  }
  .link-btn a {
    padding: 16px 24px;
    background: #fff;
    border-radius: 60px;
    border: 2px solid #ed4e52;
    color: #ed4e52;
    position: relative;
    display: block;
    margin-bottom: 16px;
    line-height: 1em;
  }
  #faq-01,
  #faq-02,
  #faq-03,
  #faq-04,
  #faq-05,
  #faq-06,
  #faq-07,
  #faq-08,
  #faq-09,
  #faq-10 {
    position: absolute;
    top: -120px;
  }
  .under-media_section p {
    max-width: 100%!important;
    margin: 0;
    margin-bottom: 0!important;
    line-height: 1.8em!important;
    background: #dceff8;
    padding: 8px 24px;
    border-radius: 2px;
    font-size: 90%!important;
  }
  .media-cont {
    padding: 0 0 40px;
    position: relative;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
  }
  .media-item {
    position: relative;
  }
  #under_message .year {
    letter-spacing: .01em;
  }
  .media-img {
    width: 180px;
    height: 180px;
    /* background: #eee; */
    /* border-radius: 100px; */
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
  }
  .media-img img {
    position: absolute;
    width: 100%;
    /* transform: scale(2); */
    top: 40px;
    bottom: 0;
  }
  .media-txt {
    display: inline-block;
    width: 70%;
    margin-right: 24px;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
  }
  .media-txt h3 {
    font-size: 190%!important;
  }
  .media-ttl span {
    display: inline-block;
    font-size: 100%;
    color: #fff;
    background: #ed4f53;
    padding: 0 16px;
    margin-bottom: 8px;
    line-height: 1.5em;
    border-radius: 30px;
  }
  .media-txt .btn {
    margin-left: 0;
  }

  .media-wrapper {
    padding: 48px 64px;
  }
  .under-media_section .section_ttl {
    position: relative;
  }
  .under-media_section .section_ttl::before {
    position: absolute;
    content: '';
    background: url(../images/service--ttl_bg.png);
    width: 47px;
    height: 37px;
    background-size: cover;
    top: -56px;
    margin: auto;
    left: 0;
    right: 0;
  }
  #sidefix--side_column {
    position: relative;
    float: left;
    width: 300px;
  }
  #sidefix--side_content {
    width: 300px;
    margin: 0;
    padding: 16px 8px;
  }
  #sidefix--main_column {
    width: calc(100% - 320px);
    margin-right: 0;
    margin-left: 320px;
  }
  .faq-nav_item a {
    display: block;
    position: relative;
    padding: 8px 40px 8px 32px;
    font-size: 100%;
  }
  .faq-nav_item a::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-right: 2px solid #ED4E52;
    border-top: 2px solid #ED4E52;
    right: 24px;
    top: 45%;
    transition: .4s all ease-in-out;
  }
  .faq-nav_item a:hover::before {
    right: 20px;
  }
  .faq-nav_item a:hover {
    color: #ED4E52;
  }
  .faq_nav .faq-nav_item {
    border-top: 1px dashed #eee;
    position: relative;
  }
  .faq_nav .faq-nav_item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #ccc;
    bottom: 0;
  }

/* recruit
**************************************** */
  #under_message .inner .txt-ctr p.txt-attention {
    max-width: 100%;
    font-size: 88%;
  }
  .recruit-item {
    padding: 40px 80px;
    background: #fff;
    border-radius: 2px;
    transition: .4s all;
    box-shadow: 0 0 6px 1px rgba(0,0,0,.2);
  }
  .post.recruit-item:hover {
    transform: translate(0, -2px);
    box-shadow: 0 2px 6px 2px rgba(0,0,0,.2);
  }
  .post:hover .btn {
    background-position: 0;
    color: #fff;
  }
  .post:hover .btn::before {
    background: url(../images/head-submenu_arrow-wh.png);
  }
  .post .item-txt {
    width: 60%;
    padding: 8px 0;
    position: relative;
  }
  .post .item-txt::before,
  .post .item-txt::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-top: 1px dashed #ccc;
  }
  .post .item-txt::before {
    top: 0;
  }
  .post .item-txt::after {
    bottom: 0;
  }
  .recruit-item .post--img {
    background-position: center;
    background-size: cover;
  }
  .recruit-item-01 .post--img,
  .recruit-item-02 .post--img,
  .recruit-item-03 .post--img {
    background-image: url(../images/recruit_regular-half.jpg);
  }
  .recruit-item-01.designer .post--img,
  .recruit-item-02.designer .post--img,
  .recruit-item-03.designer .post--img,
  .recruit-item-04.designer .post--img,
  .recruit-item-05.designer .post--img {
    background-image: url(../images/recruit_regular-new.jpg);
  }
  .recruit-item-01.director .post--img {
    background-image: url(../images/recruitment-director.jpg);
  }
  .recruit-item-01.marketing .post--img,
  .recruit-item-02.marketing .post--img {
    background-image: url(../images/recruitment-marketor.jpg);
  }
  .recruit-item-03.album .post--img,
  .recruit-item-03.cs .post--img,
  .recruit-item-04.album .post--img {
    background-image: url(../images/recruit_part.jpg);
  }
  .recruit-item-04 .post--img {
    background-image: url(../images/recruit_part-mother.jpg);
  }
  .recruit-item-05 .post--img {
    background-image: url(../images/recruit_intern.jpg);
  }
  .recruit-item-06 .post--img {
    background-image: url(../images/recruit_photographer.jpg);
  }
  @media screen and (max-width: 1100px) {
    #under_message .inner .txt-ctr p.txt-attention {
        text-align: center;
    }
  }
/* staff
**************************************** */
  .news-item.staff {
    height: 390px;
    width: calc(24% - 8px);
    max-width: 312px;
    margin-right: 32px;
    padding-bottom: 89px;
    min-width: 312px;
    margin-left: 16px;
    -webkit-backface-visibility: hidden;
  }
  .news-item.staff:nth-child(4) {
    transform: translate(0, 72px);
  }
  .slide-item .news-item.staff {
    margin-top: 56px;
  }
  .news-item.staff:nth-child(3n) {
    margin-right: 24px;
  }
  .slide-item .news-item.staff.odd {
    transform: rotate(5deg);
  }
  .slide-item .news-item.staff.even {
    transform: rotate(-3deg);
  }
  .news-item.staff a::before {
    background-position: 120px 120px!important;
  }
  .news-item.staff .news-ttl {
    padding: 320px 20px 0;
  }
  .news-item.staff .news-img img,
  .news-item.staff .news-img.old img {
    max-width: 400px;
    left: 0;
    top: 0;
    right: 0;
    display: block;
    margin: auto;
    width: 100%;
  }
  .news-img.old {
    opacity: 0;
    transition: .4s all ease-in-out;
    top: -280px;
  }
  .news-item.on_hover .news-img.old {
    opacity: 1;
  }
  .staff-name_wrapper {
    position: relative;
  }
  .staff-name_wrapper h3 {
    margin-right: 32px;
  }
  .staff-name_wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-bottom: 4px dotted #fff;
    bottom: -24px;
  }
  .staff-lg-img {
    margin-bottom: 96px;
  }
  .faq-wrapper .txt {
    width: 90%;
  }
  .faq-wrapper .txt h3::before {
    content: '';
    position: absolute;
    border-bottom: 2px dashed #ffffff;
    width: 64px;
    height: 1px;
    bottom: -16px;
  }
  .faq-wrapper .txt p {
    line-height: 2em!important;
    font-size: 100%!important;
    max-width: 100%!important;
  }
  .item-odd,
  .item-even {
    margin-bottom: 96px;
  }
  .faq-wrapper .img img {
    max-width: 480px;
  }
  .faq-wrapper .item-odd .txt {
    margin-right: 0!important;
  }
  .faq-wrapper .item-even .txt {
    margin-left: 0;
  }
  .part {
    font-size: 120%;
    color: #fff;
    background: #ed4e52;
    padding: 0 16px;
    border-radius: 32px;
  }




/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
  .main_column {
    flex: 1;
    margin-right: 40px;
  }

  /* --- post --- */
  .post { position: relative; }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 5;
  }
  .post h3 {
    position: relative;
    padding-bottom: 12px;
    font-size: 267%;
    color: #ed4e52;
    text-align: center;
  }
  .post h3::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    content: "";
    border: 5px solid transparent;
    border-left: 10px solid;
    border-right: 10px solid;
    width: 10px;
    height: 5px;
  }
  .post--date {
    color: #aaa;
    font-size: 85%;
  }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .post .post--img {
    position: relative;
    width: 35%;
  }
  .post .post--img img {
    overflow: hidden;
    border-radius: 3px;
  }
  .side-post .table,
  .post .table {
    color: #383A3C;
  }
  .post .table {
    padding: 24px 0;
    font-size: 87%;
  }
  .side-post .table th,
  .post .table th {
    width: 120px;
    display: inline-block;
    text-align: center;
    margin: 6px 0;
    background-color: #AFD4EA;
    border-radius: 40px;
    margin-right: 24px;
  }
  .post .table td {
    width: 80%;
  }
  .cat_list a {
    display: inline-block;
    vertical-align: middle;
    font-size: 79%;
    background: #56a0b9;
    color: #f6f6f6;
    line-height: 1;
    padding: 6px 12px;
    border-radius: 2px;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    white-space: nowrap;
  }
  .recruit--img {
    overflow: hidden;
    display: block;
    height: 480px;
    position: relative;
  }
  .recruit--img img {
    position: absolute;
  }
  .side-post_img {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 160px;
    width: 100%;
    transition: .4s all ease-in-out;
  }
  .side-post_img img {
    width: 400px;
    position: absolute;
    margin-top: -10px;
    transition: .4s all ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .side-post_img::before {
    content: '';
    position: absolute;
    display: block;
    background: url(../images/more-txt.png);
    width: 73px;
    height: 82px;
    z-index: 1;
    background-position: top center;
    left: 0;
    right: 0;
    margin: auto;
    top: 25%;
    opacity: 0;
    transition: .4s all ease-in-out;
  }
  .side-post_txt h5 {
    font-size: 100%;
    color: #ed4e52;
  }

  @media screen and (max-width: 1100px) {
    .main_column {
      width: 100%;
      margin-right: 0;
    }
  }

/* side_column
**************************************** */
  .side_column { width: 340px; }
  .side_section:not(:last-child) { margin-bottom: 64px; }
  .side--ttl {
    position: relative;
    font-size: 174% !important;
    line-height: 1.9;
    letter-spacing: .05em;
    color: #4f93d0 !important;
    text-align: center !important;
  }
  .side--ttl::before {
    content: "";
    position: absolute;
    top: .65em;
    left: 0;
    width: 100%;
    border-bottom: 6px double;
  }
  .side--ttl span {
    position: relative;
    background-color: #ddf0fa;
    padding: 0 .5em;
  }
  .side-post_txt {
    padding: 6px 16px 24px;
  }
  .side-post .table {
    font-size: 80%;
    letter-spacing: 0;
    padding: 10px 0;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
  }
  .side-post {
    position: relative;
    border-radius: 4px;
    z-index: 5;
    transition: .4s all ease;
    box-shadow: 0 0 6px 1px rgba(0,0,0,.2);
  }
  .side-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 6px 2px rgba(0,0,0,.2);
  }
  .side-post:hover .side-post_img img {
    filter: blur(4px);
  }
  .side-post:hover .side-post_img::before {
    opacity: 1;
  }
  .side-post .btn {
    padding: 8px 0;
  }
  .side-post .btn::before {
    top: 12px;
  }
  .side-post:hover .btn {
    background-position: 0;
    color: #fff;
  }
  .side-post:hover .btn::before {
    background: url(../images/head-submenu_arrow-wh.png);
  }
  .side-post .table th {
    margin-right: 8px;
    width: 72px;
  }

  /* --- post --- */
  .posts-side .post:not(:last-child) { margin-bottom: 16px; }
  .posts-side .post--img {
    margin-right: 16px;
    border-radius: 3px;
    width: 64px;
    height: 64px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .posts-side .txtarea { flex: 1; }
  .posts-side .post--date { margin-bottom: 0; }
  .posts-side .post--ttl { line-height: 1.4; }

  /* --- archive --- */
  .side_column .archive_list--ttl::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(135deg);
    transition: .4s ease-out;
  }
  .side_column .archive_list--ttl.active::after { transform: rotate(315deg); }
  .side_column .archive_month { display: none; }
  .side_column h4 {
    color: #363c44;
  }

  @media screen and (max-width: 1100px) {
    .side_column { width: 100%; }
  }

/* news
**************************************** */

  /* --- news--archive --- */
  .news--archive {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #111;
  }
  .news--archive li {
    margin-left: 8px;
    margin-right: 8px;
  }
  .news--archive a {
    color: #fff;
  }

  /* --- news_list --- */
  main .news_list .post {
    padding-bottom: 16px;
    padding-top: 16px;
    margin-bottom: 0;
    border-bottom: 1px solid #dedede;
  }
  main .news_list .post--date {
    background-color: #222;
    color: #fff;
    padding-top: 6px;
    padding: 6px;
    padding-left: 24px;
    padding-right: 24px;
    margin-right: 32px;
  }
  main .news_list a[href="javascript:void(0);"],
  main .news_list a[href="javascript:void(0);"]::before {
    color: inherit;
    cursor: inherit;
    opacity: 1;
    text-decoration: none;
  }
  .posts-home_news a,
  main .news_list a {
    display: inline-flex;
    align-items: center;
  }
  .posts-home_news a[target="_blank" rel="nofollow noopener"]::after,
  main .news_list a[target="_blank" rel="nofollow noopener"]::after {
    content: '';
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background-image: url(../images/icon-new_tab.png);
  }

  @media screen and (max-width: 768px) {
    main .news_list .post { display: block; }
    main .news_list .post--date {
      display: inline-block;
      padding-top: 2px;
      padding-bottom: 2px;
      padding-right: 16px;
      padding-left: 16px;
      margin-bottom: 8px;
    }
  }


/* ##############################################################################

    SINGLE

############################################################################## */
  .wp-pagenavi {
    display: block;
    z-index: 11;
    width: 100%;
  }
  .wp-pagenavi a {
    position: relative;
    max-width: 100%;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    background: #ed4e52;
    line-height: 1.4;
    padding: 24px 16px;
    border-radius: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    font-weight: normal;
    z-index: 11;
    text-align: center;
    font-size: 150%;
  }
  .wp-pagenavi a:hover {
    transform: scale(.99);
    background:#9D1F22;
  }

  @media only screen and (max-width: 767px) {
    .wp-pagenavi {
      margin-bottom: 40px;
    }
    .wp-pagenavi a {
      width: 100%;
      max-width: 100%;
      margin-bottom: 8px;
    }
  }

/* guideline
**************************************** */
  .single-guideline#under_message h2 {
    font-size: 227%;
  }
  .single-guideline .single-wrapper {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .single-guideline .wp-pagenavi {
    display: flex;
  }
  .single-guideline .wp-pagenavi a {
    width: 100%;
    border-radius: 0;
    font-size: 120%;
  }
  .single-guideline .wp-pagenavi a:not(:first-child) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 49%;
    margin-top: 24px;
    background-color: #C5C9D0;
    font-size: 108%;
    line-height: 1.25;
  }
  .single-guideline .wp-pagenavi a:not(:first-child):hover {
    transform: scale(.99);
    background-color: #a9aeb7;
  }
  .single-guideline .wp-pagenavi a i {
    font-size: 192%;
  }
  .side--entry_btn {
    display: block;
    padding: 14px;
    margin-bottom: 42px;
    background-color: #ED4E52;
    color: #fff;
    font-size: 160%;
    text-align: center;
  }
  .side--entry_btn:hover {
    transform: scale(.99);
    background: #9D1F22;
  }
  @media only screen and (max-width: 767px) {
    .single-guideline .single-wrapper {
      padding-left: 16px;
      padding-right: 16px;
    }
  }

/* ##############################################################################

    FORMY

############################################################################## */
  #formy_form table { width:100%; }
  #formy_form th,
  #formy_form td {
    padding: 16px;
    vertical-align: middle;
    border-bottom: solid 1px #eee;
  }
  #formy_form th {
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
    width: 34%;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form table textarea {
    width: 100%;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    vertical-align: bottom;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form select,
  #formy_form textarea {
    margin: 0;
    padding: 5px 15px;
    border: 1px solid #ccc;
    font: inherit;
    font-size: 100%;
  }
  #formy_form textarea { height: 100px; }
  #formy_form select { height: 40px; }
  #formy_form ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #formy_form input:hover { opacity: .7; }
  #formy_form textarea:hover { opacity: .7; }
  #formy_form input:focus { outline: none; }
  #formy_form .parsley-validated {  background-color: #eee; }
  #formy_form .parsley-error {  background-color: #fee; }
  #formy_form .parsley-success {  background-color: #fff; }
  .help_text {
    font-size: 85%;
    color: #999;
  }
  .hidden_help { display: none; }
  .formy_privacy div {
    overflow-y: scroll;
    width: 100%;
    height: 140px;
    border: solid 1px #ccc;
    font-size: 85%;
    padding: 8px 16px;
    word-break:break-all;
    background-color: #fff;
  }
  .requiredIcon {
    background: #f55;
    color: #fff;
    margin: 0 0 0 1em;
    font-size: 70%;
    padding: 2px 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    float: right;
  }
  #formy_btn {
    padding-top: 32px;
    text-align: center;
  }
  #formy_btn input {
    min-width: 220px;
    padding: 16px 32px;
    margin-right: 4px;
    margin-left: 4px;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
  #formy_form ul li input[type="radio"],
  #formy_form ul li input[type="checkbox"] { display: none !important; }
  #formy_form ul li label {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0 8px 0 40px;
    cursor: pointer;
  }
  #formy_form ul li label:hover { opacity: .7; }
  #formy_form ul li label::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #788b93;
    left: 16px;
    top: 12px;
  }
  #formy_form ul li input[type="radio"] + label::before { border-radius: 10px; }
  #formy_form ul li input[type="radio"]:checked + label,
  #formy_form ul li input[type="checkbox"]:checked + label {
    color: #e75f5f;
    font-weight: normal;
  }
  #formy_form ul li input[type="radio"]:checked + label::before,
  #formy_form ul li input[type="checkbox"]:checked + label::before {
    border-color: #e75f5f;
  }
  #formy_form ul li input[type="radio"]:checked + label::after,
  #formy_form ul li input[type="checkbox"]:checked + label::after {
    content: "";
    width: 10px;
    height: 18px;
    top: 4px;
    left: 20px;
    border-right: 2px solid #e75f5f;
    border-bottom: 2px solid #e75f5f;
    display: block;
    position: absolute;
    z-index: 10;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .formy_confirm { background-color: #4dbaff; }
  .formy_submit_disabled { background-color: #ccc; }
  #formy_btn .formy_submit_disabled:hover {
    opacity:1;
    cursor: default;
  }
  .autoConfirmBack { background-color: #aaa; }
  .formy_send { background-color: #ff6600; }
  #total_required {
    padding: 16px;
    color: #f55555;
    text-align: center;
  }

  @media  only screen and (max-width: 767px) {

    .uul{
      bottom: -30px !important;
    }
    .ftr-pbl_wrapper{
      bottom: -380px;
    }

    #home_service .imgdivvs {
      margin-top: 20px;
    }
   #home_service .imgdivvs img {
      max-width: 100px;
  }
  .animation-1 {
    width: 81px;
    height: 90px;
    left: 0;
    top: -16px;
  }
  .animation-2 {
    width: 62px;
    height: 68px;
    left: 0;
    right: 0;
    top: -34px;
  }

  .animation-3 {
    width: 126px;
    height: 107px;
    right: 0;
    top: -24px;
  }
  .animation-4 {
    width: 89px;
    height: 94px;
    top: 40%;
    left: 0;
  }
  .animation-5 {
    width: 83px;
    height: 102px;
    top: 37%;
    right: 0;
  }
  .animation-6 {
    width: 147px;
    height: 107px;
    bottom: -35px;
    left: 0;
  }
  .animation-7 {
    width: 77px;
    height: 89px;
    bottom: -45px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .animation-8 {
    width: 101px;
    height: 101px;
    bottom: -25px;
    right: 0;
  }


    #formy_form th,
    #formy_form td {
      display: block;
      width: auto;
      padding-left: 0;
      padding-right: 0;
    }
    #formy_form th {
      border-bottom:none;
      padding-bottom: 0;
      white-space: normal;
      font-weight: normal;
    }
    #formy_form td { padding-top: 0; }
    #formy_btn { padding-top: 8px; }
    #formy_btn input {
      width: 100%;
      margin-right: 0;
      margin-left: 0;
      background-size: contain;
      background-position: center;
    }
    #formy_form select {
      width: 100%;
    }
  }

  /* recruit追加 */
  .list-deconum li {
  counter-increment: title;
  padding-left: 2.4em;
}
.list-deconum li::before {
  position: absolute;
  top: .1em;
  left: 0;
  padding: 0 8px 0 9px;
  border-radius: 50%;
  background-color: #e94e51;
  color: #fff;
  font-size: 94%;
  content: counter(title);
}
.list-check li {
  padding-left: 2.4em;
}
.list-check li::before,
.list-check li::after {
  content: "";
  position: absolute;
}
.list-check li::before {
  top: .3em;
  left: .3em;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #e94e51;
}
.list-check li::after {
  top: .3em;
  left: .6em;
  width: 17px;
  height: 10px;
  border-left: 2px solid #e94e51;
  border-bottom: 2px solid #e94e51;
  transform: rotate(-45deg);
}

@media only screen and (max-width: 768px) {
  .list-check li::before,
  .list-check li::after {
    top: .15em;
  }
}

.color-red {
  color: #E94E51;
}
.color-blue {
  color: #5092cf;
}

.page_ttl-img.recruit {
  background: url(../images/ttl_recruit.jpg);
}
.page-recruit .about-content04 {
  display: none;
}
.recurit-challenge {
  position: relative;
}
.recurit-challenge--list h3 {
  margin-top: -60px;
  font-size: 140%;
}
.recurit-challenge--list h3 small {
  display: block;
  color: #fff;
}
.recurit-challenge--list .project-num {
  line-height: 1.9;
}
.recurit-challenge::after {
  content: "";
  position: absolute;
  bottom: -90px;
  background: url(../images/social-section-cloud.png);
  width: 100%;
  height: 168px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 2;
}
.recurit-recruitment {
  position: relative;
  padding-top: 180px;
  padding-bottom: 200px;
}
.recurit-recruitment::before,
.recurit-recruitment::after {
  content: "";
  position: absolute;
}
.recurit-recruitment::before {
  background: url(../images/home_recruitment-bg02.png);
  width: 100%;
  max-width: 840px;
  height: 706px;
  top: 30%;
  right: 0;
  background-size: cover;
}
.recurit-recruitment::after {
  background: url(../images/about-us_entry-bg-bottom.png);
  width: 100%;
  height: 128px;
  bottom: -8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  display: block;
  z-index: 10;
}
.recurit-recruitment--in {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto 56px;
}
.recurit-recruitment--nav li a {
  display: block;
  padding: 16px;
  background-color: #ed4e52;
  font-size: 114%;
  color: #fff;
  font-family: Shuei MaruGo B;
  text-align: center;
}
.recurit-recruitment--nav li a:hover {
  transform: scale(.99);
  background: #9D1F22;
}
.recruitment--col {
  position: relative;
  z-index: 1;
  padding: 38px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,.08);
  color: #353b43;
}
.recruitment--col:not(:last-child) {
  margin-bottom: 40px;
}
.recruitment--col .job .heading-3 {
  display: inline-block;
  background-color: #AFD4EA;
  border-radius: 20px;
  padding: 2px 24px;
}
.recruitment--col .job .img {
  height: 350px;
  overflow: hidden;
}
.recruitment--col .job .list li:not(:last-child) {
  margin-bottom: .2em;
}
.recruitment--col .content dt {
  border-top: 2px dotted #B8C7D1;
  border-bottom: 2px dotted #B8C7D1;
  padding-top: 7px;
  padding-bottom: 6px;
  margin-bottom: 18px;
  font-size: 174%;
  color: #5092cf;
  font-family: Shuei MaruGo B;
}
.recruitment--col .content dd:not(:last-of-type) {
  margin-bottom: 38px;
}
.recruitment--col .flex-col2 > * {
  margin-bottom: 0;
}
.recruitment--col .day-list {
  margin-left: .5em;
}
.recruitment--col .day-list.case1 { border-left: 2px solid #bbddf1; }
.recruitment--col .day-list.case2 { border-left: 2px solid #f3e4c4; }
.recruitment--col .day-list dt,
.recruitment--col .day-list dd {
  color: #383A3C;
  font-size: 108%;
}
.recruitment--col .day-list dt {
  float: left;
  margin-left: -.45em;
  margin-right: 6px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top: none;
  border-bottom: none;
}
.recruitment--col .day-list dt::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 12px;
}
.recruitment--col .day-list.case1 dt::before { background-color: #5092cf; }
.recruitment--col .day-list.case2 dt::before { background-color: #f3cc77; }
.recruitment--col .day-list dd:not(:last-of-type) {
  margin-bottom: .4em;
}

@media only screen and (max-width: 768px) {
  .recurit-challenge--list.flex-col3 > * {
    width: 100%;
  }
  .recurit-recruitment::after {
    display: none;
  }
  .recurit-recruitment--nav.flex-col4 > * {
    width: 49%;
  }
  .recurit-recruitment--nav.flex-col4 > *:nth-child(2n) {
    margin-right: 0;
  }
  .recurit-recruitment--nav li a {
    padding: 16px 8px;
    font-size: 108%;
  }
  .recruitment--col {
    padding: 18px;
  }
  .recruitment--col .flex-col2 > * {
    width: 100%;
  }
  .recruitment--col .img,
  .recruitment--col .job .img {
    margin-left: 0;
    margin-bottom: 18px;
  }
  .recruitment--col .job .img {
    height: 190px;
  }
  .recruitment--col .job .heading-1 {
    font-size: 172%;
    line-height: 1.5;
  }
  .recruitment--col .job .heading-3 {
    font-size: 115%;
  }
  .recruitment--col .content dt {
    font-size: 143%;
  }
  .recruitment--col .content dd:not(:last-of-type) {
    margin-bottom: 26px;
  }
  .recruitment--col .day-list dt {
    font-size: 108%;
  }
  .recruitment--col .day-list dd {
    padding-left: 90px;
  }
  .recruitment--col .day-list dd:not(:last-of-type) {
    margin-bottom: 6px;
  }
}

  /* news start 20191218 added by miyamoto */
  /* トップページ */
  #home_message {
    position: relative;
  }
  #home_message #sect-news{
    padding: 16px 0;
    margin-bottom: 60px;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
  }
  #home_message #news-wrapper{
    height: 60px;
    width: 780px;
    margin:0 auto;
    background-color: #fff;
    /* border: 3px solid #444; */
    border-radius:33px;
    position:relative;
    overflow:hidden;
    box-sizing:content-box;
  }
  #home_message #news-container{
    float:left;
    /* border-right:3px solid #444; */
    padding: 20px;
  }
  #home_message #news-sect-title{
    float:left;
    padding: 20px 20px 20px 26px;
    width: 17%;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    color: #353b43;
  }
  #home_message #news-container{
    float:left;
    width:73%;
  }
  #news-container .news-items{
    margin-top: 20px;
    margin-bottom: 0;
  }
  #news-container .news-items:before {
    content: none;
  }
  #home_message .news-items:first-child{
    margin-top: 0;
  }
  #home_message .news-items a{
    display: block;
    height:22px;
    width: 100%;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #home_message .news-items:hover{
    margin-left:4px;
  }
  .home .news-items .news-date{
    display:inline;
    font-size: 16px;
    line-height: 20px;
    margin-right: 20px;
    color: #d46a66;
  }
  .home .news-items .news-title{
    display: inline;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #444;
  }
  .home #news-switch{
    position:relative;
    float:left;
    display: block;
    cursor:pointer;
    width: 10%;
    height: 100%;
    box-sizing:border-box;
    background-color: #f88;
    transition:background-color .2s;
  }
  .home #news-switch span{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
    display: block;
    width: 2px;
    height: 20px;
    background-color: #444;
    transition:background-color .2s;
  }
  .home #news-switch:hover{
    background-color: #c22929;
    transition:background-color .2s;
  }
  .home #news-switch:hover span{
    background-color: #d8d8d8;
    transition:background-color .2s;
  }
  .home #news-switch span:nth-of-type(1){
    transform: rotate(0deg);
    transition:transform .2s;
  }
  .home #news-switch span:nth-of-type(2){
    transform: rotate(90deg);
    transition:transform .2s;
    top:0;
  }
  .home #news-switch.on span:nth-of-type(1){
    transform: rotate(-45deg);
    transition:transform .2s;
    top:0;
  }
  .home #news-switch.on span:nth-of-type(2){
    transform: rotate(45deg);
    transition:transform .2s;
    top:0;
  }

  /* 新着情報ページ */
  .ANIME {
    transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -ms-transition-duration: .2s;
    -s-transition-duration: .2s;
  }
  #sect-news{
    padding: 16px 0;
    margin-bottom: 60px;
  }
  #news-wrapper{
    height: 60px;
    width: 780px;
    margin:0 auto;
    background-color: #fff;
    /* border: 3px solid #444; */
    border-radius:33px;
    position:relative;
    overflow:hidden;
    box-sizing:content-box;
  }
  #news-container{
    float:left;
    /* border-right:3px solid #444; */
    padding: 20px;
  }
  #news-sect-title{
    float:left;
    padding: 20px 20px 20px 26px;
    width: 15%;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
  }
  #news-container{
    float:left;
    width:75%;
  }
  .news-items{
    margin-top: 20px;
    transition: all .2s;
  }
  .news-items:first-child{
    margin-top: 0;
  }
  .news-items a{
    display: block;
    height: auto;
    width: 100%;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news-items .news-title{
    transition: all .2s;
    cursor: pointer;
  }
  .news-items .news-title:hover{
    margin-left:4px;
    transition: all .2s;
  }
  .news-items .news-date{
    display:inline;
    font-size: 16px;
    line-height: 20px;
    margin-right: 20px;
    color: #d46a66;
  }
  .news-items .news-title span{
    display: inline;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #444;
  }
  .news-items .news-title h3{
    font-size: 26px;
    line-height: 140%;
  }
  .news-items .news-content{
    margin-top: 24px;
  }
  #news-switch{
    position:relative;
    float:left;
    display: block;
    cursor:pointer;
    width: 10%;
    height: 100%;
    box-sizing:border-box;
    background-color: #f88;
    transition:background-color .2s;
  }
  #news-switch.on{
    margin-bottom: 200px;
  }
  #news-switch span{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
    display: block;
    width: 2px;
    height: 20px;
    background-color: #444;
    transition:background-color .2s;
  }
  #news-switch:hover{
    background-color: #c22929;
    transition:background-color .2s;
  }
  #news-switch:hover span{
    background-color: #d8d8d8;
    transition:background-color .2s;
  }
  #news-switch span:nth-of-type(1){
    transform: rotate(0deg);
    transition:transform .2s;
  }
  #news-switch span:nth-of-type(2){
    transform: rotate(90deg);
    transition:transform .2s;
    top:0;
  }
  #news-switch.on span:nth-of-type(1){
    transform: rotate(-45deg);
    transition:transform .2s;
    top:0;
  }
  #news-switch.on span:nth-of-type(2){
    transform: rotate(45deg);
    transition:transform .2s;
    top:0;
  }
  @media only screen and (max-width:768px){
    #home_message #news-wrapper{
      width: 92%;
    }
    #home_message #news-sect-title{
      font-size: 14px;
      padding: 20px 20px 20px 20px;
      margin-top: -3px;
    }
    #home_message #news-container{
      padding: 20px 20px 20px 30px;
    }
    .news-items .news-date,
    .news-items .news-title{
      font-size: 12px;
      vertical-align: middle;
    }
  }
  /* news end 20191218 added by miyamoto */
  /* company nintei 認定マーク start added by miyamoto */
  .nintei .mirai-souzou {
    width: 100px;
  }
  .nintei .privacy-mark {
    width: 100px;
  }

  /* 20201216 メディア掲載情報CMS組み込み */
  #under_message.under-media_section .media-cont{
    width: 100%;
  }
  #under_message.under-media_section .media-cont .media-txt p,
  #under_message.under-media_section .media-cont .media-txt h1,
  #under_message.under-media_section .media-cont .media-txt h2,
  #under_message.under-media_section .media-cont .media-txt h3 {
    max-width: 100%!important;
    margin: 0;
    margin-bottom: 0!important;
    line-height: 1.8em;
    background: #dceff8;
    padding: 8px 24px;
    border-radius: 2px;
    font-size: 90%!important;
    color: #6C7073;
  }
  #under_message.under-media_section .media-cont .media-txt h2 {
    line-height: 1.8em;
  }
  #under_message.under-media_section .media-cont .media-txt h3.title {
    font-size: 190%!important;
    color: #353B43;
    line-height: 1.4em;
    position: relative;
    background: #ffffff;
    padding: 0;
  }
  #under_message.under-media_section .media-cont .media-img {
    background: #ffffff;
    border-radius: 0;
    position: relative;;
    height: auto;
    width: 25%;
  }
  #under_message.under-media_section .media-cont .media-img img{
    width:100%;
    position: relative;
    transform: none;
    top: 0;
  }
  #under_message.under-media_section .year{
    margin-top:160px;
  }
  #under_message.under-media_section .year:first-child{
    margin-top:0;
  }
  #under_message.under-media_section .media-wrapper{
    padding-bottom: 0;
  }
  @media screen and (max-width: 767px) {
    #under_message.under-media_section .media-cont .media-txt h3.title {
      font-size: 170%!important;
      text-align: left;
    }
    #under_message.under-media_section .media-cont .media-img {
      width: auto;
      text-align: center;
      display: block;
    }
    #under_message.under-media_section .media-cont .media-img img{
      height: 100px;
      width: auto;
    }
    #under_message.under-media_section .year{
      margin-top:80px;
    }
    #under_message.under-media_section .year:first-child{
      margin-top:0;
    }
  }

  .history-container{
    position: relative;
    z-index: 5;
  }
  .history-container a{
    text-decoration: underline;
    color: #ed4e52;
  }



.snslists{
  margin-top: 20px;
}

.snslists p{
  width: 50px;
  height: 50px;
  line-height: 55px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  border: 1px solid #f5f5f5;
  margin-right: 15px;
}

.snslists p i{
  color: #E72A2F;
  font-size: 24px;
}



.footer .inner ul.address li:nth-child(2){
  border-bottom: 1px solid #DEDEDE;
}


.footer .inner{
  position: relative;
}

.uuls{
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-start;
}

.uuls li{
  position: relative;
  padding-left: 70px;
}

.uuls li:first-child::before{
 display: none;
}

.uuls li a{
  color: #A4A4A4;
}

.uuls li::before {
    content: '|';
    position: absolute;
    left: 35px;
    top: 0px;
    color: #A4A4A4;
}

#home_service .inner{
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

#home_service .imgdivvs{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  width: 100%;
}

#home_service .imgdivvs .img1{
  padding-left: 10%;
}
#home_service .imgdivvs .img2{
  padding-right: 10%;
}


  @media screen and (max-width: 480px) {

    .ftr-pbl_wrapper .copyright{
     font-size: 12px;
     padding: 0 10px;
    }

    .uuls li{
        padding-left: 40px;
    }
    .uuls li::before{
      left: 20px;
    }
    .page--menu{
      padding: 0 0 0 0;
    }
    .page--menu li{
      width: 100%;
    }

}


.logindiv{
    position: absolute;
    top: -32px;
    right: 64px;
    border-radius: 50%;
    z-index: 99;
    transition: .4s all;
}

.logindiv1 a::before{
  display: none;
}


