@charset "utf-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

h1 {
  font-size: 26px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  font-weight: bold;
}
h3 {
  font-size: 21px;
  font-weight: bold;
}
h4 {
  font-size: 18px;
  font-weight: bold;
}
p {
  font-size: 16px;
  line-height: 1.8;
}
* {
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5em;
}
a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/*************************** ロード画面 */
.loading-wrap {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: url(../images/loasd_back.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  left: 0px;
  top: 0px;
  z-index: 9999;
}
.loading-anime {
  animation-name: loadinganime;
  animation-timing-function: ease;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes loadinganime {
  from {
    transform: translateX(0);
  }
  30%,
  70% {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

#main-wrap {
  display: none;
}
/*************************** ロード画面 */

/*****************************TOPへbtn*/
#page_top {
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 50px;
  opacity: 0.6;
  z-index: 100;
}
#page_top a {
  position: relative;
  display: block;
  margin-top: 13px;
  background-color: #000;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 32px;
  color: #fff;
  position: absolute;
  width: 32px;
  height: 32px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after {
  content: "PAGE TOP";
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: 50px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #fff;
}
/*****************************TOPへbtn*/

/***************************** header*/
.logo_btn {
  height: 70px;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
}
.logo_btn img {
  position: relative;
  margin-top: 10px;
  margin-left: 20px;
  height: 50px;
  width: 50px;
  align-content: center;
}
.logo_btn h1 > p {
  position: absolute;
  top: 25px;
  left: 90px;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
}
.tel_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #df491c;
  margin-right: 140px;
  height: 70px;
  width: 300px;
  font-size: 14px;
}
.tel_btn a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 50;
}
.btn_pc p span {
  font-size: 14px;
}
.btn_pc p {
  font-size: 21px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.btn_sp {
  display: none;
}

/***************************** ここからナビ*/
/* ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  background-color: #000;
  z-index: 3;
  right: 0px;
  width: 140px;
  height: 70px;
  cursor: pointer;
  text-align: center;
  z-index: 99;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  right: 50px;
  background: #fff;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 15px;
  width: 45px;
}
.hamburger span:nth-child(2) {
  top: 25px;
}

.hamburger p {
  color: #fff;
  margin-top: 40px;
  font-size: 14px;
}

/* Xボタン */
.hamburger.active span:nth-child(1) {
  width: 30px;
  top: 20px;
  right: 55px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  width: 30px;
  top: 20px;
  right: 55px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Xボタン */

/* ナビレイアウト*/
nav.nav_container {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 90;
}
.nav_logo {
  position: relative;
  width: 50%;
  height: 100vh;
  background-color: #fff;
}
.nav_logo img {
  position: absolute;
  top: 250px;
  right: 30px;
  max-width: 500px;
  box-sizing: border-box;
}
.nav {
  position: relative;
  width: 50%;
  height: 100vh;
  background-color: #000;
}
.nav_container ul {
  position: absolute;
  top: 250px;
  left: 30px;
  list-style: none;
  width: 80%;
  font-size: 28px;
  line-height: 60px;
}
.nav_container ul a {
  text-decoration: none;
}
.nav_container ul li {
  color: #fff;
  border-bottom: dotted 2px #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav_container ul li:hover {
  background-color: #333;
  transition: 0.3s;
}

/*このクラスを、jQueryで付与・削除する */
.nav_container.active {
  opacity: 100;
  visibility: visible;
}
/***************************** ここまでナビ*/

/***************************** TOP*/
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* カスタムプロパティ未対応ブラウザ用のフォールバック */
  background: url("../images/newphoto/TOP/top.jpeg") center / cover;
  z-index: -10;
}
.hero img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30%;
  max-width: 800px;
  z-index: -5;
}
/***************************** TOP*/

/***************************** section01*/
.left01 {
  position: relative;
  background-color: #df491c;
  width: 40%;
  height: 400px;
  margin-top: -70px;
}
.obi {
  position: absolute;
  top: 25%;
  left: 10%;
  list-style: none;
  text-decoration: none;
  color: #fff;
}
.obi h2 {
  font-size: 1.8em;
  line-height: 2em;
  letter-spacing: 0.1em;
}
.obi p {
  font-size: 1em;
  line-height: 2em;
  letter-spacing: 0.1em;
}
.obi p span a {
  color: #fff;
  text-decoration: none;
}

