@charset "UTF-8";

/* ------------------------------------------------------------------
	Font&Link
-------------------------------------------------------------------*/
html {
  color: #231815;
  position: relative;
}

a {
  color: #231815;
  text-decoration: none;
}

a {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

a i {
  margin-right: 0.2em;
}

a:hover {
  color: #A9AF00;
}

a img {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

a:hover img {
  opacity: 0.4;
}

.touchHover,
.noTapColor,
button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.f-oswald {
  font-family: 'oswald', san-serif;
}

@media only screen and (max-width:640px) {
  a img {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none;
  }

  a:hover img {
    opacity: 1;
  }
}


/* ------------------------------------------------------------------
	Headline Pattern
-------------------------------------------------------------------*/
@media only screen and (min-width:641px) {
  .bt_detail {
    text-align: center;
    font-size: 22px;
    margin: 0px auto 30px;
    width: 480px;
  }

  .bt_detail a {
    border-radius: 3px;
    background: #A9AF00;
    border: solid 1px #A9AF00;
    color: #FFF;
    padding: 20px;
    display: block;
  }

  .bt_detail a i {
    margin-right: 10px;
  }

  .bt_detail a:hover {
    background: #fff;
    border: solid 1px #A9AF00;
    color: #A9AF00;
  }

  .bt_detail_bw {
    text-align: center;
    font-size: 22px;
    margin: 0px auto 10px;
    width: 480px;
  }

  .bt_detail_bw a {
    border-radius: 3px;
    background: #8AA8B7;
    border: solid 1px #8AA8B7;
    color: #FFF;
    padding: 20px;
    display: block;
  }

  .bt_detail_bw a i {
    margin-right: 10px;
  }

  .bt_detail_bw a:hover {
    background: #FFF;
    border: solid 1px #8AA8B7;
    color: #8AA8B7;
  }
}

@media only screen and (max-width:640px) {
  .bt_detail {
    text-align: center;
    width: 100%;
    margin: 0px auto;
  }

  .bt_detail a {
    background: #A9AF00;
    border: solid 1px #A9AF00;
    color: #FFF;
    padding: 15px 5px;
    width: 100%;
    border-radius: 2px;
    display: block;
  }

  .bt_detail a i {
    margin-right: 10px;
  }

  .bt_detail a:hover {
    background: #fff;
    border: solid 1px #A9AF00;
    color: #A9AF00;
  }

  .bt_detail_bw {
    text-align: center;
    width: 100%;
    margin: 0px auto 30px;
  }

  .bt_detail_bw a {
    background: #8AA8B7;
    border: solid 1px #8AA8B7;
    color: #FFF;
    padding: 15px 5px;
    width: 100%;
    border-radius: 2px;
    display: block;
  }

  .bt_detail_bw a i {
    margin-right: 10px;
  }

  .bt_detail_bw a:hover {
    background: #fff;
    border: solid 1px #8AA8B7;
    color: #8AA8B7;
  }
}

/* ------------------------------------------------------------------
	Button Pattern
-------------------------------------------------------------------*/
.btRotate a i {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btRotate a:hover i {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}


/* ------------------------------------------------------------------
	Toggle
-------------------------------------------------------------------*/
#acMenu dt.tab {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  background: url(../img/icon_open.png) no-repeat 98% 50% #ccc;
}

#acMenu dt.tab.active {
  background: url(../img/icon_close.png) no-repeat 98% 50%#ccc;
}

#acMenu dd {
  background: #f2f2f2;
  padding: 10px;
  width: 100%;
  display: none;
  margin-bottom: 20px;
}


/* ------------------------------------------------------------------
	Form
-------------------------------------------------------------------*/
input,
select,
textarea,
button {
  font: 16px Arial, Helvetica, sans-serif;
  vertical-align: middle;
  color: #333333;
  height: 35px;
}

textarea {
  height: auto !important;
}

input:focus,
select:focus,
textarea:focus {
  color: #000000;
}

input[type="text"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  background: #EFEFEF;
  font-weight: normal;
  outline: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border: 1px solid #41210f;
}

input[type="checkbox"],
input[type="radio"] {
  width: 1.5em;
  -moz-transform-origin: right bottom;
  -moz-transform: scale(1, 1);
  -webkit-transform-origin: right bottom;
  -webkit-transform: scale(1, 1);
}

input[type="button"] {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

input[type="button"]:hover {
  opacity: 0.4;
  cursor: pointer;
}

select {
  width: 100%;
}

input[type="file"] {
  width: 100%;
  font-size: 12px;
}

.caution {
  display: block;
  padding: 5px;
  margin: 5px 0px 10px;
  border: solid 1px #de0000;
  color: #de0000;
  font-size: 12px;
}

.example {
  color: #666;
  font-size: 12px;
}

.must {
  color: #de0000;
  padding-right: 0.2em;
}

@media only screen and (max-width:640px) {
  input[type="button"]:hover {
    opacity: 1;
  }
}


/* ------------------------------------------------------------------
	Table
-------------------------------------------------------------------*/



/* ------------------------------------------------------------------
	Base
-------------------------------------------------------------------*/
body {
  min-width: 1000px;
  position: relative;
}

#contents {}

.innerW_100 {
  width: 100%;
  padding-bottom: 60px;
}

.innerW_fix {
  width: 1000px;
  margin: 0 auto;
}

h3 {
  text-align: center;
  font-size: 2em;
  line-height: 1.5em;
  margin-bottom: 30px;
}

h3 span {
  font-family: 'oswald', san-serif;
  font-size: medium;
}

h4 {
  text-align: center;
  font-size: 1.5em;
  line-height: 1.5em;
  margin-bottom: 10px;
}

h4 span {
  font-size: 1em;
  line-height: 1.5em;
  font-family: 'oswald', san-serif;
}

#bread {
  padding: 10px 0px;
  width: 1000px;
  margin: 0px auto;
}

#bread li {
  float: left;
  padding-right: 10px;
}

@media only screen and (max-width:640px) {
  body {
    min-width: 320px;
  }

  .innerW_fix {
    width: 90%;
    text-align: justify;
    text-justify: inter-ideograph;
  }

  .innerW_100 {
    width: 100%;
    padding-bottom: 0px;
  }

  h3 {
    text-align: center;
    font-size: 1.2em;
    line-height: 1.4em;
    margin-bottom: 20px;
  }

  h3 span {
    font-size: 0.6em;
    line-height: 1.3em;
  }

  #bread {
    display: none;
  }
}

/* ------------------------------------------------------------------
	Header
-------------------------------------------------------------------*/
#header {
  width: 100%;
  min-width: 1000px;
  height: 90px;
  background: #FFF;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid #CCC;
}

.headerInner {
  min-width: 1000px;
  height: 90px;
  position: relative;
}

.headerInner #logo {
  width: 190px;
  height: 90px;
  float: left;
}

.headerInner #tel {
  width: 190px;
  height: 90px;
  float: right;
  margin-right: 30px;
  padding: 20px 0px;
}

.headerInner #menuSp {
  display: none;
}

.headerInner #phonedial {
  display: none;
}

@media only screen and (max-width:640px) {
  #header {
    min-width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid #CCC;
  }

  .headerInner {
    min-width: 100%;
    height: 50px;
  }

  .headerInner #logo {
    height: 50px;
  }

  .headerInner #logo img {
    width: 50%;
  }

  .headerInner #tel {
    display: none;
  }

  .headerInner #phonedial {
    display: block;
    position: absolute;
    top: 10px;
    right: 55px;
  }

  .headerInner #phonedial i {
    margin-right: 5px;
    line-height: 1em;
    font-size: 2.2em;
  }

  .headerInner #menuSp {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .headerInner #menuSp img {
    width: 25px;
  }
}


/* ------------------------------------------------------------------
	Navi
-------------------------------------------------------------------*/
#navi {
  display: inline-block;
  float: left;
  font-family: 'oswald', san-serif;
}

#navi li {
  height: 90px;
  line-height: 90px;
  font-size: 14px;
  float: left;
}

#navi li a {
  display: block;
  padding: 0 2.0em;
}

#navi li a:hover,
#navi li a.active {
  background: #000;
  color: #fff;
}

