@charset "UTF-8";
/* =========================================================================
   apahome.jp 共通ヘッダー / 共通フッター（LP同梱版）
   - /common/css/style.css から l-header 系・g-footer-sitemap 系・bk-footer 系の
     ルールのみを抜き出したもの。本LPは CMS を通らない静的ページのため、
     サイト全体CSS（675KB）を読み込むとLPのTailwindデザインが崩れる。
   - 本家 style.css を更新した際は、同じ範囲を再抽出して差し替えること。
   - 抽出元: /common/css/style.css（2026-08-17時点）
   ========================================================================= */

/* --- LPのTailwind/独自CSSとの差分を埋めるスコープ付きベース ------------- */
.l-header,
.apa-footer {
  /* 本家 style.css の :root から、ヘッダー/フッターが参照する変数のみ移植 */
  --c-gold: #C7A956;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #595757;
  font-feature-settings: normal;
  letter-spacing: normal;
}
.l-header a,
.apa-footer a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.5s;
}
.l-header a:hover,
.apa-footer a:hover {
  text-decoration: underline;
}
.l-header a:hover img,
.apa-footer a:hover img {
  opacity: 0.8;
}
.l-header ul,
.apa-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-header img,
.apa-footer img {
  max-width: 100%;
  /* TailwindのPreflightは img を display:block にするが、本家は既定の inline。
     block のままだと text-align:center が効かず、SPのInstagramアイコン等が左寄りになる */
  display: inline;
}

