/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.06);*/
  z-index: 1000;
  transition: transform 0.4s ease, box-shadow 0.35s ease; }
  .header.shrink {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08); }
    .header.shrink .header-inner {
      height: 70px; }
  .header.hide {
    transform: translateY(-100%); }

.header-inner {
  width: 96%;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.35s ease; }

.logo {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.07em; }
  @media screen and (max-width: 768px) {
    .logo {
      font-size: 2.6rem; } }
  @media screen and (max-width: 480px) {
    .logo {
      font-size: 2.4rem; } }

/* ===============================
   Right Area
================================ */
.header-right {
  display: flex;
  align-items: center;
  gap: 28px; }

/*
header{
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
	width: 100%;
  box-shadow: 0px 4px 5px -5px rgba(0, 0, 0, 0.3);
  background-color: #FFF;
  @include tbt {
    margin: 0 auto;
  }
  #h-box{
    width: 96%;
    margin: 0 auto;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    h1{
      width: 285px;
      @include tbt {
        width: 220px;
      }
      @include sp {
        width: 200px;
      }
    }
    .hd-tel{
      margin-left: 20px;
      font-size: 2.0rem;
      @media screen and (max-width: 1485px) {
        text-align: center;
        margin: 30px 0;
      }
      a{
        border-radius: 30px;
        padding: 6px 1.5em;
        background: linear-gradient(90deg,#FFB22C, #FF6200);
        filter:drop-shadow(0 4px 10px #DADADA);
        color: #FFF;
      }
    }
  }
}
*/
