/* ##############################################################################

    KEYFRAMES

############################################################################## */
  .waypoint { opacity: 0; }

  @keyframes ripple {
    to {
      opacity: 0;
      transform: scale(2.0);
    }
  }
  .ripple > a {
    display: inline-block;
    position: relative;
    overflow: hidden;
  }
  .ripple .rp-effect {
    position: absolute;
    border-radius: 50%;
    opacity: .35;
    transform: scale(0);
    background: #FFF;
    animation: ripple .7s;
    pointer-events: none;
  }

  @keyframes scale {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    80% {
      transform: scale(1.1);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  .ttl-circle .scale,
  .scale.active {
    animation-name: scale;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }

  @keyframes drop_in {
    0% {
      opacity: 0;
              transform: translateY(-20px);
      /*margin-top: -20px;*/
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 1;
              transform: translateY(0);
      /*margin-top: 0;*/
    }
  }
  .drop_in.active {
    animation-name: drop_in;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }

  @keyframes bg {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 240px 240px;
    }
  }


/* ##############################################################################

    COMMON

############################################################################## */

  html {
    height: 100%;
    overflow-y: scroll;
  }
  body {
    height: 100%;
  }
  a:not(.no-icon)[target="_blank"]::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/new_tab.svg);
    background-size: cover;
  }
  .mce-content-body a[target="_blank"]::after {
    display: none;
  }
  @media screen and (max-width: 767px) {
    input,
    textarea {
      font-size: 16px !important;
    }
  }

/* breadcrumbs
**************************************** */
  #breadcrumbs {
    position: relative;
    top: 90px;
    z-index: 5;
    font-size: 82%;
    text-align: right;
  }
  #breadcrumbs .breadcrumb_last { display: inline-block; }
  #breadcrumbs a { color: #758083; }
  /* hover */
  @media screen and (min-width: 768px) {
    #breadcrumbs a:hover { color: #000; }
  }


/* layout
**************************************** */
  .contents_box {
    position: relative;
    z-index: 1;
  }

  /* --- 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;
  }
  .section_pdg.contents_box {
    padding-top: 56px;
    padding-bottom: 0;
  }
  .section_pdg.contact {
    padding-top: 20px;
  }

  /* --- blc --- */
  .blc:not(:last-child) {
    margin-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; }

  /* --- img --- */
  .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .img-contain {
    object-fit: contain;
  }

  /* --- pc or sp --- */
  .pc-none,
  .pc-none-inline,
  .pc-none-table,
  .pn-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: 90%; }
    .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;
    }
    .section_pdg.contents_box {
      padding-top: 40px;
    }
    .blc:not(:last-child) {
      margin-bottom: 40px;
    }
  }

/* flex
**************************************** */
  
  /* --- ブロック要素 --- */
  .flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  /* --- インライン要素 --- */
  .flex-inline {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  /* --- 逆向き --- */
  .flex-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  
  /* --- 縦並び --- */
  .flex-column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* --- 水平方向揃え --- */
  .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;
  }

  /* --- 垂直方向揃え --- */
  .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;
  }

  /* --- 子要素の折り返し設定 --- */
  .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;
  }

  /* --- 子要素の複数行設定 --- */
  .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レイアウト --- */
  .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-2 .txtarea {
    flex: 1;
  }
  .flex-col2-2 .imgarea {
    margin-left: 5%;
    width: 264px;
  }
  .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) {

    /* --- 縦並び - sp --- */
    .flex-sp-block {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    
    /* --- ざっくりflexレイアウト - 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-col2-2 .imgarea {
      margin-left: 0;
      width: 100%;
    }
    .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-blue { background-color: #e5f6fc; }
  .bg-wh { background-color: #fff; }
  .raindrop { padding-bottom: 280px; }
  @media screen and (max-width: 767px) {
    .raindrop { padding-bottom: 240px; }
  }

/* ttl
**************************************** */

  /* --- page_ttl --- */
  .page_ttl {
    position: relative;
    font-weight: normal;
  }
  .page_ttl_bg,
  .wave::after {
    content: '';
    position: absolute;
    z-index: 0;
    left: 0;
    display: block;
    width: 100%;
  }
  .page_ttl_bg {
    top: 0;
    z-index: 1;
    height: 100%;
    background: url(/wp/wp-content/themes/original_theme/images/common/page_ttl-bg01.png) top 40px center no-repeat;
    animation-delay: .7s;
  }
  .wave::after {
    bottom: 0;
    height: 258px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/wave.svg);
    background-size: cover;
  }
  .subpage .wave::after {
    height: 176px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/wave-low.svg);
    background-size: cover;
  }
  _:-ms-fullscreen, :root .page_ttl--wrap {
    display: flex;
  }
  _:-ms-fullscreen, :root .page_ttl--inner {
    width: 100%;
  }
  .page_ttl--inner {
    position: relative;
    z-index: 1;
    height: 393px;
  }
  _:-ms-fullscreen, :root .page_ttl--inner .inner { margin: 0; }
  .page_ttl-mid .page_ttl--inner {
    min-height: 540px;
  }
  .page_ttl-high .page_ttl--inner {
    min-height: 720px;
  }
  .page_ttl-jp,
  .page_ttl-en {
    display: block;
  }
  .page_ttl-en {
    display: inline-block;
    margin-right: 32px;
    font-size: 700%;
    font-weight: normal;
    line-height: 1;
    letter-spacing: -.02em;
    transform: rotate(-15deg);
    text-transform: capitalize;
  }
  .single .page_ttl-en { font-size: 550%; }
  .page_ttl-jp { font-size: 185%; }
  #ttl-circle01 {
    top: 18%;
    right: -6%;
    width: 273px;
    height: 273px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/page_ttl-circle01.png);
    animation-delay: 1s;
  }
  #ttl-circle02 {
    top: 20%;
    left: -2%;
    width: 285px;
    height: 285px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/page_ttl-circle02.png);
    animation-delay: .5s;
  }
  .page_ttl-high #ttl-circle02 {
    top: 33%;
  }
  #ttl-circle03 {
    top: 30%;
    left: calc(50% - 50px);
    width: 245px;
    height: 245px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/page_ttl-circle03.png);
    animation-delay: 1s;
  }
  #ttl-circle04 {
    animation-delay: 1.5s;
  }
  .home #ttl-circle01 {
    animation-delay: 1s;
  }
  .home #ttl-circle02 {
    animation-delay: 1.5s;
  }
  .home #ttl-circle03 {
    animation-delay: 2s;
  }
  .home #ttl-circle04 {
    animation-delay: 2.5s;
  }
  .page_ttl-high #ttl-circle03 {
    top: 40%;
  }
  .page_ttl--bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: top 40% center;
    background-size: cover;
  }
  .page_ttl--bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
  }
  .page_ttl--cat {
    position: relative;
    z-index: 5;
    justify-content: center;
  }
  .single-works .page_ttl--cat { justify-content: flex-start; }

  /* --- section_ttl --- */
  .section_ttl {
    font-weight: normal;
    line-height: 1.6;
  }
  .section_ttl-jp {
    font-size: 128%;
    font-weight: bold;
    letter-spacing: .15em;
  }
  .section_ttl-en {
    display: block;
    font-size: 428%;
  }
  .section_ttl-en small { font-size: 76%; }
  .section_ttl-sm { font-size: 267%; }
  .section_catch {
    text-align: center;
    font-size: 120%;
    font-weight: 700;
  }

  /* --- heading --- */
  .heading-1 { font-size: 240%; }
  .heading-2 { font-size: 171%; }
  .heading-3 { font-size: 120%; }
  .heading-4 { font-size: 100%; }

  @media screen and (max-width: 767px) {
    .section_ttl-en { font-size: 280%; }
    .wave::after,
    .subpage .wave::after {
      width: 100%;
      height: 12vw;
      background-image: url(/wp/wp-content/themes/original_theme/images/common/wave-low.svg);
      background-size: cover;
    }
    #ttl-circle01 {
      top: 10%;
      width: calc(273px / 2);
      height: calc(273px / 2);
      background-size: cover;
    }
    #ttl-circle03 {
      top: 48%;
      left: -5%;
      width: calc(245px / 2);
      height: calc(245px / 2);
      background-size: cover;
    }
    .page_ttl_bg {
      background: url(/wp/wp-content/themes/original_theme/images/common/page_ttl-bg01-sp.png) top 40px center;
      background-position: bottom;
      background-size: 100%;
    }

    /* --- page_ttl --- */
    .page_ttl-en {
      margin-right: 16px;
      font-size: 500%;
    }
    .page_ttl--inner {
      height: auto;
      padding-top: 16px;
      padding-bottom: 64px;
    }
    .page_ttl--wrap {
      padding-top: 100px;
    }
    .page_ttl-high .page_ttl--inner,
    .page_ttl-mid .page_ttl--inner {
      height: auto;
      min-height: auto;
      padding-bottom: 64px;
    }
    .page_ttl--cat {
      font-size: 85%;
    }
    .single .page_ttl--cat {
      font-size: 70%;
    }
    .page_ttl-en {
      font-size: 440%;
    }
    .archive-company .page_ttl-en {
      font-size: 430%;
    }

    /* --- heading --- */
    .heading-1 { font-size: 180%; }
    .heading-2 { font-size: 171%; }
    .heading-3 { font-size: 120%; }
    .heading-4 { font-size: 100%; }
  }

