@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  background-color: #fff;
  color: var(--BK);
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
:root {
  --BK: #333333;
  --LBK: #555555;
  --BGBK: #282828;
  --RD: #E60000;
  --LRD: #E73A47;
  --TRD: #D81D1D;
  --YE: #F7FF14;
  --GR: #06C755;
  --BL: #08629F;
  --LBL: #3399FF;
  --OR: #FF5F5A;
  --LGY: #F5F5F5;
  --font-base: "Noto Sans JP", sans-serif;
  --font-sub: "M PLUS 1p", sans-serif;
  --font-en: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

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

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

textarea {
  resize: none;
}

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

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

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

/*========== inner ==========*/
.l-inner {
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
    max-width: 390px;
  }
}
/*========== page-header ==========*/
.page-header {
  background-color: var(--BGBK);
  color: #fff;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .page-header {
    padding: 10px 20px;
  }
}
.page-header span {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-family: var(--font-sub);
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .page-header span {
    font-size: 20px;
    max-width: 390px;
  }
}
/*========== date-color ==========*/
span.fri {
  color: var(--BK);
}

span.sat {
  color: var(--LBL);
}

span.sun {
  color: var(--LRD);
}

span.mon {
  color: var(--LRD);
}

/*========== sec-title ==========*/
.sec-title-wrap {
  padding-bottom: 16px;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 767px) {
  .sec-title-wrap {
    padding-bottom: 8px;
  }
}
.sec-title {
  font-size: 63px;
  line-height: 1;
  font-weight: 900;
  color: #000;
}

@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 31.5px;
  }
}
.sec-lead {
  display: inline-block;
  margin-top: 9px;
  font-size: 28px;
  line-height: 1.8571428571;
  color: #999;
}

@media screen and (max-width: 767px) {
  .sec-lead {
    margin-top: 4.5px;
    font-size: 14px;
  }
}
.sec-head-wrap {
  padding-left: 62px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sec-head-wrap {
    padding-left: 31px;
  }
}
.sec-head-wrap::before {
  content: "";
  background-color: var(--RD);
  width: 10px;
  height: 110px;
  display: inline-block;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .sec-head-wrap::before {
    width: 5px;
    height: 55px;
  }
}
.sec-head-title {
  font-size: 53px;
  line-height: 1.1132075472;
  font-weight: 700;
  color: #000;
}

@media screen and (max-width: 767px) {
  .sec-head-title {
    font-size: 26px;
  }
}
.sec-head-lead {
  font-size: 26px;
  line-height: 2;
  display: inline-block;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .sec-head-lead {
    font-size: 13px;
    margin-top: 4px;
  }
}
/*========== sec-img ==========*/
.sec-img {
  max-width: 700px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .sec-img {
    max-width: 350px;
  }
}
.sec-img img {
  aspect-ratio: 700/400;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*========== sec-btn ==========*/
.sec-btn {
  max-width: 540px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .sec-btn {
    max-width: 270px;
  }
}
.sec-btn a {
  display: inline-block;
  width: 100%;
  background-color: var(--BGBK);
  color: #fff;
  border-radius: 20px;
  padding: 40px 50px;
  position: relative;
  font-size: 30px;
  line-height: 1.2333333333;
}

@media screen and (max-width: 767px) {
  .sec-btn a {
    border-radius: 10px;
    padding: 20px 25px;
    font-size: 15px;
  }
}
.sec-btn a::before {
  content: "";
  background-image: url(../img/icon-arrow_wh02.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 30px;
  height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
}

@media screen and (max-width: 767px) {
  .sec-btn a::before {
    width: 15px;
    height: 16px;
    right: 25px;
  }
}
header.header {
  height: 132px;
}

@media screen and (max-width: 865px) {
  header.header {
    height: 105px;
    margin-bottom: 10px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}
@media screen and (max-width: 865px) {
  .header__inner {
    height: 70px;
  }
}

.header__logo {
  max-width: 553px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

@media screen and (max-width: 865px) {
  .header__logo {
    max-width: 300px;
    margin-top: 5px;
  }
}
.header__logo a {
  height: inherit;
}

.header #google_translate_element {
  max-width: 955px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -45px;
}
@media screen and (max-width: 865px) {
  .header #google_translate_element {
    background-color: var(--LBK);
    margin-top: 0;
    padding: 5px 0;
  }
}
.header .goog-te-banner-frame.skiptranslate,
.header .goog-te-balloon-frame {
  display: none !important;
}
.header #google_translate_element .goog-te-gadget {
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 865px) {
  .header #google_translate_element .goog-te-gadget {
    margin-right: auto;
  }
}
.header #google_translate_element .goog-te-gadget-simple {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header #google_translate_element .goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed img {
  display: none;
}
.header #google_translate_element .goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span:nth-child(3) {
  margin-left: 5px;
  margin-right: 5px;
}
.header .goog-te-combo {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #1a58ba;
  background: #fff;
}

.footer {
  padding: 105px 0 38px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 52px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.footer__sns {
  max-width: 615px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

@media screen and (max-width: 767px) {
  .footer__sns {
    max-width: 308px;
    gap: 30px;
  }
}
.footer__nav {
  margin-top: 43px;
  background-color: #262626;
}

@media screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 21.5px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .footer__nav {
    display: block;
  }
}
@media (min-width: 1301px) {
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
.fnav-group {
  border-bottom: 2px solid #707070;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  .fnav-group {
    border-width: 1px;
  }
}
.fnav-head {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.0714285714;
  padding: 30px 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .fnav-head {
    cursor: pointer;
    font-size: 14px;
    padding: 15px 20px;
  }
}
@media (min-width: 1301px) {
  .fnav-col {
    display: flex;
    flex-direction: column;
  }
  .fnav-col--left {
    border-right: 2px solid #707070;
  }
}
@media screen and (max-width: 767px) {
  .fnav-head::after,
.fnav-head::before {
    content: "";
    position: absolute;
    right: 32.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 12.5px;
    height: 1px;
    background: #707070;
  }
}
.fnav-head::before {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.fnav-group.is-open .fnav-head::before {
  transform: translateY(-50%) rotate(0deg);
}

.fnav-panel {
  overflow: hidden;
  background-color: #262626;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .fnav-panel {
    display: none;
  }
}
.fnav-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.fnav-group[data-cols="1"] .fnav-grid {
  grid-template-columns: 1fr;
}

.fnav-grid > li {
  border-top: 2px solid #707070;
}

@media screen and (max-width: 767px) {
  .fnav-grid > li {
    border-width: 1px;
  }
}
.fnav-grid > li:nth-child(odd) {
  border-right: 2px solid #707070;
}

@media screen and (max-width: 767px) {
  .fnav-grid > li:nth-child(odd) {
    border-width: 1px;
  }
}
.fnav-grid > li > a {
  display: block;
  padding: 20px 30px;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .fnav-grid > li > a {
    padding: 10px 20px;
    font-size: 12px;
  }
}
.fnav-quick {
  background-color: #262626;
  color: #fff;
}

@media (min-width: 1301px) {
  .fnav-quick .fnav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.fnav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px 20px 30px;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
}

@media screen and (max-width: 767px) {
  .fnav-list a {
    padding: 15px 25px;
    font-size: 14px;
  }
}
.fnav-list a::after {
  content: "";
  background-image: url(../img/icon-arrow_wh03.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 12px;
  height: 20px;
}

@media screen and (max-width: 767px) {
  .fnav-list a::after {
    right: 30px;
    width: 10px;
    height: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .fnav-list a::after {
    right: 30px;
  }
}
.footer__text {
  margin-top: 60px;
  max-width: 652px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .footer__text {
    margin-top: 30px;
    max-width: 330px;
  }
}
.footer__text p {
  font-size: 24px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .footer__text p {
    font-size: 12px;
    line-height: 1.8;
  }
}
.footer__text p span {
  font-family: var(--font-en);
}

hr.footer__line {
  height: 0;
  padding: 0;
  border: 0;
  max-width: 534px;
  margin: 48px auto;
  border-top: 1px solid #c7c7c7;
}

@media screen and (max-width: 767px) {
  hr.footer__line {
    margin: 24px 20px;
    max-width: 390px;
  }
}
.footer__copyright {
  text-align: center;
}

.footer__copyright p small {
  font-size: 24px;
  line-height: 2.0833333333;
  font-family: var(--font-en);
}

@media screen and (max-width: 767px) {
  .footer__copyright p small {
    font-size: 12px;
  }
}
.pagetop {
  position: fixed;
  bottom: 175px;
  right: 28px;
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 90px;
    right: 18px;
  }
}
.pagetop a {
  display: inline-block;
}

.pagetop a img {
  max-width: 80px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .pagetop a img {
    max-width: 40px;
  }
}
body {
  padding-bottom: calc(165px + env(safe-area-inset-bottom, 0px));
}

@media screen and (max-width: 767px) {
  body {
    padding-bottom: calc(82.5px + env(safe-area-inset-bottom, 0px));
  }
}
/* ===== 追従フォローナビ（下固定） ===== */
.follow-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 165px;
  z-index: 10000;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .follow-nav {
    height: 82.5px;
  }
}
.footer-nav__inner {
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 42px;
  padding-right: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}

@media screen and (max-width: 767px) {
  .footer-nav__inner {
    max-width: 390px;
    padding-left: 21px;
    padding-right: 17.5px;
  }
}
.follow-nav__list {
  display: flex;
  justify-content: space-between;
}

.follow-nav__item {
  max-width: 146px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .follow-nav__item {
    max-width: 73px;
  }
}
.follow-nav__item:nth-child(n+2) {
  padding-left: 28px;
  border-left: 1px solid #E0E0E0;
  margin-left: 28px;
}

@media screen and (max-width: 767px) {
  .follow-nav__item:nth-child(n+2) {
    padding-left: 14px;
    margin-left: 14px;
  }
}
.follow-nav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 24px;
  line-height: 1.1666666667;
  font-weight: 700;
  color: var(--BL);
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .follow-nav__item a {
    gap: 5px;
    font-size: 12px;
  }
}
.follow-nav__icon {
  width: 118px;
  height: 70px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .follow-nav__icon {
    width: 59px;
    height: 35px;
  }
}
.icon-event {
  background: url(../img/icon-event.svg) no-repeat center/contain;
}

.icon-product {
  background: url(../img/icon-product.svg) no-repeat center/contain;
}

.icon-lift {
  background: url(../img/icon-lift.svg) no-repeat center/contain;
}

.follow-nav__menu {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 24px;
  line-height: 1.1666666667;
  font-weight: 700;
  color: var(--BL);
  margin-top: 10px;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding-left: 42px;
  border-left: 2px dotted #000;
}

@media screen and (max-width: 767px) {
  .follow-nav__menu {
    gap: 16px;
    font-size: 12px;
    margin-top: 5px;
    padding-left: 21px;
  }
}
.follow-nav__menu .hamburger {
  position: relative;
  width: 35px;
  height: 30px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .follow-nav__menu .hamburger {
    width: 17.5px;
    height: 15px;
  }
}
.follow-nav__menu .hamburger .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: currentColor;
  border-radius: 10px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

@media screen and (max-width: 767px) {
  .follow-nav__menu .hamburger .bar {
    height: 2px;
  }
}
.follow-nav__menu .hamburger .bar1 {
  top: 0;
}

.follow-nav__menu .hamburger .bar2 {
  top: 15px;
}

@media screen and (max-width: 767px) {
  .follow-nav__menu .hamburger .bar2 {
    top: 7.5px;
  }
}
.follow-nav__menu .hamburger .bar3 {
  top: 30px;
}

@media screen and (max-width: 767px) {
  .follow-nav__menu .hamburger .bar3 {
    top: 15px;
  }
}
.follow-nav__menu.is-active .hamburger .bar1 {
  top: 18px;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .follow-nav__menu.is-active .hamburger .bar1 {
    top: 9px;
  }
}
.follow-nav__menu.is-active .hamburger .bar2 {
  opacity: 0;
}

.follow-nav__menu.is-active .hamburger .bar3 {
  top: 18px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .follow-nav__menu.is-active .hamburger .bar3 {
    top: 9px;
  }
}
/* ===== 右→左 フェード＋スライドのメニュー ===== */
.follow-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 165px;
  z-index: 1001;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .follow-menu {
    bottom: 82.5px;
  }
}
.follow-menu.is-open {
  pointer-events: auto;
}

.follow-menu__sheet {
  position: absolute;
  inset: 0;
  background: #EFEFEF;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateX(24px);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
  padding: 72px clamp(16px, 4vw, 26px) 74px;
}

@media screen and (max-width: 767px) {
  .follow-menu__sheet {
    padding: 36px clamp(16px, 4vw, 26px) 37px;
  }
}
.follow-menu.is-open .follow-menu__sheet {
  transform: translateX(0);
  opacity: 1;
}

.follow-menu__list {
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 38px;
  padding-right: 38px;
}

@media screen and (max-width: 767px) {
  .follow-menu__list {
    max-width: 390px;
    padding-left: 18px;
    padding-right: 18px;
  }
}
.follow-menu__list li {
  border-bottom: 1px solid #222;
}

.follow-menu__list a {
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 12px 6.5px 18px;
  font-size: 32px;
  line-height: 1.5;
  color: #222;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .follow-menu__list a {
    gap: 21px;
    padding: 6px 3.25px 9px;
    font-size: 16px;
  }
}
.follow-menu__sns {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .follow-menu__sns {
    margin-top: 40px;
  }
}
.follow-menu__sponsor {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .follow-menu__sponsor {
    margin-top: 30px;
  }
}
.sponsor-card {
  display: block;
  max-width: 450px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .sponsor-card {
    max-width: 250px;
  }
}
.sponsor-card img {
  width: 100%;
  height: auto;
  display: block;
}

.follow-menu-icon {
  width: 60px;
  height: 60px;
  display: inline-block;
  flex: 0 0 60px;
}

