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

.header {
  width: 100%;
  max-width: 1800px;
  background: #E7010F;
  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: #E7010F;
  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: #E7010F;
  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
-----------------------------------------*/
@media (max-width: 900px) {
  .mv {
    margin-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 4px rgb(255, 255, 255);
  color: #E7010F;
  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: #E7010F;
  background: #fff;
  line-height: 4.3rem;
  border: 3px solid #E7010F;
  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: #E7010F;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

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

/*-----------------------------------------
    event-summary
-----------------------------------------*/
.event-summary {
  margin-top: clamp(12px, 2vw, 50px);
  padding-top: 5rem;
  padding-bottom: clamp(80px, 17vw, 180px);
  position: relative;
  background: url(../images/redbg.png) no-repeat top center/cover;
}
.event-summary::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 17.5rem;
  background: url(../images/summary_bg.png) no-repeat top center/contain;
}

@media screen and (max-width: 1500px) {
  .event-summary:before {
    top: -2rem;
  }
}
@media screen and (max-width: 900px) {
  .event-summary {
    padding-top: 3rem;
  }
  .event-summary:before {
    top: 0;
    height: clamp(3.5rem, 9vw, 17.5rem);
  }
}
.summary-title {
  margin-top: -5rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.summary-title img {
  width: clamp(270px, 31vw, 550px);
}

@media screen and (max-width: 1600px) {
  .summary-title {
    margin-top: 0;
  }
}
.event-summaryInner {
  margin-top: -4rem;
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 6rem 0 5rem;
  box-shadow: 15px 15px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
  .event-summaryInner {
    margin-top: -2rem;
  }
}

.event-summaryContent {
  width: 83.7%;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .event-summaryContent {
    width: 100%;
  }
}
.event-summaryContent p {
  text-align: center;
  font-size: clamp(15px, 1.6vw, 24px);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .event-summaryContent p {
    letter-spacing: -0.08rem;
  }
}
.event-summaryContent__menu {
  margin-top: 4.5rem;
}
.event-summaryContent__menu--h3 {
  text-align: center;
}
.event-summaryContent__menu--h3 img {
  width: clamp(160px, 17vw, 278.57px);
}
.event-summaryContent__menu--img {
  margin-top: 3rem;
  text-align: center;
}
.event-summaryContent__menu--img img {
  max-width: 920px;
}
.event-summaryContent__present {
  margin-top: 3rem;
}
.event-summaryContent__present--head p {
  text-align: center;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 24px);
  line-height: 1.8;
}
.event-summaryContent__present--body {
  text-align: center;
}
.event-summaryContent__present--body img {
  max-width: 920px;
}

/*-----------------------------------------
schedule-online
-----------------------------------------*/
.schedule-online {
  margin-top: -7rem;
  padding-top: clamp(80px, 9vw, 160px);
  padding-bottom: clamp(80px, 17vw, 180px);
  position: relative;
  background: url(../images/bluebg.png) no-repeat top center/cover;
}
.schedule-online::before {
  content: "";
  position: absolute;
  top: -7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 17.5rem;
  background: url(../images/2ndbg.png) no-repeat top center/contain;
}
.schedule-online__inner {
  margin-top: -2rem;
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 6rem 0 5rem;
  box-shadow: 15px 15px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
  .schedule-online__inner {
    margin-top: 0;
  }
}
.schedule-online__content {
  width: 83.7%;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .schedule-online__content {
    width: 100%;
  }
}

@media screen and (max-width: 1500px) {
  .schedule-online {
    margin-top: -6rem;
  }
  .schedule-online:before {
    top: -5rem;
    height: clamp(3.5rem, 9vw, 17.5rem);
  }
}
@media screen and (max-width: 900px) {
  .schedule-online {
    margin-top: -5rem;
    padding-bottom: clamp(100px, 17vw, 180px);
  }
  .schedule-online:before {
    top: -3rem;
  }
}
@media screen and (max-width: 600px) {
  .schedule-online:before {
    top: 0rem;
  }
}
.schedule-title {
  margin-top: -17rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.schedule-title img {
  width: clamp(270px, 31vw, 550px);
}
@media (max-width: 900px) {
  .schedule-title {
    margin-top: -7rem;
  }
}

@media screen and (max-width: 600px) {
  .schedule-title {
    margin-top: -5rem;
  }
}
/*-----------------
event-schedule
-------------------*/
.event-schedule-content__item {
  max-width: 530px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.event-schedule-content__item--dl {
  margin: 0;
}
.event-schedule-content__item--row {
  display: flex;
  align-items: flex-start;
}
.event-schedule-content__item--row:not(:first-child) {
  margin-top: 0.2rem;
}
.event-schedule-content__item--dt {
  width: 120px;
  font-size: clamp(12px, 1.6vw, 18px);
}
@media (max-width: 900px) {
  .event-schedule-content__item--dt {
    width: 80px;
    font-size: clamp(12px, 1.6vw, 18px);
  }
}
.event-schedule-content__item--dd {
  margin: 0;
  width: calc(100% - 120px);
  font-size: clamp(12px, 1.3vw, 16px);
}
@media (max-width: 900px) {
  .event-schedule-content__item--dd {
    width: calc(100% - 80px);
    font-size: clamp(12px, 1.8vw, 16px);
  }
}
.event-schedule-content__item--dd a {
  color: #182293;
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
.event-schedule-content__item--dd a:hover {
  opacity: 0.6;
}

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

.online-title {
  position: relative;
  z-index: 2;
  text-align: center;
}
.online-title img {
  width: clamp(230px, 32vw, 316px);
}

.online-content {
  margin-top: 1.8rem;
}
.online-content__item {
  max-width: 530px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.online-content__item--dl {
  margin: 0;
}
.online-content__item--row {
  display: flex;
  align-items: flex-start;
}
.online-content__item--row:not(:first-child) {
  margin-top: 0.2rem;
}
.online-content__item--dt {
  width: 120px;
  font-size: clamp(12px, 1.6vw, 18px);
}
@media (max-width: 900px) {
  .online-content__item--dt {
    width: 80px;
    font-size: clamp(12px, 1.6vw, 18px);
  }
}
.online-content__item--dd {
  margin: 0;
  width: calc(100% - 120px);
  font-size: clamp(12px, 1.3vw, 16px);
}
@media (max-width: 900px) {
  .online-content__item--dd {
    width: calc(100% - 80px);
    font-size: clamp(12px, 1.8vw, 16px);
  }
}
.online-content__item--dd a {
  color: #182293;
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
.online-content__item--dd a:hover {
  opacity: 0.6;
}
.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, 2.2vw, 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;
  text-align: center;
}
.online-content__present--banner img {
  max-width: 600px;
  width: 80%;
}
@media (max-width: 900px) {
  .online-content__present--banner img {
    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%;
  }
}

/*-----------------------------------------
    x
-----------------------------------------*/
.x {
  margin-top: -8rem;
  padding-top: clamp(80px, 10vw, 160px);
  padding-bottom: clamp(50px, 3vw, 110px);
  position: relative;
  background: url(../images/greenbg.png) no-repeat top 9rem center/cover;
}
.x::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  height: 17.5rem;
  background: url(../images/3rdbg.png) no-repeat top center/contain;
}
.x__title {
  margin-top: -14rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.x__title img {
  width: clamp(270px, 31vw, 550px);
}
.x__content {
  margin-top: 2.5rem;
  width: 400px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  background: #8653A3;
  padding: 1.8rem 3rem 1.5rem;
}
.x__contentInner--title {
  text-align: center;
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 700;
  color: #fff;
}
.x__contentMedia {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding-top: 4.7rem;
}
.x__contentMedia--p {
  text-align: center;
  font-size: clamp(12px, 1.3vw, 18px);
}
.x__contentMedia--bottom {
  margin-top: 3rem;
  margin-bottom: 50px;
  text-align: center;
  font-size: clamp(12px, 1.3vw, 18px);
}
@media (max-width: 900px) {
  .x__contentMedia--bottom {
    margin-top: 2rem;
    margin-bottom: 30px;
  }
}
.x__contentMedia--bottom a {
  color: #1A0DAB;
  text-decoration: underline;
}

@media screen and (max-width: 1500px) {
  .x {
    margin-top: -7rem;
  }
  .x:before {
    height: clamp(3.5rem, 9vw, 17.5rem);
  }
}
@media screen and (max-width: 900px) {
  .x {
    margin-top: -4rem;
    background-position: top 4rem center;
  }
  .x:before {
    top: -3rem;
  }
  .x__title {
    margin-top: -8rem;
  }
}
@media screen and (max-width: 600px) {
  .x:before {
    top: -2rem;
  }
}
/*-----------------------------------------
special-offer
-----------------------------------------*/
.special-offer {
  margin-top: 2rem;
  padding-top: clamp(60px, 9vw, 80px);
  padding-bottom: clamp(80px, 17vw, 140px);
  position: relative;
  background: url(../images/purplebg.png) no-repeat top center/cover;
}
.special-offer::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 17.5rem;
  background: url(../images/4th.png) no-repeat top left/contain;
}

@media screen and (max-width: 1500px) {
  .special-offer {
    margin-top: 4rem;
  }
  .special-offer:before {
    height: clamp(3.5rem, 9vw, 17.5rem);
  }
}
@media screen and (max-width: 600px) {
  .special-offer:before {
    top: -1rem;
  }
}
.special-offer-inner {
  margin-top: -2rem;
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 4.5rem 0 5rem;
  box-shadow: 15px 15px 20px 0px rgba(0, 0, 0, 0.1);
}

.offer-title {
  margin-top: -9rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.offer-title img {
  width: clamp(270px, 31vw, 550px);
}
@media (max-width: 900px) {
  .offer-title {
    margin-top: -6rem;
  }
}

.special-offer-content {
  width: 90%;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .special-offer-content {
    margin-top: 1.5rem;
  }
}
.special-offer-content__text {
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 24px);
}
@media (max-width: 900px) {
  .special-offer-content__text {
    font-weight: 600;
    font-size: clamp(14px, 2.8vw, 23px);
  }
}
.special-offer-content p {
  margin-top: 2rem;
  text-align: center;
  font-size: clamp(14px, 1.8vw, 18px);
}
.special-offer-content__img {
  margin-top: 3rem;
  text-align: center;
}
.special-offer-content__img img {
  max-width: 920px;
}
.special-offer-content__bottom {
  width: clamp(650px, 39vw, 70rem);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .special-offer-content__bottom {
    width: 100%;
    padding-left: 1rem;
  }
}
.special-offer-content__bottom--attention {
  margin-top: 4rem;
  color: #fff;
}
@media (max-width: 900px) {
  .special-offer-content__bottom--attention {
    margin-top: 2rem;
  }
}
.special-offer-content__bottom--attention li {
  list-style: "※";
  font-size: clamp(12px, 1.4vw, 18px);
}
@media (max-width: 900px) {
  .special-offer-content__bottom--attention li {
    font-size: clamp(12px, 2.4vw, 18px);
  }
}

@media screen and (max-width: 500px) {
  .special-offer-content__text--attention {
    margin-top: 1rem;
  }
}
/*-----------------------------------------
item
-----------------------------------------*/
.item {
  margin-top: -2rem;
  padding-top: clamp(80px, 9vw, 160px);
  padding-bottom: clamp(110px, 17vw, 180px);
  position: relative;
  background: url(../images/yellowbg.png) no-repeat top center/cover;
}
.item::before {
  content: "";
  position: absolute;
  top: -10rem;
  left: 54%;
  transform: translateX(-50%);
  width: 90%;
  height: 16.5rem;
  background: url(../images/5th.png) no-repeat top center/contain;
}

@media screen and (max-width: 1300px) {
  .item:before {
    top: -8rem;
    height: clamp(3.5rem, 9vw, 17.5rem);
  }
}
@media screen and (max-width: 900px) {
  .item {
    margin-top: -4rem;
  }
  .item:before {
    top: -2rem;
  }
}
@media screen and (max-width: 600px) {
  .item:before {
    top: 0;
  }
}
@media screen and (max-width: 400px) {
  .item:before {
    top: 1rem;
  }
}
.item-inner {
  margin-top: -2rem;
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 4.5rem 0 5rem;
  box-shadow: 15px 15px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
  .item-inner {
    margin-top: -1rem;
  }
}

.item-title {
  margin-top: -17rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.item-title img {
  width: clamp(270px, 31vw, 550px);
}
@media (max-width: 900px) {
  .item-title {
    margin-top: -6rem;
  }
}

@media screen and (max-width: 400px) {
  .item-title {
    margin-top: -3rem;
  }
}
.item__content {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.item-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: clamp(1.5rem, 1.4vw, 3rem);
       column-gap: clamp(1.5rem, 1.4vw, 3rem);
  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;
  max-width: 200px;
}

.item-list__attention {
  margin-top: 0.5rem;
  padding: 3rem 0 3rem;
  background: url(../images/item_flame.png) no-repeat center center/contain;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .item-list__attention {
    padding: 2rem 0 2rem;
  }
}
.item-list__attention p {
  text-align: center;
  font-size: clamp(12px, 1.2vw, 18px);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .item-list__attention p {
    font-size: clamp(9px, 1.8vw, 18px);
  }
}

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

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

.item-list__body--price {
  margin-top: 2.5rem;
  font-size: clamp(11px, 1.4vw, 16px);
  line-height: 1.4;
}

@media screen and (max-width: 960px) {
  .item-lists {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .item-lists {
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    row-gap: 1.5rem;
  }
}
@media screen and (max-width: 400px) {
  .item-lists {
    grid-template-columns: 1fr 1fr;
  }
}
/*-----------------------------------------
notes
-----------------------------------------*/
.notes {
  margin-top: 7rem;
  padding-top: clamp(60px, 9vw, 80px);
  padding-bottom: clamp(60px, 5vw, 180px);
  position: relative;
  background: url(../images/pinkbg.png) no-repeat top center/cover;
}
.notes::before {
  content: "";
  position: absolute;
  top: -15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 17.5rem;
  background: url(../images/6th.png) no-repeat top left/contain;
}
.notes::after {
  content: "";
  position: absolute;
  bottom: -4.5rem;
  right: 3%;
  width: 56%;
  height: 10.5rem;
  background: url(../images/7th.png) no-repeat top left/contain;
}

@media screen and (max-width: 1300px) {
  .notes:before {
    height: clamp(3.5rem, 9vw, 17.5rem);
  }
}
@media screen and (max-width: 900px) {
  .notes {
    margin-top: 0;
  }
  .notes:before {
    top: -6rem;
  }
  .notes::after {
    height: 5.5rem;
    bottom: -2rem;
  }
}
@media screen and (max-width: 600px) {
  .notes {
    padding-bottom: clamp(110px, 5vw, 180px);
  }
  .notes:before {
    top: -4rem;
  }
  .notes::after {
    height: 5.5rem;
    bottom: -2rem;
  }
}
@media screen and (max-width: 400px) {
  .notes {
    margin-top: -6rem;
  }
  .notes:before {
    top: -2rem;
  }
  .notes::after {
    width: 73%;
  }
}
.notes-inner {
  margin-top: -2rem;
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  box-shadow: 15px 15px 20px 0px rgba(0, 0, 0, 0.1);
}

.notes-title {
  margin-top: -11%;
  position: relative;
  z-index: 2;
  text-align: center;
}
.notes-title img {
  width: clamp(270px, 31vw, 550px);
}

.notes-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 2rem;
}
.notes-content ul {
  margin-top: 0.5rem;
  margin-left: -1rem;
}
@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(13px, 1.1vw, 16px);
  line-height: 1.85;
  letter-spacing: -0.05rem;
}/*# sourceMappingURL=style.css.map */