/* 改行制御ヘルパー（本家 style.css の br.is-pc / br.is-tb / br.is-sp 相当） */
.l-header br.is-sp,
.l-header br.is-tb {
  display: none;
}
@media screen and (max-width: 1200px) {
  .l-header br.is-tb {
    display: block;
  }
}
@media screen and (max-width: 786px) {
  .l-header br.is-sp {
    display: inline;
  }
  .l-header br.is-pc {
    display: none;
  }
  .l-header br.is-tb {
    display: none;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 769px) {
  .pc-only {
    display: none;
  }
}
.common-inner {
  max-width: 1120px;
  margin: auto;
}
@media screen and (max-width: 769px) {
  .common-inner {
    padding: 0 20px;
  }
}
.l-header {
  width: 100%;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 0 0 0;
}
.l-headerTop {
  box-shadow: 0 0 4px rgb(0 0 0 / 25%);
  background: white;
  position: relative;
  z-index: 10;
}
.l-headerbottom {
  background: white;
  z-index: 5;
}
.l-headerInner {
  max-width: 1480px ;
  margin: auto;
  display: block;
  font-size: 14px;
}
.l-headerTop .l-headerInner {
  display: grid;
  grid-template-columns: 830px 1fr;
  grid-template-rows: 1fr;
  padding: 0 20px;
}
.l-headerTop__siteLogo a img {
  padding: 8px 0;
}
ul.l-headerTop__rightNav {
  margin: auto 0 auto auto;
  display: grid;
  grid-template-columns: 40px 100px 100px 100px;
  grid-template-rows: 25px;
  font-size: 14px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",  Meiryo, sans-serif
}
.l-headerTop__rightNav .nav:not(.nav-insta) {
  position: relative;
  padding-left: 16px;
}
.l-headerTop__rightNav .nav:not(.nav-insta)::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #000000;
  border-right: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.l-headerTop__rightNav .nav-insta {
  width: 25px;
  height: 25px;
  display: block;
}
.l-headerTop__text {
  font-size: 12px;
  margin-left: 20px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",  Meiryo, sans-serif;
  color: #7C7C7C;
  font-weight: 300;
}
.l-headerTop__left {
  display: flex;
  align-items: center;
}
.l-headerTop__siteLogo {
  width: 183px;
}
.l-headerbottom .l-headerSP {
  display: none;
}
.l-header .hamburger-menu,
.l-header .menu-text,
.l-header .g-nav-list-wrapper.is-hamburger-open {
  display: none;
}
.l-headerMainNav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 57px;
  border-left: 1px solid #E6E6E6;
}
.l-headerPositionLink {
  text-align: left;
  border-right: 1px solid #E6E6E6;
  position: relative;
  cursor: pointer;
}
.l-headerPositionLink:not(.notDorp):after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 14px;
  width: 7px;
  height: 7px;
  border-top: #000 1px solid;
  border-right: #000 1px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: 0.2s;
}
.l-headerPositionLink__item {
  padding: 0 10px;
  display: flex;
  justify-content: left;
  align-items: center;
  line-height: 1;
  height: 57px;
}
.l-headerPositionLink__item .menu-subhead {
  font-size: 10px;
  margin-right: 12px;
  /*background-color: #83734D;*/
  /*color: #fff;*/
  background-color: #EBEBEB;
  color: #3C3C3C;
  border-radius: 10px;
  padding: 2px 10px;
  font-weight: 500;
  vertical-align: middle;
}
.l-headerPositionLink.logout_head,
.l-headerPositionLink.login_head {
  background-color: var(--c-gold);
  text-align: center;
}
.l-headerPositionLink.logout_head > div {
  color: white;
  font-weight: bold;
  justify-content: center;
}
.l-headerPositionLink.login_head a {
  color: white;
  font-weight: bold;
  padding: 15px 0 19px;
  display: block;
}
.l-headerPositionLink.login_head span {
  font-size: 12px;
  margin-top: 5px;
}
.l-headerPositionLink .l-headerPositionLink__menu__wrap {
  display: none;
}
.l-headerPositionLink .l-headerPositionLink__menu {
  padding: 0 20px;
  background-color: white;
  display: block;
  position: absolute;
  z-index: 10;
  width: 100%;
}
.l-header_cover {
  display: none;
}
@media screen and (min-width: 785px) {
  .l-headerPositionLink:hover .l-headerPositionLink__menu__wrap {
    display: block;
  }
}
.l-headerPositionLink__menuli {
  display: block;
  padding: 13px 0;
  font-size: 13px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.l-headerPositionLink__menuli:hover {
  opacity: 0.6;
}
.l-headerPositionLink__menuli:not(:last-child) {
  border-bottom: solid 1px #D8D8D8;
}
.l-headerPositionLink__menuli .font-sizemin {
  font-size: 12px;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 1440px) {
  .l-headerPositionLink__item {
    padding: 0 10px;
  }
  .l-headerPositionLink__item .menu-subhead {
    display: block;
    margin-bottom: 5px;
    margin-right: 5px;
  }
}
.c-pickup--pc {
  display: block;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
  padding: 1px 5px 0;
  margin-bottom: 4px;
  width: fit-content;
  color: #b8922a;
  border: 1px solid #b8922a;
  border-radius: 2px;
}
@media screen and (max-width: 1300px) {
  .l-headerPositionLink__item {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .l-headerTop .l-headerInner {
    grid-template-columns: 56% 1fr;
    padding: 0 20px;
  }
  .l-headerTop__siteLogo a img {
    padding: 14px 0;
  }
  ul.l-headerTop__rightNav {
    grid-template-columns: 32px 77px 77px 100px;
  }
  .l-headerTop__rightNav .nav:not(.nav-insta) {
    padding-left: 10px;
  }
  .l-headerTop__rightNav .nav:not(.nav-insta)::before {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #000000;
  }
  .l-headerTop__text {
    font-size: 11px;
    margin-left: 10px;
    flex: 1;
  }
  .l-headerTop__siteLogo a {
    vertical-align: middle;
  }
  .l-headerPositionLink:not(.notDorp):after {
    right: 10px;
  }
  .l-headerPositionLink__item {
    padding: 22px 3px 19px 8px;
    border-bottom: 1px solid #EBEBEB;
    font-size: 12px;
  }
}
@media screen and (max-width: 1050px) {
  .l-headerPositionLink__item .menu-subhead {
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 786px) {
  .l-headerTop {
    height: 52px;
  }
  .l-headerTop .l-headerInner {
    grid-template-columns: 56% 1fr;
    padding: 0 20px;
  }
  .l-headerTop__siteLogo {
    width: 186px;
  }
  .l-headerTop__siteLogo a {
    vertical-align: middle;
  }
  .l-headerTop__siteLogo a img {
    padding: 5px 0;
  }
  ul.l-headerTop__rightNav {
    display: none;
  }
  .l-headerTop__text {
    display: none;
  }
  .l-header .hamburger-menu,
  .l-header .menu-text,
  .l-header .g-nav-list-wrapper.is-hamburger-open {
    display: block;
  }
  .l-header .hamburger-menu {
    display: block;
    cursor: pointer;
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 23px;
    width: 30px;
    height: 20px;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header .hamburger-menu > span {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3C3C3C;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .l-header .hamburger-menu > span:nth-of-type(1) {
    top: 0;
  }
  .l-header .hamburger-menu > span:nth-of-type(2) {
    top: 9px;
  }
  .l-header .hamburger-menu > span:nth-of-type(3) {
    bottom: 0;
  }
  .l-header .hamburger-menu.is-hamburger-open {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .l-header .hamburger-menu.is-hamburger-open > span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-30deg);
    transform: translateY(9px) rotate(-30deg);
  }
  .l-header .hamburger-menu.is-hamburger-open > span:nth-of-type(2) {
    -webkit-transform: translateY(0) rotate(30deg);
    transform: translateY(0) rotate(30deg);
  }
  .l-header .hamburger-menu.is-hamburger-open > span:nth-of-type(3) {
    opacity: 0;
  }
  .l-header .menu-text {
    display: block;
    position: absolute;
    z-index: 2;
    top: 36px;
    right: 25px;
    text-align: center;
    font-size: 9px;
  }
  .l-headerMainNav {
    display: block;
  }
  .l-headerPositionLink__item {
    padding: 18px 30px 18px 20px;
  }
  .l-headerPositionLink__item .menu-subhead {
    display: inline-block;
  }
  .l-headerPositionLink__menuli {
    padding: 18px 20px;
  }
  .l-headerPositionLink .l-headerPositionLink__menu {
    padding: 0;
    background-color: #FFF9E8;
    position: relative;
  }
  .l-headerPositionLink:not(.notDorp):after {
    top: 23px;
    right: 30px;
    bottom: unset;
  }
  .l-headerPositionLink.selected:not(.notDorp):after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: 0.2s;
    top: 25px;
  }
  .l-headerPositionLink__menuli:not(:last-child) {
    border-bottom: solid 1px #D3D3D3;
  }
  .l-headerPositionLink__menu.shop {
    display: flex;
    flex-wrap: wrap;
  }
  .l-headerPositionLink__menu.shop .l-headerPositionLink__menuli {
    width: 50%;
    border-right: solid 1px #D3D3D3;
  }
  .l-headerPositionLink__menuli .font-sizemin {
    font-size: 13px;
  }
  .l-headerPositionLink.login_head {
    margin: 20px;
  }
  .l-headerPositionLink.logout_head {
    background-color: transparent;
  }
  .l-headerPositionLink.logout_head .l-headerPositionLink__item {
    background-color: var(--c-gold);
  }
  .l-headerPositionLink.selected:not(.notDorp)::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: 0.2s;
  }
  .l-headerbottom {
    width: 95%;
    margin: 0 0 0 auto;
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top:52px;
    right: -95%;
    /*動き*/
    transition: all 0.6s;
  }
  .l-headerbottom.active {
    right: 0;
  }
  .l-headerbottom .l-headerSP {
    display: block;
    padding: 44px 20px 200px;
  }
  .l-headerbottom .l-headerSP ul.l-headerTop__rightNav {
    display: grid;
    grid-template-columns: 77px 77px 100px;
    margin-bottom: 9px;
  }
  .l-headerbottom .l-headerSP ul.l-headerTop__rightNav a {
    color: #3C3C3C;
    font-size: 12px;
  }
  .l-headerbottom .l-headerSP .l-headerSP__inst {
    display: flex;
    font-size: 12px;
  }
  .l-headerbottom .l-headerSP .l-headerSP__inst img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  .l-header_cover.active {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgb(0 0 0 /70%);
    display: block;
  }
  .c-pickup--pc {
    display: none;
  }
  .c-pickup--sp {
    position: relative;
  }
  .c-pickup--sp::after {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    content: "PICKUP";
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 1px 5px 0;
    color: #b8922a;
    border: 1px solid #b8922a;
    border-radius: 2px;
  }
  .l-headerPositionLink__item.c-pickup--sp::after {
    right: 30px;
    /* グロナビ「アパオリジナルブランド」はNEW表記 */
    content: "NEW";
  }
}
.bk-footer {
  background-color: #000;
  padding: 10px 0;
  color: #fff;
}
.bk-footer a {
  color: #fff;
}
.bk-footer ul.footer-logo-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 18px auto 18px;
  padding: 0 10px;
}
@media screen and (max-width: 769px) {
  .bk-footer ul.footer-logo-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.bk-footer ul.footer-logo-flex li {
  margin-right: 20px;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .bk-footer ul.footer-logo-flex li {
    width: 48%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.bk-footer ul.footer-logo-flex li img {
  max-width: 100%;
}
@media screen and (max-width: 769px) {
  .bk-footer ul.footer-logo-flex li img {
    height: 16px;
  }
}
.bk-footer ul.footer-link-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 18px auto 18px;
}
@media screen and (max-width: 769px) {
  .bk-footer ul.footer-link-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: solid 1px #fff;
    width: 100%;
    border-left: solid 1px #fff;
  }
}
.bk-footer ul.footer-link-flex li {
  margin-right: 20px;
  text-align: center;
}
.bk-footer ul.footer-link-flex li a {
  font-size: 13px;
  color: #f5f5f5;
}
@media screen and (max-width: 769px) {
  .bk-footer ul.footer-link-flex li {
    width: 50%;
    padding: 10px;
    margin-right: 0;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
  }
  .bk-footer ul.footer-link-flex li a {
    font-size: 11px;
    color: #f5f5f5;
  }
}
.bk-footer ul.footer-link-flex li img {
  max-width: 100%;
}
.bk-footer ul.footer-link-flex li:last-child {
  margin-right: 0;
}
.bk-footer ul.footer-tag-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 18px auto 18px;
  align-items: center;
}
.bk-footer ul.footer-tag-flex li {
  margin-right: 10px;
  text-align: center;
}
.bk-footer ul.footer-tag-flex li img {
  max-width: 100%;
}
.bk-footer .copyright {
  text-align: center;
  margin: auto;
  display: block;
}
.bk-footer ul.footer-tag-flex .footer-tag-flex-insta {
  width: 29px;
  padding: 0 14.5px 0 4.5px;
  box-sizing: content-box;
}
.footer-insta {
  display: block;
}
.footer-insta-sp {
  display: none;
}
.g-footer-sitemap {
  background: #F7F5F5;
}
.g-footer-sitemap__inner {
  max-width: 1120px;
  margin: auto;
  padding: 90px 0;
}
@media screen and (max-width: 769px) {
  .g-footer-sitemap__inner {
    padding: 20px 5%;
  }
  .footer-insta-sp {
    display: block;
    text-align: center;
    padding: 27px 0 16px;
  }
  .footer-insta {
    display: none;
  }
  .bk-footer ul.footer-tag-flex {
    padding: 0 10px;
  }
}
.g-footer-sitemap .sitemap-primary,
.g-footer-sitemap .sitemap-secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 769px) {
  .g-footer-sitemap .sitemap-primary,
  .g-footer-sitemap .sitemap-secondary {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.g-footer-sitemap .sitemap-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 19%;
  flex: 0 1 19%;
}
@media screen and (max-width: 769px) {
  .g-footer-sitemap .sitemap-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
    margin-bottom: 10px;
  }
  .g-footer-sitemap .sitemap-item:last-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.g-footer-sitemap .sitemap-item.wide {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
.g-footer-sitemap .sitemap-item.wide .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.g-footer-sitemap .sitemap-item.wide .item-list > li {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 19%;
  flex: 0 1 19%;
}
@media screen and (max-width: 769px) {
  .g-footer-sitemap .sitemap-item.wide .item-list > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.g-footer-sitemap .sitemap-item .item-title {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: solid 1px #000;
  margin-bottom: 10px;
}
.g-footer-sitemap .sitemap-item .item-list > li {
  position: relative;
  font-size: 12px;
}
@media screen and (max-width: 769px) {
  .g-footer-sitemap .sitemap-item .item-list > li {
    padding: 4px 0;
  }
}
.g-footer-sitemap .sitemap-item .item-list > li.arw {
  padding-left: 5px;
}
.g-footer-sitemap .sitemap-item .item-list > li.arw::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent transparent #000;
  border-width: 3px 0 3px 3px;
}

/* =========================================================================
   本LP固有の上書き（抽出ルールより後に置いて必ず勝たせる）
   ========================================================================= */
/* 本家は position:fixed だが、本LPはフルスクリーンのヒーローと独自の
   スティッキーナビを持つため、共通ヘッダーはページ最上部に固定せず流す */
.l-header {
  position: relative;
}
/* 追従CTAバー（#cta-bar）にコピーライトが隠れないよう下余白を確保 */
.apa-footer .bk-footer {
  padding-bottom: 76px;
}
@media screen and (max-width: 769px) {
  .apa-footer .bk-footer {
    padding-bottom: 88px;
  }
}
