@charset "UTF-8";
/*-----------------------------------------
    color
-----------------------------------------*/
/*-----------------------------------------
    font
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Murecho:wght@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: "Murecho", sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: #FFFFFF;
  color: #231815;
  overflow-x: hidden;
}

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

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

li {
  list-style: none;
}

.header {
  width: 100%;
  max-width: 1800px;
  /*height: 61px;*/
	height: 145px;
  background: #FFFFFF;
  position: sticky;
  /*display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;*/
	padding: 0 2rem ;
  top: 0;
  z-index: 100;
}
@media (max-width: 900px) {
  .header {
    height: 0;
    background: transparent;
  }
}

.header__inner {
  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;
}
.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 {
  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;
  width: clamp(26px, 2vw, 32px);
  transition: opacity 0.3s ease 0s;
}
.header__sns a:hover {
  opacity: 0.6;
}

/*-----------------------------------------
    //drawer
-----------------------------------------*/
.drawer__icon {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 101;
  width: 4rem;
  height: 4rem;
  background: #FFFFFF;
  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: #8a6a4d;
  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: #FFFFFF;
  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 #8a6a4d;
}
.drawer-nav li span {
  display: block;
  font-size: clamp(12px, 2vw, 16px);
}
.drawer-nav a {
  padding: 2rem 0;
  display: block;
}

.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;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv-content img {
  /*width: 50vw;*/
  vertical-align: bottom;
  line-height: 1em;
}

@media screen and (max-width: 780px) {
  .mv-content {
    display: block;
  }
  .mv-content img {
    width: 100vw;
  }
}
.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: 1.5rem;
  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.2rem;
    bottom: 5rem;
  }
}
.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: #65A8DC;
  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: #65A8DC;
  background: #FFFFFF;
  line-height: 4.3rem;
  border: 3px solid #65A8DC;
  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;
}

.footer {
  width: 100%;
  height: 52px;
  background: #E0F2FC;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.footer__copy {
  text-align: center;
  font-size: clamp(10px, 2vw, 14px);
  color: #332A1D;
  font-weight: 700;
}

