@charset "UTF-8";

/*-----------------------------------------------------	*/
/*	基本設定					                         */
/*-----------------------------------------------------	*/

html {
  -webkit-overflow-scrolling: touch; /* iosバグ回避　スマホスクロールスムーズにする */
}

body {
  font-family: 'Noto Sans JP',"游ゴシック体", "游ゴシック", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin: 0px;
  font-size: 1.1em;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  background: #4dd0e1;
}

ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
	letter-spacing: -.40em; /* inline-block隙間除去 文字間を詰めて隙間を削除する */
}

ul li {
	list-style-type: none;
	letter-spacing: normal; /* inline-block隙間除去 文字間を通常に戻す */
}

h1,h2,h3,h4,h5,p {
  margin: 0px; /* 初期化 */
}

img {
	width:100%;
	max-width: 100%;
	height: auto;
	vertical-align:bottom; /* img隙間をなくす */
	border: 0px; /* IE10以下で画像周りの青い線を非表示 */
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
}

/* リンク設定
a:link		{ color:#333333; text-decoration: none; }
a:visited	{ color:#333333; }
a:hover		{ color:#5a5758; }
a:active	{ color:#333333; }

 */

/* フォーカスした際に線が入るのを消す処理 */
*:focus {
  outline: none;
}

/* float 解除 Clearfix */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

/* 改行 */
.sp-br {
 display: none;   
}

.br480 {
    display: none;
}

/* recaptchキー　バッジ非表示 */
.grecaptcha-badge { visibility: hidden; }

/* ポップアッププラグイン要素　非表示 */
.popup {
    display: none;
}

/* ポップアッププラグイン　ポップアップ時スクロール防止 */
html.with-featherlight {
　overflow: visible !important;
}

@media screen and (max-width: 1199px) {
    body {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 900px) {
    body {
        font-size: 1em;
    }    
}

@media screen and (max-width: 480px) {
    .sp-br {
     display: inline;   
    }
    
    .br480 {
        display: inline;
    }
}

/*-----------------------------------------------------	*/
/*	共通					                               */
/*-----------------------------------------------------	*/

.inner-width {
    max-width: 1500px;
    margin: 0px auto;
}

.inline-block {
    display: inline-block;
}

/* 中央揃え */
.align-center {
    text-align: center;   
}

/*** 3D背景 ***/

.canvas-wrapper {
    position: relative;
}

/*
#canvas-wrapper canvas {
    height: 100vh;
}
*/

/*** ヘッダー　****/
#header-out {
    position: absolute;
    top: 0px;
    width: 100%;
}

#header-logo-out {
    top: 15px;
    position: absolute;
    z-index: 2;
}

#header-logo-inner {
    position: relative;
}

#header-logo-out {
    position: absolute;
    left: 55px;
    text-decoration: none !important;
}

#logo-sub-text {
    display: block;
    font-size: 0.65em;
    line-height: 1em;
    color: #231815;
    text-align: left;
}

#logo-sub-text br {
    display: none;
}

#header-logo {
    width: 204px;
    height: 53px;
    background: url("../images/common/logo.png") no-repeat center center;
    background-size: cover;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    margin-top: 10px;
}

/* 日本語ロゴテキスト */
#jp-logo-text {
    position: absolute;
    top: 30px;
    /*
    right: 150px;
    */
    right: 50px;
    font-weight: normal;
    font-size: 0.9em;
}

/* ヘッダー固定用 */
.header-out-fixed {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    background: white;
    z-index: 9997;
}

/* ヘッダーsns ※一部　サイドメニューとフッターのSNS部分と併用 */
.sns-link-out {
    float: right;
    margin-top: 8px;
}

.sns-link-out li {
    float: left;
    margin: 0px 10px;
}

.sns-link-out li img {
    max-width: 25px;
    vertical-align: middle;
}

/* タブレットスマホメニューボタン */
#tbsp-menu-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    margin-top: 0px;
    z-index: 10001;
    display: none;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 38px;
  height: 31px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: white;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 14px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/* メニューボタン　アニメーション */
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-14px) rotate(45deg);
}

.menu-trigger.active span {
  background-color: white;
}

/*** 揃え ***/
.align-center {
    text-align: center;
}

/*** ヘッダーメニュー ***/
/* メニューボタン */       
#menu-btn {
    position: fixed;
    top: 65px;
    right: 50px;
    background: #b523f3;
    min-width: 66px;
    padding: 11px 11px 9px 11px;
    /* 角丸 */
    border-radius:8px;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
}
            
#menu-btn:hover {
    cursor: pointer;
}
            
#menu-btn .menu-line {
    width: 100%;
}
            
#menu-btn .menu-line span {
    display: block;
    float: left;
    /* 角丸 */
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
}
            
#menu-btn .menu-line {
    margin-bottom: 9px;
}
            
#menu-btn > *:first-child+*+* {
    margin-bottom: 0px;
}
            
#menu-btn > *:first-child .long-line {
    margin-right: 4px;
}
            
#menu-btn > *:first-child+*+* .short-line {
    margin-right: 4px;
}
            
#menu-btn .menu-line .default-line {
    width: 46px;
    height: 4px;
    background: white;
    animation: border_anim01 0.7s linear forwards;
}

@keyframes border_anim01 {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}
            
#menu-btn .menu-line .long-line {
    position: relative;
    width: 36px;
    height: 3px;
    background: white;
    animation: border_anim02 0.7s linear forwards;
}

@keyframes border_anim02 {
	0%{
		width: 0%;
	}
	100%{
		width: 36px;
	}
}
            
#menu-btn .menu-line .short-line {
    width: 4px;
    height: 3px;
    background: white;
}
            
#menu-text-img {
    display: block;
    height: 9px;
    margin-top: 8px;
    background: url("https://1web.co.jp/cms/wp-content/themes/oneweb/images/common/menu-text-img.png") no-repeat center center;
    background-size: contain;
    animation: fadeIn 1.6s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
 
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
            
/* メニュー著作権表記　後で入れ直すこと
Copyright (c) 2023 Jhey
Released under the MIT license
URL：https://codepen.io/jh3y/pen/QxYMJa
*/      

/*
@import url("https://fonts.googleapis.com/css?family=Lato");
* {
  box-sizing: border-box;
}

html,
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  min-height: 100vh;
  padding: 0;
}

html:before,
body:before {
  background: linear-gradient(35deg, #9a12b3, #c5eff7);
  bottom: 0;
  content: '';
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
}
*/
svg {
  cursor: pointer;
  height: 44px;
  width: 44px;
}
/*
svg path {
  fill: #fff;
}
*/
            
#menu-icon path {
    fill: #fdff67;
}
            
#menu-close-icon path {
  fill: #fff;
}
        
ol {
  list-style-type: none;
}
/*
a[href] {
  color: #fff;
  position: relative;
  text-decoration: none;
}
*/
  
.menu__content a[href] {
  color: #fff;
  position: relative;
  text-decoration: none;
}
            
.menu__content a[href]:hover:after {
  transform: scaleX(1);
}
.menu__content a[href]:after {
  content: '';
  position: absolute;
  top: 100%;
  height: 3px;
  background: #fff;
  left: 0;
  right: 0;
  transition: transform 0.15s;
  transform-origin: left;
  transform: scaleX(0);
}
.menu {
  position: relative;
  /*
  width: 250px;
*/
}
.menu__content {
  display: none;
  color: #fff;
  margin: 0;
  padding: 0 0 25px 0;
  position: fixed;
  /*
  position: absolute;
  right: 100%;
  */
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 480px;
  z-index: 1000;
/* background: #50c9dd; 
background-color: rgba(80,201,221,0.9);*/
  /* background: linear-gradient(45deg, rgba(108,184,255,7), rgba(255,246,108,.7), rgba(255,163,108,.7)); */
  background: linear-gradient(45deg, rgba(188, 32, 216, 0.9), rgba(32, 208, 216, 0.9), rgba(25, 182, 255, 0.9),rgba(127, 216, 32, 0.9));
  background-size: 300% 300%;
  animation: AnimationName 10s ease infinite;
}
            
