@charset "UTF-8";
:root {
  --maincolor: #ff0006;
  --subcolor: #fff;
  --subcolor2: #11b2e3;
  --subcolor3: #24e356;
  --textcolor: #fff;
  --gradient: linear-gradient(90deg,#ff8400,#ffd400);
  --gradient2: linear-gradient(90deg,#2294ff,#01cfc8);
  --gradient3: linear-gradient(90deg,#00bd9c,#24e356);
  --container: 1200px;
}

/* ======== ↓ common ↓ ======== */
#tamashiination2025 {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: var(--textcolor);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #tamashiination2025 {
    font-size: 1.32vw;
  }
}

@media screen and (max-width: 800px) {
  #tamashiination2025 {
    font-size: max(2.2vw,12px);
  }
}

#tamashiination2025 * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#tamashiination2025 *:before, #tamashiination2025 *:after {
  content: none;
  visibility: visible;
  height: initial;
}

#tamashiination2025 a {
  opacity: 1;
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#tamashiination2025 a.hover {
  color: var(--maincolor);
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#tamashiination2025 ul, #tamashiination2025 ol {
  list-style: none;
}

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

#tamashiination2025 .cover {
  width: 100%;
  max-width: none;
  height: auto;
}

#tamashiination2025 .sectionWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#tamashiination2025 .widthWrapper {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1220px) {
  #tamashiination2025 .widthWrapper {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .widthWrapper {
    padding-left: 4%;
    padding-right: 4%;
  }
}

#tamashiination2025 .insideWrapper {
  position: relative;
  width: 80%;
  max-width: inherit;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#tamashiination2025 :root {
  --c-flex-gap: 2%;
}

#tamashiination2025 .c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#tamashiination2025 .c-flex.gap > * {
  margin-left: var(--c-flex-gap);
}

#tamashiination2025 .c-flex.gapLarge > * {
  margin-left: calc(var(--c-flex-gap) * 2);
}

#tamashiination2025 .c-flex:not(.c-flex-reverse) > *:first-child {
  margin-left: 0;
}

#tamashiination2025 .c-flex--2 > * {
  width: calc(100% / 2);
}

#tamashiination2025 .c-flex--2.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(2 - 1))) / 2);
}

#tamashiination2025 .c-flex--2.gap > *:nth-child(2n+1) {
  margin-left: 0;
}

#tamashiination2025 .c-flex--3 > * {
  width: calc(100% / 3);
}

#tamashiination2025 .c-flex--3.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(3 - 1))) / 3);
}

#tamashiination2025 .c-flex--3.gap > *:nth-child(3n+1) {
  margin-left: 0;
}

#tamashiination2025 .c-flex--4 > * {
  width: calc(100% / 4);
}

#tamashiination2025 .c-flex--4.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(4 - 1))) / 4);
}

#tamashiination2025 .c-flex--4.gap > *:nth-child(4n+1) {
  margin-left: 0;
}

#tamashiination2025 .c-flex--5 > * {
  width: calc(100% / 5);
}

#tamashiination2025 .c-flex--5.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(5 - 1))) / 5);
}

#tamashiination2025 .c-flex--5.gap > *:nth-child(5n+1) {
  margin-left: 0;
}

#tamashiination2025 .c-flex--6 > * {
  width: calc(100% / 6);
}

#tamashiination2025 .c-flex--6.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(6 - 1))) / 6);
}

#tamashiination2025 .c-flex--6.gap > *:nth-child(6n+1) {
  margin-left: 0;
}

#tamashiination2025 .c-flex--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#tamashiination2025 .c-flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#tamashiination2025 .c-flex--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#tamashiination2025 .c-flex--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#tamashiination2025 .c-flex--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#tamashiination2025 .c-flex--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#tamashiination2025 .c-flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#tamashiination2025 .c-flex--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#tamashiination2025 .alignCenter {
  text-align: center;
}

#tamashiination2025 .alignRight {
  text-align: right;
}

#tamashiination2025 .alignLeft {
  text-align: left;
}

#tamashiination2025 img.alignCenter {
  margin-left: auto;
  margin-right: auto;
}

#tamashiination2025 img.alignLeft {
  margin-left: 0;
  margin-right: auto;
}

#tamashiination2025 img.alignRight {
  margin-left: auto;
  margin-right: 0;
}

#tamashiination2025 .lh-10 {
  line-height: 1;
}

#tamashiination2025 .lh-15 {
  line-height: 1.5;
}

#tamashiination2025 .lh-20 {
  line-height: 2;
}

#tamashiination2025 .font-10 {
  font-size: 10px !important;
}

#tamashiination2025 .font-12 {
  font-size: 12px !important;
}

#tamashiination2025 .font-14 {
  font-size: 14px !important;
}

#tamashiination2025 .font-16 {
  font-size: 16px !important;
}

#tamashiination2025 .font-18 {
  font-size: 18px !important;
}

#tamashiination2025 .font-20 {
  font-size: 20px !important;
}

#tamashiination2025 .font-22 {
  font-size: 22px !important;
}

#tamashiination2025 .font-24 {
  font-size: 24px !important;
}

