@charset "utf-8";

/*================================================================================================
/
/  パソコン用表示設定 
/
/=================================================================================================
/  ページ全体に関する設定
/================================================================================================*/
body {
  font-family: "游ゴシック","ヒラギノ角ゴシック","メイリオ","Meiryo","arial unicode ms", sans-serif;
  margin: 0;
  margin-top: 150px;
  padding: 0;
  color: #333333;
  line-height: 30px;
}
p,h1,h2,h3,h4,h5,h6 {
  margin-top: 0;
  margin-bottom: 0;
}
img {
  vertical-align: bottom;
}
ul {
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
  text-decoration: none;
}
ul {
  border-left: 0.1vw solid #CCC;
  border-right: 0.1vw solid #ccc;
}
li {
  display: inline-block;
}
dl {
  overflow: auto;
}
dt {
  font-weight: bold;
  float: left;
  margin: 0 0 0 0;
}
dd {
  margin: 0 0 0 0;
  border-bottom: 0.1vw solid #eaeaea;
}
table {
  border-collapse: collapse;
}
header {
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  position: fixed;
  z-index: 1000;
  background-color: white;
  border-bottom: 1px solid rgb(199, 198, 198);
}
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}
.center {
  font-size: 18px;
  text-align: center; 
}
.akamoji {
  color: #f00;
}
.tel {
  font-size: 28px;
  font-weight: bold;
  float: right;
} 
.main-center {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 50px;
}

/*===========================
/  ヘッダーの設定
/===========================*/
.container {
  display: flex; /* フレックスボックスで要素を横並びにする */
  justify-content: space-between; /* 要素の間にスペースを均等に配置 */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; /* コンテナを中央に配置 */
}
.box {
  padding: 0;
  background-color: #fff;
  width: 35%; /* 各ボックスの幅を30%に設定 */
  text-align: right;
  box-sizing: border-box; /* パディングを含めたサイズを計算 */
}
.logo {
  display: block;
  margin: 20px auto 0 auto;
  width: 62vw;
  height: 4.5vw;
}
.logo img {
  width: 32%;
}
.menu {
  position: relative;
  height: 20px;
  max-width: 90%;
  margin: 0 auto;
  border: none;
}
.menu > li {
  font-size: 18px;
  font-weight: bold;
  float: left;
  text-align: center;
  width: 20%; /* グローバルナビ6つの場合 */
  line-height: 4vw;
}
.menu > li a {
  display: block;
}
ul.menu__second-level {
  font-size: 18px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.menu__second-level a {
  border-top: 1px solid silver;
}
.menu__second-level a:hover {
  color:#036cf7;
  opacity: 1;
}
/*===========================
/  スマホ用ナビゲーション
/============================
/　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 20px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #BBBBBB;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
nav.globalMenuSp {
  font-size: 22px;
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba( 71,70,73,0.6 );
  text-align: center;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}
/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  transform: translateX(0%);
}
#NavPC {
  display: block;
}
.hamburger {
  display: none;
}
/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 0 0 0.7vw;
    border-right: 1px solid #111;
    border-bottom: 1px solid #111;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}
.menu:after {
    clear: both;
}
.menu {
  zoom: 1;
}
.menu > li.menu__single {
    position: relative;
}
li.menu__single ul.menu__second-level {
    position: absolute;
    top: 6vh;
    width: 100%;
    background: #FFF;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
li.menu__single:hover ul.menu__second-level {
    top: 8vh;
    visibility: visible;
    opacity: 1;
}

/*===========================
/  フッターの設定
/===========================*/
footer {
  font-family: "メイリオ", "游ゴシック", "YuGothic", "游ゴシック体", sans-serif;
  text-align: center;
  color: black;
  background-color: rgb(233, 233, 233);
  height: 250px;
}

footer small {
  font-size: 12px;
}
.logofoot {
  display:block; 
  float: left;
}
footer img {
  width: 330px;
  margin-top: 20px;
  margin-left: 100px;
}
.logofoot p {
  display:block; 
  text-align: left;
  align-items: left;
  margin-top: 10px;
  margin-left: 100px;
}
.pagemark {
  font-size: 12px;
  text-align: left;
  margin: 0 0 0 300px;
  padding-top: 10px;
  border: none;
}
.pagemark li {
  margin: 20px 50px 0 50px;
}
.subpagemark {
  display: flex;
 }
.software {
  font-size: 12px;
  display: block;
  text-align: left;
  margin: 0 0 20px 50px;
  border: none;
  width: 100px;
}
.company {
  font-size: 12px;
  display: block;
  text-align: left;
  float: left;
  margin: 0 0 20px 205px;
  border: none;
  width: 100px;
}

/*===========================
/  トップページの設定
/===========================*/
#logo_loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1001;
  background-color: #FFF;
}
#logo_loader .f_logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 40vw;
  height: 10vw;
  text-align: center;
  color: #fff;
}
#logo_loader .f_logo img {
  width: 100%;
  height: auto;
}
#logo_loader .f_logo:before {
  content: "";
  display: block;
  width: 100%;
  height: 170%;
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 100%;
  animation: loadLogo 1.5s;
}
@keyframes loadLogo {
  0% {
    left: 0;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
#logo_loader .f_logo:before {
  animation: loadLogo 1.5s;
}
#logo_loader.open {
  animation-name: slideOut;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 2s;
}
@keyframes slideOut {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.newslink a {
  font-size: 20px;
  font-weight: bold;
  background-color: #191970;
  color: #ffffff;
  width: 160px;
  display: block;
  text-align: center;
  margin: 40px auto;
  padding: 5px 0;
  border-radius: 0.5vw;
}
.newstop {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  background-color: #87ceeb;
  padding: 15px 0;
}
.topitem {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  background-color: #87ceeb;
  padding: 15px 0;
}
.topitem2 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 2.5vw 0 1.5vw 0;
}