/* txt
**************************************** */
  .txt-wh { color: #fff; }
  .txt-aqua { color: #00b2ed; }
  .txt-green { color: #00c19f; }
  .txt-blue { color: #007eff; }
  .txt-gray { color: #758083; }
  .txt-lg { font-size: 107%; }
  .txt-sm { font-size: 93%; }
  .txt-ctr { text-align: center; }
  .txt-rgt { text-align: right; }
  .txt-attention-kome {
    position: relative;
    padding-left: 1.4em;
  }
  .txt-attention-kome::before {
    content: '※';
    position: absolute;
    left: 0;
    top: 0;
  }
  .txtarea p:not(:last-child) { margin-bottom: 1em; }
  .font-jp { font-family: fot-tsukubrdgothic-std, sans-serif; }
  .font-en-g { font-family: futura-pt, sans-serif; }
  .font-en-h { font-family: 'Caveat', cursive; }

/* 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_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: .7em;
    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;
  }

/* btn
**************************************** */
  .btn a {
    padding: 8px 40px;
    color: #fff;
    font-size: 128%;
    font-weight: bold;
    border-radius: 5px;
    background-color: #00b2ed;
  }
  /* hover */
  @media screen and (min-width: 768px) {
    .btn a:hover { background-color: #007eff; }
  }

/* anker
**************************************** */
  .anker {
    margin-top: -120px;
    padding-top: 120px;
  }
  .anker_link { width: 264px; }
  .anker_link li {
    position: relative;
    margin-bottom: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    transition: .4s ease-in-out;
  }
  .anker_link li::after {
    content: '▽';
    color: #00b2ed;
    transition: .4s ease-in-out;
  }
  .anker_link li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    transition: .4s ease-in-out;
    border-left: 1px solid #00b2ed;
  }
  .anker_link a {
    display: block;
    flex: 1;
    font-size: 142%;
    overflow: unset;
  }
  /* hover */
  @media screen and (min-width: 768px) {
    .anker_link li:hover { padding-left: 16px; }
    .anker_link li:hover::before { height: 100%; }
    .anker_link a:hover,
    .anker_link li:hover::after {
      color: #007eff;
    }
  }

/* drop
**************************************** */
  .drop > p { position: absolute; }
  .drop01,
  .drop06 {
    top: 42%;
    left: calc(50% - 770px);
    width: 97px;
    height: 118px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/bg--deco01.png);
  }
  .drop02 {
    top: 0;
    right: calc(50% - 700px);
    width: 34px;
    height: 58px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/bg--deco02.png);
  }
  .drop03 {
    top: 50%;
    right: calc(50% - 750px);
    width: 97px;
    height: 118px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/bg--deco03.png);
  }
  .drop04 {
    top: 77%;
    left: calc(50% - 740px);
    width: 100px;
    height: 124px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/bg--deco04.png);
  }
  .drop05 {
    top: 82%;
    right: calc(50% - 820px);
    width: 114px;
    height: 135px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/bg--deco05.png);
  }
  .single .drop05 {
    top: 65%;
    right: calc(50% - 500px);
  }

/* circle
**************************************** */
  .ttl-circle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .circle > p { position: absolute; }
  #container-circle01 {
    top: 30%;
    left: -5%;
    width: 236px;
    height: 236px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/bg--circle01.png);
  }
  #container-circle02 {
    top: 10%;
    left: 35%;
    width: 201px;
    height: 201px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/bg--circle02.png);
  }
  #container-circle03 {
    top: 60%;
    left: 6%;
    width: 321px;
    height: 321px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/bg--circle03.png);
  }
  #container-circle04 {
    top: 85%;
    right: calc(50% - 700px);
    width: 283px;
    height: 283px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/bg--circle04.png);
  }
  #container-circle05 {
    top: 32%;
    right: calc(50% - 720px);
    width: 283px;
    height: 283px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/bg--circle04.png);
  }
  .single #container-circle02 {
    top: auto;
    left: auto;
    bottom: 15%;
    right: calc(50% - 360px);
  }
  .single #container-circle02 {
    top: 45%;
    right: calc(50% - 720px);
  }

