@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

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

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

sup {
  vertical-align: super;
  font-size: 0.75em;
}

input,
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  outline: none;
  color: inherit;
  font-family: inherit;
}

input::-ms-expand,
select::-ms-expand,
textarea::-ms-expand,
button::-ms-expand {
  display: none;
}

button {
  display: block;
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #ccc;
  background: none;
}

em {
  font-style: normal;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  color: #333;
  font-family: "yakuhanjp", "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  body {
    letter-spacing: 0.04em;
  }
}

.only-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
  .only-pc {
    display: block;
  }
}
.js-fadeBlock {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s;
}
.js-fadeBlock.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fixAnchorNav {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 5000;
}
.fixAnchorNav__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33.3333333333% 1px 16.6666666667% 1px 16.6666666667% 1px 33.3333333333%;
  grid-template-columns: 33.3333333333% 16.6666666667% 16.6666666667% 33.3333333333%;
  -ms-grid-rows: auto 1px auto;
      grid-template-areas: "sec01 sec02 sec02 sec03" "sec04 sec04 sec05 sec05";
  flex-wrap: wrap;
  gap: 1px;
  background-color: #fff;
}
.fixAnchorNav__list li {
  background-color: #F1518F;
}
.fixAnchorNav__list li:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sec01;
}
.fixAnchorNav__list li:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: sec02;
}
.fixAnchorNav__list li:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  grid-area: sec03;
}
.fixAnchorNav__list li:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: sec04;
}
.fixAnchorNav__list li:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  -ms-grid-column-span: 3;
  grid-area: sec05;
}
.fixAnchorNav .fixAnchorNavBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: min(9.6vw, 36px);
  color: #fff;
  overflow: hidden;
}
.fixAnchorNav .fixAnchorNavBtn__content {
  height: 100%;
  white-space: nowrap;
}
.fixAnchorNav .fixAnchorNavBtn__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  font-size: clamp(9px, 2.65vw, 12px);
  line-height: 1.2;
  text-align: center;
}

.pagetopBtn {
  position: absolute;
  right: 5%;
  bottom: 120%;
  width: min(9.0666666667vw, 34px);
  z-index: 5000;
}

.overview {
  padding-bottom: min(21.3333333333vw, 80px);
}
.overview .itemSection {
  padding: 0 min(7.4666666667vw, 28px);
}

.kv {
  text-align: center;
  line-height: 0;
}

.intro {
  width: 86.6666666667vw;
  margin: 0 auto;
  padding: min(9.3333333333vw, 35px) 0;
  text-align: center;
}
.intro__title {
  margin-bottom: min(7.4666666667vw, 28px);
}
.intro__title span {
  display: block;
  font-size: 0.875rem;
  color: #F1518F;
  margin-bottom: 1em;
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 2.1428571429;
}
.intro__text {
  font-size: 0.875rem;
  line-height: 2.1428571429;
}

.introColumn {
  background: #FDFAF7;
  padding: min(21.3333333333vw, 80px) 0;
  text-align: center;
}
.introColumn__inner {
  width: 86.6666666667vw;
  margin: 0 auto;
}
.introColumn__title {
  margin-bottom: min(10.6666666667vw, 40px);
}
.introColumn__title img {
  width: 84vw;
}
.introColumn__title span {
  display: inline-block;
  margin-top: min(4.2666666667vw, 16px);
  font-size: 3.7333333333vw;
  padding: 3px 5px;
  background-color: #F1518F;
  color: #fff;
}
.introColumn__content {
  margin-top: min(5.3333333333vw, 20px);
}
.introColumn__image {
  margin-bottom: min(4vw, 15px);
}
.introColumn__image img {
  display: block;
  width: 37.3333333333vw;
  margin: 0 auto min(5.3333333333vw, 20px);
}
.introColumn__image figcaption {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.6;
}
.introColumn__image figcaption .introColumn__name {
  display: block;
  font-size: 1.125rem;
  margin-top: 0.2222222222em;
}
.introColumn__text {
  text-align: left;
  font-size: 0.875rem;
  line-height: 2.1428571429;
}

