#header img,
#footer img {
  max-width: 100%;
}
/*** header ***/
#header {
  background: #fff;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  font-family: "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
}
#header .logo {
  position: relative;
  z-index: 1;
}
#header .logo a {
  display: block;
  text-align: center;
}
@media only screen and (max-width: 950px) {
  #header {
    height: 55px;
  }
  #header.open .logo {
    background: #fff !important;
  }
  #header .logo {
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-left: 0;
  }
  #header .logo a {
    width: 176px;
    margin-left: 14px;
  }
  #header .logo a img {
    vertical-align: middle;
  }
  #header .btn-wrap {
    display: none;
  }
  #header .nav-wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-height: 100vh;
    max-height: calc(var(--vh, 1vh) * 100);
    padding-top: 55px;
    overflow: auto;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    background: #fff;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  #header .nav-wrap.is-open {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  #header .nav-list {
    padding: 0px 20px;
  }
  #header .nav-list li.link-none {
    opacity: .5;
  }
  #header .nav-list li a {
    display: block;
    padding: 20px 20px;
    font-size: 14px;
    position: relative;
  }
  #header .nav-list li a::before,
  #header .nav-list li a::after {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
  }
  #header .nav-list li a:not(.js-aco-btn-sp)::before {
    content: "";
    border: solid #221e1f;
    border-width: 0 1px 1px 0;
    width: 8px;
    height: 8px;
    -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
    transform: rotate(-45deg) translate3d(0, 0, 0);
  }
  #header .nav-list li a.js-aco-btn-sp::before,
  #header .nav-list li a.js-aco-btn-sp::after {
    content: "";
    background: #221e1f;
    width: 11px;
    height: 1px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    right: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #header .nav-list li a.js-aco-btn-sp::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #header .nav-list li a.js-aco-btn-sp.is-active:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  #header .nav-list li a.js-aco-btn-sp.is-active:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  #header .nav-list li .mega-menu {
    padding-left: 30px;
    padding-bottom: 10px;
  }
  #header .nav-list li .mega-menu a {
    padding: 10px 0;
    font-size: 12px;
  }
  #header .nav-list li .mega-menu .sub-menu {
    padding-left: 10px;
  }
  #header .nav-list>li {
    border-top: 1px solid #949494;
  }
  #header .nav-list .li-bnrs {
    padding-top: 15px;
  }
  #header .nav-list .li-bnrs a {
    padding: 0;
  }
  #header .nav-list .li-bnrs a:before {
    content: none !important;
  }
  #header .nav-list .li-bnrs .ttl {
    font-size: 14px;
  }
  #header .nav-list .li-bnrs .img {
    margin-top: 15px;
  }
  #header .nav-list .li-bnrs .bnr {
    padding: 25px 0 30px;
  }
  #header .nav-list .li-bnrs .bnr:not(:first-child) {
    border-top: 1px solid #949494;
  }
  #header .nav-list .li-bnrs .bnr.bnr-ashita .ttl {
    font-size: 12px;
  }
  #header .nav-list .li-bnrs .bnr.bnr-ashita a {
    padding: 20px 0;
    display: block;
    background: #fdf4f4;
    text-align: center;
    border-radius: 5px;
  }
  #header .nav-list .li-bnrs .bnr.bnr-ashita a img {
    width: 130px;
  }
  #header .nav-list .li-login {
    border: none;
    margin: 0 -20px 50px;
  }
  #header .nav-list .li-login>a {
    padding: 15px 30px 15px 40px;
    background: #f5f5f5;
  }
  #header .nav-list .li-login>a>div {
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #header .nav-list .li-login>a .ico {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    background: #fff;
    border-radius: 50%;
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #header .nav-list .li-login>a .ico-txt {
    font-size: 14px;
    font-weight: 500;
    width: calc(100% - 60px);
    line-height: 1.3;
  }
  #header .nav-list .li-login>a .ico-txt span {
    font-size: 12px;
    font-weight: normal;
    display: block;
    margin-top: 2px;
  }
  #header .nav-list .li-login>a .mypage-true .ico-txt {
    font-size: 18px;
  }
  #header .nav-list .li-login>a.login-false .mypage-true {
    display: none;
  }
  #header .nav-list .li-login>a.login-false+.mega-menu .acr-true {
    display: none;
  }
  #header .nav-list .li-login>a.login-true .mypage-false {
    display: none;
  }
  #header .nav-list .li-login>a.login-true+.mega-menu .acr-false {
    display: none;
  }
  #header .nav-list .li-login .mega-menu {
    margin-top: 0;
    background: #f5f5f5;
    padding: 0;
  }
  #header .nav-list .li-login .mega-menu .over-area {
    padding: 40px 30px 50px;
    background: #fff;
  }
  #header .nav-list .li-login .mega-menu .under-area {
    padding: 35px 20px;
    background: #f5f5f5;
  }
  #header .nav-list .li-login .mega-menu .input-list li:not(:first-child) {
    margin-top: 15px;
  }
  #header .nav-list .li-login .mega-menu .input-list input {
    border: 1px solid #949494;
    font-size: 12px !important;
    color: #747474;
    padding: 15px 20px;
    border-radius: 5px;
    background: #fff;
    width: 100%;
  }
  #header .nav-list .li-login .mega-menu .login-btn {
    margin: 50px auto 25px;
    text-align: center;
    width: 250px;
    position: relative;
  }
  #header .nav-list .li-login .mega-menu .login-btn input {
    border: 1px solid #aa1f4f;
    color: #aa1f4f;
    font-size: 12px;
    padding: 16px 40px;
    width: 250px;
    text-align: left;
    margin: auto;
    position: relative;
  }
  #header .nav-list .li-login .mega-menu .login-btn .ico {
    position: absolute;
    color: #aa1f4f;
    right: 20px;
    top: 0;
    bottom: 0;
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #header .nav-list .li-login .mega-menu .link {
    text-align: center;
    margin-top: 10px;
  }
  #header .nav-list .li-login .mega-menu .link a {
    padding: 0;
    font-size: 12px;
    text-decoration: underline;
    font-weight: normal;
  }
  #header .nav-list .li-login .mega-menu .link a:after,
  #header .nav-list .li-login .mega-menu .link a:before {
    content: none;
  }
  #header .nav-list .li-login .mega-menu .sub-catch {
    font-size: 17px;
    text-align: center;
    font-weight: bold;
  }
  #header .nav-list .li-login .mega-menu .txt {
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
  }
  #header .nav-list .li-login .mega-menu .img {
    text-align: center;
    margin-top: 20px;
  }
  #header .nav-list .li-login .mega-menu .img a {
    padding: 0;
  }
  #header .nav-list .li-login .mega-menu .img a:after,
  #header .nav-list .li-login .mega-menu .img a:before {
    content: none;
  }
  #header .cart-btn {
    display: block;
    width: 40px;
    height: 55px;
    text-align: center;
    position: absolute;
    right: 60px;
    z-index: 99;
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #header .cart-btn .ico {
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    font-size: 0;
    background: #a3a5a9;
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }
  #header .cart-btn .ico .c-svg {
    color: #fff;
    padding-left: 2px;
  }
  #header .nav-btn {
    position: absolute;
    top: 0;
    right: 12px;
    width: 40px;
    height: 55px;
    overflow: hidden;
    text-align: center;
    z-index: 99;
  }
  #header .nav-btn .inn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 10px;
    margin: auto;
  }
  #header .nav-btn .inn .line {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #67686b;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  #header .nav-btn .inn .line:nth-child(1) {
    top: 0;
  }
  #header .nav-btn .inn .line:nth-child(2) {
    top: 8px;
  }
  #header .nav-btn.is-open .inn .line {
    top: 7px;
  }
  #header .nav-btn.is-open .inn .line:nth-child(1) {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  #header .nav-btn.is-open .inn .line:nth-child(2) {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  #header #cover-bg {
    z-index: 98;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110vh;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  #header #cover-bg.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 769px) {
  #header .logo {
    margin-left: 40px;
    margin-top: 0;
    width: 338px;
  }
}
@media screen and (max-width: 768px) {
  #header .logo {
    margin-top: 0;
    width: 190px;
  }
}
@media only screen and (min-width: 950px)and (max-width: 1200px) {
  #header .nav-list>li a {
    font-size: 14px;
    padding: 10px;
  }
  #header .nav-wrap .btn-wrap {
    width: 160px;
    margin: 0;
  }
  #header .nav-wrap .nav-list {
    width: calc(100% - 160px);
  }
}
@media only screen and (min-width: 950px) {
  #header .nav-wrap,
  #header .nav-list,
  #header .btn-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #header .nav-wrap {
    width: calc(100% - 378px);
    margin-left: auto;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  #header .nav-list {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 10px;
    width: calc(100% - 200px);
  }
  #header .nav-list>li {
    height: 100%;
  }
  #header .nav-list a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    position: relative;
  }
  #header .nav-list .mega-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
  }
  #header .nav-list .mega-menu .link-list,
  #header .nav-list .mega-menu .txt-link-list {
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #header .nav-list .mega-menu li a {
    font-size: 16px;
    font-weight: 500;
    padding: 25px 40px;
  }
  #header .nav-list .mega-menu li a:before,
  #header .nav-list .mega-menu li a:after {
    content: none;
  }
  #header .nav-list .mega-menu li a:hover {
    color: #aa1f4f;
  }
  #header .nav-list .mega-menu li.link-none {
    opacity: .5;
  }
  #header .nav-list .mega-menu .sub-menu {
    display: none;
  }
  #header .btn-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 200px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #header .btn-wrap a {
    width: 70px;
    height: 100%;
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #header .btn-wrap a .ico {
    background: #a3a5a9;
    border-radius: 50%;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35px;
    height: 35px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  #header .btn-wrap a .ico.login {
    padding-right: 2px;
  }
  #header .btn-wrap a .txt {
    font-size: 12px;
    margin-top: 3px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  #header .nav-btn,
  #header .cart-btn {
    display: none;
  }
  #header .c-middle-show {
    display: none !important;
  }
}
@media only screen and (min-width: 950px)and (min-width: 950px) {
  #header .nav-list>li:hover .mega-menu {
    opacity: 1;
    pointer-events: auto;
  }
  #header .nav-list>li:hover a::after {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  #header .nav-list>li:hover a::before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  #header .nav-list a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #aa1f4f;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  #header .nav-list a:before {
    position: absolute;
    bottom: 0;
    content: "";
    width: 150vw;
    height: 2px;
    background: #f5f5f5;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  #header .btn-wrap a:hover .ico {
    background: #aa1f4f;
  }
  #header .btn-wrap a:hover .txt {
    color: #aa1f4f;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes navSlideIn {
  0% {
    opacity: 0;
    background-color: transparent;
    transform: translateX(-15px);
  }
  100% {
    opacity: 1;
    background-color: #fff;
    transform: translateX(0);
  }
}
@keyframes navSlideOut {
  0% {
    opacity: 1;
    background-color: #fff;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    background-color: transparent;
    transform: translateX(-15px);
  }
}
@media only screen and (max-width: 950px) {
  #header .nav-wrap {
    background-color: transparent;
    transform: none !important;
    overflow-x: hidden;
    top: 55px;
    padding-top: 0;
    max-height: calc((var(--vh, 1vh) * 100) - 55px);

  }
  #header .nav-list .li-login {
    margin: 0 -20px 0px;
  }
  #header .nav-wrap,
  #header #cover-bg {
    transition: 0s;
  }
  #header .nav-wrap.is-close,
  #header #cover-bg.is-close {
    animation: fadeOut .3s ease-in-out forwards;
  }
  #header .nav-list {
    opacity: 0;
  }
  #header .nav-wrap.is-open .nav-list {
    animation: navSlideIn 1.5s cubic-bezier(0.2, 1, 0.2, 1) forwards;
    animation-delay: .6s;
  }
  #header .nav-wrap.is-close .nav-list {
    animation: navSlideOut 1.5s cubic-bezier(0.2, 1, 0.2, 1) forwards;
  }
  #header .nav-bg01,
  #header .nav-bg02 {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 160%;
    transform: translateX(-100%);
    transition:
      transform 1s cubic-bezier(0.2, 1, 0.2, 1),
      border-radius .7s ease-out;
  }
  #header .nav-bg01 {
    background: url(../img/common/bg-grad02.jpg) no-repeat right center / 50% 100%;
    border-radius: 0 120% 100% 0;
  }
  #header .nav-bg02 {
    background-color: #fff;
    border-radius: 0 130% 80% 0;
    left: -15px;
  }
  #header .nav-wrap.is-open .nav-bg01 {
    border-radius: 0;
    transform: translateX(0);
  }
  #header .nav-wrap.is-open .nav-bg02 {
    border-radius: 0;
    transform: translateX(0);
    transition-delay: .1s;
    left: 0;
  }
}
@media screen and (min-width:1071px) and (max-width:1300px) {
  #header .nav-list>li a {
    font-size: 14px;
    padding: 10px;
  }
}
@media screen and (min-width:950px) and (max-width:1070px) {
  #header .nav-list>li a {
    font-size: 13px;
    padding: 10px 8px;
  }
  #header {
    z-index: 121;
  }
  #header .nav-list .li-bnrs .bnr-alo .bnr {
    padding: 10px 0 30px;
  }
}
#header .btn-wrap a {
  position: relative;
}
/* ヘッダーグロナビ 調整*/
#header .nav-wrap .nav-list a.red {
  color: #aa1f4f;
}
/* 20250613_abe ヘッダーメニューアイコンの変更 */
#header .js-cart-count {
  position: absolute;
  background-color: #C1272D;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  height: 18px;
  width: 18px;
  padding: 0;
  right: 12px;
  top: 8px;
}
@media only screen and (min-width: 950px) {
  #header .btn-wrap a:hover {
    transform: none;
  }
  #header .btn-wrap a:hover .txt {
    color: #414141;
  }
  #header .btn-wrap a div {
    width: 48px;
    height: 38px;
    position: relative;
    margin: 0 auto;
  }
  #header .btn-wrap a .login::before,
  #header .btn-wrap a .cart::before {
    content: "";
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 21px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: opacity 0.3s ease-in-out;
  }
  #header .btn-wrap a .login::before {
    background-image: url('../img/mypage.svg');
    opacity: 1;
    left: 2px;
  }
  #header .btn-wrap a .cart::before {
    background-image: url('../img/svg/cart.svg?v2');
    opacity: 1;
    left: -2px;
    will-change: opacity;
  }
  #header .btn-wrap a .txt {
    margin-top: -9px;
    transition: 0.3s ease-in-out;
  }
}
@media only screen and (min-width: 950px) {
  #header .nav-btn,
  #header .login-btn {
    display: none;
  }
}
@media only screen and (max-width: 950px) {
  #header .js-cart-count {
    font-size: 10px;
    width: 16px;
    height: 16px;
    right: -2px;
    top: 2px;
  }
  #header .nav-btn {
    right: 13px;
  }
  #header .nav-btn .inn {
    height: 30px;
    width: 20px;
  }
  #header .nav-btn .inn .line {
    background-color: #414141;
    height: 2px;
  }
  #header .nav-btn .inn .line:nth-child(2) {
    top: 7px;
  }
  #header .nav-btn .inn .line:nth-child(3) {
    top: 14px;
  }
  #header .nav-btn.is-open .inn .line:nth-child(1),
  #header .nav-btn.is-open .inn .line:nth-child(2) {
    transform: rotate(45deg);
    top: 7px;
  }
  #header .nav-btn.is-open .inn .line:nth-child(2) {
    opacity: 0;
  }
  #header .nav-btn.is-open .inn .line:nth-child(3) {
    transform: rotate(-45deg);
    top: 7px;
  }
  #header .login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 55px;
    text-align: center;
    position: absolute;
    right: 113px;
    z-index: 99;
    top: 0;
  }
  #header .cart-btn {
    right: 69px;
  }
  #header .cart-btn .cart,
  #header .login-btn .login {
    position: relative;
    top: -7px;
  }
  #header .btn-txt-sp {
    font-size: 10px;
    position: absolute;
    bottom: 6px;
    color: #414141;
  }
  #header .nav-btn .btn-txt-sp {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #414141;
    bottom: 8px;
  }
  #header .nav-list {
    margin-top: 0;
  }
  #header .login-btn-wrap .ico {
    background: #fff;
  }
  #header .login-btn-wrap .ico.login img {
    position: relative;
    top: -1px;
  }
  #header .nav-btn.is-open .inn .line {
    width: 100%;
  }
  #header .login-btn a,
  #header .cart-btn a {
    line-height: 1.6;
  }
}

