@charset "UTF-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ▼ 夢ふぉと独自スタイル */
/* ━━━━━━━━━━━━━━━━━━━━━━━━ */
#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

@media screen and (max-width: 1366px) {
  .laptop-hidden {
    display: none;
  }
}

.mobile-visible {
  display: none;
}
@media only screen and (max-width: 767.9px) {
  .mobile-visible {
    display: block;
  }
}

.mobile-hidden {
  display: block;
}
@media only screen and (max-width: 767.9px) {
  .mobile-hidden {
    display: none;
  }
}

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

.small-visible {
  display: none;
}
@media screen and (max-width: 412px) {
  .small-visible {
    display: block;
  }
}

.xsmall-visible {
  display: none;
}
@media only screen and (max-width: 390px) {
  .xsmall-visible {
    display: block;
  }
}

.small-hidden {
  display: block;
}
@media screen and (max-width: 412px) {
  .small-hidden {
    display: none;
  }
}

.small-again-hidden {
  display: none;
}
@media only screen and (max-width: 767.9px) {
  .small-again-hidden {
    display: block;
  }
}
@media screen and (max-width: 412px) {
  .small-again-hidden {
    display: none;
  }
}

.section-title {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767.9px) {
  .section-title {
    margin-bottom: 3rem;
  }
}

.title-main {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}

small.note {
  display: block;
  font-size: 0.875rem;
  text-align: right;
  margin-top: 0.4em;
  opacity: 0.8;
}

/* 個別投稿ページ */
.post-title {
  max-width: 960px;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.35;
  padding: 0 20px;
  margin: 6rem auto 6rem;
}
@media only screen and (max-width: 767.9px) {
  .post-title {
    font-size: 2rem;
    margin: 4rem auto 2rem;
  }
}
@media screen and (max-width: 412px) {
  .post-title {
    text-align: left;
  }
}

.img {
  max-width: 960px;
  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;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 767.9px) {
  .img {
    margin-bottom: 0;
  }
}
.img figure {
  margin: 0;
}
.img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.img .wp-block-image figure {
  margin-bottom: 3rem;
}

.sub-title {
  display: table;
  margin: 0 auto 2rem !important;
}