#tamashiination2025 .font-26 {
  font-size: 26px !important;
}

#tamashiination2025 .font-28 {
  font-size: 28px !important;
}

#tamashiination2025 .font-30 {
  font-size: 30px !important;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #tamashiination2025 .font-10 {
    font-size: 0.83333vw !important;
  }
  #tamashiination2025 .font-12 {
    font-size: 1vw !important;
  }
  #tamashiination2025 .font-14 {
    font-size: 1.16667vw !important;
  }
  #tamashiination2025 .font-16 {
    font-size: 1.33333vw !important;
  }
  #tamashiination2025 .font-18 {
    font-size: 1.5vw !important;
  }
  #tamashiination2025 .font-20 {
    font-size: 1.66667vw !important;
  }
  #tamashiination2025 .font-22 {
    font-size: 1.83333vw !important;
  }
  #tamashiination2025 .font-24 {
    font-size: 2vw !important;
  }
  #tamashiination2025 .font-26 {
    font-size: 2.16667vw !important;
  }
  #tamashiination2025 .font-28 {
    font-size: 2.33333vw !important;
  }
  #tamashiination2025 .font-30 {
    font-size: 2.5vw !important;
  }
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .font-10 {
    font-size: 1.66667vw !important;
  }
  #tamashiination2025 .font-12 {
    font-size: 2vw !important;
  }
  #tamashiination2025 .font-14 {
    font-size: 2.33333vw !important;
  }
  #tamashiination2025 .font-16 {
    font-size: 2.66667vw !important;
  }
  #tamashiination2025 .font-18 {
    font-size: 3vw !important;
  }
  #tamashiination2025 .font-20 {
    font-size: 3.33333vw !important;
  }
  #tamashiination2025 .font-22 {
    font-size: 3.66667vw !important;
  }
  #tamashiination2025 .font-24 {
    font-size: 4vw !important;
  }
  #tamashiination2025 .font-26 {
    font-size: 4.33333vw !important;
  }
  #tamashiination2025 .font-28 {
    font-size: 4.66667vw !important;
  }
  #tamashiination2025 .font-30 {
    font-size: 5vw !important;
  }
}

#tamashiination2025 .mt-5 {
  margin-top: 0.5em !important;
}

#tamashiination2025 .mt-10 {
  margin-top: 1em !important;
}

#tamashiination2025 .mt-15 {
  margin-top: 1.5em !important;
}

#tamashiination2025 .mt-20 {
  margin-top: 2em !important;
}

#tamashiination2025 .mt-25 {
  margin-top: 2.5em !important;
}

#tamashiination2025 .mt-30 {
  margin-top: 3em !important;
}

#tamashiination2025 .mt-35 {
  margin-top: 3.5em !important;
}

#tamashiination2025 .mt-40 {
  margin-top: 4em !important;
}

#tamashiination2025 .mt-45 {
  margin-top: 4.5em !important;
}

#tamashiination2025 .mt-50 {
  margin-top: 5em !important;
}

#tamashiination2025 .u-emp {
  color: #f9003a !important;
}

#tamashiination2025 .u-note {
  padding-left: 1em;
  display: block;
  position: relative;
}

#tamashiination2025 .u-note:before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}

#tamashiination2025 .u-link {
  text-decoration: underline;
}

#tamashiination2025 .u-link:hover {
  text-decoration: none;
}

#tamashiination2025 .u-marker {
  padding: 0 0.2em;
  margin: 0 0.2em;
  background: var(--maincolor);
  color: #fff;
}

#tamashiination2025 .u-maincolor {
  color: var(--maincolor);
}

#tamashiination2025 .u-subcolor {
  color: var(--subcolor);
}

#tamashiination2025 .u-hidden {
  display: none;
  visibility: hidden;
}

#tamashiination2025 .c-blockLink a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#tamashiination2025 [data-ruby] {
  position: relative;
  display: inline-block;
  line-height: 1;
}

#tamashiination2025 [data-ruby]:before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  left: 50%;
  font-size: max(0.3em,8px);
  line-height: 1;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

@media screen and (min-width: 801px) {
  #tamashiination2025 .sp {
    display: none !important;
  }
  #tamashiination2025 a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .pc {
    display: none !important;
  }
}

/* ======== ↑ End common ↑ ======== */
/* ======== ↓ main ↓ ======== */
#cduWrap {
  width: 100%;
  background: #fff;
}

#cduFooter {
  max-width: 1016px;
}

#tamashiination2025 .parallaxWrapper {
  padding-bottom: 55px;
  position: relative;
}

#tamashiination2025 .parallaxWrapper:has(.parallax2) {
  border-top: 6px solid #000;
  border-bottom: 6px solid #000;
  -o-border-image: linear-gradient(90deg, #ff0006, #ff006c) 2;
     border-image: -webkit-gradient(linear, left top, right top, from(#ff0006), to(#ff006c)) 2;
     border-image: linear-gradient(90deg, #ff0006, #ff006c) 2;
}

@media screen and (max-width: 1220px) {
  #tamashiination2025 .parallaxWrapper {
    padding-bottom: 5%;
  }
}

#tamashiination2025 .parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: -1;
}

#tamashiination2025 .parallax .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .parallax {
    background-size: auto 100vh;
  }
}

