@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #2F2F2F;
  word-break: break-all;
}
body.is_fixed {
  overflow: hidden;
}

input, textarea {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

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

a:active {
  text-decoration: none;
  color: #3B3B3B !important;
}

a {
  text-decoration: none;
  color: #3B3B3B;
}
a:hover {
  opacity: 0.85;
}

div,
a {
  box-sizing: border-box;
}

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

.e_enTxt {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.section__title {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 32px !important;
  font-weight: bold;
  color: #2F2F2F;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-top: 0 !important;
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 6.9333333333vw !important;
  }
}

.section__subTitle {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .section__subTitle {
    font-size: 3.2vw;
  }
}

.more__btn {
  display: block;
  margin: 0 auto;
  width: 280px;
  border: 2px solid #2F2F2F;
  text-align: center;
  font-size: 18px;
  height: 54px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  background-image: url(../img/common/icon_plus.svg);
  background-repeat: no-repeat;
  background-position: 92%;
  background-size: 15px;
  transition: all 0.3s ease;
}
.more__btn:hover {
  opacity: 1;
  background-image: url(../img/common/icon_plus_wh.svg);
  background-repeat: no-repeat;
  background-position: 92%;
  background-size: 15px;
  background-color: #2F2F2F;
  color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 1001;
  background: #fff;
}
.header.is_active .header__search {
  display: none !important;
}
.header.is_fixed {
  position: fixed;
  animation: slideIn 0.2s forwards;
}
@keyframes slideIn {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.header.is_fixed .header__information {
  display: none;
}
.header.is_fixed .header__middle {
  display: none;
}
.header__information {
  padding: 12px 20px;
  background: #FFFFFF;
  text-align: center;
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .header__informationWrap {
    overflow-x: auto;
    width: 100%;
  }
}
.header__information p {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}
.header__middle {
  padding: 10px 20px;
  background: #2F2F2F;
  position: relative;
}
.header__middle--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__middle--sns {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__middle--snsItem {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff !important;
  font-size: 10px;
  font-weight: bold;
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
}
.header__middle--snsItem img {
  height: 20px;
  vertical-align: bottom;
}
@media screen and (max-width: 1200px) {
  .header__middle--sns {
    display: none;
  }
}
.header__middle--text {
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1200px) {
  .header__middle--text {
    position: unset;
    transform: translate(0);
  }
}
.header__middle--language {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 12px;
  position: relative;
}
.header__middle--language img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .header__middle--language .text {
    display: none;
  }
}
.header__main {
  padding: 15px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__main {
    padding: 12px 15px;
    border-bottom: 1px solid #2F2F2F;
  }
}
.header__main--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__main--nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__main--logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.header__main--menu {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  .header__main--menu {
    gap: 8px;
  }
}
.header__main--menu span {
  display: none;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header__main--menu span {
    line-height: 1;
    display: block;
    font-size: 7px;
  }
}
@media screen and (max-width: 768px) {
  .header__main--menu li {
    text-align: center;
  }
  .header__main--menu li.e_mail {
    display: none;
  }
}
.header__main--account {
  display: flex;
  align-items: center;
  margin-left: 45px;
}
@media screen and (max-width: 768px) {
  .header__main--account {
    display: none;
  }
}
.header__main--account .rank {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 5px;
}
.header__main--account .rank__icon img {
  width: 17px;
}
.header__main--account .rank p {
  font-size: 10px;
  line-height: 1.4;
}
.header__main--account .point {
  padding: 0 5px;
  border-left: 1px solid #707070;
  line-height: 1.4;
  font-size: 10px;
}
.header__index {
  border-top: 1px solid #2F2F2F;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .header__index {
    display: none;
  }
}
.header__indexMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .header__indexMenu {
    gap: 25px;
  }
}
.header__indexMenu--item {
  font-size: 13px;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .header__indexMenu--item {
    font-size: 12px;
  }
}
.header__search {
  padding: 8px 10px;
  background: #F2F2F2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__search {
    width: 100%;
  }
}
.header__search .headerSearch_form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__search .b_headerSearch_formInput {
  width: 253px;
  padding: 4px 6px;
  background: transparent;
  border: none;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  border-bottom: 1px solid #454545;
  border-radius: 0 !important;
  box-shadow: none;
  font-size: 16px !important;
}
@media screen and (max-width: 768px) {
  .header__search .b_headerSearch_formInput {
    width: 240px;
    padding: 4px 8px;
  }
}
.header__search .b_headerSearch_formInput::-moz-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.header__search .b_headerSearch_formInput::placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.header__search .b_headerSearch_formInput:focus {
  outline: none;
}
.header__search button {
  background: none;
  border: none;
  outline: none;
}
@media screen and (max-width: 768px) {
  .header__search button img {
    width: 15px !important;
  }
}