#block3 {
  text-align: center;
}
#block3 .topinquiry {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  background-color: #87ceeb;
  padding: 15px 0;
}
.topinquiry2 {
  font-size: 18px;
  margin: 20px;
}
.pagelink a {
  font-size: 20px;
  font-weight: bold;
  background-color: #191970;
  color: #ffffff;
  width: 240px;
  height: 60px;
  margin: auto;
  border-radius: 0.5vw;
  display: flex;
	justify-content: center;
	align-items: center;
}
.phone {
  color: #009cd3;
}
.topinquiry3 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin: 20px;
}
.topinquiry4 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: auto;
}
/* トップ・取扱商品共通 */
.itemthree {
  width: 40%;
  display: block;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 60px;
}
.product {
  font-size: 18px;
  width: 95%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  justify-content: space-between;
}
.product_box {
  width: 45%;
  margin-bottom: 50px;
  text-align: justify;
  float: left;
}
.productImg {
  width: 60%;
  display: block;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
.productTitle {
  font-size: 20px;
  font-weight:bold;
  background: #036cf7;
  color: #FFF;
  text-align: center;
  padding: 5px 0;
}

/*===========================
/  各ページ見出しの設定
/===========================*/
.pagetop {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  background-color: #191970;
  background-size: 100% auto;
  color: #ffffff;
  padding: 4vw;
}
.pagetopitem {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  background-size: 100% auto;
  color: #ffffff;
  padding: 4vw;
  background-image: url(../images/gahag-0056095312.jpg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}
.pagetopquestion {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  background-size: 100% auto;
  color: #ffffff;
  padding: 4vw;
  background-image: url(../images/gahag-0067979387.jpg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}
.pagetopnews {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  background-size: 100% auto;
  color: #ffffff;
  padding: 4vw;
  background-image: url(../images/traffic-332857_960_720.jpg);
  background-color: rgba(0,0,0,0.6);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}
.pagetopcompany {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  background-size: 100% auto;
  color: #ffffff;
  padding: 4vw;
  background-image: url(../images/gahag-0083173700.jpg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}
.pagetopstudio, .pagetopkirokuboD {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-size: 100% auto;
  color: #ffffff;
  padding: 2vw;
  background-image: url(../images/gahag-0056095312.jpg);
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: black;
}
.pagetopstudioname, .pagetopbdstudio2, .pagetopkirokuboDname {
  font-size: 40px;
}
.pagetopstudioprice, .pagetopbdstudio3, .pagetopkirokuboDprice {
  font-size: 18px;
  color: #ff8c00;
}
.pagetopinquiry {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  background-size: 100% auto;
  color: #ffffff;
  padding: 4vw;
  background-image: url(../images/gahag-0025678500.jpg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}
.pagetopsupport {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  background-color: #191970;
  background-size: 100% auto;
  color: #ffffff;
  padding: 4vw;
  background-image: url(../images/gahag-0106692158.jpg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

/*===========================
/  ニュースページの設定
/===========================*/
.news-list{
  font-size: 18px;
  list-style: none outside;
  margin: 0;
  padding: 0 20vw;
}
.news-list .item{
  display: inline-flex;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 20px;
  width: 60vw;
}
.news-list .item:first-child a{
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  min-width: 140px;
  color: #000000;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title{
  color: #00F;
}
.news span {
  font-size: 1.2vw;
  content: "new!";
  margin-left: 2vw;
  color: #f00;
}
/* ニュース内容 */
.rimotework th {
  font-size: 18px;
  border: 0.1vw solid #b7b7b7;
  width: 15vw;
}
.rimotework td {
  font-size: 18px;
  border: 0.1vw solid #b7b7b7;
  width: 60vw;
}
.rimotework {
  margin: 0.5vw 10vw;
}
.rimotework tr:nth-child(2n) {
  background: #ecfafc;
}
.Ncompany {
  font-size: 18px;
  margin: 2.5vw 20vw;
}
.Ncompany dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw;
  margin: 0 5vw;
}
.Ncompany dd {
  padding: 1vw;
  margin: 0 5vw;
  border-bottom: 0.1vw solid #000000;
}
.Nmap {
  margin: 0 10vw;
}

/*===========================
/  取扱商品ページの設定
/===========================*/
#item .itemtop {
  font-size: 18px;
  text-align: center;
  padding: 2vw;
}
#item .itemthree {
  display: inline-block;
  justify-content: center;
  align-items: center;
  margin: 0 5vw;
}
#item .itemclick {
  font-size: 18px;
  text-align: center;
  padding: 2vw;
  color: #0000ff;
}
#item .Crlogo {
  display: inline-block;
  animation-name: ▲▲▲▲;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
  margin: 0 0 0 10vw;
}
#item .Frlogo {
  display: inline-block;
  animation-name: ▲▲▲▲;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
  margin: 0 5vw 0 0;
}
@keyframes ▲▲▲▲ {
  0% {
    transform: translate(0,0.2vh);
  }
  100% {
    transform: translate(0,0.1vh)
  }
}
/* クリエイト/フロンティア工房ページの設定 */
.subtitle {
  font-size: 28px;
  font-weight: bold;
  margin: 0 500px 0 500px;
  text-align: center;
  background-color: #A4C6FF;
  border-radius: 0.7vw;
  padding: 15px 0;
} 
.studiofunction dl {
  display: flex;
  margin-top: 60px;
}
.cogniimage {
  width: 250px;
  height: 115px;
}
.boltimagetop {
  width: 50px;
  margin: -7px 0 0 150px;
  float: left;
}
.boltimage {
  width: 50px;
  margin: 37px 0 0 150px;
  float: left;
}
.boltimagebottom {
  width: 50px;
  margin: 50px 0 0 150px;
  float: left;
}
.QRimagePC {
  margin: 0 0 0 70px;
}
.QRimageSP {
  display: none;
}
.hiddenimgSP {
  display: none;
}
.studiofunction dt {
  font-size: 20px;
  margin-left: 5px;
  text-align: center;
  color: darkblue;
}
.studiofunction dd {
  font-size: 18px;
  margin-left: 5px;
  clear: left;
  border-bottom: none;
}
.studiofunction a {
  font-size: 18px;
  color: #0000ff;
}
.alignment {
  width: 300px;
  display: block;
  margin: 20px auto;
  text-align: center;
}
.Cooperation2 dl {
  border-bottom: none;
}
.Cooperation2 dd {
  font-size: 18px;
  margin: 0 10vw;
  clear: left;
  border-bottom: none;
}
.Cooperation2 dt {
  font-size: 20px;
  margin: 0 10vw;
  text-align: center;
  color: darkblue;
}
.spectable {
  margin: 1vw 26.5vw;
  border: 0.1vw solid #b7b7b7;
}
.spectable th {
  border: 0.1vw solid #b7b7b7;
  width: 10vw;
}
.spectable td {
  font-size: 18px;
  border: 0.1vw solid #b7b7b7;
  width: 35vw;
}
.specguide {
  font-size: 14px;
  margin: 0 26.5vw;
}
/* 記録簿DIRECTORページの設定 */
.kirokuboDfunction {
  font-size: 18px;
  margin: 0 10vw;
}
.kirokuboDfunction dl dt {
  text-align: center;
  color: #191970;
}
.kirokuboDfunction dl dd {
  clear: both;
}

/*===========================
/  会社概要ページの設定
/===========================*/
#company .companyinfo th {
  font-size: 18px;
  border: 0.1vw solid #b7b7b7;
  width: 15vw;
}
#company .companyinfo td {
  font-size: 18px;
  border: 0.1vw solid #b7b7b7;
  width: 55vw;
}
#company .companyinfo {
  margin: 0.5vw 15vw;
}
#company .companyinfo tr:nth-child(2n) {
  background: #ecfafc;
}
.map {
  padding: 1vw 1vw;
}
#company .company1 {
  font-size: 20px;
  font-weight: bold;
  margin-left: 20px;
}
#company .company2 {
  font-size: 18px;
  margin-left: 20px;
}
#company .gmap_iframe {
  width: 97%;
  height: 500px;
  margin-left: 20px;
  border: none;
}

