@charset "UTF-8";
body {
  margin: 0; }

/*********************
COLORS
*********************/
/****Font_Size****/
.text_ss {
  font-size: 10px;
  font-size: 0.625rem; }
  @media only screen and (min-width: 640px) {
    .text_ss {
      font-size: 12px;
      font-size: 0.75rem; } }

.text_s {
  font-size: 12px;
  font-size: 0.75rem; }
  @media only screen and (min-width: 640px) {
    .text_s {
      font-size: 14px;
      font-size: 0.875rem; } }

.text_m {
  font-size: 14px;
  font-size: 0.875rem; }
  @media only screen and (min-width: 640px) {
    .text_m {
      font-size: 16px;
      font-size: 1rem; } }

.text_l {
  font-size: 18px;
  font-size: 1.0625rem; }
  @media only screen and (min-width: 640px) {
    .text_l {
      font-size: 24px;
      font-size: 1.5rem; } }

.text_2l {
  font-size: 24px;
  font-size: 1.5rem; }
  @media only screen and (min-width: 640px) {
    .text_2l {
      font-size: 40px;
      font-size: 2.5rem; } }

.text_xl {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold; }
  @media only screen and (min-width: 640px) {
    .text_xl {
      font-size: 56px;
      font-size: 3.5rem; } }

.text_color {
  color: #000000; }

.text_gray {
  color: #999999; }

/*********************
MARGIN&PADDING
*********************/
:root {
  --mgpd_tg: 3px;
  --mgpd_ss: 8px;
  --mgpd_s: 15px;
  --mgpd_m: 24px;
  --mgpd_l: 60px;
  --pd_base: 0.625rem; }

@media only screen and (min-width: 640px) {
  :root {
    --mgpd_tg: 5px;
    --mgpd_ss: 10px;
    --mgpd_s: 20px;
    --mgpd_m: 35px;
    --mgpd_l: 110px;
    --pd_base: 0.9375rem; } }
.pd_tg {
  padding: 5px;
  padding: var(--mgpd_tg); }

.pd_ss {
  padding: 10px;
  padding: var(--mgpd_ss); }

.pd_s {
  padding: 20px;
  padding: var(--mgpd_ss); }

.pd_m {
  padding: 35px;
  padding: var(--mgpd_m); }

.pd_l {
  padding: 110px;
  padding: var(--mgpd_l); }

.mg_tg {
  margin: 5px;
  margin: var(--mgpd_tg); }

.mg_ss {
  margin: 10px;
  margin: var(--mgpd_ss); }

.mg_s {
  margin: 20px;
  margin: var(--mgpd_s); }

.mg_m {
  margin: 35px;
  margin: var(--mgpd_m); }

.mg_l {
  margin: 110px;
  margin: var(--mgpd_l); }

.mb_tg {
  margin-bottom: 5px;
  margin-bottom: var(--mgpd_tg); }

.mb_ss {
  margin-bottom: 10px;
  margin-bottom: var(--mgpd_ss); }

.mb_s {
  margin-bottom: 20px;
  margin-bottom: var(--mgpd_s); }

.mb_m {
  margin-bottom: 35px;
  margin-bottom: var(--mgpd_m); }

.mb_l {
  margin-bottom: 110px;
  margin-bottom: var(--mgpd_l); }

.pb_tg {
  padding-bottom: 5px;
  padding-bottom: var(--mgpd_tg); }

.pb_ss {
  padding-bottom: 10px;
  padding-bottom: var(--mgpd_ss); }

.pb_s {
  padding-bottom: 20px;
  padding-bottom: var(--mgpd_s); }

.pb_m {
  padding-bottom: 35px;
  padding-bottom: var(--mgpd_m); }

.pb_l {
  padding-bottom: 110px;
  padding-bottom: var(--mgpd_l); }

.pv_tg {
  padding-bottom: 5px;
  padding-bottom: var(--mgpd_tg);
  padding-top: 5px;
  padding-top: var(--mgpd_tg); }

.pv_ss {
  padding-bottom: 10px;
  padding-bottom: var(--mgpd_ss);
  padding-top: 10px;
  padding-top: var(--mgpd_ss); }

.pv_s {
  padding-bottom: 20px;
  padding-bottom: var(--mgpd_s);
  padding-top: 20px;
  padding-top: var(--mgpd_s); }

.pv_m {
  padding-bottom: 35px;
  padding-bottom: var(--mgpd_m);
  padding-top: 35px;
  padding-top: var(--mgpd_m); }

.pv_l {
  padding-bottom: 110px;
  padding-bottom: var(--mgpd_l);
  padding-top: 110px;
  padding-top: var(--mgpd_l); }

/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
.gra {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff9200+0,ffe1a5+100 */
  background: #ff9200;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #ff9200 0%, #ffe1a5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #ff9200 0%, #ffe1a5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #ff9200 0%, #ffe1a5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9200', endColorstr='#ffe1a5',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */ }

.trans_l {
  -webkit-transition-duration: 1.2s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  transition-duration: 1.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s; }

.trans_m {
  -webkit-transition-duration: 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: .7s;
  animation-duration: .7s; }

.trans_s {
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s; }

input::placeholder, textarea::placeholder {
  color: #000000; }
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #000000; }
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #000000; }

/* Scss Document */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box; }

.menu-trigger {
  position: relative;
  width: 30px;
  height: 27px; }

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  border-radius: 1px; }

.black.menu-trigger span {
  background-color: #fff; }

.menu-trigger span:nth-of-type(1) {
  top: 0; }

.menu-trigger span:nth-of-type(2) {
  width: 66%;
  top: 13px;
  right: 0;
  left: auto; }

.menu-trigger span:nth-of-type(3) {
  width: 33%;
  bottom: 0;
  right: 0;
  left: auto; }

.menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 .75s forwards;
  animation: menu-bar01 .75s forwards; }

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(13px) rotate(45deg); }
  50% {
    -webkit-transform: translateY(13px) rotate(0); }
  100% {
    -webkit-transform: translateY(0) rotate(0); } }