@keyframes AnimationName { 
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
            
.menu__content > *:first-child {
    margin-top: 60px;
}
            
/* 追記 */
.open-menu .menu__content {
    display: block;
    overflow-y: scroll;
    padding-bottom: 40px;
    /* スクロールバー隠す firefox */
    scrollbar-width: none;
}

/* スクロールバー隠す chrome ie用 */
.menu__content::-webkit-scrollbar { width: 0 !important }
            
.menu__toggle-label {
  height: 44px;
  /* left: 0; */
  top: 9%;
  right: 45px;
  position: fixed;
  /* position: absolute; */
  width: 44px;
}
.menu__toggle-label svg {
  /*
  left: 0;
  
  position: absolute;
  */
  top: 0;
  transition: transform 0.15s;
  z-index: 1000;
}
            
/* 下記数字を入れ替えています (2)→(1) */
.menu__toggle-label svg:nth-of-type(1) {
  position: fixed;
  right: 490px;
  /*
  left: 250px;
  */
  transform: scale(0);
  z-index: 1001;
}
.menu__toggle {
  opacity: 0;
  position: fixed;
}
.menu__toggle:checked ~ .menu__toggle-label {
  background: rgba(0,0,0,0.65);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  transition: background 0.15s;
  width: 100vw;
  z-index: 1000;
}
/*
.menu__toggle:checked ~ .menu__toggle-label svg:nth-of-type(1) {
  transform: scale(0);
}
*/
            
/* 下記数字を入れ替えています (2)→(1) */
.menu__toggle:checked ~ .menu__toggle-label svg:nth-of-type(1) {
  top: 30px;
  /* left: 250px; */
  transform: scale(1);
  transition: transform 0.15s;
  transition-delay: 0.925s;
}
/*
.menu__toggle:checked ~ .menu__content {
  transform: translate(100%, 0);
}
*/
/*
.menu__toggle:checked ~ .menu__content {
  transform: translate(100%, 0);
}
*/
            
.menu__toggle:checked ~ .menu__content .menu-item {
  transform: translateX(0);
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.15s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(1) {
  border-color: #9b59b6;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(1) a[href]:after {
  background: #9b59b6;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(2) {
  border-color: #86e2d5;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(2) a[href]:after {
  background: #86e2d5;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(3) {
  border-color: #f5ab35;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(3) a[href]:after {
  background: #f5ab35;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(4) {
  border-color: #1e8bc3;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(4) a[href]:after {
  background: #1e8bc3;
}

/* 下記より追加カラーメニュー */
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(5) {
  border-color: #e26a6a;
}            
            
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(5) a[href]:after {
  background: #e26a6a;
}
                        
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(6) {
  border-color: #94e26a;
}
            
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(6) a[href]:after {
  background: #94e26a;
}
            
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(7) {
  border-color: #d26ae2;
}
        
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(7) a[href]:after {
  background: #d26ae2;
}
            
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(8) {
  border-color: #e2de6a;
}
            
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(8) a[href]:after {
  background: #e2de6a;
}
            
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(9) {
  border-color: #b2874b;
}
            
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(9) a[href]:after {
  background: #b2874b;
}
            
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(10) {
  border-color: #53c33a;
}
            
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(10) a[href]:after {
  background: #53c33a;
}

.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(1) {
  transition-delay: 0.225s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(2) {
  transition-delay: 0.275s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(3) {
  transition-delay: 0.325s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(3) .menu-item:nth-of-type(1) {
  transition-delay: 0.375s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(3) .menu-item:nth-of-type(2) {
  transition-delay: 0.425s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(3) .menu-item:nth-of-type(3) {
  transition-delay: 0.475s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(4) {
  transition-delay: 0.525s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(4) .menu-item:nth-of-type(1) {
  transition-delay: 0.575s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(4) .menu-item:nth-of-type(2) {
  transition-delay: 0.625s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(4) .menu-item:nth-of-type(3) {
  transition-delay: 0.675s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(5) {
  transition-delay: 0.725s, 0.875s;
}

/* 下記より追加カラーメニュー */
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(6) {
  transition-delay: 0.725s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(7) {
  transition-delay: 0.725s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(8) {
  transition-delay: 0.725s, 0.875s;
}
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(9) {
  transition-delay: 0.725s, 0.875s;
}
            
.menu__toggle:checked ~ .menu__content .menu-item:nth-of-type(10) {
  transition-delay: 0.725s, 0.875s;
}
            
.menu__content > .menu-item {
  border-left: 3px solid transparent;
}
.menu__content > .menu-item > a {
  font-size: 130%;
  line-height: 44px;
  min-width: 60px;
}
#sidemenu-out .menu li .sub-menu {
  padding: 0px;
  font-size: 120%;
}

#sidemenu-out .menu li a {
    line-height: 1.4em;
}

#sidemenu-out .menu li .sub-menu li {
  width: 100%;
  border-right: 0px;
  border-bottom: 0px;
}

#sidemenu-out .menu li .sub-menu li a {
  background: none;
  font-size: 75%;
  width: 100%;
  padding-right: 0px;
}

.menu-item {
  line-height: 44px;
  min-height: 44px;
  padding: 0 20px;
}

/*** フッター ***/
#footer-out {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 70%;
    margin-top: 10px;
    margin-bottom: 10px;
}

#footer-out p {
    display: inline-block;
}

/*** フッターリンク ***/
#footer-link {
    font-size: 110%;
    margin-top: 10px;
    margin-bottom: 10px;
}

#footer-link a {
    color: white;
    text-decoration: none;
}

#footer-link a:hover {
    text-decoration: underline !important;
}

/* 中見出し */

/* 縦書き */
.basic-title01-v {
    position: relative;
    line-height: 3.5em;
    letter-spacing: 0.1em;
    color: #be78ee;
    font-weight: normal;
    vertical-align: top;
    text-align: center;
}

.basic-title01-v-inner {
    position: relative;
    z-index: 20;
    writing-mode: vertical-rl;
    vertical-align:middle;
    display: inline-block;
}

.basic-title01-v-inner .jp-title {
    text-align: left;
}

.basic-title01-v h2,.basic-title01-v h3,.basic-title01-v h4 {
    font-weight: normal;
}

.basic-title01-v .en-title {
    font-size: 2.5em !important;
    font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
}

/* 横書き */
.basic-title01 {
    position: relative;
    line-height: 3.5em;
    letter-spacing: 0.1em;
    color: #be78ee;
    font-weight: normal;
    vertical-align: top;
}

.basic-title01 .en-title {
    font-size: 2.5em !important;
    font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
}

.basic-title01-inner .jp-title {
    font-weight: normal;
    line-height: 1.3em;
}

/* 赤文字 */
.text-red01 {
    color: #f88484;
}


/*** 立方体 ***/

/* 立方体01 */
.cube01 {
    display: block;
	margin: 40px;
	width: 40px;
	height: 40px;
	position: relative;
    z-index: 1;
	transform-style: preserve-3d;
    /*
	transform: rotateX(-10deg) rotateY(-15deg) rotateZ(-10deg);  初期角度 */
}

.cube01 span {
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	font-size: 60px;
}

.cube01 span:nth-child(1) {
	background: #c142da;
	transform: translateZ(20px);
}

.cube01 span:nth-child(2) {
	background: #d8d96a;
	transform: rotateY(180deg) translateZ(20px);
}

.cube01 span:nth-child(3) {
	background: #eda74b;
	transform: rotateY(90deg) translateZ(20px);
}

.cube01 span:nth-child(4) {
	background: #4189ee;
	transform: rotateY(-90deg) translateZ(20px);
}

.cube01 span:nth-child(5) {
	background: #8ffb9b;
	transform: rotateX(90deg) translateZ(20px);
}

.cube01 span:nth-child(6) {
	background: #ee9aba;
	transform: rotateX(-90deg) translateZ(20px);
}

/*** 立方体 各見出しごとの設定 ***/

/* TOP サービス見出し */
#top-service-title-out > *:first-child {
    position: absolute;
    top: -50px;
    /* 初期角度 */
    transform: rotateX(-30deg) rotateY(-15deg) rotateZ(-15deg) scale3d(1,1,0.5);
}

#top-service-title-out > *:first-child+* {
    position: absolute;
    top: 80px;
    left: -5px;
    /* 初期角度 */
    transform: rotateX(-100deg) rotateY(60deg) rotateZ(50deg) scale3d(0.8,0.8,0.8);
}

#top-service-title-out > *:first-child+*+* {
    position: absolute;
    top: 300px;
    left: 30px;
    /* 初期角度 */
    transform: rotateX(-20deg) rotateY(60deg) rotateZ(50deg) scale3d(0.4,0.4,0.4);
}

#top-service-title-out > *:first-child+*+*+* {
    position: absolute;
    top: 200px;
    right: 50px;
    /* 初期角度 */
    transform: rotateX(-20deg) rotateY(60deg) rotateZ(50deg) scale3d(0.6,0.2,0.6);
}

#top-service-title-out > *:first-child+*+*+*+* {
    position: absolute;
    top: 350px;
    right: 90px;
    /* 初期角度 */
    transform: rotateX(20deg) rotateY(-160deg) rotateZ(-20deg) scale3d(0.6,0.6,0.6);
}

/* TOP　制作実績見出し */
#top-works-title-out > *:first-child {
    position: absolute;
    top: -50px;
    left: -100px;
    /* 初期角度 */
    transform: rotateX(30deg) rotateY(-30deg) rotateZ(150deg) scale3d(0.7,0.7,0.7);
}

#top-works-title-out > *:first-child+* {
    position: absolute;
    top: -100px;
    left: 250px;
    /* 初期角度 */
    transform: rotateX(100deg) rotateY(-60deg) rotateZ(50deg) scale3d(0.8,0.8,0.8);
}

#top-works-title-out > *:first-child+*+* {
    position: absolute;
    top: 20px;
    left: -100px;
    /* 初期角度 */
    transform: rotateX(80deg) rotateY(160deg) rotateZ(140deg) scale3d(0.4,0.4,0.4);
}

#top-works-title-out > *:first-child+*+*+* {
    position: absolute;
    top: -10px;
    left: 240px;
    /* 初期角度 */
    transform: rotateX(20deg) rotateY(-40deg) rotateZ(150deg) scale3d(0.6,0.6,0.6);
}

/* TOP 会社概要見出し */
#top-company-title-out > *:first-child {
    position: absolute;
    top: -50px;
    /* 初期角度 */
    transform: rotateX(-30deg) rotateY(-15deg) rotateZ(-60deg) scale3d(0.5,1,1);
}

#top-company-title-out > *:first-child+* {
    position: absolute;
    top: 100px;
    left: -5px;
    /* 初期角度 */
    transform: rotateX(-100deg) rotateY(100deg) rotateZ(50deg) scale3d(0.8,0.8,0.8);
}

#top-company-title-out > *:first-child+*+* {
    position: absolute;
    top: 330px;
    left: 10px;
    /* 初期角度 */
    transform: rotateX(-20deg) rotateY(-60deg) rotateZ(50deg) scale3d(0.4,0.4,0.4);
}

#top-company-title-out > *:first-child+*+*+* {
    position: absolute;
    top: 150px;
    right: 50px;
    /* 初期角度 */
    transform: rotateX(-120deg) rotateY(100deg) rotateZ(-50deg) scale3d(0.6,0.2,0.6);
}

#top-company-title-out > *:first-child+*+*+*+* {
    position: absolute;
    top: 350px;
    right: 90px;
    /* 初期角度 */
    transform: rotateX(20deg) rotateY(-200deg) rotateZ(-20deg) scale3d(0.6,0.6,0.6);
}

/* TOPお問い合わせ　見出し */
#top-works-title-out > *:first-child {
    position: absolute;
    top: -50px;
    left: -100px;
    /* 初期角度 */
    transform: rotateX(30deg) rotateY(-30deg) rotateZ(150deg) scale3d(0.7,0.7,0.7);
}

#top-works-title-out > *:first-child+* {
    position: absolute;
    top: -100px;
    left: 250px;
    /* 初期角度 */
    transform: rotateX(100deg) rotateY(-60deg) rotateZ(50deg) scale3d(0.8,0.8,0.8);
}

