
#header{
  position: relative;
}
#header h1{
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 10000;
}
#header h1 a{
  transition: .3s;
}
#header h1 a:hover{opacity: .7;}
#header .header_cv{
  position: fixed;
  left: 0;
  bottom: 10%;
}
#header .cv_btn a{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 8px;
  width: 280px;
  transition: .3s;
}
#header .cv_btn a:hover{opacity: .7;}
#header .cv_btn.res a{
  background: var(--red);
  margin-top: 16px;
}
#header .cv_btn.req a{
  background: var(--beije);
}
#header .cv_btn a img{
  width: 200px;
}
@media only screen and (max-width: 1240px){
  #header{position: relative;}
  #header::before{
    content: '';
    display: block;
    width: 100%;
    height: 120px;
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, rgba(9, 32, 63, .8) 100%);
    mix-blend-mode: multiply;
    position: fixed;
    top: 0; left: 0;
    z-index: 999;
  }
  #header .cv_btn a{
  width: 200px;
}
#header .cv_btn a img{
  width: 160px;
}
}

#header .header_sns{
  position: fixed;
  top: 50px; right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 140px;
}
#header .header_sns li{
  display: block;
  text-align: right;
}
#header .header_sns li a{
  transition: .3s;
}
#header .header_sns li a:hover{opacity: .7;}
#header .qr_code{
  position: fixed;
  right: 50px; bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#header .qr_code img{
      width: 60px;
    display: block;
    margin-left: auto;
}
#header .qr_code p{
  text-align: center;
  color: var(--light);
  font-size: 1rem;
  letter-spacing: 2px;
  padding-bottom: 12px;
    writing-mode: vertical-rl;
}

@media only screen and (max-width: 1070px){
  #header .header_cv{display: none;}
  #header .header_sns{display: none;}
  #header .qr_code{display: none;}
  #header h1 {top: 10px; left: 10px; width: 190px;}
}

/* メニューデザイン */


#menu-btn-check {
    display: none;
}
.menu-content {
  max-width: 20svw;
  min-width: 20svw;
  position: fixed;
  left: 72%;
  top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);

}
.menu-content ul {
  max-width: 210px;
}
.menu-content ul li {
    font-size: 1.6rem;
    line-height: 3.4;
    list-style: none;
    position: relative;
}
.menu-content ul li.new::after {
  content: 'NEW';
  font-family: "EB Garamond", serif;
  font-size: 10px;
  line-height: 1;
  color: var(--light);
  background: var(--red);
  text-align: center;
  padding: 3px 4px 2px;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.menu-content ul li span{
  font-size: 80%;
  color: var(--beije);
  padding-right: 8px;
}
.menu-content ul li a {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    position: relative;
    transition: .3s;
}
.menu-content ul li a::after  {
  background-color: var(--beije);
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: .5s all;
  width: 0;
}
.menu-content ul li a:hover{
  color: var(--beije);
}
.menu-content ul li a:hover::after {
  width: 100%;
}

.mini_nav{
  display: flex;
  margin-top: 24px;
}
.mini_nav p a{
    display: inline-block;
    width: 100%;
    font-size: 1.3rem;
    color: var(--light);
    text-decoration: none;
    position: relative;
    transition: .3s;
}
.mini_nav p a::after  {
  background-color: var(--beije);
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: .5s all;
  width: 0;
}
.mini_nav p a:hover{
  color: var(--beije);
}
.mini_nav p a:hover::after {
  width: 100%;
}
.mini_nav p:nth-of-type(1){
  padding-right: 32px;
}
@media only screen and (max-width: 1700px){
  .menu-content {
  left: 72%;

}
}
@media only screen and (max-width: 1480px){
  .menu-content {
  left: 76%;
  }
}

.submenu{
  display: none;
}
@media only screen and (max-width: 1250px){

.menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    background-color: #fff;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 1px;
    width: 25px;
    border-radius: 3px;
    background: var(--grablue);
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
.menu-content {
  max-width: 100%;
  min-width: 100%;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    right: unset;
    z-index: 9999;
    background-image: url(../../common/image/bg_pc.jpg);
    background-size: 200%;
    transition: all 0.3s;/*アニメーション設定*/
    padding: 100px 50px;
    overflow-y: scroll;
    --webkit--transform: unset;
    transform: unset;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

.nav-open{
	position: relative;
}
.nav-open::before{/* 閉じている時 */
	content: "＋";
	position: absolute;
	right: 20px;
}
.nav-open.active::before{/* 開いている時 */
	content: "－";
}

.menu-content ul {
  max-width: 100%;
}
.menu-content ul li {
    border-bottom: solid 1px #55677C;
    list-style: none;
}
.submenu{
  padding: 16px 0;
}
.submenu li{
  border-bottom: none !important;
  line-height: 2.4 !important;
}
.submenu li a{
  position: relative;
  padding-left: 60px;
}
.submenu li a::before{
  content: '';
  display: block;
  width: 50px;
  height: .5px;
  background: #55677C;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.mini_nav{
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
#header .header_nav_cv{
  margin-top: 16px;
}
 #header .header_nav_cv .cv_btn a{
  width: 100%;
}
#header .header_nav_cv .cv_btn a img{
  width: 200px;
}
.header_tel{
  text-align: center;
  color: var(--light);
  margin-top: 24px;
}
.header_tel .header_tel_ttl{
  font-size: 1.1rem;
}
.header_tel .header_tel_img{
  display: block;
  width: 100%;
  margin: 8px auto;
}
.header_tel .header_tel_txt{
  font-size: 1rem;
}
.header_nav_sns{
  display: flex !important;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 200px !important;
  margin: 16px auto 0;
}
.header_nav_sns li{
  border: none !important;
  flex-basis: 26%;
}

}



