@charset "UTF-8";
/* CSS Document */


/*ヘッダー*/
.header {
  height: 90px;
  width: 100%;
  background-color: #fffffd;  /*トップページは無し*/
}

.header-content-wrapper{
  max-width: 1580px;              /*1520px + padding30+30px*/
  margin: 0 auto;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.header-content-wrapper h1 {
  padding: 30px 0 0 30px;
  position: absolute;
  left: 0;
  font-size: 3rem;
  text-transform: capitalize;
}
.header-content-wrapper h1 a{
  text-decoration: none;
}

.header-content-wrapper nav {
    display: block;
    text-align: right;
  }
  .header-content-wrapper nav ul {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    margin-top: 35px;
    line-height: 2rem;
  }
.header-content-wrapper nav li{
  border-right: 2px solid #333;
}
.header-content-wrapper nav li:nth-child(5) {
   border: none;
}

.header-content-wrapper nav li a {
    display: block;
    padding: 0 30px;
    text-decoration: none;
    font-size: 1.8rem;
    text-transform: uppercase;
  }

.nav-contact {
  display: none;
}

@media screen and (max-width:1200px){
  
  body {
    padding-top: 90px;
  }
  .header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  }
}


@media screen and (max-width:768px){
  
  body {
    padding-top: 60px;
  }
   .header {
    height: 60px;
  }
  .header-content-wrapper h1 {
    padding: 20px 0 0 30px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width:374px) {
  .header-content-wrapper h1 {
    font-size: 1.4rem;
  }
}




/*ハンバーガーメニュー*/
.openbtn {
  display: none;
}

@media screen and (max-width:1200px){
  
 /*========= ナビゲーションのためのCSS ===============*/
  
  
#g-nav{
     /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
	z-index: 999;
    /*ナビのスタート位置と形状*/
	top: 90px;
  right: -120%;
	width:100%;
  height: calc(100vh - 90px);/*ナビの高さ*/
	background: rgba(236,211,211,0.9);
    /*動き*/
	transition: all 0.3s;
}
  
  /*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
	right: 0;
}
  /*ナビゲーション*/
#g-nav ul {
    display: block;
    position: absolute;
    z-index: 999;
    top:80px;
    left:70px;
}
  .nav-contact {
    display: block;
    color: #333;
  }
 
  
  
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  display: block;
	position: relative;
	cursor: pointer;
  width: 45px;
  height:90px;
  margin: 0 30px 0 auto;
}
  
  /*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    height: 2px;
	background: #333;
  	width: 100%;
  }


.openbtn span:nth-of-type(1) {
  left: 0;
	top:30px;	
}

.openbtn span:nth-of-type(2) {
  left: 0;
	top:40px;
}
  .openbtn span:nth-of-type(2)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:2px;
	left:2px;
	color: #333;
	font-size: 1.3rem;
	text-transform: uppercase;
}
  
  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    transform: translateY(4px) rotate(-25deg);
}

.openbtn.active span:nth-of-type(2){
    transform: translateY(-6px) rotate(25deg);
}

.openbtn.active span:nth-of-type(2)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-25deg);
	top:5px;
  left: 10px;
	
}
  
  /*リストのレイアウト設定*/

#g-nav li{
  text-align: left;
  border: none;
}

#g-nav li a{
	padding:20px 0;
  display: inline-block;
 }

}



@media screen and (max-width:768px){
  
  #g-nav{
	top: 60px;
	width:100%;
  height: calc(100vh - 60px);/*ナビの高さ*/
    /*動き*/
	transition: all 0.3s;
}
  
  
  .openbtn {
    width: 30px;
    height: 60px;
  }
  
  
.openbtn span:nth-of-type(1) {
	top:20px;	
}
.openbtn span:nth-of-type(2) {
	top:27px;
}
  .openbtn span:nth-of-type(2)::after {
	left:0;
	color: #333;
	font-size: 0.9rem;
}
  
  
  .openbtn.active span:nth-of-type(1) {
    transform: translateY(1px) rotate(-25deg);
}

.openbtn.active span:nth-of-type(2){
    transform: translateY(-6px) rotate(25deg);
}

.openbtn.active span:nth-of-type(2)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-25deg);
	top:5px;
  left: 7px;
	
 }
}




/*トップページ*/
.section-top {
  width: 100%;
  position: relative;
}
.section-top__image {
  width: 92vw;
  height: auto;
  background-image: url("../images/studio/studio_main.png");
  aspect-ratio: 177 / 70;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-top h2 {
  position: absolute;
  /*  font-size: 4rem;*/
  font-size: 3.2vw;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);        /*テキスト中央寄せ*/
  color: #FFF;
  font-family: 'Montserrat', sans-serif; 
  text-transform: uppercase;
}
.section-top h2 span {     /*フェードアップに必要*/
  display: block;
}