#top-works-title-out > *:first-child+*+* {
    position: absolute;
    top: 20px;
    left: -100px;
    /* 初期角度 */
    transform: rotateX(80deg) rotateY(160deg) rotateZ(140deg) scale3d(0.4,0.4,0.4);
}

#top-works-title-out > *:first-child+*+*+* {
    position: absolute;
    top: -10px;
    left: 240px;
    /* 初期角度 */
    transform: rotateX(20deg) rotateY(-40deg) rotateZ(150deg) scale3d(0.6,0.6,0.6);
}

/* お問い合わせ */
#top-contact-title-out > *:first-child {
    position: absolute;
    top: -80px;
    left: -100px;
    /* 初期角度 */
    transform: rotateX(30deg) rotateY(-30deg) rotateZ(-150deg) scale3d(0.7,0.3,0.7);
}

#top-contact-title-out > *:first-child+* {
    position: absolute;
    top: -100px;
    left: 280px;
    /* 初期角度 */
    transform: rotateX(100deg) rotateY(-60deg) rotateZ(50deg) scale3d(0.6,0.6,0.6);
}

#top-contact-title-out > *:first-child+*+* {
    position: absolute;
    top: 20px;
    left: -100px;
    /* 初期角度 */
    transform: rotateX(80deg) rotateY(-50deg) rotateZ(140deg) scale3d(0.8,0.8,0.8);
}

#top-contact-title-out > *:first-child+*+*+* {
    position: absolute;
    top: -10px;
    left: 300px;
    /* 初期角度 */
    transform: rotateX(-20deg) rotateY(-40deg) rotateZ(-100deg) scale3d(0.5,0.5,0.4);
}

/* アニメーション 

.cube:nth-child(2) {
	animation: rotate-anim 5s linear infinite;
}

@keyframes rotate-anim {
	0% {transform: rotateX(0) rotateY(0); }
	100% {transform: rotateX(-360deg) rotateY(360deg); }
}
*/

/* 英語タイトル */
.en-title {
    font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 767px) {
    /* 共通 */
    .basic-sub-title01 {
        padding: 5px;
    }    
    
    .basic-sub-title01 h3,.basic-sub-title01 h4,.basic-sub-title01 h5 {
        font-size: 1.2em;
    }
}

/* マージン */
.m-top10 {
    margin-top: 10px !important;
}

.m-top20 {
    margin-top: 20px !important;
}

.m-top30 {
    margin-top: 30px !important;
}

.m-top40 {
    margin-top: 40px !important;
}

.m-top60 {
    margin-top: 60px !important;
}

/*** インデント ***/

/* 数字リストテキスト */
.indent-ol-list {
    padding-left: 0px;
    list-style-type: none;
}

.indent-ol-list li {
    padding-left:1em;
	text-indent:-1em;
}

/*** スクロール切り替え　アクティブでフェードイン ***/

/* コンテンツ部分 */
.section-back,
.section-photo {
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  opacity: 0;
}

.section.active .section-back,
.section.active .section-photo
{
  opacity: 1;
}

/* 3d部分 */
.section canvas {
  -webkit-transition: all 5s linear;
  -o-transition: all 5s linear;
  transition: all 5s linear;
  opacity: 0;
}

.section.active canvas
{
  opacity: 1;
}

/* スクロール セクション部分 */
.section {
    position: relative!important;
}

/* 背景3d描画部分 */
.section canvas {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: -1;
}

/* ナビゲーション */
#fp-nav ul li a span {
    background: #0172f5 !important;
}

/* TOPメインのみは除外 
#top-main.section-page {
    opacity: 1;
}*/

/* アイコン */
.pdf-icon {
    max-width: 20px;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 3px;
}

@media screen and (max-width: 1640px) {
    .inner-width {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 1560px) {
    #menu-btn {
        right: 1.5vw;
    }
}

@media screen and (max-width: 1430px) {
    /* ヘッダー */
    #header-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    #header-menu-link-out {
        margin-left: 30px;
    }
    
    #header-menu-link-out li {
        margin-right: 40px;
    }
}
@media screen and (max-width: 1230px) {
    /* ヘッダー */
    #header-menu-link-out li {
        margin-right: 30px;
    }   
}

@media screen and (min-width: 1200px) {
    #sidemenu-out .menu li .sub-menu li a {
      padding-top: 10px;
      padding-bottom: 7px;
    }
}

@media screen and (max-width: 1200px) {
    /* ヘッダー */
    #header-menu-link-out li {
        margin-right: 25px;
    }
}

@media screen and (max-width: 1199px) {
    /* 中ページ　サイドメニュー */
    #sidemenu-out .menu li .sub-menu li {
        border-top: 1px solid #b9b9b9;
    }
    
    /* サービス */
    #top-service-title-out > *:first-child {
        position: absolute;
        top: -90px;
        left: -30px;
        transform: rotateX(-30deg) rotateY(-15deg) rotateZ(-15deg) scale3d(0.8,0.8,0.5);
    }
    
    #top-service-title-out > *:first-child+* {
        top: 80px;
        left: -60px;
        transform: rotateX(-100deg) rotateY(60deg) rotateZ(50deg) scale3d(0.5,0.5,0.5);
    }
    
    #top-service-title-out > *:first-child+*+*+* {
        right: 0px;
    }
    
    /* 会社概要 */
    #top-company-title-out > *:first-child {
        transform: rotateX(-30deg) rotateY(-15deg) rotateZ(-60deg) scale3d(0.3,0.7,0.7);
        left: -70px;
    }
    
    #top-company-title-out > *:first-child+* {
        left: -70px;
        transform: rotateX(-100deg) rotateY(100deg) rotateZ(50deg) scale3d(0.6,0.6,0.6);
    }
    
    #top-company-title-out > *:first-child+*+*+* {
        right: -30px;
        transform: rotateX(-120deg) rotateY(100deg) rotateZ(-50deg) scale3d(0.4,0.1,0.4);
    }
    
    #top-company-title-out > *:first-child+*+* {
        position: absolute;
        top: 360px;
        left: auto;
        right: -20px;
    }
    
    #top-company-title-out > *:first-child+*+*+*+* {
        top: 380px;
    }

    /* ヘッダー */
    #header-menu-link-out {
        display: none;
    }
    
    #header-inner {
        padding-top: 13px;
        padding-bottom: 13px;
    }
    
    #header-sns {
        margin: 0px;
        margin: 4px 40px 0px 0px;
    }
}

@media screen and (max-width: 1140px) {
    #menu-btn {
        transform: scale(0.8,0.8);
    }
}

@media screen and (max-width: 900px) {
    .pdf-icon {
        max-width: 16px;
        margin-bottom: 4px;
    }
    
    .menu__content {
        width: 320px;
    }
    
    /*
    .menu__toggle-label svg:nth-of-type(2) {
        right: 330px;
    }
    */
    
    .menu__toggle:checked ~ .menu__toggle-label svg:nth-of-type(1) {
        right: 330px;
    }
}

@media screen and (max-width: 850px) {
    #footer-link01,#footer-link02 {
        float: none;
    }
}

@media screen and (max-width: 767px) {
    .menu__toggle-label {
        top: 10%;
        right: 20px;
    }  
}

@media screen and (max-width: 720px) {
    #menu-btn {
        right: 2vw;
    }
}

@media screen and (max-width: 600px) {
    /* ヘッダー */
    #header-sns {
        margin: 0px;
        margin: 4px 20px 0px 0px;
    }  
}

@media screen and (max-width: 650px) {
    /* 見出し */
    /* サービス */
    #top-service-title-out > *:first-child {
        top: -70px;
        left: 0px;
        transform: rotateX(-30deg) rotateY(-15deg) rotateZ(-15deg) scale3d(0.6,0.6,0.3);
    }
    
    #top-service-title-out > *:first-child+* {
        top: 10px;
        left: 2.5vw;
        transform: rotateX(-100deg) rotateY(60deg) rotateZ(50deg) scale3d(0.4,0.4,0.4);
    }
    
    #top-service-title-out > *:first-child+*+*+* {
        top: 0px;
        transform: rotateX(-20deg) rotateY(60deg) rotateZ(50deg) scale3d(0.4,0.1,0.4);
    }
    
    #top-service-title-out > *:first-child+*+*+*+* {
        position: absolute;
        top: -50px;
        right: -30px;
        transform: rotateX(20deg) rotateY(-160deg) rotateZ(-20deg) scale3d(0.4,0.4,0.4);
    }
    
    /* 制作実績 */  
    #top-works-title-out > *:first-child {
        transform: rotateX(30deg) rotateY(-30deg) rotateZ(150deg) scale3d(0.5,0.5,0.5);
    }

    #top-works-title-out > *:first-child+*+* {
        transform: rotateX(80deg) rotateY(160deg) rotateZ(140deg) scale3d(0.3,0.3,0.3);
    }
    
    #top-works-title-out > *:first-child+* {
        left: 100px;
        transform: rotateX(100deg) rotateY(-60deg) rotateZ(50deg) scale3d(0.4,0.4,0.4);
    }
    
    #top-works-title-out > *:first-child+*+*+* {
        top: 12px;
        left: 80px;
    }
    
    /* 会社概要 */
    #top-company-title-out > *:first-child {
        top: -75px;
        left: -30px;
    }
    
    #top-company-title-out > *:first-child+* {
        position: absolute;
        top: 0px;
        left: -40px;
        transform: rotateX(-100deg) rotateY(100deg) rotateZ(50deg) scale3d(0.4,0.4,0.4);
    }
    
    #top-company-title-out > *:first-child+*+*+* {
        top: -50px;
        right: -30px;
        transform: rotateX(-120deg) rotateY(-50deg) rotateZ(-70deg) scale3d(0.5,0.5,0.5);
    }
    
    #top-company-title-out > *:first-child+*+*+*+* {
        position: absolute;
        top: 0px;
        right: -60px;
        transform: rotateX(20deg) rotateY(-200deg) rotateZ(-20deg) scale3d(0.4,0.4,0.4);
    }
    
    #top-company-title-out > *:first-child+*+* {
        display: none;
        top: -60px;
        right: 30px;
    }
    
    /* お問い合わせ */
    #top-contact-title-out > *:first-child {
        transform: rotateX(30deg) rotateY(-30deg) rotateZ(-150deg) scale3d(0.4,0.18,0.4);
    }
    
    #top-contact-title-out > *:first-child+*+* {
        position: absolute;
        top: -25px;
        left: -110px;
        transform: rotateX(80deg) rotateY(-50deg) rotateZ(140deg) scale3d(0.5,0.5,0.5);
    }
    
    #top-contact-title-out > *:first-child+* {
        left: 150px;
        transform: rotateX(100deg) rotateY(-60deg) rotateZ(50deg) scale3d(0.6,0.6,0.6);
    }
    
    #top-contact-title-out > *:first-child+*+*+* {
        top: -20px;
        left: 250px;
    }
    
    .top-contact-form-section #companyname,.top-contact-form-section #busyo {
        width: 100% !important;
    }
}

