/* 共通 */
.pc.tb {
  display: inline-block
}
.tb {
  display: none;
}
.sp {
  display: none;
}

.clearfix::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: block;
}


/* 全体 */
/* @media (min-width: 561px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
  } */
/* マウスポインター */
body {
  cursor: none;
}
a {
  cursor: none;
}
#cursor{
  position: fixed;
  /*丸の大きさと色の指定*/
  background: #fc6a09;
  border-radius:10px;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;/*真ん中にくるようにマイナスマージンで調整*/

  z-index: 20;/*一番手前に来るように*/
  pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
  transition: transform 0.1s;/*アニメーションの秒数指定*/
}

/*ちょっと遅れてついてくるストーカー要素*/
#stalker{
  position: fixed;
  /*丸の大きさと色の指定*/
  background: #ddd;
  width: 60px;
  height: 60px;
  border-radius:30px;
  margin: -30px 0 0 -30px;/*真ん中にくるようにマイナスマージンで調整*/
  z-index: 19;/*カーソルの後ろに来るように*/
  pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
  transition: transform 0.5s;/*アニメーションの秒数指定*/
}

#cursor.active {
  transform: scale(1.2);
}
#stalker.active {
  transform: scale(1.7);
}

/* フォント関係 */
body {
  /* font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; */
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.gfont.rale {
  font-family: 'Raleway', sans-serif;
}
.gfont.geo {
  font-family: 'Geo', sans-serif!important;
}
.gfont.noto {
  font-family: 'Noto Sans JP', sans-serif;
}
.afont {
  font-family: din-2014, sans-serif;
}

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

.mincho {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}


/* フェードイン */
/* .fadeinTop {
  opacity : 0;
  transition: opacity 1s;
}
.fadeinTop2 {
  opacity : 0;
  transition: opacity 1s 0.6s;
} */
.fadeinTopBottom {
  opacity : 0;
  transform: translateY(80px);
  transition: opacity 2s, transform 2s;
}
@media(max-width: 560px) {
  .fadeinTopBottom {
    opacity : 0;
    transform: translateY(40px);
    transition: opacity 2s, transform 2s;
  }
}
/* .fadeinTop4Bottom {
  opacity : 0;
  transform: translateY(30px);
  transition: opacity 1s 1.2s, transform 1s 1.2s;
} */
/* .fadein {
  opacity : 0;
  transition: opacity 1s, transform 1s;
}
.fadein_left {
	opacity : 0;
	transform: translateX(-30px);
	transition: opacity 1s, transform 1s;
}
.fadein_right {
	opacity : 0;
	transform: translateX(30px);
	transition: opacity 1s, transform 1s;
} */
.fadein_bottom {
  opacity : 0;
  transform: translateY(80px);
  transition: opacity 2s, transform 2s;
}
/* @media(max-width: 1024px) {
  .fadein_bottom {
    opacity : 0;
    transform: translateY(60px);
    transition: opacity 2s, transform 2s;
  }
} */
@media(max-width: 560px) {
  .fadein_bottom {
    opacity : 0;
    transform: translateY(40px);
    transition: opacity 2s, transform 2s;
  }
}
/* .fadein_bottom1 {
  opacity : 0;
  transform: translateY(30px);
  transition: opacity 1s 0.3s,  transform 1s 0.3s;
}
.fadein_bottom2 {
  opacity : 0;
  transform: translateY(30px);
  transition: opacity 1s 0.6s,  transform 1s 0.6s;
} */



/* メニュー関係 */
header {
  width: 100%;
}

#topMenuContainer {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  z-index: 5;
  transition: 1s;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#topMenuContainer.open {
  background: transparent;
}


/* ヘッダーオープン */

/* ここまで */


/* ヘッダーカラーチェンジ */
/* .colorChange#topMenuContainer {
  background: #fff;
} */
/* .colorChange #menuBarContainer > span {
  background: #000;
} */
/* ここまで */


.logo {
  flex: 0 1 auto;
  margin-right: 120px;
}

