@charset "UTF-8";
/*===== base =====*/
/* -------------
    $ 變數
------------- */
/* ---------------------------------
    import font & font-face & 字形
------------------------------------ */
/* import font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Rubik+Mono+One&display=swap");
/* font-face */
@font-face {
  font-family: "SamsungOneTCN 450";
  src: url("../fonts/SamsungOne-450.woff2") format("woff2"), url("../fonts/SamsungOne-450.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SamsungOneSCN 600";
  src: url("../fonts/SamsungOneSCN-600.woff2") format("woff2"), url("../fonts/SamsungOneSCN-600.woff") format("woff"), url("../fonts/SamsungOneSCN-600.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Samsung Sharp Sans";
  src: url("../fonts/SamsungSharpSans-Regular.woff2") format("woff2"), url("../fonts/SamsungSharpSans-Regular.woff") format("woff"), url("../fonts/SamsungSharpSans-Regular.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Samsung Sharp Sans Medium";
  src: url("../fonts/SamsungSharpSans-Medium.woff2") format("woff2"), url("../fonts/SamsungSharpSans-Medium.woff") format("woff"), url("../fonts/SamsungSharpSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Samsung Sharp Sans Bold";
  src: url("../fonts/SamsungSharpSans-Bold.woff2") format("woff2"), url("../fonts/SamsungSharpSans-Bold.woff") format("woff"), url("../fonts/SamsungSharpSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* 特殊字形 */
._enFont {
  font-family: "Samsung Sharp Sans Medium", "SamsungOneTCN 450";
}

/* -------------
     mixin
------------- */
/* -------------
    function
------------- */
.example {
  font-size: 1.5em;
  padding: 0.5em;
}

/*
*******************************************************************************************************************************
----------  RESET
*******************************************************************************************************************************
*/
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,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

/* -----------------
    media query
-------------------- */
@media screen and (max-width: 768px) {
  .example {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .example {
    font-size: 16px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1200px) {
  .example {
    font-size: 24px;
  }
}

/* -------------
    keyframes
------------- */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* -------------
    ALL USE
------------- */
/* html & body
-------------------*/
html, body {
  width: 100%;
  font-family: "Samsung Sharp Sans Medium", "SamsungOneTCN 450", "Noto Sans", "微軟正黑體", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "新細明體", "蘋果儷黑體", Verdana, sans-serif !important;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: max(12px, 3.3333333333vw);
  }
}
@media screen and (max-width: 1024px) {
  html, body {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1366px) {
  html, body {
    font-size: 16px;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  overflow-x: hidden;
}

/* 其他通用設定
-------------------*/
img {
  max-width: 100%;
  height: auto;
}

a {
  display: block;
  text-decoration: none;
}

.c {
  clear: both;
}

.table {
  display: table;
}

.tr {
  display: table-row;
}

.th,
.td {
  display: table-cell;
  vertical-align: middle;
}

.hide {
  display: none !important;
}

.ab {
  position: absolute;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

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

@media screen and (max-width: 768px) {
  ._pc {
    display: none !important;
  }
}

.autoW {
  width: auto;
}

/*===== 主結構 =====*/
/* loading -----------------------------------------------------------*/
.loading {
  background: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading .inner {
  display: inline-block;
  vertical-align: middle;
}
.loading .line {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0 5px;
}
@media screen and (max-width: 768px) {
  .loading .line {
    width: 3vw;
    height: 3vw;
  }
}
.loading:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}

.loading .line:nth-last-child(1) {
  animation: loadingC 0.6s 0.1s linear infinite;
}

.loading .line:nth-last-child(2) {
  animation: loadingC 0.6s 0.2s linear infinite;
}

.loading .line:nth-last-child(3) {
  animation: loadingC 0.6s 0.3s linear infinite;
}

@keyframes loadingC {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 50%);
  }
  100% {
    transform: translate(0, 0);
  }
}
/* lightbox
--------------------------------------------------------------------------------------*/
.lb {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  text-align: center;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.lb.is-dim-light {
  background: rgba(0, 0, 0, 0.45);
}
.lb:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.lb .btn_x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.3333333333vw;
  height: 8.3333333333vw;
  padding: 0;
  border: 0;
  background: transparent;
  position: absolute;
  top: 4.1666666667vw;
  right: 4.1666666667vw;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 2;
  color: #000;
  font-size: 5vw;
  line-height: 1;
}
.lb .btn_x img {
  display: block;
  width: 100%;
  height: auto;
}
.lb .btn_x i::before {
  font-size: 120%;
}
.lb .btn_x:hover {
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .lb .btn_x {
    width: 2.5rem;
    height: 2.5rem;
    top: 1.25rem;
    right: 1.25rem;
    transform: none;
    transition: none;
  }
  .lb .btn_x i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transform: rotate(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .lb .btn_x i::before {
    font-size: 2.125rem;
  }
  .lb .btn_x:hover {
    transform: none;
  }
  .lb .btn_x:hover i {
    transform: rotate(90deg);
  }
}

.lbbox {
  width: 80%;
  margin: auto;
  max-width: 50rem;
  box-sizing: border-box;
  position: relative;
}
.lbbox.lb-phone-gallery {
  width: 92.5%;
  background: #fff;
  border-radius: 4.1666666667vw;
  padding: 7.7777777778vw 4.4444444444vw 5.5555555556vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery {
    width: 90%;
    height: calc(100vh - 5rem);
    max-width: 80.625rem;
    max-height: 47.5rem;
    padding: 3.125rem 2.5rem 2.5rem;
    border-radius: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slick-list {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slick-track {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
.lbbox.lb-phone-gallery .slider .slide {
  outline: none;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    float: none;
    height: 100%;
    padding: 0 4.375rem;
    box-sizing: border-box;
  }
}
.lbbox.lb-phone-gallery .slider .slide .slide-tit {
  margin: 0 0 4.1666666667vw;
  padding: 0 4.1666666667vw;
  font-size: 4.4444444444vw;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  color: #000;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slide .slide-tit {
    flex-shrink: 0;
    margin-bottom: 1.875rem;
    padding: 0;
    font-size: 1.5rem;
    text-align: center;
  }
}
.lbbox.lb-phone-gallery .slider .slide img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slide img {
    width: auto;
    max-width: 38.9375rem;
    max-height: 100%;
    min-height: 0;
    object-fit: contain;
  }
}
.lbbox.lb-phone-gallery .slider .slide .slide-desc {
  margin: 3.3333333333vw 0 0;
  padding: 0 4.1666666667vw;
  font-size: 3.3333333333vw;
  line-height: 1.5;
  text-align: center;
  color: #000;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slide .slide-desc {
    flex-shrink: 0;
    margin-top: 1.875rem;
    padding: 0;
    font-size: 1.125rem;
  }
}
.lbbox.lb-phone-gallery .slider .slick-prev,
.lbbox.lb-phone-gallery .slider .slick-next {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slick-prev,
  .lbbox.lb-phone-gallery .slider .slick-next {
    display: block !important;
    z-index: 2;
    width: 2.625rem;
    height: 2.625rem;
    border: 1px solid #d0d0d0;
    border-radius: 50%;
    background: #fff;
  }
  .lbbox.lb-phone-gallery .slider .slick-prev::before,
  .lbbox.lb-phone-gallery .slider .slick-next::before {
    content: "";
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    margin: 0 auto;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    opacity: 1;
  }
  .lbbox.lb-phone-gallery .slider .slick-prev:hover, .lbbox.lb-phone-gallery .slider .slick-prev:focus,
  .lbbox.lb-phone-gallery .slider .slick-next:hover,
  .lbbox.lb-phone-gallery .slider .slick-next:focus {
    border-color: #000;
    background: #fff;
  }
  .lbbox.lb-phone-gallery .slider .slick-prev.slick-disabled,
  .lbbox.lb-phone-gallery .slider .slick-next.slick-disabled {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slick-prev {
    left: -1.125rem;
  }
  .lbbox.lb-phone-gallery .slider .slick-prev::before {
    transform: rotate(-135deg);
  }
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slick-next {
    right: -1.125rem;
  }
  .lbbox.lb-phone-gallery .slider .slick-next::before {
    transform: rotate(45deg);
  }
}
.lbbox.lb-phone-gallery .slider .slick-dots {
  position: static;
  margin: 3.8888888889vw 0 0;
  padding: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
  }
}
.lbbox.lb-phone-gallery .slider .slick-dots li {
  width: 2.2222222222vw;
  height: 2.2222222222vw;
  margin: 0 1.1111111111vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slick-dots li {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 0.5rem;
  }
}
.lbbox.lb-phone-gallery .slider .slick-dots li button {
  width: 2.2222222222vw;
  height: 2.2222222222vw;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slick-dots li button {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.lbbox.lb-phone-gallery .slider .slick-dots li button:before {
  content: "";
  width: 2.2222222222vw;
  height: 2.2222222222vw;
  border-radius: 50%;
  background: #d0d0d0;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-phone-gallery .slider .slick-dots li button:before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.lbbox.lb-phone-gallery .slider .slick-dots li.slick-active button:before {
  background: #000;
}

.lbbox.lb-remind {
  width: 92.5%;
  background: #fff;
  padding: 11.1111111111vw 5.5555555556vw 8.3333333333vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-remind {
    padding: 6.25rem 2.5rem 6.25rem;
  }
}
.lbbox.lb-remind .icon {
  width: 16.6666666667vw;
  height: 16.6666666667vw;
  margin: 0 auto 12.5vw;
  border-radius: 50%;
  background: #d7d7d7;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-remind .icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 3.75rem;
  }
}
.lbbox.lb-remind .icon span {
  font-size: 11.1111111111vw;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans";
}
@media screen and (min-width: 768px) {
  .lbbox.lb-remind .icon span {
    font-size: 3.875rem;
  }
}
.lbbox.lb-remind .txt {
  font-size: 3.6111111111vw;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-remind .txt {
    font-size: 1.1875rem;
    max-width: 25rem;
    margin: 0 auto;
  }
}
.lbbox.lb-remind .btnbox {
  display: flex;
  flex-direction: column;
  gap: 3.3333333333vw;
  margin-top: 11.1111111111vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-remind .btnbox {
    max-width: 25rem;
    margin: 0 auto;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}
.lbbox.lb-remind .btnbox .mybtn2 {
  width: 100%;
}
.lbbox.lb-remind .btn_x {
  top: 1.3888888889vw;
  right: 1.3888888889vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-remind .btn_x {
    top: 0.625rem;
    right: 0.625rem;
  }
}

.lbbox.lb-reserve {
  width: 92.5%;
  max-height: calc(100vh - 11.1111111111vw);
  overflow-y: auto;
  background: #fff;
  padding: 11.1111111111vw 4.8611111111vw;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve {
    padding: 5rem 4.375rem 3.75rem;
    max-height: calc(100vh - 5rem);
  }
}
.lbbox.lb-reserve .lb-tit {
  margin: 0 0 5vw;
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .lb-tit {
    font-size: 1.5625rem;
    margin-bottom: 1.25rem;
  }
}
.lbbox.lb-reserve .reserve-form .reserve-item {
  padding: 6.9444444444vw 0;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .reserve-item {
    padding: 1.25rem 0;
  }
}
.lbbox.lb-reserve .reserve-form .reserve-item .label {
  font-size: 3.0555555556vw;
  margin-bottom: 1.6666666667vw;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .reserve-item .label {
    font-size: 1rem;
    margin-bottom: 0.3125rem;
  }
}
.lbbox.lb-reserve .reserve-form .reserve-item .label a {
  color: #2289ff !important;
  text-decoration: underline !important;
  display: inline !important;
}
.lbbox.lb-reserve .reserve-form .reserve-item .label a:hover {
  text-decoration: none !important;
}
.lbbox.lb-reserve .reserve-form .reserve-item--store .label {
  color: #2289ff;
}
.lbbox.lb-reserve .reserve-form .reserve-item--store .store-info {
  font-size: 3.6111111111vw;
  line-height: 1.3;
  color: #2289ff;
  border-bottom: 1px solid #666666;
  padding-bottom: 2.0833333333vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .reserve-item--store .store-info {
    font-size: 1.1875rem;
    padding-bottom: 0.9375rem;
  }
}
.lbbox.lb-reserve .reserve-form .reserve-item--date .label {
  color: #505050;
}
.lbbox.lb-reserve .reserve-form .reserve-item--date .selectbox {
  position: relative;
  border-bottom: 1px solid #666666;
}
.lbbox.lb-reserve .reserve-form .reserve-item--date .selectbox select {
  width: 100%;
  padding: 1.6666666667vw 5vw 1.6666666667vw 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 3.6111111111vw;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .reserve-item--date .selectbox select {
    font-size: 1.1875rem;
    padding: 0.5rem 1.875rem 0.5rem 0;
  }
}
.lbbox.lb-reserve .reserve-form .reserve-item--date .selectbox select.is-placeholder {
  color: #505050;
}
.lbbox.lb-reserve .reserve-form .reserve-item--date .selectbox select option {
  color: #000;
}
.lbbox.lb-reserve .reserve-form .reserve-item--date .selectbox i {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 2.7777777778vw;
  color: #000;
  pointer-events: none;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .reserve-item--date .selectbox i {
    font-size: 1.1875rem;
  }
}
.lbbox.lb-reserve .reserve-form .reserve-item--time, .lbbox.lb-reserve .reserve-form .reserve-item--transfer {
  display: flex;
  align-items: flex-start;
  gap: 2.7777777778vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .reserve-item--time, .lbbox.lb-reserve .reserve-form .reserve-item--transfer {
    gap: 2.5rem;
  }
}
.lbbox.lb-reserve .reserve-form .reserve-item--time .label, .lbbox.lb-reserve .reserve-form .reserve-item--transfer .label {
  flex-shrink: 0;
  margin: 0.5555555556vw 0 0;
  margin-bottom: 0;
  color: #505050;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .reserve-item--time .label, .lbbox.lb-reserve .reserve-form .reserve-item--transfer .label {
    margin-top: 0rem;
  }
}
.lbbox.lb-reserve .reserve-form .reserve-item--time .radiogroup, .lbbox.lb-reserve .reserve-form .reserve-item--transfer .radiogroup {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .reserve-item--time .radiogroup, .lbbox.lb-reserve .reserve-form .reserve-item--transfer .radiogroup {
    gap: 0.625rem;
  }
}
.lbbox.lb-reserve .reserve-form .reserve-item--time .radiogroup--row, .lbbox.lb-reserve .reserve-form .reserve-item--transfer .radiogroup--row {
  flex-direction: row;
  align-items: center;
  gap: 5.5555555556vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .reserve-item--time .radiogroup--row, .lbbox.lb-reserve .reserve-form .reserve-item--transfer .radiogroup--row {
    gap: 3.75rem;
  }
}
.lbbox.lb-reserve .reserve-form .reserve-item--time .label {
  width: 23.6111111111vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .reserve-item--time .label {
    width: 6.25rem;
  }
}
.lbbox.lb-reserve .reserve-form .reserve-item--transfer {
  align-items: center;
  border-bottom: 0;
}
.lbbox.lb-reserve .reserve-form .reserve-item--transfer .label {
  width: 48.6111111111vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .reserve-item--transfer .label {
    width: 15rem;
  }
}
.lbbox.lb-reserve .reserve-form .radiobox {
  display: flex;
  align-items: flex-start;
  gap: 1.3888888889vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .radiobox {
    gap: 0.625rem;
  }
}
.lbbox.lb-reserve .reserve-form .radiobox input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lbbox.lb-reserve .reserve-form .radiobox .radiostyle {
  position: relative;
  flex-shrink: 0;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  margin-top: 0.2777777778vw;
  border: 1px solid #505050;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .radiobox .radiostyle {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0rem;
  }
}
.lbbox.lb-reserve .reserve-form .radiobox .radiostyle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.7777777778vw;
  height: 2.7777777778vw;
  border-radius: 50%;
  background: #0077c8;
  opacity: 0;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .radiobox .radiostyle::before {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.lbbox.lb-reserve .reserve-form .radiobox input[type=radio]:checked + .radiostyle {
  border-color: #0077c8;
}
.lbbox.lb-reserve .reserve-form .radiobox input[type=radio]:checked + .radiostyle::before {
  opacity: 1;
}
.lbbox.lb-reserve .reserve-form .radiobox input[type=radio]:disabled + .radiostyle {
  border-color: #c8c8c8;
  background: #f5f5f5;
  cursor: not-allowed;
}
.lbbox.lb-reserve .reserve-form .radiobox .radiotxt {
  flex: 1;
  font-size: 3.6111111111vw;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .radiobox .radiotxt {
    font-size: 1.1875rem;
  }
}
.lbbox.lb-reserve .reserve-form .radiobox.is-disabled .radiotxt, .lbbox.lb-reserve .reserve-form .radiobox:has(input:disabled) .radiotxt {
  color: #a8a8a8;
  cursor: not-allowed;
}
.lbbox.lb-reserve .reserve-form .btnbox {
  margin-top: 5.5555555556vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .btnbox {
    margin-top: 1.875rem;
  }
}
.lbbox.lb-reserve .reserve-form .btnbox .mybtn2 {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve .reserve-form .btnbox .mybtn2 {
    max-width: 18.75rem;
    margin: auto;
  }
}

.lbbox.lb-reserve-summary {
  width: 92.5%;
  max-height: calc(100vh - 11.1111111111vw);
  overflow-y: auto;
  background: #fff;
  padding: 11.1111111111vw 4.8611111111vw;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-summary {
    padding: 5rem 4.375rem 3.75rem;
    max-height: calc(100vh - 5rem);
  }
}
.lbbox.lb-reserve-summary .lb-tit {
  margin: 0 0 5vw;
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-summary .lb-tit {
    font-size: 1.5625rem;
    margin-bottom: 1.25rem;
  }
}
.lbbox.lb-reserve-summary .reserve-summary .reserve-item {
  padding: 6.9444444444vw 0;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-summary .reserve-summary .reserve-item {
    padding: 1.25rem 0;
  }
}
.lbbox.lb-reserve-summary .reserve-summary .reserve-item .label {
  font-size: 3.0555555556vw;
  margin-bottom: 1.6666666667vw;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-summary .reserve-summary .reserve-item .label {
    font-size: 1rem;
    margin-bottom: 0.3125rem;
  }
}
.lbbox.lb-reserve-summary .reserve-summary .reserve-item--store .label {
  color: #2289ff;
}
.lbbox.lb-reserve-summary .reserve-summary .reserve-item--store .store-info {
  font-size: 3.6111111111vw;
  line-height: 1.3;
  color: #2289ff;
  border-bottom: 1px solid #666666;
  padding-bottom: 2.0833333333vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-summary .reserve-summary .reserve-item--store .store-info {
    font-size: 1.1875rem;
    padding-bottom: 0.9375rem;
  }
}
.lbbox.lb-reserve-summary .reserve-summary .reserve-item--store .store-info .store-name,
.lbbox.lb-reserve-summary .reserve-summary .reserve-item--store .store-info .store-addr {
  margin: 0;
}
.lbbox.lb-reserve-summary .reserve-summary .reserve-item--date .label, .lbbox.lb-reserve-summary .reserve-summary .reserve-item--time .label {
  color: #505050;
}
.lbbox.lb-reserve-summary .reserve-summary .reserve-item--date .value, .lbbox.lb-reserve-summary .reserve-summary .reserve-item--time .value {
  margin: 0;
  padding-bottom: 2.0833333333vw;
  border-bottom: 1px solid #666666;
  font-size: 3.6111111111vw;
  line-height: 1.4;
  color: #000;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-summary .reserve-summary .reserve-item--date .value, .lbbox.lb-reserve-summary .reserve-summary .reserve-item--time .value {
    font-size: 1.1875rem;
    padding-bottom: 0.9375rem;
  }
}
.lbbox.lb-reserve-summary .reserve-summary .reserve-note {
  margin: 5.5555555556vw 0 0;
  font-size: 3.6111111111vw;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-summary .reserve-summary .reserve-note {
    font-size: 1.1875rem;
    margin-top: 1.875rem;
  }
}
.lbbox.lb-reserve-summary .reserve-summary .reserve-note a {
  display: inline;
  color: #2289ff;
  text-decoration: underline;
}
.lbbox.lb-reserve-summary .reserve-summary .btnbox {
  margin-top: 8.3333333333vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-summary .reserve-summary .btnbox {
    margin-top: 2.5rem;
  }
}
.lbbox.lb-reserve-summary .reserve-summary .btnbox .btn-buymore {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.4722222222vw 2.7777777778vw 2.0833333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-summary .reserve-summary .btnbox .btn-buymore {
    padding: 1.25rem 1.25rem 0.9375rem;
    max-width: 25rem;
    margin: auto;
  }
}
.lbbox.lb-reserve-summary .reserve-summary .btnbox .btn-buymore .btn-txt {
  line-height: 1.4;
  font-size: 3.6111111111vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-summary .reserve-summary .btnbox .btn-buymore .btn-txt {
    font-size: 1rem;
  }
}
.lbbox.lb-reserve-summary .btn_x {
  top: 2.7777777778vw;
  right: 2.7777777778vw;
}

.lbbox.lb-reserve-complete {
  width: 92.5%;
  max-height: calc(100vh - 11.1111111111vw);
  overflow-y: auto;
  background: #fff;
  padding: 13.8888888889vw 4.8611111111vw;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-complete {
    padding: 5rem 4.375rem 3.75rem;
    max-height: calc(100vh - 5rem);
  }
}
.lbbox.lb-reserve-complete .lb-tit {
  margin: 0 0 11.1111111111vw;
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-complete .lb-tit {
    font-size: 1.5625rem;
    margin-bottom: 2.5rem;
  }
}
.lbbox.lb-reserve-complete .complete-msg,
.lbbox.lb-reserve-complete .complete-contact {
  font-size: 3.8888888889vw;
  line-height: 1.5;
  color: #000;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-complete .complete-msg,
  .lbbox.lb-reserve-complete .complete-contact {
    font-size: 1.1875rem;
  }
}
.lbbox.lb-reserve-complete .complete-msg .em,
.lbbox.lb-reserve-complete .complete-contact .em {
  color: #2289ff;
}
.lbbox.lb-reserve-complete .complete-contact {
  margin-top: 5.5555555556vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-complete .complete-contact {
    margin-top: 1.875rem;
  }
}
.lbbox.lb-reserve-complete .btnbox {
  display: flex;
  flex-direction: column;
  gap: 3.3333333333vw;
  margin-top: 8.3333333333vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-complete .btnbox {
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
}
.lbbox.lb-reserve-complete .btnbox--stack .mybtn2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-complete .btnbox--stack .mybtn2 {
    max-width: 25rem;
    margin: auto;
  }
}
.lbbox.lb-reserve-complete .btnbox .btn-buymore {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.4722222222vw 2.7777777778vw 2.7777777778vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-complete .btnbox .btn-buymore {
    padding: 1.25rem 1.25rem 0.9375rem;
  }
}
.lbbox.lb-reserve-complete .btnbox .btn-buymore .btn-txt {
  line-height: 1.4;
  font-size: 3.6111111111vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-reserve-complete .btnbox .btn-buymore .btn-txt {
    font-size: 1rem;
  }
}

.lbbox.lb-cancel {
  width: 92.5%;
  background: #fff;
  padding: 13.8888888889vw 6.9444444444vw;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-cancel {
    padding: 5rem 4.375rem;
  }
}
.lbbox.lb-cancel .lb-head {
  display: flex;
  align-items: center;
  gap: 2.7777777778vw;
  margin-bottom: 6.9444444444vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-cancel .lb-head {
    gap: 0.75rem;
    margin-bottom: 3.125rem;
  }
}
.lbbox.lb-cancel .lb-head .icon {
  flex-shrink: 0;
  width: 6.9444444444vw;
  height: 6.9444444444vw;
  border-radius: 50%;
  background: #d7d7d7;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-cancel .lb-head .icon {
    width: 2rem;
    height: 2rem;
  }
}
.lbbox.lb-cancel .lb-head .icon span {
  font-size: 5vw;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-cancel .lb-head .icon span {
    font-size: 1.5rem;
  }
}
.lbbox.lb-cancel .lb-head .lb-tit {
  margin: 0;
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-cancel .lb-head .lb-tit {
    font-size: 1.5625rem;
  }
}
.lbbox.lb-cancel .cancel-form .field .label {
  display: block;
  margin-bottom: 1.3888888889vw;
  font-size: 3.0555555556vw;
  line-height: 1.4;
  color: #505050;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-cancel .cancel-form .field .label {
    margin-bottom: 0.3125rem;
    font-size: 1rem;
  }
}
.lbbox.lb-cancel .cancel-form .selectbox {
  position: relative;
  border-bottom: 1px solid #666666;
}
.lbbox.lb-cancel .cancel-form .selectbox select {
  width: 100%;
  padding: 1.6666666667vw 5vw 1.6666666667vw 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 3.6111111111vw;
  line-height: 1.4;
  color: #505050;
  appearance: none;
}
.lbbox.lb-cancel .cancel-form .selectbox select.is-placeholder {
  color: #505050;
}
.lbbox.lb-cancel .cancel-form .selectbox select option {
  color: #000;
}
.lbbox.lb-cancel .cancel-form .selectbox i {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 2.7777777778vw;
  color: #000;
  pointer-events: none;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .lbbox.lb-cancel .cancel-form .selectbox select {
    padding: 0.5rem 1.875rem 0.5rem 0;
    font-size: 1.1875rem;
  }
  .lbbox.lb-cancel .cancel-form .selectbox i {
    font-size: 1.1875rem;
  }
}
.lbbox.lb-cancel .cancel-form .cancel-msg {
  margin: 12.5vw 0 0;
  font-size: 3.6111111111vw;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}
.lbbox.lb-cancel .cancel-form .cancel-msg .em {
  color: #d62e2e;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-cancel .cancel-form .cancel-msg {
    margin: 3.125rem 0 0;
    font-size: 1.1875rem;
  }
}
.lbbox.lb-cancel .btnbox {
  display: flex;
  flex-direction: column;
  gap: 3.3333333333vw;
  margin-top: 8.3333333333vw;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-cancel .btnbox {
    gap: 1.25rem;
    margin-top: 2.8125rem;
  }
}
.lbbox.lb-cancel .btnbox--stack .mybtn2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lbbox.lb-cancel .btnbox--stack .mybtn2 {
    max-width: 25rem;
    margin: auto;
  }
}

/* -------------
    共用元件
------------- */
.breadcrumb {
  padding: 4.1666666667vw 0;
  background: #fff;
  border-top: 1px solid #c8c8c8;
  box-shadow: inset 0 -1.3888888889vw 2.0833333333vw -1.3888888889vw rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 1.25rem 0 0.9375rem;
    box-shadow: none;
    border-bottom: 1px solid #c8c8c8;
  }
}
@media screen and (min-width: 768px) {
  .breadcrumb .container {
    max-width: 1390px;
  }
}
.breadcrumb .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb .item {
  display: flex;
  align-items: center;
  font-size: 3.8888888889vw;
  line-height: 1.7;
  color: #000;
}
@media screen and (min-width: 768px) {
  .breadcrumb .item {
    font-size: 1rem;
  }
}
.breadcrumb .item .icon {
  flex-shrink: 0;
  width: 4.7222222222vw;
  height: 4.7222222222vw;
  margin: 0 0.6944444444vw;
  fill: #8f8f8f;
  position: relative;
  top: -0.4166666667vw;
}
@media screen and (min-width: 768px) {
  .breadcrumb .item .icon {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 0.3125rem;
    top: -0.125rem;
  }
}
.breadcrumb .item a {
  color: #000;
  text-decoration: none;
}
.breadcrumb .item.is-current {
  color: #696969;
}
.breadcrumb .item.is-current .icon {
  display: none;
}

.mybtn {
  min-width: 25vw;
  padding: 3.4722222222vw 0 2.7777777778vw;
  border-radius: 999px;
  background: #2289ff;
  font-size: 3.8888888889vw;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .mybtn {
    font-size: 1.1713030747vw;
    padding: 1.0980966325vw 0 0.7320644217vw;
  }
}

.mybtn2 {
  flex: 1;
  min-width: 0;
  padding: 3.4722222222vw 2.0833333333vw 2.7777777778vw;
  border-radius: 999px;
  font-size: 3.6111111111vw;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}
.mybtn2._style1 {
  border: 1px solid #000;
  background: #fff;
  color: #000;
}
@media screen and (min-width: 768px) {
  .mybtn2._style1:hover {
    background: #000;
    color: #fff;
  }
}
.mybtn2._style2 {
  border: 1px solid #2289ff;
  background: #2289ff;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .mybtn2._style2:hover {
    border: 1px solid #015fc8;
    background: #015fc8;
  }
}
@media screen and (min-width: 768px) {
  .mybtn2 {
    font-size: 1rem;
    padding: 0.9375rem 0.625rem 0.625rem;
  }
}

.btnover {
  position: relative;
}
.btnover::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  opacity: 0;
}
.btnover:hover > img {
  opacity: 0;
}
.btnover:hover:after {
  opacity: 1;
}

/* ====================================================================================
    header
======================================================================================*/
body.is-stepnav-more-open {
  overflow: hidden;
}

#static_header_gnb {
  border-bottom: 1px solid #d3d3d3;
}

#myheader {
  position: static;
  width: 100%;
  z-index: auto;
  background: #fff;
}
#myheader.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 121;
  background: #fff;
}
@media screen and (min-width: 768px) {
  #myheader {
    position: relative;
  }
  #myheader.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 121;
    background: #fff;
  }
}
#myheader .stepnav-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
}
@media screen and (min-width: 768px) {
  #myheader .stepnav-wrap {
    position: static;
    border-bottom: 1px solid #d3d3d3;
  }
}
#myheader .pagehead {
  padding: 2.7777777778vw;
  text-align: center;
  background: #fff;
  z-index: 110;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  #myheader .pagehead {
    padding: 1.125rem 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  #myheader .pagehead {
    padding: 1.5rem 0 1.25rem;
    text-align: left;
  }
}
#myheader .pagehead.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 121;
}
@media screen and (min-width: 768px) {
  #myheader .pagehead .container {
    width: 94%;
    max-width: 1400px;
  }
}
#myheader .pagehead .title {
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  #myheader .pagehead .title {
    font-size: 1.875rem;
    line-height: 1.28;
  }
}
@media screen and (min-width: 768px) {
  #myheader .pagehead .title {
    font-size: 1.1875rem;
    margin-bottom: 0;
  }
}
#myheader .pagehead .desc {
  font-size: 4.5833333333vw;
  line-height: 1.5;
  color: #000;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  #myheader .pagehead .desc {
    margin-top: 0.125rem;
    font-size: 1.4375rem;
    line-height: 1.32;
  }
}
@media screen and (min-width: 768px) {
  #myheader .pagehead .desc {
    font-size: 1.1875rem;
  }
}
#myheader .pagehead .copy {
  margin-top: 1.1111111111vw;
  font-size: 1.8055555556vw;
  line-height: 1.5;
  color: #030000;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  #myheader .pagehead .copy {
    margin-top: 0.5rem;
    font-size: 0.625rem;
    line-height: 1.35;
  }
}
@media screen and (min-width: 768px) {
  #myheader .pagehead .copy {
    font-size: 0.6875rem;
    margin-top: 0.25rem;
  }
}