@media screen and (max-width: 550px) {
    /* 見出し */
    /* お問い合わせ */    
    #top-contact-title-out > *:first-child+*+*+* {
        top: -10px;
        left: 140px;
        transform: rotateX(-20deg) rotateY(-40deg) rotateZ(-100deg) scale3d(0.3,0.3,0.3);
    }   
    
    /* フッター */
    #footer-contents {
        padding: 20px 0px 25px;
    }
    
    #footer-link01 {
        float: left;
    }
    
    #footer-link02 {
        float: right;
    }
    
    #footer-link01 li,#footer-link02 li {
        float: none;
    }
    
    #footer-link02 li {
        margin-right: 5px;
    }
}

            
@media screen and (max-width: 500px) {
    .menu__toggle-label {
        top: 11%;
    }    
    
    .menu__content {
        width: 260px;
    }
    
    .menu__toggle:checked ~ .menu__toggle-label svg:nth-of-type(1) {
        right: 270px;
    }
    
    /*
    .menu__toggle-label svg:nth-of-type(2) {
        right: 270px;
    } 
    */
}

@media screen and (max-width: 480px) {
    /* ヘッダー */
    #header-inner {
        padding-top: 10px;
        padding-bottom: 10px;
    }    
    
    .sns-link-out li {
        margin: 0px 8px;
    }
    
    .sns-link-out li img {
        max-width: 20px;
        vertical-align: baseline;
    }
    
    #tbsp-menu-btn {
        margin-top: 7px;
    }
    
    .menu-trigger {
      width: 28px;
      height: 22px;
    }
    .menu-trigger span {
      height: 2px;
    }
    .menu-trigger span:nth-of-type(2) {
      top: 10px;
    }
    
    .menu-trigger.active span:nth-of-type(1) {
      transform: translateY(10px) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(3) {
      transform: translateY(-10px) rotate(45deg);
    }
    
    #menu-btn {
        transform: scale(0.66,0.66);
        top: 40px;
        right: 10px;
    }
}

@media screen and (max-width: 350px) {
    /* ヘッダー */
    #header-sns {
        margin-right: 12px;
    }
    #header-sns.sns-link-out li {
        margin: 0px 5px;
    }
    #header-sns.sns-link-out li img {
        max-width: 16px;
    }
}

/*-----------------------------------------------------	*/
/*	セカンドページ　共通					               */
/*-----------------------------------------------------	*/

/* ヘッダー */
#second-page-wrapper #header-out {
    position: relative;
    min-height: 120px;
}

#second-page-wrapper #header-logo-out {
    position: relative;
    display: inline-block;
}

/* テキスト */
#second-page-wrapper #secondpage-text-out {
    line-height: 1.8em;
    padding-bottom: 40px;
}

.second-text01 {
    margin-left: 10px;
    margin-right: 10px;
}

/* ヘッダー画像 */
#second-page-head {
    display: table;
    width: 100%;
    min-height: 200px;
    width: 100%;
    background-repeat: no-repeat !important;
    padding-left: 20px;
    padding-right: 20px;
}

#second-page-head .middle-title01 {
    display: table-cell;
    vertical-align: middle;
    color: white;
}

/* パンくず */
#pankuzu-out {
    font-size: 90%;
    margin-bottom: 80px;
}

#pankuzu-out #home-icon01 {
    max-width: 18px;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 2px;
}

#pankuzu-out a:active {
    color: #003eee;
}

/* 中見出し */
.middle-title01 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 120%;
}

.middle-title01 h3 {
    display: inline-block;
    text-align: left;
}

.middle-title02 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 140%; 
    border-bottom: 1px solid #be78ee;
    border-image: linear-gradient(to left, #48c6ef 0%, #2b66d1 100%) 1;
    padding-bottom: 10px;
}

.middle-title02 h3 {
    display: inline-block;
    text-align: left;
    color: #be78ee;
  background-image: linear-gradient(to top, #48c6ef 0%, #2b66d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    padding-bottom: 5px;
}

/*
#second-page-wrapper {
    background: url("../images/common/3d-back01.jpg") no-repeat center center;
    background-size: cover;
}
*/

/*** ボタン ***/
.basic-btn01 {
    text-align: center;
}

.basic-btn01 a {
    display: inline-block;
    color: white;
    min-width: 150px;
    padding: 12px 30px 15px 30px;
    text-decoration: none;
    line-height: 1.2em;
    /* 角丸 */
    border-radius:30px;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    /* ホバーゆっくり */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

/* ボタンカラー */
.btn-pink a {
    background: #df5acb;
    transition: 0.5s;
}

.btn-pink a:hover {
    background: #7ee981;
}

/* ボタン02 */
.basic-btn02 {
    text-align: center;
}

.basic-btn02 a {
    position: relative;
    display: inline-block;
    color: white;
    padding: 12px 30px 15px 30px;
    text-decoration: none;
    line-height: 1.2em;
    /* ホバーゆっくり */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

/* ピンク */
.pink-btn02 a {
    background: #df5acb;
    border: 1px solid #df5acb;
}

.pink-btn02 a:hover {
    color: #df5acb;
    background: transparent;
}

.pink-btn02 a:hover .bascic-btn01-arrow path {
    stroke: #df5acb;
}

.bascic-btn02-arrow {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 12px;
    margin: auto;
    fill: white;
}

@media screen and (max-width: 1400px) {
    #second-page-wrapper #header-logo-out {
        left: 0px;
    }
    
    #second-page-wrapper #header-inner {
        padding-left: 10px;
        padding-right: 0px;
    }
}

@media screen and (max-width: 1199px) {
    #pankuzu-out {
        margin-bottom: 40px;
    }
    
    #second-page-wrapper #header-logo-out {
        top: 0px;
    }    
}

@media screen and (max-width: 900px) {
    #second-page-head {
        min-height: 160px;
    } 
}

@media screen and (max-width: 767px) {
    #pankuzu-out {
        margin-bottom: 30px;
    }    
    
    #second-page-head {
        min-height: 120px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    #second-page-head .middle-title01 {
        font-size: 80%;
    }
    
    #jp-logo-text {
        right: 20px !important;
    }
}

@media screen and (max-width: 600px) {
    #second-page-wrapper #header-out {
        min-height: auto;
    }
    
    /* 中見出し */
    .middle-title01 {
        font-size: 100%;
    }
}

@media screen and (max-width: 480px) {
    #second-page-head {
        min-height: 100px;
    }
}

/*-----------------------------------------------------	*/
/*	サイドメニュー付き　テンプレート		　　              */
/*-----------------------------------------------------	*/

#sidemenu-con-out {
    display: flex;
}

#sidemenu-con {
    width: 74%;
    margin-right: 4%;
}

#sidemenu-out {
  position: -webkit-sticky;
  position:sticky;
  top:30px;
  width: 20%;
  height:100%;
}

#sidemenu-out .menu:after {
    content: "";
	display: block;
	clear: both;
}

#sidemenu-out .menu li {
    border: 1px solid #b9b9b9;
    border-bottom: none;
    border-left: none;
    padding-right: 10px;
    padding-left: 10px;
}

#sidemenu-out .menu li:last-child {
    border-bottom: 1px solid #b9b9b9;
}

#sidemenu-out .menu li a {
    display: block;
    color: #393939;
    text-decoration: none;
    padding: 15px 5px 15px 5px; 
}

/* サイドメニュー SVGで矢印設定　fill="%23〇〇〇" 〇に16進カラーコードを入れて色変更可能 */
#sidemenu-out .menu > *:first-child a {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4.05 7.61"><path fill="%238cc63f" d="m.54,7.61c-.14,0-.28-.05-.39-.16-.21-.21-.21-.56,0-.77l2.72-2.68s.08-.1.08-.17-.05-.14-.09-.18L.16.93C-.05.72-.05.37.16.16.37-.05.72-.05.93.16l2.72,2.72c.26.26.4.6.4.95s-.14.69-.4.95L.93,7.45c-.11.1-.24.16-.38.16Z"/></svg>')no-repeat center right 10px / 6px auto;
}

#sidemenu-out .menu > *:first-child+* a {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4.05 7.61"><path fill="%23ef3724" d="m.54,7.61c-.14,0-.28-.05-.39-.16-.21-.21-.21-.56,0-.77l2.72-2.68s.08-.1.08-.17-.05-.14-.09-.18L.16.93C-.05.72-.05.37.16.16.37-.05.72-.05.93.16l2.72,2.72c.26.26.4.6.4.95s-.14.69-.4.95L.93,7.45c-.11.1-.24.16-.38.16Z"/></svg>')no-repeat center right 10px / 6px auto;    
}

#sidemenu-out .menu > *:first-child+*+* a {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4.05 7.61"><path fill="%23ffa61a" d="m.54,7.61c-.14,0-.28-.05-.39-.16-.21-.21-.21-.56,0-.77l2.72-2.68s.08-.1.08-.17-.05-.14-.09-.18L.16.93C-.05.72-.05.37.16.16.37-.05.72-.05.93.16l2.72,2.72c.26.26.4.6.4.95s-.14.69-.4.95L.93,7.45c-.11.1-.24.16-.38.16Z"/></svg>')no-repeat center right 10px / 6px auto;    
}

