@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 {
  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;
}

.main-bg {
  margin-top: -1px;
  position: relative;
  background: url(../images/orange-bg.png) repeat top center/contain;
  z-index: 1;
}
.main-bg:before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: clamp(17rem, 10vw, 25rem);
  height: 100%;
  background: url(../images/orange_left.png) repeat-y top center/contain;
  z-index: -1;
}
@media (max-width: 900px) {
  .main-bg:before {
    width: clamp(6rem, 10vw, 17rem);
  }
}
.main-bg:after {
  content: "";
  top: 0;
  right: 0;
  position: absolute;
  width: clamp(17rem, 10vw, 25rem);
  height: 100%;
  background: url(../images/orange_right.png) repeat-y top center/contain;
  z-index: -1;
}
@media (max-width: 900px) {
  .main-bg:after {
    width: clamp(6rem, 10vw, 17rem);
  }
}

.header {
  width: 100%;
  max-width: 1800px;
  height: clamp(160px, 14vw, 205px);
  background: url(../images/orange_bg.png) no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: sticky;
  padding: 0 2rem;
  top: 0;
  z-index: 100;
}
@media (max-width: 900px) {
  .header {
    height: 0;
    width: 100%;
    background: transparent;
  }
}

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

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

.header__nav-right {
  margin-left: 0rem;
}

.header__logo {
  width: clamp(80px, 12vw, 200px);
}
@media (max-width: 900px) {
  .header__logo {
    display: none;
  }
}

.header__left {
  margin-top: 2rem;
  width: clamp(430px, 45vw, 770px);
  -o-border-image: url(../images/flagleft.png) 100 fill/100px/0px round;
     border-image: url(../images/flagleft.png) 100 fill/100px/0px round;
}
@media (max-width: 900px) {
  .header__left {
    display: none;
  }
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: center;
  -o-border-image: url(../images/flagright.png) 100 fill/100px/0px round;
     border-image: url(../images/flagright.png) 100 fill/100px/0px round;
  padding-top: clamp(80px, 5vw, 9rem);
  padding-bottom: clamp(100px, 6vw, 10rem);
  width: clamp(430px, 43vw, 750px);
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .header__right {
    display: none;
  }
}

.header-nav {
  display: flex;
  align-items: center;
}
.header-nav__left, .header-nav__right {
  display: flex;
  align-items: center;
}
.header-nav__left li, .header-nav__right li {
  font-size: clamp(12px, 1.3vw, 18px);
  position: relative;
  line-height: 1.2;
}
.header-nav__left li:first-child, .header-nav__right li:first-child {
  padding-right: 2rem;
}
.header-nav__left li:not(:first-child), .header-nav__right li:not(:first-child) {
  padding: 2rem;
}
.header-nav__left li span, .header-nav__right li span {
  font-size: clamp(10px, 0.7vw, 14px);
  font-weight: 300;
  margin-top: 0.3rem;
  display: block;
}
.header-nav__left a, .header-nav__right a {
  color: #784726;
  display: inline-block;
  text-align: center;
  line-height: 1;
  transition: opacity 0.3s ease 0s;
}
.header-nav__left a:hover, .header-nav__right a:hover {
  opacity: 0.6;
}
.header-nav__left {
  padding-top: clamp(100px, 4vw, 7rem);
  padding-bottom: clamp(120px, 6.5vw, 11rem);
}
.header-nav__left li:nth-child(1) {
  margin-top: 30px;
}
.header-nav__left li:nth-child(3) {
  margin-top: -40px;
}
.header-nav__right li:nth-child(1) {
  margin-top: -30px;
}
.header-nav__right li:nth-child(2) {
  margin-top: -10px;
}
.header-nav__right li:nth-child(3) {
  margin-top: 10px;
}