#tamashiination2025 h2.heading {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

#tamashiination2025 h2.heading.l {
  font-size: 60px;
}

#tamashiination2025 h2.heading:first-letter {
  color: #f00;
}

#tamashiination2025 h2.heading.js-scroll {
  -webkit-transition: 1s cubic-bezier(0.33, 0, 0.1, 1) 0.3s;
  transition: 1s cubic-bezier(0.33, 0, 0.1, 1) 0.3s;
  opacity: 0;
  letter-spacing: -0.25em;
}

#tamashiination2025 h2.heading.is-scroll {
  opacity: 1;
  letter-spacing: 0.025em;
}

@media screen and (max-width: 1220px) {
  #tamashiination2025 h2.heading {
    font-size: 3.34vw;
  }
  #tamashiination2025 h2.heading.l {
    font-size: 5vw;
  }
}

@media screen and (max-width: 800px) {
  #tamashiination2025 h2.heading {
    font-size: 6.5vw;
  }
  #tamashiination2025 h2.heading.l {
    font-size: 6.5vw;
  }
}

#tamashiination2025 h2.heading2 {
  font-size: 20px;
  line-height: 1.3;
  padding-bottom: 0.75em;
  position: relative;
}

#tamashiination2025 h2.heading2:first-letter {
  color: #f00;
}

#tamashiination2025 h2.heading2 .sub {
  font-size: 15px;
  margin-top: 0.5em;
  display: block;
}

#tamashiination2025 h2.heading2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#ff0006), to(#ff006c));
  background: linear-gradient(90deg, #ff0006, #ff006c);
}

@media screen and (max-width: 800px) {
  #tamashiination2025 h2.heading2 {
    font-size: 4.5vw;
  }
}

#tamashiination2025 h2.heading3 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #000;
  background: var(--gradient2);
  padding: 0.4em 1em;
  -webkit-transform: skewX(-8deg);
          transform: skewX(-8deg);
}

#tamashiination2025 h2.heading3.--green {
  background: var(--gradient3);
}

#tamashiination2025 h2.heading3 > * {
  display: block;
  -webkit-transform: skewX(8deg);
          transform: skewX(8deg);
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #tamashiination2025 h2.heading3 {
    font-size: 2.8vw;
  }
}

@media screen and (max-width: 800px) {
  #tamashiination2025 h2.heading3 {
    font-size: 4.5vw;
  }
}