@media screen and (max-width: 767px) {
  .follow-menu-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }
}
.follow-menu-icon.icon-calendar {
  background: url(../img/icon-calendar.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-bag {
  background: url(../img/icon-bag.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-ticket {
  background: url(../img/icon-ticket.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-tools {
  background: url(../img/icon-tools.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-star {
  background: url(../img/icon-star.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-question {
  background: url(../img/icon-question.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-doc {
  background: url(../img/icon-doc.svg) no-repeat center/contain;
}

body.is-menu-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* modal */
.product-modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 165px;
  background: #fff;
  z-index: 9999;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product-modal {
    bottom: 82.5px;
  }
}

.product-modal__content {
  position: relative;
  width: 100%;
  height: 100dvh;
  background: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: calc(240px + env(safe-area-inset-bottom, 0px));
}

.product-modal__body img {
  width: 100%;
  height: auto;
}

.product-modal__body {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 25px 0;
}
@media screen and (max-width: 767px) {
  .product-modal__body {
    padding: 25px 15px 0;
    max-width: 375px;
  }
}
@media screen and (max-width: 767px) {
  .product-modal__body .products__img {
    max-width: initial;
  }
}
.product-modal__body .products__feature {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .product-modal__body .products__feature {
    margin-top: 20px;
  }
}
.product-modal__body .products__bargain {
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .product-modal__body .products__bargain {
    margin-top: 38px;
  }
}
.product-modal__body .products__season,
.product-modal__body .products__ski {
  margin-top: 126px;
}
@media screen and (max-width: 767px) {
  .product-modal__body .products__season,
.product-modal__body .products__ski {
    margin-top: 63px;
  }
}
.product-modal__body .sales__link.online-shop {
  margin-top: 126px;
}
@media screen and (max-width: 767px) {
  .product-modal__body .sales__link.online-shop {
    margin-top: 63px;
  }
}

.product-modal__close {
  margin-top: 126px;
}
@media screen and (max-width: 767px) {
  .product-modal__close {
    margin-top: 63px;
  }
}
.product-modal__close span {
  background-color: var(--LBL);
  color: #fff;
  border-radius: 150px;
  cursor: pointer;
  max-width: 418px;
  width: 100%;
  margin: 0 auto;
  padding: 34px 0;
  font-size: 28px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}
@media screen and (max-width: 767px) {
  .product-modal__close span {
    border-radius: 75px;
    max-width: 209px;
    padding: 17px 0;
    font-size: 14px;
    gap: 10px;
  }
}

body.modal-open {
  overflow: hidden;
}

/* ==================================================
*  fv
================================================== */
.fv__inner {
  position: relative;
  max-width: 1132px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.fv__img {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.fv__random-bn .img0-l {
  position: absolute;
  top: 0;
  left: 16px;
  width: 13.63%;
  max-width: 150px;
  z-index: 10;
}
@media screen and (max-width: 1131px) {
  .fv__random-bn .img0-l {
    display: none;
  }
}
.fv__random-bn .img0-r {
  position: absolute;
  top: 0;
  right: 16px;
  width: 13.63%;
  max-width: 150px;
  z-index: 10;
}
@media screen and (max-width: 1131px) {
  .fv__random-bn .img0-r {
    display: none;
  }
}

/* ==================================================
*  next-event
================================================== */
.next-event {
  background-color: var(--BL);
  padding: 174px 0 57px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .next-event {
    padding: 87px 0 30px;
  }
}
.next-event__inner.l-inner {
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .next-event__inner.l-inner {
    padding: 0 10px;
  }
}

.next-event__top {
  background-color: #fff;
  color: #FF5F5A;
  border-radius: 10px;
  padding: 20px 52px;
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .next-event__top {
    padding: 10px 26px;
    top: -15px;
  }
}
.next-event__top p {
  font-size: 28px;
  line-height: 1.4285714286;
  letter-spacing: -0.03em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .next-event__top p {
    font-size: 14px;
  }
}
.next-event__container {
  background-color: #fff;
  border-radius: 20px;
  padding: 0 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
}
@media screen and (max-width: 767px) {
  .next-event__container {
    padding: 0 10px;
  }
}

.next-event__container a {
  padding: 55px 0 37px;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .next-event__container a {
    padding: 30px 0 18px;
  }
}
.next-event__container a + a {
  border-top: 1px solid #555;
}

.next-event__head {
  background-color: var(--BGBK);
  color: #fff;
  padding: 15px 40px;
  font-family: var(--font-sub);
  display: inline-block;
  font-size: 33px;
  line-height: 1.0606060606;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -34px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 767px) {
  .next-event__head {
    font-size: 18px;
    padding: 8px 20px;
    top: -18px;
  }
}
.next-event__date {
  font-size: 35px;
  line-height: 1;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .next-event__date {
    font-size: 18px;
  }
}
.next-event__name {
  font-size: 55px;
  line-height: 1;
  font-weight: 900;
  margin-top: 20px;
  color: #000000;
}

@media screen and (max-width: 767px) {
  .next-event__name {
    font-size: 28px;
  }
}
.next-event__btn {
  margin-top: 34px;
  max-width: 560px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .next-event__btn {
    margin-top: 18px;
    max-width: 300px;
  }
}
.next-event__btn a {
  display: inline-block;
  width: 100%;
  background-color: var(--OR);
  color: #fff;
  border-radius: 20px;
  padding: 25px 66px 25px 0;
  text-align: center;
  font-size: 39px;
  line-height: 1;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 767px) {
  .next-event__btn a {
    padding: 12px 33px 12px 0;
    font-size: 20px;
    border-radius: 10px;
  }
}
.next-event__btn a::before {
  content: "";
  background-image: url(../img/icon-arrow_wh.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 20px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 66px;
}

@media screen and (max-width: 767px) {
  .next-event__btn a::before {
    width: 10px;
    height: 15px;
    right: 33px;
  }
}
/* ==================================================
*  scroll-img
================================================== */
@-webkit-keyframes img-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes img-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes img-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes img-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.scroll-img__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-img__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-img__list--left {
  -webkit-animation: img-scroll-left 150s infinite linear 0.5s both;
          animation: img-scroll-left 150s infinite linear 0.5s both;
}

.scroll-img__list--right {
  -webkit-animation: img-scroll-right 150s infinite linear 0.5s both;
          animation: img-scroll-right 150s infinite linear 0.5s both;
}

.scroll-img__item {
  width: 27.027027027vw;
}

@media screen and (max-width: 767px) {
  .scroll-img__item {
    width: 40vw;
  }
}
.scroll-img__item > img {
  width: 100%;
  height: 100%;
}

/* ==================================================
*  topics
================================================== */
.topics {
  padding: 50px 0 43px;
  background: linear-gradient(to bottom, #B6CADA 0%, #C3D1DC 39%, #DCE0E2 100%);
}

@media screen and (max-width: 767px) {
  .topics {
    padding: 25px 0 21.5px;
  }
}
.topics-swiper {
  position: relative;
}

.topics__slide-img img {
  width: 100%;
  aspect-ratio: 550/420;
  -o-object-fit: cover;
     object-fit: cover;
}

.topics__slide-wrap {
  background-color: #fff;
}

.topics__slide-text {
  width: 100%;
  padding: 17px 30px 23px;
}

@media screen and (max-width: 767px) {
  .topics__slide-text {
    padding: 8.5px 15px 11.5px;
  }
}
.topics__slide-text p {
  font-size: 28px;
  line-height: 1.4285714286;
  letter-spacing: 0;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .topics__slide-text p {
    font-size: 14px;
  }
}
.topics-swiper .swiper__bottom-wrap {
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .topics-swiper .swiper__bottom-wrap {
    max-width: 400px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.topics-swiper .swiper-pagination {
  max-width: 340px;
  width: 100%;
  bottom: 42px;
  left: initial;
  right: 0;
}

@media screen and (max-width: 767px) {
  .topics-swiper .swiper-pagination {
    max-width: 200px;
    bottom: 21px;
  }
}
.topics-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 5px;
  border-radius: initial;
  background: #fff;
  opacity: 1;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .topics-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 2.5px;
  }
}
.topics-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--BL);
}

.topics-swiper__button-wrap {
  margin-top: 54px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .topics-swiper__button-wrap {
    margin-top: 37px;
  }
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

.topics-swiper__button-wrap .swiper-button-prev,
.topics-swiper__button-wrap .swiper-button-next {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 767px) {
  .topics-swiper__button-wrap .swiper-button-prev,
.topics-swiper__button-wrap .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.topics-swiper__button-wrap .swiper-button-next {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .topics-swiper__button-wrap .swiper-button-next {
    margin-left: 35px;
  }
}
.topics-swiper__button-wrap .swiper-button-prev::before,
.topics-swiper__button-wrap .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--RD);
  border-right: 3px solid var(--RD);
}

@media screen and (max-width: 767px) {
  .topics-swiper__button-wrap .swiper-button-prev::before,
.topics-swiper__button-wrap .swiper-button-next::before {
    width: 5px;
    height: 5px;
    border-width: 1.5px;
  }
}
.topics-swiper__button-wrap .swiper-button-prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.topics-swiper__button-wrap .swiper-button-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ==================================================
*  info
================================================== */
.info {
  padding: 67px 0 70px;
}

@media screen and (max-width: 767px) {
  .info {
    padding: 33.5px 0 35px;
  }
}
.info__inner {
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .info__inner {
    padding: 0 20px;
  }
}
.info__pr {
  position: relative;
  text-align: center;
}

.info__pr::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 1px;
  top: 50%;
  left: 0;
  background-color: #555;
}

.info__pr::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 1px;
  top: 50%;
  right: 0;
  background-color: #555;
}

.info__pr p {
  display: inline-block;
  text-transform: uppercase;
  padding: 4px 12px;
  background-color: #D9D9D9;
  color: #4DA8C6;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .info__pr p {
    padding: 2px 6px;
    font-size: 12px;
  }
}
.info__pr-img {
  margin-top: 18px;
}

@media screen and (max-width: 767px) {
  .info__pr-img {
    margin-top: 10px;
  }
}
.info__link {
  margin-top: 62px;
}

@media screen and (max-width: 767px) {
  .info__link {
    margin-top: 31px;
  }
}
/* ==================================================
*  products
================================================== */
.products {
  padding-top: 50px;
}

@media screen and (max-width: 767px) {
  .products {
    padding-top: 25px;
  }
}
/* feature */
.products__feature {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .products__feature {
    margin-top: 25px;
  }
}
.feature-swiper {
  position: relative;
  margin-top: 36px;
  padding-bottom: 61px;
}

@media screen and (max-width: 767px) {
  .feature-swiper {
    margin-top: 18px;
    padding-bottom: 30px;
  }
}
.feature__slide-img img {
  width: 100%;
  aspect-ratio: 640/900;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-swiper .swiper-pagination {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.feature-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: var(--RD);
  opacity: 0.5;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .feature-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.feature-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--RD);
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .feature-swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
  }
}
.feature-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.feature-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 11px;
}

@media screen and (max-width: 767px) {
  .feature-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.feature-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5.5px;
  }
}
.feature-swiper__button-wrap {
  /* max-width: 714px; */
  width: 48%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .feature-swiper__button-wrap {
    width: 98%;
  }
}
@media (min-width: 425px) and (max-width: 767px) {
  .feature-swiper__button-wrap {
    width: 82%;
  }
}
@media (min-width: 768px) {
  .feature-swiper__button-wrap {
    width: 48%;
  }
}
.feature-swiper__button-wrap .swiper-button-prev,
.feature-swiper__button-wrap .swiper-button-next {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 767px) {
  .feature-swiper__button-wrap .swiper-button-prev,
.feature-swiper__button-wrap .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.feature-swiper__button-wrap .swiper-button-prev::before,
.feature-swiper__button-wrap .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--RD);
  border-right: 3px solid var(--RD);
}

@media screen and (max-width: 767px) {
  .feature-swiper__button-wrap .swiper-button-prev::before,
.feature-swiper__button-wrap .swiper-button-next::before {
    width: 5px;
    height: 5px;
    border-width: 1.5px;
  }
}
.feature-swiper__button-wrap .swiper-button-prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.feature-swiper__button-wrap .swiper-button-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.feature__slide-text {
  margin-top: 34px;
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transition: all 0.3s;
}

.swiper-slide-active .feature__slide-text {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .feature__slide-text {
    margin-top: 17px;
    max-width: 390px;
  }
}
.feature__slide-text p {
  font-size: 19px;
  line-height: 1.6666666667;
}

@media screen and (max-width: 767px) {
  .feature__slide-text p {
    font-size: 10px;
  }
}
.products-head {
  padding-left: 42px;
}
@media screen and (max-width: 767px) {
  .products-head {
    padding-left: 21px;
  }
}

.products-head::before {
  height: 65px;
}
@media screen and (max-width: 767px) {
  .products-head::before {
    height: 32.5px;
  }
}

.products__text {
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .products__text {
    margin-top: 8.5px;
  }
}
.products__text p {
  font-size: 26px;
  line-height: 1.6538461538;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .products__text p {
    font-size: 13px;
  }
}

.products__img {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .products__img {
    margin-top: 11px;
  }
}

.products__btn {
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .products__btn {
    margin-top: 22px;
  }
}

/* 25th */
.products__25th {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .products__25th {
    margin-top: 45px;
  }
}
/* bargain */
.products__bargain {
  margin-top: 110px;
}

@media screen and (max-width: 767px) {
  .products__bargain {
    margin-top: 55px;
  }
}
/* season */
.products__season {
  margin-top: 138px;
}

@media screen and (max-width: 767px) {
  .products__season {
    margin-top: 69px;
  }
}
/* ski */
.products__ski {
  margin-top: 126px;
}

@media screen and (max-width: 767px) {
  .products__ski {
    margin-top: 63px;
  }
}
/* brand */
.products__brand {
  margin-top: 141px;
}

@media screen and (max-width: 767px) {
  .products__brand {
    margin-top: 70px;
  }
}
.brand__img {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .brand__img {
    margin-top: 2.5px;
  }
}
.brand__img img {
  aspect-ratio: 700/664;
}

.brand__btn {
  margin-top: 40px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .brand__btn {
    margin-top: 20px;
  }
}
.brand__btn a {
  display: inline-block;
  padding-right: 50px;
  font-size: 33px;
  line-height: 1;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 767px) {
  .brand__btn a {
    padding-right: 25px;
    font-size: 16.5px;
  }
}
.brand__btn a::before {
  content: "";
  background-image: url(../img/icon-arrow_bl02.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 30px;
  height: 32px;
  position: absolute;
  top: 2px;
  right: 0;
}

@media screen and (max-width: 767px) {
  .brand__btn a::before {
    width: 15px;
    height: 16px;
    top: 1px;
  }
}
/* ==================================================
*  campaign
================================================== */
.campaign {
  padding-top: 240px;
  padding-bottom: 69px;
}

@media screen and (max-width: 767px) {
  .campaign {
    padding-top: 120px;
    padding-bottom: 35px;
  }
}
.campaign__banner {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media screen and (max-width: 767px) {
  .campaign__banner {
    margin-top: 27px;
    gap: 12.5px;
  }
}
.campaign-banner__item {
  background-color: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  max-width: 338px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .campaign-banner__item {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    max-width: 169px;
  }
}
.campaign-banner__text {
  padding: 12px 22px 23px;
}

@media screen and (max-width: 767px) {
  .campaign-banner__text {
    padding: 6px 11px 11.5px;
  }
}
.campaign-banner__text p {
  color: var(--BL);
  font-size: 28px;
  line-height: 1.4285714286;
  line-break: strict;
}

@media screen and (max-width: 767px) {
  .campaign-banner__text p {
    font-size: 14px;
  }
}
.campaign-banner__text p i {
  color: #828487;
  font-weight: solid;
}

/* ==================================================
*  sales
================================================== */
.sales {
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: #f9f9f9;
}

@media screen and (max-width: 767px) {
  .sales {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.sales__link.lift-ticket {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .sales__link.lift-ticket {
    margin-top: 35px;
  }
}
.sales__link.online-shop {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .sales__link.online-shop {
    margin-top: 30px;
  }
}
.sales__link-container {
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .sales__link-container {
    border-radius: 20px;
  }
}
.sales__link.online-shop .sales__link-top {
  background-color: var(--BL);
  padding: 24px 0 31px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sales__link.online-shop .sales__link-top {
    padding: 12px 0 15.5px;
  }
}
.sales__link.online-shop .sales__link-head {
  text-align: center;
}

.sales__link.online-shop .sales__link-head span {
  background-color: var(--YE);
  color: var(--BL);
  font-weight: 900;
  display: inline-block;
}

.sales__link.online-shop .sales__link-head span.top {
  font-size: 36px;
  line-height: 1.5833333333;
  padding: 0 57px;
}

@media screen and (max-width: 767px) {
  .sales__link.online-shop .sales__link-head span.top {
    font-size: 18px;
    padding: 0 28px;
  }
}
.sales__link.online-shop .sales__link-head span.bottom {
  font-size: 44px;
  line-height: 1.2954545455;
  padding: 0 57px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .sales__link.online-shop .sales__link-head span.bottom {
    font-size: 22px;
    padding: 0 28px;
    margin-top: 4px;
  }
}
.sales__link.online-shop .sales__link-text {
  margin-top: 21px;
  margin-left: 60px;
  max-width: 598px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .sales__link.online-shop .sales__link-text {
    margin-top: 10px;
    margin-left: 30px;
    max-width: 300px;
  }
}
.sales__link-bottom {
  padding: 23px 33px 28px;
  font-size: 28px;
  line-height: 2.1071428571;
  color: #333;
  display: flex;
  align-items: center;
  gap: 21px;
}

@media screen and (max-width: 767px) {
  .sales__link-bottom {
    padding: 12px 18px 14px;
    font-size: 14px;
    gap: 10px;
  }
}
.sales__link-bottom i {
  font-size: 30px;
  color: #828487;
}

@media screen and (max-width: 767px) {
  .sales__link-bottom i {
    font-size: 15px;
  }
}
/* ==================================================
*  link-area
================================================== */
.link-area {
  padding-top: 73px;
  padding-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .link-area {
    padding-top: 36.5px;
    padding-bottom: 12.5px;
  }
}
.link-btn a {
  background-color: #fff;
  color: var(--LBK);
  display: flex;
  align-items: center;
}

.link-btn.line a {
  border: 16px solid var(--GR);
  padding: 37px 6px 33px 51px;
  gap: 41px;
}

@media screen and (max-width: 767px) {
  .link-btn.line a {
    border: 8px solid var(--GR);
    padding: 18px 4px 16px 25px;
    gap: 20px;
  }
}
.link-btn.line .link-btn__icon {
  max-width: 110px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .link-btn.line .link-btn__icon {
    max-width: 55px;
  }
}
.link-btn__text {
  font-family: var(--font-sub);
  color: var(--LBK);
  font-size: 25px;
  line-height: 1.52;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .link-btn__text {
    font-size: 12px;
  }
}
.link-btn__text span.head {
  font-size: 36px;
  line-height: 1.0555555556;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .link-btn__text span.head {
    font-size: 18px;
  }
}
/* ==================================================
*  venue-info
================================================== */
.venue-info {
  padding-top: 73px;
}

@media screen and (max-width: 767px) {
  .venue-info {
    padding-top: 36.5px;
  }
}
.venue-info__title-wrap {
  padding-bottom: 36px;
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .venue-info__title-wrap {
    padding-bottom: 18px;
  }
}
.venue-info__list {
  background-image: url(../img/venue-info-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 45px 0 111px;
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .venue-info__list {
    padding: 22.5px 0 55.5px;
    max-width: 390px;
  }
}
.venue-info__item {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: 250px;
  background-color: #fff;
  position: relative;
  padding: 40px 57px 0;
}

@media screen and (max-width: 767px) {
  .venue-info__item {
    max-width: 350px;
    min-height: 125px;
    padding: 20px 28.5px 0;
  }
}
.venue-info__item:nth-child(n+2) {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .venue-info__item:nth-child(n+2) {
    margin-top: 25px;
  }
}
.venue-info__tag {
  background-color: var(--BL);
  color: #fff;
  font-size: 30px;
  line-height: 1.8333333333;
  font-family: var(--font-en);
  padding: 0 35px;
  border-radius: 30px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .venue-info__tag {
    font-size: 15px;
    padding: 0 17.5px;
    border-radius: 15px;
  }
}
.venue-info__item.payment .venue-info__tag {
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .venue-info__item.payment .venue-info__tag {
    margin-bottom: 3px;
  }
}
.venue-info__item.service .venue-info__tag,
.venue-info__item.shops .venue-info__tag {
  margin-bottom: 19px;
}

@media screen and (max-width: 767px) {
  .venue-info__item.service .venue-info__tag,
.venue-info__item.shops .venue-info__tag {
    margin-bottom: 10px;
  }
}
.venue-info__item.warranty .venue-info__tag {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .venue-info__item.warranty .venue-info__tag {
    margin-bottom: 6px;
  }
}
.venue-info__item.entertainment .venue-info__tag {
  margin-bottom: 37px;
}

@media screen and (max-width: 767px) {
  .venue-info__item.entertainment .venue-info__tag {
    margin-bottom: 18.5px;
  }
}
.venue-info__item-title {
  font-size: 45px;
  line-height: 1.2444444444;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .venue-info__item-title {
    font-size: 22.5px;
  }
}
.venue-info__note {
  display: inline-block;
  font-size: 25px;
  line-height: 1.36;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 4px;
  color: var(--OR);
}

@media screen and (max-width: 767px) {
  .venue-info__note {
    font-size: 12.5px;
    margin-top: 2px;
  }
}
.venue-info__img {
  width: 100%;
  position: absolute;
}

.venue-info__item.payment .venue-info__img {
  max-width: 227px;
  bottom: 0;
  right: 40px;
}

@media screen and (max-width: 767px) {
  .venue-info__item.payment .venue-info__img {
    max-width: 113.5px;
    right: 20px;
  }
}
.venue-info__item.service .venue-info__img {
  max-width: 202px;
  bottom: 0;
  right: 40px;
}

@media screen and (max-width: 767px) {
  .venue-info__item.service .venue-info__img {
    max-width: 101px;
    right: 20px;
  }
}
.venue-info__item.warranty .venue-info__img {
  max-width: 177px;
  bottom: 44px;
  right: 71px;
}

@media screen and (max-width: 767px) {
  .venue-info__item.warranty .venue-info__img {
    max-width: 88.5px;
    bottom: 22px;
    right: 35px;
  }
}
.venue-info__item.shops .venue-info__img {
  max-width: 157px;
  top: 0;
  right: 80px;
}

@media screen and (max-width: 767px) {
  .venue-info__item.shops .venue-info__img {
    max-width: 78.5px;
    right: 40px;
  }
}
.venue-info__item.entertainment .venue-info__img {
  max-width: 174px;
  bottom: 42px;
  right: 83px;
}

@media screen and (max-width: 767px) {
  .venue-info__item.entertainment .venue-info__img {
    max-width: 87px;
    bottom: 21px;
    right: 41.5px;
  }
}
.venue-info__arrow {
  max-width: 69px;
  width: 100%;
  position: absolute;
  top: 30px;
  right: 30px;
}

@media screen and (max-width: 767px) {
  .venue-info__arrow {
    max-width: 35px;
    top: 15px;
    right: 15px;
  }
}
/* ==================================================
*  faq
================================================== */
.faq {
  padding-top: 80px;
  padding-bottom: 116px;
  background-color: #f0f0f0;
}

@media screen and (max-width: 767px) {
  .faq {
    padding-top: 40px;
    padding-bottom: 58px;
  }
}
.faq__title {
  font-family: var(--font-en);
  font-weight: 900;
  text-transform: uppercase;
}

.faq__list {
  margin-top: 71px;
  display: grid;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .faq__list {
    margin-top: 35px;
    gap: 10px;
  }
}
.faq__question {
  cursor: pointer;
  position: relative;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 20px;
  display: inline-block;
  width: 100%;
  padding: 20px 40px;
  font-size: 28px;
  line-height: 1.4285714286;
}

@media screen and (max-width: 767px) {
  .faq__question {
    padding: 10px 25px 10px 15px;
    font-size: 14px;
    border-radius: 10px;
  }
}
.faq__question.is-open {
  border-radius: 20px 20px 0 0;
}

@media screen and (max-width: 767px) {
  .faq__question.is-open {
    border-radius: 10px 10px 0 0;
  }
}
.faq__question::before,
.faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 18px;
  height: 3px;
  background: var(--BK);
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .faq__question::before,
.faq__question::after {
    right: 8px;
    width: 12px;
    height: 1.5px;
  }
}
.faq__question::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq__question.is-open::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq__answer {
  display: none;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 0 0 20px 20px;
  width: 100%;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 1.4285714286;
}

@media screen and (max-width: 767px) {
  .faq__answer {
    border-radius: 0 0 10px 10px;
    padding: 10px 20px;
    font-size: 12px;
  }
}
.faq__btn {
  margin-top: 69px;
}

@media screen and (max-width: 767px) {
  .faq__btn {
    margin-top: 35px;
  }
}
/* ==================================================
*  event
================================================== */
.event__header {
  background-color: var(--BGBK);
  color: #fff;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .event__header {
    padding: 10px 20px;
  }
}
.event__header span {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-family: var(--font-sub);
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .event__header span {
    font-size: 20px;
    max-width: 390px;
  }
}
/* ==================================================
*  nav
================================================== */
.event-nav {
  margin-top: 44px;
}

@media screen and (max-width: 767px) {
  .event-nav {
    margin-top: 22px;
  }
}
.event-nav__inner {
  max-width: 720px;
}

@media screen and (max-width: 767px) {
  .event-nav__inner {
    max-width: 390px;
  }
}
.balloon-title {
  background-color: var(--RD);
  color: #fff;
  border-radius: 40px;
  text-align: center;
  font-family: var(--font-sub);
  font-size: 35px;
  line-height: 1;
  font-weight: 700;
  padding: 11.5px 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .balloon-title {
    font-size: 18px;
    padding: 6px 0;
    border-radius: 20px;
  }
}
.balloon-title::before {
  content: "";
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 17px;
  border-style: solid;
  border-color: var(--RD) transparent transparent transparent;
}

@media screen and (max-width: 767px) {
  .balloon-title::before {
    border-width: 8.5px;
  }
}
.event-nav__list {
  margin-top: 61px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 20px;
}

@media screen and (max-width: 767px) {
  .event-nav__list {
    margin-top: 30px;
    gap: 12px 10px;
  }
}
.event-nav__item {
  width: 31.34%;
}

.event-nav__item a {
  color: var(--BK);
  padding-bottom: 25px;
  border-bottom: 2px solid #cccccc;
  padding-left: 50px;
  display: inline-block;
  width: 100%;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 767px) {
  .event-nav__item a {
    padding-bottom: 12px;
    padding-left: 25px;
    font-size: 13px;
  }
}
.event-nav__item a::before {
  content: "";
  background-image: url(../img/icon-arrow_bl.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 30px;
  height: 32px;
  margin: 0 7.5px;
  position: absolute;
  left: 0;
  top: 4.5px;
}

@media screen and (max-width: 767px) {
  .event-nav__item a::before {
    width: 15px;
    height: 16px;
    margin: 0 3.75px;
    top: 2.25px;
  }
}
/* ==================================================
*  feature
================================================== */
.event-feature {
  margin-top: 62px;
}

@media screen and (max-width: 767px) {
  .event-feature {
    margin-top: 31px;
  }
}
.event-feature__inner {
  max-width: 800px;
}

@media screen and (max-width: 767px) {
  .event-feature__inner {
    max-width: initial;
    padding: 0;
  }
}
.event-feature__title {
  background-color: var(--BL);
  color: #fff;
  padding: 21px 0;
}

@media screen and (max-width: 767px) {
  .event-feature__title {
    padding: 10px 20px;
  }
}
.event-feature__title span {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .event-feature__title span {
    max-width: 390px;
    font-size: 19px;
  }
}
.event-card.event-card--feature {
  padding-top: 74px;
  padding-bottom: 50px;
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 767px) {
  .event-card.event-card--feature {
    padding-top: 37px;
    padding-bottom: 25px;
  }
}
.event-card__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 730px;
}

@media screen and (max-width: 767px) {
  .event-card__inner {
    max-width: 390px;
  }
}
.event-card__meta {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .event-card__meta {
    gap: 5px;
  }
}
.event-card__pref {
  border: 1px solid var(--BK);
  background-color: #fff;
  font-size: 25px;
  line-height: 1;
  padding: 7px 22px;
}

@media screen and (max-width: 767px) {
  .event-card__pref {
    font-size: 12px;
    padding: 3.5px 11px;
  }
}
.event-card__tag {
  border: 1px solid var(--TRD);
  background-color: var(--TRD);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  padding: 7px 19.5px;
}

@media screen and (max-width: 767px) {
  .event-card__tag {
    font-size: 12px;
    padding: 3.5px 10px;
  }
}
.event-card__title {
  margin-top: 19px;
  font-size: 30px;
  line-height: 1.0333333333;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .event-card__title {
    margin-top: 10px;
    font-size: 16px;
  }
}
.event-card__date {
  margin-top: 14.5px;
  font-size: 30px;
  line-height: 1.0333333333;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .event-card__date {
    margin-top: 8px;
    font-size: 16px;
  }
}
.event-card__media {
  max-width: 260px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .event-card__media {
    max-width: 130px;
  }
}
.event-card__img {
  aspect-ratio: 260/170;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.event-card.event-card--feature .event-card__btn {
  max-width: 365px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  .event-card.event-card--feature .event-card__btn {
    max-width: 182.5px;
    margin-top: 22.5px;
  }
}
.event-card.event-card--feature .event-card__btn a {
  display: inline-block;
  width: 100%;
  background-color: var(--BGBK);
  color: #fff;
  border-radius: 40px;
  padding: 8px 70px;
  font-size: 25px;
  line-height: 1.8;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 767px) {
  .event-card.event-card--feature .event-card__btn a {
    border-radius: 20px;
    padding: 4px 35px;
    font-size: 12.5px;
  }
}
.event-card.event-card--feature .event-card__btn a::before {
  content: "";
  background-image: url(../img/icon-arrow_wh04.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 29px;
  height: 29px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 70px;
}

@media screen and (max-width: 767px) {
  .event-card.event-card--feature .event-card__btn a::before {
    width: 14.5px;
    height: 14.5px;
    right: 35px;
  }
}
/* ==================================================
*  lead
================================================== */
.event-lead {
  margin-top: 73px;
  margin-bottom: 52px;
}

@media screen and (max-width: 767px) {
  .event-lead {
    margin-top: 36px;
    margin-bottom: 26px;
  }
}
.events-lead__inner {
  max-width: 720px;
}

@media screen and (max-width: 767px) {
  .events-lead__inner {
    max-width: 390px;
  }
}
/* ==================================================
*  region
================================================== */
.event-region__inner {
  max-width: 800px;
}

@media screen and (max-width: 767px) {
  .event-region__inner {
    max-width: initial;
    padding: 0;
  }
}
.event-region__title {
  background-color: var(--BL);
  color: #fff;
  padding: 21px 0;
}

@media screen and (max-width: 767px) {
  .event-region__title {
    padding: 10px 20px;
  }
}
.event-region__title span {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .event-region__title span {
    max-width: 390px;
    font-size: 19px;
  }
}
.event-list__item:nth-child(odd) {
  background-color: #fff;
}

.event-list__item:nth-child(even) {
  background-color: #f5f5f5;
}

.event-card a {
  position: relative;
  display: block;
}

.event-card a::before {
  content: "";
  background-image: url(../img/icon-arrow_gy02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 25px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
}

@media screen and (max-width: 767px) {
  .event-card a::before {
    width: 12.5px;
    height: 15px;
    right: 17.5px;
  }
}
.event-card {
  padding: 31.75px 0;
}

@media screen and (max-width: 767px) {
  .event-card {
    padding: 16px 0;
  }
}
.event-card__inner {
  max-width: 730px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .event-card__inner {
    max-width: 390px;
  }
}
.event-card__status {
  width: calc(100% - 26px);
  height: calc(100% + 20px);
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .event-card__status {
    width: calc(100% - 13px);
    height: calc(100% + 10px);
  }
}
.event-card__status p {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 5px #000;
}

@media screen and (max-width: 767px) {
  .event-card__status p {
    font-size: 20px;
  }
}
/* ==================================================
*  event-detail
================================================== */
.event-detail {
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .event-detail {
    padding-top: 20px;
  }
}
.event-detail__inner {
  max-width: 730px;
}

@media screen and (max-width: 767px) {
  .event-detail__inner {
    max-width: 380px;
    padding-left: 17.5px;
    padding-right: 17.5px;
  }
}
.event-detail__flex {
  display: flex;
  justify-content: space-between;
}

.event-detail__main .event-card__title {
  font-size: 35px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .event-detail__main {
    width: 100%;
  }
  .event-detail__main .event-card__title {
    font-size: 17.5px;
  }
}
.event-detail__closed {
  margin: 20px 0 0;
  padding: 8px 0;
  color: #FFF;
  font-size: 30px;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 0, 0, 0.5);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
  .event-detail__closed {
    margin: 10px 0 0;
    padding: 4px 0;
    font-size: 15px;
  }
}
.event-detail__dates {
  margin-top: 25px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .event-detail__dates {
    margin-top: 12.5px;
    font-size: 17.5px;
  }
}
.event-detail__media {
  max-width: 260px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .event-detail__media {
    display: none;
  }
}
.event-detail__notes {
  margin-top: 25px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .event-detail__notes {
    margin-top: 12.5px;
    font-size: 12.5px;
  }
}
.event-detail__notes a {
  text-decoration: underline;
  color: var(--LBL);
}

.event-detail__notes span {
  color: var(--LRD);
}

.event-detail__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 0;
  max-width: 650px;
  margin: 0 auto;
  padding: 60px 0 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .event-detail__cta {
    gap: 18px 0;
    max-width: 325px;
    padding: 30px 0 0;
  }
}
.event-detail__cta .btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px 170px 30px 50px;
  border-radius: 100px;
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3333333333;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .event-detail__cta .btn {
    padding: 15px 85px 15px 25px;
    font-size: 15px;
  }
}
.event-detail__cta .btn-access {
  background-color: var(--LBL);
}

.event-detail__cta .btn-map {
  background-color: var(--LRD);
}

.event-detail__cta .btn-map.link-none {
  background-color: #B8B8B8;
  pointer-events: none;
}

.event-detail__cta .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .event-detail__cta .btn::before {
    right: 20px;
    width: 15px;
    height: 15px;
  }
}
.event-detail__cta .btn-access::before {
  background-image: url(../img/icon-arrow_wh05.svg);
}

.event-detail__cta .btn-map::before {
  background-image: url(../img/icon-arrow_wh04.svg);
}

.event-detail__invoice {
  padding: 70px 5px;
}

@media screen and (max-width: 767px) {
  .event-detail__invoice {
    padding: 35px 2.5px;
  }
}
/* ==================================================
*  detail-topics
================================================== */
.detail-topics {
  padding: 50px 0 43px;
  background: linear-gradient(to bottom, #B6CADA 0%, #C3D1DC 39%, #DCE0E2 100%);
}

@media screen and (max-width: 767px) {
  .detail-topics {
    padding: 25px 0 21.5px;
  }
}
/* ==================================================
*  detail-link
================================================== */
.detail-link {
  padding-top: 76px;
  background-color: #f9f9f9;
}

@media screen and (max-width: 767px) {
  .detail-link {
    padding-top: 38px;
  }
}
.link-sns {
  padding-bottom: 58px;
}

@media screen and (max-width: 767px) {
  .link-sns {
    padding-bottom: 29px;
  }
}
.link-sns__title {
  font-size: 35px;
  line-height: 1.5142857143;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .link-sns__title {
    font-size: 17.5px;
  }
}
.link-sns__wrap {
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 26px;
  display: flex;
  gap: 0 40px;
}

@media screen and (max-width: 767px) {
  .link-sns__wrap {
    max-width: 260px;
    margin-top: 13px;
    gap: 0 20px;
  }
}
/* ==================================================
*  detail-sales
================================================== */
.detail-sales {
  padding: 40px 0 78px;
  background-color: #f9f9f9;
}

@media screen and (max-width: 767px) {
  .detail-sales {
    padding: 20px 0 39px;
  }
}
.detail-sales .sales__link-top {
  background-color: var(--BL);
  padding: 24px 0 31px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .detail-sales .sales__link-top {
    padding: 12px 0 15.5px;
  }
}
.detail-sales .sales__link-head {
  text-align: center;
}

.detail-sales .sales__link-head span {
  background-color: var(--YE);
  color: var(--BL);
  font-weight: 900;
  display: inline-block;
}

.detail-sales .sales__link-head span.top {
  font-size: 36px;
  line-height: 1.5833333333;
  padding: 0 57px;
}

@media screen and (max-width: 767px) {
  .detail-sales .sales__link-head span.top {
    font-size: 18px;
    padding: 0 28px;
  }
}
.detail-sales .sales__link-head span.bottom {
  font-size: 44px;
  line-height: 1.2954545455;
  padding: 0 57px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .detail-sales .sales__link-head span.bottom {
    font-size: 22px;
    padding: 0 28px;
    margin-top: 4px;
  }
}
.detail-sales .sales__link-text {
  margin-top: 21px;
  margin-left: 60px;
  max-width: 598px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .detail-sales .sales__link-text {
    margin-top: 10px;
    margin-left: 30px;
    max-width: 300px;
  }
}
/* ==================================================
*  detail-ticket
================================================== */
.detail-ticket {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .detail-ticket {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.ticket__list {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .ticket__list {
    margin-top: 17.5px;
  }
}
.ticket__list li:not(:last-of-type) {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 4px dotted #000;
}

@media screen and (max-width: 767px) {
  .ticket__list li:not(:last-of-type) {
    margin-bottom: 11px;
    padding-bottom: 11px;
  }
}
.ticket__list dt {
  position: relative;
  margin-bottom: 16px;
  text-indent: 1em;
  font-size: 28px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .ticket__list dt {
    margin-bottom: 8px;
    font-size: 14px;
  }
}
.ticket__list dt::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 10px;
  height: 30px;
  background-color: var(--GR);
}

@media screen and (max-width: 767px) {
  .ticket__list dt::before {
    top: 3px;
    width: 5px;
    height: 15px;
  }
}
.ticket__list dd .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.ticket__list dd .wrap .col {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .ticket__list dd .wrap .col {
    font-size: 12px;
  }
}
.ticket__list dd .wrap .row {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0 0.25em;
}

.ticket__list dd .wrap .price-title {
  font-weight: 400;
}

.ticket__list dd .wrap .price-yen {
  color: var(--LRD);
  font-size: 40px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .ticket__list dd .wrap .price-yen {
    font-size: 20px;
  }
}
.ticket__btn {
  max-width: 650px;
  margin: 0 auto;
  padding-top: 70px;
}

@media screen and (max-width: 767px) {
  .ticket__btn {
    max-width: 325px;
    padding-top: 35px;
  }
}
.ticket__btn a {
  position: relative;
  display: block;
  width: 100%;
  padding: 24px 80px;
  border-radius: 100px;
  color: var(--LBK);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .ticket__btn a {
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 14px;
  }
}
.ticket__btn a.btn-lift {
  background-color: #FFC633;
}

.ticket__btn a.btn-shop {
  background-color: #84D2FF;
  margin-top: 27px;
}

@media screen and (max-width: 767px) {
  .ticket__btn a.btn-shop {
    margin-top: 13.5px;
  }
}
.ticket__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/icon-arrow_wh04.svg) no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .ticket__btn a::after {
    right: 22.5px;
    width: 15px;
    height: 15px;
  }
}
/* ==================================================
*  detail-campaign
================================================== */
.detail-campaign {
  padding-top: 134px;
}

@media screen and (max-width: 767px) {
  .detail-campaign {
    padding-top: 67px;
  }
}
/* ==================================================
*  detail-venue
================================================== */
.detail-venue {
  padding-top: 165px;
}

@media screen and (max-width: 767px) {
  .detail-venue {
    padding-top: 82.5px;
  }
}
/* ==================================================
*  detail-info
================================================== */
.detail-info {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .detail-info {
    padding-bottom: 50px;
  }
}
.detail-info__inner {
  padding-left: 0;
  padding-right: 0;
}

.detail-info__question {
  width: 100%;
  text-align: left;
  padding: 28px 65px 28px 35px;
  border: none;
  background: var(--BL);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .detail-info__question {
    padding: 14px 32.5px 14px 17.5px;
    font-size: 16px;
  }
}
.detail-info__question::after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .detail-info__question::after {
    right: 17.5px;
    font-size: 15px;
  }
}
.detail-info__question.is-open::after {
  content: "－";
}

.detail-info__answer {
  display: none;
  padding: 25px;
  font-size: 28px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .detail-info__answer {
    padding: 12.5px;
    font-size: 14px;
  }
}
.detail-info__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-top: 1px solid #A0A0A0;
}

.detail-info__table th,
.detail-info__table td {
  padding: 30px 20px;
  border-bottom: 1px solid #A0A0A0;
  vertical-align: top;
  background-color: #fff;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .detail-info__table th,
.detail-info__table td {
    padding: 15px 10px;
  }
}
.detail-info__table th {
  width: 25%;
  background-color: #F1F1F1;
  text-align: left;
}

.detail-info__table td.detail-info__map {
  position: relative;
  padding-right: 80px;
}

@media screen and (max-width: 767px) {
  .detail-info__table td.detail-info__map {
    padding-right: 40px;
  }
}
.detail-info__map .map-btn {
  position: absolute;
  top: 16px;
  right: 0;
}

@media screen and (max-width: 767px) {
  .detail-info__map .map-btn {
    top: 8px;
  }
}
.detail-info__map .map-btn a img {
  max-width: 70px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .detail-info__map .map-btn a img {
    max-width: 35px;
  }
}
.detail-info__answer .url-label {
  float: left;
  white-space: nowrap;
}

.detail-info__answer a {
  color: var(--LBL);
  word-wrap: break-word;
  display: inline;
}

.detail-info__parking p:nth-child(n+2) {
  margin-top: 1em;
}

.detail-info__place {
  line-height: 1.5;
}

.detail-info__place p:not(:last-of-type) {
  margin-bottom: 1em;
}

.detail-info__place p span.point-big {
  color: var(--RD);
  font-size: 35px;
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .detail-info__place p span.point-big {
    font-size: 17.5px;
  }
}
.detail-info__place p span.point {
  color: var(--RD);
  font-size: 28px;
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .detail-info__place p span.point {
    font-size: 14px;
  }
}
.detail-info__place span.ttl {
  margin-bottom: 16px;
  color: var(--BL);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .detail-info__place span.ttl {
    margin-bottom: 8px;
    font-size: 14px;
  }
}
/* ==================================================
*  present-campaign
================================================== */
.present-campaign {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .present-campaign {
    margin-top: 20px;
  }
}
.present-campaign .present-campaign-top .present-campaign-top__title {
  margin-top: 40px;
  margin-bottom: 68px;
  font-size: 37px;
  line-height: 1.3513513514;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign-top .present-campaign-top__title {
    margin-top: 20px;
    margin-bottom: 34px;
    font-size: 18.5px;
  }
}
.present-campaign .present-campaign-top .present-campaign-top__title span.red {
  color: var(--LRD);
  text-decoration: underline;
}
.present-campaign .present-campaign-top .present-campaign-top__title::before, .present-campaign .present-campaign-top .present-campaign-top__title::after {
  background-color: var(--LRD);
  content: "";
  height: 3px;
  width: 60px;
  position: absolute;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign-top .present-campaign-top__title::before, .present-campaign .present-campaign-top .present-campaign-top__title::after {
    height: 1.5px;
    width: 30px;
    bottom: 15px;
  }
}
.present-campaign .present-campaign-top .present-campaign-top__title::before {
  left: 0;
  transform: rotate(52deg);
}
.present-campaign .present-campaign-top .present-campaign-top__title::after {
  right: 0;
  transform: rotate(127deg);
}
.present-campaign .present-campaign-top .present-campaign-top__sub-title {
  color: var(--BL);
  padding-bottom: 10px;
  border-bottom: 5px solid var(--BL);
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign-top .present-campaign-top__sub-title {
    padding-bottom: 5px;
    border-bottom: 2.5px solid var(--BL);
    font-size: 15px;
  }
}
.present-campaign .present-campaign-top .present-campaign-top__text {
  margin-top: 21px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign-top .present-campaign-top__text {
    margin-top: 10px;
    margin-bottom: 25px;
  }
}
.present-campaign .present-campaign-top .present-campaign-top__text p {
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign-top .present-campaign-top__text p {
    font-size: 13.5px;
  }
}
.present-campaign .present-campaign-top .present-campaign-top__text p span.text-note {
  color: var(--LRD);
  text-decoration: underline;
  font-weight: 700;
}
.present-campaign .present-campaign01 {
  background-color: #E6ECF0;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
  padding-top: 50px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign01 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 25px;
    padding-bottom: 10px;
  }
}
.present-campaign .present-campaign01 .present-campaign01__inner {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign01 .present-campaign01__inner {
    max-width: 350px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.present-campaign .present-campaign01 .present-campaign01__text-top {
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 700;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign01 .present-campaign01__text-top {
    font-size: 13.5px;
    margin-top: 16px;
  }
}
.present-campaign .present-campaign01 .present-campaign01__text {
  padding: 30px 10px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign01 .present-campaign01__text {
    padding: 15px 5px;
  }
}
.present-campaign .present-campaign01 .present-campaign01__text span.red {
  color: var(--LRD);
  text-decoration: underline;
  font-weight: 700;
  font-size: 33px;
  line-height: 1.7878787879;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign01 .present-campaign01__text span.red {
    font-size: 16.5px;
  }
}
.present-campaign .present-campaign01 .present-campaign01__text p {
  font-size: 25px;
  line-height: 1.76;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign01 .present-campaign01__text p {
    font-size: 12.5px;
  }
}
.present-campaign .present-campaign01 .present-campaign01__text p span.bold {
  font-size: 27px;
  line-height: 1.8148148148;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign01 .present-campaign01__text p span.bold {
    font-size: 13.5px;
  }
}
.present-campaign .present-campaign01 .present-campaign01__text:not(:last-of-type) {
  border-bottom: 1px solid #555;
}
.present-campaign .present-campaign02 {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign02 {
    padding-top: 25px;
  }
}
.present-campaign .present-campaign02 .present-campaign02__text {
  margin-top: 37px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign02 .present-campaign02__text {
    margin-top: 18.5px;
    margin-bottom: 25px;
  }
}
.present-campaign .present-campaign02 .present-campaign02__text p {
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign02 .present-campaign02__text p {
    font-size: 13.5px;
  }
}
.present-campaign .present-campaign02 .present-campaign02__text p span.bold {
  font-weight: 700;
}
.present-campaign .present-campaign02 .present-campaign02__text p span.red {
  display: inline-block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: var(--LRD);
  text-decoration: underline;
  font-weight: 700;
}
.present-campaign .present-campaign02 .present-campaign02__text p a {
  color: var(--LBL);
  text-decoration: underline;
  overflow-wrap: break-word;
}
.present-campaign .present-campaign03 {
  background-color: #E6ECF0;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign03 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.present-campaign .present-campaign03 .present-campaign03__inner {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign03 .present-campaign03__inner {
    max-width: 350px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.present-campaign .present-campaign03 .present-campaign03__text {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign03 .present-campaign03__text {
    margin-top: 9px;
  }
}
.present-campaign .present-campaign03 .present-campaign03__text p {
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign03 .present-campaign03__text p {
    font-size: 13.5px;
  }
}
.present-campaign .present-campaign03 .present-campaign03__text p span.red {
  color: var(--LRD);
  text-decoration: underline;
  font-weight: 700;
  display: inline-block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.present-campaign .present-campaign04 {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign04 {
    padding-top: 25px;
  }
}
.present-campaign .present-campaign04 .present-campaign04__text-top {
  margin-top: 31px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign04 .present-campaign04__text-top {
    margin-top: 15px;
  }
}
.present-campaign .present-campaign04 .present-campaign04__text-top p {
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign04 .present-campaign04__text-top p {
    font-size: 13.5px;
    margin-bottom: 4px;
  }
}
.present-campaign .present-campaign04 .present-campaign04__text-top p span.bold {
  font-weight: 700;
}
.present-campaign .present-campaign04 .present-campaign04__text-top p span.line {
  font-size: 30px;
  text-decoration: underline;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign04 .present-campaign04__text-top p span.line {
    font-size: 15px;
  }
}
.present-campaign .present-campaign04 .present-campaign04__text {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #555;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign04 .present-campaign04__text {
    padding-top: 10px;
    margin-top: 10px;
  }
}
.present-campaign .present-campaign04 .present-campaign04__text p {
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .present-campaign .present-campaign04 .present-campaign04__text p {
    font-size: 13.5px;
  }
}
.present-campaign .present-campaign04 .present-campaign04__text p span.bold {
  font-weight: 700;
}

/* ==================================================
*  faq
================================================== */
.faq-archive__inner {
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .faq-archive__inner {
    max-width: initial;
    padding: 0;
  }
}

.question__title {
  background-color: var(--BL);
  color: #fff;
  padding: 21px 0;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .question__title {
    padding: 10px 20px;
    margin-top: 28px;
  }
}

.question__title h3,
.question__title h2 {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .question__title h3,
.question__title h2 {
    max-width: 390px;
    font-size: 19px;
  }
}

.faq-archive .faq__list {
  margin-top: 21px;
}

@media screen and (max-width: 768px) {
  .faq-archive .faq__list {
    padding: 0 20px;
  }
}

.faq__answer p a {
  color: var(--BL);
}

.faq__list-btn {
  text-align: right;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .faq__list-btn {
    padding: 0 20px;
  }
}

.faq__list-btn a {
  color: var(--BL);
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .faq__list-btn a {
    font-size: 12px;
  }
}

.question__category-layout {
  display: flex;
  flex-wrap: wrap;
  margin-top: 21px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .question__category-layout {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }
}

.question__category-layout li {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .question__category-layout li {
    width: 100%;
  }
}

.faq-category-parent {
  position: relative;
  padding-left: 24px;
  font-size: 20px;
  margin-bottom: 10px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .faq-category-parent {
    font-size: 16px;
    padding-left: 20px;
    margin-bottom: 6px;
  }
}

.faq-category-parent::before {
  content: "■";
  position: absolute;
  background-position: top left;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 18px;
  height: 20px;
}

.faq-category-children {
  margin-bottom: 16px;
}

.faq-category-children li {
  width: 100%;
}

.faq-category-children li a {
  padding-left: 27px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq-category-children li a {
    padding-left: 23px;
  }
}

.faq-category-children li a::before {
  content: "・";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  width: 55px;
  height: 26px;
}
@media screen and (max-width: 768px) {
  .faq-category-children li a::before {
    height: 20px;
    left: 6px;
  }
}

.faq__pagination {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .faq__pagination {
    margin-top: 28px;
  }
}

.faq__pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__pagination .nav-links .page-numbers {
  font-size: 20px;
  margin: 0 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .faq__pagination .nav-links .page-numbers {
    font-size: 15px;
    margin: 0 4px;
    width: 25px;
    height: 25px;
  }
}

.faq__pagination .nav-links .page-numbers.current {
  color: #fff;
  background-color: var(--BL);
}

.faq__pagination .nav-links .page-numbers.next,
.faq__pagination .nav-links .page-numbers.prev {
  width: auto;
  height: auto;
}

.faq__text {
  display: inline-block;
  margin-top: 21px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .faq__text {
    padding: 0 20px;
    font-size: 14px;
  }
}

/*===== contact =====*/
.faq-archive .contact__list {
  margin-top: 40px;
  max-width: 680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .faq-archive .contact__list {
    margin-top: 20px;
    max-width: 340px;
  }
}
.faq-archive .contact__item {
  font-size: 28px;
  line-height: 1.6428571429;
  font-weight: 500;
  color: var(--LBK);
  list-style: disc;
  margin-left: 1.3em;
}
@media screen and (max-width: 768px) {
  .faq-archive .contact__item {
    font-size: 14px;
  }
}
.faq-archive .contact__item a {
  color: var(--LBL);
  text-decoration: underline;
}
.faq-archive .contact__item a i {
  text-decoration: underline;
}
.faq-archive .contact__item span.text-red {
  color: var(--LRD);
}
.faq-archive .contact__btn {
  margin-top: 35px;
  max-width: 680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  background-color: var(--OR);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .faq-archive .contact__btn {
    margin-top: 17.5px;
    max-width: 340px;
    border-radius: 15px;
  }
}
.faq-archive .contact__btn a {
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-sub);
  display: flex;
  justify-content: center;
  gap: 43px;
  align-items: center;
  width: 100%;
  padding: 35px 0;
}
@media screen and (max-width: 768px) {
  .faq-archive .contact__btn a {
    font-size: 18px;
    gap: 21px;
    padding: 17.5px 0;
  }
}
.faq-archive .contact__btn a i {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  .faq-archive .contact__btn a i {
    font-size: 30px;
  }
}

/* ==================================================
*  product-banner
================================================== */
.product-banner {
  padding: 40px 0;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 767px) {
  .product-banner {
    padding: 20px 0;
  }
}
.product-banner__inner.l-inner {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .product-banner__inner.l-inner {
    padding: 0 10px;
  }
}

.product-mainvisual {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .product-mainvisual {
    margin-bottom: 15px;
  }
}

.product-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 4px;
  border-bottom: 4px solid var(--BL);
  color: var(--BL);
  font-size: 30px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .product-title {
    margin-bottom: 15px;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--BL);
    font-size: 15px;
  }
}
.product-banner__container + .product-banner__container {
  margin-top: 46px;
}

@media screen and (max-width: 767px) {
  .product-banner__container + .product-banner__container {
    margin-top: 23px;
  }
}
.product-banner__main,
.product-banner__media {
  position: relative;
}

.product-banner__container--pair-col .product-banner__media {
  display: grid;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .product-banner__container--pair-col .product-banner__media {
    gap: 11px;
  }
}

.product-banner__container--pair-col .product-banner__media + .product-banner__media {
  margin-top: -1px;
}

.product-banner__row {
  display: grid;
  gap: 13px;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .product-banner__row {
    gap: 6.5px;
  }
}
.product-banner__row img {
  aspect-ratio: 346/426;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-banner__price {
  position: absolute;
  bottom: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 767px) {
  .product-banner__price {
    bottom: 2.5px;
  }
}
.product-banner__price.price-right {
  right: 70px;
}

@media screen and (max-width: 767px) {
  .product-banner__price.price-right {
    right: 35px;
  }
}
.product-banner__row .product-banner__price.price-right {
  right: 40px;
}
@media screen and (max-width: 767px) {
  .product-banner__row .product-banner__price.price-right {
    left: 20px;
  }
}

.product-banner__price.price-center {
  left: 47%;
  transform: translateX(-50%);
}

.product-banner__price.price-left {
  left: 30px;
}

@media screen and (max-width: 767px) {
  .product-banner__price.price-left {
    left: 15px;
  }
}
.product-banner__row .product-banner__price.price-left {
  left: 20px;
}
@media screen and (max-width: 767px) {
  .product-banner__row .product-banner__price.price-left {
    left: 10px;
  }
}

.product-banner__num .h1-text {
  color: var(--RD);
  font-size: 120px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .product-banner__num .h1-text {
    font-size: 60px;
  }
}
.product-banner__row .product-banner__num .h1-text {
  font-size: 60px;
}
@media screen and (max-width: 767px) {
  .product-banner__row .product-banner__num .h1-text {
    font-size: 30px;
  }
}

.product-banner__num .p-text {
  color: white;
  font-size: 120px;
  font-weight: bold;
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-text-stroke: 15px white;
}

@media screen and (max-width: 767px) {
  .product-banner__num .p-text {
    font-size: 60px;
    -webkit-text-stroke: 8px white;
  }
}
.product-banner__row .product-banner__num .p-text {
  font-size: 60px;
  -webkit-text-stroke: 8px white;
}
@media screen and (max-width: 767px) {
  .product-banner__row .product-banner__num .p-text {
    font-size: 30px;
    -webkit-text-stroke: 4px white;
  }
}

.product-banner__num .p-text-sub {
  color: var(--RD);
  font-size: 120px;
  font-weight: bold;
  position: absolute;
  inset: 0;
  z-index: 0;
  -webkit-text-stroke: 25px var(--RD);
}

@media screen and (max-width: 767px) {
  .product-banner__num .p-text-sub {
    font-size: 60px;
    -webkit-text-stroke: 15px var(--RD);
  }
}
.product-banner__row .product-banner__num .p-text-sub {
  font-size: 60px;
  -webkit-text-stroke: 15px var(--RD);
}
@media screen and (max-width: 767px) {
  .product-banner__row .product-banner__num .p-text-sub {
    font-size: 30px;
    -webkit-text-stroke: 8px var(--RD);
  }
}

.product-banner__num span.small {
  font-size: 70px;
  margin-right: -9px;
}

@media screen and (max-width: 767px) {
  .product-banner__num span.small {
    font-size: 35px;
    margin-right: -2px;
  }
}
.product-banner__row .product-banner__num span.small {
  font-size: 35px;
}
@media screen and (max-width: 767px) {
  .product-banner__row .product-banner__num span.small {
    font-size: 17.5px;
  }
}

.product-banner__num span.price-from {
  font-size: 40px;
  position: absolute;
  top: 60px;
  right: -42px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .product-banner__num span.price-from {
    font-size: 20px;
    top: 30px;
    right: -21px;
  }
}

.product-banner__row .product-banner__num span.price-from {
  font-size: 20px;
  top: 30px;
  right: -21px;
}
@media screen and (max-width: 767px) {
  .product-banner__row .product-banner__num span.price-from {
    font-size: 10px;
    top: 15px;
    right: -10px;
  }
}

.product-banner__tax {
  border: 3px solid #000;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  position: absolute;
  bottom: 20px;
  right: -55px;
  z-index: 999;
  padding: 6px 14px;
}

@media screen and (max-width: 767px) {
  .product-banner__tax {
    border: 1.5px solid #000;
    border-radius: 5px;
    padding: 3px 7px;
    bottom: 10px;
    right: -27.5px;
  }
}
.product-banner__row .product-banner__tax {
  border: 1.5px solid #000;
  border-radius: 5px;
  padding: 3px 7px;
  bottom: 10px;
  right: -32px;
}
@media screen and (max-width: 767px) {
  .product-banner__row .product-banner__tax {
    border: 1px solid #000;
    border-radius: 2.5px;
    padding: 1.5px 3.5px;
    bottom: 5px;
    right: -16px;
  }
}

.product-banner__tax p {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .product-banner__tax p {
    font-size: 10px;
  }
}
.product-banner__row .product-banner__tax p {
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  .product-banner__row .product-banner__tax p {
    font-size: 5px;
  }
}

.product-banner__text-area {
  margin-top: 22px;
  background-color: #e5e5e5;
  border-radius: 25px;
  padding: 25px 32px;
}
@media screen and (max-width: 767px) {
  .product-banner__text-area {
    margin-top: 11px;
    border-radius: 12.5px;
    padding: 12.5px 16px;
  }
}

.product-banner__row .product-banner__text-area {
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .product-banner__row .product-banner__text-area {
    padding: 8px;
  }
}

.product-banner__badges {
  display: grid;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .product-banner__badges {
    gap: 5px;
  }
}
.product-banner__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media screen and (max-width: 767px) {
  .product-banner__list {
    gap: 6px;
    line-height: 1;
  }
}
.product-banner__item span.c-badge {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  padding: 8.5px 7px;
  font-family: var(--font-sub);
}

@media screen and (max-width: 767px) {
  .product-banner__item span.c-badge {
    font-size: 10px;
    padding: 4.25px 3.5px;
  }
}
.product-banner__item span.c-badge--outlet {
  background-color: #000;
}

.product-banner__item span.c-badge--new {
  background-color: #ff0100;
}

.product-banner__item span.c-badge--unisex {
  background-color: #999;
}

.product-banner__item span.c-badge--mens {
  background-color: #304d85;
}

.product-banner__item span.c-badge--ladies {
  background-color: #f46ba2;
}

.product-banner__text {
  font-family: var(--font-base);
  font-feature-settings: "palt";
}

.product-banner__text p.product-banner__title {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .product-banner__text p.product-banner__title {
    font-size: 14px;
    margin-top: 5px;
  }
}

.product-banner__text p.product-banner__price-text {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--TRD);
}
@media screen and (max-width: 767px) {
  .product-banner__text p.product-banner__price-text {
    font-size: 16px;
  }
}
.product-banner__text p.product-banner__price-text span.tax {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .product-banner__text p.product-banner__price-text span.tax {
    font-size: 10px;
  }
}

.product-banner__container--popular .product-banner__text p.product-banner__price-text {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .product-banner__container--popular .product-banner__text p.product-banner__price-text {
    margin-top: 5px;
  }
}

.product-banner__text p.product-banner__note {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .product-banner__text p.product-banner__note {
    font-size: 10px;
  }
}

.product-banner__text p.product-banner__title-product {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .product-banner__text p.product-banner__title-product {
    font-size: 14px;
  }
}
.product-banner__text p.product-banner__title-product span.red {
  color: var(--TRD);
}

.product-banner__text p.product-banner__desc {
  display: inline-block;
  margin-top: 20px;
  font-size: 26px;
  line-height: 1.5384615385;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .product-banner__text p.product-banner__desc {
    font-size: 13px;
    margin-top: 10px;
  }
}

.product-banner__bottom {
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  .product-banner__bottom {
    margin-top: 28.5px;
  }
}
.product-banner__bottom .campaign__banner {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .product-banner__bottom .campaign__banner {
    margin-top: 20px;
  }
}

/* modal */
.campaign-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.campaign-modal__content {
  position: relative;
  width: 80%;
  max-width: 595px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.campaign-modal__close {
  position: absolute;
  top: -30px;
  right: -20px;
  font-size: 24px;
  line-height: 1;
  width: auto;
  height: auto;
  display: inline-block;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .campaign-modal__close {
    top: -20px;
    right: -15px;
    font-size: 18px;
  }
}

.campaign-modal__content img {
  width: 100%;
  height: auto;
}

/* ==================================================
*  今シーズン注目アイテム
================================================== */
.highlight-item {
  font-family: var(--font-base);
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .highlight-item {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}
.highlight-item iframe {
  aspect-ratio: 624/352;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.highlight-item .product-mainvisual {
  margin-bottom: 0;
}
.highlight-item .highlight-item__fase {
  background-image: url(../img/product/item/fase-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  padding-bottom: 28px;
}
.highlight-item .highlight-item__fase-main {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 23px 18px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__fase-main {
    max-width: 360px;
    padding: 11.5px 8px;
  }
}
.highlight-item .highlight-item__fase-main .fase__list {
  display: grid;
  gap: 73px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__fase-main .fase__list {
    gap: 36.5px;
  }
}
.highlight-item .highlight-item__fase-main .fase__item-img {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__fase-main .fase__item-img {
    margin-top: 17px;
  }
}
.highlight-item .highlight-item__head span.badge {
  background-color: #e60012;
  color: #fff;
  padding: 6px 7px 8px;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  display: inline-block;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__head span.badge {
    padding: 3px 3.5px 4px;
    font-size: 13px;
    border-radius: 2.5px;
  }
}
.highlight-item .highlight-item__head span.title {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__head span.title {
    font-size: 14px;
  }
}
.highlight-item .highlight-item__head span.title span.red {
  color: #c40018;
}
.highlight-item .highlight-item__text {
  margin-top: 21px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__text {
    margin-top: 10px;
  }
}
.highlight-item .highlight-item__text p {
  font-size: 26px;
  line-height: 1.5384615385;
  font-weight: 400;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__text p {
    font-size: 13px;
  }
}
.highlight-item .highlight-item__text p span.orange {
  color: #e55000;
  font-weight: 700;
}
.highlight-item .highlight-item__text p span.red {
  color: #c40018;
}
.highlight-item .highlight-item-pick {
  position: relative;
}
.highlight-item .highlight-item-pick::before {
  content: "";
  background-image: url(../img/product/item/icon-pickup.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 121px;
  height: 124px;
  position: absolute;
  top: -42px;
  left: 7px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item-pick::before {
    width: 60px;
    height: 62px;
    top: -21px;
    left: 3.5px;
  }
}
.highlight-item .highlight-item__number {
  background: linear-gradient(#010101, #b5b5b5);
  padding-top: 40px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__number {
    padding-top: 20px;
    padding-bottom: 25px;
  }
}
.highlight-item .highlight-item__number .highlight-item__number-main {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 25px 18px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__number .highlight-item__number-main {
    max-width: 360px;
    padding: 12.5px 8px;
  }
}
.highlight-item .highlight-item__number .highlight-item__number-main .highlight-item__number-title {
  margin-top: 34px;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__number .highlight-item__number-main .highlight-item__number-title {
    margin-top: 17px;
    font-size: 16px;
    margin-bottom: 21px;
  }
}
.highlight-item .highlight-item__number .highlight-item__number-main .number__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 42px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__number .highlight-item__number-main .number__list {
    row-gap: 21px;
    margin-top: 20px;
  }
}
.highlight-item .highlight-item__number .highlight-item__number-main .number__item {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__number .highlight-item__number-main .number__item {
    width: 49%;
  }
}
.highlight-item .highlight-item__number .highlight-item__number-main .number__item .product-banner__text-area {
  padding: 23px 20px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__number .highlight-item__number-main .number__item .product-banner__text-area {
    padding: 11.5px 9px;
  }
}
.highlight-item .highlight-item__number .highlight-item__number-main .number__item .highlight-item__text {
  margin-top: 0;
}
.highlight-item .highlight-item__dc {
  background: linear-gradient(#010101, #b5b5b5);
  padding-top: 40px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__dc {
    padding-top: 20px;
    padding-bottom: 25px;
  }
}
.highlight-item .highlight-item__dc .highlight-item__dc-head {
  max-width: 530px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__dc .highlight-item__dc-head {
    max-width: 265px;
  }
}
.highlight-item .highlight-item__dc .highlight-item__dc-main {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 25px 18px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__dc .highlight-item__dc-main {
    max-width: 360px;
    padding: 12.5px 8px;
  }
}
.highlight-item .highlight-item__dc .highlight-item__dc-main .dc__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 42px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__dc .highlight-item__dc-main .dc__list {
    row-gap: 21px;
    margin-top: 20px;
  }
}
.highlight-item .highlight-item__dc .highlight-item__dc-main .dc__item {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__dc .highlight-item__dc-main .dc__item {
    width: 49%;
  }
}
.highlight-item .highlight-item__dc .highlight-item__dc-main .dc__item .product-banner__text-area {
  padding: 23px 20px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__dc .highlight-item__dc-main .dc__item .product-banner__text-area {
    padding: 11.5px 9px;
  }
}
.highlight-item .highlight-item__dc .highlight-item__dc-main .dc__item .highlight-item__text {
  margin-top: 0;
}
.highlight-item .highlight-item__wear .highlight-item__wear-container {
  background-image: url(../img/product/item/wear-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: -64px;
  padding-bottom: 62px;
  background-position-y: bottom;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__wear .highlight-item__wear-container {
    margin-top: -32px;
    padding-bottom: 31px;
  }
}
.highlight-item .highlight-item__wear .highlight-item__wear-container .highlight-item__wear-main {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 25px 18px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__wear .highlight-item__wear-container .highlight-item__wear-main {
    max-width: 360px;
    padding: 12.5px 8px;
  }
}
.highlight-item .highlight-item__wear .highlight-item__wear-container .highlight-item__wear-main .wear__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 42px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__wear .highlight-item__wear-container .highlight-item__wear-main .wear__list {
    row-gap: 21px;
  }
}
.highlight-item .highlight-item__wear .highlight-item__wear-container .highlight-item__wear-main .wear__item {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__wear .highlight-item__wear-container .highlight-item__wear-main .wear__item {
    width: 49%;
  }
}
.highlight-item .highlight-item__wear .highlight-item__wear-container .highlight-item__wear-main .wear__item .product-banner__text-area {
  padding: 23px 20px 82px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__wear .highlight-item__wear-container .highlight-item__wear-main .wear__item .product-banner__text-area {
    padding: 11.5px 9px 41px;
  }
}
.highlight-item .highlight-item__wear .highlight-item__wear-container .highlight-item__wear-main .wear__item .highlight-item__text {
  margin-top: 0;
}
.highlight-item .highlight-item__wear .highlight-item__wear-container .highlight-item__wear-main .wear__item .highlight-item__country {
  max-width: 120px;
  width: 100%;
  position: absolute;
  bottom: 20px;
  right: 17px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__wear .highlight-item__wear-container .highlight-item__wear-main .wear__item .highlight-item__country {
    max-width: 60px;
    bottom: 10px;
    right: 8.5px;
  }
}
.highlight-item .highlight-item__roxy {
  background-color: #c8006a;
  padding-top: 40px;
  padding-bottom: 52px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__roxy {
    padding-top: 20px;
    padding-bottom: 26px;
  }
}
.highlight-item .highlight-item__roxy .highlight-item__roxy-head {
  max-width: 571px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__roxy .highlight-item__roxy-head {
    max-width: 285px;
  }
}
.highlight-item .highlight-item__roxy .highlight-item__roxy-main {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 25px 18px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__roxy .highlight-item__roxy-main {
    max-width: 360px;
    padding: 12.5px 8px;
    margin-top: 20px;
  }
}
.highlight-item .highlight-item__roxy .highlight-item__roxy-main .roxy__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 42px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__roxy .highlight-item__roxy-main .roxy__list {
    margin-top: 20px;
    row-gap: 21px;
  }
}
.highlight-item .highlight-item__roxy .highlight-item__roxy-main .roxy__item {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__roxy .highlight-item__roxy-main .roxy__item {
    width: 49%;
  }
}
.highlight-item .highlight-item__roxy .highlight-item__roxy-main .roxy__item .product-banner__text-area {
  padding: 23px 20px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__roxy .highlight-item__roxy-main .roxy__item .product-banner__text-area {
    padding: 11.5px 9px;
  }
}
.highlight-item .highlight-item__roxy .highlight-item__roxy-main .roxy__item .highlight-item__text {
  margin-top: 0;
}
.highlight-item .highlight-item__bone {
  position: relative;
}
.highlight-item .highlight-item__bone .product-banner__text-area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 677px;
  max-width: 660px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__bone .product-banner__text-area {
    bottom: 338.5px;
    max-width: 360px;
  }
}
.highlight-item .highlight-item__bone .highlight-item__bone-movie {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 252px;
  max-width: 660px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__bone .highlight-item__bone-movie {
    bottom: 126px;
    max-width: 360px;
  }
}
.highlight-item .highlight-item__goggle {
  margin-top: -192px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__goggle {
    margin-top: -96px;
  }
}
.highlight-item .highlight-item__goggle .highlight-item__goggle-container {
  background-color: #2f0267;
  padding-bottom: 78px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__goggle .highlight-item__goggle-container {
    padding-bottom: 39px;
  }
}
.highlight-item .highlight-item__goggle .highlight-item__goggle-main {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 25px 18px 18px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__goggle .highlight-item__goggle-main {
    max-width: 360px;
    padding: 12.5px 8px 9px;
  }
}
.highlight-item .highlight-item__goggle .highlight-item__goggle-main .highlight-item__goggle-title {
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__goggle .highlight-item__goggle-main .highlight-item__goggle-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
.highlight-item .highlight-item__goggle .highlight-item__goggle-main .highlight-item__goggle-img {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__goggle .highlight-item__goggle-main .highlight-item__goggle-img {
    margin-top: 18px;
  }
}
.highlight-item .highlight-item__goggle .highlight-item__goggle-main .highlight-item__goggle-img img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__goggle .highlight-item__goggle-main .highlight-item__goggle-img img {
    width: 49%;
  }
}
.highlight-item .highlight-item__goggle .highlight-item__goggle-main .highlight-item__text {
  margin-top: 0;
}
.highlight-item .highlight-item__goggle .highlight-item__goggle-main .highlight-item__goggle-bottom {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__goggle .highlight-item__goggle-main .highlight-item__goggle-bottom {
    margin-top: 20px;
  }
}
.highlight-item .highlight-item__glove {
  padding-top: 30px;
  background: linear-gradient(-90deg, #ef4b38, #59150d);
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__glove {
    padding-top: 15px;
    padding-bottom: 25px;
  }
}
.highlight-item .highlight-item__glove .highlight-item__glove-head {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__glove .highlight-item__glove-head {
    max-width: 360px;
  }
}
.highlight-item .highlight-item__glove .highlight-item__glove-main {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 25px 18px 53px;
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__glove .highlight-item__glove-main {
    max-width: 360px;
    padding: 12.5px 8px 26.5px;
    margin-top: 11px;
  }
}
.highlight-item .highlight-item__glove .highlight-item__glove-main .glove__item:nth-child(2) {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__glove .highlight-item__glove-main .glove__item:nth-child(2) {
    margin-top: 12.5px;
  }
}
.highlight-item .highlight-item__glove .highlight-item__glove-main .glove__item:nth-child(3) {
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__glove .highlight-item__glove-main .glove__item:nth-child(3) {
    margin-top: 37.5px;
  }
}
.highlight-item .highlight-item__glove .highlight-item__glove-bottom {
  margin-top: 40px;
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__glove .highlight-item__glove-bottom {
    margin-top: 20px;
    max-width: 360px;
  }
}
.highlight-item .highlight-item__taotech {
  position: relative;
}
.highlight-item .highlight-item__taotech .highlight-item__swiper {
  position: absolute;
  bottom: 382px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__taotech .highlight-item__swiper {
    bottom: 206px;
  }
}
.highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button {
  width: 92%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button {
    width: 97%;
    top: 50%;
  }
}
.highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button .swiper-button-prev,
.highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button .swiper-button-next {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button .swiper-button-prev,
.highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button .swiper-button-prev::before,
.highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--RD);
  border-right: 3px solid var(--RD);
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button .swiper-button-prev::before,
.highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button .swiper-button-next::before {
    width: 5px;
    height: 5px;
    border-top: 1.5px solid var(--RD);
    border-right: 1.5px solid var(--RD);
  }
}
.highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button .swiper-button-prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.highlight-item .highlight-item__taotech .highlight-item__swiper .highlight-item__swiper-button .swiper-button-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.highlight-item .highlight-item__uchiko {
  background: linear-gradient(#000000, #414141);
  padding-top: 58px;
  padding-bottom: 74px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko {
    padding-top: 29px;
    padding-bottom: 37px;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-head {
  max-width: 640px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko .highlight-item__uchiko-head {
    max-width: 320px;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 25px 18px 44px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko .highlight-item__uchiko-main {
    max-width: 360px;
    padding: 12.5px 8px 22px;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__list {
  margin-top: 54px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 42px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__list {
    margin-top: 27px;
    row-gap: 21px;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__item {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__item {
    width: 49%;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__item .product-banner__text-area {
  padding: 23px 20px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__item .product-banner__text-area {
    padding: 12.5px 9px;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__item .highlight-item__text {
  margin-top: 0;
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__movie {
  margin-top: 72px;
  display: grid;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__movie {
    margin-top: 36px;
    gap: 15px;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__bottom {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__bottom {
    margin-top: 24px;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__bottom-img {
  max-width: 226px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__bottom-img {
    max-width: 113px;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__bottom-text {
  max-width: 425px;
  width: 100%;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__bottom-text {
    max-width: 212.5px;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__bottom-text p.top {
  font-size: 30px;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__bottom-text p.top {
    font-size: 15px;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__bottom-text p.text {
  font-size: 26px;
  line-height: 1.5384615385;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__bottom-text p.text {
    font-size: 13px;
  }
}
.highlight-item .highlight-item__uchiko .highlight-item__uchiko-main .uchiko__bottom-text p.text span.pink {
  color: #e1485d;
}

/* ==================================================
*  スキーアイテム
================================================== */
.ski-sections .ski-section:nth-child(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .ski-sections .ski-section:nth-child(n+2) {
    margin-top: 20px;
  }
}

/*======================================*/
/* スキー・スノーボードアイテムの選び方 */
/*======================================*/
/* index
---------------------------------------*/
.features #features_index h3 {
  margin-bottom: 30px;
}
.features #features_index h3 + p {
  margin-bottom: 30px;
  font-size: 27px;
  font-weight: 500;
}
.features .features_link li {
  margin-top: 30px;
}
.features #features_top {
  color: #333;
}
.features #features_top h3 {
  margin-bottom: 30px;
}
.features #features_top h3 + p {
  margin-bottom: 80px;
  font-size: 27px;
  font-weight: 500;
}
.features .features_cts_index {
  padding: 80px 35px;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  background-color: #FBFBFB;
  text-align: left;
  color: #333;
}
.features .features_cts_index a {
  color: #333;
}
.features .features_cts_index ol {
  counter-reset: number;
}
.features .features_cts_index ol > li {
  position: relative;
  list-style: none;
  margin-left: 1.5em;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.8;
}
.features .features_cts_index ol > li:not(:first-of-type) {
  margin-top: 50px;
}
.features .features_cts_index ol > li::before {
  counter-increment: number;
  content: "" counter(number) " | ";
  position: absolute;
  left: -1.5em;
}
.features .features_cts_index ol > li > ul li {
  font-size: 26px;
}
.features .features_cts {
  color: #333;
  font-size: 27px;
  font-weight: 500;
}
.features .features_cts h3 {
  margin: 80px 0 40px;
}
.features .features_cts h4 {
  margin: 70px 0 30px;
  padding-bottom: 8px;
  border-bottom: 4px solid #3D4ABD;
  color: #3D4ABD;
  font-size: 30px;
  font-weight: 700;
}
.features .features_cts h4:first-of-type {
  margin-top: 0;
}
.features .features_cts p {
  margin-bottom: 1em;
}
.features .features_cts p:last-of-type {
  margin-bottom: 0;
}
.features .features_cts figure {
  margin: 50px 0;
}
.features .features_cts h4 + figure {
  margin-top: 0;
}
.features .features_cts .snowboard-type {
  margin: 50px 0;
  border-top: 1px solid #CCC;
}
.features .features_cts .snowboard-type dt {
  padding-top: 16px;
  font-size: 30px;
  font-weight: 700;
}
.features .features_cts .snowboard-type dd {
  padding-bottom: 16px;
  border-bottom: 1px solid #CCC;
}
.features .features_cts .snowboard-list {
  margin-bottom: 1em;
}
.features .features_cts .snowboard-list li {
  list-style: none;
  font-weight: 700;
}
.features .features_cts .snowboard-list li span {
  text-decoration: underline;
}
.features .features_cts_end {
  color: #333;
  font-size: 27px;
  font-weight: 500;
}
.features .features_cts_end figure {
  margin-bottom: 50px;
}
.features .features_cts .banner {
  padding: 80px 0;
  text-align: center;
}
.features .features_cts .banner .text {
  color: #333;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
}
.features .features_cts .banner .text span {
  position: relative;
  z-index: 0;
}
.features .features_cts .banner .text span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: #FFD1D1;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .features #features_index {
    padding-top: 25px;
  }
  .features #features_index h3 {
    margin-bottom: 15px;
  }
  .features #features_index h3 + p {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .features .features_link li {
    margin-top: 15px;
  }
}
/* アイテムの選び方
---------------------------------------*/
@media screen and (max-width: 767px) {
  .features #features_top .cts02 {
    padding-top: 25px;
  }
  .features #features_top h3 {
    margin-bottom: 15px;
  }
  .features #features_top h3 + p {
    margin-bottom: 40px;
    font-size: 14px;
  }
}
/* 目次 */
@media screen and (max-width: 767px) {
  .features .features_cts_index {
    padding: 40px 17.5px;
  }
  .features .features_cts_index ol > li {
    font-size: 16px;
  }
  .features .features_cts_index ol > li:not(:first-of-type) {
    margin-top: 25px;
  }
  .features .features_cts_index ol > li > ul li {
    font-size: 13px;
  }
}
/* コンテンツ */
@media screen and (max-width: 767px) {
  .features .features_cts {
    font-size: 14px;
  }
  .features .features_cts h3 {
    margin: 40px 0 20px;
  }
  .features .features_cts h4 {
    margin: 35px 0 15px;
    padding-bottom: 4px;
    border-bottom: 2px solid #3D4ABD;
    font-size: 15px;
  }
  .features .features_cts figure {
    margin: 25px 0;
  }
  .features .features_cts .snowboard-type {
    margin: 25px 0;
  }
  .features .features_cts .snowboard-type dt {
    padding-top: 8px;
    font-size: 15px;
  }
  .features .features_cts .snowboard-type dd {
    padding-bottom: 8px;
  }
}
/* コンテンツEND */
@media screen and (max-width: 767px) {
  .features .features_cts_end {
    font-size: 14px;
  }
  .features .features_cts_end figure {
    margin-bottom: 25px;
  }
}
/* ページ内バナー */
@media screen and (max-width: 767px) {
  .features .features_cts .banner {
    padding: 40px 0;
  }
  .features .features_cts .banner .text {
    font-size: 18px;
  }
  .features .features_cts .banner .text span::before {
    height: 7px;
  }
}
.support {
  font-size: 28px;
  line-height: 1.5;
}
.support .bt-img {
  width: 90%;
  margin: auto;
}
.support .delivery .begin-img, .support .delivery .heading01 {
  margin-top: 24px;
  margin-bottom: 16px;
}
.support .delivery .col2 .img-area {
  text-align: center;
  margin-top: 8px;
}
.support .security .heading02 {
  margin-top: 24px;
  margin-bottom: 16px;
}
.support .security .pink {
  color: #FE6666 !important;
  font-weight: bold;
}
.support .security .blue {
  color: #1A2080 !important;
  font-weight: bold;
}
.support .security h4 {
  box-sizing: border-box;
  margin: 10px auto 8px;
}
.support .security .sup_area h4 {
  color: #3D4ABD;
  font-weight: bold;
  border-bottom: solid 2px #3D4ABD;
  padding: 1%;
  margin: 4% 0 0;
}
.support .cashless {
  margin-bottom: 48px;
}
.support .cashless h3 {
  margin: 32px auto 24px;
  padding-bottom: 6px;
  font-size: 24px;
  color: #ff0000;
  font-weight: bold;
  text-align: center;
  border-bottom: solid 4px #ff0000;
}
.support .pay {
  margin-bottom: 48px;
}
.support .pay p:not(:last-of-type) {
  margin-bottom: 24px;
}
.support .pay img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .support .bt-img {
    width: 60%;
  }
}
/*======================*/
/* 配送サービスのご案内 */
/*======================*/
@media screen and (min-width: 768px) {
  .support .delivery {
    margin-bottom: 48px;
  }
  .support .delivery .col2 {
    overflow: hidden;
  }
  .support .delivery .tx-area {
    float: left;
    width: 447px;
  }
  .support .delivery .img-area {
    float: right;
    width: 207px;
  }
}
/*====================*/
/* キャッシュレス決済 */
/*====================*/
@media screen and (min-width: 768px) {
  .support .cashless h3 {
    margin: 48px auto 24px;
  }
}
/*==================*/
/* 選べるお支払方法 */
/*==================*/
.support .pay {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .support .pay {
    margin-top: 24px;
  }
}
.support .pay__img02 {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .support .pay__img02 {
    margin-top: 24px;
  }
}

/*==================*/
/* 免税について */
/*==================*/
.support .dutyfree {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .support .dutyfree {
    margin-top: 20px;
  }
}
.support .dutyfree section {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .support .dutyfree section {
    margin-top: 30px;
  }
}
.support .dutyfree__inner {
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__inner {
    max-width: initial;
    padding: 0;
  }
}
.support .dutyfree__top {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__top {
    max-width: 350px;
  }
}
.support .dutyfree__top .dutyfree__top-text {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__top .dutyfree__top-text {
    margin-top: 11px;
  }
}
.support .dutyfree__top .dutyfree__top-text p {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__top .dutyfree__top-text p {
    font-size: 14px;
  }
}
.support .dutyfree__title {
  background-color: var(--BL);
  color: #fff;
  padding: 21px 0;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__title {
    padding: 10px 0;
  }
}
.support .dutyfree__title span {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__title span {
    max-width: 340px;
    font-size: 19px;
  }
}
.support .dutyfree__body {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__body {
    margin-top: 15px;
  }
}
.support .dutyfree__sub-title {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: var(--BL);
  padding-bottom: 10px;
  border-bottom: 5px solid var(--BL);
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__sub-title {
    max-width: 350px;
    padding-bottom: 5px;
    border-bottom: 2.5px solid var(--BL);
    font-size: 15px;
    margin-top: 5px;
  }
}
.support .dutyfree__sub-title span {
  font-size: 27px;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__sub-title span {
    font-size: 13.5px;
  }
}
.support .dutyfree__sub-title:not(:first-of-type) {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__sub-title:not(:first-of-type) {
    margin-top: 25px;
  }
}
.support .dutyfree__text {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__text {
    max-width: 350px;
    margin-top: 8px;
  }
}
.support .dutyfree__text p {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__text p {
    font-size: 14px;
  }
}
.support .dutyfree__text p a {
  overflow-wrap: break-word;
  color: var(--LBL);
}
.support span.dutyfree__note-line {
  color: var(--LRD);
  font-weight: 700;
  text-decoration: underline;
}
.support span.dutyfree__note {
  color: var(--LRD);
  font-weight: 700;
}
.support span.dutyfree__note-big {
  color: var(--LRD);
  font-size: 35px;
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .support span.dutyfree__note-big {
    font-size: 17.5px;
  }
}
.support .dutyfree__img {
  margin-top: 40px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .support .dutyfree__img {
    margin-top: 20px;
    max-width: 350px;
  }
}

/*==================*/
/* 配送サービスのご案内 */
/*==================*/
.support .delivery {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .support .delivery {
    margin-top: 20px;
  }
}
.support .delivery__top .delivery__top-text {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .support .delivery__top .delivery__top-text {
    margin-top: 11px;
  }
}
.support .delivery__top .delivery__top-text p {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .support .delivery__top .delivery__top-text p {
    font-size: 14px;
  }
}
.support .delivery__main .delivery__title {
  margin-top: 40px;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  border-top: 2px solid var(--BL);
  border-bottom: 2px solid var(--BL);
  padding: 10px;
  color: var(--BL);
}
@media screen and (max-width: 767px) {
  .support .delivery__main .delivery__title {
    margin-top: 20px;
    font-size: 16px;
    border-top: 1px solid var(--BL);
    border-bottom: 1px solid var(--BL);
    padding: 5px;
  }
}
.support .delivery__main .delivery__text {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .support .delivery__main .delivery__text {
    margin-top: 8px;
  }
}
.support .delivery__main .delivery__text p {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .support .delivery__main .delivery__text p {
    font-size: 14px;
  }
}
.support .delivery__main .delivery__text p span.bold {
  font-weight: 700;
}
.support .delivery__main .delivery__text p + p {
  margin-top: 1em;
  display: inline-block;
}
.support .delivery__main .delivery__wrap {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .support .delivery__main .delivery__wrap {
    gap: 12.5px;
  }
}
.support .delivery__main .delivery__wrap .delivery__text {
  max-width: 447px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .support .delivery__main .delivery__wrap .delivery__text {
    max-width: 223.5px;
  }
}
.support .delivery__main .delivery__wrap .delivery__img {
  max-width: 207px;
  width: 100%;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .support .delivery__main .delivery__wrap .delivery__img {
    margin-top: 8px;
    max-width: 103.5px;
  }
}

/*====================*/
/* 商品の保証について */
/*====================*/
.support .security {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .support .security {
    margin-top: 20px;
  }
}
.support .security__inner {
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .support .security__inner {
    max-width: initial;
    padding: 0;
  }
}
.support .security__title {
  background-color: var(--BL);
  color: #fff;
  padding: 21px 0;
}
@media screen and (max-width: 767px) {
  .support .security__title {
    padding: 10px 0;
  }
}
.support .security__title span {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .support .security__title span {
    max-width: 340px;
    font-size: 19px;
  }
}
.support .security__title:not(:first-of-type) {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .support .security__title:not(:first-of-type) {
    margin-top: 12px;
  }
}
.support .security__sub-title {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: var(--BL);
  padding-bottom: 10px;
  border-bottom: 5px solid var(--BL);
  font-size: 30px;
  line-height: 1.3;
  font-weight: 500;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .support .security__sub-title {
    max-width: 350px;
    padding-bottom: 5px;
    border-bottom: 2.5px solid var(--BL);
    font-size: 15px;
    margin-top: 14px;
  }
}
.support .security__sub-title span.bold {
  font-weight: 700;
}
.support .security__text {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .support .security__text {
    max-width: 350px;
    margin-top: 8px;
  }
}
.support .security__text p {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .support .security__text p {
    font-size: 14px;
  }
}
.support .security__text p span.red {
  color: var(--LRD);
}
.support .security__text p span.blue {
  font-weight: 700;
  color: #1A2080;
}
.support .security__img {
  margin-top: 20px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .support .security__img {
    margin-top: 10px;
    max-width: 350px;
  }
}

.entertainment {
  /* ==================================================
  *  entertainment-sec-title
  ================================================== */
  /* ==================================================
  *  top
  ================================================== */
  /* ==================================================
  *  dancer
  ================================================== */
  /* ==================================================
  *  family
  ================================================== */
  /* ==================================================
  *  ambassador
  ================================================== */
  /* ==================================================
  *  ambassador-detail
  ================================================== */
}
.entertainment .entertainment-sec-title {
  color: var(--BL);
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 5px solid var(--BL);
}
@media screen and (max-width: 767px) {
  .entertainment .entertainment-sec-title {
    font-size: 15px;
    padding-bottom: 5px;
    border-bottom: 2.5px solid var(--BL);
  }
}
.entertainment .entertainment-top {
  margin-top: 42px;
}
.entertainment .entertainment-top__list {
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .entertainment .entertainment-top {
    margin-top: 21px;
  }
  .entertainment .entertainment-top__list {
    gap: 10px;
  }
}
.entertainment .dancer {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .entertainment .dancer {
    margin-top: 20px;
  }
}
.entertainment .dancer__list {
  margin-top: 40px;
  display: grid;
  gap: 81px;
}
@media screen and (max-width: 767px) {
  .entertainment .dancer__list {
    margin-top: 20px;
    gap: 40px;
  }
}
.entertainment .dancer__item-title.ambassador-detail__name {
  margin-top: 0;
}
.entertainment .dancer__item-img {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .entertainment .dancer__item-img {
    margin-top: 8px;
  }
}
.entertainment .dancer__item-body {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .entertainment .dancer__item-body {
    margin-top: 8px;
  }
}
.entertainment .dancer__item-age {
  font-size: 27px;
  line-height: 2.8148148148;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .entertainment .dancer__item-age {
    font-size: 13.5px;
  }
}
.entertainment .dancer__item-wrapper {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding-bottom: 42px;
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .entertainment .dancer__item-wrapper {
    padding-bottom: 21px;
    font-size: 13.5px;
  }
}
.entertainment .dancer__item-wrapper h4 {
  font-weight: 700;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .entertainment .dancer__item-wrapper h4 {
    margin-top: 7px;
  }
}
.entertainment .dancer__item-wrapper h4:not(:first-of-type) {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .entertainment .dancer__item-wrapper h4:not(:first-of-type) {
    margin-top: 14px;
  }
}
.entertainment .dancer__item-sns {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .entertainment .dancer__item-sns {
    margin-top: 12.5px;
  }
}
.entertainment .dancer__item-sns a {
  color: var(--LBL);
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .entertainment .dancer__item-sns a {
    font-size: 13.5px;
  }
}
.entertainment .family {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .entertainment .family {
    margin-top: 20px;
  }
}
.entertainment .family__list {
  margin-top: 40px;
  display: grid;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .entertainment .family__list {
    margin-top: 20px;
    gap: 35px;
  }
}
.entertainment .family__item-title.ambassador-detail__name {
  margin-top: 0;
}
.entertainment .family__item-img {
  margin-top: 16px;
}
.entertainment .family__item ul {
  margin-top: 16px;
}
.entertainment .family__item ul li {
  padding: 16px 0;
  font-size: 27px;
  line-height: 1.5;
  font-weight: 500;
}
.entertainment .family__item ul li:not(:first-of-type) {
  border-top: 1px solid #CCC;
}
.entertainment .ambassador {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .entertainment .ambassador {
    padding-top: 20px;
  }
}
.entertainment .ambassador__list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 21px;
}
@media screen and (max-width: 767px) {
  .entertainment .ambassador__list {
    margin-top: 25px;
    gap: 20px 10px;
  }
}
.entertainment .ambassador__item {
  max-width: 330px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .entertainment .ambassador__item {
    max-width: 160px;
  }
}
.entertainment .ambassador__name {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .entertainment .ambassador__name {
    margin-top: 5px;
    font-size: 13.5px;
  }
}
.entertainment .ambassador__id {
  display: block;
  text-align: center;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .entertainment .ambassador__id {
    font-size: 10px;
  }
}
.entertainment .ambassador-detail__name {
  color: var(--BL);
  margin-top: 38px;
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .entertainment .ambassador-detail__name {
    margin-top: 19px;
    font-size: 13.5px;
  }
}
.entertainment .ambassador-detail__name::before {
  content: "■";
  color: var(--BL);
  font-size: 27px;
  line-height: 1.7037037037;
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  .entertainment .ambassador-detail__name::before {
    font-size: 13.5px;
  }
}
.entertainment .ambassador-detail__slider {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .entertainment .ambassador-detail__slider {
    margin-top: 10px;
  }
}
.entertainment .ambassador-detail .js-ambassador-thumb .swiper-slide {
  width: 80px;
  height: auto;
  opacity: 0.7;
  cursor: pointer;
}
.entertainment .ambassador-detail .js-ambassador-thumb .swiper-slide img {
  width: 100%;
  height: auto;
}
.entertainment .ambassador-detail .js-ambassador-thumb .swiper-slide-thumb-active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .entertainment .ambassador-detail .js-ambassador-thumb .swiper-slide {
    width: 40px;
  }
}
.entertainment .ambassador-detail__body {
  margin-top: 48px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 500;
}
.entertainment .ambassador-detail__body h4 {
  color: var(--BL);
  font-weight: 700;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .entertainment .ambassador-detail__body {
    margin-top: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13.5px;
  }
  .entertainment .ambassador-detail__body h4 {
    padding-top: 10px;
    margin-top: 10px;
  }
}
.entertainment .ambassador-detail__sns {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
.entertainment .ambassador-detail__sns h4 {
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 700;
}
.entertainment .ambassador-detail__sns ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.entertainment .ambassador-detail__sns ul li a {
  color: var(--LBL);
  font-size: 27px;
  line-height: 1.7037037037;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .entertainment .ambassador-detail__sns {
    padding-top: 10px;
  }
  .entertainment .ambassador-detail__sns h4 {
    font-size: 13.5px;
  }
  .entertainment .ambassador-detail__sns ul {
    margin-top: 5px;
    gap: 5px;
  }
  .entertainment .ambassador-detail__sns ul li a {
    font-size: 13.5px;
  }
}

/*==========*/
/* リフト券 */
/*==========*/
#lift {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  #lift {
    font-size: 14px;
  }
}

.lift h2.heading01 {
  margin-bottom: 0;
}

#lift #lift_index .kaijo-txt {
  max-width: 531px;
  margin: 0 auto;
  padding: 50px 0 15px;
}
#lift #lift_index .skiarea-txt {
  max-width: 531px;
  margin: 0 auto;
  padding: 115px 0 40px;
}
#lift.detail-page .place_bar {
  display: block;
  color: #fff;
  margin: 0 auto;
  padding: 2% 6% 2% 2%;
  box-sizing: border-box;
  font-size: 120%;
  font-weight: bold;
  background-size: 5%;
  position: relative;
  background: #FFA34F;
  background-image: none;
}
#lift .place_bar a {
  color: #fff;
}

@media screen and (max-width: 767px) {
  #lift #lift_index .kaijo-txt {
    max-width: 266px;
    margin: 0 auto;
    padding: 25px 0 7.5px;
  }
  #lift #lift_index .skiarea-txt {
    max-width: 266px;
    padding: 57.5px 0 20px;
  }
}
/* エリアから探す
-----------------------------------------------*/
/*.lift .event_list {
	background-color: #FFF;
	padding: 0;
}

.lift .event_list li a .place {
	padding: 2% 2% 0;
}

.lift .event_list li a .date {
	padding: 0 2% 2%;
}

.lift .event_list [class^=end] a::before {
	padding: 10px 0;
}*/
.place_bar a .small {
  font-size: 65%;
}

.area_list {
  margin: 0px;
  padding: 0px;
}
.area_list ul {
  margin: 0 auto;
  padding: 0px;
}
.area_list ul li {
  margin: 0 auto;
  padding: 0px;
}

.tokuwari_color {
  float: left;
  padding-right: 8px;
}

.area_list p {
  font-size: 14px;
  padding-top: 3px;
}
.area_list ul li a {
  clear: both;
  display: block;
  overflow: hidden;
  padding: 10px 5px;
  border-bottom: 1px solid #666666;
}
.area_list ul .lift_icon {
  float: right;
  padding: 5px 10px;
}
.area_list ul li:last-child {
  clear: both;
  display: block;
  color: #ffffff;
  overflow: hidden;
  padding: 10px 10px;
  border-bottom: 1px solid #ffffff;
  background: #333333;
}

.liftMenuInAc li.close {
  clear: both;
  display: block;
  color: #ffffff;
  overflow: hidden;
  padding: 10px 10px;
  font-size: 14px;
  border-bottom: 1px solid #ffffff;
  background: #333333;
}
.liftMenuInAc li.close .lift_icon {
  float: right;
  padding: 5px 10px;
}

/*@media screen and (max-width: 767px) {
	.lift .event_list [class^=end] a::before {
		padding: 4.3% 0;
	}
}*/
/* 詳細
-----------------------------------------------*/
h3.lift_title img {
  width: 6%;
  margin: 0 10px;
  vertical-align: middle;
}

.open-close {
  border-bottom: 1px solid #FF9D04;
}
.open-close h4 {
  padding: 3% 1%;
  color: #ff7200;
  font-weight: bold;
  background: url(/s/img/icon/icon_lift_red-open-arr.png) no-repeat 99% 50% #ffdec9;
  background-size: 3.2%;
}
.open-close h4.open {
  background: url(/s/img/icon/icon_lift_red-close-arr.png) no-repeat 99% 50% #ffdec9;
  background-size: 5%;
}
.open-close div {
  padding: 3% 2%;
}
.open-close div dt:before {
  content: "Q. ";
  color: #00f;
}
.open-close div dd {
  padding-left: 6%;
  margin-bottom: 2%;
}
.open-close div dd:before {
  content: "A. ";
  color: #f00;
}
.open-close div p.tright {
  text-align: right;
}

#lift.detail-page .begin-area {
  margin: 0 auto;
  padding: 2% 0;
  width: 95%;
}
#lift.detail-page h3 {
  margin: 0;
  padding: 5px 5px 5px 12px;
  width: 100%;
  color: #333;
  text-align: left;
  line-height: 1;
  border-left: solid 8px #FF6723;
  background: none;
}
#lift.detail-page h3:before, #lift.detail-page h3:after {
  content: none;
}
#lift.detail-page .txt.red {
  font-size: 13px;
}
#lift.detail-page .begin-area h4 {
  margin: 10px 0;
  padding: 0 0 0 2%;
  color: #FC4E07;
  font-weight: bold;
}
#lift .faq + p {
  padding: 2%;
  font-size: 0.8em;
}
#lift .faq + p a {
  text-decoration: underline;
}
#lift .attention + ul {
  margin-top: 2%;
  padding-left: 25px;
  list-style: disc;
}
#lift .attention + ul li {
  font-size: 0.8em;
}