/* modal
**************************************** */
  .handle {
    transition: all .4s ease-out;
    cursor: pointer;
  }
  .modal {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease-out;
    z-index: 9999;
  }
  .modal.active {
    opacity: 1;
    pointer-events: auto;
  }
  .modal--overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, .7);
    backdrop-filter: 8px;
    z-index: -1;
  }
  .modal--close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #4dbaff;
    z-index: 2;
    cursor: pointer;
    transition: all .4s ease-out;
  }
  .modal--close::before,
  .modal--close::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50%;
    height: 0;
    border-bottom: 2px solid #fff;
  }
  .modal--close::before {
    transform: rotate(45deg);
  }
  .modal--close::after {
    transform: rotate(-45deg);
  }
  .modal--close:hover {
    transform: rotate(180deg);
  }
  .modal--cont {
    position: relative;
    width: 90%;
    max-width: 1400px;
    max-height: calc(100vh - 140px);
  }
  .modal--iframe {
    aspect-ratio: 16/9;
    max-height: calc(100vh - 140px);
  }
  .modal.active .modal--frame {
    pointer-events: auto;
  }

  @media screen and (max-width: 767px) {
    .modal--close {
      top: -50px;
      right: 0;
      width: 40px;
    }
  }


/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
  .header {
    position: fixed;
    z-index: 999;
    width: 100%;
    padding-left: 32px;
    padding-right: 32px;
    transition: .4s ease-in-out;
  }
  .header--logo {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .header--logo img { transform: translateY(-5px); }

  @media screen and (max-width: 767px) {
    .header {
      padding-left: 16px;
      padding-right: 16px;
    }
  }

/* gnav
**************************************** */
  .gnav { position: relative; }
  .gnav a {
    position: relative;
    display: block;
    padding: 16px;
    font-size: 85%;
    font-weight: bold;
    line-height: 1.5;
  }
  .gnav--toggle {
    position: relative;
    display: block;
    width: 16px;
    aspect-ratio: 1;
    margin-top: -20px;
    margin-inline: auto;
    color: #b0b6b7;
    transition: all .4s ease-out;
  }
  .gnav--toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
  }
  /* hover */
  @media screen and (min-width: 768px) {
    .gnav li a:hover { color: #00a8ed; }
  }
  .gnav a span {
    display: block;
    color: #b0b6b7;
  }
  .gnav--list a { overflow: unset; }
  .btn-entry { margin-left: 16px; }
  .btn-entry a {
    padding: 6px 30px;
    color: #fff;
    font-size: 114%;
  }
  .header-wh .gnav--list a { color: #999; }
  .header-wh .gnav--list a span { color: #6b6b6b; }
  #slide-line {
    position: absolute;
    left: calc(50% - 24px / 2);
    top: 0;
    display: block;
    height: 2px;
    transition: .2s ease-in-out;
    background-color: #00a8ed;
  }
  .gnav--list_child a {
    padding: 8px;
  }
  .gnav--list_ttl,
  .gnav--list_tax {
    font-weight: bold;
  }
  .gnav--list_ttl {
    width: 100%;
    padding-bottom: .25em;
    color: #00B2ED;
    border-bottom: 1px solid;
  }
  .gnav--list_tax {
    color: #555;
  }

  @media print, screen and (min-width: 768px) {
    .gnav--list_children_wrap {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      display: flex;
      flex-wrap: wrap;
      column-gap: 32px;
      background-color: #e5f6fc;
      padding: 24px 40px 32px;
      transition: all .4s ease-out;
      opacity: 0;
      pointer-events: none;
    }
    .gnav li:hover .gnav--list_children_wrap {
      opacity: 1;
      pointer-events: auto;
    }
    .gnav--list_child:only-child {
      column-count: 2;
    }
    .gnav--list_child:only-child li {
      break-inside: avoid;
    }
    .gnav--list_child:has(> :nth-child(-n+3):last-child) {
      column-count: auto;
    }
    .gnav--list_child a:not(:hover) {
      color: #000;
    }
  }

  @media screen and  (max-width: 970px) {
    .gnav--list a { padding: 16px 8px; }
    .btn-entry a { padding: 6px 24px; }
  }

  @media screen and  (max-width: 767px) {
    .gnav {
      position: fixed;
      top: 0;
      left: 0;
      opacity: 0;
      pointer-events: none;
      transition: .4s ease-in-out;
      transform: translateY(-100%);
      width: 100%;
      height: 100%;
      padding-block: 40px;
      background-color: rgba(0, 168, 237, .9);
      overflow: auto;
    }
    .gnav li {
      position: relative;
    }
    .gnav a,
    .gnav a span,
    .header-wh .gnav--list a,
    .header-wh .gnav--list a span {
      color: #fff;
    }
    .header.active .gnav {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }
    .gnav--list { width: 80%; }
    .gnav--list li { width: 100%; }
    .gnav--list a { padding: 16px 0; }
    .gnav--toggle {
      position: absolute;
      top: 0;
      right: 0;
      width: 67px;
      margin-top: 0;
      color: #fff;
    }
    .gnav--toggle.active {
      transform: rotate(180deg);
    }
    .gnav--list_children_wrap {
      display: none;
      margin-top: -8px;
    }
    .gnav--list_child {
      padding-left: 1em;
    }
    .gnav--list_child a {
      padding: .5em 0 .5em 1.5em;
      margin-inline-start: 1.5em;
    }
    .gnav--list_child a::before {
      content: "";
      float: inline-start;
      inline-size: 1em;
      margin-block: calc(.5lh - .25em);
      margin-inline-start: -1.5em;
      height: 0;
      border-bottom: 1px solid;
    }
    .gnav--list_tax {
      color: #fff;
      padding: .5em 0 .5em 1.5em;
    }
    .gnav_btn {
      position: fixed;
      top: 8px;
      right: 8px;
      width: 48px;
      height: 48px;
      background-color: #00b2ed;
      z-index: 9999;
      transition: .4s ease-in-out;
    }
    .header.active .gnav_btn {
      background-color: #fff;
    }
    .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;
    }
    .header.active .gnav_btn--lines span {
      background-color: #00b2ed;
    }
    .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);
    }
    .btn-entry {
      width: 80%;
      margin-left: 0;
      margin-top: 16px;
      text-align: center;
    }
    .btn-entry a {
      padding: 12px 24px;
      color: #00b2ed;
      background-color: #fff;
    }
  }