@keyframes menu-bar01 {
  0% {
    transform: translateY(13px) rotate(45deg); }
  50% {
    transform: translateY(13px) rotate(0); }
  100% {
    transform: translateY(0) rotate(0); } }
.menu-trigger span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1; }

.menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar02 .75s forwards;
  animation: menu-bar02 .75s forwards; }

@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-13px) rotate(-45deg); }
  50% {
    -webkit-transform: translateY(-13px) rotate(0); }
  100% {
    -webkit-transform: translateY(0) rotate(0); } }
@keyframes menu-bar02 {
  0% {
    transform: translateY(-13px) rotate(-45deg); }
  50% {
    transform: translateY(-13px) rotate(0); }
  100% {
    transform: translateY(0) rotate(0); } }
.drawer-open .menu-trigger span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .75s forwards;
  animation: active-menu-bar01 .75s forwards; }

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0); }
  50% {
    -webkit-transform: translateY(13px) rotate(0); }
  100% {
    -webkit-transform: translateY(13px) rotate(45deg); } }
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0); }
  50% {
    transform: translateY(13px) rotate(0); }
  100% {
    transform: translateY(13px) rotate(45deg); } }
.drawer-open .menu-trigger span:nth-of-type(2) {
  opacity: 0; }

.drawer-open .menu-trigger span:nth-of-type(3) {
  width: 100%;
  -webkit-animation: active-menu-bar03 .75s forwards;
  animation: active-menu-bar03 .75s forwards; }

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0); }
  50% {
    -webkit-transform: translateY(-13px) rotate(0); }
  100% {
    -webkit-transform: translateY(-13px) rotate(-45deg); } }
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0); }
  50% {
    transform: translateY(-13px) rotate(0); }
  100% {
    transform: translateY(-13px) rotate(-45deg); } }
/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'],
[type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {
  box-shadow: 0 0 0;
  border: 1px solid #000; }

/******************************************
COMMON
******************************************/
:root {
  --s_base: 128;
  --ss_base: 72;
  --w_base: 750;
  --w_over: 1.2384; }

.grecaptcha-badge {
  visibility: hidden; }

html, body {
  height: 100%; }

body {
  font-family: "Noto Sans JP", "Yu Gothic", 游ゴシック体, YuGothic, "游ゴシック", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  font-feature-settings: "palt";
  letter-spacing: .02rem;
  line-height: 1.8;
  overflow-x: hidden; }
  @media only screen and (min-width: 640px) {
    body {
      font-size: 16px;
      font-size: 1rem; } }
  body a, body button {
    color: #000000;
    -webkit-transition-duration: 0.7s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; }
    body a:hover, body button:hover {
      color: black; }
    body a:focus, body button:focus {
      color: black; }
  body button {
    cursor: pointer; }

*:focus {
  outline: none; }

i {
  padding-right: 5px;
  padding-right: var(--mgpd_tg); }

strong {
  font-weight: bold; }

img {
  width: 100%; }

ul {
  margin: 0; }

p, .p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 20px;
  margin-bottom: var(--mgpd_s); }
  @media only screen and (min-width: 640px) {
    p, .p {
      font-size: 16px;
      font-size: 1rem; } }

h1, .h1 {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  font-weight: bold;
  line-height: 1.6; }
  @media only screen and (min-width: 640px) {
    h1, .h1 {
      font-size: 56px;
      font-size: 3.5rem; } }

h2, .h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 0; }
  @media only screen and (min-width: 640px) {
    h2, .h2 {
      font-size: 40px;
      font-size: 2.5rem; } }

h3, .h3 {
  font-size: 18px;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 0; }
  @media only screen and (min-width: 640px) {
    h3, .h3 {
      font-size: 24px;
      font-size: 1.5rem; } }

h4, .h4 {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 2px; }
  @media only screen and (min-width: 640px) {
    h4, .h4 {
      font-size: 16px;
      font-size: 1rem; } }

h5, .h5 {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px; }
  @media only screen and (min-width: 640px) {
    h5, .h5 {
      font-size: 16px;
      font-size: 1rem; } }

.titleXY {
  line-height: 1.8;
  letter-spacing: 0.1rem; }

.titleY {
  line-height: 1.8; }

.lp_up {
  letter-spacing: 0.4rem;
  text-indent: 0.4rem; }

.lp_down {
  letter-spacing: -0.1rem;
  text-indent: -0.1rem; }

.pc_only {
  display: none; }

.tb_only {
  display: none; }

.sp_only {
  display: block; }

.pctb_only {
  display: none; }

.sptb_only {
  display: block; }

.none {
  display: none; }

.o_hidden {
  overflow: hidden; }

.m_auto {
  margin: 0 auto; }

.m_none {
  margin: 0; }

.i_block {
  display: inline-block; }