/*20250929 HP-3011 あしたの美肌のキャッチコピー・アプリバナーおよびリンク先変更*/
@media only screen and (max-width: 950px) {
  #header .nav-list .li-bnrs .bnr.bnr-ashita .ttl {
    font-size: 14px;
  }
}

/*** footer ***/
#footer {
  position: relative;
  /* brands */
  /* footer-link */
  /* copy */
}
@media screen and (min-width: 769px) {
  #footer {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
    min-width: 1200px;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding-bottom: 30px;
  }
}
#footer.brands {
  text-align: center;
}
@media screen and (min-width: 769px) {
  #footer .brands {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 100px;
    padding-top: 100px;
    width: 1094px;
  }
}
@media screen and (max-width: 768px) {
  #footer .brands {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
#footer .brands h2 a {
  display: inline-block;
}
#footer .brands h2 img {
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #footerr .brands h2 img {
    width: 330px;
  }
}
@media screen and (max-width: 768px) {
  #footer .brands h2 img {
    width: 241px;
  }
}
#footer .brands h2 .sub {
  color: #454545;
  display: block;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 14px;
  line-height: 19px;
  margin-top: 15px;
}
#footer .brands ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 769px) {
  #footer .brands ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  #footer .brands ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 11px;
    margin-right: 11px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) {
  #footer .brands ul li {
    height: auto;
    width: 260px;
  }
  #footer .brands ul li:not(:first-child) {
    margin-left: 18px;
  }
}
@media screen and (max-width: 768px) {
  #footer .brands ul li {
    padding: 5px;
    width: 50%;
  }
}
#footer .brands ul li a {
  display: block;
}
#footer .brands ul li a img {
  pointer-events: none;
}
#footer .footer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 769px) {
  #footer .footer-link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-link {
    font-size: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
  }
}
#footer .footer-link li {
  line-height: 1;
}
@media screen and (min-width: 769px) {
  #footer.footer-link li:not(:first-child) {
    border-left: 1px solid #9FA0A0;
    margin-left: 10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-link li:not(:last-child):after {
    content: "|";
    margin-left: 1em;
    margin-right: 0.5em;
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-link li {
    line-height: 16px;
    white-space: nowrap;
  }
}
#footer .footer-link li:nth-child(3):after,
#footer .footer-link li:nth-child(5):after {
  font-size: 0;
  content: "\A";
  white-space: pre;
}
#footer .footer-link li a {
  color: #454545;
  line-height: 1;
}
#footer .copyright {
  color: #454545;
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #footer .copyright {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #footerr .copyright {
    font-size: 13px;
  }
}
#footer .globalsign {
  width: 87px;
}
@media screen and (min-width: 769px) {
  #footer .globalsign {
    bottom: 160px;
    left: 53%;
    position: absolute;
    -webkit-transform: translateX(397px);
    transform: translateX(397px);
  }
}
@media screen and (max-width: 768px) {
  #footer .globalsign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: 16px;
    margin-top: -10px;
  }
}
#footer .globalsign img {
  width: 87px !important;
}

