@charset "UTF-8";
/*color*/
/*opacity*/
/*anim*/
/*size*/
/*
$m1:4%;// 15px
$m1_5:$m1 * 1.5;// 22.5px
$m2:$m1 * 2;// 30px
$m3: $m1 * 3;// 45px
$m4: $m1 * 4;// 60px
*/
/*============================
mixin
============================*/
/*
* keyframes animationの定義
* ※_anim.scssに定義
*/
/*
* keyframesで定義したkeyframes animationの設定
* @include animation(animation_name $time linear infinite);
*/
/*
* css animationの時間とeasing指定
*/
/*
* position:absoluteで縦横中央ぞろえ
*/
/*
* 左右に均等のマージンをとった幅指定
*/
/*============================
easing
============================*/
@-webkit-keyframes menu {
  0% {
    -webkit-transform: translate(0, -0.2em);
    -moz-transform: translate(0, -0.2em);
    -ms-transform: translate(0, -0.2em);
    -o-transform: translate(0, -0.2em);
    transform: translate(0, -0.2em);
  }

  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-moz-keyframes menu {
  0% {
    -webkit-transform: translate(0, -0.2em);
    -moz-transform: translate(0, -0.2em);
    -ms-transform: translate(0, -0.2em);
    -o-transform: translate(0, -0.2em);
    transform: translate(0, -0.2em);
  }

  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes menu {
  0% {
    -webkit-transform: translate(0, -0.2em);
    -moz-transform: translate(0, -0.2em);
    -ms-transform: translate(0, -0.2em);
    -o-transform: translate(0, -0.2em);
    transform: translate(0, -0.2em);
  }

  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes ani_h_t_100 {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes stanTop {
  0% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeInOutIn {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes rotate_right {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes horizontal {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-10px);
  }
}

@keyframes vertical {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(10px);
  }
}

@keyframes bgSlider {
  0% {
    background-position: 0% 15px;
  }

  100% {
    background-position: 1280px 15px;
  }

  /* 1518pxとは使用した背景画像の長さ */
}

@keyframes bgSliderIntro {
  0% {
    background-position: 0 bottom;
  }

  100% {
    background-position: 1280px bottom;
  }

  /* 1518pxとは使用した背景画像の長さ */
}

@-webkit-keyframes scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@-moz-keyframes scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/*guide 
body{
	background: url(../img/_guide.jpg) no-repeat top center;
	background-size: 100% auto;
	background-position: 0px -290px;
	#header{
		@include opacity(0.6);
	}
	#wrapper{
		@include opacity(0.6);
	}
	#footer{
		@include opacity(0.6);
	}
}
*/
@media screen and (min-width: 769px) {
  body {
    overflow-y: scroll;
  }
  body .scene {
    width: 20%;
    padding: 0vw 11.5vw 11.5vw 11.5vw;
    box-sizing: border-box;
    float: left;
  }
  body #main {
    overflow: hidden;
  }
  body #container {
    width: 500%;
    float: left;
    position: relative;
  }
  body .logo_op {
    position: absolute;
    z-index: 10;
    width: 100%;
  }
  body .logo_op svg, body .logo_op object {
    width: 100%;
  }
  body #top h2 {
    font-size: 1.6vw;
    font-weight: 800;
    color: #1f2c5c;
    line-height: 1;
    margin-bottom: 1.5vw;
    float: left;
    width: 100%;
    letter-spacing: 0;
  }
  body #top #kv {
    height: 100vh;
    margin: 0 0 0 -16%;
    width: 132%;
    overflow: hidden;
    position: relative;
    background: #1f2c5c;
  }
  body #top #kv #opening {
    height: 100%;
    position: relative;
    z-index: 100;
  }
  body #top #kv #opening.passive {
    opacity: 0;
  }
  body #top #kv .visual {
    height: 100%;
    position: relative;
  }
  body #top #kv .visual .img {
    width: 100%;
    position: absolute;
  }
  body #top .title_fix {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 31.4vw;
  }
  body #top .scroll {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  }
  body #top .scroll.open {
    opacity: 1;
  }
  body #top .scroll .t {
    color: white;
    width: 100%;
    text-align: center;
    display: inline-block;
    font-size: 0.8vw;
    line-height: 1;
    margin-bottom: 0.66667vw;
  }
  body #top .scroll .bar {
    width: 2px;
    height: 47px;
    position: relative;
    overflow: hidden;
  }
  body #top .scroll .bar:before {
    -webkit-animation: scroll 1.2s cubic-bezier(0.16, 0.84, 0.61, 1.01) infinite;
    -moz-animation: scroll 1.2s cubic-bezier(0.16, 0.84, 0.61, 1.01) infinite;
    animation: scroll 1.2s cubic-bezier(0.16, 0.84, 0.61, 1.01) infinite;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
  }
  body #top #recent {
    padding-top: 4vw;
    margin-bottom: 6.5vw;
  }
  body #top #recent ul {
    width: 100%;
    float: left;
  }
  body #top #recent ul li {
    width: 48%;
    float: left;
    margin: 0 0 1.2vw 0;
  }
  body #top #recent ul li:nth-child(odd) {
    margin: 0 3vw 1.2vw 0;
  }
  body #top #recent ul li .photo {
    width: 100%;
    float: left;
    position: relative;
    margin: 0 0 0vw 0;
  }
  body #top #recent ul li .photo li {
    width: 100%;
    float: left;
    position: absolute;
    z-index: 1;
    margin: 0 0 1.2vw 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    opacity: 0;
  }
  body #top #recent ul li .photo li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    background: black;
    z-index: 3;
    opacity: 0.02;
  }
  body #top #recent ul li .photo li.current {
    position: relative;
    z-index: 100;
    opacity: 1;
  }
  body #top #recent ul li .photo li .btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 100;
    width: 14.0vw;
    padding: 0.7em;
    letter-spacing: 0;
  }
  body #top #recent ul li .photo li img {
    position: relative;
  }
  body #top #recent ul li .thumb {
    width: 100%;
    float: left;
    position: relative;
    margin: 0 0 1.0vw 0;
  }
  body #top #recent ul li .thumb li {
    float: left;
    width: 22.6%;
    margin: 0 3.2% 0 0;
    position: relative;
    cursor: pointer;
    z-index: 2;
  }
  body #top #recent ul li .thumb li:hover:before {
    opacity: 0.2;
  }
  body #top #recent ul li .thumb li:last-child {
    margin: 0;
  }
  body #top #recent ul li .thumb li .btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    font-size: 1.2em;
    border: 2px solid white;
  }
  body #top #recent ul li .thumb li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    background: black;
    z-index: 3;
    opacity: 0.4;
  }
  body #top #recent ul li .thumb li.current {
    cursor: default;
  }
  body #top #recent ul li .thumb li.current:before {
    opacity: 0.02;
  }
  body #top #recent ul li .info {
    width: 100%;
    float: left;
    letter-spacing: 0em;
  }
  body #top #recent ul li .info span {
    width: 100%;
    float: left;
    display: block;
  }
  body #top #recent ul li .info .client {
    margin: 0 0 0.5em 0;
    font-size: 0.9em;
    font-weight: 500;
  }
  body #top #recent ul li .info h2 {
    width: 100%;
    float: left;
    margin: 0 0 0.4em 0;
    font-size: 1.6em;
    font-weight: 700;
    color: black;
  }
  body #top #recent ul li .info p {
    width: 100%;
    float: left;
    margin: 0 0 0.4em 0;
    font-size: 1.0em;
    text-align: justify;
    font-weight: 500;
  }
  body #top #recent ul li .info .category {
    font-size: 0.8em;
    color: #7c7c7c;
    font-weight: 500;
    margin: 0 0 2em 0;
  }
  body #top #recent .btn_more {
    float: right;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-top: -1.7vw;
    letter-spacing: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  }
  body #top #recent .btn_more:hover {
    opacity: 1;
  }
  body #top #recent .btn_more:hover span:before {
    transform: scale(0, 1);
  }
  body #top #recent .btn_more span {
    font-size: 1.33333vw;
    line-height: 1.86667vw;
    font-weight: 800;
    display: inline-block;
    position: relative;
  }
  body #top #recent .btn_more span:before {
    content: "";
    display: block;
    background: #1f2c5c;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    transform-origin: bottom right;
  }
  body #top #recent .btn_more img {
    display: inline-block;
    width: 0.66667vw;
    margin: 0 0 0 0.66667vw;
  }
  body #work .data {
    padding-top: 8.3vw;
  }
  body #work ul {
    width: 100%;
    float: left;
  }
  body #work ul li {
    width: 48%;
    float: left;
    margin: 0 0 1.2vw 0;
  }
  body #work ul li:nth-child(odd) {
    margin: 0 3vw 1.2vw 0;
  }
  body #work ul li .photo {
    width: 100%;
    float: left;
    position: relative;
    margin: 0 0 0vw 0;
  }
  body #work ul li .photo li {
    width: 100%;
    float: left;
    position: absolute;
    z-index: 1;
    margin: 0 0 1.2vw 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    opacity: 0;
  }
  body #work ul li .photo li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    background: black;
    z-index: 3;
    opacity: 0.02;
  }
  body #work ul li .photo li.current {
    position: relative;
    z-index: 100;
    opacity: 1;
  }
  body #work ul li .photo li .btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 100;
    width: 14.0vw;
    padding: 0.7em;
    letter-spacing: 0;
  }
  body #work ul li .photo li img {
    position: relative;
  }
  body #work ul li .thumb {
    width: 100%;
    float: left;
    position: relative;
    margin: 0 0 1.0vw 0;
  }
  body #work ul li .thumb li {
    float: left;
    width: 22.6%;
    margin: 0 3.2% 0 0;
    position: relative;
    cursor: pointer;
    z-index: 2;
  }
  body #work ul li .thumb li:hover:before {
    opacity: 0.2;
  }
  body #work ul li .thumb li:last-child {
    margin: 0;
  }
  body #work ul li .thumb li .btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    font-size: 1.2em;
    border: 2px solid white;
  }
  body #work ul li .thumb li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    background: black;
    z-index: 3;
    opacity: 0.4;
  }
  body #work ul li .thumb li.current {
    cursor: default;
  }
  body #work ul li .thumb li.current:before {
    opacity: 0.02;
  }
  body #work ul li .info {
    width: 100%;
    float: left;
    letter-spacing: 0em;
  }
  body #work ul li .info span {
    width: 100%;
    float: left;
    display: block;
  }
  body #work ul li .info .client {
    margin: 0 0 0.5em 0;
    font-size: 0.9em;
    font-weight: 500;
  }
  body #work ul li .info h2 {
    width: 100%;
    float: left;
    margin: 0 0 0.4em 0;
    font-size: 1.6em;
    font-weight: 700;
  }
  body #work ul li .info p {
    width: 100%;
    float: left;
    margin: 0 0 0.4em 0;
    font-size: 1.0em;
    text-align: justify;
    font-weight: 500;
  }
  body #work ul li .info .category {
    font-size: 0.8em;
    color: #7c7c7c;
    font-weight: 500;
    margin: 0 0 2em 0;
  }
  body #people ul {
    width: 100%;
    float: left;
    letter-spacing: 0;
    display: flex;
    flex-wrap: wrap;
    padding-top: 8.3vw;
  }
  body #people ul li {
    width: 30.65%;
    float: left;
    margin: 0 3vw 3vw 0;
  }
  body #people ul li:nth-child(3n) {
    margin: 0 0 3vw 0;
  }
  body #people ul li figure .img {
    width: 100%;
    float: left;
    line-height: 0;
    margin: 0 0 1.2em 0;
  }
  body #people ul li figure figcaption {
    width: 100%;
    float: left;
  }
  body #people ul li figure figcaption h2 {
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 0.2em 0;
  }
  body #people ul li figure figcaption h2 span {
    font-size: 0.58em;
    font-weight: 400;
    vertical-align: middle;
    margin: 0 0 0 1.5em;
    color: black;
    vertical-align: 0.25em;
  }
  body #people ul li figure figcaption small {
    color: #7c7c7c;
    width: 100%;
    float: left;
    display: block;
    margin: 0 0 0.5em 0;
  }
  body #people ul li figure figcaption p {
    font-size: 1.0em;
    text-align: justify;
    width: 100%;
    float: left;
  }
  body #people .photo {
    margin: 0 0 5vw 0;
  }
  body #about.scene {
    padding-top: 2.4vw;
  }
  body #about .yu {
    color: #1f2c5c;
  }
  body #about h2 {
    margin-bottom: 0.7vw;
  }
  body #about .txt {
    width: 35%;
    float: left;
    margin: 0vw 12.6% 7em 0.4%;
  }
  body #about .txt p {
    width: 100%;
    float: left;
    margin: 0 0 1vw 0;
    font-weight: 700;
    font-size: 1.06667vw;
    line-height: 2vw;
    letter-spacing: 0;
  }
  body #about .txt .tag {
    float: left;
    width: 18.93333vw;
    margin-top: 2vw;
    margin-bottom: 2.8vw;
  }
  body #about .txt .logo {
    float: left;
    width: 8.53333vw;
    margin: 2.3vw 0 0.3vw 0;
  }
  body #about .r {
    width: 50%;
    float: left;
  }
  body #about .r .yu {
    width: 100%;
    float: left;
    margin: 0 0 3vw 0;
    font-weight: 700;
    font-size: 0.93333vw;
    line-height: 1.86667vw;
    letter-spacing: 0;
  }
  body #about .r .img {
    width: 68%;
    margin: 5em 0 2vw;
    line-height: 0;
  }
  body #about .r section {
    width: 100%;
    float: left;
    margin: 0 0 1.6vw 0;
    font-size: 0.7em;
    letter-spacing: 0;
    line-height: 1.8em;
  }
  body #about .r section h3 {
    width: 100%;
    float: left;
    color: #1f2c5c;
    font-weight: 800;
    font-size: 1.6em;
    margin: 0 0 0.4vw 0;
    letter-spacing: 0.04em;
  }
  body #about .r section p {
    width: 100%;
    float: left;
    font-size: 1.2em;
    font-weight: 500;
    letter-spacing: 0em;
  }
  body #about .r section ul {
    width: 90%;
    float: left;
    font-size: 1.2em;
    letter-spacing: 0em;
    list-style-type: disc;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
  }
  body #about .r section ul li {
    display: inline-block;
    margin: 0 0.5em 0 0;
  }
  body #about .r section.case {
    width: 100%;
    float: left;
    margin-top: -0.3vw;
    margin-bottom: 3em;
  }
  body #news ul {
    width: 100%;
    float: left;
    letter-spacing: 0;
    display: flex;
    flex-wrap: wrap;
    padding-top: 8.3vw;
  }
  body #news ul li {
    width: 32.0%;
    float: left;
    margin: 0 1.5vw 3vw 0;
  }
  body #news ul li:nth-child(3n) {
    margin: 0 0 3vw 0;
  }
  body #news ul li figure .img {
    width: 100%;
    float: left;
    line-height: 0;
    margin: 0 0 1.2em 0;
    position: relative;
  }
  body #news ul li figure .img:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    background: black;
    z-index: 3;
    opacity: 0.02;
  }
  body #news ul li figure figcaption {
    width: 100%;
    float: left;
  }
  body #news ul li figure figcaption time {
    color: #7c7c7c;
    width: 100%;
    float: left;
    display: block;
    margin: 0 0 0.25em 0;
    font-size: 0.8em;
  }
  body #news ul li figure figcaption p {
    font-size: 1.0em;
    text-align: justify;
    width: 100%;
    float: left;
    margin: 0 0 0.25em 0;
  }
  body #news ul li figure figcaption .links {
    width: 100%;
    float: left;
  }
  body #news ul li figure figcaption .links li {
    width: 100%;
    float: left;
    margin: 0 0 0.15em 0;
    font-weight: 500;
    font-size: 0.9em;
  }
  body #news ul li figure figcaption .links li span {
    border-bottom: 1px solid #1f2c5c;
  }
  body #news ul li figure figcaption .links li span:hover {
    border-bottom: 0px solid #1f2c5c;
  }
  body #news ul li figure figcaption .links li i {
    margin: 0 0 0 0.5em;
  }
  body #news ul li figure figcaption .links li a {
    display: inline;
  }
  body #office.scene {
    padding-top: 7vw;
  }
  body #office .photo {
    width: 56%;
    float: left;
    line-height: 0;
    margin: 0 0 2em 0;
  }
  body #office .box {
    padding-top: 8.3vw;
  }
  body #office .block {
    width: 37%;
    float: left;
    margin: 0 0 0 6.5%;
    font-size: 0.9em;
  }
  body #office .block h2 {
    width: 100%;
    float: left;
    font-size: 2em;
    font-weight: 700;
    margin: 0 0 0.7em 0;
    letter-spacing: 0;
  }
  body #office .block .address {
    width: 100%;
    float: left;
    margin: 0 0 0.2em 0;
    line-height: 1.7em;
    letter-spacing: 0;
  }
  body #office .block .map {
    font-weight: 500;
    display: inline-block;
    margin: 0 0 1.5em 0;
    letter-spacing: 0;
  }
  body #office .block .map i {
    margin: 0 0.25em 0 0;
  }
  body #office .block .map span {
    border-bottom: 1px solid #1f2c5c;
  }
  body #office .block .map span:hover {
    border-bottom: 0px solid #1f2c5c;
  }
  body #office .block .info {
    width: 100%;
    margin: 0 0 1.5em 0;
    letter-spacing: 0;
  }
  body #office .block .info tbody tr {
    line-height: 1.6;
    width: 100%;
    display: block;
  }
  body #office .block .info tbody tr th {
    display: inline-block;
    position: relative;
    padding: 0 1.5vw 0 0;
  }
  body #office .block .info tbody tr th:after {
    position: absolute;
    content: ":";
    display: block;
    top: 0;
    right: 0;
    width: 1vw;
    height: 100%;
  }
  body #office .block .info tbody tr td {
    display: inline-block;
    padding: 0 0 0 0vw;
  }
  body #office .block .mail {
    font-size: 1.5em;
    font-weight: 500;
    display: inline-block;
    margin: 0 0 1.5em 0;
    letter-spacing: 0;
    position: relative;
  }
  body #office .block .mail:before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    content: ' ';
    background: #1f2c5c;
    z-index: 3;
  }
  body #office .block .mail:hover {
    border-bottom: 0px solid #1f2c5c;
  }
  body #office .block .mail:hover:before {
    display: none;
  }
  body #office .block .other {
    display: flex;
    align-items: baseline;
  }
  body #office .block .other .copy {
    width: 70%;
    font-size: 0.8em;
    letter-spacing: 0;
  }
  body #office .block .other .sns {
    width: 30%;
    display: flex;
    flex-flow: row-reverse;
    font-size: 2em;
  }
  body #office .block .other .sns li {
    width: 24%;
  }
  body #office .block .other .sns li + li {
    margin: 0 10% 0 0;
  }
  body #office .block .other .sns li .ig:before {
    content: '';
    background: url(../img/icon_ig.svg);
    width: 1em;
    height: 1em;
    display: block;
    background-size: contain;
  }
  body #float {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2000;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  }
  body #float.show {
    display: block;
    opacity: 1;
  }
  body #float .bg {
    background: url(/bin/cmn/img/bg.png) repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
  }
  body #float .contents {
    left: 10%;
    position: absolute;
    width: 60vw;
    height: 33.8vw;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    margin: auto;
    z-index: 2;
  }
  body #float .contents .close {
    width: 1.0em;
    font-size: 2.5em;
    display: inline-block;
    position: absolute;
    right: 0%;
    top: -10%;
    color: white;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  }
  body #float .contents .close:hover {
    opacity: 1;
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  body #float .contents #float_mov {
    width: 100%;
    height: 33.8vw;
  }
  body #float .contents #float_mov iframe {
    width: 100%;
    height: 33.8vw;
  }
  body #ctrl {
    position: fixed;
    z-index: 1000;
    top: 44vh;
    left: 0;
    width: 100%;
    height: 1px;
  }
  body #ctrl a {
    width: 6.4vw;
    height: 2em;
    float: left;
    display: block;
    top: 0;
    position: absolute;
    font-weight: bold;
    letter-spacing: 0;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    font-weight: 500;
  }
  body #ctrl a.top span {
    color: white;
  }
  body #ctrl a.top div {
    background: white;
  }
  body #ctrl a span {
    -webkit-transition: 0.15s;
    -moz-transition: 0.15s;
    -o-transition: 0.15s;
    transition: 0.15s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    -webkit-transform: rotate3d(1, 0, 0, 90deg);
    -moz-transform: rotate3d(1, 0, 0, 90deg);
    -ms-transform: rotate3d(1, 0, 0, 90deg);
    -o-transform: rotate3d(1, 0, 0, 90deg);
    transform: rotate3d(1, 0, 0, 90deg);
    display: block;
    font-size: 0.8em;
  }
  body #ctrl a.show span {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    -moz-transform: rotate3d(1, 0, 0, 0deg);
    -ms-transform: rotate3d(1, 0, 0, 0deg);
    -o-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  body #ctrl a.passive.l {
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
  body #ctrl a.passive.r {
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }
  body #ctrl a:hover {
    opacity: 1;
  }
  body #ctrl a:hover.l div {
    -webkit-transform: translate(-5em, 0);
    -moz-transform: translate(-5em, 0);
    -ms-transform: translate(-5em, 0);
    -o-transform: translate(-5em, 0);
    transform: translate(-5em, 0);
  }
  body #ctrl a:hover.r div {
    -webkit-transform: translate(5em, 0);
    -moz-transform: translate(5em, 0);
    -ms-transform: translate(5em, 0);
    -o-transform: translate(5em, 0);
    transform: translate(5em, 0);
  }
  body #ctrl a div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1f2c5c;
    z-index: 10;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  body #ctrl a.l {
    left: 0;
    text-align: left;
  }
  body #ctrl a.l span {
    margin: 0 0 0 0.5em;
  }
  body #ctrl a.r {
    right: 0;
    text-align: right;
  }
  body #ctrl a.r span {
    margin: 0 0.5em 0 0;
  }
}
/*color*/
/*opacity*/
/*anim*/
/*size*/
/*============================
mixin
============================*/
/*
* keyframes animationの定義
* ※_anim.scssに定義
*/
/*
* keyframesで定義したkeyframes animationの設定
* @include animation(animation_name $time linear infinite);
*/
/*
* css animationの時間とeasing指定
*/
/*
* position:absoluteで縦横中央ぞろえ
*/
/*
* 左右に均等のマージンをとった幅指定
*/
/*============================
easing
============================*/
/*guide
body{
	background: url(../img/_guidesp.jpg) no-repeat top center;
	background-size: 100% auto;
	background-position: 0px 313px;
	#header{
		@include opacity(0.6);
	}
	#wrapper{
		@include opacity(0.6);
	}
	#footer{
		@include opacity(0.6);
	}
}
 */