.description {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 767.9px) {
  .description {
    font-size: 1.6rem;
    line-height: 1.4;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 390px) {
  .description {
    font-size: 1.4rem;
  }
}
.description > * {
  margin: 0 0 1.2em;
}
.description p {
  margin: 0 0 1.2em;
}
.description h2, .description h3, .description h4 {
  line-height: 1.4;
  margin: 2.2em 0 1em;
  font-weight: 700;
}
.description h2 {
  font-size: 2.4rem;
}
@media only screen and (max-width: 767.9px) {
  .description h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 390px) {
  .description h2 {
    font-size: 1.8rem;
  }
}
.description h3 {
  font-size: 2.1rem;
}
@media only screen and (max-width: 767.9px) {
  .description h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 390px) {
  .description h3 {
    font-size: 1.6rem;
  }
}

.search-category-title {
  width: 263px;
  background-color: #FBE975;
  border-radius: 100px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 2;
  margin: auto;
  margin-bottom: -3rem;
}
.search-category-title:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px dashed #775A34;
  border-radius: 30px;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.search-category-title.trigger {
  cursor: pointer;
}
.search-category-title.trigger.active:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.search-category-title.trigger:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1.5rem;
  width: 22px;
  height: 22px;
  background: url(../images/common/arr.svg) center center no-repeat #775A34;
  border-radius: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  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;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.search-category-title.blue {
  color: #fff;
  background-color: #77CAFF;
}
.search-category-title.blue:after {
  border-color: #fff;
}
.search-category-title.green {
  color: #fff;
  background-color: #9fc22a;
}
.search-category-title.green:after {
  border-color: #fff;
}

.search-category {
  border: 5px solid #FBE975;
  border-radius: 50px;
  padding: 6rem 4rem 4.5rem;
  background: url(../images/common/bg-repeat.png);
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767.9px) {
  .search-category {
    border-width: 2px;
    border-radius: 20px;
    padding: 5rem 1rem 2rem 2rem;
  }
  .search-category a {
    font-size: 1.5rem;
  }
  .search-category a:hover {
    color: #F2A522;
  }
  .search-category.bgblue a:hover {
    background-color: #77CAFF;
    color: #fff;
  }
  .search-category.bggreen a:hover {
    background-color: #CAEE51;
    color: #fff;
    border-color: #fff;
  }
}
@media screen and (max-width: 1366px) {
  .search-category a:hover {
    color: #F2A522;
  }
  .search-category.bgblue a:hover {
    background-color: #77CAFF;
    color: #fff;
  }
  .search-category.bggreen a:hover {
    background-color: #CAEE51;
    color: #fff;
    border-color: #fff;
  }
}

.search-category-box {
  margin: 0 0 8rem;
}
@media only screen and (max-width: 767.9px) {
  .search-category-box {
    margin: 0 0 5rem;
  }
}

.search-category-ttl {
  width: 263px;
  background-color: #FBE975;
  border-radius: 100px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 2;
  margin: auto;
  margin-bottom: -3rem;
}
.search-category-ttl:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px dashed #775A34;
  border-radius: 30px;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.search-category-ttl.trigger {
  cursor: pointer;
}
.search-category-ttl.trigger.active:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.search-category-ttl.trigger:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1.5rem;
  width: 22px;
  height: 22px;
  background: url(../images/common/arr.svg) center center no-repeat #775A34;
  border-radius: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  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;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.search-category-ttl.blue {
  color: #fff;
  background-color: #77CAFF;
}
.search-category-ttl.blue:after {
  border-color: #fff;
}
.search-category-ttl.green {
  color: #fff;
  background-color: #9fc22a;
}
.search-category-ttl.green:after {
  border-color: #fff;
}

.search-category.bgblue {
  background: #E1EFF8;
  border: none;
}
.search-category.bggreen {
  background: #E8F3C2;
  border: none;
}
.search-category li {
  margin-right: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 468px) {
  .search-category li {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}

.search-category-anchor a {
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-right: 3rem;
  font-size: 1.8rem;
  font-weight: 500;
}
.search-category-anchor a:after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  margin: auto;
  background: url(../images/common/arr-org.svg) center center no-repeat;
  width: 11px;
  height: 12px;
  background-size: 100%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (max-width: 767.9px) {
  .search-category-anchor a {
    padding-right: 2em;
  }
  .search-category-anchor a:after {
    top: 7px;
  }
}

.search-category-list li {
  margin-right: 2rem;
  margin-bottom: 2rem;
}
.search-category-list a {
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 0.5rem 2rem;
  font-size: 1.6rem;
  text-decoration: none;
}
.search-category-list.bdr a {
  border: 1px solid #775A34;
}
@media only screen and (max-width: 767.9px) {
  .search-category-list a {
    font-size: 1.5rem;
  }
  .search-category-list.bdr a {
    border: 1px solid #775A34;
  }
}

.search-category-tags li {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.search-category-tags a {
  background-color: #FBF7E7;
  border-radius: 30px;
  text-align: center;
  padding: 0.5rem 1.5rem;
  font-size: 1.4rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
  display: block;
}
.search-category-tags a:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px dashed #775A34;
  border-radius: 30px;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 767.9px) {
  .search-category-tags li {
    margin-right: 0.2rem;
    margin-bottom: 0.5rem;
  }
  .search-category-tags a {
    font-size: 1.2rem;
  }
}

.deco-h2, .deco-h3 {
  padding: 0.4rem 1.2rem;
  background: aliceblue;
  border: 3px solid #8CB3D2;
  border-top: none;
  border-right: none;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.deco-h3 {
  background: white;
  border: 1px solid #8CB3D2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.deco-h4 {
  display: inline-block;
  background: white;
  border-bottom: 3px solid #8CB3D2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wp-block-group.deco-bg-orange {
  margin: 2rem 0 !important;
  padding: 3rem 2rem !important;
  border-left: 4px solid #FBE975 !important;
  background-color: #FFF8DC !important;
  border-radius: 6px !important;
}
.wp-block-group.deco-bg-orange h4 {
  margin-top: 0 !important;
}
.wp-block-group.deco-bg-orange p {
  margin: 0;
}

.small {
  color: #f26b6d;
  font-size: 0.85em;
  line-height: 1.6;
  font-weight: 500;
}

.large {
  color: #f26b6d;
  font-size: 1.2em;
  line-height: 1.6;
  font-weight: 800;
}

@media screen and (max-width: 1366px) {
  .laptop-hidden {
    display: none;
  }
}

.mobile-visible {
  display: none;
}
@media only screen and (max-width: 767.9px) {
  .mobile-visible {
    display: block;
  }
}

.small-visible {
  display: none;
}
@media screen and (max-width: 412px) {
  .small-visible {
    display: block;
  }
}

.xsmall-visible {
  display: none;
}
@media only screen and (max-width: 390px) {
  .xsmall-visible {
    display: block;
  }
}

hr {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 3rem 0;
}

.lb-nav a.lb-prev, .lb-nav a.lb-next {
  opacity: 1 !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
  position: relative;
}

.lb-data .lb-caption {
  font-size: 3rem !important;
}

.lb-data .lb-number {
  display: none !important;
}

.lb-data .lb-close {
  opacity: 1 !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
}

.page-up {
  z-index: 9998;
}

.sec-contact__inner .container {
  margin-bottom: 0;
}

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

.page-desc {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  font-size: 1.3em;
  font-weight: 800;
  white-space: nowrap;
  line-height: 160%;
  margin: 2.5em 2.5em 2.5em 0;
}
@media screen and (max-width: 1366px) {
  .page-desc {
    white-space: wrap;
  }
}
@media only screen and (max-width: 767.9px) {
  .page-desc {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.8em;
    margin: 5% auto;
  }
}
@media screen and (max-width: 700.9px) {
  .page-desc {
    font-size: 1.4em;
  }
}
.page-desc .page-desc-text {
  display: inline-block;
  border-bottom: 1px solid;
}

.page-title-text {
  display: -ms-grid;
  display: grid;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: relative;
}
.page-title-text::before {
  content: "";
  width: 2.25vw;
  height: 100%;
  background: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/btn-lineup_portrait.png?updatedAt=1756974372491") no-repeat;
  background-size: contain;
  position: absolute;
  top: 14%;
  left: 60%;
}
@media screen and (min-width: 1921px) {
  .page-title-text::before {
    width: 43px;
  }
}
@media only screen and (max-width: 767.9px) {
  .page-title-text::before {
    width: 5.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: -6%;
    left: 56%;
  }
}
@media only screen and (max-width: 767.9px) {
  .page-title-text {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 12%;
    position: absolute;
    z-index: 100;
  }
}
.page-title-text .page-title {
  font-size: 3em;
  font-weight: 600;
  margin: 14% auto;
}
@media screen and (max-width: 1366px) {
  .page-title-text .page-title {
    font-size: 2.8em;
  }
}
@media screen and (max-width: 1024px) {
  .page-title-text .page-title {
    font-size: 2.4em;
  }
}
@media screen and (max-width: 900px) {
  .page-title-text .page-title {
    font-size: 2em;
  }
}
@media only screen and (max-width: 767.9px) {
  .page-title-text .page-title {
    font-size: 7vw;
    text-shadow: 2px 2px 20px #fff, -2px 2px 20px #fff, 2px -2px 20px #fff, -2px -2px 20px #fff, 2px 0 20px #fff, 0 2px 20px #fff, -2px 0 20px #fff, 0 -2px 20px #fff, 1px 1px 10px #fff, -1px 1px 10px #fff, 1px -1px 10px #fff, -1px -1px 10px #fff, 1px 0 10px #fff, 0 1px 10px #fff, -1px 0 10px #fff, 0 -1px 10px #fff;
    margin: 0 auto;
  }
}

.page-title-mv-box {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  padding: 1.5% 0 0 0;
  position: relative;
}
@media only screen and (max-width: 767.9px) {
  .page-title-mv-box {
    width: 100%;
    display: block;
    padding: 0;
  }
}
.page-title-mv-box .page-title-image {
  width: 100%;
}
.page-title-mv-box .page-title-image img {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.page-title-mv-box .page-title-image {
  line-height: 0;
}
.page-title-mv-box .page-title-image img {
  width: 100%;
  vertical-align: middle;
}
.page-title-mv-box .page-title-image .btn-box {
  width: 4.2vw;
  background-color: #fff;
  border-radius: 15px 0 0 15px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  height: auto;
  line-height: 0;
}
.page-title-mv-box .page-title-image .btn-box img {
  width: 100%;
  vertical-align: middle;
}
.page-title-mv-box .page-title-image .btn-box .link-area:hover {
  -webkit-filter: opacity(80%);
          filter: opacity(80%);
  color: initial;
}
@media screen and (min-width: 1921px) {
  .page-title-mv-box .page-title-image .btn-box {
    max-width: 80.645px;
  }
}
@media only screen and (max-width: 767.9px) {
  .page-title-mv-box .page-title-image .btn-box {
    display: none;
  }
}

.sp-btn-box {
  display: none;
  position: absolute;
  width: 153px;
  height: auto;
  top: 0;
  right: 4%;
  z-index: 100;
  line-height: 0;
}
.sp-btn-box img {
  width: 100%;
  vertical-align: middle;
}
@media only screen and (max-width: 767.9px) {
  .sp-btn-box {
    display: block;
    width: 120px;
    top: -60px;
  }
}
@media screen and (max-width: 412px) {
  .sp-btn-box {
    width: 80px;
    top: -40px;
  }
}

.product-lineup main {
  font-size: 16px;
  line-height: 1.15;
}
.product-lineup main p {
  line-height: 1.5;
}
.product-lineup .footer__img {
  display: none;
}
.product-lineup .breadcrumb ul li {
  font-size: 12px;
  line-height: 1.2;
}
.product-lineup .breadcrumb ul li a, .product-lineup .breadcrumb ul li span {
  font-size: 12px;
  line-height: 1.2;
}

.product-lineup.lineup-top .hero-image-wrapper {
  max-width: 1280px;
  width: 100%;
  max-height: 800px;
  aspect-ratio: 12/5;
  overflow: hidden;
  position: relative;
  margin: 20px auto 0;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .hero-image-wrapper {
    overflow: visible;
    margin-top: 80px;
  }
}
@media screen and (max-width: 412px) {
  .product-lineup.lineup-top .hero-image-wrapper {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .hero-image-wrapper {
    min-height: 215px;
  }
}
.product-lineup.lineup-top .hero-image-wrapper picture, .product-lineup.lineup-top .hero-image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.product-lineup.lineup-top .page-title-text {
  display: block;
  margin: auto auto auto 25%;
  background-color: #fff;
  position: absolute;
  top: 20%;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .page-title-text {
    display: inline-block;
    margin: 0;
    width: auto;
    left: 15%;
  }
}
.product-lineup.lineup-top .page-title-text::before {
  content: "";
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon_lineup.png?tr=n-base,q-70&updatedAt=1755497813466");
  background-repeat: no-repeat;
  background-size: contain;
  width: 29px;
  height: 28px;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 20;
  margin-top: 14px;
  margin-left: 22px;
}
.product-lineup.lineup-top .page-title-text::after {
  content: "LINEUP";
  color: #F45E5E;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #fff;
  display: block;
  padding: 52px 8px 18px;
  font-size: 20px;
  border-radius: 50px;
  margin-left: 16px;
  letter-spacing: 1px;
}
.product-lineup.lineup-top .page-title-text .page-title {
  padding: 12px 6px;
  margin: 0;
  letter-spacing: 4px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .page-title-text .page-title {
    font-size: 2rem;
  }
}
.product-lineup.lineup-top .cribsheet-wrapper {
  padding: 100px 0;
}
.product-lineup.lineup-top .cribsheet-title {
  margin: 0 auto 40px;
  text-align: center;
}
.product-lineup.lineup-top .cribsheet-title .img {
  width: 20%;
  margin: 0 auto;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-title .img {
    margin-left: 16%;
  }
}
.product-lineup.lineup-top .cribsheet-title .title {
  font-size: 66px;
  font-weight: 600;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .cribsheet-title .title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .product-lineup.lineup-top .cribsheet-title .title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-title .title {
    font-size: 3rem;
    margin-top: -3rem;
  }
}
.product-lineup.lineup-top .cribsheet-title .title span {
  font-size: 12rem;
  color: #EBA09D;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .cribsheet-title .title span {
    font-size: 8rem;
  }
}
@media screen and (max-width: 1024px) {
  .product-lineup.lineup-top .cribsheet-title .title span {
    font-size: 7rem;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-title .title span {
    font-size: 6rem;
  }
}
.product-lineup.lineup-top .cribsheet-leadcopy {
  text-align: center;
  margin-bottom: 100px;
  font-size: 2.4rem;
  line-height: 200%;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .cribsheet-leadcopy {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-leadcopy {
    font-size: 1.8rem;
    width: 80%;
    margin: 0 auto 80px;
  }
}
.product-lineup.lineup-top .cribsheet-course-list-heading {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 120px;
  letter-spacing: 2px;
  font-weight: 600;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .cribsheet-course-list-heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .product-lineup.lineup-top .cribsheet-course-list-heading {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-course-list-heading {
    font-size: 1.8rem;
    width: 70%;
    margin: 0 auto 80px 20%;
  }
}
.product-lineup.lineup-top .cribsheet-course-list-heading span {
  display: inline-block;
  background-color: #f7e8e8;
  position: relative;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-course-list-heading span {
    background-color: #fff;
  }
}
.product-lineup.lineup-top .cribsheet-course-list-heading span::before {
  content: "";
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon_cource-exp.png?tr=n-base,q-70&updatedAt=1755497841113");
  background-repeat: no-repeat;
  background-size: contain;
  width: 41px;
  height: 60px;
  position: absolute;
  right: 100%;
  top: 0;
  margin: auto;
  display: block;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-course-list-heading span::before {
    width: 41px;
    height: 50px;
    background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon_cource-exp-tap.png?tr=n-base,q-70&updatedAt=1755497840969");
  }
}
.product-lineup.lineup-top .cribsheet-course-list-heading span::after {
  content: "";
  display: block;
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/orna_cource-lineup.png?tr=n-base,q-70&updatedAt=1755497828102");
  background-repeat: no-repeat;
  background-size: contain;
  width: 352px;
  height: 24px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 20px auto;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-course-list-heading span::after {
    width: 300px;
  }
}
@media screen and (max-width: 412px) {
  .product-lineup.lineup-top .cribsheet-course-list-heading span::after {
    width: 230px;
  }
}
.product-lineup.lineup-top .cribsheet-course-list-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-course-list-container {
    overflow-x: scroll;
  }
}
.product-lineup.lineup-top .cribsheet-course-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-course-list {
    width: 768px;
    padding: 0 24px;
  }
}
.product-lineup.lineup-top .cribsheet-course-box {
  cursor: pointer;
  width: 25%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-course-box {
    width: 192px;
  }
}
.product-lineup.lineup-top .cribsheet-course-box img {
  width: auto;
  height: 90%;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .cribsheet-course-box img {
    height: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .product-lineup.lineup-top .cribsheet-course-box img {
    height: 60%;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-course-box img {
    height: 50%;
  }
}
.product-lineup.lineup-top .cribsheet-course-container {
  margin-top: 24px;
}
.product-lineup.lineup-top .cribsheet-detail-box {
  display: none;
}
.product-lineup.lineup-top .cribsheet-detail-box.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-detail-box.active {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.product-lineup.lineup-top .cribsheet-detail-box .cribsheet-image {
  width: 48%;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-detail-box .cribsheet-image {
    display: none;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-detail-box .cribsheet-image {
    width: 100%;
  }
}
.product-lineup.lineup-top .cribsheet-detail-box .cribsheet-desc {
  width: 52%;
  background-color: #FBFAF7;
  padding: 80px 0 0 60px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .cribsheet-detail-box .cribsheet-desc {
    width: 100%;
    text-align: center;
    padding: 2.4rem 0;
  }
}
.product-lineup.lineup-top .cribsheet-detail-box .cribsheet-desc picture, .product-lineup.lineup-top .cribsheet-detail-box .cribsheet-desc img {
  width: 80%;
  margin: 0 auto;
}
.product-lineup.lineup-top .feature-cover-image {
  width: 100%;
  height: 50vw;
  max-width: 1536px;
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .feature-cover-image {
    margin-bottom: 120px;
  }
}
.product-lineup.lineup-top .feature-cover-image picture, .product-lineup.lineup-top .feature-cover-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.product-lineup.lineup-top .feature-pickups {
  position: absolute;
  width: 36%;
  left: 0;
  right: 0;
  bottom: -2%;
  margin: auto;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .feature-pickups {
    top: 50%;
    bottom: auto;
    width: 66%;
  }
}
.product-lineup.lineup-top .feature-pickups img {
  width: 100%;
}
.product-lineup.lineup-top .feature-leadcopy {
  text-align: center;
  line-height: 200%;
  font-size: 22px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .feature-leadcopy {
    font-size: 1.8rem;
  }
}
.product-lineup.lineup-top .feature-illust {
  width: 284px;
  height: 181px;
  margin: 0 auto;
  margin-bottom: 100px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .feature-illust {
    width: 50%;
    margin: 0 auto 11%;
  }
  .product-lineup.lineup-top .feature-illust img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.product-lineup.lineup-top .course-lineup-title {
  text-align: center;
  margin-bottom: 100px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-lineup-title {
    margin-bottom: 80px;
  }
}
.product-lineup.lineup-top .course-lineup-title .nihongo {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-lineup-title .nihongo {
    font-size: 3rem;
    margin-bottom: 0;
  }
}
.product-lineup.lineup-top .course-lineup-title .eigo {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-lineup-title .eigo {
    font-size: 1.4rem;
  }
}
.product-lineup.lineup-top .course-lineup-wrapper {
  margin-bottom: 200px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-lineup-wrapper {
    margin-bottom: 10rem;
  }
}
.product-lineup.lineup-top .course-lineup-box {
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 1536px) {
  .product-lineup.lineup-top .course-lineup-box {
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .course-lineup-box {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-lineup-box {
    margin-bottom: 80px;
  }
}
.product-lineup.lineup-top .course-hero-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 126%;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-hero-container {
    width: 100%;
  }
}
.product-lineup.lineup-top .course-hero-container .course-hero-image {
  width: 50%;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-hero-container .course-hero-image {
    width: 100%;
  }
}
.product-lineup.lineup-top .course-hero-container .course-hero-image img {
  width: 100%;
}
.product-lineup.lineup-top .course-hero-container .course-not-hero {
  width: 30%;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-hero-container .course-not-hero {
    display: none;
  }
}
.product-lineup.lineup-top .course-hero-container .course-not-hero img {
  width: 100%;
}
.product-lineup.lineup-top .course-desc-box {
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 16%;
  left: 52%;
  width: 540px;
  padding: 56px;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .course-desc-box {
    max-width: 440px;
    width: 40%;
    padding: 2%;
    left: 55%;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-desc-box {
    position: static;
    width: 100%;
    padding: 2.4rem 3.6rem;
  }
}
.product-lineup.lineup-top .course-desc-box .course-name {
  font-size: 6.2rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .course-desc-box .course-name {
    font-size: 3.4vw;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-desc-box .course-name {
    font-size: 4rem;
    line-height: 1.4;
  }
}
.product-lineup.lineup-top .course-desc-box .course-name-eng {
  position: relative;
  font-size: 20px;
  margin-bottom: 32px;
  margin-left: 6px;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .course-desc-box .course-name-eng {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-desc-box .course-name-eng {
    font-size: 1.6rem;
  }
}
.product-lineup.lineup-top .course-desc-box .course-name-eng::after {
  content: "";
  margin-top: 4px;
  display: block;
  width: 52px;
  height: 1px;
  background-color: #000;
}
.product-lineup.lineup-top .course-desc-box .course-desc-text {
  text-align: justify;
  line-height: 200%;
  font-size: 18px;
  margin-left: 8px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .course-desc-box .course-desc-text {
    font-size: 1vw;
    line-height: 180%;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-desc-box .course-desc-text {
    font-size: 1.6rem;
  }
}
.product-lineup.lineup-top .course-desc-box .price-and-page-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 96%;
  margin: 0 auto;
  border-bottom: 1px solid #aaa;
  margin-bottom: 40px;
  padding-bottom: 16px;
}
.product-lineup.lineup-top .course-desc-box .price-and-page:first-child {
  margin-right: 8%;
}
.product-lineup.lineup-top .course-desc-box .price-heading {
  display: inline-block;
  font-size: 16px;
  border-bottom: 1px solid #5b5353;
  line-height: 100%;
  margin-bottom: 4px;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .course-desc-box .price-heading {
    font-size: 1vw;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-desc-box .price-heading {
    font-size: 1.2rem;
  }
}
.product-lineup.lineup-top .course-desc-box .price-content {
  font-size: 3.4rem;
  color: #444;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .course-desc-box .price-content {
    font-size: 1.7vw;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-desc-box .price-content {
    font-size: 2.4rem;
  }
}
.product-lineup.lineup-top .course-desc-box .price-content .price-sub {
  font-size: 14px;
  color: #666;
}
.product-lineup.lineup-top .course-desc-box .price-content .price-sub {
  font-size: 1.2rem;
}
.product-lineup.lineup-top .course-desc-box .link-btn {
  background-color: #ffe7e7;
  border-radius: 400px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-desc-box .link-btn {
    width: 70%;
  }
}
.product-lineup.lineup-top .course-desc-box .link-btn a {
  display: block;
  padding: 24px 0;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .course-desc-box .link-btn a {
    padding: 4% 0;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-desc-box .link-btn a {
    padding: 16px 0;
  }
}
.product-lineup.lineup-top .course-desc-box .link-btn::after {
  content: "→";
  font-size: 20px;
  position: absolute;
  right: 20%;
  top: 0;
  bottom: 0;
  margin: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #f47a7a;
}
.product-lineup.lineup-top .course-desc-box .more-detail {
  margin-bottom: 4px;
  font-size: 20px;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .course-desc-box .more-detail {
    font-size: 80%;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-desc-box .more-detail {
    font-size: 1.8rem;
  }
}
.product-lineup.lineup-top .course-desc-box .more-detail-eng {
  color: #eba09d;
  font-size: 14px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-desc-box .more-detail-eng {
    font-size: 1.2rem;
  }
}
.product-lineup.lineup-top .course-lineup-box.custom .course-hero-container,
.product-lineup.lineup-top .course-lineup-box.myself-lite .course-hero-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: -26%;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .course-lineup-box.custom .course-hero-container,
  .product-lineup.lineup-top .course-lineup-box.myself-lite .course-hero-container {
    margin-left: 0;
  }
}
.product-lineup.lineup-top .course-lineup-box.custom .course-desc-box,
.product-lineup.lineup-top .course-lineup-box.myself-lite .course-desc-box {
  left: auto;
  right: 55%;
}
.product-lineup.lineup-top .image-gallery {
  margin-bottom: 100px;
  width: 100%;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .image-gallery {
    margin-bottom: 80px;
  }
}
.product-lineup.lineup-top .image-gallery img {
  width: 100%;
}
.product-lineup.lineup-top .hikaku-wrapper {
  margin-bottom: 100px;
}
.product-lineup.lineup-top .hikaku-wrapper .title-line {
  font-size: 4rem;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .hikaku-wrapper .title-line {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .product-lineup.lineup-top .hikaku-wrapper .title-line {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .hikaku-wrapper .title-line {
    font-size: 2.4rem;
  }
}
.product-lineup.lineup-top .hikaku-wrapper .title-line div {
  display: inline-block;
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 6px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(76%, transparent), color-stop(76%, #ffdddd));
  background: linear-gradient(transparent 76%, #ffdddd 76%);
}
.product-lineup.lineup-top .hikaku-wrapper .title-line div::before, .product-lineup.lineup-top .hikaku-wrapper .title-line div::after {
  content: "";
  display: block;
  width: 15px;
  height: 40px;
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/orna_course-compare_pre.png?tr=n-base,q-70&updatedAt=1755497828081");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 105%;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-top .hikaku-wrapper .title-line div::before, .product-lineup.lineup-top .hikaku-wrapper .title-line div::after {
    width: 12px;
    height: 34px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-top .hikaku-wrapper .title-line div::before, .product-lineup.lineup-top .hikaku-wrapper .title-line div::after {
    width: 10px;
    height: 30px;
  }
}
.product-lineup.lineup-top .hikaku-wrapper .title-line div::after {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/orna_course-compare_post.png?tr=n-base,q-70&updatedAt=1755497828092");
  right: auto;
  left: 105%;
}

.product-lineup.lineup-course .page-title-mv-box {
  display: block;
  margin-bottom: 6%;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .page-title-mv-box {
    margin-bottom: 36%;
  }
}
@media screen and (max-width: 460.9px) {
  .product-lineup.lineup-course .page-title-mv-box {
    margin-bottom: 32%;
  }
}
.product-lineup.lineup-course .page-title-mv-box .page-title-image {
  position: relative;
}
.product-lineup.lineup-course .page-title-mv-box .page-title-image > picture img {
  max-height: 400px;
}
.product-lineup.lineup-course .page-title-mv-box .page-title-text {
  width: 100%;
  -webkit-writing-mode: unset;
      -ms-writing-mode: unset;
          writing-mode: unset;
  margin: 0;
  position: absolute;
  top: 40%;
  left: 0;
}
.product-lineup.lineup-course .page-title-mv-box .page-title-text::before {
  content: "";
  width: 154px;
  height: 10vh;
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/common/btn-lineup.png?tr=n-base,q-70&updatedAt=1752719127220");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -50px;
  left: 6%;
}
.product-lineup.lineup-course .page-title-mv-box .page-title-text .page-title {
  font-size: 3.8em;
  padding: 0 6%;
  margin: 0;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .page-title-mv-box .page-title-text .page-title {
    font-size: 3.4em;
    text-shadow: none;
  }
}
@media screen and (max-width: 450.9px) {
  .product-lineup.lineup-course .page-title-mv-box .page-title-text .page-title {
    font-size: 2.8em;
  }
}
@media only screen and (max-width: 390px) {
  .product-lineup.lineup-course .page-title-mv-box .page-title-text .page-title {
    font-size: 2.4em;
  }
}
.product-lineup.lineup-course .page-title-mv-box .page-title-text .page-title br {
  display: none;
}
@media screen and (max-width: 620.9px) {
  .product-lineup.lineup-course .page-title-mv-box .page-title-text .page-title br {
    display: block;
  }
}
.product-lineup.lineup-course .page-title-mv-box .page-desc {
  position: absolute;
}
.product-lineup.lineup-course .page-title-mv-box .page-desc {
  margin: 0;
  top: 68%;
  left: 6%;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .page-title-mv-box .page-desc {
    font-size: 2em;
    top: 120%;
  }
}
@media screen and (max-width: 600.9px) {
  .product-lineup.lineup-course .page-title-mv-box .page-desc {
    font-size: 1.6em;
    top: 110%;
  }
}
@media screen and (max-width: 460.9px) {
  .product-lineup.lineup-course .page-title-mv-box .page-desc {
    font-size: 1.2em;
  }
}
.product-lineup.lineup-course .page-title-mv-box .btn-box {
  width: 78px;
  background-color: #fff;
  border-radius: 15px 0 0 15px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  height: auto;
  line-height: 0;
}
.product-lineup.lineup-course .page-title-mv-box .btn-box img {
  width: 100%;
  vertical-align: middle;
}
.product-lineup.lineup-course .page-title-mv-box .btn-box .link-area:hover {
  -webkit-filter: opacity(80%);
          filter: opacity(80%);
  color: initial;
}
@media screen and (min-width: 1921px) {
  .product-lineup.lineup-course .page-title-mv-box .btn-box {
    max-width: 80.645px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .page-title-mv-box .btn-box {
    display: none;
  }
}
.product-lineup.lineup-course .page-contents img {
  width: 100%;
}
.product-lineup.lineup-course .kasouTtl {
  font-size: 2em;
  color: #d5281c;
  text-align: center;
  height: 150px;
  padding: 70px 0 0;
  font-weight: bold;
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/bg_header.png?tr=n-base,q-70&updatedAt=1755506822727");
  background-repeat: no-repeat;
  background-size: contain;
}
.product-lineup.lineup-course .page-contents {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .page-contents {
    width: 96%;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .page-contents {
    width: 90%;
  }
}
.product-lineup.lineup-course .slick-next {
  width: 40px;
  height: 40px;
  background: #d7250c;
  border-radius: 1000px;
  right: -7px !important;
  font-size: 0;
  line-height: 0;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .slick-next {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .slick-next {
    width: 30px;
    height: 30px;
  }
}
.product-lineup.lineup-course .slick-next:before {
  content: ">";
  color: #fff;
  font-size: 20px;
}
.product-lineup.lineup-course .slick-prev {
  width: 40px;
  height: 40px;
  background: #d7250c;
  border-radius: 1000px;
  left: -15px !important;
  font-size: 0;
  line-height: 0;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .slick-prev {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .slick-prev {
    width: 30px;
    height: 30px;
  }
}
.product-lineup.lineup-course .slick-prev:before {
  content: "<";
  color: #fff;
  font-size: 20px;
}
.product-lineup.lineup-course .course-contents-wrapper {
  width: 100%;
  max-width: 1280px;
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper {
  width: 100%;
  margin-top: 60px;
  position: relative;
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper {
  margin-top: 10px;
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .course-title {
  color: #F45E5E;
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .spec-wrapper {
  width: 35%;
  min-width: 420px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  display: block;
  right: 40px;
  top: 50px;
  padding: 18px 20px 14px 32px;
  position: absolute;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .spec-wrapper {
    min-width: 300px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .spec-wrapper {
    width: 90%;
    min-width: 290px;
    margin: 0 auto;
    padding: 30px 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    position: initial;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .course-copy {
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .course-copy {
    font-size: 0.7em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .course-copy {
    font-size: 1sem;
  }
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .course-copy .course-summary {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .course-copy .course-summary {
    font-size: 1.3em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .course-title {
  padding-left: 50px;
  font-size: calc(2rem + (1vw - 4px) * 0.8);
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .course-title {
    font-size: calc(1.7rem + (1vw - 4px) * 0.8);
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .course-title {
    font-size: 1.7em;
    margin-top: 20px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .course-title:before {
  content: "";
  width: 40px;
  height: 40px;
  margin: auto;
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_book-orange.png?tr=n-base,q-70&updatedAt=1755497900759");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box-wrapper {
  margin: 20px 20px 30px 0;
  border: 3px solid #F45E5E;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box-wrapper {
    margin: 10px 0;
    font-size: 0.6em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box-wrapper {
    margin: 20px 0;
    font-size: 1em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .making-elements-items {
    width: 48%;
    padding-bottom: 30px;
    margin-right: 1%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .making-elements-items h3 {
  padding-top: 16px;
  position: relative;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .making-elements-items h3 {
    font-size: 1em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .making-elements-items h3:before {
  content: "";
  width: 40px;
  height: 40px;
  margin: auto;
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_designer-darkorange.pngtr=n-base,q-70&updatedAt=1755497902833");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 50px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .making-elements-items h3:before {
    width: 20px;
    height: 20px;
    left: 0px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .making-elements-items:nth-of-type(2) h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_rakuraku-darkorange.png?tr=n-base,q-70&updatedAt=1755497911191");
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .making-elements-items:nth-of-type(3) h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_kirihari-darkorange.png?tr=n-base,q-70&updatedAt=1755497905218");
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box {
  width: 50%;
  text-align: center;
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .caption {
  font-size: 0.9em;
  color: #FFF;
  background-color: #F45E5E;
  padding: 7px;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .caption {
    font-size: 0.4em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .caption {
    font-size: 0.7em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .price {
  padding: 15px;
  font-size: 34px;
  font-weight: 600;
  border-right: 1px solid #DDDDDD;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .price {
    font-size: 1.4em;
    padding: 10px 0;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .price {
    font-size: 1.2em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .price span {
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .price span {
    font-size: 0.6em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .price span {
    font-size: 0.6em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .price .price-supplement {
  display: block;
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  right: 5%;
  font-weight: normal;
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .permit {
  padding: 10px 0;
  font-size: 34px;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .permit {
    font-size: 1.4em;
    line-height: 3em;
  }
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .permit {
    font-size: 1.4em;
    line-height: 1.4em;
    padding: 10px 0;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .permit {
    font-size: 1.2em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .permit span {
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .permit span {
    font-size: 0.6em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .price-box .permit span {
    font-size: 0.6em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .binding-box-wrapper dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .binding-box-wrapper dl {
    font-size: 0.7em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .binding-box-wrapper dl {
    font-size: 1em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .binding-box-wrapper dl dt {
  text-align: center;
  width: 30%;
  padding: 10px;
  margin-bottom: 5px;
  background-color: #EBA09D;
}
.product-lineup.lineup-course .course-contents-wrapper .eyecatch-wrapper .binding-box-wrapper dl dd {
  width: 67%;
  padding: 10px;
  margin: 0 0 5px 5px;
  background-color: #FFFEEF;
}
.product-lineup.lineup-course .course-contents-wrapper .section-title-container {
  padding: 0 0 0 10px;
  margin: 130px 0 70px 0;
  border-left: 3px solid #F45E5E;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .section-title-container {
    margin: 70px 0 30px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .section-title-container {
    margin: 70px 0 30px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .section-title-container .section-title {
  padding: 0;
  margin-top: 15px;
  color: #F45E5E;
  font-size: 2em;
  font-weight: bold;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .section-title-container .section-title {
    margin-top: 5px;
    font-size: 1.7em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .quality-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6rem;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .quality-container {
    display: inherit;
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .quality-container {
    display: inherit;
    padding: 0 10px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .quality-image {
  width: 38%;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .quality-image {
    width: 50%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .quality-image {
    width: 90%;
    margin: 0;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .quality-elements-box {
  width: 62%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .quality-elements-box {
    width: 100%;
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .quality-elements-box {
    width: 100%;
    margin-top: 70px;
    display: inherit;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .quality-elements-items {
  width: 47%;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .quality-elements-items {
    width: 100%;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .quality-elements-items:nth-of-type(odd) {
  margin-right: 3rem;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .quality-elements-items:nth-of-type(odd) {
    margin-right: 0;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .quality-elements-items h3 {
  font-weight: 600;
  color: #F45E5E;
  line-height: 1.3em;
  font-size: 1.3em;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .quality-elements-items h3 {
    font-size: 1.4em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .quality-elements-items h3 span {
  display: block;
  line-height: 1.5em;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .quality-elements-items h3 span {
    display: initial;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .cover-design-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-lineup.lineup-course .course-contents-wrapper .cover-design-container .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
  padding: 16px 0;
}
.product-lineup.lineup-course .course-contents-wrapper .hyoushi-wrapper {
  width: 40%;
  min-height: 440px;
  padding: 20px;
  margin: 0 7px 0 0;
  border: 1px solid #DDDDDD;
}
.product-lineup.lineup-course .course-contents-wrapper .hyoushi-wrapper h3 {
  margin-top: 20px;
  font-size: 1.4em;
  font-weight: 600;
  color: #F45E5E;
}
.product-lineup.lineup-course .course-contents-wrapper .hyoushi-wrapper p {
  margin-top: 30px;
}
.product-lineup.lineup-course .course-contents-wrapper .colorpage-gallery-slider {
  margin-top: 70px;
}
.product-lineup.lineup-course .course-contents-wrapper .colorpage-gallery-slider img {
  max-width: 800px;
  width: 100%;
  border: 6px solid #fff;
  margin: 0 auto;
}
.product-lineup.lineup-course .course-contents-wrapper .colorpage-gallery-slider-thumbnail {
  margin-top: 70px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .colorpage-gallery-slider-thumbnail {
    margin-top: 40px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .colorpage-gallery-slider-thumbnail div {
  margin: 0 8px;
}
.product-lineup.lineup-course .course-contents-wrapper .colorpage-gallery-slider-thumbnail img {
  max-width: 385px;
  width: 100%;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-lite-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .pagenation-lite-container {
    display: inherit;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .pagenation-lite-container {
    display: inherit;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-lite-container h3 {
  margin: 20px 0;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box {
  width: 50%;
  min-height: 440px;
  padding: 30px;
  margin: 0 7px 0 0;
  border: 1px solid #DDDDDD;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .pagenation-box {
    width: 90%;
    margin: 0 auto 30px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box h3 {
  padding-left: 45px;
  margin-top: 20px;
  font-size: 1.4em;
  line-height: 1.5em;
  font-weight: 600;
  color: #F45E5E;
  position: relative;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box h3:before {
  content: "";
  width: 35px;
  height: 35px;
  margin: auto;
  text-align: center;
  color: black;
  background-image: none !important;
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box p {
  margin-top: 30px;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box.first h3:before {
  content: "1";
  background-color: #D6E8F7;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box.second h3:before {
  content: "2";
  background-color: #D8E5C7;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box.third h3:before {
  content: "3";
  background-color: #FFE885;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box.fourth h3:before {
  content: "4";
  background-color: #FACFB6;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box.fifth h3:before {
  content: "5";
  background-color: #F7D3E3;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box.sixth h3:before {
  content: "6";
  background-color: #D6CFE7;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box.seventh h3:before {
  content: "7";
  background-color: #BBCAE4;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box.eighth h3:before {
  content: "8";
  background-color: #C7E6E2;
}
.product-lineup.lineup-course .course-contents-wrapper .pagenation-box.ninth h3:before {
  content: "9";
  background-color: #E0DDD2;
}
.product-lineup.lineup-course .course-contents-wrapper .benefits-element-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .benefits-element-container {
    display: inherit;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .benefits-element-items {
  width: 48%;
  margin-bottom: 70px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .benefits-element-items {
    width: 100%;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .benefits-element-items:nth-of-type(odd) {
  margin-right: 4%;
}
.product-lineup.lineup-course .course-contents-wrapper .benefits-image {
  position: relative;
}
.product-lineup.lineup-course .course-contents-wrapper .benefits-image:before {
  content: "";
  width: 80px;
  height: 50px;
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_free-option-cherrypink.png?tr=n-base,q-70&updatedAt=1755497903816");
  background-repeat: no-repeat;
  background-size: contain;
  top: -10px;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .benefits-image:before {
    width: 70px;
    height: 35px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .benefits-image:before {
    width: 50px;
    height: 35px;
    top: inherit;
    bottom: -10px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .benefits-text-box h3 {
  margin: 10px 0;
  font-weight: 600;
  color: #F45E5E;
  font-size: 1.6em;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .benefits-text-box h3 {
    font-size: 1.4em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .title-option {
  text-align: center;
  position: relative;
  margin-bottom: 2em;
  font-size: 2em;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .title-option {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .title-option {
    font-size: 1.6em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .title-option:after {
  content: "";
  width: 600px;
  height: 300px;
  margin: 0 auto;
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/custom/line_fukidashi.png?tr=n-base,q-70&updatedAt=1755497898312");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  right: 0;
  top: 60px;
  position: absolute;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .title-option:after {
    top: 30px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .title-option:after {
    width: 300px;
    height: 300px;
    top: 65px;
  }
}
@media screen and (max-width: 600px) {
  .product-lineup.lineup-course .course-contents-wrapper .title-option:after {
    top: 90px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .option-wrapper {
  padding-top: 130px;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .option-wrapper {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .option-wrapper {
    padding-top: 0;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .option-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .option-container {
    display: inherit;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .option-items {
  width: 20%;
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .option-items {
    width: 45%;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .option-items {
    width: 100%;
    margin-bottom: 20px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .option-items h3 {
  font-weight: 600;
  color: #F45E5E;
}
.product-lineup.lineup-course .course-contents-wrapper .option-items:nth-of-type(4) {
  margin-right: 0;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .option-detail-box {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 30px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .option-detail-box h3 {
  margin: 5px 0 10px 0;
  font-size: 1.3em;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .option-detail-box h3 {
    margin: 5% auto;
    font-size: 1.4em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .option-detail-box p {
    width: 100%;
    clear: both;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-type-wrapper {
    display: inherit;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-container {
  width: 32%;
  margin: 0 1%;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-type-container {
    width: 100%;
    margin-bottom: 40px;
    margin-top: 30px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-container .making-type-title-box {
  width: 100%;
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-container .making-type-title-box h3 {
  margin: 30px 0;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-type-container .making-type-title-box h3 {
    font-size: 1.4em;
    text-align: left;
    text-indent: 40px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-container .making-type-title-box h3:before {
  content: "";
  width: 30px;
  height: 30px;
  margin: auto;
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_designer-orange.png?tr=n-base,q-70&updatedAt=1755497902863");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 30px;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-type-container .making-type-title-box h3:before {
    width: 30px;
    left: 0;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-container .making-type-title-box p {
  margin-top: 30px;
  min-height: 100px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-type-container .making-type-title-box p {
    min-height: initial;
    margin-bottom: 30px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-container:nth-of-type(2) .making-type-title-box h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_rakuraku-orange.png?tr=n-base,q-70&updatedAt=1755497913189");
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-container:nth-of-type(3) .making-type-title-box h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_kirihari-orange.png?tr=n-base,q-70&updatedAt=1755497906459");
}
.product-lineup.lineup-course .course-contents-wrapper .making-step-box {
  width: 100%;
  margin-bottom: 40px;
}
.product-lineup.lineup-course .course-contents-wrapper .making-step-box > li {
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  background-color: rgb(226.8256410256, 242.9743589744, 230.6051282051);
  border-radius: 5px;
  position: relative;
}
.product-lineup.lineup-course .course-contents-wrapper .making-step-box > li:not(:last-child):after {
  content: "";
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #5bb971;
  right: 0;
  left: 0;
  bottom: -15px;
  position: absolute;
}
.product-lineup.lineup-course .course-contents-wrapper .button-link-to-rakuraku a {
  min-width: 330px;
  padding: 20px 30px 20px 20px;
  font-size: 1.2em;
  color: black;
  background-color: #fff;
  border: 2px solid #F45E5E;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  display: block;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-course .course-contents-wrapper .button-link-to-rakuraku a {
    font-size: 1em;
  }
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .button-link-to-rakuraku a {
    font-size: 0.6em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .button-link-to-rakuraku a {
    font-size: 1.2em;
    min-width: auto;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .button-link-to-rakuraku a:after {
  content: "";
  width: 0;
  height: 0;
  margin: auto;
  border-left: 8px solid #F45E5E;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  right: 10px;
  top: 0;
  bottom: 0;
  position: absolute;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper {
    display: inherit;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .making-type-container {
  width: 50%;
  margin-right: 70px;
  float: left;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .making-type-container {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .making-type-container {
    width: 100%;
    margin-bottom: 20px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .making-step-box {
  width: 40%;
  margin-bottom: 40px;
  float: right;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .making-step-box {
    width: 45%;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .making-step-box {
    width: 90%;
    margin: 0 auto;
    float: initial;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .making-step-box > p {
  margin-bottom: 20px;
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .making-step-box > li {
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  background-color: #EBA09D;
  border-radius: 5px;
  position: relative;
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .making-step-box > li:not(:nth-child(3)):after {
  content: "";
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #F45E5E;
  right: 0;
  left: 0;
  bottom: -15px;
  position: absolute;
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .button-link-to-rakuraku a {
  padding: 15px 30px 15px 20px;
  font-size: 0.8em;
  color: black;
  background-color: #fff;
  border: 1px solid #F45E5E;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .button-link-to-rakuraku a {
    margin-bottom: 30px;
    display: block;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-type-pc-wrapper .button-link-to-rakuraku a:after {
  content: "";
  width: 0;
  height: 0;
  margin: auto;
  border-left: 8px solid #F45E5E;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  right: 10px;
  top: 0;
  bottom: 0;
  position: absolute;
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-wrapper {
  padding-top: 130px;
  text-align: center;
  clear: both;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-wrapper {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-wrapper {
    padding-top: 20px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-wrapper h3 {
  margin: 50px;
  font-size: 1.6em;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-wrapper h3 {
    margin: 0;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-wrapper h3:after {
  content: "";
  width: 600px;
  height: 200px;
  margin: 0 auto;
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/custom/line_fukidashi.png?tr=n-base,q-70&updatedAt=1755497898312");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  right: 0;
  top: 50px;
  position: absolute;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-wrapper h3:after {
    width: 300px;
    height: 300px;
    top: 90px;
  }
}
@media screen and (max-width: 600px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-wrapper h3:after {
    top: 130px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-container {
  width: 70%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-container {
    min-width: 650px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-container {
    width: 100%;
    min-width: initial;
    margin-top: 50px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-item {
  width: 30%;
  margin: 1%;
  position: relative;
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-item:before {
  display: block;
  content: "";
  position: absolute;
  top: 30%;
  right: -30px;
  width: 40px;
  height: 40px;
  margin-top: -8px;
  border-radius: 50%;
  background: #F45E5E;
  z-index: 9998;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-item:before {
    width: 20px;
    height: 20px;
    top: 15%;
    right: -16px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-item:before {
    width: 20px;
    height: 20px;
    top: 15%;
    right: -16px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-item:after {
  display: block;
  content: "＋";
  font-size: 2em;
  color: #fff;
  position: absolute;
  top: 30%;
  right: 6px;
  width: 0;
  height: 0;
  margin-top: -6px;
  z-index: 9999;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-item:after {
    font-size: 1em;
    top: 15%;
    right: 2px;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-item:after {
    font-size: 1em;
    top: 15%;
    right: 2px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-item:last-of-type:before {
  display: none;
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-item:last-of-type:after {
  display: none;
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-item h4 {
  font-size: 1.4em;
  font-weight: 600;
  color: #F45E5E;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-item h4 {
    font-size: 1em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-item p {
  white-space: nowrap;
  line-height: 3em;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .making-combo-item p {
    margin-bottom: 10px;
    font-size: 0.7em;
    line-height: 1.5em;
    white-space: inherit;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .making-combo-item .making-combo-image {
  margin-bottom: 30px;
}
.product-lineup.lineup-course .course-contents-wrapper .designer h4 {
  color: #f8b856 !important;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .course-title {
  color: #f8b856 !important;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .course-title:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_book-orange.png?tr=n-base,q-70&updatedAt=1755497900759");
}
.product-lineup.lineup-course .course-contents-wrapper .designer .price-box-wrapper {
  border: 3px solid #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .price-box .caption {
  background-color: #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .price-box .permit {
  font-size: 1.2em;
  line-height: 3em;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-course .course-contents-wrapper .designer .price-box .permit {
    line-height: 2.8em;
  }
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .designer .price-box .permit {
    line-height: 2em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .designer .price-box .permit {
    line-height: 1.3em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .designer .binding-box-wrapper dl dt {
  background-color: #d9e8e8;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .good-point-wrapper h2 span:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_point-orange.png?tr=n-base,q-70&updatedAt=1755497910400");
}
.product-lineup.lineup-course .course-contents-wrapper .designer .good-point-elements-items h3 {
  background-color: #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .making-elements-items h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_rakuraku-orange.png?tr=n-base,q-70&updatedAt=1755497913189");
}
.product-lineup.lineup-course .course-contents-wrapper .designer .making-title-container h2 span:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_option-orange.png?tr=n-base,q-70&updatedAt=1755497909461");
}
.product-lineup.lineup-course .course-contents-wrapper .designer .btn-course-more a {
  background-color: #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .btn-course-more a:after {
  border-left: 7px solid #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .section-title-container {
  border-left: 3px solid #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .section-title {
  color: #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .quality-elements-items h3 {
  color: #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .hyoushi-wrapper h3 {
  color: #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .pagenation-box h3 {
  color: #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .title-option:after {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/line_fukidashi-orange.png?tr=n-base,q-70&updatedAt=1755497826698");
}
.product-lineup.lineup-course .course-contents-wrapper .designer .benefits-image:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_free-option-orange.png?tr=n-base,q-70&updatedAt=1755497905184");
}
.product-lineup.lineup-course .course-contents-wrapper .designer .benefits-text-box h3 {
  color: #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .option-detail-box h3 {
  color: #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .making-type-wrapper .making-type-container .making-type-title-box h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_designer-orange.png?tr=n-base,q-70&updatedAt=1755497902863");
}
.product-lineup.lineup-course .course-contents-wrapper .designer .making-type-wrapper .making-type-container:nth-of-type(2) .making-type-title-box h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_rakuraku-orange.png?tr=n-base,q-70&updatedAt=1755497913189");
}
.product-lineup.lineup-course .course-contents-wrapper .designer .making-type-wrapper .making-type-container:nth-of-type(3) .making-type-title-box h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_kirihari-orange.png?tr=n-base,q-70&updatedAt=1755497906459");
}
.product-lineup.lineup-course .course-contents-wrapper .designer .making-type-wrapper .making-step-box > li {
  background-color: rgb(253.0710227273, 235.4346590909, 208.4289772727);
}
.product-lineup.lineup-course .course-contents-wrapper .designer .making-type-wrapper .making-step-box > li:after {
  border-top: 15px solid #f8b856 !important;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .making-type-wrapper .making-step-box > li:nth-child(4) {
  margin-bottom: 70px;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .making-type-wrapper .making-step-box > li:nth-child(4):after {
  display: none;
}
.product-lineup.lineup-course .course-contents-wrapper .designer .making-combo-wrapper h3:after {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/line_fukidashi-orange.png?tr=n-base,q-70&updatedAt=1755497826698");
}
.product-lineup.lineup-course .course-contents-wrapper .designer .making-combo-item:before {
  background: #f8b856;
}
.product-lineup.lineup-course .course-contents-wrapper .custom h4 {
  color: #5bb971 !important;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .course-title {
  color: #5bb971 !important;
  letter-spacing: -3px;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .course-title:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_book-forestgreen.png?tr=n-base,q-70&updatedAt=1755497900751");
}
.product-lineup.lineup-course .course-contents-wrapper .custom .price-box-wrapper {
  border: 3px solid #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .price-box .caption {
  background-color: #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .price-box .permit {
  font-size: 1.2em;
  line-height: 3em;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-course .course-contents-wrapper .custom .price-box .permit {
    line-height: 2.8em;
  }
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .custom .price-box .permit {
    line-height: 2em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .custom .price-box .permit {
    line-height: 1.3em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .custom .binding-box-wrapper dl dt {
  background-color: #d9e8e8;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .good-point-wrapper h2 span:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_point-forestgreen.png?tr=n-base,q-70&updatedAt=1755497910092");
}
.product-lineup.lineup-course .course-contents-wrapper .custom .good-point-elements-items h3 {
  background-color: #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .making-elements-items h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_rakuraku-forestgreen.png?tr=n-base,q-70&updatedAt=1755497913174");
}
.product-lineup.lineup-course .course-contents-wrapper .custom .making-title-container h2 span:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_option-forestgreen.png?tr=n-base,q-70&updatedAt=1755497909097");
}
.product-lineup.lineup-course .course-contents-wrapper .custom .btn-course-more a {
  background-color: #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .btn-course-more a:after {
  border-left: 7px solid #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .section-title-container {
  border-left: 3px solid #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .section-title {
  color: #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .quality-elements-items h3 {
  color: #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .hyoushi-wrapper h3 {
  color: #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .pagenation-box h3 {
  color: #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .title-option:after {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/line_fukidashi-forestgreen.png?tr=n-base,q-70&updatedAt=1755497826769");
}
.product-lineup.lineup-course .course-contents-wrapper .custom .benefits-image:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_free-option-forestgreen.png?tr=n-base,q-70&updatedAt=1755497905177");
}
.product-lineup.lineup-course .course-contents-wrapper .custom .benefits-text-box h3 {
  color: #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .option-detail-box h3 {
  color: #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .making-type-wrapper .making-type-container .making-type-title-box h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_designer-forestgreen.png?tr=n-base,q-70&updatedAt=1755497903127");
}
.product-lineup.lineup-course .course-contents-wrapper .custom .making-type-wrapper .making-type-container:nth-of-type(2) .making-type-title-box h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_rakuraku-forestgreen.png?tr=n-base,q-70&updatedAt=1755497913174");
}
.product-lineup.lineup-course .course-contents-wrapper .custom .making-type-wrapper .making-type-container:nth-of-type(3) .making-type-title-box h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_kirihari-forestgreen.png?tr=n-base,q-70&updatedAt=1755497906417");
}
.product-lineup.lineup-course .course-contents-wrapper .custom .making-type-wrapper .making-step-box:after {
  border-top: 15px solid #5bb971 !important;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .making-type-wrapper .making-step-box:nth-child(4) {
  margin-bottom: 70px;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .making-type-wrapper .making-step-box:nth-child(4):after {
  display: none;
}
.product-lineup.lineup-course .course-contents-wrapper .custom .making-combo-wrapper h3:after {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/line_fukidashi-forestgreen.png?tr=n-base,q-70&updatedAt=1755497826769");
}
.product-lineup.lineup-course .course-contents-wrapper .custom .making-combo-item:before {
  background: #5bb971;
}
.product-lineup.lineup-course .course-contents-wrapper .myself h4 {
  color: #73bfe4 !important;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .course-title {
  color: #73bfe4 !important;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .course-title:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_book-skyblue.png?tr=n-base,q-70&updatedAt=1755497901043");
}
.product-lineup.lineup-course .course-contents-wrapper .myself .price-box-wrapper {
  border: 3px solid #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .price-box .caption {
  background-color: #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .price-box .permit {
  font-size: 1.2em;
  line-height: 3em;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-course .course-contents-wrapper .myself .price-box .permit {
    line-height: 2.8em;
  }
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .myself .price-box .permit {
    line-height: 2em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .myself .price-box .permit {
    line-height: 1.3em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .myself .binding-box-wrapper dl dt {
  background-color: #d9e8e8;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .good-point-wrapper h2 span:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_point-skyblue.png?tr=n-base,q-70&updatedAt=1755497911120");
}
.product-lineup.lineup-course .course-contents-wrapper .myself .good-point-elements-items h3 {
  background-color: #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .making-elements-items h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_rakuraku-skyblue.png?tr=n-base,q-70&updatedAt=1755497913180");
}
.product-lineup.lineup-course .course-contents-wrapper .myself .making-title-container h2 span:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_option-skyblue.png?tr=n-base,q-70&updatedAt=1755497909117");
}
.product-lineup.lineup-course .course-contents-wrapper .myself .btn-course-more a {
  background-color: #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .btn-course-more a:after {
  border-left: 7px solid #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .section-title-container {
  border-left: 3px solid #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .section-title {
  color: #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .quality-elements-items h3 {
  color: #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .hyoushi-wrapper h3 {
  color: #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .pagenation-box h3 {
  color: #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .title-option:after {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/line_fukidashi-skyblue.png?tr=n-base,q-70&updatedAt=1755497826780");
}
.product-lineup.lineup-course .course-contents-wrapper .myself .benefits-image:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_free-option-skyblue.png?tr=n-base,q-70&updatedAt=1755497905216");
}
.product-lineup.lineup-course .course-contents-wrapper .myself .benefits-text-box h3 {
  color: #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .option-detail-box h3 {
  color: #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .making-step-box > li {
  background-color: #d9e8e8;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .making-step-box > li:after {
  border-top: 15px solid #73bfe4 !important;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .making-step-box > li:nth-child(4) {
  margin-bottom: 70px;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .making-step-box > li:nth-child(4):after {
  display: none;
}
.product-lineup.lineup-course .course-contents-wrapper .myself .making-combo-wrapper h3:after {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/line_fukidashi-skyblue.png?tr=n-base,q-70&updatedAt=1755497826780");
}
.product-lineup.lineup-course .course-contents-wrapper .myself .making-combo-item:before {
  background: #73bfe4;
}
.product-lineup.lineup-course .course-contents-wrapper .lite h4 {
  color: #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .course-title {
  color: #e48f94;
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .lite .course-title {
    font-size: 1.4em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .lite .course-title {
    font-size: 1.8em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .lite .course-title:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_book-cherrypink.png?tr=n-base,q-70&updatedAt=1755497899474");
}
.product-lineup.lineup-course .course-contents-wrapper .lite .price-box-wrapper {
  border: 3px solid #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .price-box .caption {
  background-color: #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .price-box .permit {
  font-size: 1.3em;
  line-height: 2.5em;
}
@media screen and (max-width: 1366px) {
  .product-lineup.lineup-course .course-contents-wrapper .lite .price-box .permit {
    line-height: 2.8em;
  }
}
@media screen and (max-width: 900px) {
  .product-lineup.lineup-course .course-contents-wrapper .lite .price-box .permit {
    line-height: 2em;
  }
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .lite .price-box .permit {
    line-height: 1.3em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .lite .binding-box-wrapper dl dt {
  background-color: #EBA09D;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .good-point-wrapper h2 span:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_point-cherrypink.png?tr=n-base,q-70&updatedAt=1755497909136");
}
.product-lineup.lineup-course .course-contents-wrapper .lite .good-point-elements-items h3 {
  background-color: #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .making-elements-items h3:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_rakuraku-cherrypink.png?tr=n-base,q-70&updatedAt=1755497911231");
}
.product-lineup.lineup-course .course-contents-wrapper .lite .making-title-container h2 span:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_option-cherrypink.png?tr=n-base,q-70&updatedAt=1755497907706");
}
.product-lineup.lineup-course .course-contents-wrapper .lite .btn-course-more a {
  background-color: #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .btn-course-more a:after {
  border-left: 7px solid #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .section-title-container {
  border-left: 3px solid #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .section-title {
  color: #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .quality-elements-items h3 {
  color: #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .hyoushi-wrapper h3 {
  color: #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .pagenation-box {
  min-width: 400px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .lite .pagenation-box {
    width: 90%;
    min-width: initial;
    margin: 0 auto;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .lite .pagenation-box h3 {
  color: #e48f94;
  padding-left: 0;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .pagenation-box h3:before {
  display: none;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .title-option:after {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/line_fukidashi-cherrypink.png?tr=n-base,q-70&updatedAt=1755497826771");
}
.product-lineup.lineup-course .course-contents-wrapper .lite .benefits-element-items .benefits-image:before {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/icon/ico_free-option-cherrypink.png?tr=n-base,q-70&updatedAt=1755497903816");
}
.product-lineup.lineup-course .course-contents-wrapper .lite .benefits-element-items:nth-of-type(1) .benefits-image:before {
  background-image: none;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .benefits-text-box h3 {
  color: #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .option-detail-box h3 {
  color: #e48f94;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .making-step-box > li {
  background-color: #ffe6e6;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .making-step-box > li:after {
  border-top: 15px solid #e48f94 !important;
}
.product-lineup.lineup-course .course-contents-wrapper .lite .making-step-box > li:nth-child(4) {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .lite .making-step-box > li:nth-child(4) {
    margin-bottom: 30px;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .lite .making-step-box > li:nth-child(4):after {
  display: none;
}
@media only screen and (max-width: 767.9px) {
  .product-lineup.lineup-course .course-contents-wrapper .lite .making-combo-wrapper h3 {
    font-size: 1.4em;
  }
}
.product-lineup.lineup-course .course-contents-wrapper .lite .making-combo-wrapper h3:after {
  background-image: url("https://ik.imagekit.io/yumephoto/sotugyo/lineup/line_fukidashi-cherrypink.png?tr=n-base,q-70&updatedAt=1755497826771");
}
.product-lineup.lineup-course .course-contents-wrapper .lite .making-combo-item:before {
  background: #e48f94;
}

.link-wrapper {
  max-width: 1280px;
  margin: 130px auto;
}
@media only screen and (max-width: 767.9px) {
  .link-wrapper {
    margin: 0 auto;
  }
}

.lineup-link-container {
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .lineup-link-container {
    margin: 100px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767.9px) {
  .lineup-link-container {
    margin: 70px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.button-link {
  width: calc(33.3333333333% - 6px);
  margin: 3px 0;
  font-size: 1.2em;
  font-weight: 600;
  position: relative;
  display: block;
}
@media screen and (max-width: 900px) {
  .button-link {
    width: 50%;
    margin: 0;
  }
}
@media only screen and (max-width: 767.9px) {
  .button-link {
    width: 50%;
    margin: 0;
  }
}
.button-link a {
  padding: 25px 20px;
  text-decoration: none;
  color: #FFF;
  display: block;
}
@media screen and (max-width: 900px) {
  .button-link a {
    padding: 20px;
  }
}
@media only screen and (max-width: 767.9px) {
  .button-link a {
    padding: 10px 26px 10px 10px;
    font-size: 0.8em;
  }
}
.button-link a:before {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
}
@media only screen and (max-width: 767.9px) {
  .button-link a:before {
    width: 15px;
    height: 15px;
    right: 10px;
  }
}
.button-link a:after {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-left: 7px solid #FFBA00;
}
@media only screen and (max-width: 767.9px) {
  .button-link a:after {
    right: 6px;
  }
}
.button-link span {
  font-size: 0.6em;
  font-weight: initial;
  display: block;
}
@media only screen and (max-width: 767.9px) {
  .button-link span {
    font-size: 0.4em;
  }
}
.button-link .small-link-title {
  display: block;
  font-size: 50%;
  font-weight: normal;
}
.button-link:nth-of-type(1) {
  background-color: #FCF1F0;
}
.button-link:nth-of-type(1) a {
  color: #d24d43;
}
.button-link:nth-of-type(1) a:after {
  border-left: 7px solid #d24d43;
}
.button-link:nth-of-type(2) {
  background-color: #ee7948;
}
.button-link:nth-of-type(2) a:after {
  border-left: 7px solid #ee7948;
}
.button-link:nth-of-type(3) {
  background-color: #f8b856;
}
.button-link:nth-of-type(3) a:after {
  border-left: 7px solid #f8b856;
}
.button-link:nth-of-type(4) {
  background-color: #5bb971;
}
.button-link:nth-of-type(4) a:after {
  border-left: 7px solid #5bb971;
}
.button-link:nth-of-type(5) {
  background-color: #73bfe4;
}
.button-link:nth-of-type(5) a:after {
  border-left: 7px solid #73bfe4;
}
.button-link:nth-of-type(6) {
  background-color: #e48f94;
}
.button-link:nth-of-type(6) a:after {
  border-left: 7px solid #e48f94;
}

.notes {
  font-size: 10px;
  font-weight: 400;
}

.product-lineup .hikaku-wrapper .tbl-content .spec-comfort {
  background-color: rgb(250.7014925373, 222.7611940299, 211.2985074627);
  color: #ed7848;
}
.product-lineup .hikaku-wrapper .tbl-content .spec-comfort > a {
  display: block;
  width: 100%;
  padding: 0.7rem 0;
  color: rgb(233.3462686567, 92.5970149254, 34.8537313433);
  cursor: pointer;
  text-decoration: none;
}

.product-lineup .hikaku-wrapper .tbl-content .spec-creator {
  background-color: rgb(253.9152542373, 245.2372881356, 232.0847457627);
  color: #f7b756;
}
.product-lineup .hikaku-wrapper .tbl-content .spec-creator > a {
  display: block;
  width: 100%;
  padding: 0.7rem 0;
  color: rgb(245.1559322034, 166.4033898305, 47.0440677966);
  cursor: pointer;
  text-decoration: none;
}

.product-lineup .hikaku-wrapper .tbl-content .spec-matsu {
  background-color: rgb(197.7744680851, 230.2255319149, 205.4510638298);
  color: #5bb871;
}
.product-lineup .hikaku-wrapper .tbl-content .spec-matsu > a {
  display: block;
  width: 100%;
  padding: 0.7rem 0;
  color: rgb(70.7582978723, 163.4417021277, 92.6834042553);
  cursor: pointer;
  text-decoration: none;
}

.product-lineup .hikaku-wrapper .tbl-content .spec-take {
  background-color: rgb(243.2634730539, 249.5508982036, 252.7365269461);
  color: #73bee4;
}
.product-lineup .hikaku-wrapper .tbl-content .spec-take > a {
  display: block;
  width: 100%;
  padding: 0.7rem 0;
  color: rgb(80.7964071856, 174.119760479, 221.4035928144);
  cursor: pointer;
  text-decoration: none;
}

.product-lineup .hikaku-wrapper .tbl-content .spec-ume {
  background-color: rgb(251.7108433735, 245.2891566265, 245.7590361446);
  color: #d58389;
}
.product-lineup .hikaku-wrapper .tbl-content .spec-ume > a {
  display: block;
  width: 100%;
  padding: 0.7rem 0;
  color: rgb(202.6771084337, 100.5228915663, 107.9975903614);
  cursor: pointer;
  text-decoration: none;
}

.product-lineup .hikaku-wrapper .tbl-content .spec-lineup {
  background-color: white;
  color: #ddd;
}
.product-lineup .hikaku-wrapper .tbl-content .spec-lineup > a {
  display: block;
  width: 100%;
  padding: 0.7rem 0;
  color: rgb(200.6, 200.6, 200.6);
  cursor: pointer;
  text-decoration: none;
}

/* コース比較表 */
.product-lineup .hikaku-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 150px auto 60px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .product-lineup .hikaku-wrapper {
    margin: 50px auto;
  }
}
@media screen and (max-width: 600px) {
  .product-lineup .hikaku-wrapper {
    margin: 50px auto;
  }
}
.product-lineup .hikaku-wrapper > h2 {
  text-align: center;
}
.product-lineup .hikaku-wrapper > h2 > span:before {
  display: none;
}
.product-lineup .hikaku-wrapper [target*=_blank]::after {
  content: "\f35d";
  font-size: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  margin-left: 0.5rem;
}
.product-lineup .hikaku-wrapper .hikaku-arrow {
  display: none;
}
@media screen and (max-width: 1024px) {
  .product-lineup .hikaku-wrapper .hikaku-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    margin: auto;
    position: sticky;
    top: 30vh;
    z-index: 9;
  }
}
.product-lineup .hikaku-wrapper .hikaku-arrow p[class^=hikaku-arw-] {
  width: calc(100% - 2rem);
  color: #d24d43;
  font-size: 5rem;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.5;
}
.product-lineup .hikaku-wrapper .hikaku-arrow p[class^=hikaku-arw-].hikaku-arw-next {
  margin-left: auto;
  margin-right: 1rem;
  text-align: right;
}
.product-lineup .hikaku-wrapper .hikaku-arrow p[class^=hikaku-arw-].hikaku-arw-prev {
  margin-left: 1rem;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .product-lineup .hikaku-wrapper .tbl-wrap {
    width: 100vw;
    margin: 0 auto;
    overflow-x: scroll;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 2;
  }
}
.product-lineup .hikaku-wrapper .tbl-wrap table {
  border-collapse: separate;
  border-spacing: 2px;
}
.product-lineup .hikaku-wrapper .tbl-wrap .tbl-content {
  width: 100%;
  min-width: 900px;
  font-size: 85%;
}
@media screen and (max-width: 1024px) {
  .product-lineup .hikaku-wrapper .tbl-wrap .tbl-content {
    width: auto;
    min-width: 1024px;
    position: relative;
  }
}
.product-lineup .hikaku-wrapper .tbl-wrap .tbl-content .spec-lineup {
  background-color: #ddd;
}
.product-lineup .hikaku-wrapper .tbl-wrap .tbl-content > tbody a {
  display: block;
  width: 100%;
  height: 100%;
  color: #775a34;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.product-lineup .hikaku-wrapper .tbl-wrap .tbl-content small {
  display: block;
  font-size: 80%;
  font-weight: normal;
}
.product-lineup .hikaku-wrapper .tbl-wrap .tbl-content th,
.product-lineup .hikaku-wrapper .tbl-wrap .tbl-content td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem 0.5rem;
}
@media screen and (max-width: 600px) {
  .product-lineup .hikaku-wrapper .tbl-wrap .tbl-content th,
  .product-lineup .hikaku-wrapper .tbl-wrap .tbl-content td {
    font-size: 1.15em;
  }
}
.product-lineup .hikaku-wrapper .tbl-wrap .tbl-content .txt-lft {
  text-align: left;
}
.product-lineup .hikaku-wrapper .tbl-wrap .tbl-content .neutral {
  background-color: #ddd;
  font-size: 100%;
}
@media screen and (max-width: 1024px) {
  .product-lineup .hikaku-wrapper .tbl-wrap .tbl-content > thead {
    position: sticky;
    top: 0;
  }
}
.product-lineup .hikaku-wrapper .tbl-wrap .tbl-content > thead > tr > th {
  text-align: center;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8), -1px -1px 0 rgba(255, 255, 255, 0.8);
  font-size: 120%;
}
.product-lineup .hikaku-wrapper .tbl-wrap .tbl-content > tbody > tr > th {
  width: 15%;
  text-align: center;
}
.product-lineup .hikaku-wrapper .tbl-wrap .tbl-content > tbody > tr > td {
  width: 17%;
  text-align: center;
}
/*# sourceMappingURL=lineup.css.map */