#tamashiination2025 .c-btn a {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 28.5em;
  min-height: 3.5em;
  color: #fff;
  border: 2px solid #000;
  -o-border-image: linear-gradient(90deg, #ff0006, #ff006c) 2;
     border-image: -webkit-gradient(linear, left top, right top, from(#ff0006), to(#ff006c)) 2;
     border-image: linear-gradient(90deg, #ff0006, #ff006c) 2;
  padding: 0.25em 0.75em;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  overflow: hidden;
  z-index: 1;
}

#tamashiination2025 .c-btn a:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#ff0006), to(#ff006c));
  background: linear-gradient(90deg, #ff0006, #ff006c);
  -webkit-transition: inherit;
  transition: inherit;
  -webkit-transition-timing-function: cubic-bezier(0.9, 0, 0.1, 1);
          transition-timing-function: cubic-bezier(0.9, 0, 0.1, 1);
}

#tamashiination2025 .c-btn a.blue {
  -o-border-image: linear-gradient(90deg, #2294ff, #01cfc8) 2;
     border-image: -webkit-gradient(linear, left top, right top, from(#2294ff), to(#01cfc8)) 2;
     border-image: linear-gradient(90deg, #2294ff, #01cfc8) 2;
}

#tamashiination2025 .c-btn a.blue:before {
  background: -webkit-gradient(linear, left top, right top, from(#2294ff), to(#01cfc8));
  background: linear-gradient(90deg, #2294ff, #01cfc8);
}

#tamashiination2025 .c-btn a.green {
  -o-border-image: linear-gradient(90deg, #00bd9c, #24e356) 2;
     border-image: -webkit-gradient(linear, left top, right top, from(#00bd9c), to(#24e356)) 2;
     border-image: linear-gradient(90deg, #00bd9c, #24e356) 2;
}

#tamashiination2025 .c-btn a.green:before {
  background: -webkit-gradient(linear, left top, right top, from(#00bd9c), to(#24e356));
  background: linear-gradient(90deg, #00bd9c, #24e356);
}

#tamashiination2025 .c-btn a.disabled {
  color: #666 !important;
  border-color: #666 !important;
  background: rgba(0, 0, 0, 0.5);
  -o-border-image: none !important;
     border-image: none !important;
  pointer-events: none;
}

#tamashiination2025 .c-btn a > * {
  -webkit-transform: skew(10deg);
          transform: skew(10deg);
  position: relative;
  z-index: 2;
}

#tamashiination2025 .c-btn a.small {
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 2.5em;
  border-width: 1px;
  background: rgba(0, 0, 0, 0.5);
}

#tamashiination2025 .c-btn a.arrow:after {
  content: '';
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  width: 1.4em;
  height: 1.1em;
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
  -webkit-transition: inherit;
  transition: inherit;
}

#tamashiination2025 .c-btn a:hover {
  color: #000;
}

#tamashiination2025 .c-btn a:hover:before {
  left: 0;
}

#tamashiination2025 .c-btn a:hover:after {
  right: 0.5em;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

#tamashiination2025 .c-btn a:hover.cta {
  -o-border-image: linear-gradient(90deg, #ff8400, #ffd400) 2;
     border-image: -webkit-gradient(linear, left top, right top, from(#ff8400), to(#ffd400)) 2;
     border-image: linear-gradient(90deg, #ff8400, #ffd400) 2;
}

#tamashiination2025 .c-btn a:hover.cta:before {
  background: -webkit-gradient(linear, left top, right top, from(#ff8400), to(#ffd400));
  background: linear-gradient(90deg, #ff8400, #ffd400);
}

@media screen and (max-width: 1220px) {
  #tamashiination2025 .c-btn a {
    font-size: 1.66vw;
  }
  #tamashiination2025 .c-btn a.small {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .c-btn a {
    font-size: min(4vw,20px);
  }
  #tamashiination2025 .c-btn a.small {
    font-size: min(3.5vw,16px);
  }
}

#tamashiination2025 .c-ul > li {
  text-indent: 0;
  padding-left: 0.7em;
  position: relative;
}

#tamashiination2025 .c-ul > li:before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}

#tamashiination2025 .c-schedule {
  padding: 1.3em;
  background: #fafafa;
  border-radius: 8px;
  position: relative;
}

#tamashiination2025 .c-schedule_scroll {
  width: 100%;
  overflow: scroll;
  overflow-y: hidden;
  cursor: move;
}

#tamashiination2025 .c-schedule_scrollHint {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}

#tamashiination2025 .c-schedule table {
  width: 2200px !important;
  border-collapse: collapse;
  background: #fff;
}

#tamashiination2025 .c-schedule table th, #tamashiination2025 .c-schedule table td {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #ddd;
  color: #000;
  padding: 0.5em;
}

#tamashiination2025 .c-schedule table th .s, #tamashiination2025 .c-schedule table td .s {
  font-size: 75%;
}

#tamashiination2025 .c-schedule table th.gray, #tamashiination2025 .c-schedule table td.gray {
  background: #e5e5e5;
}

#tamashiination2025 .c-schedule table th.h1, #tamashiination2025 .c-schedule table td.h1 {
  font-size: 20px;
}

#tamashiination2025 .c-schedule table th.h1.green, #tamashiination2025 .c-schedule table td.h1.green {
  background-color: #03a43c;
}

#tamashiination2025 .c-schedule table th.h1.blue, #tamashiination2025 .c-schedule table td.h1.blue {
  background-color: #0064de;
}

#tamashiination2025 .c-schedule table th.h2.green, #tamashiination2025 .c-schedule table td.h2.green {
  background-color: #52c97c;
}

#tamashiination2025 .c-schedule table th.h2.blue, #tamashiination2025 .c-schedule table td.h2.blue {
  background-color: #78aeed;
}

#tamashiination2025 .c-schedule table th.h3.green, #tamashiination2025 .c-schedule table td.h3.green {
  background-color: #74e39b;
}

#tamashiination2025 .c-schedule table th.h3.blue, #tamashiination2025 .c-schedule table td.h3.blue {
  background-color: #aad0fc;
}

#tamashiination2025 .c-schedule table th.h1, #tamashiination2025 .c-schedule table th.h2, #tamashiination2025 .c-schedule table th.h3, #tamashiination2025 .c-schedule table td.h1, #tamashiination2025 .c-schedule table td.h2, #tamashiination2025 .c-schedule table td.h3 {
  border-color: #fff;
}

#tamashiination2025 .c-schedule table th.h1, #tamashiination2025 .c-schedule table th.h2, #tamashiination2025 .c-schedule table td.h1, #tamashiination2025 .c-schedule table td.h2 {
  color: #fff;
}

#tamashiination2025 .c-schedule table th.blank, #tamashiination2025 .c-schedule table td.blank {
  background: linear-gradient(to top right, transparent, transparent calc(50% - 1px), #ddd calc(50% - 1px), #ddd calc(50% + 1px), transparent calc(50% + 1px), transparent);
}

#tamashiination2025 .c-schedule table th.disabled, #tamashiination2025 .c-schedule table td.disabled {
  -webkit-filter: grayscale(100%) opacity(50%);
          filter: grayscale(100%) opacity(50%);
  pointer-events: none;
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .c-schedule table {
    width: 440vw !important;
    max-width: inherit !important;
  }
  #tamashiination2025 .c-schedule table th, #tamashiination2025 .c-schedule table td {
    font-size: 3vw;
  }
  #tamashiination2025 .c-schedule table th.h1, #tamashiination2025 .c-schedule table td.h1 {
    font-size: 133.33%;
  }
  #tamashiination2025 .c-schedule_scrollHint {
    width: 20vw;
    height: 20vw;
  }
}

