@charset "UTF-8";
/*-------reset css（ここはローカル実装用ですので、適宜削除してください）--------*/
/* 余計な余白を消し、サイズ計算を直感的にする最小限のリセット
*/
*,
*::before,
*::after {
  box-sizing: border-box; /* パディングを含めたサイズ計算にする */
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%; /* 標準サイズ */
  scroll-behavior: smooth; /* スムーススクロール */
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased; /* 文字を綺麗に見せる */
  color: #333;
  overflow-x: hidden; /* 横揺れ（はみ出し）防止 */
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%; /* 画像が親要素を突き抜けないようにする */
}

ul,
ol {
  list-style: none; /* 箇条書きのポッチを消す */
}

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

/*------------------------------------------------*/
/********** 共通指定 **********/
.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #111111;
  font-feature-settings: "palt";
}

.bg-container {
  background: url(../assets/img/bg.jpg) repeat-y center top;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .bg-container {
    background: url(../assets/img/bg_sp.jpg) repeat-y center top;
    background-size: contain;
  }
}

.h2-ttl {
  font-size: 50px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #cda489;
  line-height: 1;
  margin: 0 0 40px 0;
}
.h2-ttl span {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
}
@media screen and (max-width: 767px) {
  .h2-ttl {
    font-size: 40px;
  }
  .h2-ttl span {
    font-size: 15px;
  }
}

.h3-ttl {
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 0.06em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 767px) {
  .h3-ttl {
    text-align: center;
    font-size: 25px;
    margin: 0 0 24px 0;
  }
}

/********** ここから個別スタイルを記述してください **********/
/* メインビジュアル */
.main-visual-img {
  position: relative;
}

.main-copy {
  position: absolute;
  top: 12%;
  left: 10%;
  z-index: 3;
  width: 31%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .main-copy {
    top: 14%;
    width: 38%;
  }
}
@media screen and (max-width: 767px) {
  .main-copy {
    width: 31%;
  }
}
@media screen and (max-width: 600px) {
  .main-copy {
    width: 68%;
    left: 5%;
  }
}

.sub-copy-img {
  width: 74%;
  height: auto;
}

.main-copy-img {
  margin: 24px 0 0 0;
  width: 100%;
  height: auto;
}

.mv-img {
  width: 90%;
  min-width: 1152px;
  height: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1152px) {
  .mv-img {
    width: 100%;
    min-width: initial;
    min-width: auto;
  }
}

.main-visual-bg {
  width: 90%;
  min-width: 1152px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: url(../assets/img/mv_bg.jpg) no-repeat center center;
  background-size: cover;
  aspect-ratio: 2302/1400;
}
@media screen and (max-width: 1152px) {
  .main-visual-bg {
    display: none;
  }
}

/* メインビジュアル - 画像 */
.mv-pc-only {
  display: block;
}
@media screen and (max-width: 600px) {
  .mv-pc-only {
    display: none;
  }
}

.mv-sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .mv-sp-only {
    display: block;
  }
}

/* メニュー */
.menu {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  position: relative;
  z-index: 4;
  max-width: 952px;
  width: 100%;
  margin: 0 auto;
}
.menu .menu-item {
  max-width: 238px;
  width: 25%;
  position: relative;
}
.menu .menu-item:not(:last-child):before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  width: 1px;
  height: 16px;
  background: #cda489;
}
.menu .menu-link {
  color: #cda489;
  font-size: 17px;
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.07em;
  padding: 2.0833333333vw 0;
  transition: 0.3s;
}
.menu .menu-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1152px) and (min-width: 601px) {
  .menu {
    max-width: 100%;
    background: url(../assets/img/menu_bg.jpg) no-repeat center center;
    background-size: cover;
  }
}
@media screen and (max-width: 600px) {
  .menu {
    flex-flow: row wrap;
    background: url(../assets/img/menu_bg_sp.jpg) no-repeat center center;
    background-size: cover;
  }
  .menu .menu-item {
    width: 50%;
  }
  .menu .menu-item:nth-child(1):after, .menu .menu-item:nth-child(2):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: #cda489;
  }
  .menu .menu-item:nth-child(2):before {
    content: none;
  }
}