.logo a {
  font-size: 36px;
}

.menuList {
  margin-right: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menuList li {
  margin: 0 24px;
}

#menuBarContainer {
  width: 70px;
  height: 70px;
  /* margin: 0 auto; */
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3;
}

#menuBarContainer > span {
  width: 28px;
  height: 3px;
  margin: 7.5px auto 0 auto;
  background: #000;
  border-radius: 3px;
  z-index: 5;
  display: block;
  transition: 1s;
}

#menuBarContainer > span:first-of-type {
  margin-top: 0;
}

#menuBarContainer.open > span:first-of-type {
  animation: open1 1s both;
}
#menuBarContainer.open > span:nth-of-type(2) {
  animation: open2 1s both;
}
#menuBarContainer.open > span:last-of-type {
  animation: open3 1s both;
}

#menuBarContainer.close > span:first-of-type {
  animation: close1 1s both;
}
#menuBarContainer.close > span:nth-of-type(2) {
  animation: close2 1s both;
}
#menuBarContainer.close > span:last-of-type {
  animation: close3 1s both;
}

@keyframes open1 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(10.5px) rotate(0deg);}
  100% {transform: translateY(10.5px) rotate(45deg);}
}
@keyframes open2 {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes open3 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(-10.5px) rotate(0deg);}
  100% {transform: translateY(-10.5px) rotate(-45deg);}
}

@keyframes close1 {
  0% {transform: translateY(10px) rotate(45deg);}
  50% {transform: translateY(10px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}
@keyframes close2 {
  0% {opacity: 0;}
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes close3 {
  0% {transform: translateY(-10px) rotate(-45deg);}
  50% {transform: translateY(-10px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}

.sideBar {
  width: 100px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background: #fc6a09;
  z-index: 6;
}

.sns {
  margin-top: 50px;
  display: flex;
  align-items: center;
}

.sns li {
  margin: 0 auto;
}

.sns li img {
  width: 35px;
  vertical-align: bottom;
}






#menuContents {
  width: 100%;
  height: 100vh;
  background: #fc6a09;
  text-align: center;
  position: fixed;
  top: 0;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#menuContents.open {
  visibility: visible;
  opacity: 1;
}

#menuContents a {
  color: #fff;
}

#menuContents nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menuContentsList li {
  margin: 28px 0;
  font-size: 30px;
  letter-spacing: 3px;
}

#menuContents .sns {
  margin-top: 60px;
}

#menuContents .sns li a {
  display: flex;
  align-items: center;
}

#menuContents .sns li span {
  font-size: 20px;
  letter-spacing: 1px;
  margin-left: 10px;
}






/* フッター */
footer {
  width: 100%;
  padding: 50px 5% 20px;
  box-sizing: border-box;
  background: #000;
  color: #fff;
  position: relative;
  z-index: 6;
}

footer a {
  color: #fff;
}

.footerLogo {
  font-size: 36px;
}

.footerMenu {
  display: flex;
  align-items: center;
}

.footerMenu li {
  margin: 0 20px;
}
.footerMenu li:first-of-type {
  margin-left: 0;
}
.footerMenu li:last-of-type {
  margin-right: 0;
}

footer small {
  width: 100%;
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  text-align: center;
}







@media (max-width: 1024px) {
.pc {
  display: none;
}
.tb {
  display: inline-block;
}
.tb.sp {
  display: inline-block;
}

body {
  cursor: auto;
}
#cursor{
  display: none;
}
#stalker{
  display: none;
}

#topMenuContainer {
  height: 70px;
  justify-content: space-between;
  background: #fc6a09;
}

.logo {
  margin-left: 20px;
}

.logo a {
  color: #fff;
}

#menuBarContainer span {
  background: #fff;
}



/* フッター */
footer {
  /* width: 100%; */
  padding: 30px 5% 10px;
  /* box-sizing: border-box;
  background: #000;
  color: #fff;
  position: relative; */
  z-index: 0;
}