.floating {
  width: -moz-max-content !important;
  width: max-content !important;
  display: flex !important;
  position: fixed;
  z-index: 800;
  bottom: 0;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 10px 0;
}
.floating span {
  display: block;
  font-weight: bold;
  font-size: 10px;
  color: #fff;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .floating {
    right: 0;
    padding: 2px 10px;
    flex-direction: column;
    border-top-right-radius: 0;
    border-top-left-radius: 6px;
  }
  .floating span {
    display: none;
  }
}
.floating__item {
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .floating__item {
    padding: 10px 0;
  }
}
.floating__item + .floating__item {
  border-left: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .floating__item + .floating__item {
    border-top: 1px solid #fff;
    border-left: 0 solid #000;
  }
}
.floating__item img {
  width: 34px;
}
@media screen and (max-width: 768px) {
  .floating__item img {
    width: 24px;
  }
}

#google_translate_element {
  background: none;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.menu-button {
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  gap: 7px;
  position: relative;
}

.menu-button .bar {
  width: 25px;
  height: 1px;
  background: #2f2f2f;
  transition: all 0.3s ease;
}

.menu-button .bar:nth-child(2) {
  width: 20px;
  margin-right: 5px;
}

.menu-button.active .bar:nth-child(1) {
  transform: translate(1px, 9px) rotate(45deg);
}

.menu-button.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-button.active .bar:nth-child(3) {
  transform: translate(1px, -7px) rotate(-45deg);
  width: 25px;
}

.header__btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__btn {
    display: block;
  }
}