@media screen and (max-width: 1240px) {
  .header-nav__left, .header-nav__right {
    display: flex;
    align-items: center;
  }
  .header-nav__left li:not(:first-child), .header-nav__right li:not(:first-child) {
    padding: 1rem 1rem 2rem;
  }
  .header__nav-right {
    margin-left: -5rem;
  }
}
.header__sns {
  margin-left: clamp(0.5rem, 1.3vw, 6rem);
  display: flex;
}
@media (max-width: 900px) {
  .header__sns {
    display: none;
  }
}
.header__sns li:nth-child(1) {
  margin-top: 50px;
}
.header__sns li:nth-child(2) {
  margin-top: 55px;
}
.header__sns li:nth-child(3) {
  margin-top: 60px;
}
.header__sns li:not(:first-child) {
  margin-left: clamp(0.5rem, 1vw, 3rem);
}
.header__sns a {
  display: block;
  width: clamp(26px, 2vw, 32px);
  transition: opacity 0.3s ease 0s;
}
.header__sns a:hover {
  opacity: 0.6;
}

/*-----------------------------------------
    //drawer
-----------------------------------------*/
.drawer__icon {
  position: fixed;
  top: 1.7rem;
  right: 1rem;
  z-index: 101;
  width: 4rem;
  height: 4rem;
  background: #784726;
  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: #784726;
  display: none;
  overflow-y: scroll;
}