/* footer a {
  color: #fff;
} */

.footerLogo {
  /* font-size: 36px; */
  text-align: center;
}

/* .footerMenu {
  display: flex;
  align-items: center;
}

.footerMenu li {
  margin: 0 20px;
}
.footerMenu li:first-of-type {
  margin-left: 0;
}
.footerMenu li:last-of-type {
  margin-right: 0;
} */

footer small {
  /* width: 100%;
  margin-top: 20px; */
  font-size: 12px;
  /* letter-spacing: 1px;
  display: block;
  text-align: center; */
}

}







/* スマホ */
@media (max-width: 560px) {
  .tb {
    display: none;
  }
  .pc.tb {
    display: none;
  }
  .sp {
    display: inline-block;
  }

  body {
    font-size: 14px;
  }

  .logo a {
    font-size: 26px;
  }

  /* メニュー関係 */
  #menuBarContainer {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-right: 2px;
  }

  #menuBarContainer > span {
    width: 24px;
    height: 2px;
    margin: 6px auto 0 auto;
  }

  @keyframes open1 {
    0% {transform: translateY(0px) rotate(0deg);}
    50% {transform: translateY(8px) rotate(0deg);}
    100% {transform: translateY(8px) rotate(45deg);}
  }
  @keyframes open3 {
    0% {transform: translateY(0px) rotate(0deg);}
    50% {transform: translateY(-8px) rotate(0deg);}
    100% {transform: translateY(-8px) rotate(-45deg);}
  }

  @keyframes close1 {
    0% {transform: translateY(8px) rotate(45deg);}
    50% {transform: translateY(8px) rotate(0deg);}
    100% {transform: translateY(0px) rotate(0deg);}
  }
  @keyframes close3 {
    0% {transform: translateY(-8px) rotate(-45deg);}
    50% {transform: translateY(-8px) rotate(0deg);}
    100% {transform: translateY(0px) rotate(0deg);}
  }




/* トップ */
#topMenuContainer {
  /* width: 100%; */
  height: 50px;
  /* position: fixed;
  top: 0;
  z-index: 5;
  transition: 1s;
  display: flex;
  justify-content: flex-end;
  align-items: center; */
}

.logo {
  margin-left: 10px;
}

.logo img {
  width: 116px;
  margin-left: 13px;
}

/* .topLink {
  display: none;
}

#menuBarContainer {
  background: transparent;
}

#menuBarContainer span {
  background: #fff;
} */

.menuContentsList li {
  /* margin: 30px auto; */
  font-size: 20px;
}










/* #menuContents {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 1);
  text-align: center;
  position: fixed;
  top: 0;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#menuContents.open {
  visibility: visible;
  opacity: 1;
} */

/* #menuContents a {
  color: #fff;
  font-size: 20px;
} */

.menuContentsLogo {
  /* width: auto;
  position: absolute; */
  top: 5px;
  left: 20px;
}

.menuContentsLogo img {
  width: 120px;
  /* vertical-align: bottom; */
}

#menuContents nav {
  width: 100%;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

/* .menuContentsList li {
  margin: 35px 0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 3px;
} */
.menuContentsList li:first-of-type {
  margin-top: 0px;
}







/* フッター */
footer {
  /* width: 100%; */
  padding: 20px 5% 5px;
  /* box-sizing: border-box;
  background: #000;
  color: #fff;
  position: relative; */
  z-index: 0;
}

/* footer a {
  color: #fff;
} */

.footerLogo {
  /* font-size: 36px; */
  text-align: center;
}

/* .footerMenu {
  display: flex;
  align-items: center;
}

.footerMenu li {
  margin: 0 20px;
}
.footerMenu li:first-of-type {
  margin-left: 0;
}
.footerMenu li:last-of-type {
  margin-right: 0;
} */

footer small {
  /* width: 100%; */
  margin-top: 5px;
  font-size: 10px;
  /* letter-spacing: 1px;
  display: block;
  text-align: center; */
}

}