#navi ul.child {
  display: none;
  position: absolute;
  padding: 0;
  z-index: 999;
  top: 80px;
}

#navi ul.child li {
  width: 200px;
  height: 50px;
  line-height: 50px;
  float: none;
  background-color: #ffff00;
  text-align: left;
  font-size: 14px;
  border-top: solid 1px #faed00;
  border-right: none;
}

#navi ul.child li a {
  display: block;
  padding: 0 10px;
}

#navi ul.child li a:hover {
  background-color: #000;
  color: #fff;
}

#naviSp {
  border-left: solid 1px #ddd;
  height: 100%;
  margin-top: 50px;
}

#naviSp ul li {
  border-top: solid 1px #eee;
}

#naviSp ul li:last-child {
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
}

#naviSp ul li.sub {
  border-bottom: none;
}

#naviSp ul li a {
  display: block;
  padding: 10px;
  color: #FFF;
}

#naviSp ul.child li {
  background-color: #eee;
  border-top: solid 1px #ccc;
  border-bottom: none;
}

#naviSp ul.child li a {
  padding-left: 1em;
}

@media only screen and (max-width:640px) {
  #navi {
    display: none;
  }
}

/* ------------------------------------------------------------------
	Bunner
-------------------------------------------------------------------*/
.bunner {
  margin: 0 auto;
}

.fixd {
  margin: 0 auto;
  width: 500px;
}

.fixd_img {
  max-width: 100%;
  padding-bottom: 20%;
}

@media screen and (max-width: 480px) {
  .fixd {
    width: 300px;
    padding-bottom: 20px;
  }

  .fixd_img {
    max-width: 100%;
  }
}

/* ------------------------------------------------------------------
	Top
-------------------------------------------------------------------*/
/* Keyv
-------------------------------------------------------------------*/
@media only screen and (min-width:641px) {
  #keyv {
    width: 100%;
    height: 500px;
    background-image: url(../img/bg_keyv01.png);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    margin-bottom: 30px;
    margin-top: 90px;
    text-align: center;
  }

  #keyv .keyvInner {
    position: relative;
    width: 1000px;
    margin: 0px auto;
    text-align: center;
    padding: 60px 20px;
  }

  #keyv .keyvInner h2#mainwords {
    font-size: 2em;
    line-height: 1.5em;
    margin-bottom: 30px;
  }

  .keyvInner #feature {
    width: 960px;
    margin-bottom: 30px;
  }

  .keyvInner #feature li {
    width: 310px;
    border: 5px solid #000;
    margin-right: 15px;
    float: left;
    background-color: rgba(255, 255, 255, 0.7);
  }

  .keyvInner #feature li:last-child {
    margin-right: 0px;
  }

  .keyvInner .pricebase {
    width: 320px;
    margin: 0px auto;
  }
}

@media only screen and (max-width:640px) {
  #keyv {
    width: 100%;
    height: 200px;
    background-image: url(../img/bg_keyv01.png);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    margin-top: 50px;
  }

  #keyv .keyvInner {
    position: relative;
    width: 100%;
    margin: 0px auto;
    text-align: center;
    padding: 20px 10px;
  }

  #keyv .keyvInner img {}

  #keyv .keyvInner h2#mainwords {
    font-size: 1em;
    line-height: 1.5em;
    margin-bottom: 10px;
  }

  .keyvInner #feature {
    width: 100%;
    margin-bottom: 15px;
  }

  .keyvInner #feature li {
    width: 30%;
    border: 2px solid #000;
    margin-right: 5%;
    float: left;
    background-color: rgba(255, 255, 255, 0.7);
  }

  .keyvInner #feature li:last-child {
    margin-right: 0px;
  }

  .keyvInner .pricebase {
    width: 50%;
    margin: 0px auto;
  }
}

/*	usesArea
-------------------------------------------------------------------*/
#usesArea {
  width: 100%;
  padding: 30px 0;
  background: #FFF;
}

#usesArea .uses {
  width: 960px;
  position: relative;
  margin: 0px auto;
}

#usesArea .uses .usesBox {
  text-align: center;
  background: #F7F7F7;
}

#usesArea .uses .usesBox dl {
  width: 100%;
}

#usesArea .uses .usesBox dl dt {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

#usesArea .uses .usesBox dl dt img {
  width: 100%;
}

#usesArea .uses .usesBox dl dd.purpose {
  padding: 10px 0px;
  font-size: 18px;
  line-height: 20px;
}

#usesArea .uses .usesBox dl dd.purpose span {
  font-size: 11px;
  color: #8AA8B8;
  font-family: 'oswald', san-serif;
}

#usesArea .uses .usesBox dl dd.text,
#studiosArea .text,
#newsArea .text {
  padding: 0px 15px 15px;
  font-size: 12px;
  line-height: 1.5em;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media only screen and (max-width:640px) {
  #usesArea {
    width: 100%;
    padding-top: 40px;
    background: #FFF;
  }

  #usesArea .uses {
    width: 100%;
    padding: 0px !important;
    position: relative;
    height: 400px;
    /* 360px */
  }

  #usesArea .uses .usesBox dl dt {
    width: 100%;
    height: 250px;
    /* 180px */
    margin: 0px auto;
    overflow: hidden;
  }

  #usesArea .uses .usesBox dl dt img {
    width: 100%;
  }

  #usesArea .uses .usesBox dl dd.purpose {
    padding: 10px 0px 0px;
    font-size: 1.3em;
    line-height: 1em;
  }

  #usesArea .uses .usesBox dl dd.purpose span {
    font-size: 0.5em;
    color: #8AA8B8;
  }

  #usesArea .uses .usesBox dl dd.text {
    padding: 1em;
    font-size: 0.9em;
    line-height: 1.5em;
  }

  #arrows {
    display: none !important;
  }
}