.drawer__content--in {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.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-content {
  vertical-align: bottom;
  line-height: 1em;
}
.mv-content img {
  vertical-align: bottom;
  line-height: 1em;
}

.pc-only {
  display: block;
}

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

@media screen and (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: 2rem;
  bottom: 10rem;
  z-index: 20;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
@media (max-width: 900px) {
  .to-top {
    right: 0.5rem;
    bottom: 5rem;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top .to-top__icon img {
  width: 5.2em;
  transition: all 0.3s ease 0s;
}
.to-top .to-top__icon img:hover {
  opacity: 0.7;
}
@media (max-width: 900px) {
  .to-top .to-top__icon img {
    width: 4.2em;
  }
}

.footer {
  width: 100%;
  height: 80px;
  background: #784726;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: -290%;
  left: 6%;
  width: clamp(3.5rem, 6vw, 11rem);
  height: clamp(3.5rem, 6vw, 11rem);
  background: url(../images/starfooter-left.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 900px) {
  .footer::before {
    top: -94%;
  }
}
@media (max-width: 900px) {
  .footer {
    height: 51px;
  }
}

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

/*-----------------------------------------
    event-summary
-----------------------------------------*/
.event-summary {
  padding-top: 8rem;
}
@media (max-width: 900px) {
  .event-summary {
    padding-top: 6rem;
  }
}

.event-summaryInner {
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  -o-border-image: url(../images/summary_flame.png) 100 fill/100px/0px round;
     border-image: url(../images/summary_flame.png) 100 fill/100px/0px round;
  padding-top: clamp(9rem, 7vw, 11rem);
  padding-bottom: 12rem;
}

.summary-title {
  width: clamp(245px, 32vw, 460px);
  margin-left: auto;
  margin-right: auto;
}

.event-summaryContent {
  max-width: 920px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.event-summaryContent p {
  margin-top: 4.5rem;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 900px) {
  .event-summaryContent p {
    letter-spacing: -0.08rem;
    line-height: 1.8;
    margin-top: 2.5rem;
    font-size: clamp(15px, 2.6vw, 18px);
  }
}
@media (max-width: 900px) {
  .event-summaryContent {
    margin-top: 1rem;
  }
}
.event-summaryContent__menu {
  margin-top: 4.6rem;
}
@media (max-width: 900px) {
  .event-summaryContent__menu {
    margin-top: 3.6rem;
  }
}
.event-summaryContent__menu--h3 {
  width: clamp(220px, 10vw, 306px);
  margin-left: auto;
  margin-right: auto;
}
.event-summaryContent__menu--img {
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .event-summaryContent__menu--img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
  }
}
.event-summaryContent__present {
  margin-top: 5rem;
}
.event-summaryContent__present--head {
  position: relative;
}
.event-summaryContent__present--head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 12px;
  background: url(../images/cafe_border.png) no-repeat center center/contain;
}
.event-summaryContent__present--head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 12px;
  background: url(../images/cafe_border.png) no-repeat center center/contain;
}
.event-summaryContent__present--head p {
  padding: 2.2rem 0;
  text-align: center;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 400;
}
.event-summaryContent__present--body {
  margin-top: -1rem;
}

@media screen and (max-width: 1240px) {
  .event-summaryInner {
    border-image-width: 70px;
  }
  .event-summaryContent {
    width: 77%;
  }
}
@media screen and (max-width: 900px) {
  .event-summaryInner {
    border-image-width: 53px;
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}
@media screen and (max-width: 540px) {
  .event-summaryContent p {
    font-size: clamp(13px, 2.8vw, 18px);
  }
}
/*-----------------------------------------
schedule-online
-----------------------------------------*/
.schedule-online {
  padding-top: 8rem;
}
@media (max-width: 900px) {
  .schedule-online {
    padding-top: 6rem;
  }
}
.schedule-online__inner {
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  -o-border-image: url(../images/summary_flame.png) 100 fill/100px/0px round;
     border-image: url(../images/summary_flame.png) 100 fill/100px/0px round;
  padding-top: clamp(6rem, 6vw, 10rem);
  padding-bottom: 11rem;
}
.schedule-online__content {
  max-width: 920px;
  width: 77%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1240px) {
  .schedule-online__inner {
    border-image-width: 70px;
  }
}
@media screen and (max-width: 900px) {
  .schedule-online__inner {
    border-image-width: 53px;
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}
/*-----------------
event-schedule
-------------------*/
.schedule-title {
  width: clamp(230px, 31vw, 440px);
  margin-left: auto;
  margin-right: auto;
}

.event-schedule-content {
  margin-top: 4rem;
}
@media (max-width: 900px) {
  .event-schedule-content {
    margin-top: clamp(50px, 16vw, 80px);
  }
}
.event-schedule-content__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.5rem 0 4.5rem;
  border: 4px solid #AA6B23;
  border-radius: 1.1rem;
  width: clamp(550px, 60vw, 745px);
  margin-left: auto;
  padding-left: 4rem;
}
@media (max-width: 900px) {
  .event-schedule-content__item {
    width: 96%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: clamp(50px, 10vw, 80px);
    margin-left: auto;
    margin-right: auto;
  }
}
.event-schedule-content__iteminner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .event-schedule-content__iteminner {
    display: block;
  }
}
.event-schedule-content__itemleft {
  position: absolute;
  top: 50%;
  left: -19rem;
  transform: translateY(-50%);
  width: clamp(215px, 23vw, 372px);
}
@media (max-width: 900px) {
  .event-schedule-content__itemleft {
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(185px, 21vw, 215px);
  }
}
.event-schedule-content__itemright {
  margin-left: 4rem;
}
@media (max-width: 900px) {
  .event-schedule-content__itemright {
    margin-left: 0;
    margin-top: 2rem;
  }
}
.event-schedule-content__itemright--dl {
  margin: 0;
}
.event-schedule-content__itemright--row {
  display: flex;
  align-items: flex-start;
}
.event-schedule-content__itemright--row:not(:first-child) {
  margin-top: 0.2rem;
}
.event-schedule-content__itemright--dt {
  width: 110px;
  font-size: clamp(12px, 1.3vw, 16px);
}
@media (max-width: 900px) {
  .event-schedule-content__itemright--dt {
    width: 95px;
    font-size: clamp(13px, 1.8vw, 16px);
  }
}
.event-schedule-content__itemright--dd {
  margin: 0;
  width: calc(100% - 110px);
  font-size: clamp(12px, 1.3vw, 16px);
}
@media (max-width: 900px) {
  .event-schedule-content__itemright--dd {
    width: calc(100% - 90px);
    font-size: clamp(12px, 1.8vw, 16px);
  }
}
.event-schedule-content__itemright--dd a {
  color: #1A0DAB;
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
.event-schedule-content__itemright--dd a:hover {
  opacity: 0.6;
}

/*-----------------------------------------
online
-----------------------------------------*/
.online {
  padding-top: 5rem;
}

.online-title {
  width: clamp(240px, 32vw, 440px);
  margin-left: auto;
  margin-right: auto;
}

.online-content {
  margin-top: 4rem;
}
@media (max-width: 900px) {
  .online-content {
    margin-top: clamp(50px, 16vw, 80px);
  }
}
.online-content__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 3.5rem 3rem 4.5rem;
  border: 4px solid #AA6B23;
  border-radius: 1.1rem;
  width: clamp(550px, 60vw, 745px);
  margin-left: auto;
  padding-left: 4rem;
}
@media (max-width: 900px) {
  .online-content__item {
    width: 96%;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: clamp(60px, 23vw, 80px);
    margin-left: auto;
    margin-right: auto;
  }
}
.online-content__itemContent--left {
  position: absolute;
  top: 50%;
  left: -19rem;
  transform: translateY(-50%);
  width: clamp(215px, 23vw, 372px);
}
@media (max-width: 900px) {
  .online-content__itemContent--left {
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(185px, 21vw, 215px);
  }
}
.online-content__itemContent--right {
  margin-left: 4rem;
}
@media (max-width: 900px) {
  .online-content__itemContent--right {
    margin-left: 0;
    margin-top: 2rem;
  }
}
.online-content__itemContent--dl {
  margin: 0;
}
.online-content__itemContent--row {
  display: flex;
  align-items: flex-start;
}
.online-content__itemContent--row:not(:first-child) {
  margin-top: 0.2rem;
}
.online-content__itemContent--dt {
  margin: 0;
  font-size: clamp(12px, 1.3vw, 16px);
  width: 110px;
}
@media (max-width: 900px) {
  .online-content__itemContent--dt {
    width: 95px;
    font-size: clamp(13px, 1.8vw, 16px);
  }
}
.online-content__itemContent--dd {
  margin: 0;
  font-size: clamp(12px, 1.3vw, 16px);
  width: calc(100% - 110px);
}
@media (max-width: 900px) {
  .online-content__itemContent--dd {
    width: calc(100% - 90px);
    font-size: clamp(12px, 1.8vw, 16px);
  }
}
.online-content__itemContent--dd a {
  color: #1A0DAB;
  text-decoration: underline;
}
.online-content__present {
  margin-top: 4rem;
}
.online-content__present--caption {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.08rem;
}
@media (max-width: 900px) {
  .online-content__present--caption {
    font-size: clamp(14px, 3.5vw, 24px);
  }
}
.online-content__present--caption span {
  letter-spacing: -0.01rem;
}
.online-content__present--ul {
  width: 1000px;
  margin-top: 2rem;
  margin-left: clamp(5rem, 6vw, 11rem);
}
@media (max-width: 900px) {
  .online-content__present--ul {
    width: 87%;
    margin-left: auto;
    margin-right: auto;
  }
}
.online-content__present--ul li {
  list-style: "※";
  font-size: clamp(13px, 1.3vw, 18px);
  letter-spacing: -0.1rem;
  font-weight: 500;
}
.online-content__present--ul li:not(:first-child) {
  margin-top: 0.2rem;
}
.online-content__present--ul li a {
  color: #1A0DAB;
  letter-spacing: 0.01rem;
  text-decoration: underline;
}
.online-content__present--banner {
  margin-top: 3rem;
  max-width: 600px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .online-content__present--banner {
    width: 95%;
  }
}
.online-content__present--bannerAttention {
  margin-top: 2.5rem;
  font-size: clamp(13px, 1.3vw, 18px);
  letter-spacing: -0.1rem;
  font-weight: 500;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .online-content__present--bannerAttention {
    width: 95%;
  }
}
.online-content__media {
  max-width: clamp(390px, 43vw, 506px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -o-border-image: url(../images/x-flame.png) 100 fill/100px/0px round;
     border-image: url(../images/x-flame.png) 100 fill/100px/0px round;
}
@media (max-width: 900px) {
  .online-content__media {
    margin-top: 2rem;
    width: clamp(236px, 36vw, 360px);
    border-image-slice: 144 fill;
    border-image-width: 80px;
  }
}
.online-content__mediaInner--title {
  margin-top: clamp(65px, 5vw, 80px);
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .online-content__mediaInner--title {
    margin-top: clamp(50px, 5vw, 80px);
    font-size: clamp(14px, 4vw, 18px);
  }
}
.online-content__mediaContentMedia {
  margin-top: 1rem;
}
.online-content__mediaContentMedia--p {
  text-align: center;
  font-size: clamp(14px, 1.3vw, 18px);
}
.online-content__mediaContentMedia--bottom {
  margin-top: 2.3rem;
  margin-bottom: 50px;
  text-align: center;
  font-size: clamp(14px, 1.3vw, 18px);
}
@media (max-width: 900px) {
  .online-content__mediaContentMedia--bottom {
    margin-top: 1.3rem;
  }
}
.online-content__mediaContentMedia--bottom a {
  color: #1A0DAB;
  text-decoration: underline;
}

/*-----------------------------------------
special-offer
-----------------------------------------*/
.special-offer {
  padding-top: 8rem;
  position: relative;
}
@media (max-width: 900px) {
  .special-offer {
    padding-top: 5rem;
  }
}

.special-offer-inner {
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  -o-border-image: url(../images/offers_flame.png) 100 fill/100px/0px round;
     border-image: url(../images/offers_flame.png) 100 fill/100px/0px round;
  padding-top: 12rem;
  padding-bottom: 15rem;
}
@media (max-width: 900px) {
  .special-offer-inner {
    width: 100%;
  }
}

.offer-title {
  width: clamp(240px, 31vw, 415px);
  margin-left: auto;
  margin-right: auto;
}

.special-offer-content {
  max-width: 920px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.special-offer-content__text {
  margin-top: 5rem;
}
@media (max-width: 900px) {
  .special-offer-content__text {
    margin-top: 2rem;
  }
}
.special-offer-content__text--lead {
  text-align: center;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.09rem;
}
@media (max-width: 900px) {
  .special-offer-content__text--lead {
    font-weight: 600;
    font-size: clamp(14px, 3.5vw, 24px);
  }
}
.special-offer-content__text--attention {
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 900px) {
  .special-offer-content__text--attention {
    margin-top: 2rem;
  }
}
.special-offer-content__text--attention p {
  font-size: clamp(12px, 1.8vw, 18px);
}
@media (max-width: 900px) {
  .special-offer-content__text--attention p {
    font-size: clamp(12px, 2.8vw, 18px);
  }
}
.special-offer-content__img {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
}
@media (max-width: 900px) {
  .special-offer-content__img {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 1240px) {
  .special-offer-inner {
    border-image-width: 70px;
  }
  .special-offer-content {
    width: 77%;
  }
}
@media screen and (max-width: 900px) {
  .special-offer-inner {
    border-image-slice: 121 fill;
    border-image-width: 65px;
    padding-top: 8rem;
    padding-bottom: 7rem;
  }
}
@media screen and (max-width: 500px) {
  .special-offer-content__text--attention {
    margin-top: 1rem;
  }
  .special-offer-content {
    width: 74%;
  }
}
/*-----------------------------------------
item
-----------------------------------------*/
.item {
  padding-top: 8rem;
}
@media (max-width: 900px) {
  .item {
    padding-top: 6rem;
  }
}

.item-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 95%;
  -o-border-image: url(../images/item_flame.png) 100 fill/100px/0px round;
     border-image: url(../images/item_flame.png) 100 fill/100px/0px round;
  padding-top: 10rem;
  padding-bottom: 15rem;
}

.item-title {
  width: clamp(120px, 15vw, 225px);
  margin-left: auto;
  margin-right: auto;
}

.item__content {
  margin-top: 2rem;
  max-width: 1040px;
  width: 87%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .item__content {
    margin-top: 1rem;
  }
}

.item-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 2.5rem;
  flex-wrap: wrap;
  grid-row-end: 2;
}

.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;
}

.item-list__attention {
  margin-top: 0.5rem;
  padding: 0.7rem 0 0.5rem;
  background: #AA6B23;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  color: #fff;
}
.item-list__attention p {
  text-align: center;
  font-size: clamp(12px, 1.6vw, 18px);
}
@media (max-width: 900px) {
  .item-list__attention p {
    font-size: clamp(9px, 2.6vw, 18px);
  }
}

.item-list__body {
  margin-top: 1.2rem;
  text-align: center;
}

.item-list__body--item-name {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: -0.1rem;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .item-list__body--item-name {
    font-size: clamp(10.8px, 3.3vw, 18px);
  }
}

.item-list__body--price {
  margin-top: 1.5rem;
  font-size: clamp(12px, 2vw, 16px);
}
@media (max-width: 900px) {
  .item-list__body--price {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 1240px) {
  .item-inner {
    border-image-width: 70px;
  }
  .item__content {
    width: 83%;
  }
  .item-lists {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 960px) {
  .item-lists {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  .item-inner {
    border-image-slice: 118 fill;
    border-image-width: 60px;
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
  .item__content {
    width: 71%;
  }
  .item-lists {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 0.7rem;
         column-gap: 0.7rem;
    row-gap: 1.5rem;
  }
}
/*-----------------------------------------
notes
-----------------------------------------*/
.notes {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 900px) {
  .notes {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
}

.notes-inner {
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  -o-border-image: url(../images/notesflame.png) 100 fill/100px/0px round;
     border-image: url(../images/notesflame.png) 100 fill/100px/0px round;
  padding-top: 11rem;
  padding-bottom: 12rem;
}

.notes-title {
  width: clamp(140px, 19vw, 260px);
  margin-left: auto;
  margin-right: auto;
}

.notes-content {
  max-width: 920px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.notes-content ul {
  margin-top: 2rem;
}
.notes-content li {
  list-style: disc;
  font-size: clamp(13px, 1.3vw, 18px);
  line-height: 1.4;
}

@media screen and (max-width: 1240px) {
  .notes-inner {
    border-image-width: 70px;
  }
  .notes-content {
    width: 77%;
  }
}
@media screen and (max-width: 900px) {
  .notes-inner {
    border-image-slice: 120 fill;
    border-image-width: 62px;
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
  .notes-content {
    width: 67%;
  }
}/*# sourceMappingURL=style.css.map */

.size{font-size: 2rem!important;text-align: left!important;font-weight: normal!important;margin-top: 0!important;}
@media screen and (max-width: 600px) {
	.size{font-size: 1.4rem!important;}
}

.entry{border: 4px solid #AA6B23;margin: 4rem auto 1rem;padding: 4rem 6rem 3rem;}
.entry span.red{color: red;}
.entry span.bold{font-weight: 600;}
.entry h4{font-size: clamp(18px, 1.8vw, 24px);font-weight: bold;text-align: center;padding-bottom: 2rem;}
.entry h5{font-size: clamp(18px, 1.6vw, 22px);font-weight: bold;text-align: center;padding-bottom: 1rem;}
.entry p{padding-bottom: 1.5rem;}
.entry .entry-schedule{display: table;margin: 0 auto;font-size: clamp(18px, 1.6vw, 22px);}
.entry .entry-text{font-size: clamp(12px, 1.3vw, 16px);}
.entry a {color: #1A0DAB;text-decoration: underline;}
.br800{display: none;}

@media screen and (max-width: 900px) {
	.entry{padding: 3rem;}
	.entry .entry-schedule{font-size: clamp(16px, 1.6vw, 22px);}
	.entry .entry-text{font-size: clamp(14px, 1.8vw, 16px);}
}
@media screen and (max-width: 800px) {
	.br800{display: block;}
}
.br420{display: none;}
@media screen and (max-width: 740px) {
	.entry h5{font-size: clamp(17px, 1.6vw, 22px);}
}
@media screen and (max-width: 600px) {
	.entry{padding: 3rem 1rem;}
	.entry .entry-schedule{text-align: center;}
	.entry{border: none;border-top: 4px dotted #AA6B23;border-bottom: 4px dotted #AA6B23;padding: 3rem 0;}
}
@media screen and (max-width: 420px) {
	.br420{display: block;}
}
