@charset "UTF-8";
/* ==========================================================================
  Reset
  ========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

img {
  font-size: 0;
  line-height: 0;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
  font-style: italic;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset, img {
  line-height: 0;
  vertical-align: top;
}

hr {
  display: none;
}

input, select {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

html, body {
  width: 100%;
  height: 100%;
}

ul, li {
  list-style: none;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

/* ==========================================================================
  Base
  ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  color: #000;
  font-size: 1.6em;
  font-family: "futura-pt", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.125em;
  background: #000;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (min-width: 769px) {
  body {
    min-width: 900px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

img {
  width: 100%;
  height: auto;
}

::selection {
  background: #000;
  color: #fff;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.en {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: bold;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

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

.btn {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: bold;
}

/* ==========================================================================
  Layout
  ========================================================================== */
.l-wrapper {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.l-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    max-width: 95%;
    margin: 0 auto;
  }
}

.l-main {
  position: relative;
}

.l-section {
  position: relative;
}
.l-section small {
  font-size: 80%;
}

/* ==========================================================================
  Parts
  ========================================================================== */
.l-header {
  width: 100%;
  background: transparent;
  background: #fff;
  padding: 10px 0;
  height: 60px;
  position: fixed;
  overflow: visible;
  display: flex;
  justify-content: flex-end;
  z-index: 10000;
}
.l-header .logo {
  content: "";
  position: absolute;
  display: block;
}
.l-header .logo-horizonal {
  width: 140px;
  height: 50px;
  margin: 0 auto auto;
  left: 15px;
  right: auto;
  top: 10px;
  bottom: 0;
  z-index: 10002;
}

.l-header .nav-trigger {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0 auto auto;
  z-index: 10001;
}
.l-header .nav-trigger .lines {
  position: relative;
}
.l-header .nav-trigger .lines span {
  position: absolute;
  z-index: 2;
  background: #000;
  left: 15px;
  transition: all 0.25s ease-out;
}
.l-header .nav-trigger .lines span:nth-child(1) {
  width: 30px;
  height: 1px;
  top: 20px;
}
.l-header .nav-trigger .lines span:nth-child(2) {
  width: 30px;
  height: 1px;
  top: 30px;
}
.l-header .nav-trigger .lines span:nth-child(3) {
  width: 30px;
  height: 1px;
  top: 40px;
}
.l-header .nav-trigger.is-active .lines span:nth-child(1) {
  width: 30px;
  top: 30px;
  transform: rotate(-45deg);
}
.l-header .nav-trigger.is-active .lines span:nth-child(2) {
  width: 0;
  top: 30px;
  transform: rotate(45deg);
}
.l-header .nav-trigger.is-active .lines span:nth-child(3) {
  width: 30px;
  top: 30px;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .l-header .nav-trigger {
    height: 60px;
    right: 0;
  }
}
.l-header .gnav {
  position: fixed;
  opacity: 0;
  top: 0;
  bottom: auto;
  left: auto;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  margin: auto;
  padding: 60px 0 0;
  transition: all 0.25s ease-out;
}
.l-header .gnav .gnav-inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 2.5% 5%;
  overflow-y: auto;
}
.l-header .gnav ul {
  position: relative;
  width: 100%;
  margin: 15px 0 0;
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #666;
}
.l-header .gnav ul li {
  overflow: visible;
  border-bottom: 1px solid #666;
  text-align: center;
  margin: 0;
}
.l-header .gnav ul li a {
  border: none;
  display: block;
  padding: 20px 0;
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.l-header .gnav ul li a:last-child {
  border: none;
}
.l-header .gnav ul li.sp-sns {
  text-align: center;
  padding: 25px 0;
}
.l-header .gnav ul li.sp-sns a {
  display: inline-block;
  width: 26px;
  height: 26px;
  padding: 0;
  margin: 0 20px;
  border: none;
}
.l-header .gnav.is-active {
  display: block;
  right: 0;
  opacity: 1;
}

body {
  overflow: auto;
}

body.off-scroll {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .l-header .gnav ul li a {
    font-size: 2rem;
    padding: 20px 0;
  }
}
.l-header .sns {
  margin: 0 20px 0 10px;
}
.l-header .sns ul {
  display: flex;
  justify-content: flex-end;
  padding: 4px 0;
}
.l-header .sns ul li {
  margin-left: 10px;
}
.l-header .sns ul li a {
  display: block;
  width: 32px;
  height: 32px;
}
.l-header .sns ul li a img {
  width: 100%;
  height: auto;
}

.l-footer {
  height: 90px;
  background: #000;
}
.l-footer .l-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}
.l-footer .l-inner ul {
  position: absolute;
  width: 100%;
  top: 30px;
  left: 5%;
  display: flex;
  justify-content: flex-start;
}
.l-footer .l-inner ul li {
  width: 12%;
  color: #fff;
  font-size: 1.6rem;
}
.l-footer .l-inner ul li a {
  color: #fff;
}
@media screen and (min-width: 769px) {
  .l-footer .l-inner ul li a:hover {
    color: #666;
  }
}

