/* ------------------------------------
f
---------------------------------------*/
html{
  font-size: 62.4%;
}

body{
  width: 100%;
  font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  font-size: 1.6rem; 
  line-height: 1.5em;
  letter-spacing: 0.3em;
}

img{
  max-width: 100%;
  height: auto;
}

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

ul{
  margin: 0;
  padding: 0;
}

li{
  list-style: none;
}

table{
  border-collapse: collapse;
}

button{
  border: none;
  background-color:transparent;
}
/* ------------------------------------
l-header
---------------------------------------*/
.l-header__inner{
  width: 100%;
} 
.l-header__drawer{
  display: flex;
  justify-content: center;
  margin: auto;
  height: 200px;
}

.l-header__info{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: 0 1.5rem;
}

.l-header__logo{
  width: 12rem;
  margin-right: 1rem;
}

.l-header__name-link{
  color: #f18d44;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.5em;  
}

.l-header__no{
  color: #f18d44;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: .1em;
}

.l-header__gnav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 50%;
  background-color: #fac9b1
}

.l-header__gnav-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem; 
  align-items: center;
  margin: 0 1.5rem;  
}

.l-header__item-link{
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}
/* ------------------------------------
l-footer
---------------------------------------*/
.l-footer__info{
  display: flex;
  min-height: 165px;
  align-items: center;
  background-color: #fac9b1;  
}

.l-footer__info-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem;
  align-items: flex-end;
  max-width: 1200px;
  margin: auto;
}

.l-footer__company{
  display: flex;  
  /* align-items: center; */
  align-items: flex-end;
  margin: 0 0 0 1rem;
}

.l-footer__logo{
  width: 7rem;
  margin: 1rem;
}

.l-footer__name{
  height: max-content;
}
.l-footer__name-text{
  color: #fff;
  font-weight: bold;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
}

.l-footer__no{
  color: #fff;
  font-weight: bold;
  letter-spacing: .1em;
}

.l-footer__location{
  /* margin: 0 8rem; */
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: .05em;
}

.l-footer__contact{
  margin: 0 1rem 0 0;
  color: #fff;
  font-weight: bold;
  font-size: 2.5rem;
}

.l-footer__contact-text{
  margin: 0 0 2.5rem 0;
  letter-spacing: .05em;
}
.l-footer__contact-text:last-child{
  margin: 0;
}

/* ------------------------------------
pc-min-width:950px
---------------------------------------*/  
@media (min-width: 980px){
  .l-header__toggle{
    display: none;
  }
 }
/* ------------------------------------
res-max-width:979px
---------------------------------------*/  
@media (max-width: 979px){
  .l-footer__info-wrap{
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    margin: 2rem 1rem 2rem 2.5rem;
  }

  .l-footer__company{
    align-items: center;
    margin: 0;
  }
}
/* ------------------------------------
res-max-width:949px
---------------------------------------*/ 
@media (max-width: 949px){
  .l-header__inner{
    position: relative;
  } 
  .l-header__drawer{ 
    justify-content: space-between;   
    align-items: center;
  }

  .l-header__info{
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 85%;
    margin: 0 2rem;
  }

  .l-header__logo{
    width: 8rem;
    /* margin-right: 1rem; */
  }

  .l-header__name-link{
    /* color: #f18d44; */
    /* font-weight: bold; */
    font-size: 2rem;
    letter-spacing: .1em;
    /* line-height: 1.5em;  */
  }

  .l-header__no{
    /* color: #f18d44; */
    /* font-weight: bold; */
    font-size: 1.6rem;
    /* letter-spacing: .1em; */
  }
  .l-header__toggle{    
    width: 5rem;
    height: 5rem;
    align-items: flex-end;
    margin-right: 5rem;
  }

  .l-header__toggle-button{
    display: block;
    position: relative;
    width: 3.5rem;
    height: 3rem;
    cursor: pointer;
  }  

  .l-header__button-line{
    display: block;
    position: absolute;
    width: 100%;
    height: .2rem;
    background-color: #000;
    transition: transform .5s ease-in-out, top .5s ease, bottom .5s ease;
  }

  .l-header__button-line:nth-child(1){
    top: 0;    
  }
  
  .l-header__button-line:nth-child(2){
    top: 50%;
  }

  .l-header__button-line:nth-child(3){
    bottom: 0;
  }

  .l-header__button-line.is-open{
    background-color: #000;
  }

  .l-header__button-line.is-open:nth-child(1){
    top: 50%;
    background-color: #000;
    transform: rotate(45deg) translateY(-50%);
  }

  .l-header__button-line.is-open:nth-child(2){
    width: 0;
  }

  .l-header__button-line.is-open:nth-child(3){
    top: 50%;
    background-color: #000;
    transform: rotate(-45deg) translateY(-50%);
  }

  .l-header__gnav{
    display: none;
    position: absolute;
    bottom: -24%;
    z-index: 3;
    width: 100%;
    padding: 1ch;
    background-color: rgb(251, 218, 200, .3);
  }

  .l-header__gnav-list{
    justify-content: space-between;
  }

  .l-header__gnav-item{
    color: #000;   
  }
}
/* ------------------------------------
res-max-width:649px
---------------------------------------*/
.l-header__drawer{
  width: 100%;
}

/* ------------------------------------
res-max-widt:499
---------------------------------------*/ 
@media (max-width: 499px){
  .l-header__info{
    margin: 0 0 0 1.5rem;
  }

  .l-header__logo{
    width: 5rem;
  }

  .l-header__name-link{
    font-size: 1.8rem;
  }

  .l-header__no{
    font-size: 1.3rem;
  }

  .l-header__toggle{
    margin: 0 1.5rem 0 0;
  }

  .l-header__gnav{
     bottom: -68%;
  }

  .l-header__gnav-list{
    flex-direction: column;
    justify-content: center;
  }    
}