@charset "UTF-8";
/*-----------------------------------------
    color
-----------------------------------------*/
/*-----------------------------------------
    font
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/*-----------------------------------------
    メディアクエリ
-----------------------------------------*/
/*-----------------------------------------

リセット

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

html,
body {
  padding: 0;
  margin: 0;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 62.5%;
}

@media screen and (min-width: 901px) and (max-width: 1440px) {
  html {
    font-size: 0.625vw;
  }
}
ul,
ol,
dl,
dt,
dd {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

/*-----------------------------------------

全体指定

----------------------------------------*/
.inner {
  max-width: 1080px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .inner {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

body {
  line-height: 1.6;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: #fff;
  color: #000000;
  overflow-x: hidden;
}

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

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

li {
  list-style: none;
}

.header {
  width: 100%;
  max-width: 1800px;
  background: #000000;
  position: sticky;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  top: 0;
  z-index: 100;
}
@media (max-width: 900px) {
  .header {
    height: 0;
    background: transparent;
    width: 100%;
  }
}

.header__logo {
  width: clamp(140px, 11vw, 200px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .header__logo {
    margin-top: 1rem;
  }
}

.header__inner--in {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__nav {
  margin-left: clamp(2rem, 1.6vw, 4rem);
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
}

.header-nav {
  display: flex;
  align-items: center;
}
.header-nav li {
  font-size: clamp(12px, 1.3vw, 18px);
  position: relative;
  line-height: 1.5;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.header-nav li:first-child {
  padding-right: 3rem;
}
.header-nav li:not(:first-child) {
  padding-left: 3rem;
  padding-right: 3rem;
}
.header-nav li span {
  font-size: clamp(12px, 1.3vw, 18px);
}
.header-nav a {
  color: #fff;
  display: inline-block;
  transition: opacity 0.3s ease 0s;
}
.header-nav a:hover {
  opacity: 0.6;
}

.header__sns {
  margin-left: clamp(1rem, 1.6vw, 7rem);
  display: flex;
}
@media (max-width: 900px) {
  .header__sns {
    display: none;
  }
}
.header__sns li:not(:first-child) {
  margin-left: 3rem;
}
.header__sns a {
  display: block;
  transition: opacity 0.3s ease 0s;
}
.header__sns a img {
  width: clamp(26px, 2vw, 32px);
}
.header__sns a:hover {
  opacity: 0.6;
}

/*-----------------------------------------
    //drawer
-----------------------------------------*/
.drawer__icon {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 101;
  width: 4rem;
  height: 4rem;
  background: #000000;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  display: none;
}
@media (max-width: 900px) {
  .drawer__icon {
    display: block;
  }
}
.drawer__icon.is-active span:nth-child(1) {
  transform: rotate(45deg);
  left: -0.5rem;
  top: 1rem;
}
.drawer__icon.is-active span:nth-child(2) {
  display: none;
}
.drawer__icon.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  left: -0.5rem;
  top: 1rem;
}

.drawer__bars {
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.9rem;
  position: relative;
  cursor: pointer;
}
.drawer__bars span {
  width: 100%;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}
.drawer__bars span:nth-child(1) {
  top: 0;
}
.drawer__bars span:nth-child(2) {
  top: 1rem;
}
.drawer__bars span:nth-child(3) {
  top: 2rem;
}

.drawer__content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: #000000;
  display: flex;
  justify-content: center;
  display: none;
  overflow-y: scroll;
}

.drawer__content--inner {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  z-index: 99;
}

.drawer-nav li {
  font-size: clamp(16px, 2vw, 20px);
  border-bottom: 1px solid #fff;
}
.drawer-nav li span {
  display: block;
  font-size: clamp(12px, 2vw, 16px);
}
.drawer-nav a {
  padding: 2rem 0;
  display: block;
  color: #fff;
}

.drawer__content--sns {
  margin-top: 6rem;
  text-align: center;
}

.drawer__content--sns-title {
  color: #fff;
}

.drawer__sns {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.drawer__sns li:not(:first-child) {
  margin-left: 2rem;
}
.drawer__sns a {
  width: 40px;
}
.drawer__sns a img {
  width: 40px;
}

/*-----------------------------------------
mv
-----------------------------------------*/
.mv {
  background: #000000;
}
@media (max-width: 900px) {
  .mv {
    padding-top: 60px;
  }
}

.mv-content {
  vertical-align: bottom;
  line-height: 1em;
  text-align: center;
}
.mv-content img {
  vertical-align: bottom;
  line-height: 1em;
  width: 100vw;
  max-width: 1800px;
}

.pc-only {
  display: block;
}

@media screen and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}
.pc-only2 {
  display: block;
}
@media (max-width: 900px) {
  .pc-only2 {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 900px) {
  .sp-only {
    display: block;
  }
}

.sp-only2 {
  display: none;
}

@media screen and (max-width: 550px) {
  .sp-only2 {
    display: block;
  }
}
.to-top {
  position: fixed;
  right: calc(50.5% - 900px);
  bottom: 10rem;
  z-index: 20;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top .to-top__icon {
  text-decoration: none;
  font-size: clamp(8px, 1.1vw, 12px);
  text-shadow: 0px 0px 1px rgb(0, 0, 0);
  color: #fff;
  text-align: center;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease 0s;
}
@media (max-width: 900px) {
  .to-top .to-top__icon {
    font-size: 9px;
  }
}
.to-top .to-top__icon::before {
  position: absolute;
  top: -7rem;
  left: 50%;
  transform: translateX(-50%);
  content: "\f062";
  font-family: "Font Awesome 6 Free";
  font-size: 3rem;
  font-weight: 900;
  color: #000000;
  background: #fff;
  line-height: 4.3rem;
  border: 3px solid #000000;
  border-radius: 50%;
  padding: 0.6rem 1.6rem;
}
@media (max-width: 900px) {
  .to-top .to-top__icon::before {
    font-size: 12px;
    line-height: 22px;
    padding: 1px 8px;
    top: -4rem;
  }
}
.to-top .to-top__icon:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1799px) {
  .to-top {
    right: 0.5rem;
  }
}
@media screen and (max-width: 900px) {
  .to-top {
    right: 0.2rem;
    bottom: 5rem;
  }
}
.footer {
  width: 100%;
  height: 80px;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .footer {
    height: 60px;
  }
}

.footer__copy {
  text-align: center;
  font-size: clamp(10px, 2.3vw, 16px);
  color: #fff;
}

/*-----------------------------------------
    event-summary
-----------------------------------------*/
.event-summary {
  padding: 13rem 0;
  position: relative;
  background: #7B070A;
}
@media (max-width: 900px) {
  .event-summary {
    padding: 6rem 0;
  }
}

.summary-title {
  text-align: center;
}
.summary-title img {
  width: clamp(270px, 20vw, 370.81px);
}
@media (max-width: 900px) {
  .summary-title img {
    width: clamp(140px, 30vw, 270px);
  }
}

.event-summaryContent {
  width: 1496px;
  max-width: 97%;
  margin-left: auto;
  margin-right: auto;
  padding: 23rem 12rem 18rem 4rem;
  -o-border-image: url(../images/summary_bg.webp) 400 fill/310px/0px round;
     border-image: url(../images/summary_bg.webp) 400 fill/310px/0px round;
}
@media (max-width: 900px) {
  .event-summaryContent {
    width: 100%;
    padding: 9rem 2rem 9rem 2rem;
  }
}
.event-summaryContent p {
  text-align: center;
  font-size: clamp(18px, 1.5vw, 27px);
  line-height: 1.8;
  color: #fff;
  font-weight: 900;
}
@media (max-width: 900px) {
  .event-summaryContent p {
    letter-spacing: -0.08rem;
    font-size: clamp(13px, 1.5vw, 18px);
    font-weight: 600;
  }
}

@media screen and (max-width: 600px) {
  .event-summaryContent {
    border-image-width: 37px;
    border-image-slice: 200 fill;
    padding: 7rem 2rem 7rem 2rem;
  }
}
/*-----------------
event-schedule
-------------------*/
.event-schedule {
  padding: 13rem 0;
  position: relative;
  background: #000000;
}
@media (max-width: 900px) {
  .event-schedule {
    padding: 6rem 0;
  }
}

.schedule-title {
  text-align: center;
}
.schedule-title img {
  width: clamp(270px, 20vw, 401.09px);
}
@media (max-width: 900px) {
  .schedule-title img {
    width: clamp(140px, 30vw, 270px);
  }
}

.event-schedule-inner {
  width: 1536px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 24rem 2rem 20rem 2rem;
  -o-border-image: url(../images/schedule_bg.webp) 300 fill/248px/0px round;
     border-image: url(../images/schedule_bg.webp) 300 fill/248px/0px round;
}

@media screen and (max-width: 1200px) {
  .event-schedule-inner {
    border-image-width: 240px;
    border-image-slice: 360 fill;
  }
}
@media screen and (max-width: 900px) {
  .event-schedule-inner {
    padding: 9rem 2rem 9rem 2rem;
    border-image-width: 150px;
  }
}
@media screen and (max-width: 960px) {
  .event-schedule-inner {
    border-image-width: 80px;
  }
}
.event-schedule-content {
  width: 860px;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.event-schedule-content__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid #000000;
}
.event-schedule-content__item:not(:first-child) {
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .event-schedule-content__item:not(:first-child) {
    margin-top: 60px;
  }
}
@media (max-width: 900px) {
  .event-schedule-content__item {
    display: block;
    padding-bottom: 1rem;
  }
}
.event-schedule-content__itemLeft {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(80px, 9vw, 160px);
  background: #000000;
  width: clamp(180px, 14vw, 240px);
  min-width: 150px;
}
@media (max-width: 900px) {
  .event-schedule-content__itemLeft {
    margin-left: auto;
    margin-right: auto;
    height: clamp(50px, 9vw, 80px);
  }
}
.event-schedule-content__itemLeft--text {
  text-align: center;
  color: #fff;
  font-size: clamp(16px, 1.6vw, 28px);
  font-weight: 700;
}
.event-schedule-content__itemRight {
  margin-left: 1.5rem;
  width: 100%;
}
@media (max-width: 900px) {
  .event-schedule-content__itemRight {
    margin-left: 0;
    margin-top: 1rem;
  }
}
.event-schedule-content__itemRight--head {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.event-schedule-content__itemRight--head-text {
  background: #000000;
  color: #fff;
  text-align: center;
  font-size: clamp(14px, 1.3vw, 18px);
  width: clamp(90px, 7vw, 110px);
  height: 32px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .event-schedule-content__itemRight--head-text {
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 600;
  }
}
.event-schedule-content__itemRight--head-day {
  padding-left: 2rem;
  border-bottom: 1px solid #000000;
  font-weight: 700;
  font-size: clamp(14px, 1.3vw, 18px);
  width: 100%;
}
@media (max-width: 900px) {
  .event-schedule-content__itemRight--head-day {
    font-size: clamp(12px, 1.3vw, 14px);
    padding-left: 1rem;
  }
}
.event-schedule-content__itemRight--head-day .-big {
  font-size: clamp(20px, 1.8vw, 32px);
}
@media (max-width: 900px) {
  .event-schedule-content__itemRight--head-day .-big {
    font-size: clamp(16px, 1.8vw, 20px);
  }
}
.event-schedule-content__itemRight--head-day .-mid {
  font-size: clamp(16px, 1.8vw, 24px);
}
@media (max-width: 900px) {
  .event-schedule-content__itemRight--head-day .-mid {
    font-size: clamp(14px, 1.8vw, 16px);
  }
}
.event-schedule-content__itemRight--body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1.6rem;
}
.event-schedule-content__itemRight--button:first-child {
  padding-right: 1.5rem;
}
@media (max-width: 900px) {
  .event-schedule-content__itemRight--button:first-child {
    padding-right: 0.5rem;
  }
}
.event-schedule-content__itemRight--button:not(:first-child) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 900px) {
  .event-schedule-content__itemRight--button:not(:first-child) {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.event-schedule-content__itemRight--btn {
  position: relative;
  display: block;
  width: clamp(140px, 14vw, 184px);
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #000000;
  color: #fff;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.16);
  font-weight: 500;
  font-size: clamp(12px, 1.6vw, 18px);
  transition: all 0.3s ease 0s;
}
@media (max-width: 900px) {
  .event-schedule-content__itemRight--btn {
    width: clamp(115px, 17vw, 140px);
  }
}
.event-schedule-content__itemRight--btn:hover {
  opacity: 0.6;
}
.event-schedule-content__itemRight--btn .x-sm {
  line-height: 1.2;
  padding-top: 3px;
  display: block;
}
.event-schedule-content__itemRight--btn .x-block {
  display: block;
  font-size: clamp(10px, 1.2vw, 13px);
}
.event-schedule-content__itemRight--btn-map {
  position: relative;
  padding-left: 3rem;
}
@media (max-width: 900px) {
  .event-schedule-content__itemRight--btn-map {
    padding-left: 1rem;
  }
}
.event-schedule-content__itemRight--btn-map::before {
  position: absolute;
  content: "\f3c5";
  left: 2.5rem;
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}
@media (max-width: 900px) {
  .event-schedule-content__itemRight--btn-map::before {
    left: 1.5rem;
    font-size: 16px;
  }
}
.event-schedule-content__itemRight--btn-map:after {
  display: none;
}

@media screen and (max-width: 1000px) {
  .event-schedule-content__itemRight--btn .x-sm {
    line-height: 1.4;
  }
}
@media screen and (max-width: 600px) {
  .event-schedule-content__itemRight--head {
    display: block;
  }
  .event-schedule-content__itemRight--head-text {
    width: clamp(60px, 7vw, 110px);
    height: 24px;
  }
  .event-schedule-content__itemRight--body {
    display: block;
    text-align: center;
    margin-top: 0;
  }
  .event-schedule-content__itemRight--button {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
  }
  .event-schedule-content__itemRight--button:first-child {
    padding-right: 0;
  }
  .event-schedule-content__itemRight--button:not(:first-child) {
    padding-left: 0;
    padding-right: 0;
  }
  .event-schedule-content__itemRight--btn {
    width: 90%;
    max-width: 350px;
  }
  .event-schedule-content__itemRight--btn--map {
    padding-left: 0;
  }
}
/*-----------------------------------------
online
-----------------------------------------*/
.online {
  padding: 13rem 0;
  position: relative;
}
@media (max-width: 900px) {
  .online {
    padding: 6rem 0;
  }
}
.online::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(230px, 22vw, 440px);
  background: url(../images/deco_top.webp) no-repeat center center/cover;
}
@media (max-width: 900px) {
  .online::before {
    height: clamp(80px, 25vw, 230px);
  }
}
.online::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(560px, 62vw, 1100px);
  background: url(../images/deco_bottom.webp) no-repeat center center/cover;
}
@media (max-width: 900px) {
  .online::after {
    height: clamp(200px, 61vw, 550px);
  }
}

.online-title {
  text-align: center;
}
.online-title img {
  width: clamp(300px, 45vw, 712px);
}
@media (max-width: 900px) {
  .online-title img {
    width: clamp(260px, 47vw, 420px);
  }
}

.online-content {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 13rem;
}
@media (max-width: 900px) {
  .online-content {
    width: 95%;
    margin-top: 5rem;
  }
}
.online-content__lead {
  text-align: center;
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 23px)
}
/*@media (max-width: 900px) {
  .online-content__lead {
    font-size: clamp(15px, 2vw, 18px);
  }
}*/
.online-content__text {
  margin-top: 3.7rem;
  text-align: center;
  font-weight: 800;
  font-size: clamp(16px, 1.7vw, 30px);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .online-content__text {
    margin-top: 1.8rem;
    font-size: clamp(14px, 2vw, 16px);
  }
}
.online-content__text--attention {
  margin-top: 3.7rem;
  font-weight: 800;
  text-align: center;
  font-size: clamp(14px, 1.7vw, 25px);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .online-content__text--attention {
    margin-top: 1.8rem;
    font-size: clamp(13px, 2vw, 14px);
  }
}
.online-content__present {
  margin-top: 7rem;
}
@media (max-width: 900px) {
  .online-content__present {
    margin-top: 4rem;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
  }
}
.online-content__present--ul {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.online-content__present--ul li {
  list-style: "※";
  font-size: clamp(12px, 1.6vw, 20px);
  font-weight: 700;
}
.online-content__present--ul li:not(:first-child) {
  margin-top: 0.2rem;
}
.online-content__present--ul li a {
  color: #FF0000;
  letter-spacing: 0.01rem;
  text-decoration: underline;
}
.online-content__present--banner {
  margin-top: 1.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .online-content__present--banner {
    width: 95%;
    margin-top: 1rem;
  }
}
.online-content__present--bannerAttention {
  margin-top: 1.7rem;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .online-content__present--bannerAttention {
    margin-top: 1rem;
  }
}
.online-content__present--bannerAttention p {
  font-size: clamp(12px, 1.6vw, 20px);
  font-weight: 700;
}

/*-----------------------------------------
    x
-----------------------------------------*/
.x {
  padding: 13rem 0;
  background: #7B070A;
}
@media (max-width: 900px) {
  .x {
    padding: 6rem 0;
  }
}
.x__title {
  text-align: center;
}
.x__title img {
  width: clamp(100px, 11vw, 149.23px);
}
@media (max-width: 900px) {
  .x__title img {
    width: clamp(50px, 11vw, 100px);
  }
}
.x__content {
  width: 1496px;
  max-width: 97%;
  margin-left: auto;
  margin-right: auto;
  padding: 20rem 2rem 18rem;
  -o-border-image: url(../images/x_bg.webp) 270 fill/250px/0px round;
     border-image: url(../images/x_bg.webp) 270 fill/250px/0px round;
}
@media (max-width: 900px) {
  .x__content {
    width: 100%;
    padding: 10rem 2rem 9rem;
    border-image-width: 300px;
    border-image-slice: 400 fill;
  }
}
.x__contentMedia--p {
  text-align: center;
  font-weight: 900;
  font-size: clamp(20px, 2.3vw, 40px);
  color: #fff;
}
@media (max-width: 900px) {
  .x__contentMedia--p {
    font-size: clamp(14px, 2.3vw, 20px);
  }
}
.x__contentMedia--bottom {
  margin-top: 4rem;
  text-align: center;
  font-size: clamp(20px, 2.3vw, 40px);
  color: #fff;
}
@media (max-width: 900px) {
  .x__contentMedia--bottom {
    margin-top: 2rem;
    font-size: clamp(14px, 2.3vw, 20px);
  }
}
.x__contentMedia--bottom a {
  display: block;
  margin-top: 3.6rem;
  color: #000000;
  font-size: clamp(26px, 3vw, 55px);
}
@media (max-width: 900px) {
  .x__contentMedia--bottom a {
    margin-top: 1.5rem;
    font-size: clamp(16px, 2vw, 26px);
  }
}

@media screen and (max-width: 600px) {
  .x__content {
    padding: 6rem 2rem 6rem;
    border-image-width: 55px;
    border-image-slice: 200 fill;
  }
}
/*-----------------------------------------
special-offer
-----------------------------------------*/
.special-offer {
  padding: 13rem 0;
  position: relative;
  background: #000000;
}
@media (max-width: 900px) {
  .special-offer {
    padding: 6rem 0;
  }
}

.special-offer-inner {
  width: 1536px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 24rem 2rem 20rem 2rem;
  -o-border-image: url(../images/schedule_bg.webp) 300 fill/248px/0px round;
     border-image: url(../images/schedule_bg.webp) 300 fill/248px/0px round;
}

@media screen and (max-width: 1200px) {
  .special-offer-inner {
    border-image-width: 240px;
    border-image-slice: 360 fill;
  }
}
@media screen and (max-width: 900px) {
  .special-offer-inner {
    padding: 12rem 2rem 10rem 2rem;
  }
}
@media screen and (max-width: 900px) {
  .special-offer-inner {
    padding: 8rem 2rem 8rem 2rem;
    border-image-width: 60px;
    border-image-slice: 200 fill;
  }
}
.offer-title {
  text-align: center;
}
.offer-title img {
  width: clamp(270px, 20vw, 376.75px);
}
@media (max-width: 900px) {
  .offer-title img {
    width: clamp(140px, 30vw, 270px);
  }
}

.special-offer-content {
  width: 1128px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.special-offer-content__text {
  text-align: center;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 35px);
}
@media (max-width: 900px) {
  .special-offer-content__text {
    font-size: clamp(14px, 2vw, 18px);
  }
}
.special-offer-content__text .-big {
  font-size: clamp(20px, 3vw, 45px);
}
@media (max-width: 900px) {
  .special-offer-content__text .-big {
    font-size: clamp(14px, 2.5vw, 20px);
  }
}
.special-offer-content__text .-bg {
  margin-top: 2.5rem;
  display: block;
  width: 920px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  background: #827E7C;
  color: #fff;
}
@media (max-width: 900px) {
  .special-offer-content__text .-bg {
    width: 700px;
    margin-top: 1rem;
    max-width: 90%;
  }
}
.special-offer-content__img {
  margin-top: 3rem;
  text-align: center;
}
@media (max-width: 900px) {
  .special-offer-content__img {
    margin-top: 0;
  }
}
.special-offer-content__img img {
  max-width: 1128px;
  max-width: 80%;
}
.special-offer-content__bottom {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media (max-width: 900px) {
  .special-offer-content__bottom {
    max-width: 85%;
  }
}
.special-offer-content__bottom--attention {
  margin-top: 2rem;
  margin-left: 4rem;
}
@media (max-width: 900px) {
  .special-offer-content__bottom--attention {
    margin-top: 0;
    margin-left: 0;
  }
}
.special-offer-content__bottom--attention li {
  list-style: "※";
  font-size: clamp(12px, 1.8vw, 25px);
  font-weight: 900;
}
@media (max-width: 900px) {
  .special-offer-content__bottom--attention li {
    font-size: clamp(10px, 1.4vw, 12px);
  }
}

/*-----------------------------------------
item
-----------------------------------------*/
.item {
  padding: 13rem 0;
  position: relative;
}
@media (max-width: 900px) {
  .item {
    padding: 6rem 0;
  }
}
.item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(230px, 22vw, 440px);
  background: url(../images/deco_top.webp) no-repeat center center/cover;
}
@media (max-width: 900px) {
  .item::before {
    height: clamp(80px, 25vw, 230px);
  }
}
.item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(560px, 62vw, 1100px);
  background: url(../images/deco_bottom.webp) no-repeat center center/cover;
}
@media (max-width: 900px) {
  .item::after {
    height: clamp(200px, 61vw, 550px);
  }
}

.item-inner {
  width: 1326px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.item-title {
  text-align: center;
}
.item-title img {
  width: clamp(140px, 16vw, 204.44px);
}
@media (max-width: 900px) {
  .item-title img {
    width: clamp(70px, 22vw, 140px);
  }
}

.item__content {
  margin-top: 12.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .item__content {
    margin-top: 5rem;
  }
}

.item-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: clamp(1.5rem, 1.4vw, 3rem);
       column-gap: clamp(1.5rem, 1.4vw, 3rem);
  row-gap: 10rem;
  flex-wrap: wrap;
  grid-row-end: 2;
}

.item-list {
  display: flex;
  flex-direction: column;
}
.item-list a {
  transition: opacity 0.3s ease 0s;
}
.item-list a:hover {
  opacity: 0.6;
}
.item-list img {
  vertical-align: bottom;
  line-height: 1em;
  max-width: 308px;
}

.item-list__body {
  margin-top: 1.2rem;
  text-align: center;
  background: #000000;
  padding: 0.5rem 1rem;
  min-height: 140px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .item-list__body {
    padding: 0.5rem;
  }
}

.item-list__attention p {
  text-align: center;
  font-size: clamp(10px, 1.2vw, 14px);
  line-height: 1.8;
  color: #fff;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #fff;
}
@media (max-width: 900px) {
  .item-list__attention p {
    font-size: clamp(9px, 1.8vw, 18px);
  }
}
.item-list__attention p span {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: 700;
}

.item-list__body--item-name {
  margin-top: 1.4rem;
  font-size: clamp(11px, 1.2vw, 15px);
  font-weight: 700;
  color: #fff;
  padding-bottom: 1rem;
}
@media (max-width: 900px) {
  .item-list__body--item-name {
    font-size: clamp(10.8px, 1.8vw, 18px);
  }
}

.item-list__body--item-red {
  color: #e9373c;
  font-weight: 700;
  background: #fff;
}

.item-list__body--price {
  font-size: clamp(13px, 1.4vw, 21px);
  line-height: 1.4;
  font-weight: 700;
  margin-top: auto;
  color: #fff;
}
.item-list__body--price .-mid {
  font-size: clamp(9px, 1.2vw, 11px);
}
.item-list__body--price .-sm {
  font-size: clamp(8px, 1.2vw, 10px);
  padding-left: 0.5rem;
}

.item-list__body--price-dl {
  font-size: clamp(13px, 1.4vw, 21px);
  line-height: 1.4;
  font-weight: 700;
  margin-top: auto;
  color: #fff;
  width: 80%;
}
@media (max-width: 900px) {
  .item-list__body--price-dl {
    margin-left: auto;
    margin-right: auto;
  }
}

.item-list__body--price-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-list__body--price-row .-mid {
  width: 50%;
  font-size: clamp(9px, 1.2vw, 11px);
  text-align: right;
}
.item-list__body--price-row dd {
  text-align: right;
  width: 50%;
}
.item-list__body--price-row dd .-sm {
  font-size: clamp(8px, 1.2vw, 10px);
  padding-left: 0.5rem;
  text-align: right;
}

@media screen and (max-width: 960px) {
  .item-lists {
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    row-gap: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .item-lists {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .item-list__body--price-dl {
    width: 80%;
  }
}
@media screen and (max-width: 400px) {
  .item-list__body--price-dl {
    width: 100%;
  }
}
/*-----------------------------------------
notes
-----------------------------------------*/
.notes {
  padding: 13rem 0;
  position: relative;
  background: #7B070A;
}
@media (max-width: 900px) {
  .notes {
    padding: 6rem 0;
  }
}

.notes-inner {
  width: 1496px;
  max-width: 97%;
  margin-left: auto;
  margin-right: auto;
  padding: 23rem 12rem 18rem 4rem;
  -o-border-image: url(../images/notes_bg.webp) 400 fill/370px/0px round;
     border-image: url(../images/notes_bg.webp) 400 fill/370px/0px round;
}
@media (max-width: 900px) {
  .notes-inner {
    width: 100%;
    padding: 12rem 2rem 9rem 2rem;
    border-image-width: 200px;
    border-image-slice: 530 fill;
  }
}

.notes-title {
  text-align: center;
}
.notes-title img {
  width: clamp(270px, 20vw, 387px);
}
@media (max-width: 900px) {
  .notes-title img {
    width: clamp(140px, 30vw, 270px);
  }
}

.notes-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .notes-content ul {
    margin-left: 0;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.notes-content ul li {
  list-style: "・";
  font-size: clamp(16px, 1.6vw, 25px);
  line-height: 1.85;
  color: #fff;
  font-weight: 900;
}
@media (max-width: 900px) {
  .notes-content ul li {
    font-size: clamp(12px, 1.6vw, 15px);
    font-weight: 700;
  }
}

@media screen and (max-width: 600px) {
  .notes-inner {
    border-image-width: 37px;
    border-image-slice: 200 fill;
    padding: 7rem 2rem 7rem 2rem;
  }
}/*# sourceMappingURL=style.css.map */


.online-info {padding: 0;}
.online-info .f2{font-size: 1rem;}
.online-info .f2 dt, .add-online-info .f2 dd{text-align: left;}
#online dl {display: flex;width:80%; margin: 0 auto;font-size: clamp(16px, 1.6vw, 25px);font-weight:bold;}
#online dt {width: 20%;}
#online dd {width: 80%;}
#online .fb {text-align: center; padding: 2rem 0;font-size: 1.5rem;  line-height: 1.9rem;}
#online a {color: #551A8B;text-decoration: underline;}
.br710,.br440{display: none;}
.online-dl{margin-bottom: 3rem;}
/*@media screen and (max-width: 710px) {
	.br710{display: block;}
	#online dt{width: 100px;}
}*/
@media screen and (max-width: 710px) {
	.br710{display: block;}
	#online dt{width: 100px;}
	#online dl{display: block;text-align: center;margin-bottom: 1rem;}
	#online dt ,#online dd{margin: 0 auto;}
}
@media screen and (max-width: 440px) {
	.br440{display: block;}
}