.stepnav {
  position: relative;
  z-index: 101;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .stepnav .container {
    width: 100%;
    max-width: 1440px;
    overflow: hidden;
  }
}
.stepnav .stepnav-arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .stepnav .stepnav-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 0;
    background: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity 0.25s ease;
  }
  .stepnav .stepnav-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1rem;
    border-top: 0.125rem solid #000;
    border-left: 0.125rem solid #000;
  }
  .stepnav .stepnav-arrow--prev {
    left: 0.375rem;
  }
  .stepnav .stepnav-arrow--prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
  }
  .stepnav .stepnav-arrow--next {
    right: 0.375rem;
  }
  .stepnav .stepnav-arrow--next::before {
    transform: translate(-65%, -50%) rotate(135deg);
  }
  .stepnav .stepnav-arrow:disabled {
    opacity: 0.25;
    cursor: default;
  }
}
@media screen and (min-width: 768px) {
  .stepnav.is-scrollable .stepnav-arrow {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .stepnav:not(.has-prev) .stepnav-arrow--prev {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .stepnav:not(.has-next) .stepnav-arrow--next {
    display: none;
  }
}
.stepnav .stepnav-bar-active {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background: #000;
}
.stepnav .list {
  display: flex;
  justify-content: space-between;
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .stepnav .list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 0.3125rem 0 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .stepnav .list::-webkit-scrollbar {
    display: none;
  }
}
.stepnav .item {
  flex: 1;
  min-width: 0;
  padding: 4.1666666667vw 0 2.7777777778vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .stepnav .item {
    flex: 0 0 auto;
    padding: 0.5rem 0 0.5rem;
    margin: 0 1.25rem;
  }
}
.stepnav .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5555555556vw;
  background: #d0d0d0;
}
@media screen and (min-width: 768px) {
  .stepnav .item::before {
    top: auto;
    bottom: 0;
    left: 50%;
    height: 0.125rem;
    background: #000;
    width: 0;
    transform: translateX(-50%);
    transition: width 0.25s ease;
  }
}
.stepnav .item a,
.stepnav .item .stepnav-more-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1111111111vw;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: #8f8f8f;
  cursor: pointer;
  font: inherit;
}
@media screen and (min-width: 768px) {
  .stepnav .item a,
  .stepnav .item .stepnav-more-toggle {
    flex-direction: row;
    gap: 0;
    color: #000;
    white-space: nowrap;
  }
}
.stepnav .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.6666666667vw;
  height: 7.6388888889vw;
  color: #8f8f8f;
}
@media screen and (min-width: 768px) {
  .stepnav .item .icon {
    display: none;
  }
}
.stepnav .item .icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.stepnav .item .txt {
  font-size: 2.2222222222vw;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .stepnav .item .txt {
    font-size: 1rem;
    font-weight: bold;
  }
}
@media screen and (min-width: 768px) {
  .stepnav .item:hover::before, .stepnav .item.is-active::before {
    width: 100%;
  }
}
.stepnav .item.is-active a,
.stepnav .item.is-active .stepnav-more-toggle {
  color: #000;
}
.stepnav .item.is-active .icon {
  color: #000;
}
.stepnav .item.is-active::before {
  background: #000;
}
@media screen and (min-width: 768px) {
  .stepnav .item.is-active a {
    font-weight: 700;
  }
}
.stepnav .item.is-open .stepnav-more-toggle {
  color: #000;
}
.stepnav .item.is-open .icon {
  color: #000;
}
.stepnav .item[data-p=preorder] .icon {
  width: 8.0555555556vw;
  margin-left: -0.6944444444vw;
}
.stepnav .item[data-p=search] .icon {
  width: 5.6944444444vw;
}
.stepnav .item[data-p=rule] .icon {
  width: 6.1111111111vw;
}
.stepnav .item[data-p=offer] .icon {
  width: 6.25vw;
}
.stepnav .item[data-p=more] .icon {
  flex-direction: column;
  gap: 1.1111111111vw;
  width: 5.5555555556vw;
}
.stepnav .item[data-p=more] .icon .bar {
  display: block;
  width: 100%;
  height: 0.5555555556vw;
  background: currentColor;
}
.stepnav .item.item--extra {
  display: none;
}
@media screen and (min-width: 768px) {
  .stepnav .item.item--extra {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .stepnav .item.item--more-trigger {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .stepnav-more {
    display: none;
  }
}
.stepnav-more .stepnav-more-dim {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: var(--stepnav-h, 0);
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  z-index: 99;
}
.stepnav-more .stepnav-more-panel {
  visibility: hidden;
  position: fixed;
  right: 0;
  left: 0;
  bottom: var(--stepnav-h, 0);
  width: 100%;
  max-height: 60vh;
  overflow-y: auto;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -1.1111111111vw 3.3333333333vw rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.25s ease, visibility 0.25s;
  z-index: 100;
}
.stepnav-more .stepnav-more-list {
  margin: 0;
  padding: 2.2222222222vw 0;
  list-style: none;
}
.stepnav-more .stepnav-more-list li {
  border-bottom: 1px solid #f0f0f0;
}
.stepnav-more .stepnav-more-list li:last-child {
  border-bottom: 0;
}
.stepnav-more .stepnav-more-list a {
  display: block;
  padding: 3.8888888889vw 5.5555555556vw;
  font-size: 3.8888888889vw;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  text-decoration: none;
}
.stepnav-more.is-open .stepnav-more-dim {
  display: block;
}
.stepnav-more.is-open .stepnav-more-panel {
  visibility: visible;
  transform: translateY(0);
}

/* ====================================================================================
    footer
======================================================================================*/
#static_footer {
  line-height: 1.5;
}
#static_footer .gb-footer-2019__sitemap-items .gb-footer-2019__item-list li {
  line-height: 1.75;
}
#static_footer .footer .footer-column {
  border-top: none;
}