.section-top ul {
  writing-mode: vertical-rl;
  position: absolute;
  right: 3%;
  bottom:0;
  display: flex;
  list-style: none;
  line-height: 2rem;
}

.section-top li:first-child {
  border-bottom: 2px solid #333;
}
.section-top ul li a{
  text-decoration: none;
  padding: 30px 0;
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
}





@media screen and (max-width:1200px){
  
  .section-top h2{
    font-size: 3rem;
  } 
}

@media screen and (max-width:768px){
  
  .section-top__image {
    width: 100%;
    height: 240px;
  }
  
  .section-top ul {
    right: 25px;
  }
  .section-top ul li a {
    padding: 15px 0;
    font-size: 1.5rem;
    color: #fff;
  }
  
  .section-top li:first-child {
  border-bottom: 2px solid #fff;
}
}





/*スタジオ*/
.section-studio {
  padding: 110px 18.7%;
  text-align: left;
}



.section-studio ul {
  list-style: none;
}

.studio-list {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 0
}

.studio-text {
  width: 50%;
  padding-right: 60px;
}

.studio-right {
  width: 50%;
}


.studio-text h4 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.studio-text h4 span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.studio-text h5 {
  font-size: 1.6rem;
  margin-bottom: 100px;
  padding-left: 10px;
}

#studio1 h5 {
  border-left: solid 4px #f0beb2;
}

#studio2 h5 {
  border-left: solid 4px #fade9f;
}

.studio-text dt {
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif; 
  text-transform: uppercase;
}

.studio-text dt::before {
    content: "";
	display: inline-block;
	border: 5px solid transparent;
	border-left: 8px solid #333;
	padding: 0;
	margin: 0 5px 0 0;
	top: -3px;
	position: relative;
  }

.studio-text dd {
  font-size: 1.4rem;
  margin-bottom: 40px;
}


.studio-map {
  max-width: 600px;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 60px;
}

.studio-map iframe {
  width: 100%;
  height: 100%;
  border: solid 2px #333;
}

/*slick*/

.slider-studio {
  max-width: 600px;
  width: 100%;
}

.slider-studio img {
  max-width: 600px;
  max-height: 400px;
  width: 100%;
   object-fit: cover;
  aspect-ratio: 3 / 2;
  
}
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 48%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;/*矢印の色*/
    border-right: 2px solid #fff;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-30px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:6px;/*ドットボタンのサイズ*/
    height:6px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
    border-width: 0;
    padding: 0;
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}




@media screen and (max-width:1200px){
  
  .studio-list {
    display: block;
  }
  
  .studio-text {
    width: 100%;
    padding-right: 0;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .studio-text h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}
  
  .studio-text h5 {
  font-size: 1.4rem;
  margin-bottom: 80px;
}
  
  .studio-right {
    width: 100%;
  }
  
  .section-studio dt {
    font-size: 1.6rem;
  }
  
  .section-studio dt::before {
    border: 4px solid transparent;
	 border-left: 6px solid #333;
	 padding: 0;
	 margin: 0 5px 0 0;
  }
  .studio-map {
    margin: 0 auto 60px;
  }
  .studio-img {
    max-width: 600px;
    margin: 0 auto;
  }
  
}

@media screen and (max-width:768px){
  
  .section-studio {
    padding: 0;
  }
  .studio-list {
    padding: 100px 0;
  }
  .studio-text {
    padding: 0 30px;
    max-width: initial;
  }
  .studio-map {
    max-width: initial;
    margin-bottom: 40px;
  }
  .studio-img {
    max-width: initial;
    margin: 0 auto;
  }
  .slider-studio img {
    max-width: initial;
    max-height: initial;
  }
  .slider-studio {
    max-width: initial;
  }
}


/*フッター*/
.footer {
  background-color: #617b5d;
}

/*フッターウェーブ*/
.wave__footer {
    background-color: #fffffd;
    width: 100%;
    height: 150px;
    position: relative;
}
.wave__footer::after{
    content: "";
    background-image: url("../images/common/wave_footer.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 150px;
    position: absolute;
    left: 0;
    bottom: 0;
}
@media screen and (max-width:768px) {
  .wave__footer {
    height: 80px;
  }
  .wave__footer::after {
    height: 80px;
  }
}