.footer-info {
  color: #fff;
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-align: center;
  z-index: 999;
}
.footer-info p {
  line-height: 2.4rem;
}
.footer-info .footer-receive {
  position: relative;
  font-size: 1.3rem;
}
.footer-info .footer-receive::before,
.footer-info .footer-receive::after {
  content: "";
  width: 20%;
  height: 1px;
  background: #fff;
}
.footer-info .footer-receive::before {
  position: absolute;
  top: 50%;
  left: 0;
}
.footer-info .footer-receive::after {
  position: absolute;
  top: 50%;
  right: 0;
}
.footer-info .footer-tel {
  font-size: 2.74rem;
  font-weight: bold;
  margin-bottom: 2px;
}
.footer-info .footer-tel a {
  color: #fff;
}
.footer-info .footer-time {
  font-size: 2rem;
  font-weight: bold;
}
.footer-info .font-s {
  font-size: 0.8rem;
  letter-spacing: 0;
}

.footer-info.footer-info-bk {
  color: #000;
}
.footer-info.footer-info-bk .footer-receive::before,
.footer-info.footer-info-bk .footer-receive::after {
  background: #000;
}
.footer-info.footer-info-bk .footer-tel a {
  color: #000;
}

.footer-info.footer-info-gnav {
  position: relative;
  margin: 15px auto 0;
  max-width: 208px;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}