.hamburger__nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger__nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    background: #fff;
    padding: 24vw 5.3333333333vw 9.3333333333vw;
    height: 100%;
    width: 100%;
    overflow-y: auto;
  }
  .hamburger__nav.active {
    transform: translateX(0);
    z-index: 900;
    opacity: 1;
  }
}
.hamburger__nav--search {
  width: 100%;
  position: relative;
}
.hamburger__nav--search input {
  background: #F2F2F2;
  box-sizing: border-box;
  width: 100%;
  padding: 15px 20px;
  border: none;
}
.hamburger__nav--search input::-moz-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.hamburger__nav--search input::placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.hamburger__nav--search input:focus {
  outline: none;
}
.hamburger__nav--search button {
  background: none;
  border: none;
  outline: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__nav--member {
  margin: 10px 0;
  padding: 5.3333333333vw 5.3333333333vw;
  border: 1px solid #707070;
}
.hamburger__nav--member .top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.hamburger__nav--member .top .icon {
  width: 40px;
}
.hamburger__nav--member .top p {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
}
.hamburger__nav--member .bottom {
  display: flex;
  justify-content: space-between;
}
.hamburger__nav--member .bottom p {
  padding: 0 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.hamburger__nav--member .bottom p + p {
  border-left: 1px solid #707070;
}
.hamburger__nav--btns {
  margin: 10px 0 30px;
  display: flex;
  justify-content: space-between;
}
.hamburger__nav--btns a {
  width: 48.5%;
  border: 1px solid #000;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.hamburger__nav--submenu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hamburger__nav--menu > li > a {
  display: block;
  padding: 15px 0;
}
.hamburger__nav--menu > li > a.acTtl {
  background-image: url(../img/common/icon_plus.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: right;
}
.hamburger__nav--menu > li > a.acTtl.is_active {
  background-image: url(../img/common/icon_minus_bk.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: right;
}
.hamburger__nav--menu .acContents {
  display: none;
}
.hamburger__nav--menu .acContents > ul li + li {
  margin-top: 15px;
}
.hamburger__nav--menu .acContents > ul li:first-child {
  margin-top: 20px;
}
.hamburger__nav--menu .acContents > ul li:last-child {
  margin-bottom: 20px;
}
.hamburger__nav--menu .acContents__title {
  padding: 12px 12px;
  border-bottom: 1px solid #707070;
  background-image: url(../img/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 97%;
}
.hamburger__nav--menu .acContents__title.is_active {
  background: #707070;
  color: #fff;
  background-image: url(../img/common/icon_arrow_top_wh.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 97%;
}
.hamburger__nav--menu .acContents__menu {
  padding-left: 20px;
  display: none;
}
.hamburger__nav--menu .acContents__menu:last-of-type {
  margin-bottom: 20px;
}
.hamburger__nav--menu .acContents__menu li + li {
  margin-top: 15px;
}
.hamburger__nav--menu .acContents__menu li:first-child {
  margin-top: 20px;
}
.hamburger__nav--menu .acContents__menu li:last-child {
  margin-bottom: 20px;
}
.hamburger__nav--menu .acContents__menu .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hamburger__nav--menu .acContents__menu .brand__logo {
  width: 30%;
  display: block !important;
}
.hamburger__nav--menu .acContents__menu .brand__name {
  width: 65%;
}
.hamburger__nav--submenu {
  margin: 40px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hamburger__nav--submenu a {
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}
.hamburger__nav .snsList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.megamenuOpen.is_active {
  border-bottom: 1px solid #2F2F2F;
}

.megamenu {
  position: fixed;
  top: 250px;
  left: 0;
  width: 100%;
  height: auto;
  overflow-y: auto;
  opacity: 0;
  display: none;
  transition: 0.5s ease;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 1000;
}
.megamenu.is_active {
  opacity: 1;
  display: flex;
}
.megamenu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 999;
  background: rgba(255, 255, 255, 0.6);
}

.is_fixed .megamenu {
  top: 204px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .megamenu {
    display: none !important;
  }
}
.megamenu01 {
  height: auto !important;
  overflow-y: auto;
  min-height: unset;
}
.megamenu01 .megamenuBox {
  max-width: 1000px;
  padding: 50px 20px;
  margin: 0 auto;
  gap: 80px;
  display: flex;
}
.megamenu01 .megamenu__imgBox {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  /* 列数を自動調整 */
  grid-template-rows: repeat(10, auto);
  /* 最大10行 */
  gap: 10px;
  /* アイテム間の余白 */
  overflow: hidden;
}
.megamenu01 .megamenu__imgBox.show {
  display: grid;
}
.megamenu01 .megamenu__index--item {
  margin-bottom: 10px;
}
.megamenu01 .megamenu__index--item a {
  display: block;
  padding-right: 30px;
  position: relative;
  background-image: url(../img/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: 5px;
  background-position: right;
}
.megamenu01 .megamenu__index--item a:hover {
  text-decoration: underline;
}
.megamenu01 .megamenu__index--item.active a {
  text-decoration: underline;
}

.megamenu03 .megamenuWrap {
  display: flex;
  justify-content: space-between;
}
.megamenu03 .megamenu__index {
  width: 30%;
  padding-right: 8px;
}
.megamenu03 .megamenu__index--item {
  transition: all 0.3s ease;
  border-bottom: 1px solid #707070;
}
.megamenu03 .megamenu__index--item.active {
  background: #707070;
}
.megamenu03 .megamenu__index--item.active a {
  color: #fff;
}
.megamenu03 .megamenu__index--item a {
  display: block;
  padding: 12px 20px 12px 80px;
}
.megamenu03 .megamenu__index--item:hover {
  background: #707070;
}
.megamenu03 .megamenu__index--item:hover a {
  color: #fff;
}
.megamenu03 .megamenu__contents {
  width: 70%;
  border-top: 1px solid #2F2F2F;
  height: 75vh;
  overflow-y: auto;
}
.megamenu03 .megamenu__contents .megamenu__imgBox {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px 20px;
  height: -moz-max-content;
  height: max-content;
  padding: 55px;
}
@media screen and (max-width: 1200px) {
  .megamenu03 .megamenu__contents .megamenu__imgBox {
    grid-template-columns: repeat(3, 1fr);
  }
}
.megamenu03 .megamenu__contents .megamenu__imgBox.show {
  display: grid;
}
.megamenu03 .megamenu__img {
  position: relative;
  display: block;
}
.megamenu03 .megamenu__img span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  z-index: 2;
}
.megamenu03 .megamenu__img img {
  aspect-ratio: 1.3;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

.megamenuWrap {
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  position: relative;
  z-index: 10000;
}

.megamenu02 .megamenu__img {
  position: relative;
  display: block;
}
.megamenu02 .megamenu__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.megamenu__country {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 18px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 40px;
  padding-bottom: 50px;
}
.megamenu__country--item {
  width: 75px;
  text-align: center;
}
.megamenu__country--item img {
  margin-bottom: 8px;
  display: block;
  border: 1px solid #D5D5D5;
  width: 77px;
}
.megamenu__country--item span {
  font-size: 12px;
}

.megamenu__text {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.megamenu__text--title {
  font-size: 20px;
  font-weight: normal;
  padding-bottom: 20px;
  border-bottom: 1px solid #2F2F2F;
  margin-bottom: 20px;
}
.megamenu__text--lists {
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 50px;
}
.megamenu__text--lists a {
  font-size: 14px;
}

.megamenu02 .megamenu__imgBox {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 25px 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 1200px) {
  .megamenu02 .megamenu__imgBox {
    grid-template-columns: repeat(5, 1fr);
  }
}

.megamenu02Wrap {
  height: 100%;
  padding-top: 40px;
}
.megamenu02Wrap .megamenu__imgBox {
  padding: 0 20px 40p;
}
.megamenu02Wrap .megamenu__imgBox .megamenu__img {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
}

.megamenu04 .megamenu__contents {
  width: 72%;
  padding: 40px 50px;
}
@media screen and (max-width: 1200px) {
  .megamenu04 .megamenu__contents {
    width: 65%;
  }
}
.megamenu04 .megamenu__imgBoxWrap {
  display: none;
}
.megamenu04 .megamenu__imgBoxWrap.show {
  display: block;
}
.megamenu04 .megamenu__imgBox {
  display: grid;
  gap: 20px 25px;
  padding: 0;
}
.megamenu04 .megamenu__imgBox--title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.megamenu__indexCountry {
  width: 28%;
  height: 100%;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
@media screen and (max-width: 1200px) {
  .megamenu__indexCountry {
    width: 35%;
  }
}
.megamenu__indexCountry ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 0.5px solid #707070;
  height: -moz-max-content;
  height: max-content;
}
.megamenu__indexCountry .megamenu__index--item {
  box-sizing: border-box;
  border: 0.5px solid #707070;
  width: 50%;
}
.megamenu__indexCountry .megamenu__index--item a {
  display: flex;
  align-items: center;
  padding: 10px 25px;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .megamenu__indexCountry .megamenu__index--item a {
    padding: 10px;
  }
}
.megamenu__indexCountry .megamenu__index--item a img {
  width: 35px;
  border: 1px solid #D5D5D5;
}
.megamenu__indexCountry .megamenu__index--item a .text {
  font-size: 13px;
  max-width: 60%;
}
@media screen and (max-width: 1200px) {
  .megamenu__indexCountry .megamenu__index--item a .text {
    max-width: 60%;
    white-space: wrap;
  }
}

.megamenu__indexBrand {
  width: 30%;
  height: 100%;
  overflow-y: auto;
}
.megamenu__indexBrand ul {
  display: flex;
  flex-wrap: wrap;
  height: -moz-max-content;
  height: max-content;
  border-top: 0.5px solid #707070;
}
.megamenu__indexBrand ul .megamenu__index--item {
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  width: 50%;
  box-sizing: border-box;
}
.megamenu__indexBrand ul .megamenu__index--item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .megamenu__indexBrand ul .megamenu__index--item a {
    padding: 10px;
  }
}

.megamenu05 .megamenu__contents {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  border: none;
  padding: 50px 0;
  width: 100%;
}
.megamenu05 .megamenu__contents--item {
  padding: 0 50px 50px;
  width: 33%;
}
.megamenu05 .megamenu__contents--item a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.megamenu05 .megamenu__contents--item + .megamenu__contents--item {
  border-left: 1px solid #707070;
}
.megamenu05 .megamenu__contents--itemTitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: "Oswald", sans-serif;
}
.megamenu05 .megamenu__contents--item ul {
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}
.megamenu05 .megamenu__contents--item ul + .megamenu__contents--itemTitle {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid #707070;
}

.megamenu07 .megamenu__contents {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  border: none;
  padding: 50px 0;
  width: 100%;
  height: auto;
  overflow-y: auto;
}
.megamenu07 .megamenu__contents--item {
  padding: 0 50px 50px;
  width: 33%;
}
.megamenu07 .megamenu__contents--item a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.megamenu07 .megamenu__contents--item + .megamenu__contents--item {
  border-left: 1px solid #707070;
}
.megamenu07 .megamenu__contents--itemTitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: "Oswald", sans-serif;
}
.megamenu07 .megamenu__contents--item ul {
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}
.megamenu07 .megamenu__contents--item ul + .megamenu__contents--itemTitle {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid #707070;
}

#gt_float_wrapper {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: unset !important;
  width: -moz-max-content;
  width: max-content;
}

.gt_float_switcher {
  box-shadow: none !important;
  background: none !important;
}

.gt-selected {
  opacity: 0 !important;
}

.gt_options {
  transform: translateY(0) !important;
}

.gt_options.gt-open {
  background: #fff;
}

.megamenu06Wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
.megamenu06Wrap .megamenu__imgBox {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px 20px;
}
.megamenu06Wrap .megamenu__img img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.megamenu06Wrap .megamenu__img span {
  line-height: 1.7;
  display: block;
}
.megamenu06Wrap .more__btn {
  margin-top: 50px;
  font-size: 14px;
  background-image: url(../img/common/icon_arrow_right.svg);
  background-size: 10px;
  transition: all 0.3s ease;
}
.megamenu06Wrap .more__btn:hover {
  opacity: 1;
  background-image: url(../img/common/icon_arrow_right_wh.svg);
  background-repeat: no-repeat;
  background-position: 92%;
  background-size: 10px;
  background-color: #2F2F2F;
  color: #fff;
}

.header__main--account .header__main--accountWrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__main--account {
    display: none !important;
  }
}

.top .none {
  display: none !important;
}

.header__main--accountWrap .rank .none {
  display: none;
}

.popup {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1000;
  display: none;
}
@media screen and (max-width: 768px) {
  .popup {
    padding-top: 15px;
    width: 50px;
    top: 60%;
  }
}
.popup_close {
  position: absolute;
  top: 0;
  left: 2px;
  width: 13px;
  height: 13px;
  z-index: 1001;
}
.popup_close img {
  width: 13px;
}
@media screen and (max-width: 768px) {
  .popup_close {
    left: 0;
  }
}

.header__ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ticker__arrow {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 0 10px;
}

.header__ticker--content {
  width: 100%;
  max-width: 600px;
  text-align: center;
  overflow: hidden;
}

.header__ticker--item {
  display: none;
  font-size: 14px;
  color: #fff;
}

.header__ticker--item.active {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.head_bnr {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}
.head_bnr img {
  vertical-align: bottom;
  width: 100%;
}

#sps-floating-menu {
  bottom: 110px !important;
}

.hamburger__nav--menu, .hamburger__nav--submenu, .hamburger__nav .snsList {
  padding: 0 !important;
}

.header__middle--language img {
  vertical-align: middle !important;
}

@media screen and (max-width: 768px) {
  .header__middle--text {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  #gt_float_wrapper .gt_options {
    position: absolute !important;
    right: 0 !important;
    width: -moz-max-content !important;
    width: max-content !important;
    top: 30%;
  }
}

@media screen and (max-width: 768px) {
  #gt_float_wrapper {
    width: 20px !important;
    right: -10px !important;
  }
}
.popup_close img {
  display: none;
}
@media screen and (max-width: 768px) {
  .popup_close img {
    display: block;
  }
}

.floating-banner {
  display: none !important;
}

.megamenu__img img {
  max-width: 100%;
  width: 100%;
}

.megamenu__img--title {
  word-wrap: break-word;
  white-space: wrap;
}

.megamenu__img--price {
  word-wrap: break-word;
  white-space: wrap;
}

footer {
  height: auto !important;
  width: 100% !important;
}

.footer {
  background: url(../img/common/bg_footer.jpg) no-repeat !important;
  background-size: cover !important;
  background-position: center;
  box-sizing: border-box;
  padding: 80px 40px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 21.3333333333vw 5.3333333333vw 8vw;
  }
}
.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: block;
  }
}
.footer__left {
  width: 60%;
  max-width: 550px;
}
@media screen and (max-width: 768px) {
  .footer__left {
    width: 100%;
  }
}
.footer__left--nav {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1200px) {
  .footer__left--nav {
    display: block;
  }
}
.footer__left--nav + .footer__left--nav {
  margin-top: 30px;
}
.footer__left--navTitle {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  font-family: "Oswald", sans-serif;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .footer__left--navTitle {
    pointer-events: all;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer__left--navTitle {
    padding: 30px 0;
  }
}
.footer__left--navList {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer__left--navList {
    padding-left: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.footer__left--navList li a {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
.footer__left--nav .snsList {
  gap: 20px;
  margin-top: 0 !important;
}
@media screen and (max-width: 768px) {
  .footer__left--nav .snsList {
    justify-content: flex-start !important;
    flex-direction: row;
    padding-left: 0;
  }
}
.footer__left--bottom {
  border-top: 1px solid #fff;
  padding-top: 30px;
  margin-top: 30px;
}
.footer__left--bottom ul {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .footer__left--bottom ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.footer__left--bottom ul a {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .footer__left--bottom ul a {
    font-size: 12px;
  }
}
.footer__copy {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    margin-top: 80px;
  }
}
.footer__right {
  width: 40%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .footer__right {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer__right {
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    margin-top: 30px;
  }
}
.footer__callendar {
  overflow: hidden;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .footer__callendar {
    margin-top: 13.3333333333vw;
  }
}
.footer__callendar .swiper-slide {
  margin-top: auto;
}
.footer__callendar .cap-info {
  margin-top: 15px;
  font-size: 14px !important;
}
.footer__bnr {
  width: 70px;
}
.footer__bnr img {
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .acTtl + .footer__left--navList {
    height: 0;
    overflow: hidden;
    transition: 0.2s ease height;
  }
}

@media screen and (max-width: 768px) {
  .acTtl {
    background-image: url(../img/common/icon_plus_wh.svg);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: 98%;
    cursor: pointer;
  }
  .acTtl.is_active {
    background-image: url(../img/common/icon_minus_wh.svg);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: 98%;
  }
}

.footer__left--bottom li, .footer__left--navList li {
  background: transparent !important;
}

div.footer {
  display: none !important;
}

body {
  padding-top: 240px !important;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 42.6666666667vw !important;
  }
}

#contents {
  max-width: 1100px !important;
  width: 100% !important;
}

#main-column {
  width: 75% !important;
}
@media screen and (max-width: 768px) {
  #main-column {
    width: 100% !important;
  }
}

#sub-column {
  width: 21% !important;
}
@media screen and (max-width: 768px) {
  #sub-column {
    width: 100% !important;
    display: none !important;
  }
}