/*===========================
/  サポートページの設定
/===========================*/
#support .supportlink {
  margin: 1.5vw 0 0 24.8vw;
}
.sentinellink a {
  font-size: 20px;
  font-weight: bold;
  margin: 20px;
  display: flex;
	justify-content: center;
}

/*===========================
/  問い合わせページの設定
/===========================*/
#inquiry .btn {
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
  text-align: center;
  margin-bottom: 30px;
}
.message {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

/*===========================
/  免責事項ページの設定
/===========================*/
#discharge .dischargetop {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  background-color: #eaeaea;
  margin: 0.5vw 20vw 0 20vw;
  padding: 0.5vw 0;
}
#discharge .discharge {
  font-size: 18px;
  margin: 0 20vw;
  padding: 1vw;
  border: 0.1vw solid #eaeaea;
}

/*===========================
/  プライバシーポリシーページの設定
/===========================*/
#privacy .main-center2 {
  font-size: 28px;
  text-align: center;
  padding: 0.5vw 20vw 0 20vw;
}
#privacy .privacytop {
  font-size: 28px;
  font-weight: bold;
  margin: 0 20vw;
  padding: 0.5vw;
  background-color: #eaeaea;
}
#privacy .privacy {
  font-size: 18px;
  margin: 0 20vw 1.5vw 20vw;
  padding: 1vw;
  border: 0.1vw solid #eaeaea;
}