/*-----------------------------------------
summary-online
-----------------------------------------*/
.summary-online {
  padding-top: 24rem;
  padding-bottom: 12.8rem;
  position: relative;
  background: #E1F2A5;
}
.summary-online::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/back-flower.png) repeat-y center center/contain;
}
@media (max-width: 900px) {
  .summary-online {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
}
.summary-online__inner {
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .summary-online__inner {
    width: 95%;
  }
}
/*-----------------------------------------
    event-summary
-----------------------------------------*/
.event-summary {
  position: relative;
}
@media (max-width: 900px) {
  .event-summary {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.event-summaryInner {
  width: 1030px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.65);
}

.summary-title {
  position: absolute;
  top: -11rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(188px, 24vw, 364px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .summary-title {
    top: -1rem;
  }
}

.event-summaryContent {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4.4rem;
}
@media (max-width: 900px) {
  .event-summaryContent {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 4.4rem 0 8rem;
  }
}
.event-summaryContent::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: clamp(85px, 16vw, 170px);
  height: clamp(180px, 13vw, 212px);
  background: url(../images/rabbit-l.webp) no-repeat center center/contain;
}
.event-summaryContent::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  right: 0;
  width: clamp(85px, 16vw, 170px);
  height: clamp(180px, 13vw, 212px);
  background: url(../images/rabbit-r.webp) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .event-summaryContent {
    display: block;
  }
}
.event-summaryContent p {
  font-size: clamp(13px, 1.8vw, 19.2px);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08rem;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .event-summaryContent p {
    letter-spacing: -0.08rem;
    line-height: 1.8;
  }
}

/*-----------------------------------------
schedule-online
-----------------------------------------*/
.schedule-online {
  padding-top: 24.3rem;
}
@media (max-width: 900px) {
  .schedule-online {
    padding-top: 8.3rem;
  }
}
.schedule-online__inner {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2.5rem;
}
@media (max-width: 900px) {
  .schedule-online__inner {
    border-radius: 1.5rem;
  }
}

/*-----------------
event-schedule
-------------------*/
.event-schedule {
  position: relative;
}

.event-schedule-inner {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.schedule-title {
  position: absolute;
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(188px, 24vw, 364px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .schedule-title {
    top: -6rem;
  }
}

.event-schedule-content {
  padding-top: 12rem;
}
@media (max-width: 900px) {
  .event-schedule-content {
    padding-top: 6rem;
  }
}
.event-schedule-content__day {
  text-align: center;
  font-weight: 700;
  color: #940000;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: 0.2rem;
}
@media (max-width: 900px) {
  .event-schedule-content__day {
    letter-spacing: 0.1rem;
  }
}
.event-schedule-content__day span {
  font-size: clamp(24px, 2.5vw, 34px);
}
.event-schedule-content__day--2 {
  padding-top: 64px;
}
@media (max-width: 900px) {
  .event-schedule-content__day--2 {
    padding-top: 45px;
  }
}
.event-schedule-content__item {
  margin-top: 3.2rem;
}
.event-schedule-content__item:not(:first-child) {
  margin-top: 4rem;
}
.event-schedule-content__item--2 {
  margin-top: 3.2rem !important;
}
.event-schedule-content__itemhead {
  width: clamp(200px, 16vw, 283px);
  margin-left: auto;
  margin-right: auto;
}
.event-schedule-content__itembody {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .event-schedule-content__itembody {
    margin-top: -1rem;
  }
}
.event-schedule-content__itembutton:first-child {
  padding-right: 1.5rem;
}
.event-schedule-content__itembutton:not(:first-child) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.event-schedule-content__itembtn {
  position: relative;
  display: block;
  width: clamp(160px, 14vw, 184px);
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #FFFFFF;
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 18px);
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease 0s;
}
.event-schedule-content__itembtn::after {
  content: "";
  position: absolute;
  top: 53%;
  right: 1rem;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url(../images/icon-open.png) no-repeat center center/contain;
}
.event-schedule-content__itembtn .x {
  line-height: 1.2;
  padding-top: 3px;
  display: block;
}
.event-schedule-content__itembtn .x-block {
  display: block;
  font-size: clamp(10px, 1.2vw, 13px);
}
.event-schedule-content__itembtn--map {
  position: relative;
  padding-left: 3rem;
}
.event-schedule-content__itembtn--map::before {
  position: absolute;
  content: "\f3c5";
  left: 2.5rem;
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 900;
  color: rgba(35, 24, 21, 0.3);
}
.event-schedule-content__itembtn--map:after {
  display: none;
}
.event-schedule-content__itembtn:hover {
  transform: translateY(3px);
  box-shadow: none;
}

@media screen and (max-width: 600px) {
  .event-schedule-content__itembody {
    display: block;
    text-align: center;
  }
  .event-schedule-content__itembutton {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
  }
  .event-schedule-content__itembutton:first-child {
    padding-right: 0;
  }
  .event-schedule-content__itembutton:not(:first-child) {
    padding-left: 0;
    padding-right: 0;
  }
  .event-schedule-content__itembtn {
    width: 90%;
    max-width: 350px;
  }
  .event-schedule-content__itembtn--map {
    padding-left: 0;
  }
}
/*-----------------------------------------
online
-----------------------------------------*/
.online {
  padding-top: 7rem;
}

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

.online-content {
  margin-top: 1rem;
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .online-content {
    width: 95%;
  }
}
.online-content__lead {
  text-align: center;
  font-weight: 500;
  font-size: clamp(13px, 1.7vw, 20px);
}
.online-content__text {
  margin-top: 3rem;
  font-weight: 500;
  font-size: clamp(13px, 1.7vw, 20px);
}
.online-content__present {
  margin-top: 4rem;
}
.online-content__present--ul {
  margin-left: 2rem;
}
@media (max-width: 900px) {
  .online-content__present--ul {
    margin-left: 1rem;
  }
}
.online-content__present--ul li {
  list-style: "※";
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 700;
}
.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: 1.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .online-content__present--banner {
    width: 95%;
  }
}
.online-content__present--bannerAttention {
  margin-top: 1.7rem;
}
.online-content__present--bannerAttention p {
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 700;
}
.online-content__media {
  margin-top: 4rem;
  padding-bottom: 11rem;
}
@media (max-width: 900px) {
  .online-content__media {
    margin-top: 2rem;
    padding-bottom: 5rem;
  }
}
.online-content__mediaContentMedia {
  width: clamp(320px, 25vw, 454px);
  height: clamp(300px, 24vw, 429px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  -o-border-image: url(../images/x-flower.png) 100 fill/24px/0px round;
     border-image: url(../images/x-flower.png) 100 fill/24px/0px round;
}
.online-content__mediaContentMedia--title {
  margin-top: 2.5rem;
  text-align: center;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
}
@media (max-width: 900px) {
  .online-content__mediaContentMedia--title {
    margin-top: 0.5rem;
  }
}
.online-content__mediaContentMedia--p {
  text-align: center;
  font-size: clamp(14px, 1.2vw, 20.8px);
  font-weight: 700;
  letter-spacing: 0.08rem;
}
.online-content__mediaContentMedia--bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: clamp(14px, 1.2vw, 20.8px);
  font-weight: 700;
}
.online-content__mediaContentMedia--bottom a {
  color: #1A0DAB;
  text-decoration: underline;
}

@media screen and (max-width: 450px) {
  .online-content__mediaContentMedia {
    width: clamp(270px, 36vw, 360px);
    height: clamp(250px, 37vw, 340px);
    border-image-slice: 203 fill;
  }
}
/*-----------------------------------------
special-offer
-----------------------------------------*/
.special-offer {
  padding-top: 24rem;
  padding-bottom: 23rem;
  position: relative;
  background: #F6CFE0;
}
.special-offer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/back-flower.png) repeat-y center center/contain;
}
@media (max-width: 900px) {
  .special-offer {
    padding-top: 7rem;
    padding-bottom: 9rem;
  }
}