/* ##############################################################################

    FOOTER

############################################################################## */

/* contact
**************************************** */
  .contact {
    position: relative;
    z-index: 1;
    margin-top: -40px;
  }
  .contact-circle > p:nth-child(1) {
    top: -10px;
    left: 11%;
    width: 163px;
    height: 163px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/contact--bg-circle01.png);
  }
  .contact-circle > p:nth-child(2) {
    top: calc(50% - 100px);
    right: 3%;
    width: 273px;
    height: 273px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/contact--bg-circle02.png);
  }
  .contact-circle > p:nth-child(3) {
    bottom: 100px;
    left: -5%;
    width: 273px;
    height: 273px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/contact--bg-circle02.png);
  }

  @media screen and (max-width: 767px) {
    .contact { margin-top: -88px; }
    .contact-circle > p:nth-child(1) {
      top: 20px;
      left: -22%;
    }
  }

/* footer
**************************************** */
  .footer {
    padding: 72px 40px;
    color: #fff;
    font-weight: bold;
    background-color: #00b2ed;
  }
  .footer a { color: #fff; }
  .footer address {
    margin-bottom: 16px;
    font-size: 85%;
  }
  .footer--logo { margin-bottom: 24px; }
  .footer--nav ul { margin-bottom: 24px; }
  .footer--nav li {
    position: relative;
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
  }
  .footer--nav li:not(:last-child) { padding-right: 16px; }
  .footer--nav li::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: .4s ease-in-out;
  }
  /* hover */
  @media screen and (min-width: 768px) {
    .footer--nav li:hover::after { width: 100%; }
  }
  .corporate-link { font-size: 85%; }
  .footer--copyright {
    font-size: 78%;
    opacity: .5;
  }

  @media screen and (max-width: 767px) {
    .footer { padding: 32px 24px; }
    .footer > div { width: 100%; }
    .footer address {
      padding-bottom: 24px;
      border-bottom: 1px solid #57bfea;
    }
    .footer--logo { text-align: center; }
    .footer--nav ul {
      justify-content: center;
      margin-bottom: 0;
    }
    .footer--nav li,
    .footer--nav li:not(:first-child),
    .footer--nav li:not(:last-child) {
      padding-left: 0;
      padding-right: 0;
    }
    .footer--nav a {
      font-size: 92%;
    }
    .footer--nav li:not(:last-child) {
      margin-right: 16px;
    }
    .footer--nav_list {
      text-align: center;
    }
    .footer--copyright { margin-top: 16px; }
  }


/* ##############################################################################

    INDEX

############################################################################## */

/* hero
*************************************************** */
  .hero {
    position: relative;
    height: 680px;
    overflow: hidden;
  }
  .hero canvas { z-index: 5 !important; }
  .hero--ttl {
    position: absolute;
    z-index: 3;
    top: calc(50% - 263px / 2);
    left: calc(50% - 442px / 2);
    animation-delay: 2.5s;
  }
  .hero--ttl span {
    display: block;
    color: #000;
    font-size: 140%;
    text-align: center;
    transition: .4s ease-in-out;
  }
  .hero_img img {
    position: absolute;
  }
  .hero_img--img {
    top: 50px;
    left: calc(50% - 535px);
    z-index: 2;
    animation-delay: 3s;
  }
  .hero_img--raindrop01 {
    top: 110px;
    left: calc(50% - 547px);
    z-index: 5;
    animation-delay: 2.5s;
  }
  .hero_img--raindrop02 {
    top: 0;
    left: calc(50% - 610px);
    z-index: 1;
    animation-delay: 2s;
  }
  .hero .ttl-circle > p {
    z-index: 1;
  }
  .hero #ttl-circle01 {
    top: 250px;
    left: -1%;
    width: 320px;
    height: 320px;
    background-image: url(/wp/wp-content/themes/original_theme/images/hero_ttl-circle01.png);
  }
  .hero #ttl-circle02 {
    top: -30px;
    left: 26%;
    width: 349px;
    height: 353px;
    background-image: url(/wp/wp-content/themes/original_theme/images/hero_ttl-circle02.png);
  }
  .hero #ttl-circle03 {
    top: 110px;
    left: calc(50% + 120px);
    width: 393px;
    height: 393px;
    background-image: url(/wp/wp-content/themes/original_theme/images/hero_ttl-circle03.png);
  }
  .hero #ttl-circle04 {
    top: 80px;
    right: -2%;
    width: 273px;
    height: 273px;
    background-image: url(/wp/wp-content/themes/original_theme/images/hero_ttl-circle04.png);
  }

  @media screen and (max-width: 767px) {
    .hero { height: 96vw; }
    .hero--ttl {
      top: calc(50% - 50px);
      left: calc(50% - 120px);
      width: 68%;
    }
    .hero--ttl span { font-size: 90%; }
    .hero_img img {
      width: 100%;
      transform: none;
      left: 0;
    }
    .hero_img--img { top: 18%; }
    .hero_img--raindrop01 { top: 15%; }
    .hero_img--raindrop02 { top: 12%; }
    .hero #ttl-circle02 {
      top: 7%;
      left: -3%;
      width: calc(349px / 2);
      height: calc(349px / 2);
      background-size: cover;
    }
    .hero #ttl-circle03 {
      top: 26%;
      left: calc(50% + 60px);
      width: calc(393px / 2);
      height: calc(393px / 2);
      background-size: cover;
    }
  }

/* container-circle
*************************************************** */
  .home #container-circle02 {
    top: 15%;
    left: 48%;
  }
  .home #container-circle03 {
    top: 52%;
    left: calc(50% - 740px);
  }
  .home #container-circle04 {
    top: 74%;
    right: calc(50% - 550px);
  }
  .home .drop01 {
    top: 39%;
  }
  .home .drop04 {
    top: 63%;
  }
  .home .drop03 {
    top: 44%;
    right: calc(50% - 740px);
  }
  .home .drop05 {
    top: 72%;
    right: calc(50% - 690px);
  }
  .home .drop06 {
    top: 0;
    left: calc(50% - 720px);
  }