.area_list {
  margin: 0 auto;
  padding: 0px;
}
.area_list ul.delial li {
  margin: 0px;
  border-bottom: solid 1px #ff7800;
}
.area_list ul.delial li:last-child a {
  margin: 0px;
  padding: 10 0px;
}
.area_list ul.delial li.title.place_all h4 {
  color: #FF1414;
}
.area_list ul.delial li.shousai {
  background: #fbffb0;
}
.area_list ul.delial li.shousai h4 {
  color: #ff7800;
  font-weight: bold;
  padding: 5px;
}
.area_list ul.delial li.shousai h5 {
  font-weight: bold;
  padding: 5px;
}
.area_list ul.delial li.shousai p.shousai_text {
  padding: 5px;
  line-height: 150%;
}
.area_list ul.delial p.shousai_text {
  padding: 10px 5px;
  line-height: 150%;
}
.area_list ul.delial li.title h4 {
  color: #FC4E07;
  font-weight: bold;
  padding: 10px 5px;
}
.area_list ul.delial li.shousai_text .price {
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 5px;
}
.area_list ul.delial li.shousai_text .price.soldout:after {
  content: url(../../img/lift/end.png);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -26px;
  margin-left: -61px;
}
.area_list ul.delial li.shousai_text .price span {
  color: #FC4E07;
  font-weight: bold;
  font-size: 18px;
}
.area_list ul.delial li.bunner a {
  clear: both;
  display: block;
  overflow: hidden;
  border-bottom: none;
}
.area_list ul.delial li.bunner p {
  text-align: center;
  padding: 5px 0;
}
.area_list ul.delial li.bunner img {
  width: 100%;
}
.area_list ul.delial li.shousai_text a {
  display: inline;
  border-bottom: none;
}