/* スクロールダウンアイコン */
.scrolldown {
  /*描画位置*/
  position: absolute;
  left: 10%;
  /*全体の高さ*/
  height: 70px;
}
/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: 20px;
  top: 40px;
  /*テキストの形状*/
  color: #fff;
  font-size: 0.8em;
  letter-spacing: 0.2em;
}
/* 線の描写 */
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/* スクロールダウンアイコン */
/***************************** section01*/

/***************************** section02*/
.section02 {
  width: 80%;
  margin: -100px 0 0 auto;
}
.studio_map02 {
  margin-left: 30%;
}
.section02 img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
}
.section02 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  text-decoration: none;
  max-width: 800px;
  margin: 0 auto;
}
.section02 ul img {
  width: 70%;
  height: 70%;
}
/***************************** section02*/

/***************************** section03-5共通*/
.secm {
  margin: 300px auto;
}
.titleh2 {
  font-size: 150px;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: "DIN Condensed", "ヒラギノ角ゴシック", "Hiragino Sans",
    sans-serif;
  border-bottom: solid 2px #333;
  line-height: 0.6;
}
.titlep {
  font-family: "DIN Condensed", "ヒラギノ角ゴシック", "Hiragino Sans",
    sans-serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 50px;
}
.contents-wrap {
  width: 95%;
  max-width: 1300px;
  margin: 0px auto;
}
.contents_head > img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
.contents_block {
  margin: 4vw 0;
}
.contentstitle {
  font-family: "DIN Condensed", "ヒラギノ角ゴシック", "Hiragino Sans",
    sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 50px;
}
.contentsp {
  font-weight: 400;
}
.contentsp > span {
  color: #df491c;
}
.img_set {
  display: flex;
  justify-content: space-between;
}
.img_set img {
  width: 33%;
}

/***ボタン*/
.btns {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  max-width: 1000px;
  margin: 50px auto;
}

.btn01 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 5px;
  height: 60px;
  width: 40%;
  font-size: 14px;
  margin: 30px auto 50px;
}

.btn01 a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 50;
}
.btn01:hover {
  background-color: #df491c;
  color: #fff;
  opacity: 0.8;
  transition: 0.3s;
}
.btn02 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 5px;
  height: 60px;
  width: min(80%, 300px);
  font-size: 14px;
  margin: 30px auto 100px;
}

.btn02 a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.btn02:hover {
  background-color: #df491c;
  color: #fff;
  opacity: 0.8;
  transition: 0.3s;
}
/***ボタン*/
/***************************** section03-5共通*/

/***************************** section03*/
.title03 {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
}
.ttext03 {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
}
/***************************** section03*/

/***************************** section04*/
.news{
  margin-top: 30px;
  margin-bottom: 30px;
}
.title04 {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
}
.ttext04 {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
}
/***************************** section04*/

/***************************** section05*/
.title05 {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
}
.ttext05 {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
}
/***************************** section05*/

/***************************** footer*/
footer {
  background-color: #000;
  color: #fff;
  line-height: 2;
}

footer h2 {
  font-size: 24px;
  padding: 10px 0 10px;
}

footer p,
footer ul {
  font-size: 14px;
  line-height: 28px;
}

.footer_wrap {
  position: relative;
  padding-top: 60px;
  width: 80%;
  margin: 0 auto;
  z-index: 1;
}

.admap {
  display: flex;
  justify-content: space-between;
}

.address img {
  height: 16px;
  width: 16px;
}

.address p span {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
}

.footer_wrap ul {
  position: absolute;
  bottom: 0;
  left: -10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  list-style: none;
  max-width: 50%;
  z-index: 1;
}

.footer_wrap ul a {
  color: #fff;
  display: block;
  padding: 0 0 5px;
  text-decoration: none;
}

.footer_wrap ul a::after {
  border-bottom: solid 1px #fff;
  bottom: 0;
  content: "";
  display: block;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  width: 0;
}
.footer_wrap ul a:hover::after {
  width: 100%;
}