/* 230112_murai フッターにロゴ追加 */
@media screen and (min-width: 769px) {
  #footer .brands ul {
    flex-wrap: wrap;
    gap: 18px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #footer .brands ul li {
    width: 167.33px;
  }
  #footer .brands ul li:not(:first-child) {
    margin-left: 0;
  }
}

/* 230119_fukasawa グローバルサイン調整 */
#footer .footer-block-bottom-credit .link-bnr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*margin-top:25px*/
}
#footer .footer-block-bottom-credit .link-bnr p {
  margin-bottom: 0;
}
@media only screen and (min-width: 766px) {
  #footer .footer-block-bottom-credit {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    max-width: 1094px;
    margin: 0 auto;
    justify-content: center;
  }
  #footer .footer-block-bottom-credit .link-bnr p:first-child img {
    width: 60px;
    margin: 0 15px 0 30px;
  }
  #footer .footer-block-bottom-credit .link-bnr p:nth-of-type(2) img {
    width: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer-block-bottom-credit {
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  #footer .footer-block-bottom-credit .link-bnr {
    margin: 0 0 20px 0;
  }
  #footer .footer-block-bottom-credit .link-bnr p:first-child img {
    width: 80px;
    height: auto;
    margin: 0 15px 0 0;
  }
  #footer .footer-block-bottom-credit .link-bnr p:nth-of-type(2) img {
    width: 100px !important;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding-bottom: 40px;
  }
}
.js-non-touch-device #footer a:hover {
  opacity: 0.7 !important;
}
#footer .pagetop a {
  background: transparent linear-gradient(135deg, #8F262A 0%, #B95154 100%) 0% 0% no-repeat padding-box;
  bottom: 45px;
  display: block;
  -webkit-box-shadow: 0 7px 7px rgba(149, 134, 111, 0.24);
  box-shadow: 0 7px 7px rgba(149, 134, 111, 0.24);
  opacity: 0;
  position: fixed;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  z-index: 1000;
}
@media screen and (min-width: 769px) {
  #footer .pagetop a {
    height: 50px;
    right: 86px;
    width: 50px;
  }
}
@media screen and (max-width: 768px) {
  #footer .pagetop a {
    height: 50px;
    right: 15px;
    width: 50px;
  }
}