.web_enable div {
  margin: 0 auto;
  width: 95%;
}
.web_enable .enable_icon img {
  text-align: center;
}
.web_enable .sale_while {
  text-align: center;
  clear: both;
}
.web_enable .sale_while span {
  color: #FC4E07;
  text-shadow: 1px 0 0 #FC4E07;
  -webkit-text-shadow: 1px 0 0 #FC4E07;
}
.web_enable .link_btn {
  margin: 0 auto;
  width: 43%;
}
.web_enable .link_btn a {
  border: none;
}

/**/
#lift_faq img {
  max-width: 100%;
  height: auto;
}
#lift_faq h2 img {
  width: 100%;
}
#lift_faq .inner {
  margin: 0 auto;
  padding: 0 2%;
}
#lift_faq h3 {
  margin-top: 8%;
  background: none;
  padding: 0;
}
#lift_faq h3:first-of-type {
  margin-top: 5%;
}
#lift_faq h3 + div {
  margin-top: 2%;
}

#lift_faq_cts ul:nth-of-type(1), #lift_faq_cts ul:nth-of-type(2) {
  margin-top: 2%;
}
#lift_faq_cts ul:nth-of-type(1) li, #lift_faq_cts ul:nth-of-type(2) li {
  margin-bottom: 2%;
  text-align: center;
}
#lift_faq_cts .tC {
  text-align: center;
}