.special-offer-inner {
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2.5rem;
}
.special-offer-inner::before {
  content: "";
  position: absolute;
  top: -10.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(280px, 32vw, 570px);
  height: clamp(60px, 10vw, 180px);
  background: url(../images/toku-flower-top.png) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .special-offer-inner::before {
    top: -5rem;
    width: clamp(280px, 41vw, 570px);
    height: clamp(80px, 11vw, 180px);
  }
}
.special-offer-inner::after {
  content: "";
  position: absolute;
  bottom: -10.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(280px, 32vw, 570px);
  height: clamp(60px, 10vw, 180px);
  background: url(../images/toku-flower-under.png) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .special-offer-inner::after {
    bottom: -5rem;
    width: clamp(280px, 41vw, 570px);
    height: clamp(80px, 11vw, 180px);
  }
}
@media (max-width: 900px) {
  .special-offer-inner {
    width: 95%;
    border-radius: 1.5rem;
  }
}

.offer-title {
  width: clamp(90px, 14vw, 180px);
  margin-left: auto;
  margin-right: auto;
}

.special-offer-content {
  margin-top: 3rem;
  padding: 9rem 0 17.6rem;
  position: relative;
  width: 91.7%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .special-offer-content {
    margin-top: 1.5rem;
    padding-top: clamp(3rem, 8vw, 6rem);
    padding-bottom: 7rem;
    width: 95%;
  }
}
.special-offer-content__text {
  margin-top: 5.4rem;
  text-align: center;
  line-height: 2;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20.8px);
}
@media (max-width: 900px) {
  .special-offer-content__text {
    font-weight: 600;
    font-size: clamp(12px, 2.3vw, 23px);
  }
}
@media (max-width: 900px) {
  .special-offer-content__text {
    margin-top: 3rem;
  }
}
.special-offer-content__items {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .special-offer-content__items {
    margin-top: clamp(3rem, 7vw, 7rem);
  }
}
/*.special-offer-content__item {
  width: 50%;
}
.special-offer-content__item:last-child {
  margin-left: 5rem;
}*/
@media (max-width: 900px) {
  /*special-offer-content__item:last-child {
    margin-left: clamp(1rem, 1.6vw, 3rem);
  }*/
}
.special-offer-content__title {
  width: clamp(240px, 16vw, 280px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .special-offer-content__title {
    width: clamp(120px, 30vw, 240px);
  }
}
.special-offer-content__img {
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .special-offer-content__img {
    margin-top: 1rem;
  }
}
.special-offer-content__itembutton {
  margin-top: 6.4rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .special-offer-content__itembutton {
    margin-top: 1rem;
  }
}
.special-offer-content__itembtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(360px, 30vw, 404px);
  height: clamp(80px, 6vw, 100px);
  border-radius: 2rem;
  background: #C11A20;
  color: #fff;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 700;
  box-shadow: 3px 3px 10px 0px rgb(209, 185, 185);
  transition: opacity 0.3s ease 0s;
}
@media (max-width: 900px) {
  .special-offer-content__itembtn {
    width: 100%;
    max-width: 360px;
    border-radius: clamp(0.2rem, 1.6vw, 1rem);
    font-size: clamp(13px, 2.8vw, 22px);
    height: clamp(40px, 12vw, 80px);
  }
}
.special-offer-content__itembtn:hover {
  opacity: 0.6;
}
.special-offer-content__itembtn--yohane {
  background: #10435D;
  box-shadow: 3px 3px 10px 0px rgb(190, 187, 203);
}
.special-offer-content__itembtn--img {
  margin-left: 1rem;
  width: clamp(31px, 3vw, 41px);
  height: clamp(31px, 3vw, 41px);
}
@media (max-width: 900px) {
  .special-offer-content__itembtn--img {
    margin-left: 0.3rem;
    width: clamp(15px, 5vw, 31px);
    height: clamp(15px, 5vw, 31px);
  }
}