/*	priceArea
-------------------------------------------------------------------*/
@media only screen and (min-width:641px) {
  #priceArea {
    width: 100%;
    padding: 60px 0;
    background: #FFF;
  }

  #priceArea .mainImage {
    width: 100%;
    height: 400px;
    position: relative;
    background: url(../img/img-priceImage.jpg) no-repeat 50% 50%;
    background-size: cover;
    text-align: center;
    margin: 0px auto 100px;
  }

  #priceArea .mainImage .pricebox {
    position: absolute;
    top: 320px;
    left: 50%;
    margin-left: -50%;
    width: 100%;
  }

  #priceArea .bt_detail {
    text-align: center;
    font-size: 22px;
  }

  #priceArea .bt_detail a {
    border-radius: 5px;
    background: #A9AF00;
    border: solid 1px #A9AF00;
    color: #FFF;
    padding: 1em 3em;
  }

  #priceArea .bt_detail a i {
    margin-right: 10px;
  }

  #priceArea .bt_detail a:hover {
    background: #fff;
    border: solid 1px #A9AF00;
    color: #A9AF00;
  }

  #priceArea .tableWrap {
    width: 800px;
    margin: 0px auto 40px;
  }

  #priceArea .tableWrap table {
    border-collapse: collapse;
    width: 390px;
    margin-right: 20px;
    float: left;
    font-size: 18px;
  }

  #priceArea .tableWrap table:last-child {
    margin-right: 0px;
  }

  #priceArea .tableWrap table th {
    border-collapse: collapse;
  }

  #priceArea table th {
    padding: 10px;
    border: solid 1px #ccc;
  }

  #priceArea table td {
    padding: 10px;
    border: solid 1px #ccc;
    font-family: 'oswald', san-serif;
    color: #840001;
    font-size: 22px;
  }

  #priceArea table th {
    font-weight: normal;
    background: #F7F7F7;
    white-space: nowrap;
  }

  #priceArea table th.tabletitle {
    font-weight: normal;
    white-space: nowrap;
    text-align: center;
    color: #FFF;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
    background-image: -webkit-linear-gradient(top, #444, #000);
    background-image: -moz-linear-gradient(top, #444, #000);
    background-image: -ms-linear-gradient(top, #444, #000);
    background-image: -o-linear-gradient(top, #444, #000);
    background-image: linear-gradient(top, #444, #000);
    border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    border: none;
    -webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    font-size: 14px;
  }
}

@media only screen and (max-width:640px) {
  #priceArea {
    width: 100%;
    background: #FFF;
    padding-top: 80px;
    padding-bottom: 60px;
  }

  #priceArea .mainImage {
    width: 100%;
    background: none;
    text-align: center;
    margin: 0px auto;
  }

  #priceArea .mainImage .pricebox {
    width: 80%;
    margin: -15px auto 15px;
    z-index: 50;
  }

  #priceArea .bt_detail {
    text-align: center;
    width: 90%;
    margin: 0px auto;
  }

  #priceArea .bt_detail a {
    background: #A9AF00;
    border: solid 1px #A9AF00;
    color: #FFF;
    padding: 1.2em 2.0em;
    width: 100%;
    border-radius: 2px;
  }

  #priceArea .bt_detail a i {
    margin-right: 10px;
  }

  #priceArea .bt_detail a:hover {
    background: #fff;
    border: solid 1px #A9AF00;
    color: #A9AF00;
  }

  #priceArea .tableWrap {
    width: 95%;
    margin: 0px auto 20px;
  }

  #priceArea .tableWrap table {
    border-collapse: collapse;
    width: 100%;
    font-size: 13px;
    margin-bottom: 20px;
  }

  #priceArea .tableWrap table th {
    border-collapse: collapse;
    text-align: center;
    padding: 5px;
    border: solid 1px #ccc;
  }

  #priceArea table th {
    font-weight: normal;
    background: #F7F7F7;
    white-space: nowrap;
  }

  #priceArea table th.tabletitle {
    font-weight: normal;
    white-space: nowrap;
    text-align: center;
    color: #FFF;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
    background-image: -webkit-linear-gradient(top, #444, #000);
    background-image: -moz-linear-gradient(top, #444, #000);
    background-image: -ms-linear-gradient(top, #444, #000);
    background-image: -o-linear-gradient(top, #444, #000);
    background-image: linear-gradient(top, #444, #000);
    border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    border: none;
    -webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    font-size: 14px;
  }

  #priceArea table td {
    padding: 5px;
    border: solid 1px #ccc;
    font-family: 'oswald', san-serif;
    color: #840001;
    font-size: 22px;
    text-align: center;
  }
}

/*	kitchenArea
-------------------------------------------------------------------*/
@media only screen and (min-width:641px) {
  #kitchenArea {
    width: 100%;
    padding: 60px 0;
    background: #FFF;
  }

  #kitchenArea .mainImage {
    width: 100%;
    height: 400px;
    position: relative;
    background: url(../img/kitchen_top.jpg) no-repeat 50% 50%;
    background-size: cover;
    text-align: center;
    margin: 0px auto 100px;
  }

  #kitcheneArea .mainImage .kitchenbox {
    position: absolute;
    top: 320px;
    left: 50%;
    margin-left: -50%;
    width: 100%;
  }

  #kitchenArea .bt_detail {
    text-align: center;
    font-size: 22px;
  }

  #kitchenArea .bt_detail a {
    border-radius: 5px;
    background: #A9AF00;
    border: solid 1px #A9AF00;
    color: #FFF;
    padding: 1em 3em;
  }

  #kitchenArea .bt_detail a i {
    margin-right: 10px;
  }

  #kitchenArea .bt_detail a:hover {
    background: #fff;
    border: solid 1px #A9AF00;
    color: #A9AF00;
  }

  #kitchenArea .tableWrap {
    width: 800px;
    margin: 0px auto 40px;
  }

  #kitchenArea .tableWrap table {
    border-collapse: collapse;
    width: 390px;
    margin-right: 20px;
    float: left;
    font-size: 18px;
  }

  #kitchenArea .tableWrap table:last-child {
    margin-right: 0px;
  }

  #kitchenArea .tableWrap table th {
    border-collapse: collapse;
  }

  #kitchenArea table th {
    padding: 10px;
    border: solid 1px #ccc;
  }

  #kitchenArea table td {
    padding: 10px;
    border: solid 1px #ccc;
    font-family: 'oswald', san-serif;
    color: #840001;
    font-size: 22px;
  }

  #kitchenArea table th {
    font-weight: normal;
    background: #F7F7F7;
    white-space: nowrap;
  }

  #kitchenArea table th.tabletitle {
    font-weight: normal;
    white-space: nowrap;
    text-align: center;
    color: #FFF;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
    background-image: -webkit-linear-gradient(top, #444, #000);
    background-image: -moz-linear-gradient(top, #444, #000);
    background-image: -ms-linear-gradient(top, #444, #000);
    background-image: -o-linear-gradient(top, #444, #000);
    background-image: linear-gradient(top, #444, #000);
    border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    border: none;
    -webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    font-size: 14px;
  }
}

@media only screen and (max-width:640px) {
  #priceArea {
    width: 100%;
    background: #FFF;
    padding-top: 80px;
  }

  #priceArea .mainImage {
    width: 100%;
    background: none;
    text-align: center;
    margin: 0px auto;
  }

  #priceArea .mainImage .pricebox {
    width: 80%;
    margin: -15px auto 15px;
    z-index: 50;
  }

  #priceArea .bt_detail {
    text-align: center;
    width: 90%;
    margin: 0px auto;
  }

  #priceArea .bt_detail a {
    background: #A9AF00;
    border: solid 1px #A9AF00;
    color: #FFF;
    padding: 1.2em 2.0em;
    width: 100%;
    border-radius: 2px;
  }

  #priceArea .bt_detail a i {
    margin-right: 10px;
  }

  #priceArea .bt_detail a:hover {
    background: #fff;
    border: solid 1px #A9AF00;
    color: #A9AF00;
  }

  #priceArea .tableWrap {
    width: 95%;
    margin: 0px auto 20px;
  }

  #priceArea .tableWrap table {
    border-collapse: collapse;
    width: 100%;
    font-size: 13px;
    margin-bottom: 20px;
  }

  #priceArea .tableWrap table th {
    border-collapse: collapse;
    text-align: center;
    padding: 5px;
    border: solid 1px #ccc;
  }

  #priceArea table th {
    font-weight: normal;
    background: #F7F7F7;
    white-space: nowrap;
  }

  #priceArea table th.tabletitle {
    font-weight: normal;
    white-space: nowrap;
    text-align: center;
    color: #FFF;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
    background-image: -webkit-linear-gradient(top, #444, #000);
    background-image: -moz-linear-gradient(top, #444, #000);
    background-image: -ms-linear-gradient(top, #444, #000);
    background-image: -o-linear-gradient(top, #444, #000);
    background-image: linear-gradient(top, #444, #000);
    border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    border: none;
    -webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    font-size: 14px;
  }

  #priceArea table td {
    padding: 5px;
    border: solid 1px #ccc;
    font-family: 'oswald', san-serif;
    color: #840001;
    font-size: 22px;
    text-align: center;
  }
}


/*	accessArea
-------------------------------------------------------------------*/
@media only screen and (min-width:641px) {
  #accessArea #googlemap {
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
  }

  #accessArea .innerW_100 #googlemap {}

  .marker {
    font-size: 16px !important;
    font-family: 'Oswald', sans-serif !important;
  }

  #accessArea {
    width: 100%;
    padding: 60px 0;
    background: #FFF;
  }

  #accessArea .bt_detail {
    text-align: center;
    font-size: 22px;
  }

  #accessArea .bt_detail a {
    background: #8AA8B7;
    border: solid 1px #8AA8B7;
    color: #FFF;
    padding: 1em 3em;
    border-radius: 5px;
  }

  #accessArea .bt_detail a i {
    margin-right: 10px;
  }

  #accessArea .bt_detail a:hover {
    background: #fff;
    border: solid 1px #8AA8B7;
    color: #8AA8B7;
  }
}

@media only screen and (max-width:640px) {
  #accessArea #googlemap {
    display: none;
  }

  #accessArea {
    width: 100%;
    background: #FFF;
    margin-bottom: 50px;
    padding-top: 40px;
  }

  #accessArea .bt_detail {
    text-align: center;
    width: 90%;
    margin: 0px auto;
  }

  #accessArea .bt_detail a {
    background: #8AA8B7;
    border: solid 1px #8AA8B7;
    color: #FFF;
    padding: 1.2em 2.0em;
    width: 100%;
    border-radius: 2px;
  }

  #accessArea .bt_detail a i {
    margin-right: 10px;
  }

  #accessArea .bt_detail a:hover {
    background: #fff;
    border: solid 1px #8AA8B7;
    color: #8AA8B7;
  }
}