/* おすすめ・こだわり特集 */
.osusume_f {
  padding-bottom: 5%;
}
.osusume_f li {
  overflow: hidden;
  margin-bottom: 5%;
}
.osusume_f li:first-child {
  margin-top: 4%;
}
.osusume_f li:last-child {
  margin-bottom: 0;
}
.osusume_f li a {
  display: block;
  text-decoration: none;
}
.osusume_f li a div:nth-of-type(1) {
  float: left;
  width: 30%;
}
.osusume_f li a div:nth-of-type(2) {
  margin-left: 32%;
}
.osusume_f li a div h4 {
  font-size: 100%;
  color: #000077;
}
.osusume_f li a div p .pc {
  display: none;
}
.osusume_f li a div p span {
  font-size: 80%;
  color: #000;
  display: block;
  margin-top: 8px;
}
.osusume_f li a div h4 img {
  width: 32px;
  margin-top: 2%;
}

/**/
/* ナビゲーション */
#lift_cts #lift_index .event-place {
  padding: 50px 35px;
}
#lift_cts #lift_index #lift_navi {
  display: flex;
  gap: 0 40px;
}
#lift_cts #lift_index #lift_navi li {
  width: calc((100% - 40px) / 2);
  text-align: center;
}
#lift_cts #lift_index #lift_navi .lift-anc01, #lift_cts #lift_index #lift_navi .lift-anc02 {
  position: relative;
  display: block;
  padding: 22px 0 42px;
  border-bottom: 10px solid #D9D9D9;
  color: #FFF;
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
}
#lift_cts #lift_index #lift_navi .lift-anc01::after, #lift_cts #lift_index #lift_navi .lift-anc02::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  width: 16px;
  height: 16px;
  border-top: 4px solid #FFF;
  border-right: 4px solid #FFF;
}
#lift_cts #lift_index #lift_navi .lift-anc01 {
  background-color: #2597D5;
}
#lift_cts #lift_index #lift_navi .lift-anc02 {
  background-color: #FE7897;
}
#lift_cts #lift_index #lift_navi .lift-anc01:hover, #lift_cts #lift_index #lift_navi .lift-anc02:hover {
  opacity: 0.7;
}
#lift_cts #lift_index #lift_navi .lift-anc01 .large, #lift_cts #lift_index #lift_navi .lift-anc02 .large {
  padding-right: 0.3em;
  font-size: 39px;
}
#lift_cts #lift_index .ec-site {
  padding: 75px 35px;
  background-color: #F2F2F2;
}