#tamashiination2025 .c-bnr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .c-bnr {
    max-width: 92vw;
  }
}

#tamashiination2025 .p-kv {
  position: relative;
  overflow: hidden;
}

#tamashiination2025 .p-kv .bg {
  position: relative;
  z-index: -1;
}

#tamashiination2025 .p-kv .bg img {
  width: 100%;
  max-width: none;
}

#tamashiination2025 .p-kv .logo {
  position: absolute;
  top: 2.4%;
  left: 32.8%;
  width: 23.8672%;
  z-index: 3;
}

#tamashiination2025 .p-kv .txt1 {
  position: absolute;
  top: 1.5%;
  left: 57.3%;
  width: 9.922%;
  z-index: 2;
}

#tamashiination2025 .p-kv .rainWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-perspective: 2000px;
          perspective: 2000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

#tamashiination2025 .p-kv .rainWrapper .rain {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#tamashiination2025 .p-kv .rainWrapper .rain span {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #b60e2a;
  border-radius: 50%;
  display: block;
  mix-blend-mode: screen;
  opacity: 0;
  -webkit-animation: rain 2s ease 0s infinite normal forwards running;
          animation: rain 2s ease 0s infinite normal forwards running;
}

#tamashiination2025 .p-kv .rainWrapper .rain span:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}

#tamashiination2025 .p-kv .rainWrapper .rain span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

#tamashiination2025 .p-kv .rainWrapper .rain span:nth-child(3) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

#tamashiination2025 .p-kv .rainWrapper .rain span:nth-child(4) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#tamashiination2025 .p-kv .rainWrapper .rain span:nth-child(5) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

#tamashiination2025 .p-kv .rainWrapper .rain span:nth-child(6) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

#tamashiination2025 .p-kv .rainWrapper .rain span:nth-child(7) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}

#tamashiination2025 .p-kv .rainWrapper .rain span:nth-child(8) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes rain {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes rain {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

#tamashiination2025 .p-kv .item {
  position: absolute;
  width: 20%;
  height: 80%;
  -webkit-perspective: 2000px;
          perspective: 2000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

#tamashiination2025 .p-kv .item.--left {
  left: 10%;
  bottom: 10%;
}

#tamashiination2025 .p-kv .item.--left .img img {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#tamashiination2025 .p-kv .item.--center {
  left: 0;
  right: 0;
  bottom: 2%;
  margin: auto;
}

#tamashiination2025 .p-kv .item.--right {
  right: 10%;
  bottom: 10%;
}

#tamashiination2025 .p-kv .item.--right .img img {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

#tamashiination2025 .p-kv .item img {
  margin: 0 auto;
}

#tamashiination2025 .p-kv .item .hologram {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  -webkit-transform: rotateX(76deg);
          transform: rotateX(76deg);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

#tamashiination2025 .p-kv .item .hologram img {
  -webkit-animation: rotate 45s linear 0s infinite normal forwards running;
          animation: rotate 45s linear 0s infinite normal forwards running;
}

#tamashiination2025 .p-kv .item .hologram.hologram2 {
  width: 94%;
  -webkit-transform: rotateX(76deg) translateZ(10px);
          transform: rotateX(76deg) translateZ(10px);
}

#tamashiination2025 .p-kv .item .hologram.hologram2 img {
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
}

#tamashiination2025 .p-kv .item .particle {
  position: absolute;
  left: -103%;
  right: -100%;
  bottom: 21%;
  margin: auto;
  width: 165%;
}

#tamashiination2025 .p-kv .item .laser {
  position: absolute;
  left: -102%;
  right: -100%;
  bottom: 10.5%;
  margin: auto;
  width: 120%;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
          mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  -webkit-filter: drop-shadow(0 0 5px #b91d1d) brightness(1.2);
          filter: drop-shadow(0 0 5px #b91d1d) brightness(1.2);
  mix-blend-mode: screen;
}

#tamashiination2025 .p-kv .item .laser img {
  -webkit-animation: flash 0.0125s ease 0s infinite alternate forwards running;
          animation: flash 0.0125s ease 0s infinite alternate forwards running;
}

#tamashiination2025 .p-kv .item .img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17%;
  margin: auto;
  width: 100%;
  max-width: 75%;
}

#tamashiination2025 .p-kv .item .img img {
  position: absolute;
  left: -100%;
  right: -100%;
  bottom: 0;
  margin: auto;
  width: auto;
  max-width: 35.3125vw;
  -webkit-animation: kvImg 0.7s cubic-bezier(0.33, 0, 0.33, 1) 0s 1 normal forwards running;
          animation: kvImg 0.7s cubic-bezier(0.33, 0, 0.33, 1) 0s 1 normal forwards running;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  opacity: 0;
}

