@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");
/* CSS Document */
/*===================================================
	共通CSS（PC/SMP）
===================================================*/
/*////////////////////////////////////////////////////////////
	共通設定
///////////////////////////////////////////////////////////*/
/* --------------------------------------------------
	base
-------------------------------------------------- */
* {
  box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html,
body {
  width: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic New", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  line-height: 1.5;
  color: #151512;
  font-size: 16px;
  background: #f6f8f5;
  transition: 2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

.txt {
  line-height: 2.2;
}

/*リンク */
a {
  color: #151512;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* 画像幅 */
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* clearfix */
.clearfix::after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.spBreak {
  display: none;
}

@media (min-width: 1025px) {
  a {
    transition: 0.6s;
  }

  a:hover {
    opacity: 0.6;
  }
}
.fax a {
  pointer-events: none;
}

/* --------------------------------------------------
	header
-------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 10px 80px;
  z-index: 998;
  background: #151512;
}
.header .logo {
  position: absolute;
  top: 30px;
  left: 3%;
  width: 150px;
}
.header .logo::before {
  content: "大阪、京都、奈良、和歌山、兵庫のダンス・ミュージカル・バレエの映像制作";
  position: absolute;
  top: -25px;
  left: 0;
  font-size: 13px;
  color: #f6f8f5;
  white-space: nowrap;
}
.header .logo a {
  display: block;
}

@media (min-width: 1025px) {
  .header .headBox {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 0 40px 0 0;
  }
  .header .headNav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .header .navList .ul {
    display: flex;
    min-width: 500px;
  }
  .header .navList .ul .li + .li {
    margin: 0 0 0 4%;
  }
  .header .navList .ul .li a {
    display: inline-block;
    color: #f6f8f5;
  }
  .header .telBox {
    line-height: 1.3;
    text-align: center;
  }
  .header .telBox .em {
    padding: 0 0 0 16px;
  }
  .header .telBox .em p {
    display: inline-block;
    padding: 0 20px;
    font-size: 12px;
    background: #e8c82c;
  }
  .header .telBox a {
    display: inline-block;
    padding: 0 0 0 16px;
    font-size: 28px;
    color: #f6f8f5;
    background: url(https://protec-kobe.com/system_panel/uploads/images/header_tel.png) left center no-repeat;
    background-size: 12px auto;
  }
  .header .telBox .span {
    padding: 0 0 0 15px;
    font-size: 14px;
    color: #f6f8f5;
  }
}
.hamburgerBox {
  position: relative;
  text-align: center;
  z-index: 1000;
}
.hamburgerBox .hamburger {
  cursor: pointer;
  display: block;
  position: relative;
  width: 50px;
  height: 20px;
}
.hamburgerBox .hamburger .span {
  background: #ffffff;
  position: absolute;
  left: 50%;
  width: 40px;
  height: 1px;
  transition: 0.4s;
}
.hamburgerBox .hamburger .span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%);
}
.hamburgerBox .hamburger .span:nth-of-type(2) {
  opacity: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hamburgerBox .hamburger .span:nth-of-type(3) {
  bottom: 10px;
  width: 30px;
  transform: translateX(-40%);
}
.hamburgerBox .is-open.hamburger .span:nth-of-type(1) {
  transform: translate(-50%, 4px) rotate(-45deg);
}
.hamburgerBox .is-open.hamburger .span:nth-of-type(2) {
  opacity: 0;
}
.hamburgerBox .is-open.hamburger .span:nth-of-type(3) {
  width: 40px;
  transform: translate(-50%, -4px) rotate(45deg);
}
.hamburgerBox .hamburgerTxt {
  margin: 5px 0 0;
  font-size: 12px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #ffffff;
}

/* --------------------------------------------------
	nav
-------------------------------------------------- */
@media (min-width: 1025px) {
  .sideNav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    padding: 50px 10px;
    z-index: 999;
    background: #151512;
  }
  .sideNav .sns {
    width: 35px;
    margin: 30px auto 0;
    text-align: center;
  }
  .sideNav .sns a {
    display: block;
  }
  .sideNav .sns .insta {
    margin: 0 0 15px;
  }
}
.navBox {
  overflow: auto;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 200px 60px;
  color: #f6f1ed;
  z-index: 999;
  background: #151512;
  transition: 0.8s;
}
.navBox .navContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.navBox .leftBox {
  width: 50%;
}
.navBox .leftBox .navLogo {
  width: 200px;
  margin: 0 0 60px;
}
.navBox .leftBox .snsList {
  margin: 0 0 30px;
}
.navBox .leftBox .snsList > div {
  display: inline-block;
  width: 35px;
  margin: 0 15px 0 0;
}
.navBox .leftBox .snsList > div a {
  display: block;
}
.navBox .leftBox .telFax > div {
  display: inline-block;
}
.navBox .leftBox .telFax .tel {
  margin: 0 10px 0 0;
}
.navBox .leftBox .telFax a {
  display: inline-block;
  color: #f6f1ed;
}
.navBox .rightBox {
  width: 50%;
}
.navBox .navList {
  display: flex;
  justify-content: space-between;
}
.navBox .navList .ul {
  width: 45%;
}
.navBox .navList .ul .li + .li {
  margin: 15px 0 0;
}
.navBox .navList .ul .li a {
  display: inline-block;
  color: #f6f1ed;
}

.sideNav .navBox.active {
  right: 0;
}

/* --------------------------------------------------
	main
-------------------------------------------------- */
.main {
  overflow: hidden;
  padding: 0 80px 0 0;
}

.pageMain {
  background: #151512;
}

.pageKvContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 350px;
  margin: 0 0 50px;
}
.pageKvContainer .pageKvPanel {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 40px 20px 0;
}
.pageKvContainer .pageKvPanel .pageKvTitle {
  color: #ffffff;
}
.pageKvContainer .pageKvPanel .pageKvTitle .sub {
  font-family: Impact;
  font-size: 25px;
}
.pageKvContainer .pageKvPanel .pageKvTitle .title {
  font-size: 0;
}
.pageKvContainer .pageKvPanel .pageKvTitle .title p {
  display: inline;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}
.pageKvContainer .pageKvPanel .pageKvTitle .title .em {
  color: #c43d2a;
}

.pageSecTtlBox {
  position: relative;
  margin: 0 0 40px;
  padding: 15px 0 0;
}
.pageSecTtlBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: #ffffff;
}
.pageSecTtlBox .pageSecTtl {
  font-size: 0;
}
.pageSecTtlBox .pageSecTtl p {
  display: inline;
  font-size: 39px;
  font-weight: 700;
}
.pageSecTtlBox .pageSecTtl .white {
  color: #f7f0eb;
}
.pageSecTtlBox .pageSecTtl .yellow {
  color: #e8c82c;
}
.pageSecTtlBox .pageSecTtl .red {
  color: #c43d2a;
}
.pageSecTtlBox .sub {
  font-size: 18px;
  font-weight: 700;
  color: #68685c;
}
.pageSecTtlBox.black::before {
  background: #151512;
}
.pageSecTtlBox.center {
  text-align: center;
}
.pageSecTtlBox.center::before {
  right: 0;
  margin: 0 auto;
}