@media screen and (max-width: 767px) {
  #lift_cts #lift_index .event-place {
    padding: 25px 17.5px;
  }
  #lift_cts #lift_index #lift_navi {
    gap: 0 20px;
  }
  #lift_cts #lift_index #lift_navi li {
    width: calc((100% - 20px) / 2);
  }
  #lift_cts #lift_index #lift_navi .lift-anc01, #lift_cts #lift_index #lift_navi .lift-anc02 {
    padding: 11px 0 21px;
    border-bottom: 5px solid #D9D9D9;
    font-size: 15px;
  }
  #lift_cts #lift_index #lift_navi .lift-anc01::after, #lift_cts #lift_index #lift_navi .lift-anc02::after {
    bottom: 9px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
  }
  #lift_cts #lift_index #lift_navi .lift-anc01 .large, #lift_cts #lift_index #lift_navi .lift-anc02 .large {
    padding-right: 0.15em;
    font-size: 19.5px;
  }
}
/* ECバナー */
@media screen and (max-width: 767px) {
  #lift_cts #lift_index .ec-site {
    padding: 37.5px 17.5px;
  }
}
/* リフト開閉 */
#lift .event_list > li::after {
  top: 102px;
  margin-top: 0;
  transform: rotate(135deg);
}
#lift .event_list > li.open::after {
  transform: rotate(-45deg);
}
#lift .event_list .place-sale-area, #lift .event_list .sale-list-wrap {
  display: none;
}
#lift .event_list .place-sale-area > li > p {
  position: relative;
  padding: 19px 85px 19px 50px;
  background-color: #FFF;
  color: #333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.1;
  cursor: pointer;
}
#lift .event_list .place-sale-area:nth-of-type(odd) > li > p {
  background-color: #BDD9E8;
}
#lift .event_list .place-sale-area > li > p > span {
  font-size: 24px;
}
#lift .event_list .place-sale-area > li > p::after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  color: #000;
  font-size: 30px;
  font-weight: normal;
}
#lift .event_list .place-sale-area > li > p.open::after {
  content: "－";
}
#lift .sale-list-wrap {
  padding: 45px 35px;
  background-color: #77B1D0;
}
#lift .sale-list-outer {
  padding: 25px 35px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
#lift .sale-list-outer .sale-list li {
  border-bottom: 1px solid #CCC;
}
#lift .sale-list > li .noski-txt {
  padding: 6px 0;
  font-size: 30px;
  font-weight: 500;
}
#lift .sale-list > li a {
  background-color: #fff;
  position: relative;
  font-size: 30px;
  font-weight: 500;
  padding: 6px 20px 6px 55px;
}
#lift .sale-list > li a:hover {
  background-color: #fff;
}
#lift .sale-list > li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 12px;
  height: 12px;
  border-top: 4px solid #3D49BD;
  border-right: 4px solid #3D49BD;
  transform: translateY(-50%) rotate(45deg);
}
#lift .sale-list-outer .list-close {
  max-width: 298px;
  margin: 25px auto 0;
  padding: 17.5px;
  border-radius: 100px;
  background-color: #555;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
#lift .sale-list-outer .list-close span {
  position: relative;
  padding-right: 40px;
}
#lift .sale-list-outer .list-close span::after {
  content: "×";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 25px;
  line-height: 1;
}
#lift .sale-list-outer .list-close:hover {
  opacity: 0.7;
}
#lift .event_list.search2 .place-sale-area {
  display: block;
}

@media screen and (max-width: 767px) {
  #lift .event_list > li::after {
    top: 51px;
  }
  #lift .event_list .place-sale-area > li > p {
    padding: 9.5px 42.5px 9.5px 25px;
    font-size: 17.5px;
  }
  #lift .event_list .place-sale-area > li > p > span {
    font-size: 12px;
  }
  #lift .event_list .place-sale-area > li > p::after {
    right: 25px;
    font-size: 15px;
  }
  #lift .sale-list-wrap {
    padding: 22.5px 17.5px;
  }
  #lift .sale-list-outer {
    padding: 12.5px 17.5px;
    border-radius: 10px;
  }
  #lift .sale-list > li .noski-txt {
    padding: 3px 0;
    font-size: 15px;
  }
  #lift .sale-list > li a {
    padding: 3px 10px 3px 27.5px;
    font-size: 15px;
  }
  #lift .sale-list > li a::before {
    left: 10px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #3D49BD;
    border-right: 2px solid #3D49BD;
  }
  #lift .sale-list-outer .list-close {
    max-width: 149px;
    margin: 12.5px auto 0;
    padding: 9px;
    font-size: 12.5px;
  }
  #lift .sale-list-outer .list-close span {
    padding-right: 20px;
  }
  #lift .sale-list-outer .list-close span::after {
    font-size: 12.5px;
  }
}
/* リフト詳細 */
#lift_details_cts .lift_service_t {
  background: #FF9300;
}

.lift_details_bg {
  margin-bottom: 80px;
  padding: 45px 35px;
  background-color: #77B1D0;
}
.lift_details_bg > div:not(:last-child) {
  margin-bottom: 40px;
}

.lift_details_item {
  padding: 40px 35px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

#lift_details_cts .click-wrap {
  position: relative;
  padding-bottom: 100px;
  cursor: pointer;
}
#lift_details_cts .click-wrap::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 24px;
  height: 24px;
  border-bottom: 4px solid #1A2081;
  border-right: 4px solid #1A2081;
  transform: translateX(-50%) rotate(45deg);
}
#lift_details_cts .click-wrap.open::after {
  transform: translateX(-50%) rotate(-135deg);
}
#lift_details_cts h4 {
  margin-bottom: 32px;
  font-size: 33px;
  font-weight: 500;
  line-height: 1.4;
}
#lift_details_cts h5 {
  color: #3D4ABD;
  font-size: 29px;
  font-weight: 500;
  margin: 0;
}
#lift_details_cts h5::before {
  content: "● ";
}
#lift_details_cts h5.normal::before {
  content: none;
}
#lift_details_cts .price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0 0.25em;
}
#lift_details_cts .price-wrap .col {
  color: #555;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
#lift_details_cts .price-wrap .row {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0 0.25em;
}
#lift_details_cts .price-wrap .price-yen {
  color: #E73A47;
  font-size: 40px;
  font-weight: 700;
}
#lift_details_cts p.price {
  font-weight: bold;
  margin-top: -8px;
}
#lift_details_cts .price .price1 {
  font-size: 1.3em;
  vertical-align: baseline;
}
#lift_details_cts .price .price2 {
  position: relative;
  color: #E70000;
  font-size: 20px;
  vertical-align: baseline;
}
#lift_details_cts .price .price2.end::before, #lift_details_cts .price .price2.soldout::before {
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: -64.5px;
  content: "";
  display: block;
  width: 129px;
  height: 48px;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#lift_details_cts .price .price2.end::before {
  background-image: url(/s/img/lift/lift_end.png);
}
#lift_details_cts .price .price2.soldout::before {
  background-image: url(/s/img/lift/lift_soldout.png);
}
#lift_details_cts .place_list .year {
  padding: 50px 30px;
  background-color: #D3EBF5;
  color: #555;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.7;
}
#lift_details_cts .place_list .year:first-child {
  position: relative;
  margin-top: 16px;
}
#lift_details_cts .place_list .year:first-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  width: calc(100% - 60px);
  height: 1px;
  background-color: #000;
}
#lift_details_cts .place_list .year span.year-text {
  font-weight: 700;
}
#lift_details_cts .place_list .year span:not(.year-text)::after {
  content: " / ";
}
#lift_details_cts .place_list .year span:last-child::after {
  content: none;
}
#lift_details_cts .box {
  margin-top: 50px;
  padding-top: 50px;
  border-top: solid 1px #000;
}
#lift_details_cts .info_faq.box {
  border-top: none;
}
#lift_details_cts .ec-site .ec-btn {
  max-width: 570px;
  margin: 30px auto 0;
  text-align: center;
}
#lift_details_cts .ec-site .ec-btn a {
  position: relative;
  display: block;
  padding: 21px 75px;
  border-radius: 100px;
  background-color: #84D2FF;
  color: #555;
  font-weight: 700;
  text-decoration: none;
}
#lift_details_cts .ec-site .ec-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/previous/common/com_ic02.svg) no-repeat center center;
}
#lift_details_cts .ec-site .ec-btn a:hover {
  opacity: 0.7;
}
#lift_details_cts .info_place h5 + p, #lift_details_cts .info_attention h5 + p, #lift_details_cts .info_onepoint h5 + p {
  margin-top: 16px;
}
#lift_details_cts .info_gentei {
  width: 650px;
  padding-top: 20px;
}
#lift_details_cts .info_gentei .icon {
  padding: 4px 0 4px 108px;
  background: url(../img/lift/ico_place.png) no-repeat left center;
  font-size: 108%;
  /*14px*/
  font-weight: bold;
}
#lift_details_cts .accordion h5 {
  position: relative;
  padding: 40px 80px 40px 50px;
  background-color: #E9A0A0;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}
#lift_details_cts .accordion h5:after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}
#lift_details_cts .accordion h5.open:after {
  content: "－";
}
#lift_details_cts .accordion .accordion_cts {
  padding-top: 24px;
}
#lift_details_cts .lift_details_item .detail-wrap {
  display: none;
}
#lift_details_cts .accordion .accordion_cts {
  display: none;
}
#lift_details_cts .accordion .accordion_cts dl dt, #lift_details_cts .accordion .accordion_cts dl dd {
  margin-bottom: 16px;
}
#lift_details_cts .accordion .accordion_cts dl dt:before {
  content: "Q. ";
  color: #00f;
}
#lift_details_cts .accordion .accordion_cts dl dd {
  padding-bottom: 16px;
  border-bottom: 1px solid #000;
}
#lift_details_cts .accordion .accordion_cts dl dd:before {
  content: "A. ";
  color: #f00;
}
#lift_details_cts .accordion .accordion_cts dl + p {
  text-align: right;
}
#lift_details_cts .accordion .accordion_cts dl + p a {
  color: #f00;
  text-decoration: none;
}
#lift_details_cts .accordion .accordion_cts dl + p a:hover {
  text-decoration: underline;
}
#lift_details_cts .accordion .accordion_cts p {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .lift_details_bg {
    margin-bottom: 20px;
    padding: 22.5px 17.5px;
  }
  .lift_details_bg > div:not(:last-child) {
    margin-bottom: 20px;
  }
  .lift_details_item {
    padding: 20px 17.5px;
    border-radius: 10px;
  }
  #lift_details_cts .click-wrap {
    padding-bottom: 50px;
  }
  #lift_details_cts .click-wrap::after {
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #1A2081;
    border-right: 2px solid #1A2081;
  }
  #lift_details_cts h4 {
    margin-bottom: 16px;
    font-size: 17px;
  }
  #lift_details_cts h5 {
    font-size: 15px;
  }
  #lift_details_cts .price-wrap .col {
    font-size: 12px;
  }
  #lift_details_cts .price-wrap .price-yen {
    font-size: 20px;
  }
}
/* 販売価格 */
/* 販売会場一覧 */
@media screen and (max-width: 767px) {
  #lift_details_cts .place_list .year {
    padding: 25px 15px;
    font-size: 14px;
  }
  #lift_details_cts .place_list .year:first-child {
    margin-top: 8x;
  }
  #lift_details_cts .place_list .year:first-child::after {
    left: 15px;
    width: calc(100% - 30px);
  }
}
/* 詳細BOX共通 */
@media screen and (max-width: 767px) {
  #lift_details_cts .box {
    margin-top: 25px;
    padding-top: 25px;
  }
}
/* リフト券販売期間 */
@media screen and (max-width: 767px) {
  #lift_details_cts .ec-site .ec-btn {
    max-width: 285px;
    margin: 15px auto 0;
  }
  #lift_details_cts .ec-site .ec-btn a {
    padding: 10.5px 37.5px;
    border-radius: 50px;
  }
  #lift_details_cts .ec-site .ec-btn a::after {
    right: 22.5px;
    width: 15px;
    height: 15px;
    background-size: 100% auto;
  }
}
/* ご利用いただけるスキー場
   購入に関してのご注意
   リフト券使用上のご注意 */
@media screen and (max-width: 767px) {
  #lift_details_cts .info_place h5 + p, #lift_details_cts .info_attention h5 + p, #lift_details_cts .info_onepoint h5 + p {
    margin-top: 8px;
  }
}
/* 会場限定アイコン */
/* ワインポイント、FAQアコーディオン */
@media screen and (max-width: 767px) {
  #lift_details_cts .accordion h5 {
    padding: 20px 40px 20px 25px;
  }
  #lift_details_cts .accordion h5:after {
    right: 25px;
  }
  #lift_details_cts .accordion .accordion_cts {
    padding-top: 12px;
  }
  #lift_details_cts .accordion .accordion_cts dl dt {
    margin-bottom: 8px;
  }
  #lift_details_cts .accordion .accordion_cts dl dd {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  #lift_details_cts .accordion .accordion_cts p {
    margin-bottom: 8px;
  }
}
/* 格安リフト券 購入に関してのご注意 */
.lift .details_heading {
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: solid 2px #E73A47;
  color: #E73A47;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.3;
}
.lift .details_notes .btn {
  padding-top: 60px;
}
.lift .details_notes .btn .faq-btn a {
  display: block;
  width: 100%;
  padding: 27px;
  border-radius: 100px;
  background-color: #3D49BD;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}
.lift .details_notes .btn .faq-btn a span {
  position: relative;
  padding-left: 35px;
}
.lift .details_notes .btn .faq-btn a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 21px;
  height: 28px;
  background: url(../img/lift/lift_ic01.svg) no-repeat center center;
}
.lift .details_notes .btn .faq-btn a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .lift .details_heading {
    margin-bottom: 16px;
    padding-bottom: 6px;
    border-bottom: solid 1px #E73A47;
    font-size: 16.5px;
  }
  .lift .details_notes .btn {
    padding-top: 30px;
  }
  .lift .details_notes .btn .faq-btn a {
    padding: 13.5px;
  }
  .lift .details_notes .btn .faq-btn a span {
    padding-left: 17.5px;
  }
  .lift .details_notes .btn .faq-btn a span::before {
    width: 11px;
    height: 14px;
    background-size: 100% auto;
  }
}
/*=== 20251010 追記 ===*/
.lift .lift_event-img {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .lift .lift_event-img {
    max-width: 350px;
    margin-top: 22px;
  }
}
.lift .lift_event-note {
  margin-top: 35px;
  margin-bottom: 54px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .lift .lift_event-note {
    max-width: 350px;
    margin-top: 12.5px;
    margin-bottom: 27px;
  }
}
.lift .lift_event-note span.title {
  color: var(--LRD);
  font-size: 30px;
  line-height: 1.5333333333;
  font-weight: 700;
  display: block;
  border-bottom: 3px solid var(--LRD);
}
@media screen and (max-width: 767px) {
  .lift .lift_event-note span.title {
    font-size: 15px;
    border-bottom: 1.5px solid var(--LRD);
  }
}
.lift .lift_event-note span.title::before {
  content: "●";
  color: var(--LRD);
  font-size: 30px;
  line-height: 1.5333333333;
  font-weight: 700;
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  .lift .lift_event-note span.title::before {
    font-size: 15px;
  }
}
.lift .lift_event-note ul {
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .lift .lift_event-note ul {
    margin-top: 8.5px;
  }
}
.lift .lift_event-note ul li {
  color: var(--LBK);
  font-size: 28px;
  line-height: 1.6428571429;
  font-weight: 500;
  list-style-type: disc;
  margin-left: 1.1em;
}
@media screen and (max-width: 767px) {
  .lift .lift_event-note ul li {
    font-size: 14px;
  }
}
.lift .lift_event-note ul li span.text-red {
  color: var(--RD);
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .lift .lift_event-note ul li span.text-red {
    font-size: 16px;
  }
}
.lift #lift_kaijo ul.event-anc li:first-child {
  display: none;
}
.lift #lift_kaijo #hokkaido {
  display: none;
}

/* ==================================================
*  top
================================================== */
.tuneup-top {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .tuneup-top {
    margin-top: 20px;
  }
}
.tuneup-top .tuneup-top__inner {
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .tuneup-top .tuneup-top__inner {
    max-width: initial;
    padding: 0;
  }
}
.tuneup-top .tuneup-top__img01,
.tuneup-top .tuneup-top__img02 {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .tuneup-top .tuneup-top__img01,
.tuneup-top .tuneup-top__img02 {
    max-width: 350px;
  }
}
.tuneup-top .tuneup-top__img02 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .tuneup-top .tuneup-top__img02 {
    margin-top: 15px;
  }
}
.tuneup-top .tuneup-top__movie iframe {
  aspect-ratio: 680/340;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tuneup-top .tuneup-top__title {
  background-color: var(--BL);
  color: #fff;
  padding: 21px 0;
}
@media screen and (max-width: 767px) {
  .tuneup-top .tuneup-top__title {
    padding: 10px 0;
  }
}
.tuneup-top .tuneup-top__title span {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .tuneup-top .tuneup-top__title span {
    max-width: 340px;
    font-size: 19px;
  }
}
.tuneup-top .tuneup-top__link {
  background-color: #F9F9F9;
  padding-bottom: 70px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .tuneup-top .tuneup-top__link {
    padding-bottom: 35px;
    margin-top: 20px;
  }
}
.tuneup-top .tuneup-top__link ul {
  margin-top: 40px;
  display: grid;
  gap: 30px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .tuneup-top .tuneup-top__link ul {
    margin-top: 20px;
    gap: 15px;
    max-width: 350px;
  }
}

/* ==================================================
*  新品ボードメンテナンス（会場内購入品）/ 使用済みボードメンテナンス（持込品）
================================================== */
.maintenance {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .maintenance {
    margin-top: 18.5px;
  }
}
.maintenance .maintenance__inner {
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__inner {
    max-width: initial;
    padding: 0;
  }
}
.maintenance .maintenance__top {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__top {
    max-width: 350px;
  }
}
.maintenance .maintenance__top .maintenance__top-text {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__top .maintenance__top-text {
    margin-top: 7px;
  }
}
.maintenance .maintenance__top .maintenance__top-text p {
  font-size: 28px;
  line-height: 1.4285714286;
  letter-spacing: -0.01em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__top .maintenance__top-text p {
    font-size: 14px;
  }
}
.maintenance .maintenance__main {
  margin-top: 43px;
  background-color: #E6ECF0;
  padding-bottom: 113px;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__main {
    margin-top: 21.5px;
    padding-bottom: 56.5px;
  }
}
.maintenance .maintenance__main .maintenance__main-title {
  background-color: var(--BL);
  color: #fff;
  padding: 21px 0;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__main .maintenance__main-title {
    padding: 10px 0;
  }
}
.maintenance .maintenance__main .maintenance__main-title span {
  max-width: 705px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__main .maintenance__main-title span {
    max-width: 352px;
    font-size: 19px;
  }
}
.maintenance .maintenance__main ul {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  display: grid;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__main ul {
    max-width: 350px;
    margin-top: 20px;
    gap: 50px;
  }
}
.maintenance .maintenance__text {
  margin-top: 65px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__text {
    margin-top: 32.5px;
    max-width: 350px;
  }
}
.maintenance .maintenance__text p {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__text p {
    font-size: 14px;
  }
}
.maintenance .maintenance__text span.maintenance__text-note {
  text-decoration: underline;
  font-weight: 700;
}
.maintenance .maintenance__banner {
  margin-top: 70px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__banner {
    margin-top: 35px;
    max-width: 350px;
  }
}
.maintenance .maintenance__banner ul {
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__banner ul {
    gap: 10px;
  }
}

/* ==================================================
*  メンテナンス特価キャンペーン
================================================== */
.maintenance-campaign .maintenance-campaign__inner {
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__inner {
    max-width: initial;
    padding: 0;
  }
}
.maintenance-campaign .maintenance-campaign__top {
  margin-top: 37px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__top {
    margin-top: 13.5px;
    max-width: 350px;
  }
}
.maintenance-campaign .maintenance-campaign__top .maintenance-campaign__top-img02 {
  margin-top: 23px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__top .maintenance-campaign__top-img02 {
    margin-top: 11.5px;
  }
}
.maintenance-campaign .maintenance-campaign__top .maintenance-campaign__top-text {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__top .maintenance-campaign__top-text {
    margin-top: 18.5px;
  }
}
.maintenance-campaign .maintenance-campaign__top .maintenance-campaign__top-text p {
  font-size: 27px;
  line-height: 1.8148148148;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__top .maintenance-campaign__top-text p {
    font-size: 13.5px;
  }
}
.maintenance-campaign .maintenance-campaign__top .maintenance-campaign__top-text p span {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__top .maintenance-campaign__top-text p span {
    font-size: 15px;
  }
}
.maintenance-campaign .maintenance-campaign__point {
  margin-top: 108px;
  background-color: #EAE3DC;
  padding: 71px 25px 104px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point {
    margin-top: 54px;
    padding: 35px 12.5px 52px;
  }
}
.maintenance-campaign .maintenance-campaign__point .maintenance-campaign__point-head {
  max-width: 645px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  top: -34px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .maintenance-campaign__point-head {
    max-width: 322.5px;
    top: -17px;
  }
}
.maintenance-campaign .maintenance-campaign__point .maintenance-campaign__point-item:nth-child(n+2) {
  margin-top: 118px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .maintenance-campaign__point-item:nth-child(n+2) {
    margin-top: 59px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__wrap {
    gap: 14px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__wrap .point-item__icon {
  max-width: 124px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__wrap .point-item__icon {
    max-width: 62px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__wrap .point-item__title {
  font-size: 44px;
  line-height: 1.1590909091;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__wrap .point-item__title {
    font-size: 20px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__wrap .point-item__title span {
  font-size: 38px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__wrap .point-item__title span {
    font-size: 17px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__text {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__text {
    margin-top: 9px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__text p {
  font-size: 27px;
  line-height: 1.4074074074;
  font-weight: 700;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__text p {
    font-size: 13.5px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__movie {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__movie {
    margin-top: 19px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__movie iframe {
  aspect-ratio: 680/340;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.maintenance-campaign .maintenance-campaign__point .point-item__img {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__img {
    margin-top: 19px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__bottom {
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__bottom {
    margin-top: 13.5px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__bottom p {
  font-size: 26px;
  line-height: 1.4615384615;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__bottom p {
    font-size: 13px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__btn {
  margin-top: 50px;
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__btn {
    margin-top: 25px;
    max-width: 300px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 90px;
  background-color: #FF7434;
  color: #fff;
  border-radius: 55px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__btn a {
    padding: 10px 45px;
    border-radius: 27.5px;
  }
}
.maintenance-campaign .maintenance-campaign__point .point-item__btn a span,
.maintenance-campaign .maintenance-campaign__point .point-item__btn a i {
  font-size: 27px;
  line-height: 1.2592592593;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .point-item__btn a span,
.maintenance-campaign .maintenance-campaign__point .point-item__btn a i {
    font-size: 13.5px;
  }
}
.maintenance-campaign .maintenance-campaign__point .maintenance-campaign__point-item:nth-child(4) .point-item__btn a {
  padding: 20px 60px;
}
@media screen and (max-width: 767px) {
  .maintenance-campaign .maintenance-campaign__point .maintenance-campaign__point-item:nth-child(4) .point-item__btn a {
    padding: 10px 30px;
  }
}

/* Web申込
-----------------------------------------------*/
@media screen and (max-width: 767px) {
  #tuneup #sn_ski_setup_cts .btn {
    max-width: 340px;
    padding-bottom: 25px;
  }
  #tuneup #sn_ski_setup_cts .setup-list .btn {
    padding-top: 25px;
  }
}
/* メンテナンスパック特価キャンペーン
-----------------------------------------------*/
@media screen and (max-width: 767px) {
  #tuneup #tuneup_lp {
    padding-top: 25px;
  }
  #tuneup #tuneup_lp h3 {
    margin-bottom: 15px;
    padding: 8px 15px;
    font-size: 15px;
  }
  #tuneup #tuneup_lp h3 + figure {
    margin-bottom: 15px;
  }
  #tuneup #tuneup_lp h4 {
    margin-bottom: 8px;
    font-size: 15px;
  }
  #tuneup #tuneup_lp p {
    font-size: 14px;
  }
  #tuneup #tuneup_lp .point-list {
    padding-top: 15px;
  }
  #tuneup #tuneup_lp .point-list h4 {
    margin-bottom: 20px;
  }
  #tuneup #tuneup_lp .point-list li:not(:first-of-type) {
    margin-top: 23px;
  }
}
/*================================*/
/* スノーボード取付＆メンテナンス */
/*================================*/
#maintenance #h2_title {
  position: relative;
  padding: 2% 2% 2% 15%;
  background: url(/img/icon/nav_tuneup.png) no-repeat 50% 50% #3e8e6b;
  background-position: 8px 50%;
}
#maintenance iframe {
  display: block;
  margin: 0 auto;
}
#maintenance .area {
  padding: 2% 2% 4%;
}

/* #maintenance h3 {
	position: relative;
	margin: 5px 0 10px;
	padding: 15px;
	background: #3e8e6b;
	color: #fff;
	font-weight: bold;
	line-height: 1.3;
} */
/* #maintenance h3:before,
#maintenance h3:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
}

#maintenance h3:before {
	top: 2px;
}

#maintenance h3:after {
	bottom: 2px;
} */
/* #maintenance h4 {
	position: relative;
	margin: 00px 0 20px;
	padding-bottom: 6px;
	border-bottom: solid 3px #e8e8e8;
	font-weight: bold;
	line-height: 1.1;
}

#maintenance h4:before {
	content: "";
	display: block;
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 40%;
	height: 3px;
	background: #3e8e6b;
} */
/*================*/
/* チューンナップ */
/*================*/
/* 申込フォーム
-----------------------------------------------*/
.tun_form {
  padding: 10px;
}
.tun_form p {
  margin: 5px 0;
}
.tun_form input {
  padding: 5px;
  font-size: 14px;
}
.tun_form textarea {
  width: 290px;
}

/**/
/*#tuneup_index,*/
#sn_ski_setup_cts, #hokan, #quick, #pri_free {
  width: 100%;
  margin: 0 auto;
}

/*#tuneup_cts img,*/
#pricefree_cts img {
  width: 100%;
  height: auto;
}

/*#tuneup_cts,*/
#pricefree {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  line-height: 1.6;
}

/*#tuneup_cts:after,*/
#pricefree_cts:after {
  content: "";
  clear: both;
  display: block;
}
#pricefree_cts h2 {
  margin: 0 0 15px;
  padding: 2% 2% 1%;
  color: #fff;
  font-size: 1.3em;
  background: #00c3e5;
}

/*#tuneup_cts h2 {
	margin: 0 0 15px;
	padding: 2% 2% 1%;
	color: #fff;
	font-size: 1.3em;
	background: #3E8E6B;
	font-weight: bold;
}*/
#tuneup_index h2 {
  padding: 16px 10px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background-color: #3e816b;
}
#tuneup_index > p:first-child, #tuneup_index .tC {
  margin-bottom: 15px;
}
#tuneup_index .heading04-1 {
  display: table;
}
#tuneup_index .heading04-1 span {
  display: table-cell;
  padding-left: 2%;
  vertical-align: middle;
  width: 85%;
  color: #555;
}
#tuneup_index .heading04-1 img {
  display: table-cell;
  height: auto;
}
#tuneup_index .heading04-2 {
  background: #42A542;
  padding: 1% 2%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
#tuneup_index .heading04-3 {
  padding: 1% 2%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
}
#tuneup_index .tuneupmenu_cts01 .heading04-3 {
  background: #EA8668;
}
#tuneup_index .tuneupmenu_cts02 .heading04-3 {
  background: #F1AF6F;
}
#tuneup_index .tuneupmenu_cts03 .heading04-3 {
  background: #00D0F5;
}
#tuneup_index .tuneupmenu_cts04 .heading04-3 {
  background: #5AEBBA;
}
#tuneup_index h5 {
  margin-top: 20px;
  color: #00866A;
  font-size: 100%;
  font-weight: bold;
}
#tuneup_index .heading04-4 {
  margin-bottom: 16px;
  padding: 4px 0;
  text-align: center;
  border-top: 2px solid #00866A;
  border-bottom: 2px solid #00866A;
  color: #00866A;
  font-size: 120%;
  font-weight: bold;
}