@-webkit-keyframes kvImg {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes kvImg {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

#tamashiination2025 .p-kv.js-scroll .logo, #tamashiination2025 .p-kv.js-scroll .txt1 {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}

#tamashiination2025 .p-kv.js-scroll .item .hologram {
  -webkit-transition: 1.2s cubic-bezier(0.33, 0, 0.1, 1) 0.3s;
  transition: 1.2s cubic-bezier(0.33, 0, 0.1, 1) 0.3s;
  bottom: -15%;
  opacity: 0.1;
}

#tamashiination2025 .p-kv.js-scroll .item .hologram.hologram2 {
  bottom: 50%;
}

#tamashiination2025 .p-kv.js-scroll .item .particle {
  -webkit-transition: 1s cubic-bezier(0.33, 0, 0, 1) 1.3s;
  transition: 1s cubic-bezier(0.33, 0, 0, 1) 1.3s;
  opacity: 0;
  -webkit-transform: scale(0) rotate(10deg);
          transform: scale(0) rotate(10deg);
}

#tamashiination2025 .p-kv.js-scroll .item .laser {
  -webkit-transition: 1s ease 1.3s;
  transition: 1s ease 1.3s;
  opacity: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}

#tamashiination2025 .p-kv.is-scroll .logo, #tamashiination2025 .p-kv.is-scroll .txt1 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#tamashiination2025 .p-kv.is-scroll .item .hologram {
  bottom: 0;
  opacity: 1;
}

#tamashiination2025 .p-kv.is-scroll .item .hologram.hologram2 {
  bottom: 0;
}

#tamashiination2025 .p-kv.is-scroll .item .particle {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#tamashiination2025 .p-kv.is-scroll .item .laser {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .p-kv .logo {
    top: 2.6%;
    left: 8%;
    width: 57.7%;
  }
  #tamashiination2025 .p-kv .txt1 {
    top: 1.5%;
    left: 68%;
    width: 25%;
  }
  #tamashiination2025 .p-kv .item {
    width: 40%;
    height: 38%;
  }
  #tamashiination2025 .p-kv .item.--left {
    left: 3%;
    bottom: 44%;
  }
  #tamashiination2025 .p-kv .item.--right {
    right: 2%;
    bottom: 44%;
  }
  #tamashiination2025 .p-kv .item.--center {
    bottom: 3.5%;
  }
  #tamashiination2025 .p-kv .item .laser {
    left: -101.5%;
    bottom: 11%;
  }
  #tamashiination2025 .p-kv .item .img img {
    max-width: 64vw;
  }
}

#tamashiination2025 .p-caution {
  padding-top: 35px;
}

#tamashiination2025 .p-caution .txt1 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

#tamashiination2025 .p-caution .block1 {
  color: #000;
  background: rgba(249, 249, 249, 0.9);
  padding: 2em;
}

@media screen and (max-width: 1220px) {
  #tamashiination2025 .p-caution {
    padding-top: 3%;
  }
  #tamashiination2025 .p-caution .txt1 {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .p-caution .txt1 {
    font-size: 4vw;
  }
}

#tamashiination2025 .p-menu {
  margin-top: 65px;
  padding-top: 20px;
  padding-bottom: 60px;
  background: #000;
}

#tamashiination2025 .p-menu .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em 50px;
  margin-top: 10px;
}

@media screen and (min-width: 801px) {
  #tamashiination2025 .p-menu .block1 > * {
    width: calc(calc(100% - 150px) / 4);
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #tamashiination2025 .p-menu .block1 {
    gap: 1em 2vw;
  }
  #tamashiination2025 .p-menu .block1 > * {
    width: calc(calc(100% - 6vw) / 4);
  }
}

@media screen and (max-width: 1220px) {
  #tamashiination2025 .p-menu {
    margin-top: 6%;
    padding-top: 2%;
    padding-bottom: 6%;
  }
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .p-menu .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #tamashiination2025 .p-menu .block1 > * {
    width: 100%;
  }
}

#tamashiination2025 .p-lineup {
  padding-top: 25px;
}

#tamashiination2025 .p-lineup .block1 {
  position: relative;
  padding-top: 220.5%;
}

#tamashiination2025 .p-lineup .block1 > * {
  position: absolute;
}

#tamashiination2025 .p-lineup .block1 img {
  width: 100%;
  max-width: none;
}

#tamashiination2025 .p-lineup .block1 .item1 {
  top: -0.3%;
  left: 2.6%;
  width: 44.34%;
}

#tamashiination2025 .p-lineup .block1 .item2 {
  top: 1.15%;
  left: 46.7%;
  width: 53.25%;
}

#tamashiination2025 .p-lineup .block1 .item3 {
  top: 21.3%;
  left: 6.5%;
  width: 39.25%;
}

#tamashiination2025 .p-lineup .block1 .item4 {
  top: 21%;
  left: 42.75%;
  width: 63.917%;
}

#tamashiination2025 .p-lineup .block1 .item5 {
  top: 42.6%;
  left: 7.1%;
  width: 39.584%;
}

#tamashiination2025 .p-lineup .block1 .item6 {
  top: 41.9%;
  left: 49.1%;
  width: 45.5%;
}

#tamashiination2025 .p-lineup .block1 .item7 {
  top: 64.9%;
  left: 20.4%;
  width: 69.584%;
}