@media screen and (max-width: 500px) {
  .special-offer-content__text--attention {
    margin-top: 1rem;
  }
}
/*-----------------------------------------
item
-----------------------------------------*/
.item-hasu {
  position: relative;
  background: url(../images/item_hasu_bg.jpg) repeat-y center center/contain;
  padding: 31rem 0 14rem;
}
@media (max-width: 900px) {
  .item-hasu {
    padding-top: clamp(10rem, 24vw, 21rem);
    padding-bottom: clamp(5rem, 9vw, 8rem);
  }
}
.item-hasu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/hasu-deco.webp) no-repeat top center/contain;
}

.item-yohane {
  padding: 18rem 0 16rem;
  position: relative;
  background: url(../images/back-blick.png) repeat-y center center/contain;
}
@media (max-width: 900px) {
  .item-yohane {
    padding-top: clamp(8rem, 15vw, 13rem);
    padding-bottom: clamp(5rem, 9vw, 8rem);
  }
}
.item-yohane::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/yohane-deco.png) no-repeat top center/contain;
}

.item-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 95%;
  position: relative;
  padding: 1.7rem;
  border: 0.8rem solid #65A8DC;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
}
@media (max-width: 900px) {
  .item-inner {
    padding: 1rem;
    border: 0.3rem solid #65A8DC;
  }
}
.item-inner__yohane {
  -o-border-image: url(../images/item_yohane_flame.png) 200/100px/0px round;
     border-image: url(../images/item_yohane_flame.png) 200/100px/0px round;
}
@media (max-width: 900px) {
 	.item-inner__yohane {
    border-image-slice: 300;
  }
}

.item-title {
  width: clamp(220px, 30vw, 438px);
  margin-left: auto;
  margin-right: auto;
}

.item__content {
  border: 0.8rem solid #65A8DC;
  padding: 8rem 2.5rem;
}
@media (max-width: 900px) {
  .item__content {
    padding: 4rem 1rem;
    border: 0.3rem solid #65A8DC;
  }
}
.item__content--yohane {
  border: none;
}

.item-lists {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 1.8rem;
       column-gap: 1.8rem;
  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: #65A8DC;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.item-list__attention p {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-align: center;
  font-size: clamp(10px, 1.4vw, 12.8px);
}
@media (max-width: 900px) {
  .item-list__attention p {
    font-size: clamp(9px, 2.6vw, 12px);
  }
}
.item-list__attention--yohane {
  background: #AC7F46;
}

.item-list__body {
  margin-top: 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 80px;
}

.item-list__body--item-name {
  font-size: clamp(12px, 1.3vw, 14.4px);
  letter-spacing: 0.08rem;
  font-weight: 500;
  line-height: 1.2;
  flex-grow: 1;
}
@media (max-width: 900px) {
  .item-list__body--item-name {
    font-size: clamp(10.8px, 2.3vw, 18px);
  }
}

.item-list__body--price {
  margin-top: 1rem;
  font-weight: 700;
  font-size: clamp(12px, 1.3vw, 13.6px);
  letter-spacing: 0.08rem;
  line-height: 1.3;
  padding: 0 1rem;
}
@media (max-width: 900px) {
  .item-list__body--price {
    font-size: clamp(10px, 2.3vw, 18px);
  }
}
.item-list__body--price span {
  font-size: clamp(10px, 1.2vw, 11.2px);
}
@media (max-width: 900px) {
  .item-list__body--price span {
    font-size: clamp(9px, 1.6vw, 14px);
  }
}