.tuneup .heading04-4 {
  margin-bottom: 16px;
  padding: 4px 0;
  text-align: center;
  border-top: 2px solid #00866A;
  border-bottom: 2px solid #00866A;
  color: #00866A;
  font-size: 120%;
  font-weight: bold;
}

#tuneup_index h5.brd {
  border-bottom: 2px solid #00866A;
}
#tuneup_index .tuneup_index01 .movie, #tuneup_index .tuneup_index02 .movie {
  width: 100%;
  background: #ccc;
}
#tuneup_index .tuneup_index01 .img, #tuneup_index .tuneup_index02 .img {
  width: 100%;
}
#tuneup_index .tuneup_index01 .img figcaption {
  margin-top: 8px;
  font-size: 93%;
  /*12px*/
  line-height: 1.3;
}
#tuneup_index .tuneup_index02 .img figcaption {
  margin-top: 8px;
  font-size: 93%;
  /*12px*/
  line-height: 1.3;
}
#tuneup_index .tuneup_index02 .banner {
  margin: 40px auto;
}
#tuneup_index .tuneup_index02 .notes {
  background-color: #8C75BA;
}
#tuneup_index .tuneup_index02 .notes img {
  display: block;
  width: 600px;
  margin: -20px auto 0;
  padding: 8px 16px 24px;
}
#tuneup_index .multicolumn {
  margin-top: 20px;
}
#tuneup_index .tuneup_index03 table {
  margin-top: 10px;
}
#tuneup_index .tuneup_index03 th {
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
}
#tuneup_index .tuneup_index03 .title_ver th {
  display: block;
}
#tuneup_index .tuneup_index03 .title_ver td {
  display: block;
  margin-bottom: 10px;
}
#tuneup_index .tuneup_index03 th span:nth-child(1), #tuneup_index .tuneup_index03 th span:nth-child(2) {
  display: inline-block;
}
#tuneup_index .tuneup_index03 .tuneupmenu_cts01 th {
  color: #de3300;
}
#tuneup_index .tuneup_index03 .tuneupmenu_cts02 th {
  color: #EA8668;
}
#tuneup_index .tuneup_index03 .tuneupmenu_cts03 th {
  color: #003399;
}
#tuneup_index .tuneup_index03 .tuneupmenu_cts04 th {
  color: #00A66E;
}
#tuneup_index .tuneup_index03 td span {
  font-size: 85%;
}
#tuneup_index .voice {
  margin: 10px 0 20px;
  padding: 10px;
}
#tuneup_index .voice .box01 {
  padding: 10px;
  border: solid 5px #e88468;
  border-radius: 20px;
  background: #fff;
}
#tuneup_index .voice .box02 {
  padding: 10px;
  border: solid 5px #efad6f;
  border-radius: 20px;
  background: #fff;
}
#tuneup_index .voice .box03 {
  padding: 10px;
  border: solid 5px #00cef3;
  border-radius: 20px;
  background: #fff;
}
#tuneup_index .voice .box04 {
  padding: 10px;
  border: solid 5px #5ae9b8;
  border-radius: 20px;
  background: #fff;
}
#tuneup_index .voice_box {
  padding: 10px;
  border: solid 20px #ccc;
  border-radius: 20px;
  background: #fff;
}
#tuneup_index h6 {
  font-size: 123.1%;
  /*16px*/
  font-weight: bold;
}
#tuneup_index .voice h6 {
  font-weight: bold;
}
#tuneup_index .tuneupmenu_cts01 h6 {
  color: #de3300;
}
#tuneup_index .tuneupmenu_cts02 h6 {
  color: #e47001;
}
#tuneup_index .tuneupmenu_cts03 h6 {
  color: #003399;
}
#tuneup_index .tuneupmenu_cts04 h6 {
  color: #00a66e;
}
#tuneup_index .voice_box li {
  padding: 10px 0;
  border-bottom: solid 1px #ccc;
}
#tuneup_index .voice_box li:last-child {
  border-bottom: none;
}
#tuneup_index .maxw {
  max-width: 360px;
}
#tuneup_index .mt0 {
  margin-top: 0;
}
#tuneup_index .imgR {
  float: right;
}
#tuneup_index table.quick_tbl, #tuneup_index table.hokan_tbl {
  width: 100%;
  margin: 0;
  text-align: left;
}
#tuneup_index table.quick_tbl *, #tuneup_index table.hokan_tbl * {
  display: block;
}
#tuneup_index table.quick_tbl th {
  padding: 5px 0;
  border-bottom: solid 1px #F66;
  text-align: left;
  color: #F66;
}
#tuneup_index table.hokan_tbl th {
  padding: 5px 0;
  border-bottom: solid 1px #09F;
  text-align: left;
  color: #09F;
}
#tuneup_index table.quick_tbl th {
  padding: 5px 0;
  border-bottom: solid 1px #f00;
  text-align: left;
  color: #f00;
}
#tuneup_index .green {
  color: #3e816b;
}
#tuneup_index .lr-btn {
  box-sizing: border-box;
  padding: 0 5%;
}
#tuneup_index .lr-m {
  padding: 0 5.45%;
}
#tuneup_index .under {
  text-decoration: underline;
}

/* #tuneup_index .tuneupmenu_cts01 {
	background: #f2b6a4;
}

#tuneup_index .tuneupmenu_cts02  {
	background: #f5c393;
	border: solid 5px #efad6f;
    border-radius: 5px;
}

#tuneup_index .tuneupmenu_cts03  {
	background: #99ecfb;
	border: solid 5px #00cef3;
    border-radius: 5px;
}

#tuneup_index .tuneupmenu_cts04  {
	background: #9cf3d6;
	border: solid 5px #5ae9b8;
    border-radius: 5px;
} */
#tuneup_cts div #tuneup_index .bg.bg01 h3 {
  border-bottom-color: #4732E0;
  color: #4732E0;
}
#tuneup_cts div #tuneup_index .bg.bg02 .lr-m {
  padding: 0 3%;
}
#tuneup_cts div #tuneup_index.stancer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto 0;
}
#tuneup_cts div #tuneup_index.stancer ul li {
  margin-bottom: 20px;
  width: 45%;
}
#tuneup_cts ul.point img, #tuneup_cts ul.point dl {
  display: inline-block;
  vertical-align: middle;
}
#tuneup_cts ul.point li {
  margin-bottom: 3%;
}
#tuneup_cts ul.point img {
  width: 15%;
}
#tuneup_cts ul.point dl {
  margin-left: 3%;
  width: 80%;
}
#tuneup_cts ul.point dl dt {
  font-weight: bold;
}
#tuneup_cts ul.point dl dd {
  font-size: 90%;
}
#tuneup_cts .box_kihonset .kihonset .naiyo_note {
  border-bottom: solid 2px;
  font-size: 20px;
  padding-bottom: 2px;
  margin-bottom: 12px;
}

/*================================*/
/* クイックチューンナップサービス */
/* 保管＆チューンナップサービス   */
/* 共通                           */
/*================================*/
/*#tuneup_cts .heading01 {
	padding: 16px 10px;
	color: #fff;
	font-size: 120.5%;
    background-color: #555;
}

#tuneup_cts > h2,
#tuneup_cts > div > h2 {
    padding: 16px 10px;
    color: #fff;
    font-size: 100%;
    background-color: #3e816b;
}

#tuneup_cts h2 .title-comment {
	font-size: 0.8em;
}*/
/*#tuneup_cts > h3,
#tuneup_cts div > h3 {
	padding-bottom: 2%;
	border-bottom: solid 2px #3E8E6B;
	font-weight: bold;
	line-height: 1.1;
	background: none;
	color: #00856A;
	margin: 5% 0 3%;
}*/
@media screen and (min-width: 768px) {
  #tuneup_cts ul.point img {
    width: 8%;
  }
}
/*========================*/
/* 初期チューンナップサービス */
/*========================*/
/* #sn_ski_setup_cts p.pink {
	border: solid 10px #d92a75;
	padding: 3%;
}

#sn_ski_setup_cts p.green {
	border: solid 10px #57972b;
	padding: 3%;
}

#sn_ski_setup_cts p.blue {
	border: solid 10px #4d86f8;
	padding: 3%;
	color: #333 !important;
}

#sn_ski_setup_cts p.yellow {
	border: solid 10px #ffba1f;
	padding: 3%;
} */
#sn_ski_setup_cts .point-box {
  border-radius: 16px;
  /* CSS3草案 */
  -webkit-border-radius: 16px;
  /* Safari,Google Chrome用 */
  -moz-border-radius: 16px;
  /* Firefox用 */
  padding: 0 2% 2%;
}
#sn_ski_setup_cts .tanpin-menu {
  padding: 0 1%;
  border: solid 10px #3e816b;
}
#sn_ski_setup_cts .tanpin-menu li {
  width: 29.3333333333%;
  margin: 3% 1%;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  font-size: 90%;
}
#sn_ski_setup_cts .tanpin-menu li img {
  width: 50%;
}
#sn_ski_setup_cts .tanpin-menu li .red {
  font-weight: bold;
}
#sn_ski_setup_cts .cts-wrap {
  position: relative;
}
#sn_ski_setup_cts .cts-wrap .cp-btn {
  position: absolute;
  bottom: 34%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 560px;
}
#sn_ski_setup_cts .cts-wrap .cp-btn p {
  padding: 8px 24px;
  text-align: center;
}

/* #sn_ski_setup_cts .pink {
	border: solid 3px #d92a75;
	border-top: solid 18px #d92a75;
	margin-bottom: 3%;
}

#sn_ski_setup_cts .green {
	border: solid 3px #57972b;
	border-top: solid 18px #57972b;
	margin-bottom: 3%;
}

#sn_ski_setup_cts .blue {
	border: solid 3px #4d86f8;
	border-top: solid 18px #4d86f8;
} */
@media screen and (max-width: 767px) {
  #sn_ski_setup_cts .cts-wrap .cp-btn p {
    padding: 0 48px;
  }
}
/*==============================*/
/* 保管＆チューンナップサービス */
/*==============================*/
/* 基礎知識ボタン */
#tuneup_cts ul#kiso_list {
  overflow: hidden;
}
#tuneup_cts ul#kiso_list li {
  float: left;
  width: 49%;
  margin-right: 2%;
}
#tuneup_cts ul#kiso_list li:nth-of-type(n+3) {
  margin-top: 2%;
}
#tuneup_cts ul#kiso_list li:nth-of-type(2n) {
  margin-right: 0;
}
#tuneup_cts ul#kiso_list li:nth-of-type(2n+1) {
  clear: both;
}
#tuneup_cts .box_kihonset {
  border: 2px solid #D50000;
  border-top: 0;
  background: #fff3f3;
  margin-bottom: 5px;
}
#tuneup_cts .box_kihonset .w90 {
  width: 94%;
  margin: 10px auto 0;
}
#tuneup_cts .box_kihonset .notice {
  margin: 0 auto 20px;
  padding: 0.6em 0.3em;
  width: 94%;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  background: #e95464;
}
#tuneup_cts .box_kihonset .box_kihonset_cts {
  margin: 0 0 4%;
  overflow: hidden;
}
#tuneup_cts .box_option .box_option_cts {
  margin: 0 0 4%;
  overflow: hidden;
}
#tuneup_cts .box_kihonset .box_kihonset_cts .kihonset, #tuneup_cts .box_option .box_option_cts .option {
  padding: 8px;
  background-color: #fff;
  overflow: hidden;
  width: 94%;
  margin: 0 auto;
}
#tuneup_cts .kihonset h4 {
  color: #D50000;
  font-weight: bold;
}
#tuneup_cts .box_option .box_option_cts .option table {
  width: 100%;
  font-size: 13px;
}
#tuneup_cts .box_option .box_option_cts .option table th, #tuneup_cts .box_option .box_option_cts .option table td {
  border-bottom: solid 1px #333;
}
#tuneup_cts .box_option .box_option_cts .option table tr:last-child th, #tuneup_cts .box_option .box_option_cts .option table tr:last-child td {
  border-bottom: none;
}
#tuneup_cts .box_kihonset .box_kihonset_cts .kihonset p.ico_arrow {
  margin-bottom: 10px;
  padding: 0 0 10px 12px;
  border-bottom: 1px dotted #666;
  background: url(../../img/tuneup/ico_arrow_red.png) no-repeat 0 3px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  #tuneup_cts ul#kiso_list li {
    text-align: center;
  }
  #tuneup_cts ul#kiso_list li img {
    width: 80%;
  }
}
/* 基本セット内容 */
.plus {
  text-align: center;
}
.plus img {
  max-width: 64px;
}

.kihonset ul li {
  font-size: 13px;
}
.kihonset ul:last-child {
  margin-right: 0;
}

/* オプション内容 */
#tuneup_cts .box_option {
  padding-top: 4px;
  border: 2px solid #FFB500;
  background: #FFFFD2;
  margin-bottom: 24px;
}
#tuneup_cts .box_option .box_option_cts .option table th, #tuneup_cts .box_option .box_option_cts .option table td {
  padding: 5px 0;
  vertical-align: top;
  width: 3em;
  text-align: right;
}
#tuneup_cts .box_option .box_option_cts .option table th {
  padding-right: 24px;
  font-weight: normal;
  text-align: left;
}
#tuneup_cts .box_option .box_option_cts + p {
  margin: 0 18px 4%;
}
#tuneup_cts .light-blue {
  color: #03CDF2;
}
#tuneup_cts .note {
  margin: 10px 0 0;
  padding: 4px;
  background: #FCBD3C;
  border-radius: 8px;
}
#tuneup_cts .note .note_box {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
}
#tuneup_cts .note h6 {
  color: #DA3300;
  font-weight: bold;
}
#tuneup_cts .note .red {
  color: #DA3300 !important;
}

/* 申込フォームボタンエリア */
#entry_form_cts {
  margin: 24px auto 0;
  overflow: hidden;
}
#entry_form_cts img {
  margin-bottom: 10px;
}
#entry_form_cts #entry_form_r p strong {
  font-size: 110%;
  /*17px相当*/
}

/* #entry_form_cts #entry_form_r > p > a {
	text-decoration: underline;
} */
@media screen and (min-width: 768px) {
  #tuneup_cts .box_kihonset {
    border: 5px solid #D50000;
  }
  #tuneup_cts .box_kihonset .notice {
    font-size: 18px;
  }
  #tuneup_cts .box_option {
    border: 5px solid #FFB500;
  }
}
/*================================*/
/* クイックチューンナップサービス */
/*================================*/
/* メインメニュー */
#tuneup_cts .box_mainmenu {
  margin: 20px 0 5px;
  border: 5px solid #b70000;
  border-top: none;
  background-color: #fff3f3;
}
#tuneup_cts .box_mainmenu .box_mainmenu_cts {
  width: 100%;
  margin: 0 0 4%;
  overflow: hidden;
  box-sizing: border-box;
}
#tuneup_cts .box_optionmenu {
  margin: 20px 0;
  border: 5px solid #edb52a;
  border-top: none;
  background: #ffffd4;
}
#tuneup_cts .box_optionmenu .box_optionmenu_cts {
  width: 100%;
  margin: 0 0 4%;
  overflow: hidden;
  box-sizing: border-box;
}

/* オプションメニュー */
.box_tuneup_cts {
  margin: 20px auto 0;
  padding: 3%;
  background-color: #fff;
  font-size: 100%;
  overflow: hidden;
  border-radius: 16px;
  /* CSS3草案 */
  -webkit-border-radius: 16px;
  /* Safari,Google Chrome用 */
  -moz-border-radius: 16px;
  /* Firefox用 */
  width: 90%;
}
.box_tuneup_cts h4 {
  font-size: 125%;
  color: #b70000;
  font-weight: bold;
  border-bottom: solid 2px;
  padding-bottom: 2px;
  margin-bottom: 12px;
}

#tuneup_cts .box_optionmenu .box_tuneup_cts {
  margin-top: 0;
  padding: 0;
  background: none;
}

.box_tuneup_cts ul {
  float: left;
  /*width: 272px;*/
  margin-right: 30px;
  line-height: 2;
}
.box_tuneup_cts ul:last-child {
  margin-right: 0;
}
.box_tuneup_cts table {
  float: left;
  width: 262px;
  margin-right: 30px;
  border-top: solid 1px #666;
}
.box_tuneup_cts table + table {
  border-top: none;
}
.box_tuneup_cts table:last-child {
  margin-right: 0;
}
.box_tuneup_cts table th, .box_tuneup_cts table td {
  border-bottom: solid 1px #666;
  padding: 5px 0;
  vertical-align: top;
}
.box_tuneup_cts table th {
  padding-right: 5px;
  font-weight: normal;
  text-align: left;
}

#tuneup_cts .box_optionmenu .box_optionmenu_cts + p {
  margin: 0 4% 4%;
}

/*======================*/
/* 分割金利・手数料無料 */
/*======================*/
#pricefree_cts h3 {
  position: relative;
  margin: 20px 0 10px;
  padding: 15px;
  background: #48def8;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
#pricefree_cts h3:before, #pricefree_cts h3:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
#pricefree_cts h3:before {
  top: 2px;
}
#pricefree_cts h3:after {
  bottom: 2px;
}

#application_method {
  margin: 0 auto;
  font-size: 108%;
  /*14px*/
}
#application_method img {
  margin: 20px 0 10px;
}
#application_method p:first-child img {
  margin-top: 0;
}
#application_method ul li {
  margin-left: 1em;
  text-indent: -1em;
}
#application_method ul li:before {
  content: "・";
}

.pricefree_st {
  font-weight: bold;
}
.pricefree_st.skyblue {
  color: #00c3e5 !important;
}

/* 年末告知用 */
.nenmatsu {
  margin: 0 0 2em;
  padding: 1em 1.5em;
  background: #ffffcc;
  border: 3px solid #3E8E6B;
}
.nenmatsu h4 {
  margin: 10px 0;
  padding: 10px 5px;
  text-align: center;
  font-weight: bold;
  background: #3E8E6B;
  color: #fff;
  border: none;
  line-height: 1.3;
}
.nenmatsu strong {
  text-decoration: underline;
}