.secWrap {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
}

.secWrap01 {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.secWrap02 {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.mapBox {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 45%;
}
.mapBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.btnMore {
  width: 240px;
}
.btnMore a {
  display: block;
  padding: 10px 15px;
  color: #f6f1ed;
  text-align: center;
  border-radius: 30px;
  border: 1px solid #8f8884;
  background: #22221f;
}
.btnMore a p {
  background: url(https://protec-kobe.com/system_panel/uploads/images/btn_more_arrow_01.png) right center no-repeat;
  background-size: 10px auto;
}

.btnMoreWhite {
  width: 240px;
}
.btnMoreWhite a {
  display: block;
  padding: 10px 15px;
  text-align: center;
  border-radius: 30px;
  border: 1px solid #8f8884;
  background: #eceeeb;
}
.btnMoreWhite a p {
  background: url(https://protec-kobe.com/system_panel/uploads/images/btn_more_arrow_02.png) right center no-repeat;
  background-size: 10px auto;
}

/* --------------------------------------------------
	footer
-------------------------------------------------- */
.footer .footContact {
  padding: 120px 0;
  text-align: center;
  background: #151512;
}
.footer .footContact .secTtlBox {
  margin: 0 0 30px;
  color: #f7f0eb;
}
.footer .footContact .secTtlBox .sub {
  font-size: 20px;
  font-weight: 700;
  color: #68685c;
}
.footer .footContact .secTtlBox .secTtl {
  font-size: 0;
}
.footer .footContact .secTtlBox .secTtl p {
  display: inline;
  font-size: 40px;
  font-weight: 700;
}
.footer .footContact .secTtlBox .secTtl .em {
  color: #e8c82c;
}
.footer .footContact .topTxt {
  margin: 0 0 40px;
  color: #f6f1ed;
}
.footer .footContact .itemPanel .itemBox {
  padding: 20px;
  border-top: 1px solid #525252;
  border-bottom: 1px solid #525252;
}
.footer .footContact .itemPanel .itemBox .ttl {
  margin: 0 0 20px;
  font-size: 30px;
  color: #ffffff;
  font-weight: 700;
}
.footer .footContact .itemPanel .telBox {
  line-height: 1.3;
}
.footer .footContact .itemPanel .telBox a {
  display: inline-block;
  margin: -10px 0 0;
  padding: 0 0 0 25px;
  font-size: 40px;
  color: #f6f1ed;
  line-height: 1;
  background: url(https://protec-kobe.com/system_panel/uploads/images/footer_tel.png) left bottom 5px no-repeat;
  background-size: 20px auto;
}
.footer .footContact .itemPanel .telBox .span {
  padding: 10px 0 0;
  font-size: 14px;
  color: #f7f0eb;
}
.footer .footContact .itemPanel .btnMail a {
  display: block;
  max-width: 240px;
  margin: 0 auto;
  padding: 15px;
  color: #ffffff;
  border-radius: 30px;
  background: url(https://protec-kobe.com/system_panel/uploads/images/footer_mail_arrow.png) right 15px center no-repeat #c43d2a;
}
.footer .footContact .itemPanel .lineBox {
  width: 90px;
  margin: 0 auto;
}
.footer .footContact .itemPanel .lineBox a {
  display: block;
}
@media (min-width: 1025px) {
  .footer .footContact .itemPanel {
    display: flex;
    justify-content: space-between;
  }
  .footer .footContact .itemPanel .itemBox {
    width: calc(33.3333333333% - 30px);
  }
}
.footer .footPanel {
  position: relative;
  padding: 60px 0 30px;
  color: #f6f1ed;
  background: #000000;
}
.footer .footPanel .logoBox .logo {
  width: 200px;
  margin: 0 0 20px;
}
.footer .footPanel .logoBox .telFax > * {
  display: inline-block;
}
.footer .footPanel .logoBox .telFax a {
  color: #f6f1ed;
}
.footer .footPanel .logoBox .snsList {
  margin: 20px 0 20px;
}
.footer .footPanel .logoBox .snsList > div {
  display: inline-block;
  width: 35px;
  margin: 0 15px 0 0;
}
.footer .footPanel .logoBox .snsList a {
  display: block;
}
.footer .footPanel .itemBox {
  max-width: 400px;
  margin: 0 auto;
}
.footer .footPanel .itemBox .box + .box {
  margin: 10px 0 0;
}
.footer .footPanel .itemBox .box a {
  display: block;
  padding: 20px;
  color: #ffffff;
  border: 1px solid #2b2b26;
  background: url(https://protec-kobe.com/system_panel/uploads/images/footer_recruit_tri.png) right 5px bottom 5px no-repeat;
  background-size: 15px auto;
}
.footer .footPanel .itemBox .box .dl .dt {
  margin: 0 0 10px;
  padding: 0 0 5px;
  border-bottom: 1px solid #2b2b26;
}
.footer .footPanel .itemBox .box .dl .dt .em {
  display: inline-block;
  margin: 0 10px 0 0;
  font-size: 30px;
  font-weight: 700;
}
.footer .footPanel .itemBox .box .dl .dt .span {
  display: inline-block;
  font-weight: 700;
  color: #68685c;
}
.footer .footPanel .itemBox .box .dl .dd {
  line-height: 2;
}
@media (min-width: 1025px) {
  .footer .footPanel .footBox {
    display: flex;
    justify-content: space-between;
  }
  .footer .footPanel .footBox .logoBox {
    width: 45%;
  }
  .footer .footPanel .footBox .itemBox {
    width: 45%;
  }
}
.footer .footPanel .copy {
  padding: 30px 0 0;
  color: #40403c;
  text-align: right;
}
.footer .footPanel .pagetop {
  position: absolute;
  top: 100px;
  right: 130px;
  width: 50px;
  cursor: pointer;
}

/* --------------------------------------------------
	fadeAnimation
-------------------------------------------------- */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値では非表示 */
  -webkit-transition: opacity 0.8s ease;
  /* アニメーション時間は 0.8秒 */
  -ms-transition: opacity 0.8s ease;
  -moz-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

/*body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。*/
body.fadeout::after {
  opacity: 1;
}

/*お好みで、.fadeoutセレクタ以下の他の要素にもアニメーション用のCSSを定義します*/
/*DEMOではページ遷移時にarticle要素のスケールもアニメーションさせています*/
body.fadeout article {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}