#sidemenu-out .menu > *:first-child+*+*+* a {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4.05 7.61"><path fill="%231ab1ff" d="m.54,7.61c-.14,0-.28-.05-.39-.16-.21-.21-.21-.56,0-.77l2.72-2.68s.08-.1.08-.17-.05-.14-.09-.18L.16.93C-.05.72-.05.37.16.16.37-.05.72-.05.93.16l2.72,2.72c.26.26.4.6.4.95s-.14.69-.4.95L.93,7.45c-.11.1-.24.16-.38.16Z"/></svg>')no-repeat center right 10px / 6px auto;    
}

#sidemenu-out .menu > *:first-child+*+*+*+* a {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4.05 7.61"><path fill="%23fc1dcf" d="m.54,7.61c-.14,0-.28-.05-.39-.16-.21-.21-.21-.56,0-.77l2.72-2.68s.08-.1.08-.17-.05-.14-.09-.18L.16.93C-.05.72-.05.37.16.16.37-.05.72-.05.93.16l2.72,2.72c.26.26.4.6.4.95s-.14.69-.4.95L.93,7.45c-.11.1-.24.16-.38.16Z"/></svg>')no-repeat center right 10px / 6px auto;    
}

#sidemenu-out .menu > *:first-child+*+*+*+*+* a {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4.05 7.61"><path fill="%23ffe61a" d="m.54,7.61c-.14,0-.28-.05-.39-.16-.21-.21-.21-.56,0-.77l2.72-2.68s.08-.1.08-.17-.05-.14-.09-.18L.16.93C-.05.72-.05.37.16.16.37-.05.72-.05.93.16l2.72,2.72c.26.26.4.6.4.95s-.14.69-.4.95L.93,7.45c-.11.1-.24.16-.38.16Z"/></svg>')no-repeat center right 10px / 6px auto;    
}

#sidemenu-out .menu > *:first-child+*+*+*+*+*+* a {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4.05 7.61"><path fill="%23b536e2" d="m.54,7.61c-.14,0-.28-.05-.39-.16-.21-.21-.21-.56,0-.77l2.72-2.68s.08-.1.08-.17-.05-.14-.09-.18L.16.93C-.05.72-.05.37.16.16.37-.05.72-.05.93.16l2.72,2.72c.26.26.4.6.4.95s-.14.69-.4.95L.93,7.45c-.11.1-.24.16-.38.16Z"/></svg>')no-repeat center right 10px / 6px auto;    
}

#sidemenu-out .menu > *:first-child+*+*+*+*+*+*+* a {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4.05 7.61"><path fill="%234ba952" d="m.54,7.61c-.14,0-.28-.05-.39-.16-.21-.21-.21-.56,0-.77l2.72-2.68s.08-.1.08-.17-.05-.14-.09-.18L.16.93C-.05.72-.05.37.16.16.37-.05.72-.05.93.16l2.72,2.72c.26.26.4.6.4.95s-.14.69-.4.95L.93,7.45c-.11.1-.24.16-.38.16Z"/></svg>')no-repeat center right 10px / 6px auto;    
}

#sidemenu-out .menu > *:first-child+*+*+*+*+*+*+*+* a {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4.05 7.61"><path fill="%23be7a25" d="m.54,7.61c-.14,0-.28-.05-.39-.16-.21-.21-.21-.56,0-.77l2.72-2.68s.08-.1.08-.17-.05-.14-.09-.18L.16.93C-.05.72-.05.37.16.16.37-.05.72-.05.93.16l2.72,2.72c.26.26.4.6.4.95s-.14.69-.4.95L.93,7.45c-.11.1-.24.16-.38.16Z"/></svg>')no-repeat center right 10px / 6px auto;    
}

/* サイドのカラー線 */
#sidemenu-out .menu > *:first-child {
    border-left: 4px solid #8cc63f;
}

#sidemenu-out .menu > *:first-child {
    border-left: 4px solid #8cc63f;
}

#sidemenu-out .menu > *:first-child+* {
    border-left: 4px solid #ef3724;
}

#sidemenu-out .menu > *:first-child+*+* {
    border-left: 4px solid #ffa61a;
}

#sidemenu-out .menu > *:first-child+*+*+* {
    border-left: 4px solid #1ab1ff;
}

#sidemenu-out .menu > *:first-child+*+*+*+* {
    border-left: 4px solid #fc1dcf;
}

#sidemenu-out .menu > *:first-child+*+*+*+*+* {
    border-left: 4px solid #ffe61a;
}

#sidemenu-out .menu > *:first-child+*+*+*+*+*+* {
    border-left: 4px solid #b536e2;
}

#sidemenu-out .menu > *:first-child+*+*+*+*+*+*+* {
    border-left: 4px solid #4ba952;
}

#sidemenu-out .menu > *:first-child+*+*+*+*+*+*+*+* {
    border-left: 4px solid #be7a25;
}

@media screen and (max-width: 1350px) {
    #sidemenu-con {
        float: left;
        width: 72%;
    }

    #sidemenu-out {
        float: left;
        width: 25%;
    }
}

@media screen and (max-width: 1199px) {
    #sidemenu-con-out {
        display: block;
    }
    
    #sidemenu-con {
        float: none;
        margin-right: 0px;
        width: 100%;
    }

    #sidemenu-out {
        float: none;
        width: 100%;
        margin-top: 40px;
    }
    
    #sidemenu-out .menu {
        display: flex;
        flex-wrap: wrap;
    }
    
    #sidemenu-out .menu li {
        width: 50%;
        border-top: none;
        border-bottom: 1px solid #b9b9b9;
    }
    
    #sidemenu-out .menu > *:first-child,
    #sidemenu-out .menu > *:first-child+*
    {
        border-top: 1px solid #b9b9b9;
    }
}

@media screen and (max-width: 767px) {
    #sidemenu-out .menu {
        display: block;
    }
    
    #sidemenu-out .menu li {
        float: none;
        width: 100%;
        max-width: 360px;
        margin: 0px auto;
        border-top: 1px solid #b9b9b9;
        border-bottom: none;
    }
    
    #sidemenu-out .menu li .sub-menu li a {
        padding-top: 10px;
        padding-bottom: 7px;
    }
    
    #sidemenu-out .menu li a {
        padding: 10px 30px 10px 20px;
    }
}

/*-----------------------------------------------------	*/
/*	新着情報関連	　　　　	                               */
/*-----------------------------------------------------	*/

/* 新着情報ヘッダー画像 */
.single-page #second-page-head {
    background: url(https://1web.co.jp/cms/wp-content/uploads/2023/04/header-img01.jpg) center center / cover;
}

.single-page #news-text-out,
#secondpage-text-out {
    background: white;
    min-height: 85vh;
    padding: 40px;
}

.single-page #news-text {
    margin-top: 40px;
}

@media screen and (max-width: 600px) {
    #second-page-wrapper #header-out,
    #secondpage-text-out
    {
        min-height: auto;
    }
    .single-page #news-text-out,
    #secondpage-text-out
    {
        padding: 20px 20px 60px 20px;
    }
    
    .single-page #news-text
    {
        margin-top: 20px;
    }
}

/* 新着一覧 */
#news-list-out {
    margin-top: 40px;
}

#news-list-out > *:first-child {
    border-top: 1px solid #c7c7c7;
}

.news-list-contents {
    border-bottom: 1px solid #c7c7c7;
    padding: 15px 10px;
}

.archive-title {
    margin-bottom: 10px;
}

/* カテゴリ＆時間 */
.news-list-contents .date-category {
    margin-top: 10px;
}

.news-list-contents .category-icon {
    float: none;
}

/* ページャー */
.pager-out {
    padding-top: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.pager-out a {
    text-decoration: none;
    display: inline-block;
    color: white;
    padding: 6px 12px;
    background: #4dd0e1;
}

.pager-out a:hover {
    opacity: 0.8;
    cursor: pointer;
}

.pager-out .current {
    display: inline-block;
    background: #1a4ebb;
    color: white;
    padding: 6px 12px;
}

.pager-out .current:hover {
    opacity: 1;
    cursor: default;
}

@media screen and (max-width: 600px) {
    .pager-out {
        padding-top: 20px;
        margin-bottom: 40px;
    }    
}

/*-----------------------------------------------------	*/
/*	TOP  				                               */
/*----------------------------------------------------	*/

#main-img-out {
    width: 100%;
    height: 100%;
}

#main-img-contents-out {
    display: table;
    margin: auto;
    width: 100%;
    padding-top: 10vw;
    padding-right: 30px;
}

#main-img-left {
    display: table-cell;
    position: relative;
    top: -50px;
    right: -100px;
    width: 50%;
    padding-right: 3%;
    opacity: 0;
    animation-name: fadeIn;
    animation-delay: 0.2s;
    animation-duration: 2s;
    animation-direction: normal;
    animation-fill-mode:forwards;   
}

#main-img-right {
    display: table-cell;
}

#main-pc01 {
    position: absolute;
    top: 60px;
    right: 82px;
    z-index: 1;
    width: 575px;
    max-width: none;
}

#main-tb01 {
    position: absolute;
    max-width: 289px;
    top: 10px;
    right: 530px;
}

#main-tb02 {
    position: absolute;
    top: 420px;
    right: 290px;
    max-width: 231px;
    z-index: 2;
}

#main-sp01 {
    position: absolute;
    max-width: 325px;
    top: 350px;
    right: 480px;
    z-index: 3;
}

#main-win01 {
    position: absolute;
    max-width: 405px;
    top: 180px;
    right: 650px;
}

/* キャッチ */
#main-img-catch {
    max-width: 785px;
}

/*** ボタン ***/

/* お問い合わせ */
#main-img-contact-btn {
    margin-top: 30px;
}

#main-img-contact-btn img {
    max-width: 26px;
    margin-right: 10px;
}

/* 申し込みボタン */
/*
#meeting-btn-triangle {
  position: absolute;
  right: 0px;
  bottom: 5px;
  z-index: 10;
  display: inline-block;
  color: white;
  border-bottom: solid 128px #59df7a;
  border-left: solid 128px transparent;
}
*/

#meeting-btn-circle {
    display: block;
    width: 125px;
    height: 125px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    color: white;
    background: #59df7a;
    font-size: 0.9em;
    text-align: center;
    text-decoration: none;
    /* 角丸 */
    border-radius:120px;
    -webkit-border-radius:120px;
    -moz-border-radius:120px;
    transition: 0.5s;
}

