@charset "utf-8";
/* CSS Document */
/* ================================
   モバイルファースト化された header スタイル
================================== */
:root {
  --primary-color: #3B3B3B;
  --font-color: #333;
}

/* 基本構造（モバイル基準） */

header #outer {
  width: 100%;
  height: var(--header-height-mobile);
  position: fixed;
  top: 0;
  z-index: 1000;
  /*
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
*/
}
/*
header #outer .logo {
  width: 100%;
  height: var(--header-height-mobile);
  display: flex;
  align-items: center;
  padding-left: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header #outer .logo .box {
  width: 112px;
  padding: 4px 6px;
}
*/

header #outer .TelContact {
  display: none;
}

header #outer .menuOpener {
  display: none;
}

/* メニュー開閉ボタン（スマホ） */
#navToggle {
  position: absolute;
  right: 3%;
  top: 26px;
  width: 27px;
  height: 18px;
  cursor: pointer;
  z-index: 101;
}

#navToggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #A88D6D;
  transition: 0.35s ease-in-out;
}

#navToggle span:nth-child(1) { top: -6px; }
#navToggle span:nth-child(2) { top: 0; }
#navToggle span:nth-child(3) { top: 6px; }

#navToggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(-45deg);
}

#navToggle.active span:nth-child(2) {
  opacity: 0;
}

#navToggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(45deg);
}

/* メニュー展開アニメーション */
header #outer .menuOpener.active {
  display: block;
  animation: zoomin 0.5s ease;
  width: 100%;
  height: 100vh;
  background: var(--primary-color);
  color: #fff;
  position: absolute;
  top: var(--header-height-mobile);
  left: 0;
  padding: 10vw 4vw 0;
}
header #outer .menuOpener ul li {
  font-size: 1.6rem;
}
header #outer .menuOpener ul li a {
  width: 100%;
  color: #fff;
  padding: 14px;
}
header #outer .menuOpener ul li a:hover {
  background: #fff;
  width: 100%;
  padding: 14px;
  color: var(--font-color);
}
/* アニメーション */
@keyframes zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* =====================
   画像表示 共通スタイル
===================== */
picture,
picture img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}


.btn{
  max-width: 120px;
  margin: 30px auto 0;
}
.btn a{
  text-align: center;
  background: #000;
  border: 2px solid #000;
  border-radius: 4em;
  padding: 8px;
  width: 100%;   
  color: #fff;

}
.btn a:hover{
  background: #fff;
  border: 2px solid #000;    
  color: #000;
}

.btn02{
  max-width: 300px;
  margin: 40px auto 0;
}
.btn02 a{
  text-align: center;
  background: #A88D6D;
  border: 2px solid #A88D6D;
  border-radius: 4em;
  padding: 10px;
  width: 100%;   
  color: #fff;

}
.btn02 a:hover{
  background: #fff;
  border: 2px solid #A88D6D;    
  color: #A88D6D;
}



footer{
  background: #3B3B3B;
  padding: 50px 0 10px;
}
footer .logo{
  max-width: 160px;
  margin: 0 auto 40px;
}
footer .sns{
  display: flex;
  align-items: center;
  justify-content: center;  
  margin: 0 0 20px;
}
footer .sns li{
  width: 40px;
  margin: 0 10px;
}
footer .sns li a:hover,
footer .nv li a:hover{
  opacity: 0.5;
}
footer .nv{
  display: flex;
  align-items: center;
  justify-content: center;  
  color: #fff;
}
footer .nv li{
  margin: 0 10px;
}
.copyright{
  text-align: center;
  color: #fff;
  margin: 30px 0 0 10px;
}

/* ===============================
   レスポンシブ：768px以上（タブレット）
================================== */
@media (min-width: 768px) {
  footer .block{
    padding: 0;
    max-width: 1100px;
  }
  footer .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer .logo{
    max-width: 100px;
    margin: 0;
  }
  footer .sns li{
    width: 40px;
    margin: 0 20px;
  }



}

/* ===============================
   レスポンシブ：992px以上（ノートPC以上）
================================== */
@media (min-width: 992px) {




}