/* ------------------------------------------------------------------
	Page Top
-------------------------------------------------------------------*/
#pagetop {
  width: 100%;
  text-align: center;
  font-family: 'Oswald', sans-serif;
}

#pagetop a {
  display: block;
  background: #000;
  color: #fff;
  padding: 2.0em;
}

#pagetop a:hover {
  background: #9bdce2;
  color: #fff;
}

@media only screen and (max-width:640px) {
  #pagetop a {
    padding: 1.0em;
  }
}

/* ------------------------------------------------------------------
	Footer
-------------------------------------------------------------------*/
@media only screen and (min-width:641px) {
  #footer {
    background: #333;
    padding: 40px 0 30px;
    text-align: center;
    color: #FFF;
  }

  #footer .footermenu {
    width: 840px;
    margin: 0px auto 80px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
  }

  #footer .footlogo {
    width: 120px;
  }

  #footer .footermenu li a {
    border-left: 1px solid #FFF;
    padding: 5px;
    float: left;
    width: 140px;
    color: #FFF;
  }

  #footer .footermenu li a:hover {
    border-left: 1px solid #FFF;
    padding: 5px;
    float: left;
    width: 140px;
    color: #8AA8B7;
  }

  #footer .footermenu li a:last-child {
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
  }

  #footer small {
    display: block;
    font-size: 12px;
    margin-top: 10px;
  }

  #footnavi {
    display: none;
  }
}

@media only screen and (max-width:640px) {
  #footer {
    padding: 25px 0 60px;
    background: #333;
    text-align: center;
    color: #FFF;
  }

  #footer .footermenu {
    display: none;
  }

  #footer .footlogo {
    width: 30%;
  }

  #footer small {
    display: block;
    padding: 5px 10px;
  }

  #footnavi {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #000;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 999;
  }

  ul.faqtel {
    margin: 0px;
    padding-right: 10px;
    padding-left: 10px;
  }

  ul.faqtel li {
    float: left;
  }
}


.annotation {
  font-size: 12px !important;
  line-height: 1.4;
}
/* UnderKeyv
-------------------------------------------------------------------*/
@media only screen and (min-width:641px) {
  #keyvUnder {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    margin-top: 90px;
  }

  #keyvUnder .keyvInner {
    width: 960px;
    text-align: center;
    margin: 0px auto;
    padding-top: 160px;
    z-index: 10;
  }

  #keyvUnder .keyvInner h2 {
    font-size: 40px;
    font-family: 'oswald', san-serif;
    padding: 0px 50px;
    display: block;
    width: 300px;
    background: #FFF;
    margin: 0px auto 10px;
  }

  #keyvUnder .keyvInner h2.price {
    width: 400px;
  }

  #keyvUnder .keyvInner p {
    font-size: 20px;
  }
}

@media only screen and (max-width:640px) {
  #keyvUnder {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
  }

  #keyvUnder.Astudio {
    background-image: url(../img/TOP_firstview_Ast.webp);
    background-repeat: no-repeat;
    background-position: 50% 43%;
    background-size: cover;
  }

  #keyvUnder .keyvInner {
    width: 100%;
    padding-top: 100px;
    z-index: 10;
    text-align: center;
  }

  #keyvUnder .keyvInner h2 {
    font-size: 20px;
    font-family: 'oswald', san-serif;
    padding: 0px 20px;
    display: block;
    width: 200px;
    background: #FFF;
    margin: 0px auto 10px;
  }

  #keyvUnder .keyvInner p {
    font-size: 14px;
  }
}

#keyvUnder.Astudio {
  background-image: url(../img/TOP_firstview_Ast.webp);
  background-repeat: no-repeat;
  background-position: 50% 43%;
  background-size: cover;
}

#keyvUnder .keyvInner h2.Astudio {
  border: 2px solid #A9AF00;
  color: #A9AF00;
}

#keyvUnder.sevenstudio {
  background-image: url(../img/TOP_firstview_7st.webp);
  background-repeat: no-repeat;
  background-position: 50% 76%;
  background-size: cover;
}

#keyvUnder .keyvInner h2.sevenstudio {
  border: 2px solid #A9AF00;
  color: #A9AF00;
}

#keyvUnder.price {
  background-image: url(../img/price/img-main.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

#keyvUnder .keyvInner h2.price {
  border: 2px solid #2ea7e0;
  color: #2ea7e0;
}

#keyvUnder.access {
  background-image: url(../img/access/img-main.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

#keyvUnder .keyvInner h2.access {
  border: 2px solid #685664;
  color: #685664;
}

#keyvUnder.contact {
  background-image: url(../img/contact/img-main.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

#keyvUnder .keyvInner h2.contact {
  border: 2px solid #5978A2;
  color: #5978A2;
}


#keyvUnder.qa {
  background-image: url(../img/qa/qa_top.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

#keyvUnder .keyvInner h2.qa {
  border: 2px solid #df8181;
  color: #df8181;
}


/* Undercommon
-------------------------------------------------------------------*/
.wrapBox {
  width: 100%;
  padding: 60px 0 0px;
}

@media only screen and (max-width:640px) {
  .wrapBox {
    width: 100%;
    padding: 30px 0 0px;
  }
}

/* Studio
-------------------------------------------------------------------*/
#studio {}

#studio p {
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

#studio p2 {
  font-size: 16px;
  line-height: 28px;
  color: #F36;
}

#studio .tableWrap {
  width: 860px;
  margin: 0px auto 40px;
}

#studio .tableWrap table {
  border-collapse: collapse;
  width: 420px;
  margin-right: 20px;
  float: left;
  font-size: 14px;
}

#studio .tableWrap table th {
  border-collapse: collapse;
}

#studio table th {
  border: solid 1px #ccc;
}

#studio table td {
  padding: 10px;
  border: solid 1px #ccc;
}

#studio table th {
  font-weight: normal;
  background: #F7F7F7;
  white-space: nowrap;
}

#studio .tabletitle {
  padding: 10px;
  font-weight: normal;
  white-space: nowrap;
  text-align: center;
  color: #FFF;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
  background-image: -webkit-linear-gradient(top, #444, #000);
  background-image: -moz-linear-gradient(top, #444, #000);
  background-image: -ms-linear-gradient(top, #444, #000);
  background-image: -o-linear-gradient(top, #444, #000);
  background-image: linear-gradient(top, #444, #000);
  border-radius: 5px 5px 0 0 / 5px 5px 0 0;
  border: none;
  -webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
  font-size: 14px;
}

#studio .detailWrap {
  float: left;
  width: 420px;
}

#studio .detailWrap .studioSlide {
  margin-bottom: 20px;
}

#studio .detailWrap .studioSlide ul.slide2 li {
  height: 240px;
}

#studio .detailWrap .studioSlide ul.slide2 li img {
  height: 100%;
  width: auto;
}

#studio .detailWrap .studioSlide ul.slide2 .slick-dots {
  display: none !important;
}

#studio video,
#studio360 iframe {
  width: 800px;
  margin: 0px auto;
  display: block;
}