#meeting-btn-circle:hover {
    background: #edee4a;
}

/*
#triangle-svg {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1;    
}
*/

#meeting-btn-inner {
    display: block;
    position: relative;
    z-index: 15;
    margin-top: 15px;
}

#meeting-icon01 {
    margin-left: 10px;
    margin-bottom: 5px;
}

#meeting-btn-text span {
    display: block;
}

#meeting-btn-text {
    display: block;
    line-height: 1.3em;
}

#meeting-icon01 img {
    max-width: 25px;
    margin-right: 12px;
    margin-bottom: 5px;
}

#meeting-btn-text {
    display: block;
}

#meeting-btn-text #application-text {
    letter-spacing: 0.3em;
}

/*
#sp-meeting-text {
    display: none;
    position: absolute;
    display: block;
    width: 80px;
    line-height: 1.2em;
    top: -10px;
    left: 0px;
    right: 0px;
    color: #59df7a;
}
*/

/* ニュースブログ */
.news-kugiri {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 3px;
}

#top-news-blog-out {
    position: relative;
    z-index: 99;
    color: white;
    margin-top: 60px;
    margin-bottom: 50px;
}

#top-news-blog-out .news-date-category {
    font-size: 90%;
    margin-top: 10px;
}

#top-news-blog-out li {
    border-bottom: 1px solid white;
    padding-top: 5px;
    padding-bottom: 10px;
}

#top-news-blog-out a {
    color: white;
    text-decoration: none;
}

#top-news-blog-out a:hover {
    text-decoration: underline;
}

#top-news-blog-out .news-list-text {
    margin-top: 5px;
}

#top-news-blog-title {
    font-size: 150%;
}

#top-news-blog-title a {
    position: relative;
    z-index: 99;
    display: block;
    /* ホバーゆっくり */
    -moz-transition-duration:0.5s;
    -webkit-transition-duration:0.5s;
    -o-transition-duration:0.5s;
    -ms-transition-duration:0.5s;     
}

/*** サービス ***/
#top-service-contents-out {
    position: absolute;
    bottom: 0px;
    width: 95%;
    padding-top: 100px;
    padding-left: 40px;
    margin: auto 0px auto 5vw;
}

#service-contents {
    display: table;
    width: 100%;
    background: white;
    padding-top: 60px;
    padding-bottom: 40px;
}

/* 見出し */
#top-service-title-out {
    display: table-cell;
    width: 20%;
}

#top-service-title-out .first-title-text {
    color: #4dd0e1;
}

#top-works-title-out .first-title-text {
    color: #ff5fa3;
}


/*　ポップアップ */
.featherlight-content { /* 既存上書き */
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.spopup {
    max-width: 660px;
}

.popup-title {
    text-align: center;
    border-bottom: 1px dotted #bbbbbb;
    padding-bottom: 10px;
}

.pop-text-out {
    padding: 0px 10px 10px 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.pop-sample {
    margin-top: 20px;
}

/* ボタン */
#top-service-btn-out {
    display: table-cell;
    position: relative;
    z-index: 20;
}

#top-service-btn-out a {
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: black;
}

#top-service-btn-out .btn-out {
     max-width: 412px;
     margin-right: 30px;
}

#top-service-btn-out #service01 .btn-back {
    background: #ffe467;
}

#top-service-btn-out #service02 .btn-back {
    background: #ffc178;
}

/*
#top-service-btn-out #service03 .btn-back {
    background: #c0f7bb;
}
*/

#top-service-btn-out #service04 .btn-back {
    background: #a7f3ff;
}

#top-service-btn-out #service05 .btn-back {
    background: #ff8fbd;
}

#top-service-btn-out #service06 .btn-back {
    background: #6ab2ee;
}


#top-service-btn-out .btn-title {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.2em;
    line-height: 1.3em;
}

#top-service-btn-out .btn-back {
    position: relative;
    height: 290px;
    min-width: 412px;
    /* 角丸 */
    border-radius:30px;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
}

#top-service-btn .btn-out {
    float: left;
}

#service01-pc {
    position: absolute;
    max-width: 14vw;
    left: 20px;
    bottom: 30px;
    z-index: 1;
}

#service01-sp {
    position: absolute;
    max-width: 3.3vw;
    right: 30px;
    bottom: 30px;
    z-index: 2;
}

#service02-pc {
    position: absolute;
    max-width: 17vw;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: 1;
}

#service02-sp {
    max-width: 5.8vw;
    position: absolute;
    left: 7px;
    bottom: 25px;
    z-index: 2;
}

#service03-logo {
    max-width: 15vw;
}

#service03-win {
    max-width: 596px;
}

#service04-tb {
    max-width: 17.5vw;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}

#service04-hand {
    max-width: 5vw;
}

#service05-pc01 {
    position: absolute;
    max-width: 12.2vw;
    bottom: 20px;
    right: 18px;
    z-index: 2;
}

#service05-pc02 {
    max-width: 12vw;
    position: absolute;
    left: 3.7vw;
    bottom: 75px;
    z-index: 1;
}

#service05-sp {
    max-width: 2.6vw;
    position: absolute;
    left: 2vw;
    bottom: 35px;
    z-index: 3;
}

#service06-pc {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 20px;
    margin: auto;
    max-width: 13vw;
}

#service06-sp {
    max-width: 3vw;
    position: absolute;
    left: 40px;
    bottom: 35px;
    z-index: 2;
}

#service06-theta {
    max-width: 2.3vw;
    position: absolute;
    right: 45px;
    bottom: 22px;
    z-index: 3;
}

/* ボタンマージン調整 */
#top-service-btn > *:first-child+*+*,
#top-service-btn > *:first-child+*+*+*+*+*
{
    margin-right: 0px;
}

/* 画像設定 */

/* 背景ga4ウィンドウ */
#service03 .btn-back {
    background: url("../images/top/service03-win.png") no-repeat center center #c0f7bb;
    background-size: 145%; 
}

#service03-logo {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: 1;
}

#service03-win {
    /*
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    */
    /*
    background-clip: content-box;
    -webkit-background-clip: content-box;
    */  
}

/* 指 */
#service04 .btn-back::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: 1;
    background: url("../images/top/service04-hand.png") no-repeat center bottom -20px;
    background-size: 27% auto;
    /* 角丸 */
    border-radius:30px;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
}

/*** 制作実績 ***/
/* 区切り写真 */
.section-photo {
    display: block;
    width: 100%;
    padding-bottom: 33vh;
}

#section-photo01 {
    background: url("../images/top/section-photo01.jpg") no-repeat center center;
    background-size: cover;
}

#top-works-contents-out {
    right: 0px;
    bottom: 4vh;
    width: 95%;
    height: 66vh;
    background: white;
    padding-top: 30px;
    padding-left: 40px;
    margin-bottom: 30px;
    margin-left: 5vw;
}

/* スライダー */
#top-works-slider-out {
    margin-top: 4vh;
    padding-right: 35px;
}

#works-slide li {
    padding: 0px 20px;
    /* ホバーゆっくり */
    -moz-transition-duration:1s;
    -webkit-transition-duration:1s;
    -o-transition-duration:1s;
    -ms-transition-duration:1s; 
}

#works-slide li:hover {
    opacity: 0.8;
}

#works-slide li a {
    text-decoration: none;
    color: #0391ce;
}

.slide-works-name-out {
    text-align: center;
    padding-right: 5vw;
    line-height: 1.7em;
}

.movie-works .slide-works-name-out {
    padding-right: 0px;
}

.slide-works-name {
    display: block;
    font-size: 1.2em;
    margin-top: 15px;
    letter-spacing: 0.1em;
}

#top-works-slider-out .link-icon01 {
    max-width: 15px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
}

.slide-works-url {
    display: block;
    font-size: 0.9em;
    line-height: 1.4em;
}

/* スライド矢印 */
#slide01-left-arrow {
    position: absolute;
    top:-60px;
    right: 79px;
    max-width: 39px;
    cursor: pointer;
}

#slide01-right-arrow {
    position: absolute;
    top:-60px;
    right: 30px;
    max-width: 39px;
    cursor: pointer;
}

/* 会社概要 */
#top-company-contents-out {
    right: 0px;
    bottom: 0px;
    width: 80%;
    background: white;
    margin-top: 20px;
    margin-left: 20vw;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 50px;
    padding-bottom: 80px;
}

#top-company-contents-inner {
    position: relative;
}

#top-company-title-out {
    display: table-cell;
    width: 300px;
}

#top-company-contents {
    display: table-cell;
    width: 76%;
    line-height: 1.6em;
}

#top-company-contents ul > *:first-child {
    padding-top: 0px !important;
}

#top-company-contents .company-section {
    border-bottom: 1px solid #c8c8c8;
    padding-top: 10px;
    padding-bottom: 12px;
    padding-left: 1em;
}

#top-company-contents h3 {
    font-size: 90%;
}

#office-photo01 {
    max-width: 470px;
    position: absolute;
    bottom: 17vh;
    left: -22.5vw;
}

#top-company-contents #top-shihonkin {
    position: relative;
    border-bottom: 0px;
}

#top-company-contents #top-shihonkin {
    border-bottom: none;
}

#top-shihonkin h3 {
    display: inline-block;
    margin-right: 1em;
}

#smart-sme-ban {
    position: absolute;
    bottom: 20px;
    right: 0px;
    max-width: 257px;
}

/*** お問い合わせ ***/
#top-contact-contents-out {
    margin: 40px auto 0px;
    width: 95%;
    background: white;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 60px;
}

#top-contact-title-out {
    top: 40px;
    left: 30px;
}

#top-contact-contents-inner {
    position: relative;
    height: 100%;
    width: 100%;
}

#top-contact-left {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 35%;
}

#top-contact-right {
    display: table-cell;
    width: 63%;
    padding-left: 2%;
}

#top-cotact-photo {
    max-width: 630px;
    position: relative;
    top: 14vh;
    left: -60px;
    z-index: 2;
}

#top-contact-text {
    text-align:center;
}

#top-contact-text span {
    display: inline-block;
    text-align: left;
}

.top-contact-form-section {
    display: table;
    width: 100%;
    margin-bottom: 20px;
}