@media screen and (max-width: 768px) {
  body .scene {
    width: 20%;
    padding: 0vw 5vw 20vw 5vw;
    box-sizing: border-box;
    float: left;
  }
  body #container {
    width: 500%;
    float: left;
    position: relative;
  }
  body .logo_op {
    position: absolute;
    z-index: 10;
    width: 100%;
  }
  body .logo_op svg, body .logo_op object {
    width: 100%;
  }
  body #top h2 {
    font-size: 5.6vw;
    font-weight: 800;
    color: #1f2c5c;
    line-height: 1;
    margin-bottom: 5.33333vw;
    float: left;
    width: 100%;
  }
  body #top #kv {
    height: 100vh;
    margin: 0 0 0 -6%;
    width: 112%;
    overflow: hidden;
    position: relative;
    background: #1f2c5c;
  }
  body #top #kv #opening {
    height: 100%;
    position: relative;
    z-index: 100;
  }
  body #top #kv #opening.passive {
    opacity: 0;
  }
  body #top #kv .visual {
    height: 100%;
    position: relative;
  }
  body #top #kv .visual .img {
    width: 100%;
    position: absolute;
  }
  body #top .title_fix {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 63.2vw;
  }
  body #top .scroll {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  }
  body #top .scroll.open {
    opacity: 1;
  }
  body #top .scroll .t {
    width: 100%;
    text-align: center;
    display: inline-block;
    font-size: 3.2vw;
    line-height: 1;
    margin-bottom: 2.66667vw;
    color: white;
  }
  body #top .scroll .bar {
    width: 2px;
    height: 13.33333vw;
    position: relative;
    overflow: hidden;
  }
  body #top .scroll .bar:before {
    -webkit-animation: scroll 1.2s cubic-bezier(0.16, 0.84, 0.61, 1.01) infinite;
    -moz-animation: scroll 1.2s cubic-bezier(0.16, 0.84, 0.61, 1.01) infinite;
    animation: scroll 1.2s cubic-bezier(0.16, 0.84, 0.61, 1.01) infinite;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
  }
  body #top #recent {
    padding-bottom: 26.93333vw;
    padding-top: 13.33333vw;
  }
  body #top #recent ul {
    width: 100%;
    float: left;
    margin-bottom: 5.33333vw;
  }
  body #top #recent ul.data {
    margin-bottom: 7vw;
  }
  body #top #recent ul li {
    width: 100%;
    float: left;
  }
  body #top #recent ul li .photo {
    width: 100%;
    float: left;
    position: relative;
    margin: 0 0 2.15vw 0;
  }
  body #top #recent ul li .photo li {
    width: 100%;
    float: left;
    position: absolute;
    z-index: 1;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    opacity: 0;
  }
  body #top #recent ul li .photo li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    background: black;
    z-index: 3;
    opacity: 0.02;
  }
  body #top #recent ul li .photo li.current {
    position: relative;
    z-index: 100;
    opacity: 1;
  }
  body #top #recent ul li .photo li .btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 100;
  }
  body #top #recent ul li .photo li .btn i {
    vertical-align: 0em;
  }
  body #top #recent ul li .thumb {
    width: 100%;
    float: left;
    position: relative;
    margin: 0 0 3.3vw 0;
  }
  body #top #recent ul li .thumb li {
    float: left;
    width: 23.2%;
    margin: 0 2.4% 0 0;
    position: relative;
    cursor: pointer;
    z-index: 2;
  }
  body #top #recent ul li .thumb li:hover:before {
    opacity: 0.2;
  }
  body #top #recent ul li .thumb li:last-child {
    margin: 0;
  }
  body #top #recent ul li .thumb li .btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
  }
  body #top #recent ul li .thumb li .btn i {
    top: 0.05em;
    left: 0.15em;
  }
  body #top #recent ul li .thumb li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    background: black;
    z-index: 3;
    opacity: 0.4;
  }
  body #top #recent ul li .thumb li.current:before {
    opacity: 0.02;
  }
  body #top #recent ul li .info {
    width: 100%;
    float: left;
    letter-spacing: 0em;
  }
  body #top #recent ul li .info span {
    width: 100%;
    float: left;
    display: block;
  }
  body #top #recent ul li .info .client {
    margin: 0 0 0.5em 0;
    font-size: 0.9em;
    font-weight: 500;
  }
  body #top #recent ul li .info h2 {
    width: 100%;
    float: left;
    margin: 0 0 0.4em 0;
    font-size: 1.6em;
    font-weight: 700;
    color: black;
  }
  body #top #recent ul li .info p {
    width: 100%;
    float: left;
    margin: 0 0 0.4em 0;
    font-size: 1.1em;
    text-align: justify;
    font-weight: 500;
  }
  body #top #recent ul li .info .category {
    font-size: 0.85em;
    color: #7c7c7c;
    font-weight: 500;
    margin: 0 0 2em 0;
  }
  body #top #recent .btn_more {
    clear: both;
    margin: 0 auto;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body #top #recent .btn_more span {
    font-size: 5.06667vw;
    line-height: 0.14667vw;
    font-weight: 800;
    text-decoration: underline;
    letter-spacing: 0;
  }
  body #top #recent .btn_more img {
    display: inline-block;
    width: 2.66667vw;
    margin: 0 0 0 2.66667vw;
  }
  body #work ul {
    width: 100%;
    float: left;
  }
  body #work ul.data {
    padding-top: 14.93333vw;
  }
  body #work ul li {
    width: 100%;
    float: left;
  }
  body #work ul li .photo {
    width: 100%;
    float: left;
    position: relative;
    margin: 0 0 2.15vw 0;
  }
  body #work ul li .photo li {
    width: 100%;
    float: left;
    position: absolute;
    z-index: 1;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    opacity: 0;
  }
  body #work ul li .photo li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    background: black;
    z-index: 3;
    opacity: 0.02;
  }
  body #work ul li .photo li.current {
    position: relative;
    z-index: 100;
    opacity: 1;
  }
  body #work ul li .photo li .btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 100;
  }
  body #work ul li .photo li .btn i {
    vertical-align: 0em;
  }
  body #work ul li .thumb {
    width: 100%;
    float: left;
    position: relative;
    margin: 0 0 3.3vw 0;
  }
  body #work ul li .thumb li {
    float: left;
    width: 23.2%;
    margin: 0 2.4% 0 0;
    position: relative;
    cursor: pointer;
    z-index: 2;
  }
  body #work ul li .thumb li:hover:before {
    opacity: 0.2;
  }
  body #work ul li .thumb li:last-child {
    margin: 0;
  }
  body #work ul li .thumb li .btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
  }
  body #work ul li .thumb li .btn i {
    top: 0.05em;
    left: 0.15em;
  }
  body #work ul li .thumb li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    background: black;
    z-index: 3;
    opacity: 0.4;
  }
  body #work ul li .thumb li.current:before {
    opacity: 0.02;
  }
  body #work ul li .info {
    width: 100%;
    float: left;
    letter-spacing: 0em;
  }
  body #work ul li .info span {
    width: 100%;
    float: left;
    display: block;
  }
  body #work ul li .info .client {
    margin: 0 0 0.5em 0;
    font-size: 0.9em;
    font-weight: 500;
  }
  body #work ul li .info h2 {
    width: 100%;
    float: left;
    margin: 0 0 0.4em 0;
    font-size: 1.6em;
    font-weight: 700;
  }
  body #work ul li .info p {
    width: 100%;
    float: left;
    margin: 0 0 0.4em 0;
    font-size: 1.1em;
    text-align: justify;
    font-weight: 500;
  }
  body #work ul li .info .category {
    font-size: 0.85em;
    color: #7c7c7c;
    font-weight: 500;
    margin: 0 0 2em 0;
  }
  body #people ul {
    width: 100%;
    float: left;
    letter-spacing: 0;
    padding-top: 14.93333vw;
  }
  body #people ul li {
    width: 100%;
    float: left;
    margin: 0 0 2.5em 0;
  }
  body #people ul li figure .img {
    width: 100%;
    float: left;
    line-height: 0;
    margin: 0 0 1.2em 0;
  }
  body #people ul li figure figcaption {
    width: 100%;
    float: left;
  }
  body #people ul li figure figcaption h2 {
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 0.2em 0;
  }
  body #people ul li figure figcaption h2 span {
    font-size: 0.58em;
    font-weight: 400;
    vertical-align: middle;
    margin: 0 0 0 1.5em;
    color: black;
    vertical-align: 0.2em;
  }
  body #people ul li figure figcaption small {
    color: #7c7c7c;
    width: 100%;
    float: left;
    display: block;
    margin: 0 0 0.5em 0;
  }
  body #people ul li figure figcaption p {
    font-size: 1.1em;
    text-align: justify;
    width: 100%;
    float: left;
  }
  body #people .photo {
    margin: 0 0 10vw 0;
  }
  body #about .yu {
    color: #1f2c5c;
  }
  body #about h2 {
    margin-bottom: 2.66667vw;
  }
  body #about .txt {
    width: 100%;
    float: left;
    line-height: 0;
    margin: 0.73333vw 0 10.66667vw 0;
  }
  body #about .txt p {
    width: 100%;
    float: left;
    margin: 0 0 2.93333vw 0;
    font-weight: 700;
    font-size: 3.6vw;
    line-height: 6.66667vw;
    letter-spacing: 0;
  }
  body #about .txt .tag {
    float: left;
    width: 64.13333vw;
    margin-top: 3.73333vw;
    margin-bottom: 7.2vw;
    margin-left: 1.06667vw;
  }
  body #about .txt .logo {
    float: left;
    width: 28.93333vw;
    margin: 5.6vw 0 1.33333vw 0.8vw;
  }
  body #about .txt .img {
    margin: 0 4em 3.5em 0;
  }
  body #about .r {
    float: left;
    width: 100%;
  }
  body #about .r .yu {
    width: 100%;
    float: left;
    margin: 0 0 3vw 0;
    font-weight: 700;
    font-size: 3.46667vw;
    line-height: 6.66667vw;
    letter-spacing: 0;
    margin-bottom: 14.13333vw;
  }
  body #about .r .img {
    margin: 0 0 10.66667vw 1.33333vw;
    line-height: 0;
  }
  body #about section {
    width: 100%;
    float: left;
    margin: 0 0 6.4vw 0;
  }
  body #about section h3 {
    width: 100%;
    float: left;
    color: #1f2c5c;
    font-weight: 800;
    font-size: 1.6em;
    margin: 0 0 2.4vw 0;
  }
  body #about section p {
    width: 100%;
    float: left;
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 0em;
  }
  body #about section ul {
    width: 100%;
    float: left;
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 0em;
  }
  body #about section ul li {
    width: 100%;
    float: left;
  }
  body #about section.case {
    margin: 1.06667vw 0 3em 0;
  }
  body #news ul {
    width: 100%;
    float: left;
    letter-spacing: 0;
    padding-top: 14.93333vw;
  }
  body #news ul li {
    width: 100%;
    float: left;
    margin: 0 0 2.5em 0;
  }
  body #news ul li figure .img {
    width: 100%;
    float: left;
    line-height: 0;
    margin: 0 0 1.2em 0;
    position: relative;
  }
  body #news ul li figure .img:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    background: black;
    z-index: 3;
    opacity: 0.02;
  }
  body #news ul li figure figcaption {
    width: 100%;
    float: left;
  }
  body #news ul li figure figcaption time {
    color: #7c7c7c;
    width: 100%;
    float: left;
    display: block;
    margin: 0 0 0.25em 0;
  }
  body #news ul li figure figcaption p {
    font-size: 1.1em;
    text-align: justify;
    width: 100%;
    float: left;
    margin: 0 0 0.25em 0;
  }
  body #news ul li figure figcaption .links {
    width: 100%;
    float: left;
  }
  body #news ul li figure figcaption .links li {
    width: 100%;
    float: left;
    margin: 0 0 0.15em 0;
    font-weight: 500;
  }
  body #news ul li figure figcaption .links li span {
    border-bottom: 1px solid #1f2c5c;
  }
  body #news ul li figure figcaption .links li span:hover {
    border-bottom: 0px solid #1f2c5c;
  }
  body #news ul li figure figcaption .links li i {
    margin: 0 0 0 0.25em;
  }
  body #news ul li figure figcaption .links li a {
    display: inline;
  }
  body #office .area .photo {
    width: 100%;
    float: left;
    line-height: 0;
    margin: 0 0 2em 0;
    padding-top: 14.93333vw;
  }
  body #office .area .block {
    width: 100%;
    float: left;
  }
  body #office .area .block h2 {
    width: 100%;
    float: left;
    font-size: 1.7em;
    font-weight: 700;
    margin: 0 0 0.7em 0;
  }
  body #office .area .block .address {
    width: 100%;
    float: left;
    margin: 0 0 0.2em 0;
    line-height: 1.7em;
  }
  body #office .area .block .map {
    font-weight: 500;
    display: inline-block;
    margin: 0 0 2em 0;
  }
  body #office .area .block .map i {
    margin: 0 0.25em 0 0;
  }
  body #office .area .block .map span {
    border-bottom: 1px solid #1f2c5c;
  }
  body #office .area .block .map span:hover {
    border-bottom: 0px solid #1f2c5c;
  }
  body #office .area .block .info {
    width: 100%;
    margin: 0 0 2em 0;
  }
  body #office .area .block .info tbody tr {
    line-height: 1.6;
    width: 100%;
    display: block;
  }
  body #office .area .block .info tbody tr th {
    display: inline-block;
    position: relative;
    padding: 0 2vw 0 0;
  }
  body #office .area .block .info tbody tr th:after {
    position: absolute;
    content: ":";
    display: block;
    top: 0;
    right: 0;
    width: 1vw;
    height: 100%;
  }
  body #office .area .block .info tbody tr td {
    display: inline-block;
    padding: 0 0 0 1vw;
  }
  body #office .area .block .mail {
    font-size: 1.5em;
    font-weight: 500;
    display: inline-block;
    margin: 0 0 2.5em 0;
    position: relative;
  }
  body #office .area .block .mail:before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    content: ' ';
    background: #1f2c5c;
    z-index: 3;
  }
  body #office .area .block .mail:hover {
    border-bottom: 0px solid #1f2c5c;
  }
  body #office .area .block .mail:hover:before {
    display: none;
  }
  body #office .area .block .other {
    display: flex;
    align-items: baseline;
  }
  body #office .area .block .other .copy {
    width: 70%;
    font-size: 0.8em;
  }
  body #office .area .block .other .sns {
    width: 30%;
    display: flex;
    flex-flow: row-reverse;
    font-size: 2em;
  }
  body #office .area .block .other .sns li {
    width: 24%;
  }
  body #office .area .block .other .sns li + li {
    margin: 0 14% 0 0;
  }
  body #office .area .block .other .sns li .ig:before {
    content: '';
    background: url(../img/icon_ig.svg);
    width: 1em;
    height: 1em;
    display: block;
    background-size: contain;
  }
  body #float {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2000;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  }
  body #float.show {
    display: block;
    opacity: 1;
  }
  body #float .bg {
    background: url(/bin/cmn/img/bg.png) repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
  }
  body #float .contents {
    left: 10%;
    position: absolute;
    width: 80vw;
    height: 50vw;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    margin: auto;
    z-index: 2;
  }
  body #float .contents .close {
    width: 1.0em;
    font-size: 1.5em;
    display: inline-block;
    position: absolute;
    right: 0%;
    top: -16%;
    color: white;
    cursor: pointer;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  }
  body #float .contents .close:hover {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  body #float .contents #float_mov {
    width: 100%;
    height: 40vw;
  }
  body #float .contents #float_mov iframe {
    width: 100%;
    height: 40vw;
  }
}