.backtop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  z-index: 10;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .backtop {
    width: 100%;
    text-align: center;
    position: relative;
    top: auto;
    right: auto;
    padding: 0;
    margin-top: 1.25rem;
  }
}
.backtop p {
  display: inline-block;
  font-size: 14px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .backtop p {
    font-size: 4.1666666667vw;
  }
}
.backtop:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  margin-left: 5px;
  margin-top: 3px;
  transform: rotate(-45deg);
}

/* -------------
    Layout結構
------------- */
.wrapper {
  width: 100%;
  margin: 0 auto;
}

section {
  width: 100%;
}

.container {
  width: 87%;
  max-width: 1396px;
  margin: 0 auto;
  position: relative;
}

/* ====================================================================================
    index
======================================================================================*/
/* ====================================================================================
    預購頁面
======================================================================================*/
.preorder-cartbox {
  position: fixed;
  left: 0;
  bottom: var(--stepnav-h, 0);
  z-index: 998;
  width: 100%;
  background: #fff;
  border-top: 1px solid #c8c8c8;
  transform: translate3d(0, 120%, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 -0.5555555556vw 2.2222222222vw rgba(0, 0, 0, 0);
  will-change: transform, opacity, box-shadow;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.45s ease-out, box-shadow 0.55s ease-out, visibility 0s linear 0.55s;
}
@media screen and (min-width: 1024px) {
  .preorder-cartbox {
    position: absolute;
    top: 0.625rem;
    right: max(1.25rem, (100vw - 1396px) / 2 + 1.875rem);
    bottom: auto;
    left: auto;
    z-index: 122;
    width: auto;
    min-width: 20rem;
    background: transparent;
    border-top: 0;
    transform: translate3d(0, -0.5rem, 0);
    box-shadow: none;
    will-change: transform, opacity;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .preorder-cartbox {
    position: absolute;
    top: 0.625rem;
    right: 3%;
    bottom: auto;
    left: auto;
    z-index: 122;
    width: auto;
    min-width: 16.25rem;
    background: transparent;
    border-top: 0;
    transform: translate3d(0, -0.5rem, 0);
    box-shadow: none;
    will-change: transform, opacity;
  }
}
.preorder-cartbox.is-visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  box-shadow: 0 -1.3888888889vw 3.8888888889vw rgba(0, 0, 0, 0.16);
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.45s ease-out, box-shadow 0.55s ease-out, visibility 0s linear 0s;
}
@media screen and (min-width: 1024px) {
  .preorder-cartbox.is-visible {
    box-shadow: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .preorder-cartbox.is-visible {
    box-shadow: none;
  }
}
.preorder-cartbox.is-hidden {
  transform: translate3d(0, 120%, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 -0.5555555556vw 2.2222222222vw rgba(0, 0, 0, 0);
}
@media screen and (min-width: 1024px) {
  .preorder-cartbox.is-hidden {
    transform: translate3d(0, -0.5rem, 0);
    box-shadow: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .preorder-cartbox.is-hidden {
    transform: translate3d(0, -0.5rem, 0);
    box-shadow: none;
  }
}
@media screen and (min-width: 1024px) {
  .preorder-cartbox .container {
    width: auto;
    max-width: none;
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .preorder-cartbox .container {
    width: auto;
    max-width: none;
    margin: 0;
  }
}
.preorder-cartbox .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.7777777778vw;
  padding: 4.1666666667vw 0;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .preorder-cartbox .inner {
    padding: 1rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .preorder-cartbox .inner {
    justify-content: flex-end;
    gap: 1.125rem;
    padding: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .preorder-cartbox .inner {
    justify-content: flex-end;
    gap: 0.875rem;
    padding: 0;
  }
}
.preorder-cartbox .info {
  flex: 1;
  min-width: 0;
}
@media screen and (min-width: 1024px) {
  .preorder-cartbox .info {
    flex: 0 1 auto;
    width: 12.8125rem;
    text-align: right;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .preorder-cartbox .info {
    flex: 0 1 auto;
    width: 10.9375rem;
    text-align: right;
  }
}
.preorder-cartbox .name {
  font-size: 3.8888888889vw;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .preorder-cartbox .name {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .preorder-cartbox .name {
    font-size: 1rem;
    line-height: 1.2;
  }
}
.preorder-cartbox .spec, .preorder-cartbox .color {
  margin-top: 0.5555555556vw;
  font-size: 3.3333333333vw;
  line-height: 1.2;
  color: #000;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .preorder-cartbox .spec, .preorder-cartbox .color {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .preorder-cartbox .spec, .preorder-cartbox .color {
    margin-top: 0.125rem;
    font-size: 0.8125rem;
    line-height: 1.25;
  }
}
.preorder-cartbox .spec {
  color: #006bea;
}
.preorder-cartbox .price {
  font-size: 3.8888888889vw;
  color: #000;
  margin-top: 4.8611111111vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .preorder-cartbox .price {
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .preorder-cartbox .price {
    margin-top: 0.1875rem;
    font-size: 0.8125rem;
    line-height: 1.2;
  }
}
.preorder-cartbox .price .current,
.preorder-cartbox .price .original {
  display: block;
}
.preorder-cartbox .price .original {
  font-size: 3.0555555556vw;
  line-height: 1.2;
  text-decoration: line-through;
  text-decoration-thickness: 0.2777777778vw;
  margin-top: 0.4166666667vw;
  color: #000;
}
@media screen and (min-width: 640px) {
  .preorder-cartbox .price .original {
    font-size: 0.875rem;
    text-decoration-thickness: 0.0625rem;
  }
}
@media screen and (min-width: 1024px) {
  .preorder-cartbox .price .original {
    display: block;
    font-size: 0.6875rem;
    text-decoration-thickness: 0.0625rem;
    margin-top: 0.1875rem;
  }
}
.preorder-cartbox .btnnext {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .preorder-cartbox .btnnext {
    min-width: 5.375rem;
    padding: 0.625rem 1.125rem 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.2;
  }
}
.preorder-cartbox .btnnext.is-disabled {
  background: #cbcbd1;
  color: #fff;
  cursor: pointer;
}

.page-preorder {
  width: 100%;
}
.page-preorder .timebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6944444444vw;
  padding: 4.1666666667vw 5.5555555556vw;
  background: #fff;
  box-shadow: 0 1.3888888889vw 2.0833333333vw -1.3888888889vw rgba(0, 0, 0, 0.2);
  z-index: 109;
  will-change: transform, opacity;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .timebar {
    gap: 0.375rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 0.375rem 0.875rem -0.5rem rgba(0, 0, 0, 0.18);
  }
}
.page-preorder .timebar .icon {
  flex-shrink: 0;
  width: 4.4444444444vw;
  height: 4.4444444444vw;
  color: #4b4b4b;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .timebar .icon {
    width: 1.375rem;
    height: 1.375rem;
    margin-top: 0.125rem;
  }
}
.page-preorder .timebar .icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.page-preorder .timebar .text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1111111111vw 1.6666666667vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .timebar .text {
    gap: 0.25rem 0.5rem;
  }
}
.page-preorder .timebar .text p {
  font-size: 3.4722222222vw;
  font-weight: 700;
  line-height: 1.4;
  color: #4b4b4b;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .timebar .text p {
    font-size: 1.125rem;
  }
}
.page-preorder .timebar .text .time {
  font-family: "Samsung Sharp Sans Bold", "SamsungOneTCN 450", sans-serif;
  font-size: 6.6666666667vw;
  font-weight: 700;
  line-height: 1;
  color: #0077c8;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .timebar .text .time {
    font-size: 2.25rem;
  }
}
.page-preorder .timebar.is-fixed {
  position: fixed;
  top: var(--pagehead-h, 0);
  left: 0;
  width: 100%;
  background: #d1edff;
  box-shadow: 0 0.5555555556vw 1.6666666667vw rgba(0, 0, 0, 0.08);
  z-index: 120;
  opacity: 0;
  transform: translate3d(0, -2.5vw, 0);
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .timebar.is-fixed {
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
    transform: translate3d(0, -0.875rem, 0);
  }
}
.page-preorder .timebar.is-fixed {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease-out;
}
@media screen and (min-width: 1024px) {
  .page-preorder .timebar.is-fixed {
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  }
}
.page-preorder .timebar.is-enter {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 768px) {
  .page-preorder .timebar {
    position: relative;
    z-index: 110;
    background: #fff;
    padding: 0.9375rem 0 0.625rem;
    gap: 0.5rem;
    transition: background-color 0.3s ease-out;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
    opacity: 1;
    transform: none;
    will-change: auto;
  }
  .page-preorder .timebar.is-scrolled {
    background: #d1edff;
  }
  .page-preorder .timebar.is-fixed {
    background: #d1edff;
    opacity: 1;
    transform: none;
  }
  .page-preorder .timebar .icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: -0.25rem;
  }
  .page-preorder .timebar .text {
    gap: 0.5rem 0.75rem;
    align-items: center;
  }
  .page-preorder .timebar .text p {
    font-size: 1rem;
  }
  .page-preorder .timebar .text .time {
    font-size: 2rem;
  }
}
.page-preorder .sticky-ph {
  display: none;
  width: 100%;
}
.page-preorder .subtitle {
  margin-bottom: 5.5555555556vw;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .page-preorder .subtitle {
    margin-bottom: 2.5rem;
  }
}
.page-preorder .subtitle .tit {
  font-size: 5.5555555556vw;
  font-weight: 700;
  color: #000;
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (min-width: 768px) {
  .page-preorder .subtitle .tit {
    font-size: 1.5625rem;
  }
}

.page-preorder > [class^=step]:not(.step1) .timebar {
  background: #d1edff;
  box-shadow: none;
}
.page-preorder > [class^=step]:not(.step1) .timebar.is-fixed {
  box-shadow: 0 0.5555555556vw 1.6666666667vw rgba(0, 0, 0, 0.08);
}

body[data-p=preorder] {
  padding-bottom: var(--stepnav-h, 0);
  transition: padding-bottom 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}
body[data-p=preorder].has-cartbox {
  padding-bottom: calc(var(--stepnav-h, 0px) + var(--cartbox-h, 0px));
}
@media screen and (min-width: 768px) {
  body[data-p=preorder] {
    padding-bottom: 0;
  }
  body[data-p=preorder].has-cartbox {
    padding-bottom: 0;
  }
}

.page-preorder .step1 .previewbox._pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  @property --preview-fade {
    .page-preorder .step1 {
      syntax: "<number>";
      inherits: true;
      initial-value: 0;
    }
  }
  .page-preorder .step1 .buy-layout {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin: 0 auto;
    max-width: 1396px;
  }
  .page-preorder .step1 .leftside {
    flex: 0 0 66%;
    max-width: 66%;
    position: sticky;
    top: var(--buy-sticky-top, 0);
    z-index: 1;
    --preview-fade: 0;
  }
  .page-preorder .step1 .leftside .kv {
    opacity: 1;
  }
  .page-preorder .step1 .leftside.is-preview-fading .kv {
    opacity: clamp(0, 1 - var(--preview-fade, 0) * 3, 1);
  }
  .page-preorder .step1 .leftside.is-preview-fading .previewbox._pc {
    visibility: visible;
    opacity: clamp(0, (var(--preview-fade, 0) - 0.2) * 4, 1);
  }
  .page-preorder .step1 .leftside .previewbox._pc {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .page-preorder .step1 .leftside .previewbox._pc .preview img {
    width: 50%;
    margin: 0 auto;
    display: block;
  }
  .page-preorder .step1 .leftside .previewbox._pc .morebtn {
    font-size: 1.125rem;
    padding: 0.625rem 1.875rem;
    border: 1px solid #000;
    border-radius: 1.875rem;
    margin: 0.625rem auto 0;
    display: block;
    text-align: center;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease-out, border-color 0.3s ease-out, color 0.3s ease-out;
  }
  .page-preorder .step1 .leftside .previewbox._pc .morebtn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
  }
  .page-preorder .step1 .leftside .previewbox._pc.is-active {
    pointer-events: auto;
  }
  .page-preorder .step1 .rightside {
    flex: 0 0 34%;
    max-width: 34%;
  }
}
.page-preorder .step1 .timebar._m {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .page-preorder .step1 .timebar._m {
    display: none !important;
  }
}
.page-preorder .step1 .timebar._pc {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .page-preorder .step1 .timebar._pc {
    display: flex !important;
  }
}
@media screen and (min-width: 1024px) {
  .page-preorder .step1 .timebar:not(._pc) {
    display: none;
  }
}
.page-preorder .step1 .promo {
  background: #d1edff;
  overflow: hidden;
}
.page-preorder .step1 .promo.is-collapsed {
  background: transparent;
}
.page-preorder .step1 .promo .slider:not(.slick-initialized) .slide:not(:first-child) {
  display: none;
}
.page-preorder .step1 .promo .slider .slick-list {
  overflow: hidden;
}
.page-preorder .step1 .promo .slider .slick-track {
  display: flex;
}
.page-preorder .step1 .promo .slider .slick-slide {
  height: auto;
}
.page-preorder .step1 .promo .slider .slick-slide > div {
  height: 100%;
}
.page-preorder .step1 .promo .slide {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .item {
    max-width: 1320px;
    margin: 0 auto;
    width: 92.5%;
  }
}
.page-preorder .step1 .promo .item.is-open .txt {
  text-align: left;
  padding: 0;
}
.page-preorder .step1 .promo .item.is-open .arrow {
  transform: rotate(180deg);
}
.page-preorder .step1 .promo .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.2222222222vw;
  width: 100%;
  padding: 3.8888888889vw 5.5555555556vw 2.7777777778vw;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .promo .btn {
    gap: 0.75rem;
    padding: 0.875rem 1.5rem 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .btn {
    padding: 1.25rem 0rem 0.9375rem;
  }
}
.page-preorder .step1 .promo .txt {
  flex: 1;
  font-size: 3.4722222222vw;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  text-align: center;
  padding: 0 5.5555555556vw 0 11.1111111111vw;
  transition: text-align 0.3s ease-out, padding 0.3s ease-out;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .promo .txt {
    font-size: 1.125rem;
    line-height: 1.35;
    padding: 0 1.75rem 0 3rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .txt {
    font-size: 1.1875rem;
    padding: 0;
  }
}
.page-preorder .step1 .promo .tag {
  color: #e2373f;
  font-weight: 700;
}
.page-preorder .step1 .promo .arrow {
  flex-shrink: 0;
  font-size: 4.1666666667vw;
  color: #000;
  transition: transform 0.3s ease-out;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .promo .arrow {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .arrow {
    font-size: 1.625rem;
  }
}
.page-preorder .step1 .promo .detail {
  display: none;
  padding: 0 5.5555555556vw 3.3333333333vw;
  text-align: left;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .promo .detail {
    padding: 0 1.75rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .detail {
    padding: 0 0 0.9375rem;
  }
}
.page-preorder .step1 .promo .detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: detail-item;
}
.page-preorder .step1 .promo .detail-list li {
  position: relative;
  counter-increment: detail-item;
  padding-left: 5.5555555556vw;
  font-size: 3.0555555556vw;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
}
.page-preorder .step1 .promo .detail-list li::before {
  content: "⭐ ";
  position: absolute;
  left: 0;
  top: -0.2777777778vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .detail-list li::before {
    top: -0.0625rem;
  }
}
.page-preorder .step1 .promo .detail-list li + li {
  margin-top: 0.6944444444vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .detail-list li + li {
    margin-top: 0rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .detail-list li {
    font-size: 1rem;
    padding-left: 1.5625rem;
  }
}
.page-preorder .step1 .promo .detail-list .em {
  color: #e2373f;
}
.page-preorder .step1 .promo .detail-note {
  margin-top: 2.2222222222vw;
  font-size: 2.7777777778vw;
  line-height: 1.5;
  color: #555;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .detail-note {
    font-size: 1.1875rem;
  }
}
.page-preorder .step1 .promo .detail-link {
  display: block;
  margin-top: 1.3888888889vw;
  font-size: 2.7777777778vw;
  line-height: 1.5;
  color: #015fc8;
  text-decoration: underline;
  padding-left: 5.5555555556vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .detail-link {
    margin-top: 0.9375rem;
    font-size: 1rem;
    font-weight: bold;
    padding-left: 0;
  }
}
.page-preorder .step1 .promo .item.is-open .btn {
  padding-bottom: 2.2222222222vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .item.is-open .btn {
    padding-bottom: 0.625rem;
  }
}
.page-preorder .step1 .promo .bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2222222222vw;
  padding: 0 5.5555555556vw 3.8888888889vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .promo .bar {
    gap: 0.625rem;
    padding: 0 1.5rem 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .bar {
    padding: 0 2.5rem 0.9375rem;
    gap: 0.5rem;
  }
}
.page-preorder .step1 .promo .bar-item {
  flex: 1;
  max-width: 13.8888888889vw;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .promo .bar-item {
    max-width: 4.5rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .bar-item {
    max-width: 3.75rem;
  }
}
.page-preorder .step1 .promo .bar-item span {
  display: block;
  width: 100%;
  height: 0.5555555556vw;
  background: #989898;
  transition: background-color 0.3s ease-out;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .promo .bar-item span {
    height: 0.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .promo .bar-item span {
    height: 0.125rem;
  }
}
.page-preorder .step1 .promo .bar-item.is-active span {
  background: #000000;
}
.page-preorder .step1 .kv .slider:not(.slick-initialized) .slide:not(:first-child) {
  display: none;
}
.page-preorder .step1 .kv .slider {
  margin-bottom: 1.25rem;
}
.page-preorder .step1 .kv .slider .slick-list {
  overflow: hidden;
}
.page-preorder .step1 .kv .slider .slick-track {
  display: flex;
  align-items: center;
}
.page-preorder .step1 .kv .slider .slick-slide {
  height: auto;
  float: none;
}
.page-preorder .step1 .kv .slide {
  width: 100%;
}
.page-preorder .step1 .kv .slide picture {
  display: block;
  width: 100%;
}
.page-preorder .step1 .kv .slide img {
  display: block;
  width: 100%;
}
.page-preorder .step1 .kv .slick-prev,
.page-preorder .step1 .kv .slick-next {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .kv .slick-prev,
  .page-preorder .step1 .kv .slick-next {
    display: block !important;
    z-index: 2;
    width: 2.625rem;
    height: 2.625rem;
    border: 1px solid #d0d0d0;
    border-radius: 50%;
    background: #fff;
  }
  .page-preorder .step1 .kv .slick-prev::before,
  .page-preorder .step1 .kv .slick-next::before {
    content: "";
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    margin: 0 auto;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    opacity: 1;
  }
  .page-preorder .step1 .kv .slick-prev:hover, .page-preorder .step1 .kv .slick-prev:focus,
  .page-preorder .step1 .kv .slick-next:hover,
  .page-preorder .step1 .kv .slick-next:focus {
    border-color: #000;
    background: #fff;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .kv .slick-prev {
    left: 0.9375rem;
  }
  .page-preorder .step1 .kv .slick-prev::before {
    transform: rotate(-135deg);
  }
}
@media screen and (min-width: 1024px) {
  .page-preorder .step1 .kv .slick-prev {
    left: 2.1875rem;
  }
  .page-preorder .step1 .kv .slick-prev::before {
    transform: rotate(-135deg);
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .kv .slick-next {
    right: 0.9375rem;
  }
  .page-preorder .step1 .kv .slick-next::before {
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1024px) {
  .page-preorder .step1 .kv .slick-next {
    right: 2.1875rem;
  }
  .page-preorder .step1 .kv .slick-next::before {
    transform: rotate(45deg);
  }
}
.page-preorder .step1 .kv .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 3.8888888889vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .kv .slick-dots {
    margin-top: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .kv .slick-dots {
    margin-top: 1.5625rem;
  }
}
.page-preorder .step1 .kv .slick-dots li {
  width: 1.9444444444vw;
  height: 1.9444444444vw;
  margin: 0 0.9722222222vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .kv .slick-dots li {
    width: 0.625rem;
    height: 0.625rem;
    margin: 0 0.625rem;
  }
}
.page-preorder .step1 .kv .slick-dots li button {
  width: 1.9444444444vw;
  height: 1.9444444444vw;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .kv .slick-dots li button {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.page-preorder .step1 .kv .slick-dots li button::before {
  content: "";
  top: 0;
  left: 0;
  width: 1.9444444444vw;
  height: 1.9444444444vw;
  border-radius: 50%;
  background: #757575;
  opacity: 1;
  transition: background-color 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .kv .slick-dots li button::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.page-preorder .step1 .kv .slick-dots li.slick-active button::before {
  background: #000;
}
.page-preorder .step1 .block {
  margin-bottom: 12.5vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .block {
    margin-bottom: 2.75rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .block {
    margin-bottom: 1.875rem;
  }
}
.page-preorder .step1 .title {
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  margin-bottom: 2.0833333333vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .title {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
  }
}
.page-preorder .step1 .formbox {
  padding: 8.3333333333vw 0 0;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox {
    padding-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox {
    padding: 1.875rem 0 0;
  }
}
.page-preorder .step1 .formbox .store .row {
  display: flex;
  gap: 4.1666666667vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .store .row {
    gap: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .store .row {
    gap: 1.25rem;
  }
}
.page-preorder .step1 .formbox .store .selectbox {
  position: relative;
  flex: 1;
}
.page-preorder .step1 .formbox .store .selectbox select {
  width: 100%;
  padding: 5.5555555556vw 5.5555555556vw 4.1666666667vw 2.7777777778vw;
  border: 1px solid #cbcbd1;
  border-radius: 1.1111111111vw;
  background: #fff;
  font-size: 4.4444444444vw;
  font-weight: 700;
  color: #000;
  appearance: none;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .store .selectbox select {
    padding: 1.375rem 2.75rem 1.125rem 1.125rem;
    border-radius: 0.625rem;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .store .selectbox select {
    font-size: 1.125rem;
    padding: 1.25rem 1.25rem 0.9375rem 0.9375rem;
    border-radius: 0.625rem;
  }
}
.page-preorder .step1 .formbox .store .selectbox i {
  position: absolute;
  top: 50%;
  right: 2.2222222222vw;
  font-size: 3.0555555556vw;
  color: #000;
  pointer-events: none;
  transform: translateY(-50%);
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .store .selectbox i {
    right: 1.125rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .store .selectbox i {
    font-size: 1rem;
  }
}
.page-preorder .step1 .formbox .store .addr {
  display: inline-block;
  margin-top: 2.2222222222vw;
  font-size: 4.4444444444vw;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 2.7777777778vw;
  color: #006bea;
}
.page-preorder .step1 .formbox .store .addr.is-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .store .addr {
    margin-top: 0.625rem;
    font-size: 1.125rem;
    padding-left: 0.9375rem;
  }
}
.page-preorder .step1 .formbox .product-panel.is-hidden,
.page-preorder .step1 .formbox .capacity-panel.is-hidden,
.page-preorder .step1 .formbox .phone-capacity-list.is-hidden,
.page-preorder .step1 .formbox .size-list.is-hidden {
  display: none;
}
.page-preorder .step1 .formbox .formbody {
  position: relative;
}
.page-preorder .step1 .formbox .formbody .formbody-shade {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: auto;
  cursor: default;
}
.page-preorder .step1 .formbox .tabs {
  display: flex;
  margin-top: 5.5555555556vw;
  margin-bottom: 5.5555555556vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .tabs {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tabs {
    margin-top: 0rem;
    margin-bottom: 0.625rem;
  }
}
.page-preorder .step1 .formbox .tabs .tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1111111111vw;
  padding: 2.2222222222vw 0 2.7777777778vw;
  border: 0;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .tabs .tab {
    gap: 0.375rem;
    padding: 0.625rem 0 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tabs .tab {
    gap: 0.5rem;
    padding: 0rem 0 0.375rem;
  }
}
.page-preorder .step1 .formbox .tabs .tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.8333333333vw;
  background: #d9d9d9;
  border-radius: 1.3888888889vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tabs .tab::after {
    height: 0.1875rem;
    border-radius: 0.3125rem;
  }
}
.page-preorder .step1 .formbox .tabs .tab .pic {
  display: block;
  width: 28.0555555556vw;
  margin-bottom: 4.1666666667vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .tabs .tab .pic {
    width: 6rem;
    margin-bottom: 0.375rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tabs .tab .pic {
    width: 6rem;
    margin-bottom: 0rem;
  }
}
.page-preorder .step1 .formbox .tabs .tab .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-preorder .step1 .formbox .tabs .tab .txt {
  font-size: 4.4444444444vw;
  font-weight: 700;
  line-height: 1.3;
  color: #b3b3b3;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .tabs .tab .txt {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tabs .tab .txt {
    font-size: 1.125rem;
  }
}
.page-preorder .step1 .formbox .tabs .tab.is-active::after {
  background: #2289ff;
}
.page-preorder .step1 .formbox .tabs .tab.is-active .txt {
  color: #2289ff;
}
.page-preorder .step1 .formbox .picklist .pickitem {
  margin-bottom: 5.5555555556vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .picklist .pickitem {
    margin-bottom: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .picklist .pickitem {
    margin-bottom: 0.625rem;
  }
}
.page-preorder .step1 .formbox .picklist .pickitem.is-disabled .card {
  color: #989898;
  cursor: not-allowed;
}
.page-preorder .step1 .formbox .picklist .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.2222222222vw;
  width: 100%;
  padding: 6.9444444444vw 3.4722222222vw 5.5555555556vw;
  border: 0.2777777778vw solid #dddddd;
  border-radius: 1.6666666667vw;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s ease-out;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .picklist .card {
    padding: 1.5rem 1.375rem 1.25rem;
    border: 1px solid #dddddd;
    border-radius: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .picklist .card {
    border: 1px solid #dddddd;
    padding: 1.25rem 1.25rem 0.9375rem;
    border-radius: 0.9375rem;
  }
}
.page-preorder .step1 .formbox .picklist .card .name {
  font-size: 4.4444444444vw;
  font-weight: 700;
  line-height: 1.4;
  color: inherit;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .picklist .card .name {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .picklist .card .name {
    font-size: 1.125rem;
  }
}
.page-preorder .step1 .formbox .picklist .card .price,
.page-preorder .step1 .formbox .picklist .card .pricebox .price {
  font-size: 4.4444444444vw;
  line-height: 1.3;
  color: inherit;
  white-space: nowrap;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .picklist .card .price,
  .page-preorder .step1 .formbox .picklist .card .pricebox .price {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .picklist .card .price,
  .page-preorder .step1 .formbox .picklist .card .pricebox .price {
    font-size: 1.125rem;
  }
}
.page-preorder .step1 .formbox .picklist .card .pricebox {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  min-width: 18.75vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .picklist .card .pricebox {
    min-width: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .picklist .card .pricebox {
    min-width: 5.375rem;
  }
}
.page-preorder .step1 .formbox .picklist .card .pricebox .sub {
  font-size: 2.9166666667vw;
  font-weight: 400;
  line-height: 1.3;
  color: #5f5f5f;
  white-space: nowrap;
  position: absolute;
  bottom: -3.4722222222vw;
  right: 0;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .picklist .card .pricebox .sub {
    bottom: -1rem;
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .picklist .card .pricebox .sub {
    font-size: 0.8125rem;
    bottom: -0.9375rem;
  }
}
.page-preorder .step1 .formbox .picklist .pickitem.is-active .card {
  border: 0.5555555556vw solid #2289ff;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .picklist .pickitem.is-active .card {
    border: 2px solid #2289ff;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .picklist .pickitem.is-active .card {
    border: 2px solid #2289ff;
  }
}
.page-preorder .step1 .formbox .picklist .note {
  margin-top: 2.0833333333vw;
  font-size: 4.0277777778vw;
  line-height: 1.5;
  color: #006bea;
  font-weight: 300;
  padding-left: 2.7777777778vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .picklist .note {
    margin-top: 0.5rem;
    padding-left: 0.875rem;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .picklist .note {
    margin-top: 0.625rem;
    font-size: 1rem;
    padding-left: 0.9375rem;
  }
}
.page-preorder .step1 .formbox .color .previewbox .preview {
  text-align: center;
}
.page-preorder .step1 .formbox .color .previewbox .preview img {
  display: block;
  width: 75%;
  margin: 0 auto;
}
.page-preorder .step1 .formbox .color .previewbox .morebtn {
  display: block;
  width: 30.5555555556vw;
  margin: 5.5555555556vw auto 0;
  padding: 3.4722222222vw 0vw 2.7777777778vw;
  border: 1px solid #000000;
  border-radius: 6.9444444444vw;
  font-size: 4.0277777778vw;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #000;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .color .previewbox .morebtn {
    width: 8.75rem;
    margin-top: 1.5rem;
    padding: 0.75rem 0 0.625rem;
    border-radius: 3.125rem;
    font-size: 0.875rem;
  }
}
.page-preorder .step1 .formbox .color .colorlist {
  display: flex;
  justify-content: center;
  gap: 6.6666666667vw;
  margin-top: 9.7222222222vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .color .colorlist {
    gap: 2.25rem;
    margin-top: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .color .colorlist {
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}
.page-preorder .step1 .formbox .color .coloritem {
  text-align: center;
}
.page-preorder .step1 .formbox .color .coloritem .swatch {
  position: relative;
  width: 7.7777777778vw;
  height: 7.7777777778vw;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--swatch-color);
  cursor: pointer;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .color .coloritem .swatch {
    width: 2.625rem;
    height: 2.625rem;
  }
}
.page-preorder .step1 .formbox .color .coloritem .swatch.is-white {
  box-shadow: inset 0 0 0 0.2777777778vw #d9d9d9;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .color .coloritem .swatch.is-white {
    box-shadow: inset 0 0 0 0.0625rem #d9d9d9;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .color .coloritem .swatch.is-white {
    box-shadow: inset 0 0 0 0.0625rem #d9d9d9;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .color .coloritem .swatch {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.page-preorder .step1 .formbox .color .coloritem .swatch .ring {
  display: none;
  position: absolute;
  inset: -1.1111111111vw;
  border: 0.5555555556vw solid #006bea;
  border-radius: 50%;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .color .coloritem .swatch .ring {
    inset: -0.375rem;
    border: 0.1875rem solid #006bea;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .color .coloritem .swatch .ring {
    inset: -0.375rem;
    border: 0.1875rem solid #006bea;
  }
}
.page-preorder .step1 .formbox .color .coloritem.is-active .swatch .ring {
  display: block;
}
.page-preorder .step1 .formbox .color .coloritem.is-disabled .swatch {
  cursor: not-allowed;
  opacity: 0.45;
}
.page-preorder .step1 .formbox .color .coloritem .label {
  margin-top: 1.3888888889vw;
  font-size: 3.4722222222vw;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .color .coloritem .label {
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .color .coloritem .label {
    font-size: 1.125rem;
    margin-top: 0.625rem;
  }
}
.page-preorder .step1 .formbox .color .coloritem .soldout {
  font-size: 2.6388888889vw;
  font-weight: 700;
  line-height: 1.3;
  color: #ed0000;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .color .coloritem .soldout {
    font-size: 0.8125rem;
  }
}
.page-preorder .step1 .formbox .color .featurebar {
  display: flex;
  justify-content: space-between;
  gap: 1.6666666667vw;
  margin-top: 5.5555555556vw;
  padding: 5.5555555556vw 2.7777777778vw;
  border-radius: 4.1666666667vw;
  background: #f5f5f5;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .color .featurebar {
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding: 1.75rem 1.125rem;
    border-radius: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .color .featurebar {
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding: 2.5rem 1.25rem;
    border-radius: 1.875rem;
  }
}
.page-preorder .step1 .formbox .color .featureitem {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-preorder .step1 .formbox .color .featureitem .pic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.3333333333vw;
  margin-bottom: 0.6944444444vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .color .featureitem .pic {
    width: 3.75rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .color .featureitem .pic {
    width: 3.5rem;
    margin-bottom: 0rem;
  }
}
.page-preorder .step1 .formbox .color .featureitem .pic img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.page-preorder .step1 .formbox .color .featureitem .txt {
  margin-top: 1.3888888889vw;
  font-size: 2.7777777778vw;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .color .featureitem .txt {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .color .featureitem .txt {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}
.page-preorder .step1 .formbox .color .featureitem .txt .main,
.page-preorder .step1 .formbox .color .featureitem .txt .sub {
  display: block;
}
.page-preorder .step1 .formbox .color .featureitem .txt .sub {
  font-size: 2.2222222222vw;
  line-height: 1.35;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .color .featureitem .txt .sub {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .color .featureitem .txt .sub {
    font-size: 0.75rem;
  }
}
.page-preorder .step1 .formbox .tradein .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.0833333333vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .head {
    margin-bottom: 0.9375rem;
  }
}
.page-preorder .step1 .formbox .tradein .head .title {
  margin-bottom: 0;
}
.page-preorder .step1 .formbox .tradein .head .rule {
  font-size: 3.4722222222vw;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  text-decoration: underline;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .head .rule {
    font-size: 1rem;
  }
}
.page-preorder .step1 .formbox .tradein .promotxt {
  font-size: 3.4722222222vw;
  font-weight: 700;
  line-height: 1.5;
  color: #006bea;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .tradein .promotxt {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .promotxt {
    font-size: 1rem;
  }
}
.page-preorder .step1 .formbox .tradein .choicelist {
  margin-top: 5.5555555556vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .tradein .choicelist {
    margin-top: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .choicelist {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}
.page-preorder .step1 .formbox .tradein .choicelist .choiceitem {
  margin-bottom: 4.1666666667vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .choicelist .choiceitem {
    margin-bottom: 0rem;
    flex: 1;
  }
}
.page-preorder .step1 .formbox .tradein .choicelist .choiceitem:last-child {
  margin-bottom: 0;
}
.page-preorder .step1 .formbox .tradein .choicelist .choicebtn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6.25vw 3.4722222222vw;
  border: 0.2777777778vw solid #dddddd;
  border-radius: 1.6666666667vw;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .choicelist .choicebtn {
    padding: 1.25rem 1.25rem 0.9375rem;
    border: 1px solid #dddddd;
    border-radius: 0.9375rem;
  }
}
.page-preorder .step1 .formbox .tradein .choicelist .choiceitem.is-active .choicebtn {
  border: 0.5555555556vw solid #2289ff;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .choicelist .choiceitem.is-active .choicebtn {
    border: 0.125rem solid #2289ff;
  }
}
.page-preorder .step1 .formbox .tradein .choicelist .choice {
  font-size: 4.4444444444vw;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .choicelist .choice {
    font-size: 1.125rem;
  }
}
.page-preorder .step1 .formbox .tradein .infobox {
  display: flex;
  align-items: center;
  gap: 6.9444444444vw;
  margin-top: 5.5555555556vw;
  padding: 5.5555555556vw 5.5555555556vw;
  border-radius: 4.1666666667vw;
  background: #f5f5f5;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .tradein .infobox {
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.5rem 1.625rem;
    border-radius: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .infobox {
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.875rem 1.875rem;
    border-radius: 1.875rem;
  }
}
.page-preorder .step1 .formbox .tradein .infobox .pic {
  flex-shrink: 0;
  width: 13.8888888889vw;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .tradein .infobox .pic {
    width: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .infobox .pic {
    width: 3.75rem;
  }
}
.page-preorder .step1 .formbox .tradein .infobox .pic img {
  display: block;
  width: 100%;
}
.page-preorder .step1 .formbox .tradein .infobox .txtbox {
  flex: 1;
}
.page-preorder .step1 .formbox .tradein .infobox .txtbox .tit {
  font-size: 3.4722222222vw;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .tradein .infobox .txtbox .tit {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .infobox .txtbox .tit {
    font-size: 1rem;
  }
}
.page-preorder .step1 .formbox .tradein .infobox .txtbox .desc {
  margin-top: 0.6944444444vw;
  font-size: 2.9166666667vw;
  line-height: 1.3;
  color: #000;
  text-align: justify;
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-preorder .step1 .formbox .tradein .infobox .txtbox .desc {
    margin-top: 0.3125rem;
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .formbox .tradein .infobox .txtbox .desc {
    font-size: 0.8125rem;
    margin-top: 0.3125rem;
  }
}
.page-preorder .step1 .formbox .tradein .infobox .txtbox .desc .em {
  color: #de0000;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .container {
    max-width: 1396px;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec.offerplan {
    margin-top: 5rem;
  }
}
.page-preorder .step1 .benefitsec .subtitle {
  margin-top: -1.3888888889vw;
  margin-bottom: 4.1666666667vw;
  font-size: 3.3333333333vw;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .subtitle {
    margin-top: -0.625rem;
    margin-bottom: 1.875rem;
    font-size: 1.25rem;
  }
}
.page-preorder .step1 .benefitsec .benefitscroll {
  position: relative;
  margin-top: 4.1666666667vw;
  padding-bottom: 2.0833333333vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefitscroll {
    margin-top: 1.25rem;
    padding-bottom: 2.5rem;
  }
}
.page-preorder .step1 .benefitsec .benefit-arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefit-arrow {
    position: absolute;
    top: calc(50% - 1.25rem);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.625rem;
    height: 2.625rem;
    padding: 0;
    border: 1px solid #d0d0d0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out, border-color 0.3s ease-out;
  }
  .page-preorder .step1 .benefitsec .benefit-arrow::before {
    content: "";
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
  }
  .page-preorder .step1 .benefitsec .benefit-arrow:hover, .page-preorder .step1 .benefitsec .benefit-arrow:focus {
    border-color: #000;
  }
  .page-preorder .step1 .benefitsec .benefit-arrow:disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefit-prev {
    left: -3.4375rem;
  }
  .page-preorder .step1 .benefitsec .benefit-prev::before {
    transform: rotate(-135deg);
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefit-next {
    right: -3.4375rem;
  }
  .page-preorder .step1 .benefitsec .benefit-next::before {
    transform: rotate(45deg);
  }
}
.page-preorder .step1 .benefitsec .benefittrack {
  width: 100%;
  padding-bottom: 4.1666666667vw;
  display: flex;
  gap: 4.1666666667vw;
  width: max-content;
  min-width: 100%;
  padding-bottom: 2.0833333333vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefittrack {
    gap: 1.25rem;
    padding-bottom: 0rem;
  }
}
.page-preorder .step1 .benefitsec .benefittrack .simplebar-content {
  display: flex;
  gap: 4.1666666667vw;
  width: max-content;
  min-width: 100%;
}
.page-preorder .step1 .benefitsec .simplebar-scrollbar::before {
  background-color: #313131;
  border-radius: 1.3888888889vw;
  height: 100%;
  opacity: 1;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .simplebar-scrollbar::before {
    border-radius: 1.25rem;
  }
}
.page-preorder .step1 .benefitsec .simplebar-track.simplebar-horizontal {
  height: 1.1111111111vw;
  background-color: #8f8f8f;
  border-radius: 1.3888888889vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .simplebar-track.simplebar-horizontal {
    height: 0.1875rem;
    border-radius: 1.25rem;
  }
}
.page-preorder .step1 .benefitsec .benefitcard {
  flex: 0 0 55.5555555556vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 58.3333333333vw;
  padding: 5.5555555556vw 4.8611111111vw;
  border: 1px solid #dddddd;
  border-radius: 2.7777777778vw;
  background: #fff;
  text-decoration: none;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefitcard {
    flex: 0 0 20.625rem;
    min-height: 18.75rem;
    padding: 1.875rem 1.875rem;
    border-radius: 1.25rem;
  }
}
.page-preorder .step1 .benefitsec .benefitcard .pic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.6666666667vw;
  height: 16.6666666667vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefitcard .pic {
    width: 3.75rem;
    height: auto;
  }
}
.page-preorder .step1 .benefitsec .benefitcard .pic img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.page-preorder .step1 .benefitsec .benefitcard .cardtit {
  margin-top: 4.1666666667vw;
  font-size: 4.4444444444vw;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefitcard .cardtit {
    font-size: 1.5625rem;
    margin-top: 1.875rem;
  }
}
.page-preorder .step1 .benefitsec .benefitcard .carddesc {
  flex: 1;
  margin-top: 2.7777777778vw;
  font-size: 3.8888888889vw;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
}
.page-preorder .step1 .benefitsec .benefitcard .carddesc font {
  font-size: 80%;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefitcard .carddesc {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}
.page-preorder .step1 .benefitsec .benefitcard .more {
  display: inline-block;
  margin-top: 8.3333333333vw;
  font-size: 3.4722222222vw;
  font-weight: 700;
  line-height: 1.2;
  color: #666666;
  border-bottom: 0.1388888889vw solid #666666;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefitcard .more {
    font-size: 0.875rem;
    margin-top: 3.125rem;
    border-bottom: 1px solid #666666;
  }
}
.page-preorder .step1 .benefitsec .benefitcard.benefitcard-more {
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f5f5f5;
}
.page-preorder .step1 .benefitsec .benefitcard.benefitcard-more .moreicon {
  position: relative;
  display: block;
  width: 8.3333333333vw;
  margin-bottom: 2.5vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefitcard.benefitcard-more .moreicon {
    width: 2.75rem;
    margin-bottom: 0.75rem;
  }
}
.page-preorder .step1 .benefitsec .benefitcard.benefitcard-more .moretxt {
  margin: 0;
  font-size: 3.6111111111vw;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-preorder .step1 .benefitsec .benefitcard.benefitcard-more .moretxt {
    font-size: 1rem;
  }
}
.page-preorder .step1.is-form-locked .formbody {
  pointer-events: none;
  user-select: none;
  filter: grayscale(1);
  opacity: 0.6;
}
.page-preorder .step1.is-form-locked .formbody .formbody-shade {
  display: block;
}
.page-preorder .step2 .formbox {
  padding: 8.3333333333vw 0 13.8888888889vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .formbox {
    padding: 2.5rem 0 5rem;
  }
}
.page-preorder .step2 .subtitle .note {
  margin-left: 0.8333333333vw;
  font-size: 3.4722222222vw;
  font-weight: 700;
  color: #2289ff;
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .subtitle .note {
    font-size: 1rem;
    margin-left: 0.375rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3.125rem;
    row-gap: 3.75rem;
  }
}
.page-preorder .step2 .form .field + .field {
  margin-top: 12.5vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field + .field {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field--wide, .page-preorder .step2 .form .field--select {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field--id, .page-preorder .step2 .form .field--phone {
    grid-row: 3;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field--email, .page-preorder .step2 .form .field--birth {
    grid-row: 4;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field--phone, .page-preorder .step2 .form .field--birth {
    grid-column: 2;
  }
}
.page-preorder .step2 .form .field .label {
  display: block;
  font-size: 3.0555555556vw;
  line-height: 1.4;
  color: #505050;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field .label {
    font-size: 1rem;
  }
}
.page-preorder .step2 .form .field .label .req {
  color: #505050;
  font-family: "SamsungOneTCN 600";
}
.page-preorder .step2 .form .field input[type=text],
.page-preorder .step2 .form .field input[type=email],
.page-preorder .step2 .form .field input[type=tel] {
  display: block;
  width: 100%;
  padding: 1.3888888889vw 0 1.3888888889vw;
  border: 0;
  border-bottom: 1px solid #666666;
  border-radius: 0;
  background: transparent;
  font-size: 3.6111111111vw;
  line-height: 1.4;
  font-weight: normal;
  color: #000;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field input[type=text],
  .page-preorder .step2 .form .field input[type=email],
  .page-preorder .step2 .form .field input[type=tel] {
    font-size: 1.1875rem;
    padding: 0.625rem 0 0.625rem;
  }
}
.page-preorder .step2 .form .field input[type=text]::placeholder,
.page-preorder .step2 .form .field input[type=email]::placeholder,
.page-preorder .step2 .form .field input[type=tel]::placeholder {
  color: #8f8f8f;
  font-weight: 700;
}
.page-preorder .step2 .form .field input[type=text]:focus,
.page-preorder .step2 .form .field input[type=email]:focus,
.page-preorder .step2 .form .field input[type=tel]:focus {
  border-bottom: 1px solid #0077c8;
  outline: none;
}
.page-preorder .step2 .form .field .radiogroup {
  display: flex;
  align-items: center;
  gap: 5.5555555556vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field .radiogroup {
    gap: 3.75rem;
  }
}
.page-preorder .step2 .form .field .radiobox {
  display: inline-flex;
  align-items: flex-end;
  gap: 1.3888888889vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field .radiobox {
    gap: 0.5rem;
    align-items: center;
  }
}
.page-preorder .step2 .form .field .radiobox input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.page-preorder .step2 .form .field .radiobox .radiostyle {
  position: relative;
  flex-shrink: 0;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  border: 1px solid #505050;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field .radiobox .radiostyle {
    width: 1.625rem;
    height: 1.625rem;
  }
}
.page-preorder .step2 .form .field .radiobox .radiostyle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.7777777778vw;
  height: 2.7777777778vw;
  border-radius: 50%;
  background: #0077c8;
  opacity: 0;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field .radiobox .radiostyle::before {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.page-preorder .step2 .form .field .radiobox input[type=radio]:checked + .radiostyle {
  border-color: #0077c8;
}
.page-preorder .step2 .form .field .radiobox input[type=radio]:checked + .radiostyle::before {
  opacity: 1;
}
.page-preorder .step2 .form .field .radiobox .radiotxt {
  font-size: 3.6111111111vw;
  font-weight: 400;
  color: #505050;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field .radiobox .radiotxt {
    font-size: 1.1875rem;
  }
}
.page-preorder .step2 .form .field--gender {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.7777777778vw;
}
.page-preorder .step2 .form .field--gender .label {
  flex-shrink: 0;
  margin-bottom: 0;
}
.page-preorder .step2 .form .field--gender .radiogroup {
  flex: 1;
  justify-content: flex-start;
}
.page-preorder .step2 .form .field--nationality {
  display: flex;
  align-items: center;
  justify-content: space-start;
  gap: 2.7777777778vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field--nationality {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field--nationality .label {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field--nationality .radiogroup {
    flex: 1;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field--select {
    padding-top: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field--select .label {
    margin-bottom: 0.75rem;
  }
}
.page-preorder .step2 .form .field .row {
  display: flex;
  gap: 2.2222222222vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field .row {
    gap: 1.125rem;
  }
}
.page-preorder .step2 .form .field .selectbox {
  position: relative;
  flex: 1;
  min-width: 0;
  border-bottom: 1px solid #666666;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field .selectbox {
    border-bottom: 0;
    background: #f0f1f4;
  }
}
.page-preorder .step2 .form .field .selectbox select {
  width: 100%;
  padding: 1.6666666667vw 5vw 1.6666666667vw 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 3.4722222222vw;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field .selectbox select {
    font-size: 1.1875rem;
    padding: 0.75rem 2.75rem 0.75rem 1.5rem;
    font-weight: 700;
  }
}
.page-preorder .step2 .form .field .selectbox select.is-placeholder {
  color: #8f8f8f;
}
.page-preorder .step2 .form .field .selectbox select option {
  color: #000;
}
.page-preorder .step2 .form .field .selectbox select:disabled {
  color: #8f8f8f;
  opacity: 1;
}
.page-preorder .step2 .form .field .selectbox i {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 2.7777777778vw;
  color: #000;
  pointer-events: none;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .form .field .selectbox i {
    right: 1.125rem;
    font-size: 1.25rem;
    color: #8f8f8f;
  }
}
.page-preorder .step2 .btnbox {
  display: flex;
  gap: 2.7777777778vw;
  margin-top: 13.8888888889vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .btnbox {
    gap: 1.25rem;
    margin-top: 6.25rem;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step2 .btnbox .mybtn2 {
    max-width: 18.75rem;
  }
}
.page-preorder .step3 .subtitle {
  margin-bottom: 11.1111111111vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .subtitle {
    margin-bottom: 2.5rem;
  }
}
.page-preorder .step3 .formbox {
  padding: 8.3333333333vw 0 11.1111111111vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .formbox {
    padding: 2.5rem 0 5rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .confirm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3.125rem;
    row-gap: 3.75rem;
  }
}
.page-preorder .step3 .confirm .item + .item {
  margin-top: 6.9444444444vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .confirm .item + .item {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .confirm .item:nth-child(3), .page-preorder .step3 .confirm .item:nth-child(n+8) {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .confirm .item:nth-child(1), .page-preorder .step3 .confirm .item:nth-child(2), .page-preorder .step3 .confirm .item:nth-child(4), .page-preorder .step3 .confirm .item:nth-child(5), .page-preorder .step3 .confirm .item:nth-child(6), .page-preorder .step3 .confirm .item:nth-child(7) {
    display: grid;
    grid-template-columns: 7.5rem minmax(0, 1fr);
    align-items: end;
    border-bottom: 1px solid #666666;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .confirm .item:nth-child(1) .label, .page-preorder .step3 .confirm .item:nth-child(2) .label, .page-preorder .step3 .confirm .item:nth-child(4) .label, .page-preorder .step3 .confirm .item:nth-child(5) .label, .page-preorder .step3 .confirm .item:nth-child(6) .label, .page-preorder .step3 .confirm .item:nth-child(7) .label {
    padding-bottom: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .confirm .item:nth-child(1) .value, .page-preorder .step3 .confirm .item:nth-child(2) .value, .page-preorder .step3 .confirm .item:nth-child(4) .value, .page-preorder .step3 .confirm .item:nth-child(5) .value, .page-preorder .step3 .confirm .item:nth-child(6) .value, .page-preorder .step3 .confirm .item:nth-child(7) .value {
    margin-top: 0;
    border-bottom: 0;
  }
}
.page-preorder .step3 .confirm .item .label {
  font-size: 3.0555555556vw;
  line-height: 1.4;
  color: #505050;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .confirm .item .label {
    font-size: 1rem;
  }
}
.page-preorder .step3 .confirm .item .label .req {
  color: #505050;
  font-family: "SamsungOneTCN 600";
}
.page-preorder .step3 .confirm .item .value {
  margin-top: 0.8333333333vw;
  padding-bottom: 1.9444444444vw;
  border-bottom: 1px solid #666666;
  font-size: 3.6111111111vw;
  line-height: 1.5;
  font-weight: normal;
  color: #000;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .confirm .item .value {
    font-size: 1.1875rem;
    padding-bottom: 0.875rem;
  }
}
.page-preorder .step3 .agree-list {
  margin: 9.7222222222vw 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .agree-list {
    margin-top: 3.125rem;
  }
}
.page-preorder .step3 .agree-list .agree-item + .agree-item {
  margin-top: 2.7777777778vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .agree-list .agree-item + .agree-item {
    margin-top: 1.25rem;
  }
}
.page-preorder .step3 .agree-list .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1.9444444444vw;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .agree-list .checkbox {
    gap: 0.75rem;
  }
}
.page-preorder .step3 .agree-list .checkbox input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.page-preorder .step3 .agree-list .checkbox .checkstyle {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4444444444vw;
  height: 4.4444444444vw;
  border: 1px solid #c8c8c8;
  border-radius: 50%;
  background: #fff;
  padding-top: 0.2777777778vw;
  transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .agree-list .checkbox .checkstyle {
    width: 1.375rem;
    height: 1.375rem;
    padding-top: 0.0625rem;
  }
}
.page-preorder .step3 .agree-list .checkbox .checkstyle::before {
  content: "";
  display: block;
  width: 1.1111111111vw;
  height: 1.9444444444vw;
  margin-top: -0.4166666667vw;
  border: solid #fff;
  border-width: 0 0.4166666667vw 0.4166666667vw 0;
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .agree-list .checkbox .checkstyle::before {
    width: 0.375rem;
    height: 0.6875rem;
    margin-top: -0.3125rem;
    border-width: 0 0.125rem 0.125rem 0;
  }
}
.page-preorder .step3 .agree-list .checkbox input[type=checkbox]:checked + .checkstyle {
  border-color: #2289ff;
  background: #2289ff;
}
.page-preorder .step3 .agree-list .checkbox input[type=checkbox]:checked + .checkstyle::before {
  opacity: 1;
}
.page-preorder .step3 .agree-list .checkbox .txt {
  flex: 1;
  font-size: 3.6111111111vw;
  line-height: 1.5;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .agree-list .checkbox .txt {
    font-size: 1.1875rem;
  }
}
.page-preorder .step3 .agree-note {
  margin-top: 4.1666666667vw;
  font-size: 3.6111111111vw;
  line-height: 1.6;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .agree-note {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}
.page-preorder .step3 .agree-note a {
  display: inline-block;
  color: #0077c8;
  text-decoration: underline;
}
.page-preorder .step3 .btnbox {
  display: flex;
  flex-direction: column;
  gap: 3.3333333333vw;
  margin-top: 8.3333333333vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .btnbox {
    flex-direction: row;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 3.75rem;
  }
}
.page-preorder .step3 .btnbox--stack .mybtn2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-preorder .step3 .btnbox--stack .mybtn2 {
    flex: 0 1 18.75rem;
    width: auto;
  }
}
.page-preorder .step4 .payfailbox {
  padding: 8.3333333333vw 0 11.1111111111vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step4 .payfailbox {
    padding: 6.25rem 0;
  }
}
.page-preorder .step4 .subtitle {
  margin-bottom: 11.1111111111vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step4 .subtitle {
    margin-bottom: 3.125rem;
  }
}
.page-preorder .step4 .sub {
  margin-bottom: 11.1111111111vw;
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-preorder .step4 .sub {
    font-size: 1.5625rem;
    margin-bottom: 3.125rem;
  }
}
.page-preorder .step4 .failtxt {
  font-size: 3.8888888889vw;
  line-height: 1.5;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-preorder .step4 .failtxt {
    font-size: 1rem;
  }
}
.page-preorder .step4 .failtxt .numlist {
  margin: 2.2222222222vw 0 0;
  padding-left: 4.8611111111vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step4 .failtxt .numlist {
    margin-top: 0.625rem;
    padding-left: 1.25rem;
  }
}
.page-preorder .step4 .failtxt .numlist li {
  list-style: decimal;
}
.page-preorder .step4 .btnbox {
  margin-top: 8.3333333333vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step4 .btnbox {
    margin-top: 5rem;
  }
}
.page-preorder .step4 .btnbox .mybtn2 {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-preorder .step4 .btnbox .mybtn2 {
    max-width: 18.75rem;
    margin: auto;
  }
}
.page-preorder .step5 .subtitle {
  margin-bottom: 11.1111111111vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .subtitle {
    margin-bottom: 2.5rem;
  }
}
.page-preorder .step5 .formbox {
  padding: 8.3333333333vw 0 11.1111111111vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .formbox {
    padding: 2.5rem 0 5rem;
  }
}
.page-preorder .step5 .greeting {
  margin-bottom: 11.1111111111vw;
  font-size: 3.8888888889vw;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .greeting {
    font-size: 1.1875rem;
    margin-bottom: 3.125rem;
  }
}
.page-preorder .step5 .greeting .name,
.page-preorder .step5 .greeting .title {
  display: inline;
}
.page-preorder .step5 .summary .item + .item {
  margin-top: 6.9444444444vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .summary .item + .item {
    margin-top: 3.75rem;
  }
}
.page-preorder .step5 .summary .item .label {
  font-size: 3.0555555556vw;
  line-height: 1.4;
  color: #505050;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .summary .item .label {
    font-size: 1rem;
  }
}
.page-preorder .step5 .summary .item .value {
  margin-top: 0.8333333333vw;
  padding-bottom: 1.9444444444vw;
  border-bottom: 1px solid #666666;
  font-size: 3.6111111111vw;
  line-height: 1.5;
  color: #505050;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .summary .item .value {
    font-size: 1.1875rem;
    padding-bottom: 0.875rem;
    margin-top: 0.625rem;
  }
}
.page-preorder .step5 .summary .item .value .em {
  color: #d62e2e;
}
.page-preorder .step5 .notelist {
  margin: 12.5vw 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .notelist {
    margin-top: 3.75rem;
  }
}
.page-preorder .step5 .notelist li {
  position: relative;
  padding-left: 3.4722222222vw;
  font-size: 3.6111111111vw;
  line-height: 1.4;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .notelist li {
    font-size: 1.1875rem;
    padding-left: 0.9375rem;
  }
}
.page-preorder .step5 .notelist li::before {
  content: "＊";
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.5;
  color: #000;
}
.page-preorder .step5 .notelist li .em {
  color: #d62e2e;
}
.page-preorder .step5 .btnbox {
  display: flex;
  flex-direction: column;
  gap: 3.3333333333vw;
  margin-top: 11.1111111111vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .btnbox {
    margin-top: 5rem;
    flex-direction: row;
    gap: 1.875rem;
    align-items: center;
    justify-content: center;
  }
}
.page-preorder .step5 .btnbox--stack .mybtn2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .btnbox--stack .mybtn2 {
    max-width: 18.75rem;
  }
}
.page-preorder .step5 .btnbox .btn-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2222222222vw;
  padding: 0vw 2.7777777778vw 0vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .btnbox .btn-reserve {
    gap: 4.6875rem;
    padding: 0rem 1.25rem 0rem;
    max-width: 26.875rem;
  }
}
.page-preorder .step5 .btnbox .btn-reserve .lottie-bell {
  flex-shrink: 0;
  width: 20.8333333333vw;
  height: 20.8333333333vw;
  filter: brightness(0) invert(1);
  margin-left: -4.1666666667vw;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .btnbox .btn-reserve .lottie-bell {
    width: 5.625rem;
    height: 5.625rem;
    margin-left: -1.25rem;
  }
}
.page-preorder .step5 .btnbox .btn-reserve .lottie-bell svg {
  display: block;
  width: 100%;
  height: 100%;
}
.page-preorder .step5 .btnbox .btn-reserve .btn-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.5;
  font-size: 3.6111111111vw;
  margin-left: -4.1666666667vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .step5 .btnbox .btn-reserve .btn-txt {
    font-size: 1rem;
  }
}
.page-preorder .step5 .btnbox .btn-buymore {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.4722222222vw 2.7777777778vw 2.7777777778vw;
  text-align: center;
}
.page-preorder .step5 .btnbox .btn-buymore .btn-txt {
  line-height: 1.4;
  font-size: 3.6111111111vw;
}

/* ====================================================================================
    查詢預購頁面
======================================================================================*/
body[data-p=search] {
  padding-bottom: var(--stepnav-h, 0);
}

@media screen and (min-width: 1024px) {
  .page-preorder .search .search-layout {
    display: flex;
    align-items: flex-start;
    max-width: 1396px;
    margin: 0 auto;
  }
}
.page-preorder .search .leftside {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .page-preorder .search .leftside {
    flex: 0 0 66%;
    max-width: 66%;
  }
}
.page-preorder .search .rightside {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .page-preorder .search .rightside {
    flex: 0 0 34%;
    max-width: 34%;
  }
}
.page-preorder .search .timebar {
  background: #d1edff;
  box-shadow: none;
}
.page-preorder .search .timebar.is-fixed {
  box-shadow: 0 0.5555555556vw 1.6666666667vw rgba(0, 0, 0, 0.08);
}
.page-preorder .search .kv {
  width: 100%;
  display: block;
}
.page-preorder .search .kv img {
  display: block;
  width: 100%;
}
.page-preorder .search .formbox {
  display: block;
  width: 100%;
  padding: 8.3333333333vw 0 11.1111111111vw;
  background: #fff;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .page-preorder .search .formbox {
    box-sizing: border-box;
    padding: 3.125rem 3.125rem;
  }
  .page-preorder .search .formbox .container {
    width: 100%;
    padding: 0;
  }
}
.page-preorder .search .pagetitle {
  margin: 0 0 11.1111111111vw;
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  font-family: "Samsung Sharp Sans Medium";
}
.page-preorder .search .pagetitle i {
  font-style: normal;
  font-weight: normal;
  font-family: "SamsungOneTCN 450";
  font-size: 85%;
}
@media screen and (min-width: 768px) {
  .page-preorder .search .pagetitle {
    margin: 0 0 2.5rem;
    font-size: 1.6875rem;
  }
}
.page-preorder .search .formlead {
  display: flex;
  align-items: flex-start;
  gap: 1.6666666667vw;
  margin: 0 0 5.5555555556vw;
  font-size: 3.8888888889vw;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-preorder .search .formlead {
    margin: 0 0 3.125rem;
    gap: 0.625rem;
    font-size: 1.1875rem;
  }
}
.page-preorder .search .form .field + .field {
  margin-top: 12.5vw;
}
.page-preorder .search .form .field .label {
  display: block;
  font-size: 3.0555555556vw;
  line-height: 1.4;
  color: #505050;
}
.page-preorder .search .form .field .label .req {
  color: #505050;
}
.page-preorder .search .form .field input[type=text],
.page-preorder .search .form .field input[type=tel],
.page-preorder .search .form .field input[type=password] {
  display: block;
  width: 100%;
  padding: 1.3888888889vw 0;
  border: 0;
  border-bottom: 1px solid #666666;
  border-radius: 0;
  background: transparent;
  font-size: 3.6111111111vw;
  line-height: 1.4;
  color: #000;
  appearance: none;
}
.page-preorder .search .form .field input[type=text]::placeholder,
.page-preorder .search .form .field input[type=tel]::placeholder,
.page-preorder .search .form .field input[type=password]::placeholder {
  color: #505050;
}
.page-preorder .search .form .field input[type=text]:focus,
.page-preorder .search .form .field input[type=tel]:focus,
.page-preorder .search .form .field input[type=password]:focus {
  border-bottom-color: #0077c8;
  outline: none;
}
.page-preorder .search .form .field--captcha {
  position: relative;
}
.page-preorder .search .form .field--captcha .captchabox {
  position: absolute;
  top: -2.0833333333vw;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.6944444444vw;
}
.page-preorder .search .form .field--captcha .captchabox .captcha-img {
  flex-shrink: 0;
  width: 16.6666666667vw;
  border: 1px solid #c8c8c8;
  background: #f5f5f5;
}
.page-preorder .search .form .field--captcha .captchabox .captcha-img img {
  display: block;
  width: 100%;
  height: auto;
}
.page-preorder .search .form .field--captcha .captchabox .captcha-refresh {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.7777777778vw;
  height: 7.7777777778vw;
  padding: 0;
  background: #fff;
  color: #000;
  cursor: pointer;
}
.page-preorder .search .form .field--captcha .captchabox .captcha-refresh i {
  font-size: 5.5555555556vw;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-preorder .search .form .field + .field {
    margin-top: 2.5rem;
  }
  .page-preorder .search .form .field .label {
    font-size: 1rem;
  }
  .page-preorder .search .form .field .label .req {
    color: #505050;
    font-family: "SamsungOneTCN 600";
  }
  .page-preorder .search .form .field input[type=text],
  .page-preorder .search .form .field input[type=tel],
  .page-preorder .search .form .field input[type=password] {
    padding: 0.625rem 0;
    font-size: 1.1875rem;
  }
  .page-preorder .search .form .field--captcha .captchabox {
    top: -0.3125rem;
    gap: 0.3125rem;
  }
  .page-preorder .search .form .field--captcha .captchabox .captcha-img {
    width: 5rem;
  }
  .page-preorder .search .form .field--captcha .captchabox .captcha-refresh {
    width: 2.5rem;
    height: 2.5rem;
  }
  .page-preorder .search .form .field--captcha .captchabox .captcha-refresh i {
    font-size: 1.875rem;
  }
}
.page-preorder .search .btnbox {
  margin-top: 13.8888888889vw;
}
.page-preorder .search .btnbox .mybtn2 {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-preorder .search .btnbox {
    margin-top: 3.125rem;
  }
}
.page-preorder .result .timebar {
  background: #d1edff;
  box-shadow: none;
}
.page-preorder .result .timebar.is-fixed {
  box-shadow: 0 0.5555555556vw 1.6666666667vw rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .page-preorder .result .timebar.is-fixed {
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  }
}
.page-preorder .result .formbox {
  padding: 8.3333333333vw 0 13.8888888889vw;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .formbox {
    padding: 5rem 0;
  }
}
.page-preorder .result .pagetitle {
  margin: 0 0 3.4722222222vw;
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .pagetitle {
    margin: 0 0 3.125rem;
    font-size: 1.5625rem;
  }
}
.page-preorder .result .ordertable-wrap {
  margin-bottom: 11.1111111111vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .ordertable-wrap {
    margin-bottom: 3.75rem;
  }
}
.page-preorder .result .ordertable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 3.0555555556vw;
  line-height: 1.3;
}
.page-preorder .result .ordertable tr {
  border-bottom: 1px solid #ffffff;
}
.page-preorder .result .ordertable th,
.page-preorder .result .ordertable td {
  padding: 3.4722222222vw 2.0833333333vw 2.7777777778vw;
  border: 0;
  vertical-align: middle;
  text-align: center;
}
.page-preorder .result .ordertable th:nth-child(1),
.page-preorder .result .ordertable td:nth-child(1) {
  width: 25%;
}
.page-preorder .result .ordertable th:nth-child(2),
.page-preorder .result .ordertable td:nth-child(2) {
  width: 26%;
}
.page-preorder .result .ordertable th:nth-child(3),
.page-preorder .result .ordertable td:nth-child(3) {
  width: 34%;
}
.page-preorder .result .ordertable thead th {
  background: #2289ff;
  color: #fff;
  font-weight: normal;
  text-align: center;
  position: relative;
}
.page-preorder .result .ordertable thead th:not(:first-child):not(.col-action)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.1388888889vw;
  height: 3.4722222222vw;
  background: #fff;
  transform: translateY(-50%);
}
.page-preorder .result .ordertable tbody td {
  color: #505050;
}
.page-preorder .result .ordertable tbody td:nth-child(3) {
  text-align: left;
}
.page-preorder .result .ordertable tbody tr:nth-child(odd) td {
  background: #f2f2f2;
}
.page-preorder .result .ordertable tbody tr:nth-child(even) td {
  background: #f9f9f9;
}
.page-preorder .result .ordertable .col-action {
  padding-left: 0;
}
.page-preorder .result .ordertable .btn-more {
  display: inline-block;
  min-width: 9.7222222222vw;
  padding: 2.7777777778vw 2.0833333333vw 2.2222222222vw;
  border-radius: 1.6666666667vw;
  background: #2289ff;
  font-size: 3.0555555556vw;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .ordertable {
    font-size: 1.1875rem;
  }
  .page-preorder .result .ordertable th,
  .page-preorder .result .ordertable td {
    padding: 1.25rem 0.625rem 0.9375rem;
  }
  .page-preorder .result .ordertable th:nth-child(1),
  .page-preorder .result .ordertable td:nth-child(1) {
    width: 22%;
  }
  .page-preorder .result .ordertable th:nth-child(2),
  .page-preorder .result .ordertable td:nth-child(2) {
    width: 22%;
  }
  .page-preorder .result .ordertable th:nth-child(3),
  .page-preorder .result .ordertable td:nth-child(3) {
    width: 42%;
  }
  .page-preorder .result .ordertable thead th:not(:first-child):not(.col-action)::before {
    width: 0.0625rem;
    height: 1.25rem;
  }
  .page-preorder .result .ordertable .btn-more {
    min-width: 4.375rem;
    padding: 0.9375rem 0.9375rem 0.625rem;
    border-radius: 6.25rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3.125rem;
    row-gap: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item {
    position: relative;
  }
}
.page-preorder .result .detail .confirm .item + .item {
  margin-top: 12.5vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item + .item {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item:nth-child(-n+4), .page-preorder .result .detail .confirm .item:nth-child(n+9) {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item:nth-child(5), .page-preorder .result .detail .confirm .item:nth-child(6), .page-preorder .result .detail .confirm .item:nth-child(7), .page-preorder .result .detail .confirm .item:nth-child(8) {
    display: grid;
    grid-template-columns: 6.875rem minmax(0, 1fr);
    align-items: end;
    border-bottom: 1px solid #666666;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item:nth-child(5) .label, .page-preorder .result .detail .confirm .item:nth-child(6) .label, .page-preorder .result .detail .confirm .item:nth-child(7) .label, .page-preorder .result .detail .confirm .item:nth-child(8) .label {
    margin-bottom: 0;
    padding-bottom: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item:nth-child(5) .value, .page-preorder .result .detail .confirm .item:nth-child(6) .value, .page-preorder .result .detail .confirm .item:nth-child(7) .value, .page-preorder .result .detail .confirm .item:nth-child(8) .value {
    margin-top: 0;
    border-bottom: 0;
  }
}
.page-preorder .result .detail .confirm .item .label {
  font-size: 3.0555555556vw;
  line-height: 1.4;
  color: #505050;
  margin-bottom: 1.6666666667vw;
}
.page-preorder .result .detail .confirm .item .label .req {
  color: #505050;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item .label {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}
.page-preorder .result .detail .confirm .item .value {
  margin-top: 0.8333333333vw;
  padding-bottom: 1.3888888889vw;
  border-bottom: 1px solid #666666;
  font-size: 3.6111111111vw;
  line-height: 1.3;
  color: #505050;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item .value {
    margin-top: 0.375rem;
    padding-bottom: 0.625rem;
    font-size: 1.1875rem;
  }
}
.page-preorder .result .detail .confirm .item .value .txt {
  margin: 0;
}
.page-preorder .result .detail .confirm .item .value a {
  color: #2289ff;
  text-decoration: underline;
  display: inline;
}
.page-preorder .result .detail .confirm .item .value a:hover {
  text-decoration: none;
}
.page-preorder .result .detail .confirm .item .value .note {
  font-size: 3.3333333333vw;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item .value .note {
    font-size: 1.125rem;
  }
}
.page-preorder .result .detail .confirm .item .value .note.em {
  color: #d62e2e;
}
.page-preorder .result .detail .confirm .item .value .em {
  color: #d62e2e;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item--action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 1.875rem;
    border-bottom: 1px solid #666666;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item--action .label {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item--action .value {
    flex: 0 1 auto;
    min-width: 0;
    margin-top: 0;
    border-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .confirm .item--action .btn-inline {
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: 0.625rem;
  }
}
.page-preorder .result .detail .btn-inline {
  display: inline-block;
  margin-top: 2.0833333333vw;
  padding: 2.7777777778vw 5.5555555556vw 2.0833333333vw;
  border-radius: 999px;
  background: #2289ff;
  font-size: 3.6111111111vw;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .btn-inline {
    margin-top: 0.9375rem;
    padding: 0.9375rem 1.5625rem 0.625rem;
    font-size: 1rem;
  }
}
.page-preorder .result .detail .numlist {
  margin: 12.5vw 0 0;
  padding: 0 0 0 4.1666666667vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .numlist {
    margin: 3.125rem 0 0;
    padding: 0 0 0 1.25rem;
  }
}
.page-preorder .result .detail .numlist li {
  font-size: 3.6111111111vw;
  line-height: 1.5;
  color: #000;
  list-style: decimal;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .numlist li {
    font-size: 1.1875rem;
  }
}
.page-preorder .result .detail .numlist li .em {
  color: #d62e2e;
}
.page-preorder .result .detail .btnbox {
  display: flex;
  flex-direction: column;
  gap: 3.3333333333vw;
  margin-top: 11.1111111111vw;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .btnbox {
    gap: 1.875rem;
    margin-top: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .btnbox--stack {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.page-preorder .result .detail .btnbox--stack .mybtn2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-preorder .result .detail .btnbox--stack .mybtn2 {
    max-width: 18.75rem;
  }
}

/* ====================================================================================
    ses rule
======================================================================================*/
@media screen and (min-width: 768px) {
  .page-sesrule .kv {
    background-color: #f5f5f5;
    margin-bottom: 2.5rem;
  }
}
.page-sesrule .kv picture {
  display: block;
}
@media screen and (min-width: 768px) {
  .page-sesrule .kv picture {
    max-width: 90rem;
    margin: 0 auto;
    width: 100%;
    height: auto;
  }
}
.page-sesrule .page-title {
  font-size: 7.0833333333vw;
  color: #000;
  font-weight: 700;
  text-align: center;
  padding: 5.5555555556vw 0 6.9444444444vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .container {
    max-width: 70rem;
  }
}
.page-sesrule .foretext {
  text-align: center;
  padding: 5.5555555556vw 0;
}
@media screen and (min-width: 768px) {
  .page-sesrule .foretext {
    padding: 2.625rem 0 3rem;
  }
}
.page-sesrule .foretext .lead {
  margin: 0 0 4.1666666667vw;
  font-size: 4.0277777778vw;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-sesrule .foretext .lead {
    margin-bottom: 1.625rem;
    font-size: 1.5rem;
  }
}
.page-sesrule .foretext .list {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .page-sesrule .foretext .list {
    display: flex;
    justify-content: center;
    gap: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .foretext .item {
    flex: 1;
    min-width: 0;
    max-width: 20rem;
  }
}
.page-sesrule .foretext .item:not(:last-child) {
  margin-bottom: 3.4722222222vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .foretext .item:not(:last-child) {
    margin-bottom: 0;
  }
}
.page-sesrule .foretext .label {
  display: inline-block;
  margin: 0 0 2.2222222222vw;
  padding: 2.7777777778vw 0vw 2.0833333333vw;
  border-radius: 6.9444444444vw;
  background: #535353;
  font-size: 3.6111111111vw;
  font-weight: 700;
  color: #fff;
  text-align: center;
  width: 65.2777777778vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .foretext .label {
    width: 100%;
    margin-bottom: 0.625rem;
    padding: 0.75rem 1.125rem 0.625rem;
    border-radius: 62.4375rem;
    font-size: 1.125rem;
  }
}
.page-sesrule .foretext .value {
  margin: 0;
}
.page-sesrule .foretext .value p {
  margin: 0;
  font-size: 4.0277777778vw;
  line-height: 1.2;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-sesrule .foretext .value p {
    font-size: 1.0625rem;
    line-height: 1.45;
  }
}
.page-sesrule .foretext .value p + p {
  margin-top: 0.8333333333vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .foretext .value p + p {
    margin-top: 0.25rem;
  }
}
.page-sesrule .rulemenu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  z-index: 120;
  padding: 2.7777777778vw 6.9444444444vw;
}
.page-sesrule .rulemenu.is-fixed {
  position: fixed;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-sesrule .rulemenu.is-fixed {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
@media screen and (min-width: 1024px) {
  .page-sesrule .rulemenu {
    padding: 1.25rem 0;
  }
}
.page-sesrule .rulemenu .container {
  display: flex;
  width: 100%;
  max-width: 70rem;
  margin: 0 auto;
}
.page-sesrule .rulemenu .tab {
  flex: 1;
  min-width: 0;
}
.page-sesrule .rulemenu .tabbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding-bottom: 2.0833333333vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .rulemenu .tabbtn {
    padding-bottom: 0.75rem;
  }
}
.page-sesrule .rulemenu .tabbtn:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 0.8333333333vw;
  background: #d9d9d9;
}
@media screen and (min-width: 768px) {
  .page-sesrule .rulemenu .tabbtn:after {
    height: 0.25rem;
  }
}
.page-sesrule .rulemenu .icon {
  display: block;
  width: 15.4166666667vw;
  margin: 0 auto 2.0833333333vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .rulemenu .icon {
    width: 5.625rem;
    margin-bottom: 0.625rem;
  }
}
.page-sesrule .rulemenu .icon img {
  display: block;
  width: 100%;
  height: auto;
}
.page-sesrule .rulemenu .icon .icon-over {
  display: none;
}
.page-sesrule .rulemenu .txt {
  font-size: 3.4722222222vw;
  color: #b3b3b3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-sesrule .rulemenu .txt {
    font-size: 1.25rem;
  }
}
.page-sesrule .rulemenu .tab:hover .icon-default,
.page-sesrule .rulemenu .tab.is-active .icon-default {
  display: none;
}
.page-sesrule .rulemenu .tab:hover .icon-over,
.page-sesrule .rulemenu .tab.is-active .icon-over {
  display: block;
}
.page-sesrule .rulemenu .tab:hover .txt,
.page-sesrule .rulemenu .tab.is-active .txt {
  color: #2289ff;
  font-weight: 700;
}
.page-sesrule .rulemenu .tab.is-active .tabbtn::after {
  background: #2289ff;
}
.page-sesrule .rulemenu-ph {
  display: none;
  width: 100%;
}
.page-sesrule .rulecontent {
  padding: 2.7777777778vw 0 0;
}
@media screen and (min-width: 768px) {
  .page-sesrule .rulecontent {
    padding-top: 0rem;
  }
}
.page-sesrule .rulecontent .con {
  display: none;
}
.page-sesrule .rulecontent .con.is-active {
  display: block;
}
.page-sesrule .rulecontent .block {
  padding-bottom: 5.5555555556vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .rulecontent .block {
    padding-bottom: 3rem;
  }
}
.page-sesrule .rulecontent .contitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2.7777777778vw;
  padding: 3.4722222222vw 0 2.7777777778vw;
  border-radius: 2.0833333333vw;
  background: #2289ff;
  font-size: 4.1666666667vw;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-sesrule .rulecontent .contitle {
    margin-bottom: 1.125rem;
    padding: 1.125rem 0 0.8125rem;
    border-radius: 0.625rem;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .page-sesrule .rulecontent .contitle {
    font-size: 1.625rem;
  }
}
.page-sesrule .ruleaccord {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-sesrule .ruleaccord .item {
  overflow: hidden;
  margin-top: -1px;
}
.page-sesrule .ruleaccord .item.is-open .body {
  display: block;
}
.page-sesrule .ruleaccord .thisbtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3888888889vw;
  width: 100%;
  padding: 2.7777777778vw 4.1666666667vw 2.0833333333vw;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border: 1px solid #d9d9d9;
  border-radius: 2.0833333333vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .thisbtn {
    padding: 1.25rem 1.25rem 0.9375rem;
    border-radius: 0.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .page-sesrule .ruleaccord .thisbtn {
    gap: 0.75rem;
    padding: 1.375rem 1.75rem 1.25rem;
  }
}
.page-sesrule .ruleaccord .thisbtn .txt {
  flex: 1;
  min-width: 0;
  font-size: 3.4722222222vw;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .thisbtn .txt {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .page-sesrule .ruleaccord .thisbtn .txt {
    font-size: 1.3125rem;
    line-height: 1.35;
  }
}
.page-sesrule .ruleaccord .thisbtn .icon {
  flex-shrink: 0;
  font-size: 5.5555555556vw;
  line-height: 1;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .thisbtn .icon {
    font-size: 1.625rem;
  }
}
.page-sesrule .ruleaccord .body {
  display: none;
}
.page-sesrule .ruleaccord .body .inner {
  padding: 3.4722222222vw 1.3888888889vw;
  font-size: 3.3333333333vw;
  line-height: 1.5;
  color: #000;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner {
    padding: 1.375rem 1.75rem;
    font-size: 1rem;
    line-height: 1.65;
  }
}
.page-sesrule .ruleaccord .body .inner .dotlist {
  margin: 0;
  padding-left: 3.4722222222vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .dotlist {
    padding-left: 1.25rem;
  }
}
.page-sesrule .ruleaccord .body .inner .dotlist > li {
  list-style: disc;
}
.page-sesrule .ruleaccord .body .inner .cirlist {
  margin: 1.1111111111vw 0 0;
  padding-left: 3.4722222222vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .cirlist {
    margin-top: 0.375rem;
    padding-left: 1.25rem;
  }
}
.page-sesrule .ruleaccord .body .inner .cirlist > li {
  list-style: circle;
}
.page-sesrule .ruleaccord .body .inner .numlist {
  margin: 1.1111111111vw 0 0;
  padding-left: 3.4722222222vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .numlist {
    margin-top: 0.375rem;
    padding-left: 1.25rem;
  }
}
.page-sesrule .ruleaccord .body .inner .numlist > li {
  list-style: decimal;
}
.page-sesrule .ruleaccord .body .inner .snumlist {
  margin: 1.1111111111vw 0 0;
  padding-left: 5.5555555556vw;
  counter-reset: snum;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .snumlist {
    margin-top: 0.375rem;
    padding-left: 2.125rem;
  }
}
.page-sesrule .ruleaccord .body .inner .snumlist > li {
  list-style: none;
  counter-increment: snum;
  text-indent: -5.5555555556vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .snumlist > li {
    text-indent: -2.125rem;
  }
}
.page-sesrule .ruleaccord .body .inner .snumlist > li::before {
  content: "(" counter(snum) ") ";
}
.page-sesrule .ruleaccord .body .inner .snumlist .cirlist {
  padding-left: 4.8611111111vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .snumlist .cirlist {
    padding-left: 1.75rem;
  }
}
.page-sesrule .ruleaccord .body .inner .snumlist .cirlist > li {
  padding-left: 4.8611111111vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .snumlist .cirlist > li {
    padding-left: 1.75rem;
  }
}
.page-sesrule .ruleaccord .body .inner .snumlist p {
  padding-left: 5.5555555556vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .snumlist p {
    padding-left: 2.125rem;
  }
}
.page-sesrule .ruleaccord .body .inner .snumlist p.gray {
  display: inline-block;
  background-color: #c9c9c9;
  font-weight: 700;
}
.page-sesrule .ruleaccord .body .inner .snumlist p.gray font {
  padding: 0 0.2777777778vw;
}
.page-sesrule .ruleaccord .body .inner li:not(:last-child) {
  margin-bottom: 0.6944444444vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner li:not(:last-child) {
    margin-bottom: 0.25rem;
  }
}
.page-sesrule .ruleaccord .body .inner p {
  margin: 0;
}
.page-sesrule .ruleaccord .body .inner p + p {
  margin-top: 2.0833333333vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner p + p {
    margin-top: 0.625rem;
  }
}
.page-sesrule .ruleaccord .body .inner p.gray {
  display: inline-block;
  background-color: #c9c9c9;
  font-weight: 700;
}
.page-sesrule .ruleaccord .body .inner p.gray font {
  padding: 0 0.2777777778vw;
}
.page-sesrule .ruleaccord .body .inner .link {
  display: inline;
  color: #2289ff;
  text-decoration: underline;
}
.page-sesrule .ruleaccord .body .inner .link:hover {
  text-decoration: none;
}
.page-sesrule .ruleaccord .body .inner em {
  color: red;
  font-weight: 700;
}
.page-sesrule .ruleaccord .body .inner .new {
  display: inline-block;
  font-size: 2.7777777778vw;
  font-weight: 700;
  line-height: 1;
  background-color: red;
  color: #fff;
  border-radius: 0.6944444444vw;
  padding: 0.9722222222vw 0.9722222222vw 0.4166666667vw;
  text-indent: 0;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .new {
    font-size: 0.75rem;
    border-radius: 0.25rem;
    padding: 0.25rem 0.3125rem 0.1875rem;
  }
}
.page-sesrule .ruleaccord .body .inner .tablewrap {
  position: relative;
  margin: 3.4722222222vw 0;
  overflow-x: visible;
  border-radius: 2.5vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .tablewrap {
    margin: 1.25rem 0;
    overflow-x: visible;
    border-radius: 1rem;
  }
}
.page-sesrule .ruleaccord .body .inner .tablewrap-preview {
  margin-bottom: 1.6666666667vw;
  max-height: 26.3888888889vw;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .tablewrap-preview {
    margin-bottom: 0.75rem;
    max-height: 9.375rem;
  }
}
.page-sesrule .ruleaccord .body .inner .tablewrap-preview::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6.25vw;
  z-index: 2;
  width: 110%;
  height: 33.3333333333vw;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 72%);
  transform: translateX(-5%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .tablewrap-preview::after {
    bottom: -1.875rem;
    height: 9.375rem;
  }
}
.page-sesrule .ruleaccord .body .inner .tablewrap-preview:not(.is-open) {
  box-shadow: inset 0 -4.1666666667vw 0 #fff;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .tablewrap-preview:not(.is-open) {
    box-shadow: inset 0 -1.25rem 0 #fff;
  }
}
.page-sesrule .ruleaccord .body .inner .tablewrap-preview:not(.is-open)::after {
  opacity: 0.6;
}
.page-sesrule .ruleaccord .body .inner .tablewrap-preview.is-open {
  max-height: none;
}
.page-sesrule .ruleaccord .body .inner .rule-store-more {
  margin: -2.7777777778vw auto 3.4722222222vw;
  padding: 0;
  border: 0;
  background: none;
  color: #000;
  font-weight: 700;
  font-size: 3.75vw;
  line-height: 1.35;
  cursor: pointer;
  position: relative;
  z-index: 10;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .rule-store-more {
    margin-top: -1.25rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
  }
}
.page-sesrule .ruleaccord .body .inner .rule-store-more:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11%;
  z-index: 2;
  width: 110%;
  height: 33.3333333333vw;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 55%);
  transform: translateX(-5%);
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .rule-store-more:after {
    bottom: 1.25rem;
    height: 9.375rem;
  }
}
.page-sesrule .ruleaccord .body .inner .rule-store-more .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.page-sesrule .ruleaccord .body .inner .rule-store-more .txt {
  display: block;
}
.page-sesrule .ruleaccord .body .inner .rule-store-more .arrow {
  display: block;
  width: 0;
  height: 0;
  margin-top: 1.1111111111vw;
  border-style: solid;
  border-width: 2.5vw 1.6666666667vw 0 1.6666666667vw;
  border-color: #88c5ff transparent transparent transparent;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .rule-store-more .arrow {
    margin-top: 0.375rem;
    border-width: 0.75rem 0.5rem 0 0.5rem;
  }
}
.page-sesrule .ruleaccord .body .inner .rule-store-more.is-open {
  margin-top: 0vw;
}
.page-sesrule .ruleaccord .body .inner .rule-store-more.is-open:after {
  opacity: 0;
}
.page-sesrule .ruleaccord .body .inner .rule-store-more.is-open .arrow {
  transform: rotate(180deg);
}
.page-sesrule .ruleaccord .body .inner .tabletitle {
  margin-bottom: 1.3888888889vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .tabletitle {
    margin-bottom: 0.5rem;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 2.5vw;
  font-size: 3.0555555556vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable {
    min-width: 0;
    border-radius: 1rem;
    font-size: 1rem;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable th, .page-sesrule .ruleaccord .body .inner .ruletable td {
  padding: 2.7777777778vw 2.7777777778vw 2.0833333333vw;
  border: 0;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: #f4f4f4;
  vertical-align: top;
  line-height: 1.3;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable th, .page-sesrule .ruleaccord .body .inner .ruletable td {
    padding: 0.9375rem 0.9375rem 0.75rem;
    line-height: 1.45;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable th:last-child, .page-sesrule .ruleaccord .body .inner .ruletable td:last-child {
  border-right: 0;
}
.page-sesrule .ruleaccord .body .inner .ruletable th {
  background: #2289ff;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.page-sesrule .ruleaccord .body .inner .ruletable thead tr:last-child th {
  border-bottom: 1px solid #fff;
}
.page-sesrule .ruleaccord .body .inner .ruletable tbody tr:last-child td {
  border-bottom: 0;
}
.page-sesrule .ruleaccord .body .inner .ruletable-stack-list.is-store-event-source {
  display: none;
}
.page-sesrule .ruleaccord .body .inner .ruletable-stack-list .ruletable-stack + .ruletable-stack {
  margin-top: 2.2222222222vw;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-radius: 0;
  overflow: hidden;
  font-size: 3.0555555556vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile {
    display: none;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile .col-store {
  width: 56%;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile th,
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile td {
  padding: 2.5vw 1.3888888889vw 2.0833333333vw;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  line-height: 1.35;
  vertical-align: middle;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile th {
  background: #2289ff;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile .store-cell {
  background: #2289ff;
  color: #fff;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile .time-cell {
  background: #e7eef7;
  color: #000;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile .store-name {
  display: inline-block;
  width: 36.1111111111vw;
  vertical-align: middle;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile .pinlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  vertical-align: middle;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile .pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.8333333333vw;
  height: 7.2222222222vw;
  vertical-align: middle;
  background: transparent;
  position: relative;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile .pin::before {
  content: "";
  display: block;
  width: 3.8888888889vw;
  height: 3.8888888889vw;
  background: #d11d1d;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-event-mobile .pin::after {
  content: "";
  position: absolute;
  width: 1.5277777778vw;
  height: 1.5277777778vw;
  border-radius: 50%;
  background: #2289ff;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-radius: 2.5vw;
  overflow: hidden;
  font-size: 3.0555555556vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile {
    display: none;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile .col-store {
  width: 62%;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile .col-quota {
  width: 38%;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile th,
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile td {
  padding: 2.5vw 1.3888888889vw 2.0833333333vw;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  line-height: 1.35;
  vertical-align: middle;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile th {
  background: #2289ff;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile .store-cell {
  background: #2289ff;
  color: #fff;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile .quota-cell {
  background: #dce4f2;
  color: #000;
  text-align: center;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile .store-name {
  display: inline-block;
  width: 36.1111111111vw;
  vertical-align: middle;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile .pinlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  vertical-align: middle;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile .pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.8333333333vw;
  height: 7.2222222222vw;
  vertical-align: middle;
  background: transparent;
  position: relative;
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile .pin::before {
  content: "";
  display: block;
  width: 3.8888888889vw;
  height: 3.8888888889vw;
  background: #d11d1d;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.page-sesrule .ruleaccord .body .inner .ruletable-store-quota-mobile .pin::after {
  content: "";
  position: absolute;
  width: 1.5277777778vw;
  height: 1.5277777778vw;
  border-radius: 50%;
  background: #2289ff;
}
.page-sesrule .ruleaccord .body .inner .ruletable-stack {
  table-layout: fixed;
  width: 100%;
  min-width: 0;
  font-size: 3.0555555556vw;
  border-radius: 2.2222222222vw;
}
.page-sesrule .ruleaccord .body .inner .ruletable-stack th,
.page-sesrule .ruleaccord .body .inner .ruletable-stack td {
  padding: 2.7777777778vw 2.7777777778vw 2.0833333333vw;
  word-break: break-word;
  overflow-wrap: anywhere;
  vertical-align: middle;
  text-align: left;
}
.page-sesrule .ruleaccord .body .inner .ruletable-stack th {
  width: 38%;
  background: #2289ff;
  color: #fff;
  font-weight: 700;
  white-space: normal;
  text-align: center;
}
.page-sesrule .ruleaccord .body .inner .ruletable-stack td {
  width: 66%;
  background: #f4f4f4;
  color: #000;
}
.page-sesrule .ruleaccord .body .inner .ruletable-stack tr:last-child th,
.page-sesrule .ruleaccord .body .inner .ruletable-stack tr:last-child td {
  border-bottom: 0;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style1 th:first-child,
.page-sesrule .ruleaccord .body .inner .ruletable-style1 td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 12.5vw;
  min-width: 12.5vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-style1 th:first-child,
  .page-sesrule .ruleaccord .body .inner .ruletable-style1 td:first-child {
    width: 4.375rem;
    min-width: 4.375rem;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable-style1 th:nth-child(2), .page-sesrule .ruleaccord .body .inner .ruletable-style1 td:nth-child(2) {
  border-left: 0;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style1 th:first-child {
  z-index: 4;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style1 td:first-child {
  background: #f4f4f4;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event {
    table-layout: fixed;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event .col-no {
    width: 6%;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event .col-store-type,
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event .col-store-name {
    width: 17%;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event .col-event-time {
    width: 27%;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event .col-address {
    width: 37%;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event th:first-child,
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event td:first-child {
    width: auto;
    min-width: 0;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event th,
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event td {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event th:nth-child(3),
  .page-sesrule .ruleaccord .body .inner .ruletable-store-event td:nth-child(4) {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota {
    table-layout: fixed;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota .col-no {
    width: 6%;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota .col-store-type,
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota .col-store-name {
    width: 17%;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota .col-address {
    width: 44%;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota .col-quota {
    width: 16%;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota th:first-child,
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota td:first-child {
    width: auto;
    min-width: 0;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota th,
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota td {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota th:last-child,
  .page-sesrule .ruleaccord .body .inner .ruletable-store-quota td:last-child {
    white-space: nowrap;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 .col-area {
  width: 22%;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-style2 .col-area {
    width: 16%;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 .col-product {
  width: 52%;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-style2 .col-product {
    width: 70%;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 .col-price {
  width: 26%;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-style2 .col-price {
    width: 14%;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 th,
.page-sesrule .ruleaccord .body .inner .ruletable-style2 td {
  word-break: break-word;
  overflow-wrap: anywhere;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 th.bgblue,
.page-sesrule .ruleaccord .body .inner .ruletable-style2 td.bgblue {
  background-color: #2289ff !important;
  color: #fff !important;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 th.align-left,
.page-sesrule .ruleaccord .body .inner .ruletable-style2 td.align-left {
  text-align: left;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 th.align-center,
.page-sesrule .ruleaccord .body .inner .ruletable-style2 td.align-center {
  text-align: center;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 .row-combo-b .combo-content {
  min-width: 0;
  background: #f4f4f4;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 .row-combo-b .dotlist {
  margin: 0.8333333333vw 0 2.5vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-style2 .row-combo-b .dotlist {
    margin: 0.25rem 0 0.75rem;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 tbody .combo-content {
  text-align: left;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style2 td:first-child {
  background-color: #f4f4f4;
  color: #000;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style3 {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style3 th,
.page-sesrule .ruleaccord .body .inner .ruletable-style3 td {
  word-break: break-word;
  overflow-wrap: anywhere;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style3 th:first-child,
.page-sesrule .ruleaccord .body .inner .ruletable-style3 td:first-child {
  width: 22%;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-style3 th:first-child,
  .page-sesrule .ruleaccord .body .inner .ruletable-style3 td:first-child {
    width: 18%;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable-style3 th:nth-child(2),
.page-sesrule .ruleaccord .body .inner .ruletable-style3 td:nth-child(2) {
  width: 48%;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-style3 th:nth-child(2),
  .page-sesrule .ruleaccord .body .inner .ruletable-style3 td:nth-child(2) {
    width: 58%;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable-style3 th:nth-child(3),
.page-sesrule .ruleaccord .body .inner .ruletable-style3 td:nth-child(3) {
  width: 30%;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .body .inner .ruletable-style3 th:nth-child(3),
  .page-sesrule .ruleaccord .body .inner .ruletable-style3 td:nth-child(3) {
    width: 24%;
  }
}
.page-sesrule .ruleaccord .body .inner .ruletable-style3 th.bgblue,
.page-sesrule .ruleaccord .body .inner .ruletable-style3 td.bgblue {
  background-color: #2289ff !important;
  color: #fff !important;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style3 th.align-center,
.page-sesrule .ruleaccord .body .inner .ruletable-style3 td.align-center {
  text-align: center;
}
.page-sesrule .ruleaccord .body .inner .ruletable-style3 td:first-child {
  background-color: #f4f4f4;
  color: #000;
}
.page-sesrule .ruleaccord .emptytext {
  padding: 4.8611111111vw 2.7777777778vw;
  border: 1px solid #d9d9d9;
  border-radius: 2.0833333333vw;
  font-size: 4.0277777778vw;
  line-height: 1.5;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-sesrule .ruleaccord .emptytext {
    padding: 1.75rem 1.25rem;
    border-radius: 0.625rem;
    font-size: 1.125rem;
  }
}
.page-sesrule .con-flow .flowlist {
  margin: 0;
  padding: 2.7777777778vw 0 5.5555555556vw;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .page-sesrule .con-flow .flowlist {
    width: 50rem;
    margin: 0 auto;
    padding: 1.125rem 0 5rem;
  }
}
.page-sesrule .con-flow .flowitem {
  position: relative;
}
.page-sesrule .con-flow .flowitem:not(:last-child) {
  margin-bottom: 6.25vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .con-flow .flowitem:not(:last-child) {
    margin-bottom: 2.125rem;
  }
}
.page-sesrule .con-flow .flowitem:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4.5833333333vw;
  width: 0;
  height: 0;
  border-left: 1.6666666667vw solid transparent;
  border-right: 1.6666666667vw solid transparent;
  border-top: 3.3333333333vw solid #94ccff;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .page-sesrule .con-flow .flowitem:not(:last-child)::after {
    bottom: -1.5625rem;
    border-left-width: 0.5rem;
    border-right-width: 0.5rem;
    border-top-width: 1rem;
  }
}
.page-sesrule .con-flow .flowcard {
  display: flex;
  align-items: center;
  gap: 2.7777777778vw;
  min-height: 27.7777777778vw;
  padding: 4.1666666667vw 4.8611111111vw;
  border: 1px solid #dddddd;
  border-radius: 2.0833333333vw;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .page-sesrule .con-flow .flowcard {
    gap: 1.5rem;
    min-height: 6.5rem;
    padding: 1.375rem 1.75rem;
    border-radius: 0.5rem;
  }
}
.page-sesrule .con-flow .flowcard .flowlabel {
  flex: 0 0 17.3611111111vw;
  width: 17.3611111111vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-sesrule .con-flow .flowcard .flowlabel {
    flex-basis: 6.875rem;
    width: 6.875rem;
  }
}
.page-sesrule .con-flow .flowcard .pic {
  width: 100%;
  text-align: center;
}
.page-sesrule .con-flow .flowcard .pic img {
  display: block;
  width: 9.3055555556vw;
  margin: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .page-sesrule .con-flow .flowcard .pic img {
    width: 2.75rem;
  }
}
.page-sesrule .con-flow .flowcard .step {
  display: block;
  margin: 0.5555555556vw 0 0;
  font-size: 4.0277777778vw;
  font-weight: 700;
  line-height: 1.1;
  color: #333333;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-sesrule .con-flow .flowcard .step {
    margin-top: 0.25rem;
    font-size: 1.125rem;
  }
}
.page-sesrule .con-flow .flowcard .txt {
  flex: 1;
  min-width: 0;
  font-size: 4.0277777778vw;
  font-weight: 400;
  line-height: 1.45;
  color: #333333;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-sesrule .con-flow .flowcard .txt {
    font-size: 1.125rem;
  }
}
.page-sesrule .con-flow .flowcard .txt small {
  display: block;
  margin-top: 1.1111111111vw;
  font-size: 2.6388888889vw;
  line-height: 1.35;
  color: #7a7a7a;
}
@media screen and (min-width: 768px) {
  .page-sesrule .con-flow .flowcard .txt small {
    margin-top: 0.25rem;
    font-size: 0.75rem;
  }
}
.page-sesrule .sec3 {
  background-color: #f4f4f4;
  padding: 8.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .page-sesrule .sec3 {
    padding: 3.75rem 0;
  }
}
.page-sesrule .warnbox .title {
  font-size: 4.4444444444vw;
  font-weight: 700;
  color: #000;
  margin-bottom: 2.7777777778vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .warnbox .title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
.page-sesrule .warnbox .listing {
  font-size: 3.3333333333vw;
  line-height: 1.7;
  color: #000;
  padding-left: 4.1666666667vw;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .page-sesrule .warnbox .listing {
    font-size: 1rem;
    padding-left: 1.25rem;
  }
}
.page-sesrule .warnbox .listing > li {
  list-style: upper-alpha;
  padding-left: 1.3888888889vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .warnbox .listing > li {
    padding-left: 0.5rem;
  }
}
.page-sesrule .warnbox .listing .dotlist {
  padding-left: 4.1666666667vw;
}
@media screen and (min-width: 768px) {
  .page-sesrule .warnbox .listing .dotlist {
    padding-left: 1.25rem;
  }
}
.page-sesrule .warnbox .listing .dotlist li {
  list-style: disc;
}
.page-sesrule .warnbox .listing .link {
  color: #2289ff;
  text-decoration: underline;
  display: inline;
}
.page-sesrule .warnbox .listing .link:hover {
  text-decoration: none;
}/*# sourceMappingURL=main.min.css.map */