@media only screen and (max-width:640px) {
  #studio p {
    font-size: 12px;
    line-height: 22px;
  }

  #studio p2 {
    font-size: 12px;
    line-height: 22px;
    color: #F36;

  }

  #studio .wrapBox ul.slide {
    width: 100%;
    height: 180px;
    overflow: hidden;
  }

  #studio .tableWrap {
    width: 100%;
    margin: 0px auto 20px;
  }

  #studio .tableWrap table {
    border-collapse: collapse;
    width: 100%;
    float: none;
    font-size: 12px;
    margin-bottom: 20px;
  }

  #studio .tableWrap table:last-child {
    margin-right: 0px;
  }

  #studio .tableWrap table th {
    border-collapse: collapse;
  }

  #studio table th {
    border: solid 1px #ccc;
  }

  #studio table td {
    padding: 10px;
    border: solid 1px #ccc;
  }

  #studio table th {
    font-weight: normal;
    background: #F7F7F7;
    white-space: nowrap;
  }

  #studio .tabletitle {
    font-weight: normal;
    white-space: nowrap;
    text-align: center;
    color: #FFF;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
    background-image: -webkit-linear-gradient(top, #444, #000);
    background-image: -moz-linear-gradient(top, #444, #000);
    background-image: -ms-linear-gradient(top, #444, #000);
    background-image: -o-linear-gradient(top, #444, #000);
    background-image: linear-gradient(top, #444, #000);
    border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    border: none;
    -webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    font-size: 14px;
  }

  #studio .detailWrap {
    float: none;
    width: 100%;
  }

  #studio .detailWrap .studioSlide {
    margin-bottom: 10px;
  }

  #studio .detailWrap .studioSlide ul.slide2 {
    overflow: hidden;
    height: 240px;
  }

  #studio .detailWrap .studioSlide ul.slide2 li {
    height: 240px;
  }

  #studio .detailWrap .studioSlide ul.slide2 li img {
    height: 100%;
    width: auto;
  }

  #studio .detailWrap .studioSlide ul.slide2 .slick-dots {
    display: none !important;
  }

  #studio video,
  #studio360 iframe {
    width: 100%;
    margin: 0px auto;
    display: block;
  }
}

/* Price
-------------------------------------------------------------------*/
#price .wrapBox {
  padding: 60px 0 100px;
}

#price span.notice {
  font-size: 12px;
}

/*tab Area */
#tabMenu,
#tabMenu-bottom {
  width: 100%;
}

#tabMenu {
  border-bottom: 3px solid #333;
}

#tabMenu-bottom {
  border-top: 3px solid #333;
}

#tabMenu li,
#tabMenu-bottom li {
  float: left;
  width: calc(33.3333333% - 10px);
  margin-right: 15px;
}

#tabMenu li:last-child,
#tabMenu-bottom li:last-child {
  margin-right: 0;
}

#tabMenu li a,
#tabMenu-bottom li a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  font-size: 20px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: #ccc 1px solid;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: 0;
}

#tabMenu-bottom li a {
  border-top: 0;
  border-bottom: #ccc 1px solid;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

#tabMenu li a.active,
#tabMenu-bottom li a.active {
  color: #fff;
  background-color: #333;
  border: #333 1px solid;
}

/*boxArea*/
.tabBoxArea {
  width: 100%;
  padding: 50px 20px;
  border: #ccc 1px solid;
  background: #efefef;
}

#tabBox1 {}

#tabBox2 {
  display: none;
}

#tabBox3 {
  display: none;
}

#tabBox4 {
  display: none;
}

#price .tabBoxArea .slick-slider {
  height: 200px;
}

/*box1- スタジオ料金*/
#price .tabBoxArea .borderBox {
  width: 690px;
  background-color: #fff;
  border: solid 5px #333;
  padding: 20px;
  margin: 0 auto;
}

#price .priceCat {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 20px 0px;
  font-size: 1.5em;
}

#price .gridWrap {
  width: 100%;
  margin-bottom: 50px;
}

#price .tab_priceTable {
  background-color: #fff;
  border: 1px solid #9fa0a0;
  padding: 30px 50px 30px;
  margin-bottom: 20px;
}

#price .tab_priceTable dt {
  font-size: 1.6em;
  line-height: 1.2em;
  text-align: center;
  margin-bottom: 20px;
}

#price .tab_priceTable dt2 {
  font-size: 0.7em;
  line-height: 0em;
  text-align: left;
  margin-bottom: 0px;
}

#price .tab_priceTable dt small {
  font-size: 0.8em;
  margin-bottom: 10px;
}

#price .tab_priceTable dd {
  width: 100%;
  font-size: 2em;
  display: inline-block;
  position: relative;
}

#price .tab_priceTable dd small {
  font-size: 11px;
}

#price .tab_priceTable dd span.right {
  position: absolute;
  top: 0;
  right: 28px;
}

#price #tabBox1 .innerArea2 {
  margin-bottom: 50px;
}

#price #tabBox1 .innerArea3 {
  margin-bottom: 40px;
}

#price #tabBox1 .innerArea3 h3 {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
}

#price #tabBox1 .innerArea3 h4 {
  font-size: 2em;
  margin-bottom: 20px;
}

#price #tabBox1 .innerArea3 .clearfix {
  margin-bottom: 60px;
}

#price #tabBox1 .innerArea4 {
  margin-bottom: 40px;
}

#price #tabBox1 .innerArea4 h3 {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
}

#price #tabBox1 .innerArea4 h4 {
  font-size: 2em;
  margin-bottom: 20px;
}

#price #tabBox1 .innerArea4 .clearfix {
  margin-bottom: 60px;
}


/*box2- レンタル機材 */

#price #tabBox2 .tab_priceTable {
  height: 260px;
}

#price #tabBox2 .tab_priceTable-height2 {
  height: 540px;
}

#price #tabBox2 .tab_priceTable dt {
  font-size: 1.6em;
  text-align: center;
  margin-bottom: 20px;
}

#price #tabBox2 .tab_priceTable dd {
  width: 100%;
  font-size: 1.2em;
  display: inline-block;
  position: relative;
}

#price #tabBox2 .tab_priceTable dd small {
  font-size: 0.6em;
  padding-left: 6px;
  color: #999;
}

#price #tabBox2 .tab_priceTable dd span.right {
  font-size: 0.8em;
}

#price #tabBox2 .tab_priceTable dd span.red {
  font-size: 1.2em;
}

#price #tabBox2 .tab_priceTable dd span.right {
  position: absolute;
  top: 0;
  right: 0;
}

#price #tabBox2 .tab_priceTable p {
  margin: 20px 0;
}

/*box3- 常設機材 */
#price #tabBox3 .innerArea1 {
  margin-bottom: 30px;
}

#price #tabBox3 .innerArea1 h3 {
  margin-bottom: 20px;
}

#price #tabBox3 .tab_priceTable h4 {
  font-size: 1.6em;
  text-align: center;
  margin-bottom: 20px;
}

#price #tabBox3 .tab_priceTable li {
  width: 100%;
  font-size: 1.0em;
  display: inline-block;
  position: relative;
}

#price #tabBox3 .tab_priceTable li span.right {
  font-size: 0.6em;
  position: absolute;
  top: 0;
  right: 10px;
  letter-spacing: 0.3em;
}

#price #tabBox3 .tab_priceTable li span.red {
  font-size: 2.0em;
}

ul.equipment li {
  width: calc(25% - 10px);
  margin-right: 10px;
  margin-bottom: 20px;
  float: left;
}

/*box4- オプション機材 */
#price #tabBox4 .innerArea1 {
  margin-bottom: 30px;
}

#price #tabBox4 .innerArea1 h3 {
  margin-bottom: 20px;
}

#price #tabBox4 .tab_priceTable h4 {
  font-size: 1.6em;
  text-align: center;
  margin-bottom: 20px;
}

#price #tabBox4 .tab_priceTable li {
  width: 100%;
  font-size: 1.0em;
  display: inline-block;
  position: relative;
}

#price #tabBox4 .tab_priceTable li span.right {
  font-size: 0.6em;
  position: absolute;
  top: 0;
  right: 10px;
  letter-spacing: 0.3em;
}

#price #tabBox4 .tab_priceTable li span.red {
  font-size: 2.0em;
}

ul.equipment li {
  width: calc(25% - 10px);
  margin-right: 10px;
  margin-bottom: 20px;
  float: left;
}

/*noteArea*/
.noteArea {
  padding: 20px 40px;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 40px;
}

.noteArea p {
  margin-bottom: 10px;
}

.noteArea a {
  padding-bottom: 10px;
  color: #3d6299;
  text-decoration: underline;
}

/* グリッド */
.grid2 {
  width: calc(50% - 10px);
  margin-right: 20px;
  float: left;
}

.mr0 {
  margin-right: 0;
}

.grid4 {
  width: calc(25% - 10px);
  margin-right: 10px;
  float: left;
}

.grid4:nth-child(4n) {
  margin-right: 0;
}