.hover {
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s; }
  .hover:hover {
    color: #ff9200; }

.border_b {
  border-bottom: 1px solid #f1f1f1; }

.border_gray {
  border-bottom: 1px solid #cccccc; }

.w100 {
  width: 100%; }

.pointer {
  cursor: pointer; }

.text_ss {
  font-size: 10px;
  font-size: 0.625rem; }
  @media only screen and (min-width: 640px) {
    .text_ss {
      font-size: 12px;
      font-size: 0.75rem; } }

.text_s {
  font-size: 12px;
  font-size: 0.75rem; }
  @media only screen and (min-width: 640px) {
    .text_s {
      font-size: 14px;
      font-size: 0.875rem; } }

.text_m {
  font-size: 14px;
  font-size: 0.875rem; }
  @media only screen and (min-width: 640px) {
    .text_m {
      font-size: 16px;
      font-size: 1rem; } }

.text_l {
  font-size: 18px;
  font-size: 1.0625rem; }
  @media only screen and (min-width: 640px) {
    .text_l {
      font-size: 24px;
      font-size: 1.5rem; } }

.text_xl {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold; }
  @media only screen and (min-width: 640px) {
    .text_xl {
      font-size: 56px;
      font-size: 3.5rem; } }

.sp_text_ss {
  font-size: 10px;
  font-size: 0.625rem; }
  @media only screen and (min-width: 640px) {
    .sp_text_ss {
      font-size: 12px;
      font-size: 0.75rem; } }

.sp_text_s {
  font-size: 12px;
  font-size: 0.75rem; }
  @media only screen and (min-width: 640px) {
    .sp_text_s {
      font-size: 14px;
      font-size: 0.875rem; } }

.sp_text_m {
  font-size: 14px;
  font-size: 0.875rem; }
  @media only screen and (min-width: 640px) {
    .sp_text_m {
      font-size: 16px;
      font-size: 1rem; } }

.sp_text_l {
  font-size: 18px;
  font-size: 1.0625rem; }
  @media only screen and (min-width: 640px) {
    .sp_text_l {
      font-size: 24px;
      font-size: 1.5rem; } }

.sp_text_xl {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold; }
  @media only screen and (min-width: 640px) {
    .sp_text_xl {
      font-size: 56px;
      font-size: 3.5rem; } }

.text_white {
  color: #fff !important; }

.text_bold {
  font-weight: bold !important; }

.text_center {
  text-align: center; }

.text_left {
  text-align: left; }

.text_right {
  text-align: right; }

.text_normal {
  font-weight: normal; }

.text_v {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl; }

.text_E {
  font-family: 'Poppins', sans-serif; }

.text_primary {
  color: #ff9200; }

.bg_primary {
  background-color: #ff9200; }

.bg_light_gray {
  background-color: #f1f1f1; }

.bg_gray {
  background-color: #cccccc; }

.bg_black {
  background-color: #000; }

.bg_white {
  background-color: #fff; }

.flex_center {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center; }

.sp_text_ss {
  font-size: 10px;
  font-size: 0.625rem; }
  @media only screen and (min-width: 640px) {
    .sp_text_ss {
      font-size: 12px;
      font-size: 0.75rem; } }

.sp_text_s {
  font-size: 12px;
  font-size: 0.75rem; }
  @media only screen and (min-width: 640px) {
    .sp_text_s {
      font-size: 14px;
      font-size: 0.875rem; } }

.sp_text_m {
  font-size: 14px;
  font-size: 0.875rem; }
  @media only screen and (min-width: 640px) {
    .sp_text_m {
      font-size: 16px;
      font-size: 1rem; } }

.sp_text_2l {
  font-size: 18px;
  font-size: 1.0625rem; }
  @media only screen and (min-width: 640px) {
    .sp_text_2l {
      font-size: 24px;
      font-size: 1.5rem; } }

.sp_text_xl {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold; }
  @media only screen and (min-width: 640px) {
    .sp_text_xl {
      font-size: 56px;
      font-size: 3.5rem; } }

.sp_text_center {
  text-align: center; }

.sp_text_left {
  text-align: left; }

.sp_text_right {
  text-align: right; }

.sp_text_normal {
  font-weight: normal; }

.btn_more {
  width: 120px;
  height: 50px;
  border: 1px solid #000;
  text-align: center;
  margin: 0 auto;
  vertical-align: middle;
  background-color: #f1f1f1; }
  .btn_more p {
    margin: 0;
    position: relative;
    letter-spacing: 0.2rem;
    transform: translateX(18px); }
    .btn_more p:before {
      -webkit-transition-duration: 0.4s;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
      -webkit-animation-duration: 0.4s;
      animation-duration: 0.4s;
      transition-duration: 0.4s;
      transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
      -webkit-animation-duration: 0.4s;
      animation-duration: 0.4s;
      display: inline-block;
      position: absolute;
      top: -16px;
      left: -50px;
      content: "";
      width: 50px;
      height: 50px;
      background-image: url(../images/icon_arrow.svg); }
  .btn_more:hover P:before {
    left: -44px; }

.btn_more_sp {
  width: 30px;
  height: auto;
  border: none;
  background-color: transparent;
  display: inline-block;
  margin-right: 0;
  transform: translateX(-20px); }

/******************************************
PAGE
******************************************/
body .menu_btn_wrap {
  position: fixed;
  padding: 0.625rem;
  padding: var(--pd_base); }
body .drawer-nav {
  background-color: #000 !important;
  z-index: 200;
  padding: 20px;
  padding-top: 1.625rem; }
  body .drawer-nav .drawer-menu li {
    margin-bottom: 1.625rem;
    padding-bottom: .625rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    body .drawer-nav .drawer-menu li a {
      color: #fff; }

.menu_pc {
  position: absolute;
  top: 0;
  right: 0.625rem;
  right: var(--pd_base);
  z-index: 1000;
  padding-top: 50px; }
  .menu_pc .title_border:before {
    height: 18px; }
  .menu_pc .title_border:hover:before, .menu_pc .title_border.current:before {
    transform: rotate(0); }
  .menu_pc.menu_fixed {
    position: fixed;
    bottom: auto;
    top: 0; }

.home .menu_pc {
  top: auto;
  bottom: 35px;
  bottom: var(--mgpd_m);
  padding-top: 50px; }
  .home .menu_pc.menu_fixed {
    position: fixed;
    bottom: auto;
    top: 0; }

.transPageWrap {
  overflow: hidden;
  height: 100%;
  position: fixed;
  z-index: 1000;
  pointer-events: none;
  width: 100%; }
  .transPageWrap .transBg_wrap {
    transform: rotate(20deg) scale(2);
    position: absolute;
    width: 100%;
    height: 100%; }
  .transPageWrap .transBg {
    width: 50%;
    height: 100%;
    -webkit-transition-duration: 1.2s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    transition-duration: 1.2s;
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    position: absolute;
    top: 0;
    background-color: #000; }
    .transPageWrap .transBg.transBgTop {
      transform-origin: right;
      left: calc(50% - 2px); }
    .transPageWrap .transBg.transBgBottom {
      transform-origin: left;
      left: 0%; }
  .transPageWrap.opend .transBg.transBgTop {
    transform: scaleX(0); }
  .transPageWrap.opend .transBg.transBgBottom {
    transform: scaleX(0); }
  .transPageWrap.opend .trans_icon {
    display: none; }
  .transPageWrap .trans_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    transform: translate(-50%, -50%); }
    .transPageWrap .trans_icon:after {
      position: absolute;
      width: 235px;
      height: 104px;
      content: "";
      display: inline-block;
      background-color: #000;
      top: 0;
      left: 0;
      transform: scaleX(0);
      transform-origin: left;
      -webkit-transition-duration: 0.7s;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
      -webkit-animation-duration: .7s;
      animation-duration: .7s;
      transition-duration: 0.7s;
      transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
      -webkit-animation-duration: .7s;
      animation-duration: .7s;
      transition-delay: 1.1s; }
    .transPageWrap .trans_icon .trans_text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(calc(-50% - 10px), -50%);
      -webkit-transition-duration: 1.2s;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
      -webkit-animation-duration: 1.2s;
      animation-duration: 1.2s;
      transition-duration: 1.2s;
      transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
      -webkit-animation-duration: 1.2s;
      animation-duration: 1.2s;
      opacity: 0; }
    .transPageWrap .trans_icon.trans_icon_active:after {
      transform: scaleX(1); }
    .transPageWrap .trans_icon.trans_icon_active .trans_text {
      transform: translate(-50%, -50%);
      opacity: 1; }
      .transPageWrap .trans_icon.trans_icon_active .trans_text img {
        margin-top: -10px;
        width: 60%; }
    .transPageWrap .trans_icon.trans_icon_active svg {
      stroke-width: 2;
      stroke: #fff;
      fill: transparent;
      stroke-dasharray: 670;
      stroke-dashoffset: 670;
      animation: box_anim 1s cubic-bezier(0.5, 0, 0, 1) alternate forwards;
      -webkit-animation: box_anim 1s cubic-bezier(0.5, 0, 0, 1) 0s forwards;
      animation: box_anim 1s cubic-bezier(0.5, 0, 0, 1) 0s forwards; }
@keyframes box_anim {
  0% {
    stroke-dashoffset: 670;
    fill: transparent; }
  100% {
    stroke-dashoffset: 0;
    fill: transparent; } }
  .transPageWrap .borderWrap {
    transform: rotate(20deg);
    position: absolute; }
    .transPageWrap .borderWrap.borderWrap01 {
      transform-origin: top;
      top: 50px;
      left: 30px; }
    .transPageWrap .borderWrap.borderWrap02 {
      transform-origin: top;
      top: 0px;
      left: 60px; }
    .transPageWrap .borderWrap.borderWrap03 {
      transform-origin: bottom;
      bottom: 0px;
      right: 60px; }
    .transPageWrap .borderWrap.borderWrap04 {
      transform-origin: bottom;
      bottom: 50px;
      right: 30px; }
    .transPageWrap .borderWrap.border_active .trans_border {
      width: 1px;
      background-color: #fff;
      animation-duration: 1.6s;
      animation-timing-function: cubic-bezier(0.5, 0, 0, 1);
      animation-fill-mode: forwards; }
      .transPageWrap .borderWrap.border_active .trans_border.border01 {
        height: 100px;
        animation-name: border01; }
      .transPageWrap .borderWrap.border_active .trans_border.border02 {
        height: 180px;
        animation-name: border02; }
      .transPageWrap .borderWrap.border_active .trans_border.border03 {
        height: 180px;
        animation-name: border03; }
      .transPageWrap .borderWrap.border_active .trans_border.border04 {
        height: 100px;
        animation-name: border04; }

@keyframes border01 {
  0% {
    transform: rotate(0deg) scaleY(0);
    transform-origin: bottom; }
  30% {
    transform: rotate(0deg) scaleY(1);
    transform-origin: bottom; }
  70% {
    transform: rotate(0deg) scaleY(1);
    transform-origin: top; }
  100% {
    transform: rotate(0deg) scaleY(0);
    transform-origin: top; } }
@keyframes border02 {
  0% {
    transform: rotate(0deg) scaleY(0);
    transform-origin: top; }
  30% {
    transform: rotate(0deg) scaleY(1);
    transform-origin: top; }
  70% {
    transform: rotate(0deg) scaleY(1);
    transform-origin: bottom; }
  100% {
    transform: rotate(0deg) scaleY(0);
    transform-origin: bottom; } }
@keyframes border03 {
  0% {
    transform: rotate(0deg) scaleY(0);
    transform-origin: bottom; }
  30% {
    transform: rotate(0deg) scaleY(1);
    transform-origin: bottom; }
  70% {
    transform: rotate(0deg) scaleY(1);
    transform-origin: top; }
  100% {
    transform: rotate(0deg) scaleY(0);
    transform-origin: top; } }
@keyframes border04 {
  0% {
    transform: rotate(0deg) scaleY(0);
    transform-origin: top; }
  30% {
    transform: rotate(0deg) scaleY(1);
    transform-origin: top; }
  70% {
    transform: rotate(0deg) scaleY(1);
    transform-origin: bottom; }
  100% {
    transform: rotate(0deg) scaleY(0);
    transform-origin: bottom; } }
#pageWrap {
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 60px;
  min-height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between; }

.secWrap {
  padding: 110px 0;
  padding: var(--mgpd_l) 0; }

.secTitle {
  margin-bottom: 20px;
  margin-bottom: var(--mgpd_s);
  text-align: left;
  position: relative; }

.title_border {
  position: relative; }
  .title_border:before {
    -webkit-transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    position: absolute;
    content: "";
    display: inline-block;
    width: 1px;
    height: 24px;
    background-color: #000;
    transform: rotate(20deg);
    top: -30px;
    left: 20px; }

footer a {
  color: #fff;
  @incrude text_s; }
  footer a:hover {
    color: #fff; }
footer .footer_logo {
  width: 120px;
  margin: 0 auto 20px; }
footer .sns_wrap li {
  display: inline-block;
  padding: 0 35px;
  padding: 0 var(--mgpd_m); }
  footer .sns_wrap li .icon--ei-sc-instagram {
    fill: #fff; }

/******************************************
TOP_PAGE
******************************************/
#main {
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  width: 100%; }

.top_main {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%; }
  .top_main .top_main_img {
    width: 450px;
    max-width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    -webkit-transition-duration: 1.2s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    transition-duration: 1.2s;
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s; }
    .top_main .top_main_img.in {
      transform: translate(-50%, -50%) scale(1); }
  .top_main .top_head_list {
    position: absolute;
    top: 35px;
    top: var(--mgpd_m);
    right: 35px;
    right: var(--mgpd_m); }
    .top_main .top_head_list li {
      width: 34px;
      display: inline-block; }
      .top_main .top_head_list li:first-child {
        margin-right: 10px; }
  .top_main .scroll_lineWrap {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .top_main .scroll_line {
    font-family: 'Lato', sans-serif;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    padding-bottom: 125px;
    font-size: 12px;
    letter-spacing: 0.2em;
    transition: all .3s;
    transform: translateX(-50%); }
  .top_main .top_main_text_r {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%); }

#top_concept .title_border:before {
  left: 50%; }

.scroll_line::after {
  transform: translateY(-20px);
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 11px;
  width: 1px;
  background-color: #000;
  animation-name: lineMove;
  animation-duration: 4s;
  animation-timing-function: ease;
  animation-iteration-count: infinite; }

@keyframes lineMove {
  0% {
    bottom: 90px;
    height: 0; }
  20% {
    bottom: 0;
    height: 90px; }
  40% {
    bottom: 0;
    height: 0; }
  100% {
    bottom: 0;
    height: 0; } }
#top_concept, #top_news, #top_works {
  position: relative; }

.bg_box_wrap {
  position: absolute;
  z-index: -1;
  width: 158px;
  height: 80px; }
  .bg_box_wrap.bg_box_wrap01 {
    top: 200px;
    right: 40px;
    left: auto; }
  .bg_box_wrap.bg_box_wrap02 {
    top: 20px;
    left: 40%; }
  .bg_box_wrap.bg_box_wrap03 {
    bottom: 20px;
    left: 50%; }
  .bg_box_wrap.bg_box_wrap04 {
    bottom: 20px;
    right: 20px;
    left: auto; }
  .bg_box_wrap.bg_box_wrap05 {
    top: 100px;
    left: 200px; }
  .bg_box_wrap.bg_box_wrap06 {
    bottom: -50px;
    left: 20px; }
  .bg_box_wrap.bg_box_wrap07 {
    right: 0px;
    left: auto;
    overflow-x: hidden;
    padding: 300px 0;
    box-sizing: content-box; }
  .bg_box_wrap.bg_box_wrap08 {
    top: 0;
    left: -15%; }
  .bg_box_wrap.bg_box_wrap09 {
    top: -30%;
    right: 33%;
    left: auto; }
  .bg_box_wrap.bg_box_wrap10 {
    top: 0;
    right: 0;
    left: auto;
    overflow-x: hidden;
    padding: 300px 0;
    box-sizing: content-box; }
  .bg_box_wrap.bg_box_wrap11 {
    bottom: -26%;
    left: 5%; }
  .bg_box_wrap.bg_box_wrap12 {
    bottom: -28%;
    right: 0px;
    left: auto;
    overflow-x: hidden;
    padding: 300px 0;
    box-sizing: content-box; }

.bg_box {
  width: 100%;
  height: 100%;
  background: url(../images/bg_box.png) center center/cover; }
  .bg_box.bg_box01 {
    width: 120%;
    height: 120%; }
  .bg_box.bg_box02 {
    width: 140%;
    height: 140%; }
  .bg_box.bg_box03 {
    width: 80%;
    height: 80%; }
  .bg_box.bg_box04 {
    width: 60%;
    height: 60%; }
  .bg_box.bg_box05 {
    width: 140%;
    height: 140%; }
  .bg_box.bg_box06 {
    width: 80%;
    height: 80%; }
  .bg_box.bg_box07 {
    width: 150%;
    height: 150%;
    transform: translateX(50px); }
  .bg_box.bg_box08 {
    width: 130%;
    height: 130%; }
  .bg_box.bg_box09 {
    width: 150%;
    height: 150%; }
  .bg_box.bg_box10 {
    width: 100%;
    height: 100%;
    transform: translateX(-130px); }
  .bg_box.bg_box11 {
    width: 150%;
    height: 150%; }
  .bg_box.bg_box12 {
    width: 160%;
    height: 160%;
    transform: translateX(80px); }

#homeWrap {
  overflow: hidden; }

.newsWrap {
  padding: 35px 0.625rem;
  padding: var(--mgpd_m) var(--pd_base);
  border: 1px solid #000; }
  .newsWrap .news_day {
    margin-right: 20px;
    margin-right: var(--mgpd_s); }

.top_works_list {
  overflow: hidden;
  position: relative; }
  .top_works_list:before {
    content: "";
    display: block;
    padding-top: 56.25%; }
  .top_works_list .top_works_list_img {
    -webkit-transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0%;
    background-position: center center;
    background-size: cover;
    margin-right: 1px; }

/******************************************
ABOUT_PAGE
******************************************/
iframe {
  width: 100%;
  height: 400px; }

/******************************************
ABOUT_PAGE
******************************************/
.submitWrap {
  position: relative;
  text-align: center;
  cursor: pointer;
  margin: 0 auto;
  width: 120px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #000;
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s; }
  .submitWrap input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    max-width: 220px;
    height: 100%;
    z-index: 10;
    cursor: pointer; }
  .submitWrap .btn_m {
    padding: 6px 40px;
    position: relative;
    width: 100%;
    max-width: 220px;
    text-align: center;
    background-color: transparent; }
    .submitWrap .btn_m img {
      width: 34px; }
  .submitWrap:hover {
    background-color: #f1f1f1; }

/*==============================================================
WORKS
===============================================================*/
.works_list_wrap {
  padding: 0 0.625rem;
  padding: 0 var(--pd_base); }
  .works_list_wrap .works_list {
    padding-right: 0; }
    .works_list_wrap .works_list .works_text_wrap {
      margin-bottom: calc(2 * $pd_base);
      margin-bottom: calc(2 * var(--pd_base)); }
    .works_list_wrap .works_list:hover .works_img {
      transform: scale(1.1); }
    .works_list_wrap .works_list:hover .btn_more {
      opacity: 1;
      transform: translate(-50%, calc(-50%)); }

.works_img_wrap {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 56.25%; }
  .works_img_wrap .works_img_inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden; }
  .works_img_wrap .works_img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    -webkit-transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s; }
  .works_img_wrap .btn_more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 10px));
    border-color: #fff;
    color: #fff;
    background-color: transparent;
    opacity: 0;
    -webkit-transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s; }
    .works_img_wrap .btn_more p:before {
      background-image: url(../images/icon_arrow_wh.svg); }

.slider_main .main_item {
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  opacity: .3; }
  .slider_main .main_item.slick-active {
    opacity: 1; }

/*==============================================================
single
===============================================================*/
#singleWrap {
  padding-top: 50px; }
  #singleWrap .main_item {
    padding: 0 calc(.5 * $pd_base);
    padding: 0 2px;
    width: 100%; }
    #singleWrap .main_item .main_img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover; }
  #singleWrap p {
    margin-bottom: 0; }
  #singleWrap .single_movie_wrap {
    position: relative;
    margin-bottom: 35px;
    margin-bottom: var(--mgpd_m);
    aspect-ratio: 16/9; }
    #singleWrap .single_movie_wrap iframe {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0%; }
  #singleWrap .single_slide.grid-container {
    padding: 0;
    opacity: 0;
    -webkit-transition-duration: 1.2s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    transition-duration: 1.2s;
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    transition-delay: .6s; }
    #singleWrap .single_slide.grid-container.slide_in {
      opacity: 1; }
  #singleWrap .slick-dotted.slick-slider {
    margin-bottom: 110px;
    margin-bottom: var(--mgpd_l); }
  #singleWrap .slick-dots {
    bottom: -60px;
    margin-bottom: 35px;
    margin-bottom: var(--mgpd_m); }
    #singleWrap .slick-dots li button::before {
      width: 1px;
      height: 20px;
      content: "";
      background-color: #000;
      border-radius: 50px;
      transform: rotate(20deg) translate(10px, -4px); }