@media screen and (max-width: 768px) {
  .l-footer {
    height: auto;
    min-height: 150px;
  }
  .l-footer .l-inner {
    width: 100%;
    padding: 5% 2.5%;
  }
  .l-footer .l-inner ul {
    position: relative;
    width: 100%;
    top: auto;
    left: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .l-footer .l-inner ul li {
    width: auto;
    font-size: 1.4rem;
    margin: 0 20px;
  }

  .footer-info {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    width: 205px;
    margin: 0 auto;
  }
  .footer-info p {
    line-height: 2.4rem;
  }
  .footer-info .footer-receive {
    position: relative;
    font-size: 13px;
  }
  .footer-info .footer-receive::before,
.footer-info .footer-receive::after {
    content: "";
    width: 20%;
    height: 1px;
    background: #fff;
  }
  .footer-info .footer-receive::before {
    position: absolute;
    top: 50%;
    left: 0;
  }
  .footer-info .footer-receive::after {
    position: absolute;
    top: 50%;
    right: 0;
  }
  .footer-info .footer-tel {
    font-size: 27.4px;
    font-weight: bold;
    margin-bottom: 2px;
  }
  .footer-info .footer-tel a {
    color: #fff;
  }
  .footer-info .footer-time {
    font-size: 20px;
    font-weight: bold;
  }
  .footer-info .font-s {
    font-size: 8px;
    letter-spacing: 0;
  }
}
.modaal-inner-wrapper {
  padding: 80px 20px !important;
}

@media screen and (max-width: 768px) {
  .modaal-content-container {
    padding: 30px 20px;
  }

  .modaal-video-wrap {
    margin: auto 0px !important;
    position: relative;
  }
}
/* ==========================================================================
  Animation
  ========================================================================== */
.anim {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

.anim-fadeout {
  animation: fadeIn 0.2s 0.2s both ease-out;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}
.anim-fadein {
  opacity: 0;
}

.anim-fadein.is-show {
  animation: fadeIn 0.3s 0.1s both ease-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-fadeinUp {
  opacity: 0;
}

.anim-fadeinUp.is-show {
  animation: fadeInUp 0.3s 0.2s both ease-out;
}

.anim-fadeinUp.anim-delay2.is-show {
  animation: fadeInUp 0.3s 0.3s both ease-out;
}

.anim-fadeinUp.anim-delay3.is-show {
  animation: fadeInUp 0.3s 0.4s both ease-out;
}

@keyframes fadeInUp {
  0% {
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  animation: slideInL 0.8s 0.2s both ease-out;
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  animation: slideInR 0.8s 0.2s both ease-out;
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slideout-l.is-out {
  animation: slideOutL 1.5s 0.1s both ease-out;
}

@keyframes slideOutL {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(-100vw, 0);
  }
}
.anim-slideout-r.is-out {
  animation: slideOutR 1.5s 0.1s both ease-out;
}

@keyframes slideOutR {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(100vw, 0);
  }
}
/* ==========================================================================
  dog
  ========================================================================== */
.trig {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

.bgextend {
  position: relative;
}

.bgextend.is-show::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffef00;
  /*伸びる背景色の設定*/
  z-index: -1;
  left: -2px;
  top: -1px;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}
/* ==========================================================================
COMMON
========================================================================== */
.l-main {
  padding-top: 60px;
}
.l-main h1 {
  font-size: 4.2rem;
  font-weight: normal;
  text-align: center;
  margin: 80px auto 80px;
}
.l-main p {
  letter-spacing: 0.125em;
}
.l-main p.lead {
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.125em;
  line-height: 1.8;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .l-main h1 {
    font-size: 3.2rem;
    margin: 40px auto 40px;
  }
  .l-main h2 {
    font-size: 3.2rem;
    font-weight: normal;
    text-align: center;
    margin: 40px auto 40px;
  }
  .l-main p.lead {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 375px) {
  .l-main p.lead {
    font-size: 1.4rem;
  }
}
.l-main a {
  transition: all 0.25s ease-out;
}
.l-main a:hover {
  opacity: 0.8;
}

.page-ttl {
  margin: 80px auto 80px;
  width: auto;
  height: 80px;
  text-align: center;
}
.page-ttl img {
  width: auto;
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .page-ttl {
    margin: 40px auto 40px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) and (max-width: 375px) {
  .page-ttl {
    height: 45px;
  }
}
.sec-ttl {
  margin: 80px auto 80px;
  width: auto;
  height: 80px;
  text-align: center;
}
.sec-ttl img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .sec-ttl {
    margin: 40px auto 40px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) and (max-width: 375px) {
  .sec-ttl {
    height: 50px;
  }
}
.cnts {
  margin: 0 auto 80px;
}
.cnts:last-child {
  margin-bottom: 0;
}

.l-main h2,
.l-main h3 {
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* ---------------
STUDIO一覧ページ
------------------ */
.l-about {
  padding: 60px 0 0;
  width: 100%;
}
.l-about .mv {
  width: 100%;
}
.l-about .mv ul {
  display: flex;
  justify-content: center;
  background: #eee;
}
.l-about .mv ul li {
  width: 50%;
}
.l-about .mv ul li a {
  display: block;
}
.l-about .mv ul li a:hover {
  opacity: 0.8;
}
.l-about .cnts-about {
  width: 100%;
  margin: 0 auto;
}
.l-about .cnts-about .lead {
  margin: 0 auto 40px;
}
.l-about .cnts-about .lead strong {
  font-size: 120%;
  display: inline-block;
  margin-bottom: 15px;
}
.l-about .cnts-about .lead a {
  font-size: 114%;
  font-weight: bold;
  color: #000;
  display: inline-block;
  margin-bottom: 15px;
  line-height: 1;
}
.l-about .cnts-about .lead a.Ast {
  border-bottom: 1px solid blue;
}
.l-about .cnts-about .lead a.Bst {
  border-bottom: 1px solid red;
}
.l-about .cnts-about .lead a.Cst {
  border-bottom: 1px solid gray;
}
.l-about .cnts-about .about-img {
  width: 100%;
  margin: 0 auto 40px;
}
.l-about .cnts-about .btn {
  display: flex;
  justify-content: space-evenly;
  width: 60%;
  margin: 0 auto;
}
.l-about .cnts-about .btn li {
  width: 30%;
  min-width: 200px;
  height: auto;
}
.l-about .cnts-about .btn li img {
  width: 100%;
  height: auto;
}
.l-about .studio-detail {
  margin: 100px 0 0;
  padding-bottom: 5%;
  background: url(../images/common/bg_silver.jpg) center 50px no-repeat;
  background-size: cover;
}
.l-about .studio-detail .st-box .inner-box {
  display: flex;
  justify-content: space-between;
  width: 1100px;
  margin: 0 auto;
}
.l-about .studio-detail .st-box .inner-box .st-box-img {
  width: 45%;
  height: auto;
  z-index: 100;
}
.l-about .studio-detail .st-box .inner-box .st-box-img img {
  width: 100%;
  height: auto;
}
.l-about .studio-detail .st-box .inner-box .st-box-text {
  width: 45%;
  margin: 12% 0 0 5%;
  z-index: 100;
}
.l-about .studio-detail .st-box .inner-box .st-box-text .st-ttl {
  width: auto;
  height: 80px;
}
.l-about .studio-detail .st-box .inner-box .st-box-text .st-ttl img {
  width: auto;
  height: 55%;
  margin-top: 5%;
}
.l-about .studio-detail .st-box .inner-box .st-box-text .st-ttl_radio {
  background: url(../images/studio/radio_ttl_bg.png) 5% bottom no-repeat;
  background-size: contain;
}
.l-about .studio-detail .st-box .inner-box .st-box-text .st-ttl_ma {
  background: url(../images/studio/ma_ttl_bg.png) 5% bottom no-repeat;
  background-size: contain;
}
.l-about .studio-detail .st-box .inner-box .st-box-text .st-ttl_st {
  background: url(../images/studio/streaming_ttl_bg.png) 5% bottom no-repeat;
  background-size: contain;
}
.l-about .studio-detail .st-box .inner-box .st-box-text p {
  font-size: 1.4rem;
  line-height: 2em;
  font-weight: 500;
}
.l-about .studio-detail .st-second {
  position: relative;
  width: 100%;
}
.l-about .studio-detail .st-second .inner-box {
  width: 1100px;
  margin: 0 auto;
}
.l-about .studio-detail .st-second .inner-box .st-first-text {
  width: 45%;
  margin: 15% 5% 0 0;
}
.l-about .studio-detail .st-second::after {
  content: "";
  display: block;
  width: 100%;
  height: 110%;
  background: #fff;
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.l-about .studio-detail .st-third {
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .l-about {
    width: 100%;
  }
  .l-about .mv {
    width: 100%;
  }
  .l-about .mv ul {
    display: flex;
  }
  .l-about .mv ul li a {
    display: block;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .l-about .mv ul {
    justify-content: center;
  }
  .l-about .mv ul li {
    width: 33.5%;
  }
  .l-about .mv ul li a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .l-about .mv ul {
    flex-direction: column;
  }
  .l-about .mv ul li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-about .cnts-about {
    width: 100%;
    margin: 0 auto;
  }
  .l-about .cnts-about .lead {
    margin: 0 auto 40px;
  }
  .l-about .cnts-about .btn {
    width: 100%;
  }
  .l-about .cnts-about .btn li {
    width: 40%;
    min-width: 150px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-about .studio-detail {
    margin: 40px 0 0;
    padding-bottom: 0;
  }
  .l-about .studio-detail .st-box .inner-box {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 5%;
  }
  .l-about .studio-detail .st-box .inner-box .st-box-img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 100;
  }
  .l-about .studio-detail .st-box .inner-box .st-box-img img {
    width: 100%;
    height: auto;
  }
  .l-about .studio-detail .st-box .inner-box .st-box-text {
    width: 100%;
    margin: 0;
    z-index: 100;
  }
  .l-about .studio-detail .st-box .inner-box .st-box-text .st-ttl {
    text-align: center;
    width: auto;
    height: 50px;
    margin: 40px auto 40px;
  }
  .l-about .studio-detail .st-box .inner-box .st-box-text .st-ttl img {
    width: auto;
    height: 100%;
    margin-top: 0;
  }
  .l-about .studio-detail .st-box .inner-box .st-box-text .st-ttl_radio {
    background: url(../images/studio/radio_ttl_bg.png) center center no-repeat;
    background-size: contain;
  }
  .l-about .studio-detail .st-box .inner-box .st-box-text .st-ttl_ma {
    background: url(../images/studio/ma_ttl_bg.png) center center no-repeat;
    background-size: contain;
  }
  .l-about .studio-detail .st-box .inner-box .st-box-text .st-ttl_st {
    background: url(../images/studio/streaming_ttl_bg.png) center center no-repeat;
    background-size: contain;
  }
  .l-about .studio-detail .st-box .inner-box .st-box-text p {
    font-size: 1.4rem;
    line-height: 2em;
    font-weight: 500;
  }
  .l-about .studio-detail .st-second {
    position: relative;
    width: 100%;
    background: #fff;
  }
  .l-about .studio-detail .st-second .inner-box {
    width: 100%;
    margin: 0 auto;
  }
  .l-about .studio-detail .st-second .inner-box .st-first-text {
    width: 100%;
    margin: auto;
  }
  .l-about .studio-detail .st-second::after {
    content: none;
  }
  .l-about .studio-detail .st-third {
    padding-top: 0;
  }
}
/* ---------------
studio詳細
------------------ */
.l-studio-det .mv {
  height: 400px;
  min-width: 1000px;
}
.l-studio-det .mv .inner-box {
  width: 100%;
  max-width: 1100px;
  position: relative;
}
.l-studio-det .mv .inner-box .studio-mv-text {
  width: 100%;
  position: absolute;
  top: 200px;
  left: 5%;
}
.l-studio-det .mv .inner-box .studio-mv-text .studio-mv-name {
  width: 20%;
  height: auto;
}
.l-studio-det .mv .inner-box .studio-mv-text .studio-mv-name img {
  width: 100%;
}
.l-studio-det .mv .inner-box .studio-mv-text .studio-mv-copy {
  width: 30%;
  margin-top: 10px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .l-studio-det .mv {
    height: 200px;
    min-width: 100%;
  }
  .l-studio-det .mv .inner-box {
    width: 100%;
    max-width: 100%;
  }
  .l-studio-det .mv .inner-box .studio-mv-text {
    top: 70px;
    left: 5%;
  }
  .l-studio-det .mv .inner-box .studio-mv-text .studio-mv-name {
    width: 30%;
  }
  .l-studio-det .mv .inner-box .studio-mv-text .studio-mv-copy {
    width: 30%;
    font-size: 1.3rem;
  }
}
.l-studio-det .mv-a {
  background: url(../images/studio_a/mv_bg_a.png) center center no-repeat;
  background-size: cover;
}
.l-studio-det .mv-b {
  background: url(../images/studio_b/mv_bg_b.png) center center no-repeat;
  background-size: cover;
}
.l-studio-det .mv-c {
  background: url(../images/studio_c/mv_bg_c.png) center center no-repeat;
  background-size: cover;
}
.l-studio-det .studio-about {
  width: 100%;
  margin: 0 auto 80px;
}
.l-studio-det .studio-about .lead {
  margin: 0 auto 80px;
  font-size: 1.4rem;
}
.l-studio-det .studio-about .about-img {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
}
.l-studio-det .studio-about .about-img li {
  width: 30%;
  height: auto;
}
.l-studio-det .studio-about .about-img li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .l-studio-det .studio-about .about-img {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
  }
  .l-studio-det .studio-about .about-img li {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
  .l-studio-det .studio-about .about-img li:last-child {
    margin-bottom: 0;
  }
}
.l-studio-det .studio-price {
  width: 100%;
  padding: 10px 0 130px !important;
  background: url(../images/common/bg_silver.jpg) center top no-repeat;
  background-size: cover;
}
.l-studio-det .studio-price.studio-price-Ast {
  background: lightblue;
}
.l-studio-det .studio-price.studio-price-Bst {
  background: lightpink;
}
.l-studio-det .studio-price.studio-price-Cst {
  background: lightgray;
}
.l-studio-det .studio-price .l-inner .st-ttl_price {
  background: url(../images/studio_a/price_ttl_bg.png) center center no-repeat;
  background-size: contain;
}
.l-studio-det .studio-price .price-table {
  width: 100%;
  margin: 30px auto 0;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
}
.l-studio-det .studio-price .price-table td {
  padding: 1%;
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
  background: #fff;
}
.l-studio-det .studio-price .btn {
  width: 20%;
  float: right;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .l-studio-det .studio-price .btn {
    width: 40% !important;
  }
}
.l-studio-det .studio-price .btn a {
  display: block;
}
.l-studio-det .studio-price .btn a img {
  width: 100%;
  height: auto;
}
.l-studio-det .studio-equipment {
  padding-bottom: 60px;
}
.l-studio-det .studio-equipment h2 {
  margin: 60px auto;
  width: 50%;
  height: auto;
}
.l-studio-det .studio-equipment h2 img {
  width: 40%;
}
.l-studio-det .studio-equipment .st-ttl_equipment {
  background: url(../images/studio_a/equipment_ttl_bg.png) center center no-repeat;
  background-size: contain;
}
.l-studio-det .studio-equipment .accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  /*アコーディオンで現れるエリア*/
}
.l-studio-det .studio-equipment .accordion-area li {
  margin: 10px 0;
}
.l-studio-det .studio-equipment .accordion-area .accordion-box {
  border: 1px solid #ccc;
}
.l-studio-det .studio-equipment .accordion-area .accordion-box .title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  font-weight: normal;
  padding: 2%;
  transition: all 0.5s ease;
}
.l-studio-det .studio-equipment .accordion-area .accordion-box .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35%;
  margin-top: -3px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: #000;
}
.l-studio-det .studio-equipment .accordion-area .accordion-box .title.open::after {
  content: "";
  position: absolute;
  top: 15px;
  border: 8px solid transparent;
  border-bottom-color: #fff;
}
.l-studio-det .studio-equipment .accordion-area .box {
  display: none;
  /*はじめは非表示*/
  margin: 0 3% 3% 3%;
  padding: 3%;
}
.l-studio-det .studio-equipment .accordion-area .box ol {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.l-studio-det .studio-equipment .accordion-area .box ol li {
  font-size: 1.5rem;
  width: 48%;
  margin-bottom: 10px;
}

/* ---------------
Price
------------------ */
.l-price .studio-price {
  width: 100%;
  padding: 10px 0 40px;
  background: url(../images/common/bg_silver.jpg) center top no-repeat;
  background-size: cover;
}
.l-price .studio-price .l-inner h2 {
  margin: 60px auto;
  height: auto;
}
.l-price .studio-price .l-inner h2 img {
  display: block;
  width: auto;
  height: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-price .studio-price .l-inner h2 img {
    height: 40px;
  }
}
.l-price .studio-price .l-inner .st-ttl_price {
  background: url(../images/studio_a/price_ttl_bg.png) center center no-repeat;
  background-size: contain;
}
.l-price .studio-price .price-list h3 {
  font-size: 2rem;
  text-align: center;
}
.l-price .studio-price .price-list table {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .l-price .studio-price .price-list table {
    letter-spacing: 1px;
  }
}
.l-price .studio-price .price-list table caption {
  caption-side: bottom;
  text-align: right;
  font-size: 1.3rem;
  padding-top: 10px;
}
.l-price .studio-price .price-table {
  width: 100%;
  margin: 30px auto 40px;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
}
.l-price .studio-price .price-table tr.Ast td {
  background: lightblue;
}
.l-price .studio-price .price-table tr.Bst td {
  background: lightpink;
}
.l-price .studio-price .price-table tr.Cst td {
  background: #fff;
}
.l-price .studio-price .price-table tr.Engineer td {
  background: #eee;
}
.l-price .studio-price .price-table th,
.l-price .studio-price .price-table td {
  padding: 2% 1%;
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
  background: #fff;
  vertical-align: middle;
}
.l-price .studio-price .price-table th {
  font-weight: bold;
  text-align: center;
  background: #000;
  color: #fff;
}
.l-price .studio-price .price-table td {
  text-align: center;
}
.l-price .studio-price .notes {
  margin-bottom: 20px;
}
.l-price .studio-price .notes ul {
  padding-left: 1em;
}
.l-price .studio-price .notes ul li {
  list-style: disc outside;
  margin-bottom: 0.5em;
}
.l-price .studio-price .notes ul li:last-child {
  margin-bottom: 0;
}
.l-price .studio-price .cancel {
  background: #ffff;
  padding: 2.5%;
  border: 2px solid #333;
  margin-bottom: 40px;
}
.l-price .studio-price .cancel h4 {
  margin-bottom: 10px;
}
.l-price .studio-price .cancel p {
  line-height: 1.4;
}
.l-price .studio-price .cancel span.red {
  color: red;
}
.l-price .studio-price .btn {
  width: 20%;
  float: right;
  margin-top: 20px;
}
.l-price .studio-price .btn a {
  display: block;
}
.l-price .studio-price .btn a img {
  width: 100%;
  height: auto;
}
.l-price .attention .l-inner {
  padding: 60px 0;
}
.l-price .attention .l-inner h3 {
  font-size: 2rem;
  text-align: center;
}
.l-price .attention .l-inner h3::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  margin-top: 10px;
  display: block;
}
.l-price .attention .l-inner ul {
  margin-top: 30px;
  padding-left: 3%;
}
.l-price .attention .l-inner ul li {
  list-style: disc;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* ---------------
Policy
------------------ */
.l-policy {
  padding-bottom: 80px;
}
.l-policy h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
.l-policy ol {
  padding-left: 1.5em;
}
.l-policy ol li {
  margin-bottom: 40px;
  list-style: numeric outside;
}
.l-policy ol li h4 {
  margin-bottom: 20px;
}
.l-policy ol li p {
  font-size: 1.4rem;
  line-height: 1.4;
}
.l-policy ol li p a {
  color: #333;
  text-decoration: underline;
}
.l-policy ol li p a:hover {
  text-decoration: none;
}

/* ---------------
Company
------------------ */
.l-company .company-info {
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .l-company .l-inner {
    max-width: 800px;
  }
}
.l-company p {
  line-height: 1.4;
}
.l-company h2,
.l-company h3 {
  text-align: left;
}
.l-company hr {
  display: block;
  margin: 30px 0;
  border: none;
}
.l-company a {
  color: #333;
  text-decoration: underline;
}
.l-company a:hover {
  text-decoration: none;
}
.l-company table {
  width: 100%;
}
.l-company table th {
  width: 20%;
  font-weight: bold;
}
.l-company table th,
.l-company table td {
  text-align: left;
  padding: 1%;
  line-height: 1.4;
}
.l-company ul li {
  margin-bottom: 15px;
  line-height: 1.4;
  position: relative;
  padding-left: 21px;
}
@media screen and (max-width: 768px) {
  .l-company ul li {
    padding-left: 18px;
  }
}
.l-company ul li ul {
  padding-top: 10px;
  padding-left: 1.5em;
  font-size: 90%;
}
.l-company ul li ul li {
  list-style: disc outside;
  padding-left: 0;
  margin-bottom: 10px;
}
.l-company ul li ul li:before {
  content: none;
}
.l-company ul li:before {
  content: "";
  left: 0;
  top: 2px;
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: white;
  border: 2px solid black;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .l-company ul li:before {
    top: 2px;
    width: 10px;
    height: 10px;
  }
}

/* ---------------
Access
------------------ */
.l-access p {
  text-align: left;
  line-height: 1.4;
  margin-bottom: 20px;
}
.l-access .map {
  width: 100%;
}
.l-access .map iframe {
  width: 100%;
  height: 400px;
}
.l-access a {
  color: #000;
}
.l-access a:visited {
  color: 0;
}

/* ---------------
Reservation
------------------ */
.l-reservation {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .l-reservation .page-ttl {
    height: 45px;
  }
}
.l-reservation .reserve-info {
  margin-top: 40px;
  text-align: center;
}
.l-reservation .reserve-info a {
  color: #000;
}
.l-reservation .reserve-info p {
  font-weight: bold;
  margin-bottom: 10px;
}
.l-reservation .reserve-info p.reserve-tel {
  font-size: 4rem;
  letter-spacing: 0.05em;
}
.l-reservation .reserve-info p .font-s {
  font-size: 80%;
  font-weight: bold;
}
.l-reservation .attention h3 {
  margin-top: 80px;
}
.l-reservation .attention ol {
  padding-left: 1.5em;
}
.l-reservation .attention ol li {
  margin-bottom: 40px;
  list-style: numeric outside;
}
.l-reservation .attention ol li h4 {
  margin-bottom: 20px;
}
.l-reservation .attention ol li p {
  font-size: 1.4rem;
  line-height: 1.4;
}
.l-reservation .attention ol li p a {
  color: #333;
  text-decoration: underline;
}
.l-reservation .attention ol li p a:hover {
  text-decoration: none;
}

/* ---------------
価格改訂のお知らせ
------------------ */
.notice {
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
}
.notice h4 {
  margin-bottom: 10px;
}
.notice p {
  line-height: 1.6;
}
.notice p a {
  color: #000;
  text-decoration: underline;
}
.notice p a:hover {
  text-decoration: none;
}

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

/*# sourceMappingURL=style.css.map */