#subc_calendar {
  display: none !important;
}

.footer_area p {
  line-height: 1.7;
}

.free-contents > p:first-child,
.free-contents > p:last-child {
  display: none;
  line-height: 0;
}

.freeArea2 {
  margin-bottom: 0;
}

.footer #subc_calendar {
  display: block !important;
  background: #fff;
}
.footer .subc_cal_cont {
  padding: 30px 10px;
}
.footer .cal_wrapper input {
  display: none;
}
.footer .cal_wrapper .month {
  text-align: center;
  margin-bottom: 20px;
}
.footer .cap {
  margin-top: 20px;
}
.footer .cap ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .cal tr td {
  border: 1px solid #000;
  text-align: center;
  font-size: 12px;
}

.rank__icon img {
  display: none;
}

.rank__icon.元帥（ダイヤモンド） .icon_元帥（ダイヤモンド） {
  display: block;
}

.rank__icon.大将（プラチナ） .icon_大将（プラチナ） {
  display: block;
}

.rank__icon.中将（ゴールド） .icon_中将（ゴールド） {
  display: block;
}

.rank__icon.大尉（シルバー） .icon_大尉（シルバー） {
  display: block;
}

.rank__icon.少尉（ブロンズ） .icon_少尉（ブロンズ） {
  display: block;
}