.footer_wrap ul li {
  text-align: left;
  margin: 0 10px;
}

.foot_right {
  position: relative;
  width: 50%;
  z-index: 1;
}

.map {
  height: 0;
  padding-top: 75%;
}

.map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.br-sp {
  display: none;
}

.credit {
  text-align: center;
  padding: 60px 0 20px;
}
/***************************** footer*/

/*************************************************************************************** ここまでトップページ*/

/***************************** 階層ページ共通*/
main,
footer {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.kaiso_hero {
  position: relative;
  width: 100%;
  height: 300px;
  background: url("../images/header/IMG_4343.png") center / cover;
  z-index: -10;
}
.kaiso_hero h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #333f;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 5px;
}
.info_wrap,
.rec_wrap,
.inst-wrap,
.reha_wrap {
  width: min(90%, 1300px);
  height: auto;
  margin: 100px auto;
  line-height: 2em;
}
.info_wrap h3,
.rec_wrap h3,
.reha_wrap h3 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 30px;
  border-bottom: #333 2px dotted;
  border-radius: 2px;
  padding-bottom: 2px;
}
.info_wrap h4,
.reha_wrap h4 {
  font-size: 24px;
}

/***************************** ご利用案内*/
.info_area ul {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  list-style: none;
  margin-top: 40px;
}

.info_area ul li {
  width: 31%;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  background-color: #df491c;
  color: #fff;
}

.info_area ul li img {
  width: 70px;
  height: auto;
  margin: 20px auto;
}
.info_area ul li h4 {
  text-align: center;
}
.info_area ul li p {
  text-align: left;
  display: block;
  margin: 0 auto;
}
.info_area02 {
  margin: 100px 0;
  border: #000 2px solid;
  border-radius: 10px;
  padding: 15px;
}
.info_area02 h4 {
  color: #df491c;
  margin: 10px 0;
}
.info_area02 ul {
  list-style: none;
}

/***************************** ご利用案内*/

/***************************** リハーサル*/
.studio_wrap {
  text-align: center;
  margin: 100px 0 150px;
}
.swiper-container {
  height: 50vh;
  margin: 30px 0;
  background-color: #000;
}

.studio_wrap h2 {
  font-size: 45px;
  margin-bottom: 50px;
}
.studio_wrap h3 {
  font-size: 25px;
  margin: 20px 0;
}

/* スライド */
.swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-slide-next {
  opacity: 0.3;
  transition-delay: 0.2s;
  transition: 0.6s;
}
.swiper-slide-prev {
  opacity: 0.3;
  transition-delay: 0.2s;
  transition: 0.6s;
}
/* ENDスライド */

.equip_btn {
  padding: 1em;
  margin: 20px auto;
  display: block;
  color: #fff !important;
  background: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  text-align: center;
  text-decoration: none !important;
}

