@charset "UTF-8";

/* =========================================================
   Awashima Coffee Theme - Shop Header
========================================================= */

.aw-shopHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 132px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  transition: height .35s ease, background .35s ease, box-shadow .35s ease;
}

.aw-shopHeader * {
  box-sizing: border-box;
}

.aw-shopHeader__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 132px;
  padding: 0 312px 0 52px;
  transition: height .35s ease, padding .35s ease;
}

.aw-shopHeader__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.aw-shopHeader__logo {
  display: block;
  padding-right: 0;
  border-right: 0;
}

.aw-shopHeader__logo img {
  display: block;
  width: 246px;
  max-width: none;
  transition: width .35s ease, opacity .35s ease;
}

.aw-shopHeader__nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  padding: 0 24px;
  white-space: nowrap;
}

.aw-shopHeader__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  color: #3d3028;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .08em;
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease, font-size .35s ease;
}

.aw-shopHeader__nav a:hover,
.aw-shopHeader__nav a.is-current {
  color: #793d12;
}

.aw-shopHeader__nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #793d12;
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transition: opacity .25s ease, transform .25s ease;
}

.aw-shopHeader__nav a:hover::after,
.aw-shopHeader__nav a.is-current::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.aw-shopHeader__shop {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: stretch;
  height: 132px;
  transition: height .35s ease;
}

.aw-shopHeader__icon,
.aw-shopHeader__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 132px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.08);
  background: #4b2817;
  transition: height .35s ease, width .35s ease;
}

.aw-shopHeader__icon img {
  display: block;
  width: 28px;
}

.aw-shopHeader__menu {
  flex-direction: column;
  gap: 10px;
  width: 96px;
  background: #1d0d07;
  cursor: pointer;
}

.aw-shopHeader__menu span {
  display: block;
  width: 42px;
  height: 2px;
  background: #fff;
}

/* =========================================================
   tablet
========================================================= */

@media screen and (max-width: 1399px) {

  .aw-shopHeader {
    height: 96px;
  }

  .aw-shopHeader__inner {
    height: 96px;
    padding: 0 256px 0 24px;
  }

  .aw-shopHeader__logo img {
    width: 220px;
  }

  .aw-shopHeader__nav {
    display: none;
  }

  .aw-shopHeader__shop,
  .aw-shopHeader__icon,
  .aw-shopHeader__menu {
    height: 96px;
  }

  .aw-shopHeader__icon {
    width: 72px;
  }

  .aw-shopHeader__menu {
    width: 92px;
  }

}

/* =========================================================
   scrolled - PC / tablet
========================================================= */

.aw-shopHeader.is-scrolled {
  height: 88px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.aw-shopHeader.is-scrolled .aw-shopHeader__inner {
  height: 88px;
  padding-right: 278px;
}

.aw-shopHeader.is-scrolled .aw-shopHeader__logo img {
  width: 190px;
}

.aw-shopHeader.is-scrolled .aw-shopHeader__nav a {
  font-size: 13px;
}

.aw-shopHeader.is-scrolled .aw-shopHeader__shop,
.aw-shopHeader.is-scrolled .aw-shopHeader__icon,
.aw-shopHeader.is-scrolled .aw-shopHeader__menu {
  height: 88px;
}

.aw-shopHeader.is-scrolled .aw-shopHeader__icon {
  width: 64px;
}

.aw-shopHeader.is-scrolled .aw-shopHeader__menu {
  width: 86px;
}

/* =========================================================
   SP header
========================================================= */

@media screen and (max-width: 767px) {

  .aw-shopHeader {
    height: 72px;
  }

 .aw-shopHeader__inner{
    height:72px;
    justify-content:center;
    padding:0 72px;
}

.aw-shopHeader__brand{
    flex:1;
    display:flex;
    justify-content:center;
}

  .aw-shopHeader__logo {
    padding-right: 0;
    overflow: hidden;
  }

  .aw-shopHeader__logo img {
    width: 160px;
    max-width: none;
  }

.aw-shopHeader__shop{
    position:absolute;
    top:0;
    right:0;
}

  .aw-shopHeader__icon {
    display: none;
  }

  .aw-shopHeader__menu {
    width: 72px;
    height: 72px;
    gap: 8px;
  }

  .aw-shopHeader__menu span {
    width: 34px;
    height: 2px;
  }

  .aw-shopHeader.is-scrolled {
    height: 64px;
  }

  .aw-shopHeader.is-scrolled .aw-shopHeader__inner {
    height: 64px;
    justify-content: center;
    padding: 0 64px;
  }

  .aw-shopHeader.is-scrolled .aw-shopHeader__brand {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .aw-shopHeader.is-scrolled .aw-shopHeader__logo img {
    width: 158px;
  }

  .aw-shopHeader.is-scrolled .aw-shopHeader__shop,
  .aw-shopHeader.is-scrolled .aw-shopHeader__menu {
    height: 64px;
  }

  .aw-shopHeader.is-scrolled .aw-shopHeader__menu {
    width: 64px;
  }
	
  .aw-shopHeader {
    overflow: hidden;
  }

  .aw-shopHeader__inner {
    overflow: hidden;
  }

  .aw-shopHeader__brand {
    overflow: hidden;
  }

  .aw-shopHeader__logo {
    overflow: hidden;
  }

}

/* =====================================================
menu open
===================================================== */

body.is-menuOpen {
  overflow: hidden;
}

.aw-menuDrawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s ease, visibility .35s ease;
}

.aw-menuDrawer.is-open {
  visibility: visible;
  opacity: 1;
}

.aw-menuDrawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .38);
  backdrop-filter: blur(3px);
}

.aw-menuDrawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100%;
  padding: 92px 72px 72px;
  overflow-y: auto;
  background: #f6f2eb;
  box-shadow: -10px 0 40px rgba(0,0,0,.08);
  transform: translateX(100%);
  transition: transform .45s ease;
}

.aw-menuDrawer.is-open .aw-menuDrawer__panel {
  transform: translateX(0);
}

.aw-menuDrawer__close {
  position: absolute;
  top: 38px;
  right: 38px;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(22,10,0,.16);
  border-radius: 50%;
  background: transparent;
  color: #160a00;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: .22em;
  cursor: pointer;
}

.aw-menuDrawer__nav {
  display: flex;
  flex-direction: column;
}

.aw-menuDrawer__nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(22,10,0,.08);
  color: #160a00;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .14em;
}

.aw-menuDrawer a:focus,
.aw-menuDrawer button:focus {
  outline: none;
  box-shadow: none;
}

/* =====================================================
SP drawer
===================================================== */

@media screen and (max-width: 767px) {

  .aw-menuDrawer__panel {
    width: 100%;
    padding: 100px 34px 48px;
  }

  .aw-menuDrawer__close {
    top: 20px;
    right: 20px;
    width: 68px;
    height: 68px;
    font-size: 10px;
  }

  .aw-menuDrawer__nav a {
    padding: 14px 0;
    font-size: 15px;
    letter-spacing: .12em;
  }

}

.ec-layoutRole__header,
.ec-headerRole,
.ec-headerTitle,
.ec-headerTitle__title,
.ec-headerTitle__title a,
.ec-headerTitle img {
  display: none !important;
}

