@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: source-han-sans-japanese, "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #070203;
  opacity: 0;
}
html.wf-active {
  opacity: 1;
}

body.sub {
  background: #F3F3F2;
}

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.row {
  overflow: hidden;
  *zoom: 1;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}

[data-trigger] {
  position: relative;
  top: 100px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0;
}
[data-trigger].visible {
  top: 0;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .opa {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .opa:hover {
    opacity: 0.3;
  }
}

.footer__upper {
  background: #fff;
  padding: 115px 0 120px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer__upper {
    padding: 72px 0;
  }
}
.footer__upper p {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: nitti, monospace;
  text-transform: uppercase;
}
.footer__upper h2 {
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  margin-top: 36px;
}
@media only screen and (max-width: 767px) {
  .footer__upper h2 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.428571429;
    margin-top: 28px;
  }
}
.footer__upper--btn {
  margin-top: 37px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer__upper--btn {
    margin-top: 28px;
  }
}
.footer__inner {
  background: #EEEEED;
  padding: 24px 50px 32px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: start;
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    padding: 48px 14px 16px;
  }
}
.footer__inner > p {
  margin-top: 94px;
  font-family: nitti, monospace;
  font-size: 12px;
  font-size: 1.2rem;
  color: #000000;
  opacity: 0.25;
  font-weight: 500;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .footer__inner > p {
    margin-top: 50px;
    line-height: 1.25;
  }
}
.footer__inner > div:nth-child(1) {
  width: calc(100% - 282px);
}
@media only screen and (max-width: 767px) {
  .footer__inner > div:nth-child(1) {
    width: 100%;
  }
}
.footer__inner > div:nth-child(1) > div {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 960px;
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  .footer__inner > div:nth-child(1) > div ul {
    margin-right: 40px;
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__inner > div:nth-child(1) > div ul {
    width: 100%;
    margin-top: 48px;
  }
  .footer__inner > div:nth-child(1) > div ul:nth-child(1) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .footer__inner > div:nth-child(1) > div ul:nth-child(3) {
    width: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .footer__inner > div:nth-child(1) > div ul:nth-child(3) {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .footer__inner > div:nth-child(1) > div ul:nth-child(4) {
    width: 230px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .footer__inner > div:nth-child(1) > div ul:nth-child(4) {
    width: 100%;
  }
}
.footer__inner > div:nth-child(1) > div ul > li {
  font-family: nitti, monospace;
  font-size: 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.footer__inner > div:nth-child(1) > div ul > li > span {
  display: inline-block;
  margin-bottom: 8px;
}
.footer__inner > div:nth-child(1) > div ul > li > a {
  font-weight: 300;
  line-height: 2;
}
.footer__inner > div:nth-child(1) > div ul > li > a[href="javascript:void(0);"] {
  display: block;
  position: relative;
  padding-right: 14px;
  pointer-events: none;
}
.footer__inner > div:nth-child(1) > div ul > li > a[href="javascript:void(0);"].open:before {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
.footer__inner > div:nth-child(1) > div ul > li ol {
  padding-bottom: 2px;
}
.footer__inner > div:nth-child(1) > div ul > li ol li {
  line-height: 1.5;
}
.footer__inner > div:nth-child(2) {
  width: 282px;
}
@media only screen and (max-width: 767px) {
  .footer__inner > div:nth-child(2) {
    width: auto;
    position: absolute;
    right: 20px;
  }
}
.footer__inner > div:nth-child(2) a {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: nitti, monospace;
  color: #000000;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 4px;
}
@media only screen and (min-width: 768px) {
  .footer__inner > div:nth-child(2) a:hover:before {
    width: 0%;
  }
  .footer__inner > div:nth-child(2) a:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #000;
    -webkit-transition: width 0.2s;
    -moz-transition: width 0.2s;
    -o-transition: width 0.2s;
    transition: width 0.2s;
  }
}
.footer__inner > div:nth-child(2) a span {
  position: relative;
  z-index: 1;
}
.footer__inner > div:nth-child(2) a span b {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  position: relative;
}
.footer__inner > div:nth-child(2) a span b:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: width 0.2s;
  -moz-transition: width 0.2s;
  -o-transition: width 0.2s;
  transition: width 0.2s;
}

.header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 15px;
  }
}
.header.on {
  background: #fff;
}
.header.open {
  background: transparent !important;
}
.header.open .header__tnf {
  opacity: 0;
  pointer-events: none;
}
.header__tnf {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .header__tnf {
    display: none !important;
  }
}
.header__tnf img {
  height: 20px;
  width: auto;
  display: block;
}
.header__brand a {
  display: block;
}
.header__brand a img {
  height: 20px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .header__brand a img {
    height: 18px;
  }
}
.header__toggle {
  width: 20px;
  height: 16px;
}
.header__toggle a {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}
.header__toggle a.on span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header__toggle a.on span:nth-child(2) {
  opacity: 0;
}
.header__toggle a.on span:nth-child(3) {
  bottom: 7px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header__toggle a span {
  background: #070203;
  position: absolute;
  left: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__toggle a span:nth-child(1) {
  top: 0;
}
.header__toggle a span:nth-child(2) {
  top: 0;
  bottom: 0;
}
.header__toggle a span:nth-child(3) {
  bottom: 0;
}
.header__mega {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: none;
}
@media only screen and (max-width: 767px) {
  .header__mega {
    overflow: scroll;
  }
}
.header__mega.show:before {
  -webkit-transition: top 0.5s;
  -moz-transition: top 0.5s;
  -o-transition: top 0.5s;
  transition: top 0.5s;
  top: 0;
}
.header__mega.show .header__mega__tnf {
  opacity: 1;
  -webkit-transition-delay: 0.76s;
  -moz-transition-delay: 0.76s;
  -o-transition-delay: 0.76s;
  transition-delay: 0.76s;
}
.header__mega.show .header__mega--nav > div > ul {
  opacity: 1;
  top: 0;
}
.header__mega.show .header__mega--nav > div > ul:nth-child(1) {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.header__mega.show .header__mega--nav > div > ul:nth-child(2) {
  -webkit-transition-delay: 0.38s;
  -moz-transition-delay: 0.38s;
  -o-transition-delay: 0.38s;
  transition-delay: 0.38s;
}
.header__mega.show .header__mega--nav > div > ul:nth-child(3) {
  -webkit-transition-delay: 0.46s;
  -moz-transition-delay: 0.46s;
  -o-transition-delay: 0.46s;
  transition-delay: 0.46s;
}
.header__mega.show .header__mega--nav > div > ul:nth-child(4) {
  -webkit-transition-delay: 0.64s;
  -moz-transition-delay: 0.64s;
  -o-transition-delay: 0.64s;
  transition-delay: 0.64s;
}
.header__mega:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 322px;
  z-index: 7;
  background: #fff;
  top: -332px;
}
@media only screen and (min-width: 768px) {
  .header__mega:before {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
  }
}
@media only screen and (max-width: 767px) {
  .header__mega:before {
    height: 855px;
  }
}
.header__mega__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 8;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 50px;
}
@media only screen and (max-width: 767px) {
  .header__mega__inner {
    padding: 0;
  }
}
.header__mega--logo-blank {
  width: 240px;
}
@media only screen and (max-width: 767px) {
  .header__mega--logo-blank {
    width: 100%;
  }
}
.header__mega--nav {
  width: calc(100% - 240px);
  margin-top: 6px;
}
@media only screen and (max-width: 767px) {
  .header__mega--nav {
    width: 100%;
    margin-top: 0;
    padding: 80px 15px;
  }
}
.header__mega--nav > div {
  max-width: 840px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .header__mega--nav > div {
    width: 100%;
  }
}
.header__mega--nav > div > ul {
  max-width: 210px;
  -webkit-transition: top 0.3s, opacity 0.3s;
  -moz-transition: top 0.3s, opacity 0.3s;
  -o-transition: top 0.3s, opacity 0.3s;
  transition: top 0.3s, opacity 0.3s;
  position: relative;
  opacity: 0;
  top: -40px;
}
@media only screen and (max-width: 767px) {
  .header__mega--nav > div > ul {
    width: 100%;
    max-width: 260px;
    margin-top: 48px;
  }
  .header__mega--nav > div > ul:nth-child(1) {
    margin-top: 0;
  }
}
.header__mega--nav > div > ul:nth-child(3) {
  width: 160px;
}
@media only screen and (max-width: 767px) {
  .header__mega--nav > div > ul:nth-child(3) {
    width: 200px;
  }
}
.header__mega--nav > div > ul > li {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: nitti, monospace;
  text-transform: uppercase;
}
.header__mega--nav > div > ul > ol {
  margin-top: 10px;
}
.header__mega--nav > div > ul > ol li {
  padding: 2px 0;
}
.header__mega--nav > div > ul > ol li > ol {
  display: none;
}
.header__mega--nav > div > ul > ol li > a {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  font-family: nimbus-sans, sans-serif;
  font-weight: 500;
  padding: 4px 0;
}
.header__mega--nav > div > ul > ol li > small {
  font-size: 11px;
  font-size: 1.1rem;
  font-family: source-han-sans-japanese, "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1.818181818;
  display: block;
}
@media only screen and (max-width: 767px) {
  .header__mega--nav > div > ul > ol li > small {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.header__mega--nav > div > ul > ol li > small a[href="javascript:void(0);"] {
  display: block;
  position: relative;
  padding-right: 14px;
}
.header__mega--nav > div > ul > ol li > small a[href="javascript:void(0);"].open:before {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
.header__mega--nav > div > ul > ol li > small a[href="javascript:void(0);"]:before {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  right: 0;
  top: -2px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
}
.header__mega__tnf {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 282px;
  z-index: 7;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .header__mega__tnf {
    display: none;
  }
}
.header__mega__tnf img {
  display: block;
  height: 20px;
  width: auto;
}
.header__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 6;
}

.page-404 {
  height: 602px;
  position: relative;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .page-404 {
    height: 400px;
  }
}
.page-404 div {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.page-404 div p {
  font-size: 14px;
  font-size: 1.4rem;
}
.page-404 div a {
  display: inline-block;
  text-decoration: underline;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 16px;
}

.about-page__inner {
  max-width: 1300px;
  padding: 0 50px;
  padding-top: 140px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .about-page__inner {
    padding: 0 15px;
    padding-top: 64px;
  }
}
.about-page__row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-page__content {
  width: calc(50% - 8px);
  max-width: 518.5px;
}
@media only screen and (max-width: 767px) {
  .about-page__content {
    width: 100%;
  }
}
.about-page__content__intro {
  display: none;
}
@media only screen and (max-width: 767px) {
  .about-page__content__intro {
    display: block;
  }
  .about-page__content__intro > div video {
    width: 100%;
  }
  .about-page__content__intro > div video img {
    display: block;
  }
  .about-page__content__intro > div video img:nth-child(2), .about-page__content__intro > div video img:nth-child(3) {
    margin-top: 16px;
  }
}
.about-page__content__inner > h1 {
  font-family: nitti, monospace;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .about-page__content__inner > h1 {
    padding-top: 24px;
  }
}
.about-page__content__inner > h2 {
  margin-top: 36px;
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1.142857143;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .about-page__content__inner > h2 {
    margin-top: 24px;
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.428571429;
  }
}
.about-page__content__inner--tabs {
  margin-top: 55px;
  border-top: 1px solid rgba(0, 0, 0, 0.24);
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
}
@media only screen and (max-width: 767px) {
  .about-page__content__inner--tabs {
    margin-top: 28px;
  }
}
.about-page__content__inner--tabs ul {
  font-size: 0;
}
.about-page__content__inner--tabs ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 35px;
  padding: 16px 0;
}
@media only screen and (max-width: 767px) {
  .about-page__content__inner--tabs ul li {
    margin-right: 14px;
  }
  .about-page__content__inner--tabs ul li:first-child {
    padding-left: 12px;
  }
}
.about-page__content__inner--tabs ul li:last-child {
  margin-right: 0;
}
.about-page__content__inner--tabs ul li a {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: nitti, monospace;
  display: inline-block;
  opacity: 0.3;
  text-transform: uppercase;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 767px) {
  .about-page__content__inner--tabs ul li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.about-page__content__inner--tabs ul li a.current {
  opacity: 1;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .about-page__content__inner--tabs ul li a:hover {
    opacity: 1;
  }
}
.about-page__content__inner--tab-content {
  padding-top: 90px;
}
@media only screen and (max-width: 767px) {
  .about-page__content__inner--tab-content {
    padding-top: 25px;
  }
}
.about-page__content__inner--tab-content > div {
  margin-top: 240px;
}
@media only screen and (max-width: 767px) {
  .about-page__content__inner--tab-content > div {
    margin-top: 120px;
  }
  .about-page__content__inner--tab-content > div:nth-child(1) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .about-page__content__inner--tab-content > div:nth-child(2) {
    margin-top: 0;
  }
}
.about-page__content__inner--tab-content > div > img,
.about-page__content__inner--tab-content > div video {
  width: 100%;
  display: block;
}
.about-page__content__inner--tab-content > div > small {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: nitti, monospace;
  text-transform: uppercase;
}
.about-page__content__inner--tab-content > div h3 strong,
.about-page__content__inner--tab-content > div h3 span {
  display: block;
}
.about-page__content__inner--tab-content > div h3 strong {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.1;
  font-family: nimbus-sans, sans-serif;
  margin-top: 24px;
}
.about-page__content__inner--tab-content > div h3 span {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 4px;
  line-height: 1.75;
}
.about-page__content__inner--tab-content > div > p {
  margin-top: 24px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
}
.about-page__content__inner--tab-content > div > p a {
  text-decoration: underline;
}
.about-page__content__inner--tab-content > div > hr {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  margin-top: 24px;
}
.about-page__content__inner--tab-content > div > div {
  margin-top: 24px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  .about-page__content__inner--tab-content > div > div {
    word-break: break-all;
  }
}
.about-page__content__inner--tab-content > div > div a {
  text-decoration: underline;
}
.about-page__fixcol {
  max-width: calc(50% - 8px);
}
@media only screen and (max-width: 767px) {
  .about-page__fixcol {
    display: none;
  }
}
.about-page__fixcol video {
  display: block;
  max-width: 100%;
  width: 100%;
  max-height: calc(100vh - 120px);
}
.about-page__fixcol .image03 {
  position: relative;
}
.about-page__fixcol .image03 img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .about-page__fixcol .image03 img {
    max-height: 554px;
  }
}
.about-page__fixcol .image03 img:nth-child(1) {
  display: block;
  position: relative;
}

.all-products {
  padding: 0 50px;
  padding-top: 180px;
}
@media only screen and (max-width: 767px) {
  .all-products {
    padding: 0 15px;
    padding-top: 120px;
  }
}
.all-products > div:nth-child(1) {
  text-align: center;
}
.all-products > div:nth-child(1) h1 {
  font-size: 56px;
  font-size: 5.6rem;
  text-transform: uppercase;
  font-family: nimbus-sans, sans-serif;
}
@media only screen and (max-width: 767px) {
  .all-products > div:nth-child(1) h1 {
    font-size: 36px;
    font-size: 3.6rem;
    font-family: nimbus-sans, sans-serif;
  }
}
.all-products > div:nth-child(1) p {
  font-size: 11px;
  font-size: 1.1rem;
  margin-top: 34px;
  line-height: 1.818181818;
}
@media only screen and (max-width: 767px) {
  .all-products > div:nth-child(1) p {
    margin-top: 12px;
  }
}
.all-products > div:nth-child(3) {
  text-align: right;
  position: relative;
  margin-top: 16px;
}
.all-products > div:nth-child(3) > a {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-family: nitti, monospace;
}
.all-products > div:nth-child(3) > a.open span:before {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
.all-products > div:nth-child(3) > a span {
  position: relative;
  display: inline-block;
  padding-right: 14px;
}
.all-products > div:nth-child(3) > a span:before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  right: 0;
  top: -3px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
}
@media only screen and (max-width: 767px) {
  .all-products > div:nth-child(3) > a span:before {
    width: 4px;
    height: 4px;
    top: -2px;
  }
}
.all-products > div:nth-child(3) ul {
  display: none;
  width: 153px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 2;
  background: #fff;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.all-products > div:nth-child(3) ul li {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: nitti, monospace;
  text-transform: uppercase;
  display: block;
  text-align: right;
  padding: 4px 0;
}
.all-products > div:nth-child(3) ul li a {
  opacity: 0.25;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media only screen and (min-width: 768px) {
  .all-products > div:nth-child(3) ul li a:hover {
    opacity: 1;
  }
}
.all-products > div:nth-child(3) ul li:nth-child(1) {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: source-han-sans-japanese, "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.all-products hr {
  display: block;
  box-shadow: none;
  border: none;
  width: 100%;
  height: 1px;
  background: #000000;
  opacity: 0.24;
  margin: 0;
  padding: 0;
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .all-products hr {
    margin-top: 32px;
  }
}

.breadcrumb {
  padding: 76px 50px 0;
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding-top: 64px;
    padding-left: 15px;
    padding-right: 0;
  }
}
.breadcrumb ul {
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .breadcrumb ul {
    overflow: auto;
    white-space: nowrap;
  }
}
.breadcrumb ul li {
  display: inline-block;
  vertical-align: middle;
  padding-right: 20px;
  position: relative;
}
.breadcrumb ul li:before {
  content: "/";
  position: absolute;
  right: 8px;
  font-size: 11px;
  top: -1px;
  opacity: 0.5;
}
.breadcrumb ul li:last-child {
  padding-right: 0;
}
.breadcrumb ul li > a,
.breadcrumb ul li > span {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: nitti, monospace;
  text-transform: uppercase;
}
.breadcrumb ul li > a {
  opacity: 0.5;
}
@media only screen and (min-width: 768px) {
  .breadcrumb ul li > a {
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .breadcrumb ul li > a:hover {
    opacity: 1;
  }
}
.btn a,
.btn em {
  display: inline-block;
  position: relative;
  border: 1px solid #000;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .btn a:hover:before,
  .btn em:hover:before {
    top: 0;
  }
  .btn a:hover span,
  .btn em:hover span {
    -webkit-transition-delay: 0.15s;
    -moz-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s;
    color: #fff;
  }
}
.btn a:before,
.btn em:before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition: top 0.2s;
  -moz-transition: top 0.2s;
  -o-transition: top 0.2s;
  transition: top 0.2s;
}
.btn a span,
.btn em span {
  font-family: nitti, monospace;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  color: #000;
  line-height: 1.5;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  padding: 5px 12px;
}
.btn-white a,
.btn-white em {
  display: inline-block;
  position: relative;
  border: 1px solid #fff;
  overflow: hidden;
  background: #fff;
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media only screen and (min-width: 768px) {
  .btn-white a:hover,
  .btn-white em:hover {
    border-color: #000;
  }
  .btn-white a:hover:before,
  .btn-white em:hover:before {
    top: 0;
  }
  .btn-white a:hover span,
  .btn-white em:hover span {
    -webkit-transition-delay: 0.15s;
    -moz-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s;
    color: #fff;
  }
}
.btn-white a:before,
.btn-white em:before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition: top 0.2s;
  -moz-transition: top 0.2s;
  -o-transition: top 0.2s;
  transition: top 0.2s;
}
.btn-white a span,
.btn-white em span {
  font-family: nitti, monospace;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  color: #000;
  line-height: 1.5;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  padding: 5px 12px;
}

.category-intro {
  background: #fff;
  padding: 72px 0;
}
@media only screen and (max-width: 767px) {
  .category-intro {
    padding: 48px 0;
  }
}
.category-intro__inner {
  padding: 0 50px;
  max-width: 1328px;
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .category-intro__inner {
    padding: 0 16px;
  }
}
.category-intro__inner.solo {
  display: block;
  text-align: center;
}
.category-intro__inner.solo > div {
  display: inline-block;
  max-width: 535px;
}
.category-intro__inner > div {
  width: 49.3690852%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .category-intro__inner > div {
    width: 100%;
    margin-top: 72px;
  }
  .category-intro__inner > div:nth-child(1) {
    margin-top: 0;
  }
}
.category-intro__inner > div h2 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.428571429;
}
@media only screen and (max-width: 767px) {
  .category-intro__inner > div h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}
.category-intro__inner > div p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  margin: auto;
  margin-top: 35px;
  max-width: 535px;
}
@media only screen and (max-width: 767px) {
  .category-intro__inner > div p {
    margin-top: 24px;
  }
}
.category-intro__inner > div p small {
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
  margin-top: 4px;
}
.category-intro__inner > div p small a {
  text-decoration: underline;
}

.category-main {
  height: 100vh;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .category-main {
    height: 453px;
  }
}
.category-main .icon-bnr {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  right: 50px;
}
@media only screen and (max-width: 767px) {
  .category-main .icon-bnr {
    right: 0;
    bottom: 16px;
  }
}
.category-main__images {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.category-main__images > div {
  height: 100%;
}
.category-main__images > div > div {
  height: 100%;
}
.category-main__images > div > div > div {
  height: 100%;
}
.category-main__images .swiper-slide {
  height: 100%;
}
.category-main__images .swiper-slide__image {
  height: 100%;
  background-size: cover;
  background-position: center;
}
.category-main__images .swiper-slide__image.mountain {
  background-image: url(../images/top/20240930/main01.jpg);
}
@media only screen and (max-width: 767px) {
  .category-main__images .swiper-slide__image.mountain {
    background-image: url(../images/top/20240930/main01_sp.jpg);
  }
}
.category-main__images .swiper-slide__image.athletic {
  background-image: url(../images/top/20240930/main02.jpg);
}
@media only screen and (max-width: 767px) {
  .category-main__images .swiper-slide__image.athletic {
    background-image: url(../images/top/20240930/main02.jpg);
  }
}
.category-main__images .swiper-slide__image.equipment {
  background-image: url(../images/top/20240930/main03.jpg);
}
@media only screen and (max-width: 767px) {
  .category-main__images .swiper-slide__image.equipment {
    background-image: url(../images/top/20240930/main03.jpg);
  }
}
.category-main__box {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.category-main__box a {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: nitti, monospace;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  display: block;
  padding: 5px 12px;
  width: 178px;
  margin: auto;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .category-main__box a {
    margin-top: 32px;
  }
}
@media only screen and (min-width: 768px) {
  .category-main__box a {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0);
  }
}
.category-main__box h1 em,
.category-main__box h1 strong,
.category-main__box h1 span {
  display: block;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.category-main__box h1 em {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: nitti, monospace;
}
@media only screen and (max-width: 767px) {
  .category-main__box h1 em {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.category-main__box h1 strong {
  font-size: 100px;
  font-size: 10rem;
  line-height: 1;
  margin-top: 24px;
  font-family: nimbus-sans, sans-serif;
}
@media only screen and (max-width: 767px) {
  .category-main__box h1 strong {
    font-size: 56px;
    font-size: 5.6rem;
    margin-top: 16px;
  }
}
.category-main__box h1 span {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .category-main__box h1 span {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 20px;
  }
}

.each-bnrs {
  padding: 48px;
}
@media only screen and (max-width: 767px) {
  .each-bnrs {
    padding: 16px 14px 0px;
  }
}
.each-bnrs__inner {
  max-width: 1300px;
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  top: 0 !important;
  opacity: 1 !important;
}
.each-bnrs__inner.visible > a {
  top: 0;
  opacity: 1;
}
.each-bnrs__inner.visible > a:nth-child(2) {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.each-bnrs__inner.visible > a:nth-child(3) {
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.each-bnrs__inner > a {
  width: 32.4921136%;
  height: 555px;
  position: relative;
  background: #000;
  overflow: hidden;
  top: 80px;
  -webkit-transition: top 0.8s, opacity 0.8s;
  -moz-transition: top 0.8s, opacity 0.8s;
  -o-transition: top 0.8s, opacity 0.8s;
  transition: top 0.8s, opacity 0.8s;
  opacity: 0;
}
@media only screen and (max-width: 1000px) {
  .each-bnrs__inner > a {
    height: 425px;
  }
}
@media only screen and (max-width: 767px) {
  .each-bnrs__inner > a {
    width: 100%;
    margin-top: 16px;
  }
  .each-bnrs__inner > a:nth-child(1) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .each-bnrs__inner > a:hover figure > div {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  .each-bnrs__inner > a:hover figure figcaption .btn em {
    border-color: #000;
  }
  .each-bnrs__inner > a:hover figure figcaption .btn em:before {
    top: 0;
  }
  .each-bnrs__inner > a:hover figure figcaption .btn em span {
    color: #fff;
  }
}
.each-bnrs__inner > a figure {
  width: 100%;
  height: 100%;
}
.each-bnrs__inner > a figure > div {
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
}
.each-bnrs__inner > a figure figcaption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
}
.each-bnrs__inner > a figure figcaption > small {
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;
  text-align: center;
  font-family: nitti, monospace;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 1000px) {
  .each-bnrs__inner > a figure figcaption > small {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.each-bnrs__inner > a figure figcaption .btn {
  position: absolute;
  left: 0;
  bottom: 34px;
  width: 100%;
  text-align: center;
}
.each-bnrs__inner > a figure figcaption .btn em {
  border: 1px solid #fff;
}
.each-bnrs__inner > a figure figcaption .btn em span {
  color: #000;
}
.each-bnrs__inner > a figure figcaption > h2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.each-bnrs__inner > a figure figcaption > h2 span {
  font-size: 64px;
  font-size: 6.4rem;
  font-family: nimbus-sans, sans-serif;
  display: block;
  text-transform: uppercase;
}
@media only screen and (max-width: 1000px) {
  .each-bnrs__inner > a figure figcaption > h2 span {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .each-bnrs__inner > a figure figcaption > h2 span {
    font-size: 48px;
    font-size: 4.8rem;
  }
}
.each-bnrs__inner > a figure figcaption > h2 small {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 8px;
}
@media only screen and (max-width: 1000px) {
  .each-bnrs__inner > a figure figcaption > h2 small {
    font-size: 10px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .each-bnrs__inner > a figure figcaption > h2 small {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.ex-link-btn {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: -0.06em;
  text-align: center;
  margin-top: 24px;
  font-family: nitti, monospace;
}
@media only screen and (max-width: 767px) {
  .ex-link-btn {
    font-size: 10px;
    font-size: 1rem;
  }
}
.ex-link-btn a {
  background: #fff;
  display: block;
  width: 211px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media only screen and (min-width: 768px) {
  .ex-link-btn a {
    -webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
  }
  .ex-link-btn a:hover {
    -webkit-box-shadow: 0 0 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 0 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.16);
  }
}
@media only screen and (max-width: 767px) {
  .ex-link-btn a {
    width: 165px;
  }
}
.ex-link-btn a span {
  display: block;
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .ex-link-btn a span {
    padding: 12px 0;
  }
}
.ex-link-btn__absolute {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .ex-link-btn__absolute {
    bottom: 4px;
    left: -8px;
  }
}
.ex-link-btn__absolute02 {
  position: absolute;
  top: 16px;
  left: 32px;
  z-index: 3;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .ex-link-btn__absolute02 {
    left: 8px;
  }
}

.icon-bnr {
  text-align: center;
}
.icon-bnr a {
  display: block;
  background: #fff;
  width: 316px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
  font-family: nimbus-sans, sans-serif;
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .icon-bnr a {
    -webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
  }
  .icon-bnr a:hover {
    -webkit-box-shadow: 0 0 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 0 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.16);
  }
}
@media only screen and (max-width: 767px) {
  .icon-bnr a {
    padding: 8px;
    width: 158px;
  }
}
.icon-bnr a strong,
.icon-bnr a small {
  display: block;
}
.icon-bnr a strong {
  font-size: 24px;
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .icon-bnr a strong {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.icon-bnr a small {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: nitti, monospace;
  margin-top: 4px;
}
@media only screen and (max-width: 767px) {
  .icon-bnr a small {
    margin-top: 2px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.icon-bnr.icon-bnr--small a {
  width: 211px;
  padding: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media only screen and (min-width: 768px) {
  .icon-bnr.icon-bnr--small a:hover {
    -webkit-box-shadow: 0 0 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 0 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.16);
  }
}
@media only screen and (max-width: 767px) {
  .icon-bnr.icon-bnr--small a {
    width: 134px;
    padding: 8px;
  }
}
.icon-bnr.icon-bnr--small a strong {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .icon-bnr.icon-bnr--small a strong {
    font-size: 10px;
    font-size: 1rem;
  }
}
.icon-bnr.icon-bnr--small a small {
  font-size: 13px;
  font-size: 1.3rem;
  margin-top: 2px;
}
@media only screen and (max-width: 767px) {
  .icon-bnr.icon-bnr--small a small {
    font-size: 8px;
    font-size: 0.8rem;
  }
}

.intro {
  background: #fff;
  padding: 50px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .intro {
    padding: 24px 13px 48px;
  }
}
.intro__inner {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
}
.intro__inner > div:nth-child(1) h2 span {
  display: block;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
  left: -4px;
}
@media only screen and (max-width: 767px) {
  .intro__inner > div:nth-child(1) h2 span {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.intro__inner > div:nth-child(1) h2 img {
  display: block;
  height: 74px;
  width: auto;
  margin-top: 22px;
}
@media only screen and (max-width: 767px) {
  .intro__inner > div:nth-child(1) h2 img {
    height: 48px;
    margin-top: 14px;
  }
}
.intro__inner > div:nth-child(1) strong {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.428571429;
}
@media only screen and (min-width: 768px) {
  .intro__inner > div:nth-child(1) strong {
    top: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .intro__inner > div:nth-child(1) strong {
    position: relative;
    font-size: 20px;
    font-size: 2rem;
    margin-top: 72px;
    display: block;
  }
}
.intro__inner > div:nth-child(2) {
  max-width: 420px;
}
@media only screen and (max-width: 767px) {
  .intro__inner > div:nth-child(2) {
    width: 100%;
    margin-top: 32px;
  }
}
.intro__inner > div:nth-child(2) p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.intro__inner > div:nth-child(2) .btn {
  margin-top: 48px;
  top: 0 !important;
}
@media only screen and (max-width: 767px) {
  .intro__inner > div:nth-child(2) .btn {
    margin-top: 32px;
  }
}

.link a,
.link em {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: nitti, monospace;
  display: inline-block;
  position: relative;
}
.link a span,
.link em span {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  text-transform: uppercase;
}
.link a span:before,
.link em span:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  background: #000;
}
.link a:nth-child(4) {
  margin-top: 24px;
}
@media only screen and (min-width: 768px) {
  .link a:nth-child(4) {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .link a:nth-child(4):hover {
    opacity: 0.7;
  }
}
.link a:nth-child(4) span:before {
  content: none;
}

.mainvisual {
  height: 100vh;
  position: relative;
  min-height: 650px;
}
@media only screen and (max-width: 767px) {
  .mainvisual {
    min-height: 0;
    height: 540px;
  }
}
.mainvisual .icon-bnr {
  position: absolute;
  z-index: 1;
  top: 84px;
  right: 50px;
}
@media only screen and (max-width: 767px) {
  .mainvisual .icon-bnr {
    right: 0;
    top: 64px;
  }
}
.mainvisual__slide01 {
  background-image: url(../images/top/20240930/main01.jpg);
}
@media only screen and (max-width: 767px) {
  .mainvisual__slide01 {
    background-image: url(../images/top/20240930/main01_sp.jpg);
  }
}
.mainvisual__slide02 {
  background-image: url(../images/top/20240930/main02.jpg);
}
@media only screen and (max-width: 767px) {
  .mainvisual__slide02 {
    background-image: url(../images/top/20240930/main02_sp.jpg);
  }
}
.mainvisual__slide03 {
  background-image: url(../images/top/20240930/main03.jpg);
}
@media only screen and (max-width: 767px) {
  .mainvisual__slide03 {
    background-image: url(../images/top/20240930/main03_sp.jpg);
  }
}
.mainvisual .swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.mainvisual .swiper-slide {
  height: 100%;
}
.mainvisual .swiper-slide__image {
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.mainvisual .swiper-progress-bar {
  position: absolute;
  bottom: 24px;
  width: 100%;
  padding: 0 50px;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .mainvisual .swiper-progress-bar {
    padding: 0 16px;
    bottom: 8px;
  }
}
.mainvisual .swiper-progress-bar > span {
  display: inline-block;
  width: 32.4921136%;
  height: 2px;
  background: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
@media only screen and (max-width: 767px) {
  .mainvisual .swiper-progress-bar > span {
    height: 3px;
    margin: 0 !important;
  }
}
.mainvisual .swiper-progress-bar > span > span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  width: 0;
}
.mainvisual .swiper-progress-bar > span > span.on {
  -webkit-transition: width 8s linear;
  -moz-transition: width 8s linear;
  -o-transition: width 8s linear;
  transition: width 8s linear;
  width: 100%;
}
.mainvisual__box {
  position: absolute;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  pointer-events: none;
  -webkit-transition: top 0.5s, opacity 0.5s;
  -moz-transition: top 0.5s, opacity 0.5s;
  -o-transition: top 0.5s, opacity 0.5s;
  transition: top 0.5s, opacity 0.5s;
  z-index: 0;
  max-width: 540px;
  bottom: 76px;
}
@media only screen and (max-width: 767px) {
  .mainvisual__box {
    padding: 0 14px;
    width: 100%;
    bottom: 63px;
  }
}
.mainvisual__box.on {
  pointer-events: auto;
  -webkit-transition: top 0.4s, opacity 0.4s;
  -moz-transition: top 0.4s, opacity 0.4s;
  -o-transition: top 0.4s, opacity 0.4s;
  transition: top 0.4s, opacity 0.4s;
  z-index: 1;
}
.mainvisual__box.on > small > span {
  -webkit-transition-delay: 0.23s;
  -moz-transition-delay: 0.23s;
  -o-transition-delay: 0.23s;
  transition-delay: 0.23s;
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  -webkit-transition: -webkit-transform 0.8s, opacity 0.8s;
  -moz-transition: -moz-transform 0.8s, opacity 0.8s;
  -o-transition: -o-transform 0.8s, opacity 0.8s;
  transition: transform 0.8s, opacity 0.8s;
}
.mainvisual__box.on h2 > span:nth-child(1) span {
  -webkit-transition-delay: 0.06s;
  -moz-transition-delay: 0.06s;
  -o-transition-delay: 0.06s;
  transition-delay: 0.06s;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.mainvisual__box.on h2 > span:nth-child(3) span {
  -webkit-transition-delay: 0.12s;
  -moz-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.mainvisual__box.on h2 > span span {
  -webkit-transition: -webkit-transform 0.8s;
  -moz-transition: -moz-transform 0.8s;
  -o-transition: -o-transform 0.8s;
  transition: transform 0.8s;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.mainvisual__box.on > p > span span {
  -webkit-transition-delay: 0.22s;
  -moz-transition-delay: 0.22s;
  -o-transition-delay: 0.22s;
  transition-delay: 0.22s;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.mainvisual__box.on > p > small span {
  -webkit-transition-delay: 0.28s;
  -moz-transition-delay: 0.28s;
  -o-transition-delay: 0.28s;
  transition-delay: 0.28s;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.mainvisual__box.on .mainvisual__box--link {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  opacity: 1;
}
.mainvisual__box > small {
  font-family: nitti, monospace;
  font-size: 20px;
  font-size: 2rem;
  display: block;
  overflow: hidden;
  line-height: 1.142857143;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .mainvisual__box > small {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.mainvisual__box > small > span {
  transform: translateX(20%);
  display: inline-block;
  opacity: 0;
}
.mainvisual__box h2 {
  margin-top: 0px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .mainvisual__box h2 {
    margin-top: 20px;
  }
}
.mainvisual__box h2 > span {
  overflow: hidden;
  display: inline-block;
  font-size: 64px;
  font-size: 6.4rem;
  line-height: 1.17;
  letter-spacing: -0.02em;
  font-weight: 180;
  font-family: nimbus-sans, sans-serif;
}
.mainvisual__box h2 > span:nth-child(3) {
  margin-top: -10px;
}
@media only screen and (max-width: 767px) {
  .mainvisual__box h2 > span {
    font-size: 48px;
    font-size: 4.8rem;
  }
}
.mainvisual__box h2 > span > span {
  transform: translateY(100%);
  display: block;
}
.mainvisual__box--link {
  margin-top: 30px;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .mainvisual__box--link {
    margin-top: 20px;
  }
}

.product-detail {
  padding-top: 36px;
}
@media only screen and (max-width: 767px) {
  .product-detail {
    padding-top: 16px;
  }
}
.product-detail__inner {
  max-width: 1368px;
  margin: auto;
  padding: 0 50px;
}
@media only screen and (max-width: 767px) {
  .product-detail__inner {
    padding: 0;
  }
}
.product-detail__row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
}
.product-detail__images {
  width: calc(90% - 412px);
  padding: 0 16px;
  position: relative;
}
.product-detail__images .icon-bnr {
  position: absolute;
  top: 16px;
  left: 32px;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .product-detail__images .icon-bnr {
    left: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .product-detail__images {
    width: 100%;
    padding: 0;
    width: 100%;
  }
}
.product-detail__images .swiper-button-next,
.product-detail__images .swiper-button-prev {
  height: 18px;
  width: 8px;
  background-size: 100% 100%;
  background-position: center;
}
.product-detail__images .swiper-button-next:after,
.product-detail__images .swiper-button-prev:after {
  content: none;
}
.product-detail__images .swiper-button-prev {
  left: -7px;
  background-image: url(../images/icon/prev_arrow.svg);
}
@media only screen and (max-width: 767px) {
  .product-detail__images .swiper-button-prev {
    left: 15px;
  }
}
.product-detail__images .swiper-button-next {
  right: -7px;
  background-image: url(../images/icon/next_arrow.svg);
}
@media only screen and (max-width: 767px) {
  .product-detail__images .swiper-button-next {
    right: 15px;
  }
}
.product-detail__images .swiper-slide__image img {
  display: block;
  width: 100%;
}
.product-detail__information {
  width: 412px;
}
@media only screen and (max-width: 767px) {
  .product-detail__information {
    width: 100%;
    padding: 38px 15px;
    background-color: #fff;
  }
}
.product-detail__information > a {
  display: block;
  text-align: center;
  border: 1px solid #000000;
  margin-top: 24px;
}
.product-detail__information > a span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: nitti, monospace;
  line-height: 1.5;
  padding: 8px 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .product-detail__information > a span {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 10px 0;
  }
}
.product-detail__information > p:nth-child(5) {
  margin: 0;
  border: none;
  margin-top: 8px;
  text-align: right;
  display: block;
  margin-bottom: 24px;
}
.product-detail__information > p:nth-child(5) span {
  font-size: 11px;
  font-size: 1.1rem;
  text-decoration: underline;
  font-family: source-han-sans-japanese, "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  padding: 0;
}
.product-detail__information--title strong,
.product-detail__information--title small {
  display: block;
}
.product-detail__information--title strong {
  font-family: nimbus-sans, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .product-detail__information--title strong {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.product-detail__information--title small {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 10px;
}
.product-detail__information--description {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 10px;
  line-height: 1.75;
  margin-top: 20px;
}
.product-detail__information--customize {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 24px;
}
.product-detail__information--customize > div {
  width: 33.3333%;
  padding-top: 12px;
  position: relative;
}
.product-detail__information--customize > div > small {
  position: absolute;
  font-size: 10px;
  font-size: 1rem;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  left: 0;
  top: 0;
}
.product-detail__information--customize > div > span span {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: nitti, monospace;
  line-height: 1.5;
  position: relative;
}
.product-detail__information--customize > div > span span small {
  position: absolute;
  font-size: 10px;
  font-size: 1rem;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  left: 100%;
  bottom: 2px;
  opacity: 0.3;
  font-family: nitti, monospace;
  white-space: nowrap;
}
.product-detail__information--caution {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.818181818;
  margin-top: 8px;
  display: block;
}
.product-detail__information--datas {
  margin-top: 25px;
}
.product-detail__information--datas tbody tr th {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: nitti, monospace;
  padding-top: 17px;
  text-transform: uppercase;
}
.product-detail__information--datas tbody tr td {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.818181818;
  padding-top: 8px;
}
.product-detail__information--datas tfoot td {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.818181818;
  padding-top: 15px;
}

.caution-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  pointer-events: none;
}
.caution-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.caution-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.66);
}
.caution-popup__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 880px;
  padding: 120px 0;
  background: #fff;
  width: 100%;
  border: 1px solid #000;
}
@media only screen and (max-width: 767px) {
  .caution-popup__inner {
    max-width: calc(100% - 30px);
    padding: 100px 0;
  }
}
.caution-popup__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: auto;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .caution-popup__close {
    top: 15px;
    right: 15px;
  }
}
.caution-popup__content {
  padding: 0 30px;
  max-width: 700px;
  margin: auto;
  max-height: 442px;
  overflow: auto;
}
@media only screen and (max-width: 767px) {
  .caution-popup__content {
    max-width: 100%;
    max-height: 500px;
  }
}
.caution-popup__content h2 {
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 24px;
  text-transform: uppercase;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .caution-popup__content h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.caution-popup__content p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  .caution-popup__content p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.caution-popup__content a {
  display: block;
  max-width: 412px;
  margin: auto;
  margin-top: 24px;
  text-align: center;
  border: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  .caution-popup__content a {
    transition: all 0.3s;
  }
  .caution-popup__content a:hover {
    background-color: #000;
    color: #fff;
  }
}
.caution-popup__content a span {
  display: block;
  font-size: 14px;
  padding: 12px 0;
}

.product-list {
  background: #F3F3F2;
  padding: 50px 50px 0;
  padding-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .product-list {
    padding: 72px 15px 60px;
  }
  .product-list.pt {
    padding-top: 16px;
  }
}
.product-list__col {
  width: 32.4921136%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .product-list__col {
    width: 48.8372093%;
  }
}
@media only screen and (min-width: 768px) {
  .product-list__col {
    margin-top: 74px;
  }
  .product-list__col:nth-child(1), .product-list__col:nth-child(2), .product-list__col:nth-child(3) {
    margin-top: 0;
  }
  .product-list__col .product-list__box figure > div > a:hover img:nth-child(2) {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  .product-list__col {
    margin-top: 48px;
  }
  .product-list__col:nth-child(1), .product-list__col:nth-child(2) {
    margin-top: 0;
  }
}
.product-list__col .icon-bnr {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .product-list__col .icon-bnr {
    bottom: 8px;
    left: 8px;
  }
}
.product-list__row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 1268px;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .product-list__row:before {
    content: "";
    width: 32.4921136%;
    display: block;
    order: 1;
  }
}
.product-list__row .product-list__box {
  display: block;
}
.product-list__row .product-list__box figure > div {
  position: relative;
}
.product-list__row .product-list__box figure > div > a {
  display: block;
}
.product-list__row .product-list__box figure > div img:nth-child(1) {
  display: block;
  width: 100%;
}
.product-list__row .product-list__box figure > div img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .product-list__row .product-list__box figure > div .ex-link-btn {
    font-size: 10px;
    font-size: 1rem;
    bottom: 4px;
    left: -8px;
    transform: scale(0.8);
  }
}
.product-list__row .product-list__box figure figcaption {
  text-align: center;
  padding-top: 24px;
}
@media only screen and (max-width: 767px) {
  .product-list__row .product-list__box figure figcaption {
    padding-top: 16px;
  }
}
.product-list__row .product-list__box figure figcaption h3 {
  font-size: 28px;
  font-size: 2.8rem;
  font-family: nimbus-sans, sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .product-list__row .product-list__box figure figcaption h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}
.product-list__row .product-list__box figure figcaption small {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: nitti, monospace;
  text-transform: uppercase;
  margin-top: 12px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .product-list__row .product-list__box figure figcaption small {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.product-list__row .product-list__box figure figcaption p {
  font-size: 20px;
  font-size: 2rem;
  font-family: nitti, monospace;
  margin-top: 11px;
}
@media only screen and (max-width: 767px) {
  .product-list__row .product-list__box figure figcaption p {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 6px;
  }
}

.products {
  background: #F3F3F2;
  padding: 50px;
}
@media only screen and (max-width: 767px) {
  .products {
    padding: 16px 14px 90px;
  }
}
.products__inner {
  max-width: 1300px;
  margin: auto;
}
.products__inner > div {
  display: block;
  position: relative;
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .products__inner > div {
    margin-top: 64px;
  }
}
.products__inner > div:nth-child(1) {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .products__inner > div figure > div:nth-child(1) a:hover img.on {
    opacity: 1;
  }
  .products__inner > div figure figcaption .link a:hover span:before {
    width: 0;
  }
}
.products__inner > div figure {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
}
.products__inner > div figure > div {
  order: 2;
  position: relative;
  max-width: calc(60% - 310px);
}
@media only screen and (max-width: 767px) {
  .products__inner > div figure > div {
    order: 1;
    width: 100%;
    max-width: 100%;
  }
  .products__inner > div figure > div .ex-link-btn {
    position: absolute;
    left: 8px;
    bottom: 8px;
    top: auto;
  }
}
.products__inner > div figure > div img {
  display: block;
  width: 100%;
  max-height: 754px;
}
@media only screen and (max-width: 767px) {
  .products__inner > div figure > div img {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .products__inner > div figure > div img.on {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  .products__inner > div figure > div img.on {
    display: block;
  }
}
.products__inner > div figure > figcaption {
  order: 1;
  max-width: 310px;
}
@media only screen and (max-width: 767px) {
  .products__inner > div figure > figcaption {
    order: 2;
    width: 100%;
    padding-top: 16px;
    max-width: 100%;
  }
}
.products__inner > div figure > figcaption small {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: nitti, monospace;
  text-transform: uppercase;
}
.products__inner > div figure > figcaption h3 {
  font-size: 56px;
  font-size: 5.6rem;
  font-family: nimbus-sans, sans-serif;
  line-height: 1;
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .products__inner > div figure > figcaption h3 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
.products__inner > div figure > figcaption p {
  font-size: 20px;
  font-size: 2rem;
  font-family: nitti, monospace;
  line-height: 1.2;
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .products__inner > div figure > figcaption p {
    margin-top: 16px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.products__inner > div figure > figcaption .link {
  margin-top: 36px;
}
@media only screen and (max-width: 767px) {
  .products__inner > div figure > figcaption .link {
    margin-top: 27px;
  }
}

.related-products {
  padding: 0 50px;
  padding-top: 120px;
}
@media only screen and (max-width: 767px) {
  .related-products {
    padding: 0 15px;
    padding-top: 40px;
  }
}
.related-products h2 {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: nitti, monospace;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .related-products h2 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.related-products__inner {
  padding: 0 30px;
  position: relative;
  max-width: 1224px;
  margin: auto;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .related-products__inner {
    padding: 0;
    margin-top: 24px;
  }
}
.related-products .swiper-button-next,
.related-products .swiper-button-prev {
  height: 18px;
  width: 8px;
  background-size: 100% 100%;
  background-position: center;
}
.related-products .swiper-button-next:after,
.related-products .swiper-button-prev:after {
  content: none;
}
.related-products .swiper-button-prev {
  left: 6px;
  background-image: url(../images/icon/prev_arrow.svg);
}
@media only screen and (max-width: 767px) {
  .related-products .swiper-button-prev {
    left: -3px;
    top: 38%;
  }
}
.related-products .swiper-button-next {
  right: 6px;
  background-image: url(../images/icon/next_arrow.svg);
}
@media only screen and (max-width: 767px) {
  .related-products .swiper-button-next {
    right: -3px;
    top: 38%;
  }
}
.related-products .swiper-slide__image img {
  display: block;
  width: 100%;
}
.related-products__swiper .swiper-slide__image a {
  display: block;
}
@media only screen and (min-width: 768px) {
  .related-products__swiper .swiper-slide__image a:hover figure > div img:nth-child(2) {
    opacity: 1;
  }
}
.related-products__swiper .swiper-slide__image a figure > div {
  position: relative;
}
.related-products__swiper .swiper-slide__image a figure > div img:nth-child(1) {
  display: block;
  width: 100%;
}
.related-products__swiper .swiper-slide__image a figure > div img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.related-products__swiper .swiper-slide__image a figure figcaption {
  text-align: center;
  padding-top: 24px;
}
@media only screen and (max-width: 767px) {
  .related-products__swiper .swiper-slide__image a figure figcaption {
    padding-top: 16px;
  }
}
.related-products__swiper .swiper-slide__image a figure figcaption h3 {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: nimbus-sans, sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .related-products__swiper .swiper-slide__image a figure figcaption h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}
.related-products__swiper .swiper-slide__image a figure figcaption small {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: nitti, monospace;
  text-transform: uppercase;
  margin-top: 12px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .related-products__swiper .swiper-slide__image a figure figcaption small {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.related-products__swiper .swiper-slide__image a figure figcaption p {
  font-size: 17px;
  font-size: 1.7rem;
  font-family: nitti, monospace;
  margin-top: 11px;
}
@media only screen and (max-width: 767px) {
  .related-products__swiper .swiper-slide__image a figure figcaption p {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 6px;
  }
}

body.simple-page {
  background: #fff;
}
body.simple-page .footer__upper {
  display: none;
}

.simple-page__row {
  max-width: 1300px;
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 50px;
  padding-top: 140px;
}
@media only screen and (max-width: 767px) {
  .simple-page__row {
    padding: 0 15px;
    padding-top: 120px;
  }
}
.simple-page__side {
  width: 321px;
}
@media only screen and (max-width: 767px) {
  .simple-page__side {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .simple-page__side ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.simple-page__side ul li {
  padding: 6px 0;
}
@media only screen and (max-width: 767px) {
  .simple-page__side ul li {
    width: 50%;
    padding: 0;
  }
}
.simple-page__side ul li a {
  font-size: 30px;
  font-size: 3rem;
  font-family: nimbus-sans, sans-serif;
  opacity: 0.3;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .simple-page__side ul li a {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .simple-page__side ul li a:hover {
    opacity: 1;
  }
}
.simple-page__side ul li a.current {
  opacity: 1;
  pointer-events: none;
}
.simple-page__content {
  width: calc(100% - 321px);
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  .simple-page__content {
    width: 100%;
  }
}
.simple-page__content__caution-box {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .simple-page__content__caution-box {
    margin-top: 72px;
  }
}
.simple-page__content__caution-box:nth-child(1) {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .simple-page__content__caution-box:nth-child(1) {
    margin-top: 72px;
  }
}
.simple-page__content__caution-box:last-child {
  margin-bottom: 150px;
}
.simple-page__content__caution-box h3 {
  font-size: 20px;
  font-size: 2rem;
  font-family: nitti, monospace;
  text-transform: uppercase;
}
.simple-page__content__caution-box ul {
  padding-top: 10px;
}
.simple-page__content__caution-box ul li {
  padding: 4px 0;
}
.simple-page__content__caution-box ul li a {
  font-size: 14px;
  font-size: 1.4rem;
  opacity: 0.3;
  line-height: 1.5;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media only screen and (min-width: 768px) {
  .simple-page__content__caution-box ul li a:hover {
    opacity: 1;
  }
}
.simple-page__content--faq-area {
  max-width: 717px;
  margin-top: -10px;
}
.simple-page__content--faq-area > div {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .simple-page__content--faq-area > div {
    margin-top: 72px;
  }
}
.simple-page__content--faq-area > div:nth-child(1) {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .simple-page__content--faq-area > div:nth-child(1) {
    margin-top: 72px;
  }
}
.simple-page__content--faq-area > div:last-child {
  margin-bottom: 150px;
}
.simple-page__content--faq-area > div h2 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  .simple-page__content--faq-area > div h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.simple-page__content--faq-area > div p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  margin-top: 20px;
}
.simple-page__content--faq-area > div p a {
  text-decoration: underline;
}

.stores {
  padding-top: 400px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .stores {
    padding-top: 240px;
  }
}
.stores h2 {
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  font-family: nimbus-sans, sans-serif;
  text-transform: uppercase;
  padding-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .stores h2 {
    font-size: 18px;
    font-size: 1.8rem;
    padding-bottom: 28px;
  }
}
.stores .support-stores {
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .stores .support-stores__inner {
    margin-top: 0;
  }
}

.support-stores {
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  margin-top: 242px;
}
@media only screen and (max-width: 767px) {
  .support-stores {
    padding: 0;
    margin-top: 140px;
  }
}
.support-stores.store01 {
  background-image: url(../images/store/store01.jpg);
}
@media only screen and (max-width: 767px) {
  .support-stores.store01 {
    background: none;
  }
  .support-stores.store01 .support-stores__inner > div:nth-child(1) {
    background-image: url(../images/store/sp_store01_1.jpg);
  }
  .support-stores.store01 .support-stores__inner > div:nth-child(2) {
    background-image: url(../images/store/sp_store01_2.jpg);
  }
}
.support-stores.store02, .support-stores.store03 {
  background-image: url(../images/store/store02.jpg);
}
@media only screen and (max-width: 767px) {
  .support-stores.store02, .support-stores.store03 {
    background-image: url(../images/store/sp_store02.jpg);
  }
}
.support-stores.store02 .support-stores__inner > div, .support-stores.store03 .support-stores__inner > div {
  max-width: 626px;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .support-stores.store02 .support-stores__inner > div, .support-stores.store03 .support-stores__inner > div {
    width: 100%;
  }
  .support-stores.store02 .support-stores__inner > div b, .support-stores.store03 .support-stores__inner > div b {
    font-size: 16px;
    font-size: 1.6rem;
    display: block;
    text-align: center;
    margin-bottom: 24px;
    font-family: nitti, monospace;
    text-transform: uppercase;
  }
}
.support-stores.store02 .support-stores__inner > div strong, .support-stores.store03 .support-stores__inner > div strong {
  display: block;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  font-size: 30px;
  font-size: 3rem;
  font-family: nimbus-sans, sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .support-stores.store02 .support-stores__inner > div strong, .support-stores.store03 .support-stores__inner > div strong {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.25;
  }
}
.support-stores.store02 .support-stores__inner > div strong small, .support-stores.store03 .support-stores__inner > div strong small {
  font-size: 26px;
  font-size: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .support-stores.store02 .support-stores__inner > div strong small, .support-stores.store03 .support-stores__inner > div strong small {
    font-size: 20px;
    font-size: 2rem;
  }
}
.support-stores.store02 .support-stores__inner > div p, .support-stores.store03 .support-stores__inner > div p {
  margin: auto;
  margin-top: 36px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  max-width: 626px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .support-stores.store02 .support-stores__inner > div p, .support-stores.store03 .support-stores__inner > div p {
    padding: 0 14px;
    top: 27px;
  }
}
.support-stores.store02 .support-stores__inner > div p a, .support-stores.store03 .support-stores__inner > div p a {
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .support-stores.store02 .support-stores__inner > div p a, .support-stores.store03 .support-stores__inner > div p a {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .support-stores.store02 .support-stores__inner > div p a:hover, .support-stores.store03 .support-stores__inner > div p a:hover {
    opacity: 0.3;
  }
}
@media only screen and (max-width: 767px) {
  .support-stores.store02 .support-stores__inner > div > div, .support-stores.store03 .support-stores__inner > div > div {
    margin-top: 48px;
  }
}
.support-stores.store03 {
  background-image: url(../images/store/store03.jpg);
}
@media only screen and (max-width: 767px) {
  .support-stores.store03 {
    background-image: url(../images/store/sp_store03.jpg);
  }
}
.support-stores.store03__new {
  background-image: url(../images/store/new_store03.jpg);
}
@media only screen and (max-width: 767px) {
  .support-stores.store03__new {
    background: none;
  }
  .support-stores.store03__new .support-stores__inner > div:nth-child(1) {
    background-image: url(../images/store/sp_new_store03_01.jpg);
  }
  .support-stores.store03__new .support-stores__inner > div:nth-child(2) {
    background-image: url(../images/store/sp_new_store03_02.jpg);
  }
}
.support-stores.store02__new {
  background-image: url(../images/store/new_store02.jpg);
}
@media only screen and (max-width: 767px) {
  .support-stores.store02__new {
    background: none;
  }
  .support-stores.store02__new .support-stores__inner > div:nth-child(1) {
    background-image: url(../images/store/sp_store02.jpg);
  }
  .support-stores.store02__new .support-stores__inner > div:nth-child(2) {
    background-image: url(../images/store/sp_new_store03_02.jpg);
  }
}
.support-stores > h2 {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  font-family: nitti, monospace;
  font-size: 20px;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
}
.support-stores__inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 38px;
}
.support-stores__inner > div {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .support-stores__inner > div {
    width: 100%;
    background-size: cover;
    background-position: center;
    padding: 72px 0;
    margin-top: 12px;
  }
  .support-stores__inner > div:nth-child(1) {
    margin-top: 0;
  }
}
.support-stores__inner > div > div {
  width: 70.2781845%;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .support-stores__inner > div > div {
    width: 100%;
  }
  .support-stores__inner > div > div b {
    font-size: 16px;
    font-size: 1.6rem;
    display: block;
    text-align: center;
    margin-bottom: 24px;
    font-family: nitti, monospace;
    text-transform: uppercase;
  }
}
.support-stores__inner > div > div strong {
  display: block;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  font-size: 30px;
  font-size: 3rem;
  font-family: nimbus-sans, sans-serif;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .support-stores__inner > div > div strong {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.25;
  }
}
.support-stores__inner > div > div strong small {
  font-size: 26px;
  font-size: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .support-stores__inner > div > div strong small {
    font-size: 20px;
    font-size: 2rem;
  }
}
.support-stores__inner > div > div p {
  margin: auto;
  margin-top: 36px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  max-width: 480px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .support-stores__inner > div > div p {
    padding: 0 14px;
    top: 27px;
  }
}
.support-stores__inner > div > div p a {
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .support-stores__inner > div > div p a {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .support-stores__inner > div > div p a:hover {
    opacity: 0.3;
  }
}
.support-stores__btns {
  text-align: center;
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .support-stores__btns {
    margin-top: 48px;
  }
}
.support-stores__btns div > a,
.support-stores__btns div > p {
  display: inline-block;
  vertical-align: middle;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.support-stores__btns div > a {
  width: 232px;
  text-align: center;
  display: block;
  margin: auto;
  border: 1px solid #fff;
}
.support-stores__btns div > a.en {
  font-family: nitti, monospace;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .support-stores__btns div > a {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .support-stores__btns div > a:hover {
    background: #fff;
  }
  .support-stores__btns div > a:hover span {
    color: #000;
    text-shadow: none;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
}
.support-stores__btns div > a span {
  font-size: 16px;
  font-size: 1.6rem;
  display: inline-block;
  padding: 14px 0 15px;
}
.support-stores__btns div > p {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .support-stores__btns div > p {
    margin-top: 8px !important;
  }
}
.support-stores__btns div > p a {
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .support-stores__btns div > p a {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .support-stores__btns div > p a:hover {
    opacity: 0.3;
  }
}

.update-section__inner {
  position: relative;
  max-width: 1300px;
  margin: auto;
  padding: 52px 0;
}
@media only screen and (max-width: 767px) {
  .update-section__inner {
    padding: 42px 12px 52px;
  }
}
.update-section__inner ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  justify-content: space-between;
}
.update-section__inner ul li {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .update-section__inner ul li:nth-child(1) {
    width: 80px;
  }
}
.update-section__inner ul li:nth-child(1) strong {
  font-size: 20px;
  font-family: nitti, monospace;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .update-section__inner ul li:nth-child(1) strong {
    position: relative;
    left: -4px;
  }
}
@media only screen and (max-width: 767px) {
  .update-section__inner ul li:nth-child(1) strong {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.update-section__inner ul li:nth-child(2) {
  text-align: right;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 767px) {
  .update-section__inner ul li:nth-child(2) {
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
    align-items: flex-end;
    width: calc(100% - 80px);
  }
}
.update-section__inner ul li:nth-child(2) em {
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  font-family: nitti, monospace;
}
@media only screen and (max-width: 767px) {
  .update-section__inner ul li:nth-child(2) em {
    font-size: 16px;
    font-size: 1.6rem;
    padding-top: 12px;
  }
}
.update-section__inner ul li:nth-child(2) a {
  display: inline-block;
  vertical-align: middle;
  text-decoration: underline;
}
.update-section__inner ul li:nth-child(2) a span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  display: block;
}
@media only screen and (max-width: 767px) {
  .update-section__inner ul li:nth-child(2) a span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/**

 */
body.top {
  height: 100%;
  width: 100%;
}