.menu.fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  z-index: 100;
  background: url(../assets/img/menu_bg.jpg) no-repeat center center;
  background-size: cover;
  max-width: initial;
}

/* QUALITY */
.quality-sec {
  padding: 110px 0 0 0;
}
@media screen and (max-width: 767px) {
  .quality-sec {
    padding: 40px 0 0 0;
  }
}

.quality-intro {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .quality-intro {
    flex-flow: column-reverse;
    justify-content: center;
  }
}

.quality-intro-txt {
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 36px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .quality-intro-txt {
    padding: 0 2%;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  .quality-intro-txt {
    letter-spacing: 0;
  }
}

@media screen and (max-width: 767px) {
  .quality-img01 {
    margin: 0 auto;
  }
}

.quality-img02 {
  margin: 150px 0 0 0;
}
@media screen and (max-width: 900px) {
  .quality-img02 {
    display: none;
  }
}

.quality-sec-txt-box {
  display: flex;
  gap: 100px;
  max-width: 1920px;
  width: 100%;
  margin: 20px auto 0;
}
@media screen and (max-width: 1152px) {
  .quality-sec-txt-box {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .quality-sec-txt-box {
    margin: 50px auto 0;
    flex-flow: column;
  }
}

.quality-sec-img-box {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1152px) {
  .quality-sec-img-box {
    width: 50%;
    gap: 5%;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .quality-sec-img-box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 2% 0 0;
  }
}

.quality-img03 {
  margin: 120px 0 0 0;
}
@media screen and (max-width: 1152px) {
  .quality-img03 {
    width: 75%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .quality-img03 {
    width: 70%;
    margin: 0;
  }
}

@media screen and (max-width: 1152px) {
  .quality-img04 {
    width: 20%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .quality-img04 {
    width: 25%;
    height: auto;
  }
}

.quality-sec-txt-container {
  width: 41%;
  margin: 90px 0 0 0;
}
@media screen and (max-width: 1152px) {
  .quality-sec-txt-container {
    width: 50%;
    padding: 0 2% 0 0;
  }
}
@media screen and (max-width: 767px) {
  .quality-sec-txt-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.quality-sec-txt {
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 36px;
}
@media screen and (max-width: 767px) {
  .quality-sec-txt {
    font-size: 18px;
    padding: 0 2%;
  }
}

.quality-point {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 40px;
  margin: 80px 0 0 0;
}
@media screen and (max-width: 767px) {
  .quality-point {
    gap: 30px;
  }
}
@media screen and (max-width: 500px) {
  .quality-point {
    gap: 10px;
  }
}

.quality-point-item {
  text-align: center;
  width: 207px;
  height: 207px;
  background: url(../assets/img/quality_point_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  border-radius: 50%;
}
.quality-point-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 10px 10px 15px 0px rgba(223, 190, 153, 0.4);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .quality-point-item {
    width: 175px;
    height: 175px;
  }
}

.quality-text-box {
  color: #86632e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.06em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.quality-text-box .quality-point03-txt01 {
  font-size: 19px;
  line-height: 1.4;
}
.quality-text-box .quality-point03-txt02 {
  font-size: 27px;
  line-height: 1;
  margin: 10px 0 0 0;
}
.quality-text-box .quality-point03-txt02 span {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .quality-text-box {
    font-size: 18px;
  }
  .quality-text-box .quality-point03-txt01 {
    font-size: 14px;
  }
  .quality-text-box .quality-point03-txt02 {
    font-size: 20px;
  }
  .quality-text-box .quality-point03-txt02 span {
    font-size: 11px;
  }
}

/* POINT */
.point-box {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  max-width: 1920px;
  width: 100%;
  padding: 170px 0 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) and (min-width: 901px) {
  .point-box {
    gap: 40px;
  }
}
@media screen and (max-width: 900px) {
  .point-box {
    flex-flow: column-reverse;
    gap: 30px;
    margin: 0 auto;
    padding: 100px 0 0 0;
  }
}
.point-box.point-box-reverse {
  flex-flow: row-reverse;
  align-items: center;
  margin: 50px auto 0;
}
@media screen and (max-width: 900px) {
  .point-box.point-box-reverse {
    flex-flow: column-reverse;
    align-items: flex-end;
  }
}
@media screen and (min-width: 901px) {
  .point-box.point-box03 {
    align-items: center;
  }
}

.point-img {
  width: calc(100% - 900px);
  height: auto;
}
@media screen and (max-width: 1920px) {
  .point-img {
    width: 50%;
  }
}
@media screen and (max-width: 900px) {
  .point-img {
    width: 92%;
  }
}

.point-txt-box {
  max-width: 490px;
  padding: 0 2%;
}
@media screen and (min-width: 901px) {
  .point-txt-box .h2-ttl {
    text-align: left;
  }
}
@media screen and (max-width: 900px) {
  .point-txt-box {
    max-width: 470px;
    margin: 0 auto;
  }
  .point-txt-box .h3-ttl {
    text-align: center;
  }
}

.point-txt {
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0.06em;
}

.point-txt-attention {
  font-size: 16px;
  margin: 20px 0 0 0;
}

/* LINEUP */
.lineup-sec {
  max-width: calc(1024px + 4%);
  width: 100%;
  padding: 110px 2% 0;
  margin: 0 auto;
}

.lineup-h2-ttl {
  font-size: 49px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #cda489;
  margin: 0 0 30px 0;
}
.lineup-h2-ttl span {
  font-size: 25px;
  display: block;
}
@media screen and (max-width: 767px) {
  .lineup-h2-ttl {
    font-size: clamp(26px, 5.867vw + 4px, 49px);
  }
  .lineup-h2-ttl span {
    font-size: clamp(15px, 2.551vw + 5.43px, 25px);
  }
}

.lineup-intro-txt {
  font-size: 20px;
  text-align: center;
  line-height: 38px;
}
@media screen and (max-width: 767px) {
  .lineup-intro-txt {
    font-size: 18px;
  }
}

.lineup-intro-table {
  display: flex;
  justify-content: center;
  margin: 50px 0 0 0;
}

.lineup-table-box {
  width: 50%;
  padding: 70px 50px;
}
.lineup-table-box .lineup-table-h3 {
  color: #fff;
  font-size: 40px;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 0 20px 0;
}
.lineup-table-box .lineup-table-h3 span {
  display: inline-block;
  position: relative;
  padding-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .lineup-table-box .lineup-table-h3 span {
    padding-bottom: 26px;
  }
}
@media screen and (max-width: 490px) {
  .lineup-table-box .lineup-table-h3 span {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lineup-table-box .lineup-table-h3 {
    font-size: clamp(20px, 5.102vw + 0.87px, 40px);
  }
}
@media screen and (max-width: 600px) {
  .lineup-table-box .lineup-table-h3 {
    margin: 0 0 10px 0;
  }
}
.lineup-table-box.lineup-table-honkaku {
  background: #d0ad96;
}
.lineup-table-box.lineup-table-honkaku .lineup-table-h3 {
  text-shadow: 3px 3px 3px rgba(167, 125, 98, 0.3);
}
.lineup-table-box.lineup-table-honkaku .lineup-table-h3 span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 249/67;
  background: url(../assets/img/lineup_ttl_deco01.png) no-repeat center center;
  background-size: contain;
}
.lineup-table-box.lineup-table-honkaku .lineup-link-btn {
  background: linear-gradient(to bottom, #ffffff 0%, #f4e3d7 50%, #ffffff 100%);
}
.lineup-table-box.lineup-table-honkaku .lineup-table-btn-icon {
  width: 52px;
  height: 52px;
  background: #b47953;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .lineup-table-box.lineup-table-honkaku .lineup-table-btn-icon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 600px) {
  .lineup-table-box.lineup-table-honkaku .lineup-table-btn-icon {
    width: 30px;
    height: 30px;
  }
  .lineup-table-box.lineup-table-honkaku .lineup-table-btn-icon img {
    width: 16px;
    height: auto;
  }
}
@media screen and (max-width: 490px) {
  .lineup-table-box.lineup-table-honkaku .lineup-table-btn-icon {
    width: 20px;
    height: 20px;
  }
  .lineup-table-box.lineup-table-honkaku .lineup-table-btn-icon img {
    width: 10px;
    height: auto;
  }
}
.lineup-table-box.lineup-table-kutsurogi {
  background: #e3c2ad;
}
.lineup-table-box.lineup-table-kutsurogi .lineup-table-h3 span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 362/51;
  background: url(../assets/img/lineup_ttl_deco02.png) no-repeat center center;
  background-size: contain;
}
.lineup-table-box.lineup-table-kutsurogi .lineup-link-btn {
  background: linear-gradient(to bottom, #ffffff 0%, #f5e1c4 50%, #ffffff 100%);
}
.lineup-table-box.lineup-table-kutsurogi .lineup-table-btn-icon {
  width: 52px;
  height: 52px;
  background: #c59475;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .lineup-table-box.lineup-table-kutsurogi .lineup-table-btn-icon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 600px) {
  .lineup-table-box.lineup-table-kutsurogi .lineup-table-btn-icon {
    width: 30px;
    height: 30px;
  }
  .lineup-table-box.lineup-table-kutsurogi .lineup-table-btn-icon img {
    width: 16px;
    height: auto;
  }
}
@media screen and (max-width: 490px) {
  .lineup-table-box.lineup-table-kutsurogi .lineup-table-btn-icon {
    width: 20px;
    height: 20px;
  }
  .lineup-table-box.lineup-table-kutsurogi .lineup-table-btn-icon img {
    width: 10px;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .lineup-table-box {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 660px) {
  .lineup-table-box {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 450px) {
  .lineup-table-box {
    padding: 20px 10px;
  }
}

.lineup-checklist {
  background: #f9f0e9;
  padding: 50px 16px;
  border-radius: 5px 5px 0 0;
}
.lineup-checklist li {
  font-size: 25px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-weight: 700;
  padding: 0 0 0 34px;
  position: relative;
}
.lineup-checklist li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 21px;
  height: 21px;
  border: 2px solid #111111;
}
.lineup-checklist li:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 3px;
  width: 25px;
  height: 19px;
  background: url(../assets/img/check.png) no-repeat center center;
  background-size: contain;
}
.lineup-checklist li:not(:last-child) {
  margin: 0 0 20px 0;
}
@media (max-width: 1069px) {
  .lineup-checklist li {
    font-size: clamp(17px, 2.655vw - 3.41px, 25px);
  }
}
@media screen and (max-width: 767px) {
  .lineup-checklist li {
    font-size: clamp(12.5px, 1.148vw + 8.195px, 17px);
  }
}
@media screen and (max-width: 450px) {
  .lineup-checklist li {
    font-size: 12px;
  }
}
@media screen and (max-width: 900px) {
  .lineup-checklist {
    padding: 30px 16px;
  }
  .lineup-checklist li {
    padding: 0 0 0 30px;
  }
  .lineup-checklist li::before {
    width: 16px;
    height: 16px;
    top: 6px;
  }
  .lineup-checklist li:after {
    width: 17px;
    height: 15px;
    top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .lineup-checklist {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 540px) {
  .lineup-checklist li {
    padding: 0 0 0 22px;
  }
  .lineup-checklist li::before {
    top: 4px;
  }
  .lineup-checklist li:after {
    top: 3px;
  }
}
@media screen and (max-width: 450px) {
  .lineup-checklist {
    padding: 10px 5px;
  }
}

.lineup-series {
  background: #fff;
  padding: 24px;
  text-align: center;
  min-height: 567px;
  position: relative;
  border-radius: 0 0 5px 5px;
}
@media screen and (max-width: 660px) {
  .lineup-series {
    min-height: 490px;
  }
}
@media screen and (max-width: 540px) {
  .lineup-series {
    min-height: 450px;
  }
}
@media screen and (max-width: 490px) {
  .lineup-series {
    min-height: 420px;
  }
}
@media screen and (max-width: 450px) {
  .lineup-series {
    min-height: 430px;
    padding: 24px 15px;
  }
}
@media screen and (max-width: 375px) {
  .lineup-series {
    min-height: 380px;
  }
}

.lineup-series-box img {
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .lineup-series-box img {
    width: 100%;
    max-width: 210px;
    height: auto;
  }
}

.lineup-series-name {
  font-size: 21px;
  line-height: 1;
  background: #edd6c8;
  padding: 5px;
  width: 220px;
  border-radius: 20px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 1024px) {
  .lineup-series-name {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .lineup-series-name {
    font-size: 11px;
    width: 120px;
  }
}
@media screen and (max-width: 660px) {
  .lineup-series-name {
    margin: 0 auto 30px;
  }
}

.lineup-series-box:last-child .lineup-series-name {
  margin: 0 auto;
}

.lineup-series-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 48px);
  height: auto;
}
.lineup-series-container .lineup-series-box:not(:last-child) .lineup-series-name {
  margin: 0 auto 100px;
}
@media screen and (max-width: 660px) {
  .lineup-series-container .lineup-series-box:not(:last-child) .lineup-series-name {
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 450px) {
  .lineup-series-container {
    width: calc(100% - 30px);
  }
}

.lineup-link-btn {
  display: flex;
  width: 100%;
  gap: 30px;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  padding: 20px;
  margin: 30px 0 0 0;
  border-radius: 5px;
  opacity: 1;
  transition: 0.3s;
}
.lineup-link-btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .lineup-link-btn {
    font-size: 25px;
    padding: 10px 30px;
  }
}
@media screen and (max-width: 900px) {
  .lineup-link-btn {
    font-size: 20px;
    padding: 10px 30px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .lineup-link-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 700px) {
  .lineup-link-btn {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 600px) {
  .lineup-link-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .lineup-link-btn {
    font-size: 13px;
    gap: 3px;
    margin: 20px 0 0 0;
    padding: 10px;
    justify-content: center;
  }
}

.lineup-table-btn-icon {
  position: relative;
}
.lineup-table-btn-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lineup-honkaku-sec,
.lineup-kutsurogi-sec {
  margin: 150px 0 0 0;
}
@media screen and (max-width: 767px) {
  .lineup-honkaku-sec,
  .lineup-kutsurogi-sec {
    margin: 100px 0 0 0;
  }
}
.lineup-honkaku-sec .lineup-h3-ttl,
.lineup-kutsurogi-sec .lineup-h3-ttl {
  font-size: 56px;
  text-align: center;
  color: #cda489;
  letter-spacing: 0.06em;
  margin: 0 0 30px 0;
}
.lineup-honkaku-sec .lineup-h3-ttl span,
.lineup-kutsurogi-sec .lineup-h3-ttl span {
  padding-bottom: 35px;
  position: relative;
  display: inline-block;
}
.lineup-honkaku-sec .lineup-h3-ttl span::before,
.lineup-kutsurogi-sec .lineup-h3-ttl span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: url(../assets/img/lineup_ttl_deco03.png) no-repeat center top;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .lineup-honkaku-sec .lineup-h3-ttl,
  .lineup-kutsurogi-sec .lineup-h3-ttl {
    font-size: clamp(26px, 7.653vw - 2.7px, 56px);
  }
}
.lineup-honkaku-sec .lineup-h3-ttl.lineup-kutsurogi-h3-ttl span::before,
.lineup-kutsurogi-sec .lineup-h3-ttl.lineup-kutsurogi-h3-ttl span::before {
  background: url(../assets/img/lineup_ttl_deco04.png) no-repeat center top;
  background-size: contain;
}

.lineup-honkaku-container,
.lineup-kutsurogi-container {
  background: #fff;
  padding: 50px 2%;
  max-width: calc(1024px + 4%);
  width: 100%;
  box-shadow: 10px 10px 15px -5px rgba(223, 190, 153, 0.4);
}
.lineup-honkaku-container:not(:first-child),
.lineup-kutsurogi-container:not(:first-child) {
  margin: 116px 0 0 0;
}
@media screen and (max-width: 767px) {
  .lineup-honkaku-container:not(:first-child),
  .lineup-kutsurogi-container:not(:first-child) {
    margin: 60px 0 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .lineup-honkaku-container,
  .lineup-kutsurogi-container {
    padding: 50px 4%;
  }
}
@media screen and (max-width: 600px) {
  .lineup-honkaku-container,
  .lineup-kutsurogi-container {
    padding: 50px 4%;
  }
}

.lineup-honkaku-graph,
.lineup-kutsurogi-graph {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.lineup-honkaku-graph.sp-only,
.lineup-kutsurogi-graph.sp-only {
  flex-flow: column;
  align-items: center;
}

.lineup-graph-img {
  width: calc(50% - 15px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .lineup-graph-img {
    margin: 50px auto 0;
    max-width: 320px;
    width: 100%;
  }
}

.lineup-graph-explain {
  width: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .lineup-graph-explain {
    width: 100%;
    text-align: center;
  }
}

.lineup-graph-explain-img {
  max-width: 267px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .lineup-graph-explain-img {
    margin: 0 auto;
    max-width: 180px;
    height: auto;
  }
}

.lineup-graph-name {
  font-size: 30px;
  font-weight: 700;
  background: #edd5c6;
  border-radius: 20px;
  padding: 2px 15px 5px 15px;
  display: inline-block;
  line-height: 1;
  margin: 15px 0 0 0;
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lineup-graph-name {
    text-align: center;
    font-size: clamp(24px, 1.531vw + 18.26px, 30px);
    padding-bottom: 15px;
    background: transparent;
    text-align: center;
    display: block;
    margin: 0 0 20px 0;
  }
  .lineup-graph-name:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 360px;
    height: 7px;
    background: #edd5c6;
  }
}

.staff-recommend {
  font-size: 26px;
  color: #cda489;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .staff-recommend {
    font-size: clamp(20px, 1.531vw + 14.26px, 26px);
    margin: 40px 0 20px;
  }
}

.staff-recommend-txt {
  font-size: 19px;
  line-height: 38px;
  letter-spacing: 0.06em;
}
.staff-recommend-txt span {
  font-size: 17px;
  display: block;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 767px) {
  .staff-recommend-txt {
    text-align: left;
    font-size: clamp(16px, 0.765vw + 13.13px, 19px);
  }
}

.lineup-graph-attention {
  font-size: 18px;
  text-align: center;
  background: #f3f3f3;
  padding: 5px;
  line-height: 1;
  max-width: 680px;
  width: 100%;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .lineup-graph-attention {
    font-size: clamp(13px, 1.276vw + 8.21px, 18px);
    margin: 20px auto 0;
  }
}

.lineup-item-box {
  display: flex;
  border: 1px solid #e5d2c6;
  border-radius: 5px;
  overflow: hidden;
  margin: 50px 0 0 0;
}
.lineup-item-box .lineup-item-explain {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 0 2% 0 4%;
}
.lineup-item-box .lineup-item-name {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 850px) {
  .lineup-item-box .lineup-item-name {
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .lineup-item-box .lineup-item-name {
    font-size: clamp(20px, 2.551vw + 10.43px, 30px);
  }
}
.lineup-item-box .lineup-item-txt {
  font-size: 21px;
  line-height: 40px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .lineup-item-box .lineup-item-txt {
    font-size: clamp(16px, 1.276vw + 11.21px, 21px);
  }
}
.lineup-item-box .lineup-item-link {
  background: #edd5c6;
  font-size: 24px;
  font-weight: 700;
  margin: 68px 0 0 0;
  padding: 8px 16px 10px;
  line-height: 1;
  border-radius: 30px;
  display: inline-block;
  transition: 0.3s;
}
.lineup-item-box .lineup-item-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 850px) {
  .lineup-item-box .lineup-item-link {
    margin: 40px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .lineup-item-box .lineup-item-link {
    font-size: clamp(15px, 2.296vw + 6.39px, 24px);
  }
}
.lineup-item-box {
  /* 横並び要素 */
}
.lineup-item-box.flex-row .lineup-item-img {
  width: 47%;
  height: auto;
}
.lineup-item-box.flex-row .lineup-item-explain {
  width: 53%;
}
@media screen and (max-width: 767px) {
  .lineup-item-box.flex-row {
    flex-flow: column;
    max-width: 456px;
    width: 100%;
    margin: 50px auto 0;
  }
  .lineup-item-box.flex-row .lineup-item-img {
    width: 100%;
  }
  .lineup-item-box.flex-row .lineup-item-explain {
    width: 100%;
    padding: 30px 4%;
    text-align: center;
  }
}
.lineup-item-box {
  /* 縦並び要素 */
}
.lineup-item-box.flex-column {
  width: 50%;
  flex-flow: column;
}
.lineup-item-box.flex-column .lineup-item-img {
  width: 100%;
  height: auto;
}
.lineup-item-box.flex-column .lineup-item-explain {
  text-align: center;
  padding: 30px 4%;
}
@media screen and (max-width: 767px) {
  .lineup-item-box.flex-column {
    width: 100%;
  }
}

.lineup-item-row-list {
  display: flex;
  gap: 4%;
}
@media screen and (max-width: 767px) {
  .lineup-item-row-list {
    flex-flow: column;
    max-width: 456px;
    width: 100%;
    margin: 0 auto;
  }
}

.lineup-series-btn {
  margin: 50px auto 0;
  text-align: center;
}
.lineup-series-btn a {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 27px 75px 31px 75px;
  border-radius: 60px;
  background: #edd5c6;
  display: inline-block;
  transition: 0.3s;
}
.lineup-series-btn a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .lineup-series-btn a {
    font-size: clamp(17px, 3.061vw + 5.52px, 29px);
    padding: 18px 45px 20px 45px;
  }
}

.lineup-electric-sec {
  background: #e2d7c9;
  padding: 50px 2% 30px;
  margin: 100px 0 0 0;
}
@media screen and (max-width: 767px) {
  .lineup-electric-sec {
    padding: 30px 4%;
  }
}

.lineup-electric-h3-ttl {
  font-size: 38px;
  text-align: center;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .lineup-electric-h3-ttl {
    font-size: clamp(24px, 3.571vw + 10.61px, 38px);
  }
}

.lineup-electric-container {
  display: flex;
  gap: 2%;
}
@media screen and (max-width: 767px) {
  .lineup-electric-container {
    flex-flow: column;
  }
}

.lineup-electric-box {
  padding: 50px 2%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .lineup-electric-box {
    width: 100%;
    padding: 30px 4%;
  }
  .lineup-electric-box:not(:last-child) {
    margin: 0 0 30px 0;
  }
}

.lineup-electric-h4-ttl {
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 50px 0;
}
.lineup-electric-h4-ttl span {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .lineup-electric-h4-ttl {
    font-size: clamp(20px, 1.531vw + 14.26px, 26px);
  }
}

.lineup-electric-img {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .lineup-electric-img {
    margin: 0 auto 30px;
  }
}

.lineup-electric-txt {
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .lineup-electric-txt {
    font-size: clamp(15px, 1.276vw + 10.21px, 20px);
  }
}

.lineup-electric-link {
  font-size: 22px;
  font-weight: 700;
  background: #edd5c6;
  line-height: 1;
  padding: 20px 5px 25px;
  border-radius: 40px;
  margin: 30px auto 0;
  display: block;
  text-align: center;
  max-width: 255px;
  transition: 0.3s;
}
.lineup-electric-link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .lineup-electric-link {
    font-size: clamp(16px, 1.531vw + 10.26px, 22px);
    width: 200px;
    padding: 15px 5px 20px;
  }
}

/* REVIEW */
.review-sec {
  padding: 120px 0 200px;
  overflow: hidden;
}

.review-h2-ttl {
  font-size: 50px;
  color: #cda489;
  text-align: center;
  margin: 0 0 30px 0;
}
.review-h2-ttl span {
  display: block;
  font-size: 27px;
}
@media screen and (max-width: 767px) {
  .review-h2-ttl {
    font-size: clamp(40px, 2.551vw + 30.43px, 50px);
  }
  .review-h2-ttl span {
    font-size: clamp(15px, 3.061vw + 3.52px, 27px);
  }
}

.review-slide-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.review-box {
  background: #fff;
  padding: 60px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .review-box {
    width: 495px !important;
  }
}
@media screen and (max-width: 767px) {
  .review-box {
    min-width: 310px !important;
    padding: 30px 20px;
    width: 90% !important;
  }
}

@media screen and (max-width: 767px) {
  .review-slide-container {
    margin: 0 0 0 10px !important;
  }
}

.purchased-item {
  font-size: 23px;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 767px) {
  .purchased-item {
    font-size: clamp(15px, 2.041vw + 7.35px, 23px);
  }
}

.review-point {
  font-size: 35px;
  color: #cda489;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 767px) {
  .review-point {
    margin: 0 0 30px 0;
  }
}

.review-h3-ttl {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .review-h3-ttl {
    font-size: clamp(21px, 1.786vw + 14.3px, 28px);
  }
}

.review-txt {
  font-size: 23px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .review-txt {
    font-size: clamp(16px, 1.786vw + 9.3px, 23px);
  }
}

/* Swiper調整 */
.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  height: auto;
}

.swiper {
  overflow: visible !important;
}

.swiper-button-prev {
  width: 66px !important;
  height: 66px !important;
  background: #cda489;
  left: 0 !important;
}
.swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 27px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
}
.swiper-button-prev::after {
  content: none !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    display: none !important;
  }
}

.swiper-button-next {
  width: 66px !important;
  height: 66px !important;
  background: #cda489;
  right: 0 !important;
}
.swiper-button-next::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 27px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.swiper-button-next::after {
  content: none !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    display: none !important;
  }
}

.swiper-pagination {
  bottom: -30px !important;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  border: 2px solid #d9b7a1 !important;
  background: #fff !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
  background: #d9b7a1 !important;
  border: 2px solid #d9b7a1 !important;
  border: none !important;
}

/* PAGE TOP */
.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
  z-index: 100;
}
.page-top.show {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .page-top {
    width: 50px;
    height: 50px;
  }
  .page-top img {
    width: 100%;
    height: auto;
  }
}

/* footer */
.footer {
  background: #000;
  padding: 100px 0;
}
.footer img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 50px 0;
  }
  .footer img {
    max-width: 300px;
    width: 100%;
    height: auto;
  }
}

/*# sourceMappingURL=style.css.map */