.pageAnchor {
  padding: min(18.6666666667vw, 70px) 0 min(14.6666666667vw, 55px);
}
.pageAnchor__title {
  width: 50.6666666667vw;
  margin: 0 auto;
  text-align: center;
}
.pageAnchor__title img {
  width: min(86.6666666667vw, 486px);
}
.pageAnchor__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 86.6666666667vw;
  max-width: 912px;
  gap: 4%;
  margin: 0 auto;
}
.pageAnchor__list li {
  flex-basis: 30%;
  flex-shrink: 0;
}
.pageAnchor__list li:nth-child(4), .pageAnchor__list li:nth-child(6) {
  margin-left: 15%;
}
.pageAnchor__list li:nth-child(5), .pageAnchor__list li:nth-child(7) {
  margin-right: 15%;
}
.pageAnchor .pageAnchorBtn {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: min(6.4vw, 24px);
}
.pageAnchor .pageAnchorBtn__image {
  line-height: 0;
  text-align: center;
}
.pageAnchor .pageAnchorBtn__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 5px;
  text-align: center;
}
.pageAnchor .pageAnchorBtn__text {
  font-size: 0.75rem;
  font-family: "yakuhanjp", "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0;
}

.itemSection {
  padding-top: min(21.3333333333vw, 80px);
  padding-bottom: min(26.6666666667vw, 100px);
  overflow: hidden;
}
.itemSection.itemSection01, .itemSection.itemSection03, .itemSection.itemSection05 {
  background-color: #FFFAFC;
}
.itemSection__titleBlock {
  position: relative;
  width: 86.6666666667vw;
  margin: auto;
  padding-bottom: min(8vw, 30px);
  text-align: center;
}
.itemSection .itemInfoBlock {
  width: 86.6666666667vw;
  margin: 0 auto;
}
.itemSection .itemInfoBlock + .itemInfoBlock {
  margin-top: min(32vw, 120px);
}
.itemSection .itemInfoBlock__image {
  position: relative;
  overflow: hidden;
  margin-bottom: min(6.4vw, 24px);
}
.itemSection .itemInfoBlock__content > img,
.itemSection .itemInfoBlock__content > picture {
  display: block;
  margin-bottom: min(6.4vw, 24px);
}
.itemSection .itemInfoBlock__catch {
  position: relative;
  font-size: 1.5rem;
  font-family: "yakuhanjp", "Noto Serif JP", serif;
  font-weight: normal;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
}
.itemSection .itemInfoBlock__catch strong {
  color: #F1518F;
  font-weight: normal;
}
.itemSection .itemInfoBlock__features {
  margin-top: min(6.4vw, 24px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 10px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px;
}
.itemSection .itemInfoBlock__features__item {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
}
.itemSection .itemInfoBlock__features__title {
  font-size: 0.625rem;
}
.itemSection .itemInfoBlock__features__icons {
  display: flex;
  margin-top: min(1.0666666667vw, 4px);
}
.itemSection .itemInfoBlock__features__icons img {
  max-width: 64px;
}
.itemSection .itemInfoBlock__text {
  margin-top: 1.5em;
  font-size: 0.875rem;
  line-height: 2.1428571429;
}
.itemSection .itemInfoBlock__notes {
  margin-top: 1.5em;
  font-size: 0.75rem;
}
.itemSection .itemInfoBlock__subImg {
  width: min(64vw, 240px);
  margin: min(10.6666666667vw, 40px) auto;
}
.itemSection .itemInfoBlock__lineup {
  margin-top: min(10.6666666667vw, 40px);
  padding: 0 8%;
}
.itemSection .itemInfoBlock__lineupBlock + .itemInfoBlock__lineupBlock {
  margin-top: min(8vw, 30px);
}
.itemSection .itemInfoBlock__lineupBlock-main .itemInfoBlock__lineupBlock__label {
  color: #F1518F;
}
.itemSection .itemInfoBlock__lineupBlock-main .itemInfoBlock__lineupBlock__priceBtn {
  border: none;
  background-color: #F1518F;
  color: #fff;
}
.itemSection .itemInfoBlock__lineupBlock .itemInfoBlock__lineupBox + .itemInfoBlock__lineupBox {
  margin-top: min(8vw, 30px);
}
.itemSection .itemInfoBlock__lineupBlock__title {
  margin-bottom: 0.5em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #ccc;
  font-size: 0.875rem;
  line-height: 1.3;
}
.itemSection .itemInfoBlock__lineupBlock__label {
  margin-bottom: 1em;
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
}
.itemSection .itemInfoBlock__lineupBlock__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.itemSection .itemInfoBlock__lineupBlock__price + .itemInfoBlock__lineupBlock__price {
  margin-top: 5px;
}
.itemSection .itemInfoBlock__lineupBlock__price-large .itemInfoBlock__lineupBlock__priceText::before {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1em;
  height: 1em;
  background-image: url(../img/icon_L.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  content: "";
}
.itemSection .itemInfoBlock__lineupBlock__priceText {
  display: block;
  position: relative;
  padding-left: 1.375em;
  font-size: 1rem;
}
.itemSection .itemInfoBlock__lineupBlock__priceText .tax {
  font-size: 0.75rem;
}
.itemSection .itemInfoBlock__lineupBlock__priceBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 5.7142857143em;
  height: 1.5em;
  border: 1px solid currentColor;
  color: #333;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.3em;
}
.itemSection.itemSection01 .itemSection__titleBlock {
  width: 82.6666666667vw;
}
.itemSection.itemSection02 .itemSection__titleBlock {
  width: 78.6666666667vw;
}
.itemSection.itemSection03 .itemSection__titleBlock {
  width: 69.3333333333vw;
}
.itemSection.itemSection04 .itemSection__titleBlock {
  width: 84vw;
}
.itemSection.itemSection05 .itemSection__titleBlock {
  width: 70.6666666667vw;
}

.talkBlock {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  width: 86.6666666667vw;
  max-width: 1000px;
  margin-inline: auto;
  padding-bottom: min(19.2vw, 72px);
}
.talkBlock__image {
  width: 52vw;
  margin-inline: auto;
}
.talkBlock__talks {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.3571428571;
  letter-spacing: 0.04em;
}
.talkBlock__talks > div {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 22px 10px 1fr;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin-top: min(3.2vw, 12px);
}
.talkBlock__talks > div:first-child {
  margin-top: min(6.6666666667vw, 25px);
}
.talkBlock__talks > div:first-child::before {
  position: absolute;
  top: -15px;
  right: 5px;
  width: 42px;
  height: 40px;
  background: url("../img/img_talks02.png") no-repeat center center/cover;
  content: "";
}
.talkBlock__talks dt {
  position: relative;
  top: 0.4em;
}
.talkBlock__talks dd {
  padding-right: min(6.6666666667vw, 25px);
}
.talkBlock__talks--a em {
  color: #F1518F;
}
.talkBlock__talks--b em {
  color: #F48D43;
}

.item__credit {
  width: 86.6666666667vw;
  max-width: 1000px;
  margin: min(21.3333333333vw, 80px) auto 3.75em;
  font-size: 0.75rem;
  font-family: "yakuhanjp", "Noto Serif JP", serif;
  line-height: 2.3;
  text-align: center;
}

.linkArea {
  width: 86.6666666667vw;
  max-width: 1000px;
  margin: auto;
  padding-top: 3.75em;
  padding-bottom: 3.75em;
  border-top: 1px solid #ccc;
}

.allItemBtn {
  width: 86.6666666667vw;
  max-width: 600px;
  margin: 0 auto;
}
.allItemBtn + .allItemBtn {
  margin-top: min(8vw, 30px);
}
.allItemBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 5.7142857143em;
  border: 1px solid currentColor;
  background-color: #fff;
  color: #333;
  font-size: 0.875rem;
  text-align: center;
}
.allItemBtn a::after {
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  width: 0.4285714286em;
  height: 0.8571428571em;
  margin-left: 1em;
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  content: "";
}
.allItemBtn a img {
  height: 1.7857142857em;
}