#tamashiination2025 .p-lineup .block1 .js-scroll {
  opacity: 0;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

#tamashiination2025 .p-lineup .block1 .is-scroll {
  -webkit-animation: lineup 0.8s cubic-bezier(0.5, 0, 0.1, 1) 0.3s 1 normal forwards running;
          animation: lineup 0.8s cubic-bezier(0.5, 0, 0.1, 1) 0.3s 1 normal forwards running;
}

@-webkit-keyframes lineup {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: brightness(0) blur(10px);
            filter: brightness(0) blur(10px);
  }
  75% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: contrast(0) brightness(2);
            filter: contrast(0) brightness(2);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
}

@keyframes lineup {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: brightness(0) blur(10px);
            filter: brightness(0) blur(10px);
  }
  75% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: contrast(0) brightness(2);
            filter: contrast(0) brightness(2);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
}

@media screen and (max-width: 1220px) {
  #tamashiination2025 .p-lineup {
    padding-top: 2%;
  }
}

#tamashiination2025 .p-schedule {
  padding-top: 95px;
  padding-bottom: 55px;
}

#tamashiination2025 .p-schedule .block1 {
  margin-top: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em 4%;
}

#tamashiination2025 .p-schedule .block1 > * {
  width: 201.6px;
}

#tamashiination2025 .p-schedule .block1 .c-btn a {
  font-size: 16px;
  line-height: 1.2;
  min-height: 3.75em;
  padding: 0.1em 0.5em;
}

#tamashiination2025 .p-schedule .block1 .c-btn a .s {
  font-size: 75%;
  letter-spacing: -0.01em;
}

#tamashiination2025 .p-schedule .block1 .c-btn a .l {
  font-size: 125%;
}

#tamashiination2025 .p-schedule_anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#tamashiination2025 .p-schedule_anchor .c-btn a {
  font-size: 16px;
  line-height: 1.3;
}

#tamashiination2025 .p-schedule_anchor .c-btn a .s {
  font-size: 75%;
}

#tamashiination2025 .p-schedule_block dl {
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2% 4%;
}

#tamashiination2025 .p-schedule_block dl dt, #tamashiination2025 .p-schedule_block dl dd {
  padding: 0.45em 0;
}

#tamashiination2025 .p-schedule_block dl dt .s, #tamashiination2025 .p-schedule_block dl dd .s {
  font-size: 80%;
}

#tamashiination2025 .p-schedule_block dl dt {
  width: 10em;
  color: var(--subcolor2);
}

#tamashiination2025 .p-schedule_block dl dd {
  width: calc(100% - 10em);
}

#tamashiination2025 .p-schedule_block dl.--green dt {
  color: var(--subcolor3);
}

#tamashiination2025 .p-schedule_block--1 dl {
  max-width: 740px;
}

#tamashiination2025 .p-schedule.disabled h2.heading3 {
  color: #fff;
  background: #666;
}

#tamashiination2025 .p-schedule.disabled .p-schedule_block dl dt,
#tamashiination2025 .p-schedule.disabled .p-schedule_block dl dd {
  color: #999;
}

@media screen and (min-width: 801px) {
  #tamashiination2025 .p-schedule_anchor > * {
    width: calc(88% / 5);
    margin-left: 3%;
  }
  #tamashiination2025 .p-schedule_anchor > *:nth-child(5n+1) {
    margin-left: 0;
  }
  #tamashiination2025 .p-schedule_block--4 ul {
    max-width: 872px;
    margin: 0 auto;
  }
  #tamashiination2025 .p-schedule_block--4 li {
    width: 284px;
  }
}

@media screen and (max-width: 1220px) {
  #tamashiination2025 .p-schedule_anchor .c-btn a {
    font-size: 1.35vw;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #tamashiination2025 .p-schedule_block dl {
    font-size: min(2vw,20px);
  }
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .p-schedule {
    padding: 16% 0;
  }
  #tamashiination2025 .p-schedule .block1 > * {
    width: 48%;
  }
  #tamashiination2025 .p-schedule .block1 .c-btn a {
    font-size: 3.6vw;
  }
  #tamashiination2025 .p-schedule_anchor > * {
    width: calc(97% / 2);
    margin-left: 3%;
  }
  #tamashiination2025 .p-schedule_anchor > *:nth-child(2n+1) {
    margin-left: 0;
  }
  #tamashiination2025 .p-schedule_anchor > *:nth-child(n+3) {
    margin-top: 1.5em;
  }
  #tamashiination2025 .p-schedule_anchor .c-btn a {
    font-size: min(3.5vw,16px);
  }
  #tamashiination2025 .p-schedule_block {
    margin-top: 10%;
  }
  #tamashiination2025 .p-schedule_block dl {
    font-size: 3.5vw;
  }
  #tamashiination2025 .p-schedule_block dl dt {
    width: 7em;
    padding-right: 1em;
  }
  #tamashiination2025 .p-schedule_block dl dd {
    width: calc(100% - 7em);
  }
}

#tamashiination2025 .p-notes {
  margin: 50px 0;
  font-size: 16px;
  line-height: 1.85;
}