/*===========================
/  サイトマップページの設定
/===========================*/
#sitemap .sitemap ul {
  border: none;
}
#sitemap .sitemap ul li {
  font-size: 1.6vw;
  display: block;
}
#sitemap .sitemap .leftbox {
  margin: 0 55% 0 25%;
  position: absolute;
}
#sitemap .sitemap .leftbox li {
  color: #333333;
  border-left: solid 6px #2d8fdd;/*左側の線*/
  background: #f1f8ff;/*背景色*/
  margin-bottom: 3px;/*下のバーとの余白*/
 	line-height: 1.5;
  	padding: 0.5em;
  list-style-type: none!important;/*ポチ消す*/
}
#sitemap .sitemap .leftbox li:hover {
  opacity: 0.5;
}
#sitemap .sitemap .rightbox {
  margin: 0 25% 0 55%;
  position: relative;
}
#sitemap .sitemap .rightbox li {
  color: #333333;
  border-left: solid 6px #2d8fdd;/*左側の線*/
  background: #f1f8ff;/*背景色*/
  margin-bottom: 3px;/*下のバーとの余白*/
 	line-height: 1.5;
  padding: 0.5em;
  list-style-type: none!important;/*ポチ消す*/
}
#sitemap .sitemap .rightbox li:hover {
  opacity: 0.5;
}