/* ==================================================
*  pricefree
================================================== */
.pricefree {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .pricefree {
    margin-top: 20px;
  }
}
.pricefree .pricefree__inner {
  max-width: 730px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .pricefree .pricefree__inner {
    max-width: 390px;
  }
}
.pricefree .top {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .pricefree .top {
    margin-top: 19px;
  }
}
.pricefree .top h3 {
  font-size: 37px;
  line-height: 1.2162162162;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .pricefree .top h3 {
    font-size: 18.5px;
  }
}
.pricefree .top h4 {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .pricefree .top h4 {
    font-size: 15px;
  }
}
.pricefree .top p {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: 500;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .pricefree .top p {
    font-size: 14px;
    letter-spacing: -0.04em;
  }
}
.pricefree .top p.note {
  color: var(--LRD);
  font-weight: 700;
  letter-spacing: 0;
  display: inline-block;
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .pricefree .top p.note {
    margin-top: 18.5px;
  }
}
.pricefree .top .top__btn {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .pricefree .top .top__btn {
    margin-top: 40px;
  }
}
.pricefree .top .top__btn a {
  display: block;
  padding: 30.5px 0;
  background-color: #FAB55C;
  color: #000;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .pricefree .top .top__btn a {
    padding: 15px 0;
    font-size: 15px;
  }
}
.pricefree .top .top__btn a span {
  position: relative;
  padding-right: 57px;
}
@media screen and (max-width: 767px) {
  .pricefree .top .top__btn a span {
    padding-right: 28.5px;
  }
}
.pricefree .top .top__btn a span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  transform: rotate(135deg);
  width: 18px;
  height: 18px;
  border-top: 4px solid #000;
  border-right: 4px solid #000;
}
@media screen and (max-width: 767px) {
  .pricefree .top .top__btn a span::before {
    top: 2px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}
.pricefree .cashless-area {
  margin-top: 108px;
  width: calc(100% + 60px);
  margin-left: -30px;
  margin-right: -30px;
  background-color: #FF6666;
  padding-bottom: 61px;
}
@media screen and (max-width: 767px) {
  .pricefree .cashless-area {
    margin-top: 54px;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}
.pricefree .cashless-area .cashless-area__btn {
  margin-top: 37px;
  max-width: 680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .pricefree .cashless-area .cashless-area__btn {
    margin-top: 18.5px;
    max-width: 335px;
  }
}
.pricefree .cashless-area .cashless-area__btn a {
  display: block;
  padding: 30.5px 0;
  background-color: #FAB55C;
  color: #000;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .pricefree .cashless-area .cashless-area__btn a {
    padding: 15px 0;
    font-size: 15px;
  }
}
.pricefree .cashless-area .cashless-area__btn a span {
  position: relative;
  padding-right: 57px;
}
@media screen and (max-width: 767px) {
  .pricefree .cashless-area .cashless-area__btn a span {
    padding-right: 28.5px;
  }
}
.pricefree .cashless-area .cashless-area__btn a span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  transform: rotate(45deg);
  width: 18px;
  height: 18px;
  border-top: 4px solid #000;
  border-right: 4px solid #000;
}
@media screen and (max-width: 767px) {
  .pricefree .cashless-area .cashless-area__btn a span::before {
    top: 5px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}
.pricefree .welcome-campaign {
  margin-top: 73px;
}
@media screen and (max-width: 767px) {
  .pricefree .welcome-campaign {
    margin-top: 36.5px;
  }
}
.pricefree .welcome-campaign .welcome-campaign__title {
  max-width: 426px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .pricefree .welcome-campaign .welcome-campaign__title {
    max-width: 213px;
  }
}
.pricefree .welcome-campaign .welcome-campaign__img {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .pricefree .welcome-campaign .welcome-campaign__img {
    margin-top: 19px;
  }
}
.pricefree .welcome-campaign p {
  display: inline-block;
  margin-top: 38px;
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .pricefree .welcome-campaign p {
    margin-top: 19px;
    font-size: 14px;
  }
}
.pricefree .register {
  margin-top: 117px;
}
@media screen and (max-width: 767px) {
  .pricefree .register {
    margin-top: 58.5px;
  }
}
.pricefree .register .register__title {
  width: calc(100% + 15px);
  margin-left: -7.5px;
  margin-right: -7.5px;
}
@media screen and (max-width: 767px) {
  .pricefree .register .register__title {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.pricefree .register .register__btn {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .pricefree .register .register__btn {
    margin-top: 19px;
  }
}
.pricefree .register .register__btn a {
  display: block;
  padding: 30.5px 0;
  background-color: #FAB55C;
  color: #000;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .pricefree .register .register__btn a {
    padding: 15px 0;
    font-size: 15px;
  }
}
.pricefree .register .register__btn a span {
  position: relative;
  padding-right: 57px;
}
@media screen and (max-width: 767px) {
  .pricefree .register .register__btn a span {
    padding-right: 28.5px;
  }
}
.pricefree .register .register__btn a span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  transform: rotate(135deg);
  width: 18px;
  height: 18px;
  border-top: 4px solid #000;
  border-right: 4px solid #000;
}
@media screen and (max-width: 767px) {
  .pricefree .register .register__btn a span::before {
    top: 2px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}

/* ==================================================
*  hassui
================================================== */
.maintenance-hassui {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui {
    margin-top: 18.5px;
  }
}
.maintenance-hassui .maintenance-hassui__inner {
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__inner {
    max-width: initial;
    padding: 0;
  }
}
.maintenance-hassui .maintenance-hassui__top {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__top {
    max-width: 350px;
  }
}
.maintenance-hassui .maintenance-hassui__top .maintenance-hassui__top-text {
  margin-top: 21px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__top .maintenance-hassui__top-text {
    margin-top: 10px;
  }
}
.maintenance-hassui .maintenance-hassui__top .maintenance-hassui__top-text p {
  font-size: 28px;
  line-height: 1.4285714286;
  letter-spacing: -0.01em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__top .maintenance-hassui__top-text p {
    font-size: 14px;
  }
}
.maintenance-hassui .maintenance-hassui__main-title {
  background-color: var(--BL);
  color: #fff;
  padding: 20px 0;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-title {
    padding: 10px 0;
    margin-top: 17.5px;
  }
}
.maintenance-hassui .maintenance-hassui__main-title span {
  max-width: 705px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-title span {
    max-width: 352px;
    font-size: 15px;
  }
}
.maintenance-hassui .maintenance-hassui__main-text {
  margin: 21px 0 35px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-text {
    margin: 10.5px auto 17.5px;
    max-width: 350px;
  }
}
.maintenance-hassui .maintenance-hassui__main-text p {
  font-size: 27px;
  line-height: 1.8148148148;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-text p {
    font-size: 13.5px;
  }
}
.maintenance-hassui .maintenance-hassui__main-text p span.red {
  color: var(--LRD);
}
.maintenance-hassui .maintenance-hassui__main-text p span.underline {
  text-decoration: underline;
}
.maintenance-hassui .maintenance-hassui__main-text p span.red.underline {
  font-size: 31px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-text p span.red.underline {
    font-size: 15.5px;
  }
}
.maintenance-hassui .maintenance-hassui__main-text p span.bold {
  font-weight: 700;
}
.maintenance-hassui .maintenance-hassui__main-text p span.bold.big {
  font-size: 39px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-text p span.bold.big {
    font-size: 19.5px;
  }
}
.maintenance-hassui .maintenance-hassui__main-movie {
  margin-top: 38px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-movie {
    margin-top: 19px;
    max-width: 350px;
  }
}
.maintenance-hassui .maintenance-hassui__main-movie iframe {
  aspect-ratio: 680/340;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.maintenance-hassui .maintenance-hassui__main-point {
  margin: 42px 0 35px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-point {
    margin: 21px auto 17.5px;
    max-width: 350px;
  }
}
.maintenance-hassui .maintenance-hassui__main-point .point-item:nth-child(n+2) {
  margin-top: 43px;
  border-top: 1px solid #555;
  padding-top: 43px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-point .point-item:nth-child(n+2) {
    margin-top: 21px;
    padding-top: 21px;
  }
}
.maintenance-hassui .maintenance-hassui__main-point .point-item__title {
  font-size: 30px;
  line-height: 1.6333333333;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-point .point-item__title {
    font-size: 15px;
  }
}
.maintenance-hassui .maintenance-hassui__main-point .point-item__title span {
  background-color: var(--LBL);
  color: #fff;
  font-size: 27px;
  line-height: 1.8148148148;
  font-weight: 500;
  padding: 5px 10.5px;
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-point .point-item__title span {
    font-size: 13.5px;
    padding: 2.5px 5px;
  }
}
.maintenance-hassui .maintenance-hassui__main-point .point-item__text {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-point .point-item__text {
    margin-top: 7px;
  }
}
.maintenance-hassui .maintenance-hassui__main-point .point-item__text p {
  font-size: 27px;
  line-height: 1.8148148148;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__main-point .point-item__text p {
    font-size: 13.5px;
  }
}
.maintenance-hassui .maintenance-hassui__service {
  background-color: #F5DDDD;
  padding: 52px 25px 67px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service {
    padding: 26px 12.5px 33.5px;
  }
}
.maintenance-hassui .maintenance-hassui__service .service-title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  background-color: var(--BL);
  color: #fff;
  padding: 18px 20px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service .service-title {
    font-size: 15px;
    padding: 9px 10px;
  }
}
.maintenance-hassui .maintenance-hassui__service-title {
  text-align: center;
  font-size: 45px;
  line-height: 1.7777777778;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-title {
    font-size: 22.5px;
  }
}
.maintenance-hassui .maintenance-hassui__service-title span {
  background-color: var(--RD);
  color: #fff;
  display: inline-block;
  font-size: 40px;
  line-height: 1.75;
  border-radius: 10px;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-title span {
    font-size: 20px;
    padding: 0 15px;
  }
}
.maintenance-hassui .maintenance-hassui__service-top {
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 40px 38px;
  margin-top: 23px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-top {
    padding: 17.5px 20px 19px;
  }
}
.maintenance-hassui .maintenance-hassui__service-top p {
  font-size: 28px;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-top p {
    font-size: 14px;
  }
}
.maintenance-hassui .maintenance-hassui__service-top p span.red {
  font-size: 35px;
  font-weight: 700;
  text-decoration: underline;
  color: var(--LRD);
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-top p span.red {
    font-size: 17.5px;
  }
}
.maintenance-hassui .maintenance-hassui__service-top p span.bold {
  font-size: 35px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-top p span.bold {
    font-size: 17.5px;
  }
}
.maintenance-hassui .maintenance-hassui__service-top p.subject {
  font-size: 27px;
  line-height: 1.8148148148;
  font-weight: 500;
  display: inline-block;
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-top p.subject {
    font-size: 12.5px;
    margin-top: 11px;
  }
}
.maintenance-hassui .maintenance-hassui__service-flow {
  background-color: #fff;
  border-radius: 20px;
  padding: 33px 40px 66px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-flow {
    padding: 16.5px 20px 33px;
    margin-top: 20px;
  }
}
.maintenance-hassui .maintenance-hassui__service-flow .flow-list {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-flow .flow-list {
    margin-top: 6px;
  }
}
.maintenance-hassui .maintenance-hassui__service-flow .flow-list .flow-item {
  font-size: 27px;
  line-height: 1.8148148148;
  font-weight: 500;
  padding-bottom: 32px;
  margin-bottom: 28px;
  border-bottom: 1px solid #999;
  position: relative;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-flow .flow-list .flow-item {
    font-size: 13.5px;
    padding-bottom: 16px;
    margin-bottom: 14px;
  }
}
.maintenance-hassui .maintenance-hassui__service-flow .flow-list .flow-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.maintenance-hassui .maintenance-hassui__service-flow .flow-list .flow-item::before {
  content: "";
  width: 112px;
  height: 22px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -11px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-flow .flow-list .flow-item::before {
    width: 56px;
    height: 11px;
    bottom: -5.5px;
  }
}
.maintenance-hassui .maintenance-hassui__service-flow .flow-list .flow-item::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 22px solid transparent;
  border-left: 22px solid transparent;
  border-top: 22px solid var(--LRD);
  border-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-flow .flow-list .flow-item::after {
    border-right: 11px solid transparent;
    border-left: 11px solid transparent;
    border-top: 11px solid var(--LRD);
    bottom: -7.5px;
  }
}
.maintenance-hassui .maintenance-hassui__service-flow .flow-list .flow-item:last-child::before, .maintenance-hassui .maintenance-hassui__service-flow .flow-list .flow-item:last-child::after {
  display: none;
}
.maintenance-hassui .maintenance-hassui__service-flow .flow-list .flow-item .flow-item__title {
  color: var(--BL);
  display: block;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-flow .flow-list .flow-item .flow-item__title {
    font-size: 15px;
  }
}
.maintenance-hassui .maintenance-hassui__service-menu {
  background-color: #fff;
  border-radius: 20px;
  padding: 45px 40px 99px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-menu {
    padding: 22.5px 20px 49.5px;
    margin-top: 20px;
  }
}
.maintenance-hassui .maintenance-hassui__service-menu .menu-list {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-menu .menu-list {
    margin-top: 18px;
  }
}
.maintenance-hassui .maintenance-hassui__service-menu .menu-list .menu-item:nth-child(n+2) {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-menu .menu-list .menu-item:nth-child(n+2) {
    margin-top: 5px;
  }
}
.maintenance-hassui .maintenance-hassui__service-menu .menu-list .menu-item .menu-item__title {
  background-color: #EB7880;
  color: #fff;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-menu .menu-list .menu-item .menu-item__title {
    font-size: 15px;
    padding: 5px;
  }
}
.maintenance-hassui .maintenance-hassui__service-menu .menu-list .menu-item .menu-item__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  font-size: 27px;
  line-height: 1.4444444444;
  font-weight: 500;
  padding: 15px 10px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-menu .menu-list .menu-item .menu-item__content {
    font-size: 13.5px;
    padding: 7.5px 5px;
  }
}
.maintenance-hassui .maintenance-hassui__service-menu .menu-list .menu-item .menu-item__content:last-child {
  border-bottom: none;
}
.maintenance-hassui .maintenance-hassui__service-menu .menu-list .menu-item:last-child .menu-item__content:last-child {
  border-bottom: 1px solid #ccc;
}
.maintenance-hassui .maintenance-hassui__service-menu .menu-bottom {
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-menu .menu-bottom {
    margin-top: 13px;
  }
}
.maintenance-hassui .maintenance-hassui__service-menu .menu-bottom p {
  font-size: 27px;
  line-height: 1.8148148148;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maintenance-hassui .maintenance-hassui__service-menu .menu-bottom p {
    font-size: 13.5px;
  }
}
.maintenance-hassui .maintenance-hassui__service-menu .menu-bottom p a {
  color: var(--LBL);
}

.company .company__main {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .company .company__main {
    margin-top: 24px;
  }
}
.company .company__main h3 {
  color: var(--BL);
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  border-bottom: 5px solid var(--BL);
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .company .company__main h3 {
    font-size: 20px;
    border-bottom: 2.5px solid var(--BL);
    padding-bottom: 7.5px;
  }
}
.company .company__main h3::before {
  content: "■";
  color: var(--BL);
  font-size: 40px;
  line-height: 1;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .company .company__main h3::before {
    font-size: 20px;
  }
}
.company .company__main h3:not(:first-of-type) {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .company .company__main h3:not(:first-of-type) {
    margin-top: 25px;
  }
}
.company .company__main p {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: 500;
  display: inline-block;
  margin-top: 21px;
}
@media screen and (max-width: 767px) {
  .company .company__main p {
    font-size: 14px;
    margin-top: 10px;
  }
}
.company .company__main .list-dot {
  padding-left: 1.5em;
  list-style: disc;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .company .company__main .list-dot {
    margin-top: 8px;
  }
}
.company .company__main .list-dot li {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company .company__main .list-dot li {
    font-size: 14px;
  }
}
.company .company__main .list-dot li:not(:last-of-type) {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .company .company__main .list-dot li:not(:last-of-type) {
    margin-bottom: 8px;
  }
}

/* ==================================================
*  maintenance
================================================== */
.maintenance .maintenance-main {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance-main {
    margin-top: 20px;
  }
}
.maintenance .maintenance__movie {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__movie {
    margin-top: 12.5px;
  }
}
.maintenance .maintenance__movie .maintenance__movie-head {
  padding: 13.3px 35px 17.3px;
  color: #fff;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.3;
  background-color: #3e816b;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__movie .maintenance__movie-head {
    padding: 6.5px 17.5px 8.5px;
    font-size: 19px;
  }
}
.maintenance .maintenance__movie .maintenance__movie-title {
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: solid 4px #3E8E6B;
  color: #333;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__movie .maintenance__movie-title {
    margin-top: 20px;
    padding-bottom: 4px;
    font-size: 15px;
    border-bottom: solid 2px #3E8E6B;
  }
}
.maintenance .maintenance__movie .maintenance__movie-area {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .maintenance .maintenance__movie .maintenance__movie-area {
    margin-top: 12px;
  }
}
.maintenance .maintenance__movie .maintenance__movie-area iframe {
  aspect-ratio: 680/340;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ==================================================
*  brand
================================================== */
.brand .brand-main {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .brand .brand-main {
    margin-top: 20px;
  }
}
.brand #brand__navi {
  padding: 8px;
  background: var(--BL);
}
.brand #brand__navi ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.brand #brand__navi ul li a {
  color: #fff;
  text-decoration: underline;
}
.brand .brand__list h3 {
  margin: 20px 0 10px;
}
.brand .brand__list h3 img {
  width: initial;
}
.brand .brand__list .place_bar {
  display: block;
  color: #FFFFFF;
  padding: 2% 6% 2% 2%;
  font-size: 100%;
  font-weight: bold;
  background: url(../img/icon-arrow_wh06.png) no-repeat 99% 50% var(--BL);
  background-size: 5%;
  border: solid 1px #1A2081;
}
.brand .brand__list .place_bar.is-open {
  background: url(../img/icon-arrow_wh07.png) no-repeat 99% 50% var(--BL);
  background-size: 5%;
}
.brand .brand__list .place_info {
  width: 96%;
  padding: 8px 0;
  overflow: hidden;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .brand .brand__list .place_info {
    display: none;
  }
}
.brand .brand__list .place_info ul {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
}
@media screen and (max-width: 767px) {
  .brand .brand__list .place_info ul {
    flex-direction: column;
  }
}
.brand .brand__list .place_info ul li {
  width: 30%;
  border-bottom: 1px solid #666;
  padding: 5px 5px 5px 18px;
  box-sizing: border-box;
  font-size: 24px;
  background: url(../img/icon-arrow_bl.png) no-repeat 0 18px;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .brand .brand__list .place_info ul li {
    width: 100%;
    border-bottom: none;
    background: url(../img/icon-arrow_bl.png) no-repeat 0 10px;
    font-size: 14px;
  }
}
.brand .brand__list .place_info ul li:nth-child(-n+3) {
  border-top: 1px solid #666;
}
@media screen and (max-width: 767px) {
  .brand .brand__list .place_info ul li:nth-child(-n+3) {
    border-top: none;
  }
}

/* ==================================================
*  about
================================================== */
@media screen and (max-width: 767px) {
  .about .about__header {
    padding: 10px 18px;
  }
}
.about .about__header span {
  letter-spacing: -0.05em;
}
.about .about-main {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .about .about-main {
    margin-top: 20px;
  }
}
.about .about__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .about .about__wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.about .about__text-area {
  max-width: 464px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about .about__text-area {
    max-width: initial;
  }
}
.about .about__text-area p {
  font-size: 28px;
  letter-spacing: -0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about .about__text-area p {
    font-size: 14px;
  }
}
.about .about__img-area {
  max-width: 200px;
  width: 100%;
  display: grid;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .about .about__img-area {
    max-width: initial;
  }
}

/* ==================================================
*  supporter
================================================== */
.supporter .supporter-main {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .supporter .supporter-main {
    margin-top: 20px;
  }
}
.supporter .supporter__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .supporter .supporter__wrapper {
    flex-direction: column;
    gap: 0;
  }
}
.supporter .supporter__wrapper ul {
  max-width: 324px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .supporter .supporter__wrapper ul {
    max-width: initial;
  }
}
.supporter .supporter__wrapper ul li a {
  color: var(--LBL);
  text-decoration: underline;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .supporter .supporter__wrapper ul li a {
    font-size: 14px;
  }
}
.supporter .supporter__bottom {
  margin-top: 4px;
  text-align: right;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .supporter .supporter__bottom {
    font-size: 14px;
  }
}

/* ==================================================
*  guideline
================================================== */
.guideline .guideline-main {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .guideline .guideline-main {
    margin-top: 20px;
  }
}
.guideline .guideline__inner {
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .guideline .guideline__inner {
    max-width: initial;
    padding-left: 0;
    padding-right: 0;
  }
}
.guideline .guideline__sub-title {
  background-color: var(--BL);
  color: #fff;
  padding: 15.4px 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .guideline .guideline__sub-title {
    padding: 10px 0;
    margin-bottom: 10px;
  }
}
.guideline .guideline__sub-title span {
  max-width: 682px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .guideline .guideline__sub-title span {
    max-width: 342px;
    font-size: 19px;
  }
}
.guideline .guideline__head {
  margin-top: 27px;
  font-size: 43px;
  line-height: 1.5;
  font-weight: 700;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .guideline .guideline__head {
    margin-top: 13.5px;
    font-size: 21px;
    max-width: 350px;
  }
}
.guideline .guideline__text-red {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 400;
  color: var(--LRD);
  line-height: 1.3;
  border-top: solid 1px var(--LRD);
  border-bottom: solid 1px var(--LRD);
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .guideline .guideline__text-red {
    margin-top: 10px;
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    max-width: 350px;
  }
}
.guideline .guideline__arrow {
  max-width: 50px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .guideline .guideline__arrow {
    margin-top: 10px;
    margin-bottom: 5px;
    max-width: 25px;
  }
}
.guideline .guideline__text {
  margin-bottom: 16px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .guideline .guideline__text {
    margin-bottom: 8px;
    max-width: 350px;
  }
}
.guideline .guideline__text p {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .guideline .guideline__text p {
    font-size: 14px;
  }
}
.guideline .guideline__text p span.bold {
  font-weight: 700;
}
.guideline .guideline__logo {
  max-width: 250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .guideline .guideline__logo {
    max-width: 125px;
    margin-top: 10px;
  }
}

/* ==================================================
*  recruit
================================================== */
.recruit {
  /*====================*/
  /* スタッフ募集 */
  /*====================*/
  /*====================*/
  /* 応募フォーム */
  /*====================*/
}
.recruit .recruit-main {
  margin-top: 40px;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .recruit .recruit-main {
    margin-top: 20px;
    font-size: 14px;
  }
}
.recruit .bt-img {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .recruit .bt-img {
    width: 60%;
  }
}
.recruit .staff .heading02 {
  margin-top: 24px;
  margin-bottom: 16px;
}
.recruit .staff .heading04 {
  margin-bottom: 16px;
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  color: #000;
  background: none;
}
.recruit .staff .heading04 span {
  background: linear-gradient(transparent 80%, #FFE372 80%);
}
.recruit .staff h3.thanks {
  margin-bottom: 16px;
  font-size: 120%;
  font-weight: bold;
}
.recruit .staff h4 {
  box-sizing: border-box;
  margin: 10px auto 8px;
}
.recruit .staff .sup_area h4 {
  color: var(--BL);
  font-weight: bold;
  border-bottom: solid 2px var(--BL);
  padding: 1%;
  margin: 4% 0;
}
.recruit .staff .sup_area p a {
  color: var(--LBL);
}
.recruit .staff #unei,
.recruit .staff #soumu {
  margin-bottom: 8rem;
}
.recruit .staff ul {
  padding-left: 1rem;
  list-style: disc;
}
.recruit .staff dl {
  margin-bottom: 30px;
}
.recruit .staff dt {
  margin-bottom: 5px;
  font-weight: bold;
}
.recruit .staff dd {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #555;
}
.recruit .staff .link_box {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}
.recruit .staff .link_box a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0 0.3rem 1.4rem;
  width: 48%;
  color: #555;
  font-weight: bold;
  text-align: center;
  border: 3px solid var(--BL);
  border-radius: 10px;
}
.recruit .staff .link_box a:hover {
  text-decoration: none;
}
.recruit .staff .link_box a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../img/recruit/recruit_ic01.svg) no-repeat center center;
  background-size: contain;
}
.recruit .staff .link_form {
  position: relative;
  display: block;
  margin: auto;
  padding: 1rem 0 1rem 1.5rem;
  width: 80%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: var(--BL);
  border-radius: 10px;
  box-shadow: 0 9px 0 rgba(0, 0, 0, 0.15);
}
.recruit .staff .link_form:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/recruit/recruit_ic02.svg) no-repeat center center;
  background-size: contain;
}
.recruit .staff .link_form:hover {
  text-decoration: none;
}
.recruit .staff .link_form_text {
  text-align: center;
  display: block;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .recruit .staff {
    margin-bottom: 48px;
  }
  .recruit .staff .sup_area h4 {
    border-bottom: solid 4px var(--BL);
  }
  .recruit .staff ul {
    padding-left: 2rem;
  }
}
.recruit #recruit_form {
  margin-bottom: 5rem;
}
.recruit #recruit_form input[type=text],
.recruit #recruit_form textarea {
  padding: 0.5rem;
  width: 100%;
  font-size: 16px;
  background: #EFEFEF;
  border: #ccc;
}
.recruit #recruit_form input[type=checkbox],
.recruit #recruit_form input[type=radio] {
  margin-right: 0.3rem;
}
.recruit #recruit_form dl {
  margin-bottom: 16px;
}
.recruit #recruit_form dt {
  font-weight: bold;
}
.recruit #recruit_form dt small {
  font-size: 0.75rem;
  font-weight: normal;
}
.recruit #recruit_form dd {
  line-height: 2;
  border: none;
}
.recruit #recruit_form .hissu:after {
  content: "*";
  margin-left: 0.2rem;
  color: #FF0000;
}
/*# sourceMappingURL=style.css.map */