.footer {
  padding: 50px 0 70px;
  background-color: #333;
  color: #fff;
}
.footer__logo {
  text-align: center;
}
.footer__logo img {
  width: 32vw;
  max-width: 150px;
}
.footer .copyright {
  margin-top: 50px;
  font-size: 0.625rem;
  text-align: center;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .fixAnchorNav .fixAnchorNavBtn__text {
    font-size: 1rem;
  }
  .fixAnchorNav .fixAnchorNavBtn.is-active::after {
    background: #F1518F;
    border: 1px solid #F1518F;
  }
  .fixAnchorNav .fixAnchorNavBtn.is-active .fixAnchorNavBtn__text::after {
    opacity: 1;
    visibility: visible;
  }
  .pagetopBtn {
    right: 1%;
    width: 3.75em;
  }
}
@media screen and (min-width: 768px) and (min-width: 1920px) {
  .pagetopBtn {
    right: calc(50% - 920px);
  }
}
@media screen and (min-width: 768px) {
  .overview {
    padding-bottom: 120px;
  }
  .kv img {
    width: 100%;
  }
  .intro {
    width: 100%;
    padding: 4.6875em 0 6.25em;
  }
  .intro__title {
    margin-bottom: min(3.2vw, 12px);
  }
  .intro__title span {
    font-size: 1.125rem;
  }
  .intro__text {
    font-size: 1.125rem;
    line-height: 2.2222222222;
    letter-spacing: 0.08em;
  }
  .overview .itemSection {
    max-width: 603px;
    margin-inline: auto;
    padding-inline: 0;
  }
  .overview .itemSection .itemInfoBlock__lineup {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: 15px;
  }
  .overview .itemSection .itemInfoBlock__lineupBlock {
    padding-right: 0;
  }
  .introColumn {
    padding: 5.3125em 0 4.375em;
    text-align: center;
  }
  .introColumn__inner {
    width: 96%;
    max-width: 1000px;
  }
  .introColumn__title img {
    width: 1000px;
    margin-inline: auto;
  }
  .introColumn__title span {
    display: inline-block;
    margin-top: min(5.3333333333vw, 20px);
    font-size: 1.25rem;
    padding: 5px;
    letter-spacing: 0.08em;
  }
  .introColumn__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 160px 5% 1fr;
    grid-template-columns: 160px 1fr;
    -ms-grid-rows: auto 5% 1fr;
    grid-template-rows: auto 1fr;
        grid-template-areas: "image caption" "image text";
    gap: 5%;
    margin-top: 60px;
  }
  .introColumn__content + .introColumn__content {
    margin-top: 25px;
  }
  .introColumn__image {
    display: contents;
    flex-basis: 20%;
    margin-bottom: 0;
  }
  .introColumn__image img {
    grid-area: image;
    max-width: 160px;
    margin: 0 auto min(4vw, 15px);
  }
  .introColumn__image figcaption {
    grid-area: caption;
    align-self: flex-start;
    font-size: 0.875rem;
    text-align: left;
  }
  .introColumn__image figcaption .introColumn__name {
    font-size: 1.125rem;
  }
  .introColumn__text {
    grid-area: text;
    flex-basis: 73%;
    font-size: 1rem;
    line-height: 2.375;
  }
  .pageAnchor {
    padding: min(32vw, 120px) 0 min(16vw, 60px);
  }
  .pageAnchor__title {
    margin-bottom: 2em;
  }
  .pageAnchor__title img {
    width: 185px;
  }
  .pageAnchor__list {
    justify-content: center;
    gap: 3.2894736842%;
  }
  .pageAnchor__list li {
    flex-basis: 22.4780701754%;
  }
  .pageAnchor .pageAnchorBtn {
    padding-bottom: 3.75em;
  }
  .pageAnchor .pageAnchorBtn::after {
    height: 0.625em;
  }
  .pageAnchor .pageAnchorBtn__image {
    line-height: 0;
  }
  .pageAnchor .pageAnchorBtn__content {
    padding-top: 8px;
    text-align: center;
  }
  .pageAnchor .pageAnchorBtn__text {
    font-size: 1.25rem;
  }
  .pageAnchor .pageAnchorBtn__text span {
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
  }
  .pageAnchor .pageAnchorBtn__text span::after {
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.25s;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #F1518F;
    content: "";
  }
  .pageAnchor .pageAnchorBtn:hover .pageAnchorBtn__text span::after {
    opacity: 1;
    visibility: visible;
  }
  .itemSection {
    padding-top: 7.5em;
    padding-bottom: 7.5em;
    overflow: initial;
  }
  .itemSection__titleBlock {
    width: 96%;
    max-width: 1000px;
    padding-bottom: 3.75em;
  }
  .itemSection .itemInfoBlock {
    width: 96%;
    max-width: 1000px;
  }
  .itemSection .itemInfoBlock.itemInfoBlock__reverse .itemInfoBlock__inner {
    flex-direction: row-reverse;
  }
  .itemSection .itemInfoBlock + .itemInfoBlock {
    margin-top: 7.5em;
  }
  .itemSection .itemInfoBlock__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .itemSection .itemInfoBlock__image {
    flex-basis: 57%;
    max-width: 570px;
    align-self: flex-start;
  }
  .itemSection .itemInfoBlock__content {
    flex-basis: 38%;
    max-width: 380px;
  }
  .itemSection .itemInfoBlock__catch {
    display: block;
    position: relative;
    font-size: 1.875rem;
    text-align: left;
    line-height: 1.7333333333;
    letter-spacing: 0.06em;
  }
  .itemSection .itemInfoBlock__catch::before {
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .itemSection .itemInfoBlock__features {
    gap: 5%;
    margin-top: 32px;
  }
  .itemSection .itemInfoBlock__features__title {
    font-size: 0.75rem;
  }
  .itemSection .itemInfoBlock__features__icons {
    margin-top: min(1.6vw, 6px);
    gap: 3%;
  }
  .itemSection .itemInfoBlock__features__icons img {
    width: 6.4vw;
  }
  .itemSection .itemInfoBlock__text {
    margin-top: 2.1875em;
    font-size: 1rem;
    line-height: 2.375;
  }
  .itemSection .itemInfoBlock__notes {
    margin-top: 2em;
  }
  .itemSection .itemInfoBlock__subImg {
    width: min(80vw, 300px);
  }
  .itemSection .itemInfoBlock__lineup {
    display: -ms-grid;
    display: grid;
    justify-content: flex-start;
    margin-top: 20px;
    padding: 0;
  }
  .itemSection .itemInfoBlock__lineup .itemInfoBlock__lineupList {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.875em 6%;
  }
  .itemSection .itemInfoBlock__lineup.is-1-2 {
    -ms-grid-columns: 33.33% 66.66%;
    grid-template-columns: 33.33% 66.66%;
  }
  .itemSection .itemInfoBlock__lineup.is-1-2 .itemInfoBlock__lineupBlock {
    padding-right: 18.00180018%;
  }
  .itemSection .itemInfoBlock__lineup.is-1-2 .itemInfoBlock__lineupBlock + .itemInfoBlock__lineupBlock {
    padding-right: 0;
    padding-left: 9.00090009%;
  }
  .itemSection .itemInfoBlock__lineup.is-2-1 {
    -ms-grid-columns: 66.66% 33.33%;
    grid-template-columns: 66.66% 33.33%;
  }
  .itemSection .itemInfoBlock__lineup.is-2-1 .itemInfoBlock__lineupBlock {
    padding-right: 9.00090009%;
  }
  .itemSection .itemInfoBlock__lineup.is-2-1 .itemInfoBlock__lineupBlock + .itemInfoBlock__lineupBlock {
    padding-right: 0;
    padding-left: 18.00180018%;
  }
  .itemSection .itemInfoBlock__lineupBlock {
    padding-right: 6%;
  }
  .itemSection .itemInfoBlock__lineupBlock + .itemInfoBlock__lineupBlock {
    margin-top: 0;
    margin-left: -1px;
    padding-right: 0;
    padding-left: 6%;
    border-left: 1px solid #ccc;
  }
  .itemSection .itemInfoBlock__lineupBlock .itemInfoBlock__lineupBox + .itemInfoBlock__lineupBox {
    margin-top: 0;
  }
  .itemSection .itemInfoBlock__lineupBlock__title {
    display: flex;
    align-items: flex-end;
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 0.875rem;
  }
  .itemSection .itemInfoBlock__lineupBlock__label {
    margin-bottom: 16px;
    font-size: 0.8125rem;
  }
  .itemSection .itemInfoBlock__lineupBlock__priceBtn {
    flex-basis: 80px;
    height: 20px;
    transition: 0.5s;
  }
  .itemSection .itemInfoBlock__lineupBlock__priceBtn:hover {
    opacity: 0.8;
  }
  .itemSection .itemInfoBlock__lineupBox {
    flex-basis: 19.6875em;
    max-width: 270px;
    flex-shrink: 0;
  }
  .itemSection.itemSection01 [src*=ttl_section01] {
    width: 725px;
  }
  .itemSection.itemSection01 [src*="copy_item01_01.svg"] {
    width: 221px;
  }
  .itemSection.itemSection01 [src*="copy_item01_02.svg"] {
    width: 225px;
  }
  .itemSection.itemSection02 [src*=ttl_section01] {
    width: 864px;
  }
  .itemSection.itemSection02 [src*="copy_item02_01.svg"] {
    width: 206px;
  }
  .itemSection.itemSection02 [src*="copy_item02_02.svg"] {
    width: 245px;
  }
  .itemSection.itemSection02 [src*="copy_item02_03.svg"] {
    width: 280px;
  }
  .itemSection.itemSection03 [src*=ttl_section01] {
    width: 692px;
  }
  .itemSection.itemSection04 [src*=ttl_section01] {
    width: 954px;
  }
  .itemSection.itemSection04 [src*=copy_item04_01] {
    width: 344px;
  }
  .itemSection.itemSection04 [src*=copy_item04_02] {
    width: 300px;
  }
  .itemSection.itemSection04 [src*=copy_item04_03] {
    width: 223px;
  }
  .itemSection.itemSection04 [src*=copy_item04_04] {
    width: 223px;
  }
  .itemSection.itemSection05 [src*=ttl_section01] {
    width: 804px;
  }
  .itemSection.itemSection05 .itemInfoBlock__catch {
    padding-top: calc(min(28vw, 105px) + min(9.3333333333vw, 35px));
  }
  .talkBlock {
    -ms-grid-columns: 232px 40px 1fr;
    grid-template-columns: 232px 1fr;
    padding-bottom: min(29.3333333333vw, 110px);
    gap: 40px;
  }
  .talkBlock__image {
    position: relative;
    top: -15px;
    width: 100%;
    margin-inline: 0;
  }
  .talkBlock__talks {
    font-size: 1rem;
    line-height: 2.375;
  }
  .talkBlock__talks > div {
    -ms-grid-columns: 26px 16px 1fr;
    grid-template-columns: 26px 1fr;
    gap: 16px;
    margin-top: min(2.6666666667vw, 10px);
  }
  .talkBlock__talks > div:first-child::before {
    top: -45px;
    right: 12px;
    width: 92px;
    height: 86px;
  }
  .talkBlock__talks dt {
    position: relative;
    top: 0.4em;
  }
  .talkBlock__talks dd {
    padding-right: min(21.3333333333vw, 80px);
  }
  .item__credit {
    margin: 7.5em auto 6.25em;
  }
  .linkArea {
    max-width: 1000px;
    margin: 0 auto;
  }
  .allItemBtn {
    width: 173.3333333333vw;
    max-width: 600px;
    margin: 0 auto;
  }
  .allItemBtn a {
    height: 100px;
    font-size: 1.25rem;
    padding-left: 2em;
  }
  .allItemBtn a::after {
    width: 13px;
    height: 18px;
    margin-left: 2em;
  }
  .footer {
    padding: 80px 0;
  }
  .footer .copyright {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px){
  .introColumn__image img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .introColumn__image figcaption {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .introColumn__text {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
@media screen and (min-width: 1200px) {
  .fixAnchorNav {
    position: fixed;
    left: 2%;
    top: 14%;
    bottom: auto;
    width: 175px;
  }
  .fixAnchorNav__list {
    display: block;
    background: none;
  }
  .fixAnchorNav__list li {
    background: none;
  }
  .fixAnchorNav__list li + li {
    border-left: none;
  }
  .fixAnchorNav .fixAnchorNavBtn {
    display: block;
    position: relative;
    padding: 0 0 0 20px;
    height: auto;
  }
  .fixAnchorNav .fixAnchorNavBtn::after {
    transition-duration: 0.25s;
    display: block;
    position: absolute;
    left: 0;
    top: 0.9em;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ddd;
    content: "";
  }
  .fixAnchorNav .fixAnchorNavBtn__content {
    display: block;
    padding: 5px 0;
  }
  .fixAnchorNav .fixAnchorNavBtn__text {
    position: relative;
    display: inline-block;
    color: #333;
    text-align: left;
    padding: 0.3em 0;
    font-size: 16px;
  }
  .fixAnchorNav .fixAnchorNavBtn__text::after {
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.25s;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #F1518F;
    content: "";
  }
  .fixAnchorNav .fixAnchorNavBtn:hover::after {
    background: #F1518F;
    border: 1px solid #F1518F;
  }
  .fixAnchorNav .fixAnchorNavBtn:hover .fixAnchorNavBtn__text::after {
    opacity: 1;
    visibility: visible;
  }
  .pagetopBtn {
    position: fixed;
    right: 40px;
    bottom: 40px;
    margin-top: 10px;
    width: 34px;
    height: 34px;
    z-index: 5000;
  }
}