@media only screen and (max-width:640px) {
  #price .wrapBox {
    padding: 20px 0 40px;
  }

  /*tab Area */
  #tabMenu,
  #tabMenu-bottom {
    width: 100%;
  }

  #tabMenu li,
  #tabMenu-bottom li {
    float: left;
    width: calc(33.33333% - 1px);
    margin-right: 3px;
  }

  #tabMenu li a,
  #tabMenu-bottom li a {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
    text-align: center;
  }

  .tabBoxArea .bt_detail {
    margin-bottom: 20px;
  }

  #tabMenu li a:hover {
    color: #231815;
  }

  /*boxArea*/
  .tabBoxArea {
    padding: 10px;
  }

  #price .tabBoxArea .slick-slider {
    height: auto;
    margin-bottom: 60px;
  }

  #price .tabBoxArea .slick-dots {
    bottom: -40px;
  }

  #price .tabBoxArea .slick-list {
    margin-bottom: 40px;
  }

  /*box1- スタジオ料金*/
  #price .tabBoxArea .borderBox {
    width: 80%;
    padding: 10px;
    margin: 0 auto;
  }

  #price .tab_priceTable {
    padding: 10px;
    margin-bottom: 10px;
  }

  #price .tab_priceTable dt {
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 20px;
  }

  #price .tab_priceTable dd {
    width: 100%;
    font-size: 1.2em;
    display: inline-block;
    position: relative;
  }

  #price .tab_priceTable dd span.right {
    position: absolute;
    top: 0;
    right: 0;
  }

  #price #tabBox1 .innerArea2 {
    margin-bottom: 30px;
  }

  #price #tabBox1 .innerArea3 {
    margin-bottom: 30px;
  }

  #price #tabBox1 .innerArea3 h3 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
  }

  #price #tabBox1 .innerArea3 h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }

  #price #tabBox1 .innerArea3 .clearfix {
    margin-bottom: 20px;
  }

  /*box2- レンタル機材 */

  #price #tabBox2 .tab_priceTable {
    height: auto;
  }

  #price #tabBox2 .tab_priceTable-height2 {
    height: auto;
  }

  #price #tabBox2 .tab_priceTable dt {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  #price #tabBox2 .tab_priceTable dd {
    width: 100%;
    font-size: 1.0em;
  }

  #price #tabBox2 .tab_priceTable dd small {
    font-size: 0.6em;
    padding-left: 6px;
  }

  #price #tabBox2 .tab_priceTable dd span.right {
    font-size: 0.8em;
  }

  #price #tabBox2 .tab_priceTable dd span.red {
    font-size: 1.2em;
  }

  #price #tabBox2 .tab_priceTable dd span.right {
    position: absolute;
    top: 0;
    right: 0;
  }

  .br:before {
    content: "\A";
    white-space: pre;
  }

  #price #tabBox2 .tab_priceTable p {
    margin: 20px 0;
  }

  /*box3- 常設機材 */
  #price #tabBox3 .innerArea1 {
    margin-bottom: 20px;
  }

  #price #tabBox3 .innerArea1 h3 {
    margin-bottom: 10px;
    font-size: 1.6em;
  }

  #price #tabBox3 .tab_priceTable h4 {
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 10px;
  }

  #price #tabBox3 .tab_priceTable li {
    font-size: 1.0em;
    position: relative;
  }

  #price #tabBox3 .tab_priceTable li span.right {
    font-size: 0.6em;
    position: absolute;
    top: 0;
    right: 0;
    letter-spacing: 0.3em;
  }

  #price #tabBox3 .tab_priceTable li span.red {
    font-size: 2.0em;
  }

  /*noteArea*/
  .noteArea {
    padding: 10px;
    margin-bottom: 20px;
  }

  .noteArea p {
    margin-bottom: 10px;
  }

  .noteArea a {
    padding-bottom: 10px;
    text-decoration: underline;
  }

  /* グリッド */
  .grid2 {
    width: 100%;
    margin-right: 0;
    float: none;
  }

  .grid4 {
    width: 100%;
    margin-right: 0;
    float: none;
    margin-bottom: 20px;
  }

  ul.equipment li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 20px;
    float: left;
  }

  ul.equipment li:nth-child(2n) {
    width: 49%;
    margin-right: 0;
    margin-bottom: 20px;
    float: left;
  }

  ul.equipment li p {
    font-size: 11px;
  }
}


/*	access
-------------------------------------------------------------------*/
@media only screen and (min-width:641px) {
  #access #googlemap {
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
  }

  #access .innerW_100 #googlemap {}

  #keyvUnder.access {
    background: url(../img/access/img-main.png) no-repeat cover;
  }

  #access .mapList {
    margin-bottom: 40px;
  }

  #access .mapList .grid2 {
    border: 1px solid #333;
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  #access .mapList .grid2:nth-child(2) {
    margin-right: 0px;
  }

  #access .mapList .grid2 h3 {
    font-size: 3em;
  }

  #access .mapList .grid2 p img {
    margin-bottom: 20px;
  }

  #access .mapList .grid2 .mapList_address {
    margin-bottom: 20px;
    font-size: 1.2em;
    text-align: center;
  }

  #access .mapList .grid2 h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
  }

  #access .mapList .grid2 ol {
    background: #efefef;
    padding: 20px;
    min-height: 350px;
    margin-bottom: 20px;
  }

  #access .mapList .grid2 ol li {
    line-height: 1.5em;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 0.9em;
    border-bottom: 1px dotted #999;
  }

  #access .mapList .grid2 a {
    text-align: center;
    display: inline-block;
    line-height: 60px;
    border-radius: 4px;
    font-size: 1.2em;
    color: #fff;
    height: 60px;
    width: 100%;
    background-color: #A9AF00;
    border: 1px solid #A9AF00;
    position: relative;
  }

  #access .mapList .grid2 a::after {
    content: "\f041";
    position: absolute;
    right: 4em;
    padding: 0 1px;
    font-family: FontAwesome;
  }

  #access .mapList .grid2 a:hover {
    color: #A9AF00;
    background-color: #fff;
  }

  #access .accessCar {
    margin-bottom: 20px;
  }

  #access .accessCar .grid2:nth-child(2) {
    margin-right: 0px;
  }

  #access .accessCar .accessCar_list {
    border: 1px solid #333;
    padding: 50px 50px 40px 50px;
  }

  #access .accessCar .accessCar_list dl {
    min-height: 120px;
  }

  #access .accessCar .accessCar_list dt {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width:640px) {
  #access #googlemap {
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
  }

  #access .innerW_100 #googlemap {}

  #keyvUnder.access {
    background: url(../img/access/img-main.png) no-repeat cover;
  }

  #access .mapList {
    margin-bottom: 40px;
  }

  #access .mapList .grid2 {
    border: 1px solid #333;
    padding: 20px 10px;
    margin-bottom: 20px;
  }

  #access .mapList .grid2 h3 {
    font-size: 2em;
    line-height: 1em;
  }

  #access .mapList .grid2 p img {
    margin-bottom: 20px;
  }

  #access .mapList .grid2 .mapList_address {
    margin-bottom: 10px;
    font-size: 1em;
  }

  #access .mapList .grid2 h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
  }

  #access .mapList .grid2 ol {
    background: #efefef;
    padding: 10px;
    min-height: 350px;
    margin-bottom: 20px;
  }

  #access .mapList .grid2 ol li {
    line-height: 1.5em;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 0.9em;
    border-bottom: 1px dotted #999;
  }

  #access .mapList .grid2 a {
    text-align: center;
    display: inline-block;
    line-height: 60px;
    border-radius: 4px;
    font-size: 1.2em;
    color: #fff;
    height: 60px;
    width: 100%;
    background-color: #A9AF00;
    border: 1px solid #A9AF00;
    position: relative;
  }

  #access .mapList .grid2 a::after {
    content: "\f041";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
  }

  #access .accessCar {
    margin-bottom: 20px;
  }

  #access .accessCar .accessCar_list {
    border: 1px solid #333;
    padding: 20px;
  }

  #access .accessCar .accessCar_list dl {
    min-height: 110px;
    margin-bottom: 20px;
  }

  #access .accessCar .accessCar_list dt {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
  }
}

/* ------------------------------------------------------------------
	Contact
-------------------------------------------------------------------*/
.innerW_640 {
  width: 640px;
  margin: 0 auto;
  padding: 60px 0px;
}