.single_title_wrap h1 {
  line-height: 1; }
.single_title_wrap ul li:after {
  display: inline-block;
  content: "/";
  padding: 0 4px; }
.single_title_wrap ul li:last-child:after {
  content: ""; }

/*==============================================================
CONTACT RECRUIT PAGE
===============================================================*/
.page div.wpcf7 .ajax-loader {
  display: none !important; }
.page .wpcf7-response-output {
  color: #000 !important;
  border: 1px solid #000 !important; }
.page div.wpcf7-validation-errors, .page div.wpcf7-acceptance-missing {
  border: 1px solid #000 !important;
  color: #000 !important;
  font-size: 12px;
  font-size: 0.75rem; }
  @media only screen and (min-width: 640px) {
    .page div.wpcf7-validation-errors, .page div.wpcf7-acceptance-missing {
      font-size: 14px;
      font-size: 0.875rem; } }

.reel_head_img {
  position: relative;
  width: 100%;
  padding-top: 38%;
  background-position: center;
  background-size: cover; }
  .reel_head_img:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    background: white;
    background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%); }

.youtube_wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  box-shadow: 0 6px  12px 0px  #c0bfd7; }
  .youtube_wrap iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important; }

.reel_content {
  /*margin-top: -30px;*/ }

#reel .grid-container.reel_wrap {
  padding: 0; }