.top-contact-form-section dt {
    display: table-cell;
    width: 20%;
    padding-right: 5px;
}

.top-contact-form-section dt .cation {
    color: #f88484;
    font-size: 80%;
}

.top-contact-form-section dd {
    display: table-cell;
    width: 80%;
}

.top-contact-form-section input[type="text"],
.top-contact-form-section input[type="email"] {
    background: #f2f2f2;
    border: none;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
}

#contact-textarea {
    display: block;
}

#contact-textarea dt {
    display: block;
    width: 100%;
    padding-top: 10px;
    margin-bottom: 10px;
}

#contact-textarea dd {
    display: block;
    width: 100%;
    margin-left: 0px;
}

#contact-textarea textarea {
    width: 100%;
    height: 10em;
    line-height: 1.6em;
    background: #f2f2f2;
    border: none;
    padding: 10px;
    border-radius:4px;
    font-size: 16px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
}

#form-btn-out01 {
    margin-top: 20px;
    text-align: center;
}

#top-contact-form {
    margin-top: 40px;
}

.mw_wp_form [type=submit] {
    line-height: 2em;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 40px;
    color: white;
    letter-spacing: 0.1em;
    cursor: pointer;
    background: #4dd0e1;
    background-size: 7px 12px;
    border: 1px solid #4dd0e1;
    /* ホバーゆっくり */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

.mw_wp_form [type=submit]:hover {
    background: white;
    color: #4dd0e1;
    border: 1px solid #4dd0e1;
    background-size: 7px 12px;
    color: #4dd0e1;
}

#top-contact-form button[name="submitBack"] {
    color: #4dd0e1;
    background: white;
    background-size: 7px 12px;
    border: 1px solid #4dd0e1;
}

#top-contact-form button[name="submitBack"]:hover {
    color: white;
    background: #4dd0e1;
    background-size: 7px 12px;
}

/*
#top-contact-form [type=submit] {
    line-height: 2em;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 60px;
    color: white;
    border: none;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: 1px solid #4dd0e1;
    background: #4dd0e1;
    background-size: 7px 12px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

*/

#top-contact-job input {
    width: 45%;
}

/*
#top-contact-tel input {
    width: 26%;
}
*/

/* エラーメッセージ */
.main-error-message {
    display: none;
    position: relative;
    top: 15px;
    color: #B70000;
    text-align: center;
}

.main-error-message span {
    display: inline-block;
    text-align: left;
}

.main-error-message.show-error {
    display: block;
}

@media screen and (min-width: 1921px) {
    /* サービス */
    #top-service-btn {
        max-width: 62vw;
    }
    
    #service05-pc01 {
        max-width: 10vw;
    }    
    
    #service05-pc02 {
        max-width: 11vw;
    }
    
    /* 制作実績 */
    .section-photo {
        20vh;
    }
    
    #top-works-contents-out {
        height: 80vh;
    }
}

@media screen and (max-width: 1750px) {
    /* サービス */
    #top-service-contents-out {
        padding-left: 0px;
    }
    
    #top-service-btn-out .btn-back {
        height: 19vw;
        min-width: 22vw;
    }
}

@media screen and (max-width: 1750px) {
    /* 会社概要 */
    #office-photo01 {
        max-width: 32vw;
        left: -26vw;
    }
}

@media screen and (max-width: 1600px) {
    /* メインイメージ */
    #main-img-left {
        right: -160px;
    }
    
    #main-img-left {
        transform: scale(0.8);
    }
}

@media screen and (max-width: 1400px) {
    /* 会社概要 */
    #top-company-contents-out {
        width: 90%;
        margin-left: 10vw;
    }
    
    #office-photo01 {
        left: -15vw;
    }
}

@media screen and (max-width: 1300px) {
    /* お問い合わせ */
    #top-contact-title-out {
        left: 0px;
    }
    
    #top-contact-left {
        width: 25%;
    }

    #top-contact-right {
        width: 73%;
    }
    
    #top-contact-text br {
        display: none;
    }
    
    #contact-textarea {
        padding-top: 0px;
    }
    
    #contact-textarea dt {
        padding-top: 0px;
    }
}


@media screen and (max-width: 1250px) {
    #smart-sme-ban {
        position: static;
        margin-top: 10px;
    }
}

@media screen and (max-width: 1199px) {
    /* 共通 見出し */
    .basic-title01-v {
        transform: scale(0.8);
    }    
    
    .basic-title01 {
        transform: scale(0.8);
        top: -65px;
    }
    
    /* サービス */
    #top-service-contents-out {
        width: 97%;
    }
    
    #top-service-btn-out .btn-title {
        font-size: 1em;
    }
    
    #top-service-contents-out {
        padding-top: 60px;
    }
    
    #top-service-btn-out .btn-back {
        height: 22vh;
        min-width: 34vw;
    }
    
    /* ボタンマージン調整 */    
    #top-service-btn > *:first-child+*+*
    {
        margin-right: 30px;
    }
    
    /*　ボタン見出し */
    /*
    #top-service-btn-out .btn-title {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    */
    
    /* サービス画像調整 */
    #service01-pc {
        max-width: 18vw;
        top: 0px;
        bottom: 0px;
        left: 5vw;
        margin: auto;
    }
    
    #service01-sp {
        max-width: 5vw;
        right: 5vw;
        bottom: 4vh;
    }
    
    #service02-pc {
        max-width: 22vw;
    }
    
    #service02-sp {
        max-width: 6vw;
        left: 2.8vw;
    }
    
    #service03-logo {
        max-width: 20vw;
    }
    
    #service04-tb {
        max-width: 27vw;
    }
    
    #service05-pc02 {
        max-width: 19vw;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        margin: auto;
        z-index: 1;
    }
    
    #service05-pc01 {
        max-width: 15vw;
        bottom: 3vh;
        right: 2vw;
    }
    
    #service05-sp {
        max-width: 4vw;
        left: 4vw;
        bottom: 3vh;
    }
    
    #service06-pc {
        max-width: 20vw;
    }
    
    #service06-theta {
        max-width: 4vw;
        bottom: 3vh;
    }
    
    #service06-theta {
        max-width: 3vw;
        bottom: 1.5vh;
    }
    
    /* 制作実績 */
    #top-works-title-out {
        top: 20px;
    }
    
    /* 会社概要 */
    #top-contact-contents-out {
        width: 92%;   
    }
    
    #top-company-contents {
        font-size: 90%;
    }
    
    /* お問い合わせ */
    #top-contact-text {
        font-size: 90%;
    }
    
    #top-contact-contents-out {
        padding-right: 20px;
    }
    
    .top-contact-form-section dt {
        font-size: 80%;
        line-height: 1.2em;
    }
}

@media screen and (max-width: 1050px) {
    #top-works-slider-out {
        margin-top: 8vh;
    }
}

@media screen and (max-width: 980px) {
    /* 会社概要 */
    #top-company-contents-out {
        width: 97%;
        margin-left: 7vw;
    }
    
    #top-company-title-out {
        width: 200px;
    }
    
    #top-company-contents {
        width: 95%;
    }
    
    #smart-sme-ban {
        max-width: 220px;
    }
    
    #office-photo01 {
        display: none;
    }
    
    /* お問い合わせ */
    #top-contact-contents-out {
        padding-bottom: 20px;
    }
    
    #top-contact-title-out {
        top: 0px;
        max-width: 40vw;
        margin: 0px auto;
    }
    
    #top-contact-title-out .jp-title {
        text-align: center;
    }
    
    #top-contact-left {
        display: block;
        width: 100%;
    }
    
    #top-contact-right {
        display: block;
        width: 100%;
        padding-left: 0px;
    }
    
    #top-cotact-photo {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    /* 共通　ミーティングボタン */
    #meeting-btn-circle {
        width: 104px;
        height: 104px;
        right: 10px;
        bottom: 10px;
        font-size: 0.7em;
    }    
}

@media screen and (max-width: 850px) {
    /* 共通 */
    /* スクロールして表示 */
    .section-page {
      -webkit-transition: all 2s linear;
      -o-transition: all 2s linear;
      transition: all 2s linear;
      opacity: 0;
    }
    
    .section-page.active {
        opacity: 1
    }

    
    /* メインイメージ */
    #main-img-contents-out {
        display: block;
        padding-top: 16vh;
    }
    
    #main-img-contents-inner {
        position: relative;
    }
    
    #main-img-left {
        display: block;
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        width: 100%;
        height: 45vh;
        margin: auto;
        transform: scale(0.9);
    }
    
    #main-img-left-inner {
        position: relative;
    }
    
    #main-img-right {
        position: relative;
        bottom: 40px;
        z-index: 21;
        display: block;
        height: 82vh;
        float: none;
        text-align: center;
    }
    
    #main-img-catch {
        position: relative;
        left: 30px;
        max-width: 85vw;
    }
    
    #main-img-contact-btn {
        margin-top: 20px;
    }

    #top-news-blog-out {
        position: absolute;
        bottom: 30px;
        left: 0px;
        right: 0px;
        margin: auto;
        z-index: 20;
        max-width: 90vw;
        margin: 35vh auto 0px;
        padding-left: 20px;
    }
    
    #top-news-blog-out li {
        display: table;
        width: 100%;
        text-align: left;
    }
    
    .news-date-category,.news-list-text {
        display: table-cell;
    }
    
    .news-date-category {
        min-width: 13em;
        padding-right: 1em;
    }
    
    /* サービス */
    #top-service-btn-out .btn-back {
        /* 角丸 */
        border-radius:20px;
        -webkit-border-radius:20px;
        -moz-border-radius:20px;        
    }
    
    #service06-theta {
        bottom: 3.1vh;
    }    
    
    /* お問い合わせ */
    #top-contact-contents-out {
        width: 100%;
        padding-left: 20px;
        height: auto;
        padding-bottom: 40px;
    }
}