#tamashiination2025 .p-notes h3 {
  font-size: 16px;
  font-weight: bold;
  color: var(--maincolor);
}

#tamashiination2025 .p-notes_bg {
  padding: 1.5em 2em;
  background: rgba(32, 32, 32, 0.8);
  max-height: 500px;
  overflow-y: scroll;
}

#tamashiination2025 .p-notes_bg::-webkit-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--maincolor) #c1bfbf;
  width: 4px;
}

#tamashiination2025 .p-notes_bg::-webkit-scrollbar-thumb {
  background: var(--maincolor);
  border-radius: 4px;
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .p-notes {
    margin: 10% 0;
    font-size: max(2.8vw,12px);
  }
  #tamashiination2025 .p-notes h3 {
    font-size: max(2.8vw,12px);
  }
}

#tamashiination2025 .p-product {
  padding-top: 55px;
}

#tamashiination2025 .p-product_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-perspective: 500px;
          perspective: 500px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

#tamashiination2025 .p-product_list > li {
  max-width: 280px;
}

#tamashiination2025 .p-product_list > li > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

#tamashiination2025 .p-product_list > li.break {
  width: 100% !important;
  max-width: none;
}

#tamashiination2025 .p-product_list .img {
  overflow: hidden;
}

#tamashiination2025 .p-product_list .img img {
  width: 100%;
  max-width: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#tamashiination2025 .p-product_list .detail {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#ff8400), color-stop(#ffd400), color-stop(rgba(255, 0, 6, 0.6)), to(rgba(255, 0, 108, 0.6)));
  background: linear-gradient(90deg, #ff8400, #ffd400, rgba(255, 0, 6, 0.6), rgba(255, 0, 108, 0.6));
  background-size: 300%;
  background-position: 100%;
  padding: 0.5em 0.5em 0.75em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#tamashiination2025 .p-product_list a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#tamashiination2025 .p-product_list a:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#tamashiination2025 .p-product_list a:hover .detail {
  color: #000;
  background-position: 0%;
}

#tamashiination2025 .p-product_list.js-scroll > li {
  -webkit-transition: 1.2s cubic-bezier(0.5, 0, 0.1, 1.1) 0.3s;
  transition: 1.2s cubic-bezier(0.5, 0, 0.1, 1.1) 0.3s;
  -webkit-transform: translateZ(150px);
          transform: translateZ(150px);
  opacity: 0;
}

#tamashiination2025 .p-product_list.is-scroll > li {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

#tamashiination2025 .p-product.disabled h2.heading3 {
  color: #fff;
  background: #666;
}

#tamashiination2025 .p-product.disabled .p-schedule_block dl dt,
#tamashiination2025 .p-product.disabled .p-schedule_block dl dd {
  color: #999;
}

#tamashiination2025 .p-product.--tamashiiweb h2 {
  font-size: 24px;
  text-align: center;
}

#tamashiination2025 .p-product.--tamashiiweb h2 img {
  width: 365px;
  max-width: 30.4167%;
  margin: 20px auto 0;
}

@media screen and (min-width: 801px) {
  #tamashiination2025 .p-product_list > li {
    width: calc(calc(100% - 60px) / 4);
  }
}

@media screen and (max-width: 1220px) {
  #tamashiination2025 .p-product {
    padding-top: 5%;
  }
  #tamashiination2025 .p-product_list .detail {
    font-size: 1.4vw;
  }
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .p-product_list {
    gap: 2vw;
  }
  #tamashiination2025 .p-product_list > li {
    width: calc(calc(100% - 2vw) / 2);
  }
  #tamashiination2025 .p-product_list .detail {
    font-size: 3vw;
  }
  #tamashiination2025 .p-product.--tamashiiweb h2 {
    font-size: 4vw;
  }
  #tamashiination2025 .p-product.--tamashiiweb h2 img {
    max-width: 45.375%;
    margin-top: 2.5vw;
  }
}

#tamashiination2025 .contentsFooter {
  padding: 100px 0 20px;
}

#tamashiination2025 .contentsFooter .copyright {
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #tamashiination2025 .contentsFooter {
    padding: 10% 0 4%;
  }
}

/* Animation */
.js-scroll.fadeInUp {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-scroll.fadeInLeft {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-scroll.fadeInRight {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-scroll.fadeInZoom {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-scroll.is-scroll.fadeInUp, .js-scroll.is-scroll.fadeInLeft, .js-scroll.is-scroll.fadeInRight, .js-scroll.is-scroll.fadeInZoom {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes flash {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes hue {
  0% {
    -webkit-filter: hue-rotate(0);
            filter: hue-rotate(0);
  }
  100% {
    -webkit-filter: hue-rotate(90deg);
            filter: hue-rotate(90deg);
  }
}

@keyframes hue {
  0% {
    -webkit-filter: hue-rotate(0);
            filter: hue-rotate(0);
  }
  100% {
    -webkit-filter: hue-rotate(90deg);
            filter: hue-rotate(90deg);
  }
}

/* ======== ↑ End main ↑ ======== */