@media screen and (max-width: 960px) {
  .item-lists {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .item-list__body {
    min-height: 70px;
  }
}
@media screen and (max-width: 900px) {
  .item-lists {
    margin-top: 4rem;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    row-gap: 1.5rem;
  }
  .item-list__body--price {
    letter-spacing: 0.02rem;
    padding: 0 0.1rem;
  }
}
/*-----------------------------------------
notes
-----------------------------------------*/
.notes {
  padding-top: 21rem;
  padding-bottom: 12.8rem;
  position: relative;
  background: #ADD4F2;
}
.notes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/back-flower.png) repeat-y center center/contain;
}
@media (max-width: 900px) {
  .notes {
    padding-top: clamp(8rem, 13vw, 13rem);
    padding-bottom: 5rem;
  }
}

.notes-inner {
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .notes-inner {
    border-radius: 1.5rem;
  }
}

.notes-title {
  position: absolute;
  top: -11rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(188px, 24vw, 364px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .notes-title {
    top: -6rem;
  }
}

.notes-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10.8rem 2rem 6.8rem;
  position: relative;
}
@media (max-width: 900px) {
  .notes-content {
    padding: 6rem 2rem 6rem;
  }
}
.notes-content::before {
  content: "";
  position: absolute;
  bottom: -3rem;
  left: -4rem;
  width: clamp(60px, 13vw, 190px);
  height: clamp(45px, 11vw, 178px);
  background: url(../images/basket.webp) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .notes-content::before {
    bottom: -2rem;
    left: 1rem;
    width: clamp(60px, 11vw, 117px);
    height: clamp(45px, 9vw, 90px);
  }
}
.notes-content ul li {
  list-style: "・";
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: 0.08rem;
}

@media screen and (max-width: 767px) {
  .notes-content {
    border-image-width: 40px;
  }
}/*# sourceMappingURL=style.css.map */

/*追加*/
.header-logo{max-width: 200px;margin: 0 auto;}
.hasu-header-logo{padding-top: 0.7rem;}
.mv-content a:hover{opacity: 0.7;}
.special-offer-content__img {max-width: 900px;width: 100%;margin: 0 auto;}
.banner{max-width: 900px;width: 100%;margin: 0 auto;}
.banner-section{margin: 15rem auto 5rem;}
.banner-section p,.banner-section h3{text-align: center;}
.banner-section h3{color: #470F07;font-size: 3.5rem;/*font-family: "Zen Maru Gothic", serif;*/font-weight: 700;padding-bottom: 3rem;
    line-height: 4.8rem;}
.banner-content{padding: 8rem 2rem 6rem;}
.banner-section p a:hover{opacity: 0.8;}
@media screen and (max-width: 900px) {
	.banner-section h3{font-size: 2.5rem;line-height: 3.5rem;}
	.header-logo{display:none;}
	.header{padding: 0;}
}
@media screen and (max-width: 750px) {
	.banner-content {padding: 5rem 2rem 4rem;}
	.banner-section h3{font-size: 2rem;line-height: 3rem;}
}
.br590 {display: none;}
@media screen and (max-width: 590px) {
	.br590{display: block;}
	.banner-content {padding: 4rem 2rem;}
	.banner-section h3{padding-bottom: 1rem;}
	.banner-section{margin: 8rem auto 2rem;}
	
}
@media screen and (max-width: 430px) {
	.banner-section h3{font-size: 1.5rem;line-height: 2rem;}
}

.schedule-info{max-width: 680px;margin: 5rem auto 0;padding: 3.5rem 1rem 2.5rem 1rem;border: 3px solid #940000;border-radius: 14px;}
.schedule-info h3{text-align: center;font-weight: bold;padding-bottom: 2rem;width: 90%;margin: 0 auto;}
.schedule-info p{width: 90%;margin: 0 auto;padding-bottom: 1.5rem;}
.schedule-info p a{text-decoration: underline;}
.schedule-info p a:hover{opacity: 0.8;}
.fa-solid{padding-right: 0.5rem;}
.link{font-size: 18px;text-align: center;}
@media screen and (max-width: 590px) {
	.link{font-size: 16px;}
	.schedule-info p{font-size:14px;width: 96%;}
	.schedule-info h3{font-size: 16px;width: 96%;}	
}

.syuryo{position: relative;}

.syuryo .syuryo-img {
    position: absolute;
    line-height: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    max-width: 130px;
    transform: rotate(7deg);left: 26%;top: -16px;}
@media screen and (max-width: 1350px) {
	.syuryo .syuryo-img {
    position: absolute;
    line-height: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    max-width: 130px;
    transform: rotate(7deg);left: 20%;top: -16px;}
}