.description center > table {
  max-width: 100% !important;
}

.ttl_faq_section {
  display: block;
  padding: 14px !important;
  font-size: 16px !important;
  font-weight: bold;
  border-radius: 2px;
  background: #444;
  color: #FFF;
}

.accordion li {
  list-style-type: none !important;
}

.accordion {
  max-width: 100% !important;
}

.journal-cont {
  line-height: 1.5;
}

section#itemDetail-wrap table.price th,
section#itemDetail-wrap table.spec th {
  font-size: 14px !important;
}

section#itemDetail-wrap table.price td {
  font-size: 14px !important;
}

section#itemDetail-wrap .cartArea table.variation td,
section#itemDetail-wrap .cartArea table.variation th {
  font-size: 12px !important;
}

article#Detail #main-column h1 {
  font-size: 24px !important;
}

#bread-crumb-listTop ol li {
  font-size: 12px !important;
}

section#itemDetail-wrap p.cancel {
  font-size: 12px !important;
  margin-top: 15px;
  margin-bottom: 20px !important;
}

@media screen and (max-width: 768px) {
  article#Detail #main-column h1 {
    font-size: 18px !important;
  }
  #Detail {
    padding: 3% !important;
  }
}
@media screen and (max-width: 768px) {
  .description center > table {
    width: 100% !important;
  }
}

