@charset "utf-8";

/* SP Footer トライ */
.FixedMenuSection {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: black;
  z-index: 10060;
}

.FixedMenu-Inner-List {
  display: flex;
}

.FixedMenu-Inner-List-Item {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 38px;
  padding-right: 38px;
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}

@media screen and (max-width: 869px) {
  .FixedMenuSection {
    display: none;
  }

  .FixedMenu-Inner-List-Item {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
  }
}

.FixedMenu-Inner-List-Item.isWhite {
  background: black;
}

.FixedMenu-title {
  font-family: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Meiryo", "sans-serif";
  font-size: 12px;
  color: white;
  padding-top: 0px;
}

@media screen and (max-width: 362px) {
  .FixedMenu-title {
    font-size: 10px;
  }
}

/* フッター検索モーダル */
.js-modal__bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
}

.js-modal__main {
  width: calc(100% - 32px);
  height: 80%;
  padding: 16px;
  bottom: -81%;
  left: 0;
  background: #fff;
  border-radius: 4px 4px 0 0;
  position: fixed;
  z-index: 11;
  opacity: 0;
}

.js-modal__btn--close {
  margin-top: 40px;
  text-align: center;
  text-decoration: underline;
}

.js-modal__btn--close--fix {
  width: 30px;
  height: 30px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  right: 5px;
  z-index: 101;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.js-modal__btn--close--fix:before {
  content: "";
  width: 20px;
  height: 20px;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 12px;
  left: -3px;
}

.js-modal__btn--close--fix:after {
  content: "";
  width: 20px;
  height: 20px;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: -2px;
  left: -3px;
}

/*下から上*/
@keyframes SlideUp {
  0% {
    opacity: 0;
    transform: translateY(-1%);
  }

  100% {
    opacity: 1;
    transform: translateY(-80%);
  }
}

/*上から下*/
@keyframes SlideDown {
  0% {
    opacity: 1;
    transform: translateY(-80%);
  }

  100% {
    opacity: 0;
    transform: translateY(-1%);
  }
}

.js-modal__main._slideUp {
  animation: SlideUp 0.5s ease-in-out forwards;
}

.js-modal__main._slideDown {
  animation: SlideDown 0.5s ease-in-out forwards;
}

.footer {
  width: 100%;
  border-top: 1px solid #cccccc;
}

.footer_sp {
  display: none;
}

.footer div nav ul li dl dt a {
  font-family: "adobe-garamond-pro", "ヒラギノ明朝 W3 JIS2004",
    "Hiragino Mincho W3 JIS2004", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial,
    Verdana, sans-serif;
}

.footer div nav ul.footer-menu-list {
  display: flex;
  justify-content: center;
}

.footer div nav ul.footer-menu-list>li {
  vertical-align: top;
}

.footer div nav ul.footer-menu-list>li>dl>dd>ul {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.footer div nav ul.footer-menu-list li.static:first-of-type {
  margin-left: auto;
}

.footer div nav dd ul li a {
  color: #ccc;
  font-size: 11px;
  font-family: "adobe-garamond-pro", "ヒラギノ明朝 W3 JIS2004",
    "Hiragino Mincho W3 JIS2004", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial,
    Verdana, sans-serif;
  letter-spacing: 0.025em;
  line-height: 2;
}

.footer-sp-about {
  display: block;
}

@media screen and (max-width: 869px) {
  .footer-sp-about {
    display: flex;
  }
}

.footer .footerSpContents {
  display: none;
}

@media screen and (max-width: 869px) {
  .footer .footerSpContents {
    width: 100%;
    padding: 0;
    background-color: black;
    display: flex;
  }

  .footer .footerSpContents .content {
    width: 50%;
    height: 50px;
    border-right: 1px solid white;
    margin: 0 auto;
    font-size: 13px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer .footerSpContents .content.last {
    border-right: initial;
  }
}

.footer .sns ul {
  margin: 0;
}

@media screen and (max-width: 869px) {
  .footer .sns ul {
    /* text-align: left; */
    display: flex;
    justify-content: center;
  }
}

.footer .sns ul li {
  display: inline-block;
  margin: 0 15px 0 0;
}

.footer .sns ul li a i {
  color: #ccc;
  font-size: 15px;
}

.footer .sns .icon-weibo {
  display: inline-block;
  width: 15px;
  height: 13px;
  background-image: url("/assets/front/img/weibo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
}

.footer .footer-menu-list dl dt {
  font-size: 11px;
  font-family: "adobe-garamond-pro", "ヒラギノ明朝 W3 JIS2004",
    "Hiragino Mincho W3 JIS2004", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial,
    Verdana, sans-serif;
  letter-spacing: 0.025em;
  line-height: 2.5;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-bottom: 10px;
  width: 100%;
  min-width: 85px;
}

.footer .footer-menu-list dl dd {
  margin-bottom: 20px;
}

.footer .footer-menu-list dl dd li.sns {
  padding-top: 12px;
}

.footer .footer-menu-list dl dd li.payment {
  padding-top: 30px;
}

.footer .footer-menu-list dl dd li.payment>ul {
  margin-left: 0;
}

.footer .footer-menu-list dl dd li.payment>ul>li {
  display: inline-block;
  width: 20px;
  margin: 0 15px 0 0;
}

.footer .copyright {
  font-family: "adobe-garamond-pro", "ヒラギノ明朝 W3 JIS2004",
    "Hiragino Mincho W3 JIS2004", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial,
    Verdana, sans-serif;
  color: #ccc;
  font-size: 11px;
  text-align: center;
  padding: 50px 0 25px 0;
  padding-top: 18px;
  padding-bottom: 17px;
  border-top: 1px solid #d3d3d3;
  font-family: "HelveticaNeueLTPro-Md", "FP-ヒラギノ角ゴ ProN W4", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #000;
}

.footer .footer-menu-list .signup {
  text-decoration: underline black 1px;
  text-underline-offset: 6px;
}

.footer .footer-menu-list .mailmagazine {
  text-decoration: underline black 1px;
  text-underline-offset: 6px;
}


.footer-inner {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 118px;
  padding-bottom: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.footer-inner .footer-nav {
  width: 100%;
}

.footer__box-news {
  width: 30.16%;
  padding-right: 82px;
}

.footer__box-lang {
  width: 23.34%;
  position: relative;
}

.footer__box-lang-btn .language_current::after {
  display: block;
  content: "";
  width: 13px;
  height: 7px;
  right: 0;
  bottom: 3px;
  background-image: url(../img/ico_arrow_bottom.svg);
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.footer__box-lang-btn .language_current {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__box-news-title p,
.footer__box-links-title p,
.footer__box-lang-title p {
  font-family: "HelveticaNeueLTPro-Md", "FP-ヒラギノ角ゴ ProN W4", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  color: #000;
}

.footer__box-news-text p {
  font-family: "FP-ヒラギノ角ゴ ProN W4", sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 20px;
  text-align: left;
  color: #000;
  margin-top: 28px;
}

.footer__box-news-form p.error-messages{
  font-size: 11px;
  line-height: 20px;
}

.footer__box-news-form {
  margin-top: 34px;
}

.footer__box-news-form .subscribe_mail {
  width: 100%;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid #000;
  font-family: "HelveticaNeueLTPro-Roman", "FP-ヒラギノ角ゴ ProN W4", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  text-align: left;
  color: #000;
  padding: 0;
  vertical-align: bottom;
  letter-spacing: inherit;
  height: 24px !important;
}

.footer__box-news-form .subscribe_mail:focus {
  box-shadow: none;
  background-color: inherit;
}

.footer__box-news-form .subscribe {
  cursor: pointer;
  width: 100px;
  padding-bottom: 7px;
  padding-top: 10px;
  font-family: "HelveticaNeueLTPro-Md", "FP-ヒラギノ角ゴ ProN W4", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #fff;
  background-color: #000;
  border-radius: 2px;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  height: 31px;
}

.footer__box-news-annotation p {
  font-family: "FP-ヒラギノ角ゴ ProN W4", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 19px;
  text-align: left;
  color: #000;
  margin-top: 30px;
}

.footer__box-news-annotation span a {
  display: inline-block;
  position: relative;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.footer__box-news-annotation span a:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #000;
}


.footer__box-links {
  width: 46.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__box-links>* {
  width: 32.25%;
}

.footer__box-links-items {
  margin-top: 19px;
}

.footer__box-links-items a {
  font-family: "HelveticaNeueLTPro-Roman", "FP-ヒラギノ角ゴ ProN W4", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 28px;
  text-align: left;
  color: #000;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.footer__box-links-items .ico.instagram:before,
.footer__box-links-items .ico.facebook::before,
.footer__box-links-items .ico.twitter:before {
  content: "";
  display: block;
  width: 11px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  margin-right: 10px;
  margin-top: -4px;
}

.footer__box-links-items .ico.instagram:before {
  background-image: url(../img/ico_instagram.svg);
}

.footer__box-links-items .ico.facebook:before {
  background-image: url(../img/ico_facebook.svg);
}

.footer__box-links-items .ico.twitter:before {
  background-image: url(../img/ico_x.png);
}

.footer__box-lang {
  width: 23.34%;
  position: relative;
}

.footer__box-lang-btn {
  margin-top: 26px;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  color: #000;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
  position: relative;
  cursor: pointer;
  display: block;
}

.footer__box-lang-sort {
  margin-top: 7px;
  font-weight: 500;
  font-size: 11px;
  overflow: auto;
  padding-top: 7px;
  padding-bottom: 7px;
  background-color: #f4f4f5;
  border-radius: 13px;
  width: 250px;
  -webkit-box-shadow: 5px 5px 14px rgba(0, 0, 0, .08);
  box-shadow: 5px 5px 14px rgba(0, 0, 0, .08);
  margin-left: 0;
  display: none;
}

.footer__box-lang-sort.open {
  display: block;
}

.footer__box-lang-sort li {
  cursor: pointer;
  height: 40px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.footer__box-lang-sort li+li {
  border-top: 1px solid #b6b6b6;
}

.footer__box-lang-sort li a {
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1023px) {
  .footer-inner {
    width: 100%;
    padding-top: 106px;
    padding-bottom: 55px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-inner .footer-nav {
    width: 100%;
  }

  .footer_sp {
    display: block;
  }

  .footer__box-news {
    padding-left: 26px;
    padding-right: 26px;
  }

  .footer__box-links {
    width: 100%;
    display: block;
    margin-top: 32px;
  }

  .footer__box-links>* {
    width: 100%;
    border-top: 1px solid #d3d3d3;
    position: relative;
  }

  .footer__box-links>*:last-of-type {
    border-bottom: 1px solid #d3d3d3;
  }

  .footer__box-links>*::after {
    position: absolute;
    display: block;
    content: "";
    width: 13px;
    height: 7px;
    right: 26px;
    top: 27px;
    background-image: url(../img/ico_arrow_bottom.svg);
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .footer__box-news-title p,
  .footer__box-lang-title p {
    font-size: 13px;
    line-height: 15px;
  }

  .footer__box-news-text p {
    font-size: 12px;
    line-height: 22px;
    margin-top: 27px;
  }

  .footer__box-news-text p .error-messages{
    font-size: 12px;
  }

  .footer__box-news-form #subscribe_mail {
    padding: 0 0 8px 0;
  }

  .footer__box-news-form .subscribe {
    width: 104px;
    margin-top: 32px;
    font-size: 13px;
    line-height: 15px;
  }

  .footer__box-news-annotation p {
    margin-top: 32px;
  }

  .footer__box-links-title{
    cursor: pointer;
  }

  .footer__box-links-title p {
    font-size: 13px;
    line-height: 15px;
    padding-top: 23px;
    padding-bottom: 24px;
    padding-left: 26px;
    padding-right: 26px;
  }

  .footer__box-links-items {
    padding-left: 26px;
    padding-right: 26px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .25s ease-out;
    -o-transition: max-height .25s ease-out;
    transition: max-height .25s ease-out;
    margin-top: 0;
  }

  .footer__box-links-items a {
    font-weight: 500;
    font-size: 13px;
    line-height: 30px;
    width: fit-content;
  }

  .footer__box-links-items a:last-child {
    padding-bottom: 24px;
  }

  .footer__box-lang {
    width: 100%;
    display: block;
    padding-left: 26px;
    padding-right: 26px;
    position: relative;
    margin-top: 23px;
  }

  .footer__box-lang-btn {
    font-size: 13px;
    line-height: 15px;
  }

  .footer__box-lang-btn {
    margin-top: 24px;
  }

  .footer div nav ul.footer-menu-list {
    display: block;
  }

  .footer div nav ul.footer-menu-list>li {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }

  .footer div nav ul.footer-menu-list>li.w100 {
    width: 100%;
  }

  .footer div nav ul.footer-menu-list>li.sp-wide {
    width: 100%;
  }

  .footer div nav ul.footer-menu-list>li.sp-order-last {
    order: 1;
  }

  .footer div nav dd ul li a {
    line-height: inherit;
    color: #999;
  }

  .footer div nav ul.footer-menu-list>li.static ul li {
    margin-bottom: 20px;
  }

  .footer .sns {
    margin: 0 0 15px 0;
    text-align: center;
    margin-top: 42px;
  }

  .footer .sns ul li {
    margin: 0 15px 0 0;
  }

  .footer .footer-menu-list dl dd li.payment {
    padding-top: 0;
  }

  .footer .footer-menu-list dl dd li.payment>ul {
    /* text-align: center; */
    display: flex;
    justify-content: center;
  }

  .footer .footer-menu-list dl dt {
    max-width: 90%;
  }

  .footer .footer-menu-list li.w100 dl dt {
    max-width: 95%;
  }

  .footer div nav ul.footer-menu-list li.static dl dt {
    display: none;
  }

  .footer .copyright {
    padding-top: 23px;
    padding-bottom: 24px;
    border-top: 1px solid #d3d3d3;
    font-size: 13px;
    line-height: 15px;
  }

  .footer-padding-area {
    padding-top: 0;
  }
}

.footer .sns ul li a span.footer-icon-twitter {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/assets/front/img/snsicon/twitter_gray.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: text-top;
}

.footer .sns ul li a span.footer-icon-facebook {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/assets/front/img/snsicon/facebook_gray.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: text-top;
}

.footer .sns ul li a span.footer-icon-instagram {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/assets/front/img/snsicon/instagram_gray.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: text-top;
}

/* PC・SP 出し分け */
.footer div nav ul.footer-menu-list .pc-only {
  display: flex;
}

.footer div nav ul.footer-menu-list .sp-only {
  display: none;
}

.footer .sns.pc-only {
  display: flex;
}

.footer .sns.sp-only {
  display: none;
}

@media screen and (max-width: 869px) {
  .footer div nav ul.footer-menu-list .pc-only {
    display: none;
  }

  .footer div nav ul.footer-menu-list .sp-only {
    display: flex;
  }

  .footer .sns.pc-only {
    display: none;
  }

  .footer .sns.sp-only {
    display: flex;
  }
}