@media only screen and (min-width: 640px) {
  /******************************************
  COMMON
  ******************************************/
  body {
    line-height: 1.8;
    letter-spacing: .05rem; }

  .pc_only {
    display: none; }

  .tb_only {
    display: block; }

  .sp_only {
    display: none; }

  .pctb_only {
    display: block; }

  .sptb_only {
    display: block; }

  .text_ss {
    font-size: 10px;
    font-size: 0.625rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .text_ss {
      font-size: 12px;
      font-size: 0.75rem; } }

@media only screen and (min-width: 640px) {
  .text_s {
    font-size: 12px;
    font-size: 0.75rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .text_s {
      font-size: 14px;
      font-size: 0.875rem; } }

@media only screen and (min-width: 640px) {
  .text_m {
    font-size: 14px;
    font-size: 0.875rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .text_m {
      font-size: 16px;
      font-size: 1rem; } }

@media only screen and (min-width: 640px) {
  .text_l {
    font-size: 18px;
    font-size: 1.0625rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .text_l {
      font-size: 24px;
      font-size: 1.5rem; } }

@media only screen and (min-width: 640px) {
  .text_2l {
    font-size: 24px;
    font-size: 1.5rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .text_2l {
      font-size: 40px;
      font-size: 2.5rem; } }

@media only screen and (min-width: 640px) {
  .text_xl {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: bold; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .text_xl {
      font-size: 56px;
      font-size: 3.5rem; } }

@media only screen and (min-width: 640px) {
  .tb_text_ss {
    font-size: 10px;
    font-size: 0.625rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .tb_text_ss {
      font-size: 12px;
      font-size: 0.75rem; } }

@media only screen and (min-width: 640px) {
  .tb_text_s {
    font-size: 12px;
    font-size: 0.75rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .tb_text_s {
      font-size: 14px;
      font-size: 0.875rem; } }

@media only screen and (min-width: 640px) {
  .tb_text_m {
    font-size: 14px;
    font-size: 0.875rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .tb_text_m {
      font-size: 16px;
      font-size: 1rem; } }

@media only screen and (min-width: 640px) {
  .tb_text_l {
    font-size: 18px;
    font-size: 1.0625rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .tb_text_l {
      font-size: 24px;
      font-size: 1.5rem; } }

@media only screen and (min-width: 640px) {
  .tb_text_2l {
    font-size: 24px;
    font-size: 1.5rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .tb_text_2l {
      font-size: 40px;
      font-size: 2.5rem; } }

@media only screen and (min-width: 640px) {
  .tb_text_xl {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: bold; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .tb_text_xl {
      font-size: 56px;
      font-size: 3.5rem; } }

@media only screen and (min-width: 640px) {
  .tb_text_center {
    text-align: center; }

  .tb_text_left {
    text-align: left; }

  .tb_text_right {
    text-align: right; }

  .tb_text_normal {
    font-weight: normal; }

  .readText p {
    line-height: 2.3; }

  .listText p {
    line-height: 1.8;
    letter-spacing: .05rem; }

  .btn_m {
    font-size: 14px;
    font-size: 0.875rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .btn_m {
      font-size: 16px;
      font-size: 1rem; } }

@media only screen and (min-width: 640px) {
  /******************************************
  PAGE
  ******************************************/
  .secTitle {
    margin-bottom: 0;
    text-align: center; }

  .title_border:before {
    height: 24px;
    top: -20px;
    left: 50%; }

  footer .footer_logo {
    width: 140px; }

  /******************************************
  TOP_PAGE
  ******************************************/
  .top_main .top_main_img {
    width: 700px;
    max-width: 50%; }

  /******************************************
  WORKS_PAGE
  ******************************************/
  .works_list_wrap {
    margin: 0 auto;
    width: min(85.7143%, 1200px * var(--w_over)); }
    .works_list_wrap .works_list {
      padding-right: 1px; }
      .works_list_wrap .works_list:nth-child(even) {
        padding-right: 0; }
      .works_list_wrap .works_list h2 {
        padding-right: 8px;
        font-size: 14px; }

  /******************************************
  WORKS_PAGE
  ******************************************/
  .single_head {
    overflow: hidden; }

  .single_img_wrap.single_left_wrap {
    padding-top: calc( 360px + 10% ); }
  .single_img_wrap.single_right_wrap {
    width: 75%; }
    .single_img_wrap.single_right_wrap .single_img_inner_clip {
      padding-top: calc( 400px + 5% ); }

  .single_head_text h1 {
    font-size: 18px;
    font-size: 1.0625rem; } }
  @media only screen and (min-width: 640px) and (min-width: 640px) {
    .single_head_text h1 {
      font-size: 24px;
      font-size: 1.5rem; } }

@media only screen and (min-width: 640px) {
  .reel_head_img {
    padding-top: 42%; }

  .reel_content {
    /*margin-top: -140px;*/ } }
@media only screen and (min-width: 1024px) {
  /******************************************
  COMMON
  ******************************************/
  .pc_only {
    display: block; }

  .tb_only {
    display: none; }

  .sp_only {
    display: none; }

  .pctb_only {
    display: block; }

  .sptb_only {
    display: none; }

  .text_ss {
    font-size: 10px;
    font-size: 0.625rem; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .text_ss {
      font-size: 12px;
      font-size: 0.75rem; } }

@media only screen and (min-width: 1024px) {
  .text_s {
    font-size: 12px;
    font-size: 0.75rem; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .text_s {
      font-size: 14px;
      font-size: 0.875rem; } }

@media only screen and (min-width: 1024px) {
  .text_m {
    font-size: 14px;
    font-size: 0.875rem; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .text_m {
      font-size: 16px;
      font-size: 1rem; } }

@media only screen and (min-width: 1024px) {
  .text_l {
    font-size: 18px;
    font-size: 1.0625rem; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .text_l {
      font-size: 24px;
      font-size: 1.5rem; } }

@media only screen and (min-width: 1024px) {
  .text_2l {
    font-size: 24px;
    font-size: 1.5rem; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .text_2l {
      font-size: 40px;
      font-size: 2.5rem; } }

@media only screen and (min-width: 1024px) {
  .text_xl {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: bold; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .text_xl {
      font-size: 56px;
      font-size: 3.5rem; } }

@media only screen and (min-width: 1024px) {
  .pc_text_ss {
    font-size: 10px;
    font-size: 0.625rem; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .pc_text_ss {
      font-size: 12px;
      font-size: 0.75rem; } }

@media only screen and (min-width: 1024px) {
  .pc_text_s {
    font-size: 12px;
    font-size: 0.75rem; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .pc_text_s {
      font-size: 14px;
      font-size: 0.875rem; } }

@media only screen and (min-width: 1024px) {
  .pc_text_m {
    font-size: 14px;
    font-size: 0.875rem; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .pc_text_m {
      font-size: 16px;
      font-size: 1rem; } }

@media only screen and (min-width: 1024px) {
  .pc_text_l {
    font-size: 18px;
    font-size: 1.0625rem; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .pc_text_l {
      font-size: 24px;
      font-size: 1.5rem; } }

@media only screen and (min-width: 1024px) {
  .pc_text_2l {
    font-size: 24px;
    font-size: 1.5rem; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .pc_text_2l {
      font-size: 40px;
      font-size: 2.5rem; } }

@media only screen and (min-width: 1024px) {
  .pc_text_xl {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: bold; } }
  @media only screen and (min-width: 1024px) and (min-width: 640px) {
    .pc_text_xl {
      font-size: 56px;
      font-size: 3.5rem; } }

@media only screen and (min-width: 1024px) {
  .pc_text_center {
    text-align: center; }

  .pc_text_left {
    text-align: left; }

  .pc_text_right {
    text-align: right; }

  .pc_text_normal {
    font-weight: normal; }

  .btn_m i {
    position: absolute;
    display: block;
    opacity: 0;
    transform: translate(-20px, 6px);
    -webkit-transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s; }
  .btn_m:hover i {
    opacity: 1;
    transform: translate(-14px, 6px); }

  .transPageWrap .borderWrap.borderWrap01 {
    top: 50px;
    left: 100px; }
  .transPageWrap .borderWrap.borderWrap02 {
    top: 0px;
    left: 200px; }
  .transPageWrap .borderWrap.borderWrap03 {
    bottom: 0px;
    right: 200px; }
  .transPageWrap .borderWrap.borderWrap04 {
    bottom: 50px;
    right: 100px; }
  .transPageWrap .borderWrap.border_active .trans_border.border01 {
    height: 300px; }
  .transPageWrap .borderWrap.border_active .trans_border.border02 {
    height: 600px; }
  .transPageWrap .borderWrap.border_active .trans_border.border03 {
    height: 600px; }
  .transPageWrap .borderWrap.border_active .trans_border.border04 {
    height: 300px; }

  .bg_box_wrap {
    position: absolute;
    width: 368px;
    width: calc(13.75rem + ((1vw - 10.24px) * 16.5179));
    max-width: 368px;
    height: 188px;
    height: calc(7rem + ((1vw - 10.24px) * 8.4821));
    max-height: 188px; }

  /******************************************
  PAGE
  ******************************************/
  .top_main .top_main_img {
    width: 820px; }
  .top_main .scroll_lineWrap {
    position: fixed;
    top: 65%;
    left: 35px;
    left: var(--mgpd_m);
    transform: translate(0, -50%); }

  #pageWrap {
    padding-top: 140px; }

  /******************************************
  TOP_PAGE
  ******************************************/
  .newsWrap {
    padding: 20px;
    padding: var(--mgpd_s); }

  .top_works_list {
    width: calc(33.33333% - 1px) !important;
    margin-right: 1px; }
    .top_works_list:hover .top_works_list_img {
      transform: scale(1.1);
      opacity: 1; }
    .top_works_list .works_list_img {
      opacity: .6; }

  /******************************************
  TOP_PAGE
  ******************************************/
  .works_list_wrap .works_list:nth-child(even) {
    padding-right: 1px; }
  .works_list_wrap .works_list:nth-child(3n) {
    padding-right: 0; } }
@media only screen and (min-width: 1024px) and (min-width: 1280px) {
  .grid-x.works_list_wrap .large-4 {
    width: 25%; } }
@media only screen and (min-width: 1024px) {
  /*==============================================================
  single
  ===============================================================*/
  #singleWrap {
    padding-top: 90px; }
    #singleWrap .main_item {
      padding: 0 calc(.5 * $pd_base);
      padding: 0 calc(.5 * var(--pd_base)); }
    #singleWrap .slick-dotted.slick-slider {
      margin-bottom: 80px; }
    #singleWrap .single_slide.grid-container {
      padding: 0  0.9375rem; }
    #singleWrap .slick-dots {
      bottom: -80px; } }

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