.ui-front {
  z-index: 1100 !important;
}

#main-column h2 {
  font-size: 20px;
  border-top: 1px solid #707070;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #main-column h2 {
    font-size: 18px;
  }
}

#main-column .column4 p.price {
  font-size: 18px !important;
}

#main-column .column4 p.price, #main-column .column5 p.price, #main-column .column4 p.sp_price, #main-column .column5 p.sp_price #main-column .column4 p.fx_price, #main-column .column5 p.fx_price, #main-column .column4 p.rg_price, #main-column .column5 p.rg_price {
  font-size: 18px !important;
}

article h1 {
  border-top: 1px solid #707070;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  article h1 {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  #itemList_wrap #pager-top .selectbox, #itemList_wrap #pager-bm .selectbox {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 768px) {
  #itemList_wrap #pager-top .selectbox .select01 {
    font-size: 16px !important;
    margin-top: 10px;
  }
}

.column5 {
  width: 18%;
  margin: 0 2.4% 20px 0;
}

@media screen and (max-width: 480px) {
  .column5 {
    width: 49%;
    margin: 0 2% 10px 0;
  }
}
.maintainance {
  text-align: center;
  padding: 40px 20px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .maintainance {
    font-size: 14px;
  }
}

.header_area {
  line-height: 1.6;
}

#itemList .column4 .sps-wishAddItem img, #itemList .column5 .sps-wishAddItem img, #itemList .column4 .sps-wishAddItemOk img, #itemList .column5 .sps-wishAddItemOk img {
  width: 15%;
}

.bread-crumb-listCate ol li {
  font-size: 12px !important;
}

#bread-crumb-listTop {
  margin-bottom: 10px;
}

#page {
  text-shadow: none !important;
}

@media screen and (max-width: 768px) {
  #footer div:not([class]) {
    width: 100% !important;
  }
}

.floating-bannersps {
  display: none !important;
}/*# sourceMappingURL=style.css.map */