#contact dl {
  font-size: 16px;
}

#contact dt {
  margin-bottom: 10px;
}

#contact dd {
  margin-bottom: 20px;
}

#contact dd.privacy {
  height: 10em;
  font-size: 12px;
  color: #999;
  overflow: scroll;
}

#contact .button {
  width: 360px;
  height: 68px;
  border: none;
  background-image: url(../img/inputbt-check.png);
  background-position: center top;
  background-size: contain;
  margin: 20px auto 0px;
  display: block;
  cursor: pointer;
}

#contact .button:hover {
  opacity: 0.7;
}

#contact .button2 {
  width: 360px;
  height: 68px;
  border: none;
  background-image: url(../img/inputbt-send.png);
  background-position: center top;
  background-size: contain;
  margin: 20px auto 0px;
  display: block;
  cursor: pointer;
}

#contact .button2:hover {
  opacity: 0.7;
}

#contact input.buttonback[type="button"] {
  width: 360px;
  height: 3em;
  border: none;
  background: #666;
  color: #fff;
  display: block;
  margin: 20px auto 0px;
}

input.buttontop[type="button"] {
  width: 100%;
  height: 3em;
  border: none;
  background: #d3323e;
  color: #fff;
}

table.form {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table.form th {
  padding: 10px;
  background: #000;
  width: 30%;
  color: #FFF;
  border: 1px solid #FFF;
}

table.form td {
  width: 100%;
  padding: 5px;
  background: #F8F8F8;
  border: 1px solid #FFF;
}

@media only screen and (max-width:640px) {
  .innerW_640 {
    width: 100%;
  }

  #contact p.list {
    padding: 20px;
    border: 1px solid #E50012;
    color: #E50012;
    display: block;
    width: 100%;
    margin: 0px auto 40px;
    font-size: 1.5em;
  }

  #contact .button {
    width: 100%;
    border: none;
    background-image: url(../img/inputbt-check.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 20px auto 0px;
    display: block;
    cursor: pointer;
    min-height: 50px;
  }

  #contact .button:hover {
    opacity: 0.7;
  }

  #contact .button2 {
    width: 100%;
    border: none;
    background-image: url(../img/inputbt-send.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 20px auto 0px;
    display: block;
    cursor: pointer;
  }

  #contact .button2:hover {
    opacity: 0.7;
  }

  #contact input.buttonback[type="button"] {
    width: 100%;
    height: 3em;
    border: none;
    background: #666;
    color: #fff;
    display: block;
    margin: 20px auto 0px;
  }
}

ul.bt-inq {
  width: 820px;
  margin: 0px auto 30px;
}

ul.bt-inq li {
  border-radius: 3px;
  font-size: 16px;
  display: block;
  text-align: center;
  margin-right: 20px;
  float: left;
}

ul.bt-inq li:nth-child(2) {
  margin-right: 0px;
}

ul.bt-inq li a {
  border-radius: 3px;
  padding: 20px;
  font-size: 18px;
  display: block;
  width: 400px;
}

.bt-g a {
  background: #97a921;
  color: #fff;
  border: solid 1px #97a921;
}

.bt-g a:hover {
  background: #fff;
  color: #97a921;
}

.bt-b a {
  background: #9ab2bf;
  color: #fff;
  border: solid 1px #9ab2bf;
}

.bt-b a:hover {
  background: #fff;
  color: #9ab2bf;
}

.bt-inq a i {
  margin-right: 10px;
}

@media only screen and (max-width:640px) {
  ul.bt-inq {
    width: 100%;
    margin: 0px auto 30px;
  }

  ul.bt-inq li {
    border-radius: 3px;
    font-size: 16px;
    display: block;
    text-align: center;
    margin-bottom: 10px;
    float: none;
    width: 100%;
  }

  ul.bt-inq li a {
    border-radius: 3px;
    padding: 20px;
    font-size: 18px;
    display: block;
    width: 100%;
  }
}

/* ------------------------------------------------------------------
	Latest
-------------------------------------------------------------------*/
#latestArea {
  padding: 40px 0;
  text-align: center;
}

#latestArea p {
  padding: 10px;
  border: 1px solid #000;
}




/* ------------------------------------------------------------------
  TOP RENEWAL
-------------------------------------------------------------------*/
.p1 {
  padding: 1px;
}

.text-center {
  text-align: center;
}

.align-top {
  vertical-align: top;
}

.ml-10 {
  margin-left: 10px;
}

.solid-border {
  border: 2px solid #000;
  padding: 1px;
}

.line-double {
  font-size: smaller;
}

.line-single {
  font-size: medium;
}

.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;

}

.flex-1 {
  flex: 1;
}

.flex-1-larger {
  flex: 1.15;
}

.flex-6 {
  flex: 6;

}

.flex-8 {
  flex: 8;

}

.flex-10 {
  flex: 10;
}

.flex2-1 iframe {
  width: 100%;
}

#PrArea {
	padding:30px;
}

@media only screen and (min-width:641px) {
  .flex2-1 {
    flex: 2;
  }

  .flex1-1,
  .flex1-2 {
    flex: 1;
  }
}

@media only screen and (max-width:640px) {
#PrArea {
	padding:30px 15px;
	justify-content:center;
}
  .flex1-1,
  .flex2-1 {
    width: 100%;
  }

  .flex1-2 {
    width: 44%;
  }
}

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

#floatingContact {
  position: fixed;
  bottom: 1vh;
  right: 1vh;
  z-index: 9999;
  color: white;
  background-color: rgba(204, 1, 0, 0.9);
  border-radius: 3px;
  aspect-ratio: 1 / 1;
  padding: 7px;
}

#floatingContact span {
  font-size: smaller;
  color: white;
}

#floatingContact .tel {
  font-size: smaller;
  font-weight: bold;
  color: white;
  display: block;
  padding-top: 5px;
}

#firstViewArea {
  width: 100%;
  height: 90vh;
  /* margin-bottom: 30px; */
  /* margin-top: 90px; */
  text-align: center;
  background: #fff;
  font-size: medium;
}

#firstViewArea section {
  position: relative;
  overflow: hidden;
  height: 90vh;
}

#firstViewArea section a {
  display: block;
  position: absolute;
  /* text-align: center; */
  width: 100%;
  height: 90vh;
  top: 0;
  left: 0;
}


#firstViewArea section a img {
  width: 100%;
  height: 100vh;
  object-fit: cover
}

.caption_studios {
  position: absolute;
  z-index: 1000;
  top: 100px;
  left: 30px;
  width: 120px;
}



@media only screen and (max-width:640px) {
  #firstViewArea section a img {
    object-position: 80% 0%;
    /* animation: slide 60s normal infinite; */
  }

  .caption_studios {
    position: absolute;
    z-index: 1000;
    top: 60px;
    left: 10px;
    width: 80px;
  }
}

#firstViewArea section a div {
  margin-bottom: 10px;
  font-size: medium;
  color: gray;
  /* border: 2px solid #000; */
  /* width: 200px; */
  margin: 0px auto 20px;
  /* background: #FFF; */
  font-family: 'oswald', san-serif;

  z-index: 9999;
  position: relative;

  /* width: 200px; */
}

#firstViewArea a div:hover {
  margin-bottom: 10px;
  font-size: medium;
  /* border: 2px solid #A9AF00; */
  /* width: 200px; */
  margin: 0px auto 20px;
  color: #A9AF00;
  /* background: #FFF; */
  transition-duration: 0.3s;
}

#PrArea div {
  border: 3px solid #000;
  margin: 0 10px 25px 10px;
  padding: 23px;
  text-align: center;
  font-size: large;
  font-weight: bold;
  /* display: table-cell; */
  /* vertical-align: middle;*/
}
@media only screen and (max-width:640px) {

#PrArea div {
  border: 3px solid #000;
  margin: 0 5px 10px;
  padding: 23px;
  text-align: center;
  font-size: large;
  font-weight: bold;
  width: calc((100% - 20px) / 2);
}
}

#PrArea div .e_caption {
  display: block;
  font-size: small;
  font-weight: lighter;
  color: gray;
}

#studiosArea ul li {
  position: relative;
}