#footer .pagetop a i {
  display: block;
}
@media screen and (min-width: 769px) {
  #footer .pagetop a i {
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 768px) {
  #footer .pagetop a i {
    height: 50px;
    width: 50px;
  }
}
#footer .pagetop a i:after {
  background: url(../img/icon-arrow-02.svg) 0 0 no-repeat;
  content: '';
  height: 8px;
  width: 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-90deg);
  transform: translateX(-50%) rotate(-90deg);
  -webkit-transition: top 0.25s;
  transition: top 0.25s;
  top: 21px;
  z-index: 1;
}
.js-non-touch-device #footer .pagetop a i:hover:after {
  top: 19px;
}
#footer .pagetop.js-visibled a {
  opacity: 1;
}
#footer .pagetop.js-absolute a {
  position: absolute;
  top: -25px;
}

/* 20230710_murai フッターロゴ追加・調整 */
#footer .footer-brand-top {
  max-width: 335px;
  margin: 0 auto 60px;
}
#footer .footer-brand-top a {
  transition: 0.3s ease-in-out;
  display: block;
}
#footer .footer-brand-top a:hover {
  opacity: 0.7;
}
#footer .footer-brand-top .footer-brand-top-text {
  margin-top: 15px;
  font-size: 14px;
  color: #454545;
  text-align: center;
}
#footer .footer-brand-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px 23px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer .footer-brand-list a {
  display: block;
  width: 200px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#footer .footer-brand-list a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 640px) {
  #footer .footer-brand-wrap {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 55px auto 50px;
  }
  #footer .footer-brand-top {
    margin-bottom: 25px;
  }
  #footer .footer-brand-top a {
    display: block;
    max-width: 251px;
    margin: 0 auto 10px;
  }
  #footer .footer-brand-top .footer-brand-top-text {
    font-size: 12px;
    text-align: center;
    margin-top: 0;
  }
  #footer .footer-brand-list {
    gap: 18px 10px;
  }
  #footer .footer-brand-list a {
    width: calc((100% - 20px) / 3);
  }
}
#footer .footer-content-wrap {
  max-width: 1134px;
  width: 100%;
  margin: 60px auto 100px;
}
#footer .footer-content-top {
  max-width: 335px;
  margin: 0 auto 38px;
}
#footer .footer-content-top a {
  transition: 0.3s ease-in-out;
  display: block;
}
#footer .footer-content-top a:hover {
  opacity: 0.7;
}
#footer .footer-content-top .footer-content-top-text {
  margin-top: 15px;
  font-size: 14px;
  color: #454545;
  text-align: center;
}
#footer .footer-content-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer .footer-content-list a {
  display: block;
  width: 188px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#footer .footer-content-list a:nth-child(3) {
  display: block;
  width: 129px;
  padding-left: 5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#footer .footer-content-list a:nth-child(3) img {
  width: 70%;
}
#footer .footer-content-list a:hover {
  opacity: 0.7;
}
#footer .footer-content-list a:nth-child(2) {
  position: relative;
}
#footer .footer-content-list a:nth-child(2)::before,
#footer .footer-content-list a:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 1px;
  height: 70px;
  background: #4b5053;
}
#footer .footer-content-list a:nth-child(2)::before {
  left: 0;
}
#footer .footer-content-list a:nth-child(2)::after {
  right: 0;
}
@media only screen and (max-width: 640px) {
  #footer .footer-content-wrap {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 55px auto 50px;
  }
  #footer .footer-content-top {
    margin-bottom: 14px;
  }
  #footer .footer-content-top a {
    display: block;
    max-width: 251px;
    margin: 0 auto 10px;
  }
  #footer .footer-content-top .footer-content-top-text {
    font-size: 12px;
    text-align: center;
    margin-top: 0;
  }
  #footer .footer-content-list a {
    width: calc((100% - 20px) / 3);
  }
  #footer .footer-content-list a:nth-child(2)::before,
  #footer .footer-content-list a:nth-child(2)::after {
    height: 45px;
  }
  #footer .footer-content-list a:nth-child(3) {
    width: 70px;
  }
}
#footer {
  background-color: #F4F4F4;
}
#footer .footer-brand-wrap {
  padding-top: 50px;
}

/*add_style.cssで白に上書きされる対策*/
#footer .footer-brand-top .footer-brand-top-text {
  color: #454545;
}

/*overflow調整*/
@media screen and (min-width: 769px) {
  #footer {
    min-width: unset !important;
  }
}

#footer .footer-brand-wrap {
  position: relative;
  max-width: 1134px;
  width: 100%;
  margin: 60px auto 100px;
  padding: 50px 20px 0;
}

@media only screen and (max-width: 640px) {
  #footer .footer-brand-wrap {
    width: 100%;
    padding: 50px 10px 0;
    box-sizing: border-box;
    margin: 55px auto 50px;
  }
}

/*add_styleへ移動する 総合トップFV右下のSCROLL文対応*/
@media screen and (min-width: 769px) {
    #main-visual .scroll-wrapper .scroll-button {
        word-break: normal;
    }
}