@media screen and (max-width: 767px) {    
    /* 共通 */
    
    /* スクロールナビ */
    #fp-nav.right {
        right: 10px !important;
    }
    
    /* ミーティングボタン */
    #meeting-btn-circle {
        width: 56px;
        height: 56px;
    }
    
    #meeting-btn-inner {
        margin: 0px;
    }
    
    #meeting-btn-text {
        display: table;
        width: 56px;
        height: 56px; 
    }
    
    #meeting-text,#application-text {
        display: none !important;
    }
    
    #meeting-icon01 {
        display: table-cell !important;
        vertical-align: middle;
        text-align: center;
        margin: 0px;
        width: 100%;
        height: 100%;
    }
    
    #meeting-icon01 img {
        max-width: 28px;
        margin-right: 0px;
        margin-bottom: 0px;
    }
    /*
    #sp-meeting-text {
        display: block;
    }
    */
    
    /* ヘッダー */
    #header-logo-out {
        left: 20px;
    }
    
    #jp-logo-text {
        right: 100px;
    }
    
    /* お問い合わせ */
    .top-contact-form-section dd {
        width: 100%;
    }
    
    .top-contact-form-section dd {
        width: 100%;
    }
    
    /* 会社概要 */
    #top-company-contents-out {
        width: 95%;
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 5vw;
    }
    
    /* お問い合わせ */
    #top-contact-contents-out {
        margin-top: 20px;
    }
}

@media screen and (max-width: 650px) {
    /* 共通 縦書き文字 */
    .basic-title01-v-inner {
        position: relative;
        z-index: 20;
        left: 0px;
        writing-mode: horizontal-tb;
        vertical-align: middle;
        display: inline-block;
    }
    
    /* メインイメージ */
    #main-img-contents-out {
        padding-top: 19vh;
    }
    
    #main-img-left {
        /*
        top: 30vh;
        */
        left: 40vw;
        transform: scale(0.7);
    }
    
    #main-img-right {
        height: 87vh;
    }
    
    #top-news-blog-out {
       margin: 45vh auto 0px;
       bottom: 20px;
       font-size: 90%;
    }
    
    #top-news-blog-out li {
        display: block;
    }
    
    .news-date-category,.news-list-text {
        display: block;
    }
    
    .news-date-category {
        min-width: none;
        padding-right: 0px;
    }
    
    #top-news-blog-out .news-list-text {
        /* １行に収まらなければ省略 */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* サービス */
    #top-service-contents-out {
        position: static;
        width: 96%;
        padding-top: 0px;
        margin-top: 10px;
    }
    
    #service-contents {
        padding-top: 0px;
    }
    
    #top-service-title-out {
        width: 100%;
    }
    
    #top-service-btn .btn-out {
        width: 48%;
    }
    
    #top-service-btn-out {
        display: block;
        padding-left: 20px;
        padding-right: 30px;
    }
    
    #top-service-btn-out .btn-back {
        height: 16vh;
        min-width: auto;
        width: 100%;
    }
    
    #top-service-btn .btn-out {
        margin-right: 4%;
    }
    
    #top-service-btn > *:first-child+*,
    #top-service-btn > *:first-child+*+*+*,
    #top-service-btn > *:first-child+*+*+*+*+*
    {
        margin-right: 0px;
    }
    
    #top-service-title-out {
        display: block;
    }
    
    #top-service-btn-out .btn-title {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    /* サービス画像 */
    #service01-pc {
        max-width: 30vw;
        left: 4vw;
    }
    
    #service01-sp {
        max-width: 9vw;
        right: 2vw;
        bottom: 1vh;
    }
    
    #service02-pc {
        max-width: 38vw;
    }
    
    #service02-sp {
        max-width: 10.5vw;
        left: 2vw;
        bottom: 1vh;
    }
    
    #service03-logo {
        max-width: 34vw;
    }
    
    #service04-tb {
        max-width: 37vw;
    }
    
    #service04 .btn-back::after {
        background: url(../images/top/service04-hand.png) no-repeat center bottom 0px;
        background-size: 33% auto;
    }
    
    #service05-pc02 {
        max-width: 28vw;
    }
    
    #service05-sp {
        max-width: 7vw;
        left: 4vw;
    }
    
    #service05-pc01 {
        max-width: 23vw;
        bottom: 2vh;
    }
    
    #service06-pc {
        max-width: 28vw;
    }
    
    #service06-sp {
        max-width: 7vw;
        left: 2vw;
    }
    
    #service06-theta {
        max-width: 5vw;
        right: 2.5vw;
        bottom: 3vh;
    }
    
    /* 会社概要 */
    #top-company-contents-out {
        height: 98%;
        background: white;
        padding-top: 20px;
        padding-left: 10px;
        padding-right: 30px;
    }    
    
    #top-company-contents {
        display: block;
        width: 100%;
        font-size: 80%;
    }
    
    #top-company-title-out {
        display: block;
        width: 100%;
    }
    
    #top-company-contents .company-section {
        padding-left: 5px;
    }
    
    /* お問い合わせ */
    #top-contact-form {
        margin-top: 20px;
    }
    
    .top-contact-form-section dt {
        width: 35%;
    }

    .top-contact-form-section dt .cation {
        font-size: 65%;
    }
    
    #top-contact-job input {
        width: 100%;
    }
    
    .main-error-message {
        top: 7px;
        font-size: 90%;
    }
}

@media screen and (max-width: 550px) {
    #main-img-left {
        height: auto;
    }
    
    #main-img-catch {
        max-width: 90vw;
    }
    
    .basic-title01-v,.basic-title01 {
        font-size: 70%;
    }
    
    #smart-sme-ban {
        bottom: auto;
        max-width: 32vw;
    }
}

@media screen and (max-width: 500px) {
    /* ヘッダー */
    #header-logo {
        width: 160px;
        height: 42px;
    }
    
    #logo-sub-text {
        font-size: 0.5em;
        letter-spacing: 0em;
    }
    
    #tbsp-menu-btn {
        top: 20px;
        right: 20px;
    }
    
    #jp-logo-text {
        top: 20px;
        right: 60px;
        font-size: 0.8em;
        letter-spacing: 0em;
    }
}

@media screen and (max-width: 480px) {
    /* メインイメージ */
    #main-img-left {
        bottom: 50px;
        transform: scale(0.5);
    }
    
    /* サービス */
    #service06-sp {
        bottom: 20px;
    }
    
    #service06-theta {
        bottom: 10px;
    }
    
    /* 制作実績 */
    #slide01-left-arrow {
        top: -50px;
        right: 64px;
        max-width: 34px;
    }
    
    #slide01-right-arrow {
        max-width: 34px;
        top: -50px;
        right: 20px;
    }
    
    /* 会社概要 */
    #top-company-contents-out {
        padding-bottom: 30px;
    }
    
    #top-company-contents {
        line-height: 1.8em;
    }
}

@media screen and (max-width: 400px) {
    #top-contact-form [type=submit] {
        font-size: 14px;
    }
    
    #contact-textarea textarea {
        height: 6em;
    }
}

@media screen and (max-width: 380px) {
    /* メインイメージ */
    #main-img-left {
        transform: scale(0.4);
        bottom: 120px;
    }
    
    /* 制作実績 */
    .slide-works-name {
        font-size: 100%;
        line-height: 1.2em;
        margin-top: 10px;
    }  
    
    /* お問い合わせ */
    #top-contact-text {
        font-size: 80%;
        line-height: 1.5em;
    }
    
    .top-contact-form-section {
        margin-bottom: 10px;
    }
    
    .top-contact-form-section input[type="text"] {
        padding: 5px;
    }
    
    .top-contact-form-section input[type="email"] {
        padding: 5px;
    }
    
    #form-btn-out01 {
        margin-top: 10px;
    }
}

@media screen and (max-width: 375px) {
    /* メインイメージ */
    #main-img-catch {
        padding-top: 10px;
    }
    
    #top-news-blog-out {
        bottom: 10px;
    }    
}

@media screen and (max-width: 350px) {
    /* ヘッダー */
    #header-logo {
        width: 120px;
        height: 32px;
    }
    
    #logo-sub-text {
        display: block;
        line-height: 1.5em;
        margin-bottom: 5px;
        padding-left: 15px;
    }
    
    #logo-sub-text span {
        display: block;
        letter-spacing: 0.76em;
        margin-top: 1px;
    }
    
    #logo-sub-text br {
        display: inline;
    }
    
    /* お問い合わせ */
    .top-contact-form {
        margin-top: 10px;
    }
}

/*-----------------------------------------------------	*/
/*	プライバシーポリシー					                 */
/*-----------------------------------------------------	*/

.privacy-text {
    margin-top: 10px;
    margin-bottom: 30px;
}


/*-----------------------------------------------------	*/
/*	お問い合わせ　確認＆サンクスページ					                               */
/*-----------------------------------------------------	*/

#check-page-out .top-contact-form-section {
    margin-bottom: 0px;
    border: 1px solid #caf1f9;
    border-top: none;
}

#check-page-out #top-contact-form {
    max-width: 1000px;
    margin: 0px auto;
}

#check-page-out #top-contact-form > *:first-child {
    border-top: 1px solid #caf1f9;
}

#check-page-out .top-contact-form-section dt {
    display: table-cell !important;
    background: #e7fafd;
    padding: 10px 10px 10px 20px;
    width: 20% !important;
}

#check-page-out .top-contact-form-section dd {
    display: table-cell !important;
    padding: 10px 10px 10px 20px;
    width: 80% !important;
}

.top-contact-form-section #companyname,.top-contact-form-section #busyo {
    width: 70%;
}

#check-page-out #form-btn-out01 {
    margin-top: 20px;
}

#check-page-out #form-btn-out01 button {
    margin-bottom: 10px;
}

#home-back {
    margin-top: 40px;
}

@media screen and (max-width: 1199px) {
    #check-page-out .top-contact-form-section dt {
        font-size: 100%;
    }    
}

@media screen and (max-width: 600px) {
    #check-page-out #top-contact-form {
        font-size: 80%;
    }
    
    #check-page-out .top-contact-form-section dt {
        padding-left: 10px;
    }

    #check-page-out .top-contact-form-section dd {
        padding-left: 10px;
    }
    
    #check-page-out .top-contact-form-section dt {
        width: 35% !important;
    }

    #check-page-out .top-contact-form-section dd {
        width: 65% !important;
    }
    
    /* サンクスページのみ */
    .thanks .middle-title01 {
        margin-top: 15vh !important;
    }
}