#studiosArea .caption_360 {
  position: absolute;
  z-index: 1000;
  top: 5px;
  right: 5px;
  width: 200px;
  /* color: #4284F3; */
  /* background-color: rgba(255, 255, 255, 0.77); */
  /* font-family: 'oswald', san-serif; */
  /* border-radius: 6px; */
  /* text-align: center; */
}

@media only screen and (min-width:641px) {
  #studiosArea {
    margin-bottom: 30px;
    margin-top: 50px;
    text-align: center;
  }

  #studiosArea .uses {
    width: 960px;
    position: relative;
    margin: 0px auto;
  }

  #studiosArea img {
    vertical-align: middle;
    width: 100%;
    object-fit: cover;
  }

  #studiosArea .cstudio {
    width: 50vw;
    margin: 0 auto;
  }
}

@media only screen and (max-width:640px) {
  #studiosArea {
    width: 100%;
    /* height: 200px; */
    margin-top: 50px;
  }

  #studiosArea ul li {
    margin-bottom: 50px;
  }

  #studiosArea img {
    vertical-align: middle;
  }

}

.bd_studios {
  background-color: #8AA8B8;
  height: 0.5px;
  border: none;
}

.bt_studios {
  border-radius: 4px;
  margin: 0 1px;
}



.bt_astudio {
  background-color: rgba(203, 88, 161, 0.87);
  color: #FFF;
  padding: 5px 10px;
}

.bg_astudio {
  background-color: rgba(203, 88, 161, 0.05);
  padding: 5px 5px 0 5px;
}

.bt_7studio {
  background-color: rgba(35, 53, 85, 0.87);
  color: #FFF;
  padding: 5px 10px;
}

.bg_7studio {
  background-color: rgba(35, 53, 85, 0.05);
  padding: 5px 5px 0 5px;
}

.bt_cstudio {
  background-color: rgba(206, 179, 132, 0.87);
  color: #FFF;
  padding: 5px 10px;
}

.bg_cstudio {
  background-color: rgba(206, 179, 132, 0.05);
  padding: 5px 5px 0 5px;
}

.snss {
  max-width: 350px;
  margin: 0 auto 5px;
  max-height: 70vh;
  overflow-y: scroll;
}

.followus {
  font-family: 'oswald', san-serif;
  font-size: large;
  color: gray;
}

.bt_social {
  display: inline-block;
  text-align: center;
  /*中央揃え*/
  color: #2e6ca5;
  /*文字色*/
  font-size: 20px;
  /*文字サイズ*/
  text-decoration: none;
  /*下線消す*/
  vertical-align: middle;
}

.bt_social:hover {
  /*ホバー時*/
  color: #668ad8;
  /*文字色*/
  transition: .5s;
  /*ゆっくり変化*/
}

.bt_social .insta {
  /*アイコンの背景*/
  position: relative;
  /*相対配置*/
  display: inline-block;
  width: 50px;
  /*幅*/
  height: 50px;
  /*高さ*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  /*グラデーション①*/
  overflow: hidden;
  /*はみ出た部分を隠す*/
  border-radius: 13px;
  /*角丸に*/

}

.bt_social .insta:before {
  /*グラデーションを重ねるため*/
  content: '';
  position: absolute;
  /*絶対配置*/
  top: 23px;
  /*ずらす*/
  left: -18px;
  /*ずらす*/
  width: 60px;
  /*グラデーションカバーの幅*/
  height: 60px;
  /*グラデーションカバーの高さ*/
  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}

.bt_social .youtube {
  /*アイコンの背景*/
  position: relative;
  /*相対配置*/
  display: inline-block;
  width: 50px;
  /*幅*/
  height: 50px;
  /*高さ*/
  background-color: #E93223;
  overflow: hidden;
  /*はみ出た部分を隠す*/
  border-radius: 13px;
  /*角丸に*/

}

.bt_social .fa-instagram,
.bt_social .fa-youtube {
  /*アイコン*/
  color: #FFF;
  /*白に*/
  position: relative;
  /*z-indexを使うため*/
  z-index: 2;
  /*グラデーションより前に*/
  font-size: 35px;
  /*アイコンサイズ*/
  line-height: 50px;
  /*高さと合わせる*/
  margin-right: 0;
}

.text-highlight {
  color: #f36;
  ;
}

#studioMap figure {
  padding: 20px 0 0 0;
  position: relative
}

#studioMap figure figcaption {
  border: 2px solid black;
  font-size: 16px;
  line-height: 28px;
  position: absolute;
  bottom: -41px;
  padding: 10px;
  width: 100%;
  background-color: white;
}

@media only screen and (max-width:640px) {
  #studioMap figure {
    padding: 0;
  }

  #studioMap figure figcaption {
    font-size: 12px;
    line-height: 22px;
    bottom: -13px;
    padding: 0;
  }
}

#studioDesc {
  height: 630px;
  overflow: hidden;
}

#studioDesc>div {
  margin-right: 5px;
}

#studioDesc div img {
  object-fit: cover;
  height: 630px;
}

#studioDesc ul li {
  height: 62px;
}

@media only screen and (max-width:640px) {
  #studioDesc {
    height: auto;
  }

  #studioDesc div {
    display: none;
  }


  #studioDesc ul li {
    display: inline-block;
    width: 108px;
    height: auto;
  }
}

#studioFacility input[type=radio] {
  display: none;
}

#studioFacility label {
  margin: 0 30px;
}

@media only screen and (max-width:640px) {
  #studioFacility label {
    margin: 0 1px;
  }
}

#studioFacility label:hover {
  color: #A9AF00;
  transition-duration: 0.3s;
}

#studioFacility .targets {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fit, 193px);
  margin-top: 40px;
}

@media only screen and (max-width:640px) {
  #studioFacility .targets {
    margin-top: 10px;
    grid-template-columns: repeat(auto-fit, calc(100vw/4.68));
  }
}

[value="all"]:checked~.targets [data-category] {
  display: block;
}

[value="filter_floor"]:checked~.targets .target:not([data-category~="filter_floor"]),
[value="filter_kitchen"]:checked~.targets .target:not([data-category~="filter_kitchen"]),
[value="filter_tool"]:checked~.targets .target:not([data-category~="filter_tool"]),
[value="filter_plate"]:checked~.targets .target:not([data-category~="filter_plate"]),
[value="filter_else"]:checked~.targets .target:not([data-category~="filter_else"]) {
  display: none;
}

#studioGeneral .thead {
  text-align: center;
  font-size: small;
  background-color: #f5f5f5;
  padding: 5px;
}

#studioGeneral .th {
  flex: 1;
  background-color: #f5f5f5;
  border: 1px white solid;
  font-size: small;
  padding: 2px;
}

#studioGeneral .td {
  flex: 4;
  background-color: #f5f5f5;
  border: 1px white solid;
  font-size: small;
  padding: 2px;
}



.pricenotice {
  border: 1px solid #d40000;
  background-color: rgba(204, 1, 0, 0.1);
  padding: 15px;
  width: 98%;
  max-width: 1000px;
  margin: 0 auto 30px;
  position: relative;
}

.pricenotice p{
  color: #d40000;
  text-align: center;
}

.pricenotice:after {
  content: '';
  width: 7px;
  height: 7px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  border-top: 1px solid #d40000;
  border-right: 1px solid #d40000;
  transition: all 0.5s;
}

.disclame {
  width: 98%;
  max-width: 1000px;
  margin: 0 auto 30px;
}


.refrigerator {
  background-color: #f9f9f0;
  padding: 60px 0;
  margin: 80px 0;
}

.refrigerator .wrapBox {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.refrigerator ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.refrigerator ul li {
  width: calc(100% / 3);
  padding: 0 15px;
}

.refrigerator ul li span {
  display: block;
  margin-bottom: 10px;
  text-align: center;
}

.pcNone {
  display: none;
}
@media only screen and (max-width:768px) {
  .refrigerator {
    background-color: #f9f9f0;
    padding: 40px 0;
    margin: 40px 0;
  }

  .refrigerator .wrapBox {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .refrigerator ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .refrigerator ul li {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
  }

  .refrigerator ul li span {
    display: block;
    margin-bottom: 10px;
    text-align: center;
  }

  .pcNone {
    display: block;
  }
}