/*================================================================================================
/
/  スマートフォン用表示設定 
/
/================================================================================================*/
@media screen and (max-width: 480px) {
  body {
    margin-top: 80px;
  }
  /*===========================
  /  ヘッダー
  /===========================*/
  header {
    height: 80px;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
  .container {
    margin: 10px;
  }
  .logo img {
    width: 100%;
    margin-top: 10px;
    margin-left: 10px;
  }
  .tel {
    display: none;
  }
  #panel-btn {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff;
  }
  /* ナビゲーション */
  #NavPC {
    display: none;
  }
  .hamburger {
    display: block;
  }

  /*===========================
  /  フッター
  /===========================*/
  footer {
    height: 357px;
  }
  footer img {
    width: 65%;
    margin-left: 20px;
  }

  .logofoot p {
    margin-left: 70px;
    margin-bottom: 20px;
  }
  .pagemark, .company {
    display: none;
  }
  .subpagemark {
    display: block;
  }
  .software {
  margin: 0 0 0 75px;
  }
  /*===========================
  /  トップページ
  /===========================*/
  #logo_loader .f_logo {
    width: 80%;
  }

  /*===========================
  /  各ページ見出し
  /===========================*/
  .pagetop,.pagetopitem,.pagetopquestion,.pagetopnews,.pagetopcompany,.pagetopstudio,.pagetopbdstudio,.pagetopkirokuboD,.pagetopsupport,.pagetopinquiry {
    padding: 30px 0;
  }

  /*===========================
  /  ニュースページ
  /===========================*/
  .newstop {
    margin-left: 20px;
    margin-right: 20px;
  }
  .news-list{
    margin-left: 5px;
    padding: 0 5px;
    display: block;
  }
  .news-list .item{
    display: block;
    margin: 0;
    width: 90%;
  }
  .news-list .item .date{
    margin: 0;
    padding: 0;
    min-width: 70px;
  }
  .news-list .item .title{
    margin: 0;
    padding: 0;
    width: 92%;
  }

  /*===========================
  /  取扱商品ページ
  /===========================*/
  .topitem {
    margin-left: 20px;
    margin-right: 20px;
  }
  .topitem2 {
    text-align: left;
    line-height: 6.2vw;
    margin: 0 8vw 0 8vw;
  }  
  .topitem3 td {
    font-size: 360%;
    line-height: 6.2vw;
    margin: 15vw 0;
  }
  .product_box {
    width: 90%;
    margin-left: 20px;
  }
  .itemthree {
    width: 90%;
  }
  #item .Crlogo, #item .Frlogo {
    display: none;
  }
  #item .itemthree {
    margin: 10px 20px;
  }
  #item .itemtop {
    text-align: left;
    margin: 10px 20px;
  }
  /* クリエイト工房・フロンティア工房 */
  .subtitle {
    margin: 0 20px 0 20px;
  }
  .studiofunction dl {
    display: block;
    margin-top: 20px;
  }
  .studiofunction dl img {
    width: 90%;
    height: 90%;
  }
  .boltimagetop {
    width: 10%;
    margin: 17px 0 0 10px;
  }
  .boltimage {
    width: 10%;
    margin: 21px 0 0 10px;
  }
  .boltimagebottom {
    width: 10%;
    margin: 35px 0 0 10px;
  }
  .QRimagePC {
    display: none;
  }
  .QRimageSP {
    display: block;
    margin: 0 0 0 10px;
  }
  .hiddenimgSP {
    display: none;
  }
  .studiofunction dt {
    text-align: left;
    margin-left: 5px;
    margin-top: 20px;
  }
  .studiofunction dd {
    text-align: left;
    margin-left: 0;
    margin-right: 20px;
  }
  .Cooperation2 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .Cooperation2 dl dt {
    margin: 0 auto;
  }
  .Cooperation2 dl dd {
    margin: 10px auto;
  }
  .spectable {
    margin: 20px;
  }
  .spectable th {
    width: 30vw;
  }
  .spectable td {
    width: 100vw;
  }
  .specguide {
    margin: 0 20px;
  }
  /* 記録簿DIRECTOR */
  .kirokuboDfunction {
    width: 92%;
    margin-left: 20px;
  }
  .kirokuboDfunction dl dt {
    margin: 0;
  }

.main-center {
    margin: 30px 20px;
  }
.center {
  margin-left: 20px;
    margin-right: 20px;
}

  /*===========================
  /  会社概要ページ
  /===========================*/
  #company .companyinfo {
    width: 92%;
    margin-left: 20px;
  }
  #company .companyinfo th {
    font-size: 14px;
    width: 25vw;
  }
  #company .companyinfo td {
    font-size: 14px;
    width: 100vw;
  }
  #company .gmap_iframe {
    width: 90%;
    height: 300px;
  }

  /*===========================
  /  サポートページ
  /===========================*/
  #support .pagelink {
    display: none;
  }
  #support .sentinellink {
    display: none;
  }

  /*===========================
  /  お問い合わせページ
  /===========================*/
  #block3 .topinquiry {
    margin-left: 20px;
    margin-right: 20px;
  }
  #block3 .topinquiry4 {
    margin-left: 20px;
    margin-right: 20px;
  }
}