.equip_btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: -3px 5px 0 0;
  background: url("../images/icon/equip_icon.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.equipment {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
.equip-intro {
  text-align: left;
  font-size: 16px;
  line-height: 2;
}
.equip-intro dt {
  display: block;
  text-align: center;
  background-color: #df491c;
  color: #fff;
  font-weight: bold;
  padding: 0.5em;
}
.equip-intro dd {
  padding-left: 0.5em;
  margin: 0.5em 0;
}

/* 料金表 */
.price {
  margin: 100px auto;
  width: 100%;
  max-width: 1024px;
}
.price h2 {
  margin-bottom: 30px;
  text-align: center;
}

/* 2/6更新料金表 */
.price_table {
  width: 100%;
  height: auto;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.price_table th,
td {
  padding: 15px 5px;
  border: 1px solid #333;
  font-size: 16px;
}

.price_table th {
  background-color: rgb(22, 6, 253);
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 675px) {
  .price_table thead {
    display: none;
  }
  .price_table td,
  .price_table th {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .price_table td:before {
    content: attr(data-label);
    font-size: 16px;
    font-weight: bold;
    color: #999;
    display: block;
  }
  .price_table td:last-child {
    border-bottom: solid 1px #ccc;
  }
  .price_table th {
    margin-top: 10px;
  }
}
/* 2/6更新料金表 END*/

.ps-comment ul {
  margin-top: 50px;
}

.ps-comment ul li {
  font-size: 16px;
  text-align: left;
}

/***************************** レコーディング*/
.plan {
  color: #fff;
  padding: 40px;
  border-radius: 5px;
}
.plan.aplan {
  background: url(../images/rec_bg1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.plan.bplan {
  background: url(../images/rec_bg2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.plan.cplan {
  background: url(../images/rec_bg3.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.plan img {
  width: min(100%, 1000px);
  margin-top: -50px;
}
.plan p {
  text-align: right;
  margin-top: -10px;
}
.plan + .plan {
  margin-top: 60px;
}
.rec_content {
  border: #000 1px solid;
  border-radius: 10px;
  padding: 15px;
  margin: 50px 0 30px;
  color: #000;
  font-size: 16px;
  line-height: 2;
}

/***************************** 機材レンタル*/
.inst-guide {
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 50px;
}
.inst-guide > h3 {
  padding: 20px 0 0;
  margin-bottom: 20px;
  border-bottom: #333 2px dotted;
}
.inst-guide ul {
  list-style: square;
}
.inst_gallery {
  margin-bottom: 150px;
}

.inst_btn {
  padding: 1em;
  margin: 50px auto;
  display: block;
  color: #fff !important;
  background: #df491c;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  text-align: center;
  text-decoration: none !important;
}
.inst_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: Calc(100% - 40px);
  background-color: #333;
  z-index: 51;
}
.inst_sc_btn {
  width: 34%;
  height: 40px;
}
.inst_sc_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: auto;
  height: 40px;
  color: #fff;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  background-color: #333;
  border: 1px dotted #fff;
}
.inst_sc_btn a:hover {
  opacity: 0.7;
}
/* .amp_wrap{
    
} */
.amp_wrap > ul {
  display: flex;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  align-items: stretch;
}
.amp_wrap > ul li {
  position: relative;
  width: 31%;
  margin: 1%;
  height: auto;
  padding: 20px 20px;
  border: 1px solid #000;
}

.amp_wrap > ul li h3 {
  font-size: 18px;
  font-weight: bold;
}
.inst_price {
  text-align: right;
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 27px;
  font-weight: bold;
}
.amp_wrap > ul li h4 {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.amp_wrap > ul li img {
  width: 100%;
  height: auto;
}

.ba_content > ul li {
  position: relative;
  width: 31%;
  margin: 1%;
  height: auto;
  padding: 20px 20px;
  border: 1px solid #000;
}
.drm_wrap {
  width: 100%;
  height: auto;
}
.drm_wrap > ul > li {
  display: flex;
  position: relative;
  border: 1px solid #000;
  margin-bottom: 20px;
}
.drm_wrap > ul > li img {
  width: 100%;
  padding: 20px;
}
.drmcontent {
  padding: 20px;
}
.drm_wrap > ul > li p {
  margin-bottom: 30px;
}
.bottom_space {
  width: auto;
  height: 150px;
}
/********************************************************************* タブレットレスポンシブ*/
@media screen and (max-width: 1024px) {
  /***************************** header*/
  /*ロゴ店名消す*/
  .logo_btn h1 > p {
    display: none;
  }
  .btn_pc {
    display: none;
  }
  .btn_sp {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .fa-phone-volume {
    height: 100%;
  }
  .tel_btn {
    margin-right: 70px;
    width: 70px;
  }

  /***************************** ナビ*/
  .hamburger {
    width: 70px;
    height: 70px;
  }
  .nav_logo {
    display: none;
  }
  .nav {
    width: 100%;
  }
  .nav_container ul {
    top: 120px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    font-size: 21px;
    line-height: 3;
  }
  .nav_container ul li:hover {
    background-color: #000;
    color: #fff;
  }
  .hamburger span {
    right: 15px;
  }
  .hamburger.active span:nth-child(1) {
    width: 30px;
    top: 20px;
    right: 20px;
  }
  .hamburger.active span:nth-child(2) {
    width: 30px;
    top: 20px;
    right: 20px;
  }
  .hamburger p {
    font-size: 12px;
  }

  /***************************** TOP */
  .hero img {
    width: 50%;
  }

  /***************************** section01 */
  .section01 {
    height: 300px;
    margin-bottom: 30px;
  }

  .left01 {
    width: 78%;
    height: 300px;
  }

  .obi h2 {
    font-size: 1.5em;
    line-height: 1.8em;
  }

  .obi p {
    font-size: 14px;
    line-height: 1.8;
  }

  /***************************** section02 */
  .section02 {
    width: 100%;
    margin: 100px auto;
  }
  .studio_map02 {
    margin: 3%;
  }

  /***************************** section03 */
  .titleh2 {
    font-size: 12vw;
  }
  /***************************** footer */
  .footer_wrap h2 {
    font-size: 1.3em;
  }
  .adress {
    margin: 0 auto;
  }
  .admap {
    flex-direction: column-reverse;
    margin-bottom: 60px;
  }
  .footer_wrap ul {
    position: static;
    max-width: 100%;
    justify-content: space-evenly;
    text-align: left;
  }
  .foot_right {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
  }

  /***************************** ご利用案内 */
  .info_area ul {
    display: block;
  }
  .info_area ul li:not(:first-of-type) {
    margin-top: 15px;
  }
  .info_area ul li {
    width: 100%;
  }

  /***************************** リハーサル */
  .equipment {
    width: 90%;
  }
  /***************************** 機材レンタル */
  .amp_wrap > ul li {
    width: 48%;
  }
  .drm_wrap > ul > li {
    display: inherit;
  }
  /***************************** 共通 */
  .br-tb {
    display: inline;
  }
}

/*********************************************************************************** スマホレスポンシブ */

@media screen and (max-width: 768px) {
  /******************************section01*/
  .obi h2 {
    font-size: 1.1em;
  }
  .left01 {
    width: 85%;
  }
  _:lang(x) + _:-webkit-full-screen-document,
  .scrolldown {
    top: -100px;
  }
  _:lang(x) + _:-webkit-full-screen-document,
  .hero img {
    top: -20px;
    left: 0;
    right: 0;
    bottom: 0;
  }

  /*****************************section03-05*/
  .secm {
    margin: 100px auto;
  }

  .list {
    display: block;
  }

  .titlep {
    font-size: 16px;
    line-height: 30px;
  }
  .ttext03 {
    width: 95%;
    top: 40px;
  }
  .titleh2 {
    font-size: 13vw;
  }
  .ttext04 {
    width: 95%;
    top: 40px;
  }
  .ttext05 {
    width: 95%;
    top: 40px;
  }
  .title03 {
    width: 100%;
    margin: 30px 0;
  }
  .title04 {
    width: 100%;
    margin: 30px 0;
  }
  .title05 {
    width: 100%;
    margin: 30px 0;
  }
  .contentsp {
    font-size: 14px;
  }
  /* ご利用案内 */
  .info_wrap {
    line-height: 1.5em;
  }
  .info_area02 ul li:not(:first-of-type) {
    margin-top: 10px;
  }
  .btns {
    display: block;
  }
  .btn01 {
    width: 80%;
    margin: 10px auto;
  }
  .btn01:hover {
    opacity: 1;
    transition: none;
    background-color: #fff;
    color: #333;
  }
  /* レコーディング */
  .rec_wrap h3 {
    font-size: 18px;
  }
  .plan {
    padding: 10px;
  }
  .plan img {
    margin-top: 0;
  }
  .plan p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.5;
  }
  /*リハーサル*/
  .swiper-container {
    height: 30vh;
  }

  .amp_wrap > ul li {
    width: 100%;
    margin: 10px 0;
  }

  /* 共通 */
  .br-sp {
    display: inline;
  }
}

@media screen and (max-width: 450px) {
  .contentstitle {
    font-size: 4.5vw;
  }
  .kaiso_hero h2 {
    font-size: 35px;
  }
  .inst_gallery ul li {
    display: block;
  }
  .inst_gallery ul li p span {
    position: static;
  }
  /* 料金表 */
  .br-450 {
    display: inline;
  }
}