/* content_list
*************************************************** */
  .content_box-home {
    margin-top: -30px;
    padding-top: 0;
    z-index: 2;
  }
  .content_item {
    position: relative;
    width: 40%;
    max-height: 480px;
    padding-top: 39.167%;
    box-sizing: border-box;
    border-width: 5px;
    border-style: solid;
    border-color: #fff;
    background-color: #e1f4fc;
    transition: .4s ease-in-out;
  }
  .content_item--inner {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  .content_item--bg,
  .content_item--inner::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .4s ease-in-out;
  }
  .content_item--bg {
    background-position: center;
    background-size: cover;
  }
  /* hover */
  @media screen and (min-width: 768px) {
    .content_item:hover .content_item--bg,
    .posts .post:hover .post--img > div {
      transform: scale(1.2);
    }
  }
  .content_item--inner::before {
    content: '';
    z-index: 1;
  }
  .content_item::after {
    position: absolute;
    z-index: 2;
    font-family: 'Caveat', cursive;
    line-height: 1;
    text-transform: capitalize;
    transform: rotate(-15deg);
    transition: .4s ease-in-out;
  }
  .content_item:not(.content_item-sm)::after {
    font-size: 386%;
  }
  .content_item a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .content_item--ttl_wrap {
    position: relative;
    z-index: 1;
    padding-top: 16px;
  }
  .content_item--ttl {
    font-size: 100%;
    line-height: 1.3;
    letter-spacing: .13em;
    transition: .4s ease-in-out;
    font-size: 265%;
  }
  .content_item--ttl:not(:last-child) {
    margin-bottom: 8px;
  }
  .content_item--ttl span {
    font-size: 150%;
    transition: .4s ease-in-out;
  }
  .content_item .content_item--txt {
    font-size: 86%;
    font-weight: bold;
    transition: .4s ease-in-out;
  }
  .content_item--cat {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    padding: 8px 16px;
    color: #fff;
    font-size: 73%;
    line-height: 1;
    font-weight: bold;
  }

  /* --- content_item-sm --- */
  .content_item-sm {
    width: 40%;
    padding-top: 19.167%;
    max-height: 240px;
  }
  .content_item-sm::after { font-size: 266%; }
  .content_item-sm .content_item--ttl {
    line-height: 1.3;
    font-size: 215%;
  }

  /* 欧文設定 */
  .content_item-works::after { content: 'works'; }
  .content_item-company::after { content: 'company'; }
  .content_item-people::after { content: 'people'; }
  .content_item-technology::after { content: 'technology'; }

  /* works カラー設定 */
  .content_item-works::after,
  .content_item-works .content_item--ttl span {
    color: #00C19F;
  }
  .content_item-works .content_item--cat { background-color: #00C19F; }
  /* hover */
  @media screen and (min-width: 768px) {
    .content_item-works:hover,
    .archive-works .post:hover .post--img,
    .single-works .post:hover .post--img {
      border-color: #00C19F;
    }
    .content_item-works:hover .content_item--inner::before,
    .archive-works .post:hover .post--img::after,
    .single-works .post:hover .post--img::after {
      background-color: rgba(0, 193, 159, .5);
    }
  }

  /* company カラー設定 */
  .content_item-company::after,
  .content_item-company .content_item--ttl span {
    color: #007EFF;
  }
  .content_item-company .content_item--cat { background-color: #007EFF; }
  /* hover */
  @media screen and (min-width: 768px) {
    .content_item-company:hover,
    .archive-company .post:hover .post--img,
    .single-company .post:hover .post--img {
      border-color: #007EFF;
    }
    .content_item-company:hover .content_item--inner::before,
    .archive-company .post:hover .post--img::after,
    .single-company .post:hover .post--img::after {
      background-color: rgba(0, 126, 255, .5);
    }
  }

  /* people カラー設定 */
  .content_item-people::after,
  .content_item-people .content_item--ttl span {
    color: #00B2ED;
  }
  .content_item-people .content_item--cat { background-color: #00B2ED; }
  /* hover */
  @media screen and (min-width: 768px) {
    .content_item-people:hover,
    .archive-people .post:hover .post--img,
    .single-people .post:hover .post--img {
      border-color: #00B2ED;
    }
    .content_item-people:hover .content_item--inner::before,
    .archive-people .post:hover .post--img::after,
    .single-people .post:hover .post--img::after {
      background-color:rgba(0, 178, 237, .5);
    }
  }

  /* 黒タイル設定 */
  .content_item-bl::after,
  .content_item-bl .content_item--ttl,
  .content_item-bl .content_item--ttl span,
  .content_item-bl .content_item--txt {
    color: #fff;
  }
  .content_item-bl .content_item--inner::before { background-color: rgba(0, 0, 0, .5); }

  /* 白タイル設定 */
  .content_item-wh .content_item--ttl,
  .content_item-wh .content_item--txt {
    color: #000;
  }
  .content_item-wh .content_item--bg { opacity: .5; }
  .content_item-wh .content_item--inner::before { background-color: rgba(255, 255, 255, .5); }

  /* hover */
  @media screen and (min-width: 768px) {
    .content_item:hover::after,
    .content_item:hover .content_item--ttl,
    .content_item:hover .content_item--ttl span,
    .content_item:hover .content_item--txt {
      color: #fff;
    }
  }

  /* works 01 */
  .content_item-works01 {
    margin-top: calc(39.167% / 2 + .45%);
  }
  .content_item-works01::after {
    top: -30px;
    right: 30px;
  }

  /* works 02 */
  .content_item-works02::after {
    bottom: 15px;
    right: 15px;
  }

  /* works 03 */
  .content_item-works03 {
    margin-top: calc(39.167% / 2 - 39.6%);
  }
  .content_item-works03::after {
    bottom: 75px;
    right: -25px;
  }

  /* people */
  .content_item-people::after {
    bottom: 30px;
    right: 30px;
  }
  .content_item:has(iframe) {
    overflow: hidden;
  }
  .content_item > iframe {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  /* youtube */
  .content_item-youtube::after {
    display: none;  
  }

  /* company 01 */
  .content_item-company01 {
    width: 60%;
/*    max-height: 400px;
    padding-top: 32.5%;*/
  }
  .content_item-company01::after {
    bottom: 40px;
    right: 30px;
  }

  /* company 02 */
  .content_item-company02 {
    margin-left: 20%;
  }
  .content_item-company02::after {
    bottom: 20px;
    right: 20px;
  }

  /* company 03 */
  .content_item-company03::after {
    bottom: 40px;
    right: -40px;
  }

  /* company 04 */
  .content_item-company04 { height: 19vw; }
  .content_item-company04::after {
    bottom: 30px;
    right: 20px;
  }

  /* company 05 */
  .content_item-company05 {
    position: absolute;
  }
  .content_item-company05 .content_item--ttl {
    font-size: 160%;
    transition: none;
  }
  .content_item-company05::after {
    display: none;
  }
  .content_item-company05::after,
  .content_item-company05 .content_item--ttl span {
    color: #fff;
    background-color: #277eff;
  }
  .content_item-company05 .content_item--ttl i {
    font-style: normal;
    background-color: #fff;
    transition: .4s ease-in-out;
  }
  .content_item-company05 .content_item--inner::before {
    background-color: rgba(44,179,237,.2);
    mix-blend-mode: overlay;
  }
  .content_item-company05:hover .content_item--ttl i {
    background-color: #277eff;
  }

  /* recruit,faq */
  .content_item-recruit,
  .content_item-faq {
    width: 20%;
    padding-top: 19.167%;
    max-height: 240px;
  }
  .content_item-recruit .content_item--bg,
  .content_item-faq .content_item--bg {
    background-image: url(/wp/wp-content/themes/original_theme/images/bg-stripe.jpg);
    background-size: cover;
  }
  /* hover */
  @media screen and (min-width: 768px) {
    .content_item-recruit:hover .content_item--bg,
    .content_item-faq:hover .content_item--bg {
      animation-name: bg;
      animation-duration: 5s;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
      background-image: url(/wp/wp-content/themes/original_theme/images/bg-stripe02.jpg);
    }
  }
  .content_item-recruit img,
  .content_item-faq img {
    position: absolute;
    z-index: 2;
    max-width: none;
    bottom: 0;
    transition: .2s ease-in-out;
  }
  .content_item-recruit .ttl {
    top: 20px;
    left: -50px;
    max-width: 165px;
  }
  .content_item-recruit .img {
    right: 0;
    max-width: 165px;
  }
  .content_item-faq .ttl {
    top: -35px;
    right: -30px;
    max-width: 143px;
  }
  .content_item-faq .img {
    left: 0;
    max-width: 217px;
  }
  /* hover */
  @media screen and (min-width: 768px) {
    .content_item-recruit:hover .ttl { transform: rotate(-10deg); }
    .content_item-faq:hover .ttl { transform: rotate(10deg); }
  }

  /* faq */
  .content_item-faq { margin-top: calc(39.167% / 2 + .45%); }

  /* hover */
  @media screen and (max-width: 1300px) {
    .content_item--ttl { font-size: 240%; }
    .content_item-sm .content_item--ttl { font-size: 190%; }
    .content_item-company05 .content_item--ttl { font-size: 140%; }
  }
  @media screen and (max-width: 1200px) {
    .content_item-recruit .ttl { width: 70%; }
    .content_item-recruit .img { width: 80%; }
    .content_item-faq .ttl { width: 60%; }
    .content_item-faq .img { width: 95%; }
    .content_item--ttl { font-size: 200%; }
    .content_item-sm .content_item--ttl { font-size: 170%; }
    .content_item-company05 .content_item--ttl { font-size: 130%; }
  }
  @media screen and (max-width: 1080px) {
    .content_item--ttl { font-size: 180%; }
    .content_item-sm .content_item--ttl { font-size: 150%; }
  }
  @media screen and (max-width: 767px) {
    .content_box-home {
      margin-top: 0;
      padding-top: 40px;
    }
    .content_item {
      width: 100%;
      margin-top: 0;
      margin-left: 0;
      padding-top: 100%;
      border-width: 3px;
    }
    .content_item a {
      padding-left: 24px;
      padding-right: 24px;
    }
    .content_item-sm,
    .content_item-recruit,
    .content_item-faq {
      padding-top: 50%;
    }
    .content_item-recruit {
      width: 60%;
      margin-left: 40%;
    }
    .content_item-recruit .img {
      height: 103%;
      object-fit: contain;
    }
    .content_item-faq {
      width: 60%;
      margin-right: 40%;
    }
    .content_item-faq .ttl {
      top: 5px;
      right: -70px;
    }
    .content_item-works03::after { bottom: 45px; }
    .content_item-company01::after {
      bottom: 0px;
      right: -10px;
      font-size: 266%;
    }
    .content_item-company03::after {
      bottom: 30px;
      right: -20px;
    }
    .content_item-company04::after {
      bottom: 20px;
      right: -10px;
    }
    .content_item .content_item--txt {
      font-size: 76%;
    }
    .content_item-company05 {
      position: relative;
    }
    .content_item--ttl {
      font-size: 140%;
    }
  }

/* ##############################################################################

    TEMPLATE

############################################################################## */

/* layout
*************************************************** */

  /* --- img_text --- */
  .layout-img_text {
    display: flex;
    gap: 5%;
  }

  @media print, screen and (min-width: 768px) {
    .layout-img_text > *:only-child {
      flex: 1;
    }
    .img_text--img {
      width: 35%;
    }
    .img_text--txtarea {
      width: 60%;
    }
    .layout-img_text:nth-child(even) {
      flex-direction: row-reverse;
    }
  }
  @media screen and (max-width: 767px) {
    .layout-img_text {
      flex-direction: column;
      gap: 24px;
    }
  }

/* ##############################################################################

    PAGE

############################################################################## */

/* recruit,faq
*************************************************** */
  .content--box:not(:last-child) { margin-bottom: 120px; }
  .content--box .heading-1 span {
    display: inline-block;
    padding: 8px 32px;
    font-weight: normal;
    line-height: 1;
    text-transform: capitalize;
    transform: translateY(-.8em);
    border-radius: 50px;
    background-color: #00b2ed;
  }
  _:-ms-fullscreen, :root .content--box .heading-1 span em {
    position: relative;
    top: .2em;
  }

  /* --- recruit --- */
  .content--recruit .mce-content-body { padding: 0 40px 40px 40px; }
  .recruit .contents_box {
    max-width: calc(100% - 320px);
    margin-left: 0;
  }

  /* --- faq --- */
  .faq_item {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
  }
  .faq_item:not(:nth-of-type(1)) { padding-top: 40px; }
  .faq_item:not(:last-child) { border-bottom: 2px dotted #e4e4e4; }
  .faq_item .heading-2 {
    margin-left: 1.5em;
    text-indent: -1.5em;
  }
  .faq_item .heading-2::before { content: 'Q. '; }
  .faq_item-a { padding-left: 2.7em; }

  @media screen and (max-width: 767px) {
    /* --- recruit --- */
    .content--recruit .mce-content-body { padding: 0 24px 24px 24px; }

    /* --- faq --- */
    .faq_item {
      padding-left: 16px;
      padding-right: 16px;
      padding-bottom: 16px;
    }
    .faq_item:not(:nth-of-type(1)) {
      padding-top: 16px;
    }
    .faq_item-a {
      padding-left: 2.2em;
    }
    .recruit .contents_box {
      max-width: 100%;
    }
  }

/* 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;
  }
  /* hover */
  @media screen and (min-width: 768px) {
    .sitemap--list li a:hover {
      color: #4267b2;
      text-decoration: underline;
    }
  }
  .sitemap--item-ttl { font-weight: bold; }
  .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; }
  }


/* ##############################################################################

    ARCHIVE

############################################################################## */
  .container canvas {
    z-index: -1;
  }

/* main_column
**************************************** */
  .main_column {
    flex: 1;
    margin-right: 80px;
  }

  /* --- post --- */
  .post { position: relative; }
  .main_column .post,
  .main_column .posts::after {
    width: calc(33.33% - 32px);
  }
  .main_column .posts::after {
    content: '';
    display: block;
  }
  .main_column .heading-2 {
    font-size: 171%;
    line-height: 1.5;
  }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: .4s ease-in-out;
  }
  .recruit .post--link:hover::before {
    background: rgba(255,255,255,.3);
  }
  .post--date {
    color: #aaa;
    font-size: 85%;
  }
  .page_ttl .post--ttl {
    margin-bottom: 40px;
    color: #fff;
    font-size: 400%;
    line-height: 1.3;
    text-align: center;
    letter-spacing: .1em;
  }
  .page_ttl--set.drop_in {
    animation-delay: 1s;
  }
  .page_ttl--set.drop_in .post--eyecatch {
    animation-delay: .7s;
  }
  .single-works .page_ttl .post--ttl {
    position: relative;
    z-index: 2;
    width: 78%;
    color: #00b2ed;
    font-size: 530%;
    text-align: left;
    text-shadow: 0 0 30px #fff, 0 0 30px #fff, 0 0 30px #fff;
  }
  .page_ttl .post--eyecatch {
    position: absolute;
    top: calc(50% - 260px);
    right: calc(50% - 680px);
    z-index: 1;
  }
  .post .post--img img {
    overflow: hidden;
    border-radius: 3px;
  }

  @media screen and (max-width: 1080px) {
    .main_column {
      width: 100%;
      margin-right: 0;
    }
    .single .main_column {
      margin-bottom: 100px;
    }
    .page_ttl .post--eyecatch {
      right: 0;
      width: 50%;
    }
    .single-works .page_ttl .post--ttl {
      font-size: 380%;
    }
    .main_column .heading-2 {
      font-size: 160%;
      line-height: 1.3;
    }
  }
  @media screen and (max-width: 767px) {
    .main_column .heading-2 {
      font-size: 135%;
    }
    .single .main_column {
      margin-bottom: 56px;
    }
    .page_ttl .post--ttl {
      margin-bottom: 24px;
      font-size: 260%;
    }
    .single-works .page_ttl .post--ttl {
      width: 100%;
      font-size: 240%;
      margin-bottom: 16px;
      text-align: center;
    }
    .page_ttl .post--eyecatch {
      width: 100%;
      margin-bottom: 16px;
    }
    .page_ttl .post--eyecatch {
      position: relative;
      top: 0;
    }
    .single-works .page_ttl--cat {
      justify-content: center;
    }
  }

/* side_column
**************************************** */
  .side_column { width: 264px; }
  .side_section:not(:last-child) { margin-bottom: 64px; }
  .side--ttl {
    position: relative;
    margin-bottom: 24px;
    font-size: 142%;
    font-weight: normal;
    line-height: 1;
  }
  .side--ttl::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -50px;
    z-index: 0;
    width: 150px;
    height: 150px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/circle01.png);
  }
  .side--ttl span {
    margin-right: 4px;
    font-size: 200%;
    letter-spacing: 0;
  }
  .btn-entry-side {
    position: relative;
    z-index: 5;
    display: block;
    margin-top: -20px;
    margin-bottom: 100px;
    text-align: center;
  }
  .recruit .side_column {
    display: flex;
    width: 264px;
  }
  /* hover */
  @media screen and (min-width: 768px) {
    .btn-entry-side:hover { opacity: .5; }
  }

  /* --- post --- */
  .posts-side .post:not(:last-child) { margin-bottom: 32px; }
  .posts-side .post a { width: 100%; }
  .posts-side .post--img {
    padding-top: 100%;
    background-color: #e5f6fc;
    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 {
    font-size: 114%;
    line-height: 1.4;
  }
  .posts-side .post--txt {
    font-size: 92%;
    color: #555;
  }

  /* --- archive --- */
  .side_column .archive_list--ttl::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(135deg);
    transition: .4s ease-in-out;
  }
  .side_column .archive_list--ttl.active::after { transform: rotate(315deg); }
  .side_column .archive_month { display: none; }

  @media screen and (max-width: 1080px) and (min-width: 768px) {
    .posts-side {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .posts-side .post { width: calc(33.33% - 16px); }
    .posts-side .post--img {
      margin-left: auto;
      margin-right: auto;
    }
  }
  @media screen and (max-width: 1080px) {
    .side_column { width: 100%; }
    .page .side_column { display: none; }
  }
  @media screen and (max-width: 767px) {
    .side_column {
      padding-left: 16px;
      padding-right: 16px;
    }
    .btn-entry-side { margin-bottom: 64px; }
  }

/* posts
**************************************** */
  .posts:not(.posts-side)::after {
    content: '';
    display: block;
    width: calc(33.33% - 20px);
  }
  .posts:not(.posts-side) .post { width: calc(33.33% - 20px); }
  .posts:not(.posts-side) .post:not(:last-child) { margin-bottom: 40px; }
  .posts:not(.posts-side) .post a {
    display: block;
    line-height: 1.5;
  }
  .posts:not(.posts-side) .post--ttl {
    font-size: 200%;
  }
  .posts:not(.posts-side) .txtarea {
    padding: 16px;
  }
  .posts .post--img {
    position: relative;
    overflow: hidden;
    border-width: 5px;
    border-style: solid;
    border-color: #fff;
    transition: .4s ease-in-out;
    background-image: url(/wp/wp-content/themes/original_theme/images/bg-stripe.jpg);
  }
  .posts .post--img > div,
  .post .post--img::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .4s ease-in-out;
  }
  .posts:not(.posts-side) .post--img {
    height: 300px;
  }
  .posts .post--img > div {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* --- posts-works --- */
  .posts.posts-works .post--img {
    height: auto;
    padding-top: 100%;
    background-color: #e1f4fc;
  }
  .posts.posts-works .post--img > div { background-size: contain; }

  @media screen and (max-width: 767px) {
    .posts:not(.posts-side) .post {
      width: 100%;
    }
  }

/* ##############################################################################

    SINGLE

############################################################################## */

  .text--block {
    padding: 48px;
    background-color: #fff;
    position: relative;
  }
  .text--block:not(:last-child) {
    margin-bottom: 32px;
  }
  .column { padding: 40px; }
  .share_btn {
    margin-left: 24px;
    padding-top: 32px;
  }
  .share_btn a { display: inline-block; }
  .share_btn a:not(:last-child) { margin-right: 16px; }
  /* hover */
  @media screen and (min-width: 768px) {
    .share_btn a:hover { opacity: .5; }
  }
  @media screen and (max-width: 767px) {
    .text--block { padding: 24px; }
    .archive-recruit .text--block {
      padding: 24px 0;
    }
    .column { padding: 16px; }
    .share-ttl { flex: 1; }
    .share_btn {
      width: 58%;
      margin-left: 5%;
      padding-top: 16px;
    }
    .share_btn a:not(:last-child) {
      margin-right: 5%;
    }
    .share_btn a {
      width: calc(33.33% - 4%);
    }
  }

/* wp-pagenavi
**************************************** */
  .wp-pagenavi {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .wp-pagenavi .pages {
    width: 100%;
    color: #00b2ed;
    font-size: 250%;
    font-family: 'Caveat', cursive;
    text-align: center;
  }
  .wp-pagenavi .current,
  .wp-pagenavi .page:hover {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/bg--deco02.png);
  }
  .wp-pagenavi .current,
  .wp-pagenavi a {
    align-content: center;
    position: relative;
    padding-top: 20px;
    overflow: hidden;
    color: #676f72;
    font-size: 130%;
    font-family: futura-pt, sans-serif;
    line-height: 1.4;
    vertical-align: top;
    text-overflow: ellipsis;
    text-align: center;
    white-space: nowrap;
    transition: .4s ease-in-out;
  }
  .wp-pagenavi .current,
  .wp-pagenavi a:not(.previouspostslink):not(.nextpostslink) {
    width: 34px;
    height: 58px;
  }
  .wp-pagenavi * + *:not(:last-child) { margin-right: 8px; }
  .wp-pagenavi a[rel="next"],
  .wp-pagenavi a[rel="prev"] {
    color: transparent;
    padding-top: 0;
    padding-right: 20px;
    overflow: visible;
  }
  .wp-pagenavi a[rel="prev"]::before,
  .wp-pagenavi a[rel="next"]::before {
    content: '';
    position: absolute;
    display: block;
    width: 36px;
    height: 27px;
    margin-top: 5px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/arrow.svg);
    transition: .4s ease-in-out;
  }
  .wp-pagenavi a[rel="prev"]::before {
    transform: rotate(180deg);
  }
  /* hover */
  @media screen and (min-width: 768px) {
    .wp-pagenavi a:not(.previouspostslink):not(.nextpostslink):hover,
    .wp-pagenavi a:hover small::before {
      color: #007EFF;
    }
    .wp-pagenavi a:hover[rel="next"]::before {
      transform: translateX(10px);
    }
    .wp-pagenavi a:hover[rel="prev"]::before {
      transform: rotate(180deg) translateX(10px);
    }
  }
  @media screen and (max-width: 767px) {
    .wp-pagenavi { margin-bottom: 40px; }
    .wp-pagenavi .current,
    .wp-pagenavi a {
      max-width: 100%;
      margin-bottom: 8px;
    }
    .wp-pagenavi a[rel="prev"] { padding-left: 0px; }
    .wp-pagenavi a[rel="next"] { padding-right: 0px; }
    .wp-pagenavi a[rel="prev"]::before,
    .wp-pagenavi a[rel="next"]::before {
      width: 26px;
      height: 22px;
      background-size: contain;
    }
  }

  /* --- wp-pagenavi-single --- */
  .wp-pagenavi-single { display: block; }
  .wp-pagenavi-single a {
    width: 30% !important;
    height: auto !important;
    min-width: 100px;
    color: #676f72 !important;
    font-size: 100%;
    padding-top: 0;
  }
  .wp-pagenavi-single a[rel="next"],
  .wp-pagenavi-single a[rel="prev"] {
    width: 40%;
    text-align: left;
  }
  .wp-pagenavi-single a:not([rel="next"]):not([rel="prev"]) {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
  }
  .wp-pagenavi-single a[rel="next"] {
    float: right;
    flex-direction: row-reverse;
  }
  .wp-pagenavi-single a[rel="prev"] {
    float: left;
  }
  .wp-pagenavi-single a[rel="next"]::before {
    margin-left: 8px;
    right: 10px;
  }
  .wp-pagenavi-single a[rel="prev"]::before {
    margin-right: 8px;
    left: 10px;
  }
  .wp-pagenavi-single a .label {
    content: 'Top';
    display: block;
    font-size: 228%;
    color: #00B2ED;
    font-family: 'Caveat', cursive;
    transition: .2s ease-in-out;
  }
  .wp-pagenavi-single a[rel="prev"] .label {
    padding-left: 1em;
  }
  .wp-pagenavi-single a[rel="next"] .label {
    text-align: right;
    padding-right: 1em;
  }
  .wp-pagenavi-single a small {
    display: block;
    flex: 1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .wp-pagenavi-single a .word {
    width: 90%;
  }
  .wp-pagenavi-single a small br { display: none; }
  .wp-pagenavi-single a[rel="prev"] small {
    padding-left: 2.7em;
  }
  .wp-pagenavi-single a[rel="next"] small {
    text-align: right;
    padding-right: 2.7em;
    float: right;
  }

  @media screen and (max-width: 767px) {
    .wp-pagenavi-single a { font-size: 90%; }
  }


/* ##############################################################################

    FORMY

############################################################################## */
  #formy_form {
    position: relative;
    z-index: 1;
    background-color: #fff;
  }
  #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: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;
    height: 140px;
    border: solid 1px #ccc;
    font-size: 85%;
    padding: 8px 16px;
  }
  .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::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: bold;
  }
  #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;
  }
  /* hover */
  @media screen and (min-width: 768px) {
    #formy_form input:hover { opacity: .7; }
    #formy_form textarea:hover { opacity: .7; }
    #formy_form ul li label:hover { opacity: .7; }
  }
  @media  only screen and (max-width: 767px) {
    #formy_form { padding: 0 16px; }
    #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: bold;
    }
    #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;
    }
  }