@charset "utf-8";

.mv-page-img {
  background: url(../price/img/mv-price_pc.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .mv-page-img {
    background: url(../price/img/mv-price_sp.jpg) no-repeat;
    background-size: cover;
  }
}

/* price
----------------------------------------------------------------------------------------------------*/

.price-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1025px;
  margin: 0 auto 100px;
}

.price-left {
  width: calc(730 / 1025 * 100%);
}

.price-right {
  width: calc(250 / 1025 * 100%);
}

.price-contents-copy {
  font-size: 4.2rem;
  margin-bottom: 38px;
  letter-spacing: -2px;
}

.price-contents-copy span {
  color: #ff0000;
}

@media screen and (max-width: 1215px) {
  .price-contents {
    max-width: 768px;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .price-left,
  .price-right {
    width: 100%;
  }

  .price-left {
    margin-bottom: 40px;
  }

  .price-right {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .price-contents {
    max-width: 400px;
    padding: 0 9px;
  }

  .price-contents-copy {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/* Section - Nav
----------------------------------------------------------------------------------------------------*/
.main {
  width: min(100%, 120rem);
  margin: 0 auto;
  font-feature-settings: "palt"1;
  -webkit-text-size-adjust: 100%;
}
.sec-nav {
  position: sticky;
  top: 180px;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16.5rem;
}
.sec-nav__item {
  width: calc(100% / 6 - 1rem);
}
.price-item__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 1rem;
  border: 1px solid #000;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.8rem;
  transition: background-color 0.2s, color 0.2s;
}
.price-item__button:hover {
  background-color: #F5F5F5;
  transform: translateY(2px);
}
.price-item__button .button-text {
  display: inline-block;
}
.price-item__button .icon.arrow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url('../price/img/icon-arrow.svg') no-repeat center center;
  background-size: contain;
  transition: transform 0.2s;
}
/* hover時に矢印を少し動かす場合 */
.price-item__button:hover .icon.arrow {
  transform: translateY(2px);
}
@media screen and (max-width: 1024px) {
  .sec-nav {
    flex-wrap: wrap;
    margin-bottom: 10rem;
  }
  .sec-nav__item {
    width: calc(100% / 3 - 1rem);
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-nav {
    top: 100px;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  .sec-nav__item {
    width: calc(100% / 2 - 0.5rem);
    margin-bottom: 1rem;
  }
  .price-item__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0.5rem;
    font-size: 1.5rem;
  }
  .price-item__button .icon.arrow {
    width: 1.5rem;
    height: 1.5rem;
  }
}
/* Anker Link */
.jump_point {
  display: block;
  padding-top: 25rem;
  margin-top: -17rem;
}
@media screen and (max-width: 767px) {
  .jump_point {
    display: block;
    padding-top: 30rem;
    margin-top: -20rem;
  }
  #works-title.jump_point {
    padding-top: 9rem;
    margin-top: -8rem;
  }
}
/* 共通
----------------------------------------------------------------------------------------------------*/
.category-title {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  background-color: #f5f5f5;
  border: solid 1px #000;
  border-radius: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.button-yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 60px;
  padding: 0 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  /* 左右余白 */
  border: 1px solid #000;
  border-radius: 10px;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.5s ease;
  box-sizing: border-box;
  font-feature-settings: "palt";
  letter-spacing: 0;
  background-color: #feff88;
}

.button-yellow span {
  margin-left: 5px;
  font-size: 1.8rem;
}


.button-yellow:hover {
  border: 1px solid #93af2f;
  color: #FFF;
  background-color: #93af2f;
}

.price-table {
  border: solid 1px #cccccc;
  width: 100%;
  height: 130px;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
}

.price-table thred th {
  background-color: #f5f5f5;
}

.price-table th {
  background-color: #f5f5f5;
  border: solid 1px #cccccc;
  text-align: left;
  padding-left: 13px;
}

.price-table td {
  border: solid 1px #cccccc;
}

.price-table th span {
  font-size: 2.8rem;
}

@media screen and (max-width: 768px) {
  .category-title {
    font-size: 2.0rem;
  }
}

ul.attention {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  padding: 0;
  list-style-type: none;
}

.attention li {
  position: relative;
  padding-left: 17px;
}

.attention li b {
  font-weight: 700;
}

.attention .red {
  color: #ff0000;
}

.attention li::before {
  position: absolute;
  left: 0;
  content: "※";
}

ul.logo-ul li {
  position: relative;
  padding-left: 12px;
}

ul.logo-ul li::before {
  position: absolute;
  left: -5px;
  content: "※";
}

@media screen and (max-width: 768px) {
  ul.attention {
    font-size: 1.2rem;
  }
}

.price-contact-area {
  display: flex;
  justify-content: center;
  margin-bottom: 180px;
}

@media screen and (max-width: 1224px) {
  .works-button-area {
    display: flex;
    justify-content: center;
    margin-bottom: 110px;

  }
}

/* ロゴ・マーク
----------------------------------------------------------------------------------------------------*/
#price-logo {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  #price-logo {
    margin-bottom: 110px;
  }
}

.logo-contents {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  font-size: 2.0rem;
  margin-bottom: 90px;
}

.logo-left {
  width: 50%;
}

.logo-right {
  width: 50%;
}

.logo-left-text {
  margin-bottom: 40px;
}

ul.logo-ul {
  margin-bottom: 25px;
  padding-left: 0;
  list-style-type: none;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: palt;
}

ul.logo-ul li {
  position: relative;
  padding-left: 12px;
}

ul.logo-ul li::before {
  position: absolute;
  left: -5px;
  content: "・";
}

#price-logo .price-table th {
  width: 27%;
}

#price-logo .price-table td.td-price {
  width: 26%;
  text-align: right;
  padding-right: 28px;
}

#price-logo .price-table td.td-content {
  padding-left: 13px;
  width: 47%;
}

@media screen and (max-width: 1224px) {

  .logo-contents {
    flex-direction: column;
  }

  .logo-left,
  .logo-right {
    width: 100%;
  }

  #price-logo .price-table {
    margin: 0 auto;
    max-width: 580px;
    height: 103px;
  }

}

@media screen and (max-width: 768px) {
  ul.logo-ul li {
    margin-left: 10px;
    padding-left: 10px;
  }

  .logo-contents {
    margin-bottom: 40px;
    gap: 40px;
  }

  .logo-left-text {
    font-size: 1.8rem;
  }

  .logo-ul {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  #price-logo .price-table th {
    padding-left: 10px;
    font-size: 1.6rem;
  }

  #price-logo .price-table th span {
    font-size: 2.4rem;
  }

  #price-logo .price-table td.td-price {
    width: 93px;
    padding-right: 12px;
    font-size: 1.6rem;
  }

  #price-logo .price-table td.td-content {
    padding-left: 10px;
    width: 158px;
    font-size: 1.6rem;
  }
}

/* ホームページ
----------------------------------------------------------------------------------------------------*/

#price-web {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.web-contents {
  margin-bottom: 100px;
}

.web-text-contents {
  margin-bottom: 100px;
}

.web-text {
  font-size: 2.0rem;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {

  .web-contents {
    margin-bottom: 16px;
  }

  .web-text-contents {
    margin-bottom: 0;
  }

  .web-text {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }
}

.web-table-area {
  margin-bottom: 25px;
}

.web-table-scroll {
  margin-bottom: 24px;
}

.table-wrap {
  position: relative;
}

.web-table-area table {
  width: 100%;
  border: solid 1px #cccccc;
}

.table-ribbon {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  top: -16px;
  right: 15px;
  margin: 0;
  padding: 10px 0;
  z-index: 2;
  width: 78px;
  height: 70px;
  line-height: 1.2;
  text-align: center;
  color: white;
  font-size: 17px;
  background: #f15a24;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px 0 0 0;
}

.table-ribbon:before {
  position: absolute;
  content: '';
  top: 0;
  right: -15px;
  border: none;
  border-bottom: solid 16px #ae4624;
  border-right: solid 15px transparent;
}

.table-ribbon:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  border-left: 39px solid #f15a24;
  border-right: 39px solid #f15a24;
  border-bottom: 20px solid transparent;
}

.web-table-area table tr {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: palt;
  font-size: 2.0rem;
  height: 90px;
  border-bottom: solid 1px #cccccc;
}

.web-table-area table tr::last-of-type {
  border-bottom: none;
}

.web-table-area table tr.monthly {
  border: 2px solid #ff0000;
}


.web-table-area table th {
  background-color: #f5f5f5;
  color: #646464;
  border-bottom: solid 1px #cccccc;
  border-right: solid 1px #cccccc;
  text-align: center;
  width: 26%;
}

.web-table-area table th.template-plan {
  background-color: #94e8e8;
  color: #000;
  font-size: 2.8rem;
}

.web-table-area table th.design-plan {
  background-color: #ffd922;
  color: #000;
  font-size: 2.8rem;
}

.web-table-area table td {
  border-bottom: solid 1px #cccccc;
  border-right: solid 1px #cccccc;
  text-align: center;
  line-height: 1.2;
  width: 37%;
}

.web-table-area table td::last-of-type {
  border-right: none;
}

.web-table-area table td.template-plan-monthly {
  background-color: #deefef;
  color: #000;
  font-weight: 700;
  font-size: 3.8rem;
}

.web-table-area table td.design-plan-monthly {
  background-color: #fffbe5;
  color: #000;
  font-weight: 700;
  font-size: 3.8rem;
}

.web-table-area table td.tow-year span,
.web-table-area table td.three-year span {
  font-size: 1.4rem;
}


.web-table-area table td.template-plan-monthly .yen,
.web-table-area table td.design-plan-monthly .yen {
  font-weight: 500;
  font-size: 1.6rem;
}

.web-table-area table .attention {
  font-size: 1.4rem;
}

.web-table-area table td.template-plan-product span {
  line-height: 2;
}

.web-table-area table td.template-plan-product span {
  font-size: 1.6rem;
}

.web-table-area table td.design-plan-product .zero {
  font-size: 2.8rem;
  color: #ff0000;
}

.web-table-area table td .attention-text {
  color: #ff0000;
  font-size: 1.6rem;
}

.web-table-area table td.free {
  color: #ff0000;
}

@media screen and (max-width: 1210px) {
  .web-table-scroll {
    width: 100%;
    overflow-x: auto;
    padding: 28px 36px;
  }

  .table-wrap {
    width: 1000px;
    display: block;
  }

  .web-table-area table {
    width: 1000px;
  }


  .table-ribbon {
    top: -11px;
    right: 13px;
    padding: 10px 0;
    width: 55px;
    height: 47px;
    font-size: 1.12rem;
  }

  .table-ribbon:before {
    top: 0;
    right: -12px;
    border-bottom: solid 12px #ae4624;
    border-right: solid 13px transparent;
  }

  .table-ribbon:after {
    border-left: 27px solid #f15a24;
    border-right: 28px solid #f15a24;
    border-bottom: 14px solid transparent;
  }
}

@media screen and (max-width: 768px) {

  .web-table-area {
    width: 100%;
  }

  .web-table-area table tr {
    font-family: "Noto Sans JP", sans-serif;
    font-feature-settings: palt;
    font-size: 2.0rem;
    height: 90px;
    border-bottom: solid 1px #cccccc;
  }

  .table-wrap {
    width: 840px;
  }

  .web-table-area table {
    width: 840px;
  }

  .web-table-area table tr {
    height: 62px;
    font-size: 1.4rem;
  }

  .web-table-area table th.template-plan,
  .web-table-area table th.design-plan {
    font-size: 1.96rem;
  }

  .web-table-area table td.template-plan-monthly,
  .web-table-area table td.design-plan-monthly {
    font-size: 2.6rem;
  }

  .web-table-area table td.template-plan-monthly .yen,
  .web-table-area table td.design-plan-monthly .yen {
    font-size: 1.12rem;
  }

  .web-table-area table .attention {
    font-size: 0.98rem;
  }

}


/* SPのみプライス表示 */

.hp__priceArea {
	display: none;
}
@media (max-width: 767px) {
	.works-button-area {
		margin: 0 0 30px 0;
	}
	.hp__priceArea {
		display: block;
		font-size: 1.4rem;
	}
	.hp__priceArea .price-table th {
		text-align: center;
		padding: 6px;
	}
	.hp__priceArea .price-table th:nth-child(1) {
		width: 22%;
		text-align: center;
	}
	.hp__priceArea .price-table th:nth-child(2) {
		background: #94e8e8;
	}
	.hp__priceArea .price-table th:nth-child(3) {
		background: #ffd922;
	}
	.hp__priceArea .price-table td {
		padding: 6px;
	}
	.hp__priceArea .price-table .td__price span {
		font-size: 1.8rem;
		font-weight: 600;
	}
	.hp__priceArea .price-table .td__price:nth-of-type(1) {
		background: #deefef;
		text-align: right;
	}
	.hp__priceArea .price-table .td__price:nth-of-type(2) {
		background: #fffbe5;
		text-align: right;
	}
	.hp__priceArea .price-table .ini__cost {
		text-align: right;
		line-height: 1.25;
	}
	.hp__priceArea .price-table .hp__red {
		color: #ff0000;
	}
	.hp__priceArea .price-table .cost__zero {
		font-size: 1.8rem;
	}
	.hp__priceArea .price-table .cost__cap {
		font-size: 0.85rem;
	}
}
/* 表の調整 */
@media (max-width: 767px) {
	.table-wrap {
		width: 540px;
	}
	.web-table-scroll {
		padding: 10px 0;
		height: 50vh;
	}
	.web-table-area table {
		width: 540px;
	}
	.web-table-area table th {
		width: 14%;
		padding: 0 10px;
		font-size: 1.2rem;
	}
	.web-table-area table th.template-plan,
	.web-table-area table th.design-plan {
		font-size: 1.65rem;
	}
	.web-table-area table th.design-plan {
		text-align: left;
	}
	.web-table-area table td .attention-text {
		font-size: 1.2rem;
	}
	.web-table-area table td.template-plan-product span {
		font-size: 1.2rem;
		line-height: normal;
	}
}





/* 印刷物
----------------------------------------------------------------------------------------------------*/
#price-print {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.print-contents {
  font-size: 2.0rem;
}

.print-text-area {
  margin-bottom: 50px;
}

.print-text {
  font-size: 2.0rem;
  margin-bottom: 40px;
}

.print-price-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.print-price-area h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: palt;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

#price-print .price-table {
  font-size: 2.0rem;
  margin-bottom: 26px;
  height: 150px;
  table-layout: fixed
}

#price-print .price-table table {
  height: 155px;
}

#price-print .price-table th:nth-child(1) {
  width: 19%;
}

#price-print .price-table th:nth-child(2) {
  width: 33%;
}

#price-print .price-table th:nth-child(3) {
  width: 48%;
}

#price-print .price-table thead th:not(:first-child) {
  background-color: #FFF;
}

#price-print .price-table th {
  height: 50px;
  text-align: center;
  padding: 0;
}

#price-print .price-table td.td-price {

  text-align: right;
  padding-right: 19px;
}

#price-print .price-table td.td-content {
  padding-left: 0;
  text-align: center;
  line-height: 1;
}

#price-print .price-table td.td-content span {
  font-size: 1.2rem;
}

.price-attention-area {
  margin-bottom: 65px;
}

@media screen and (max-width: 1224px) {

  .print-price-area {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {

  .print-text {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .print-price-area {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }

  .print-price-area h4 {
    font-size: 1.8rem;
  }

  #price-print .price-table {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .price-attention-area {
    margin-bottom: 37px;
  }

}

/* のぼり・看板、ノベルティ、動画コンテンツ
----------------------------------------------------------------------------------------------------*/
.category-group {
  max-width: 1200px;
  margin: 0 auto;
}

.category-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1224px) {
  .category-flex {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
}

.category-group article {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
}
#price-sign,
#price-novelty,
#price-movie {
  /* height: 453px; */
}
.sign-contents,
.novelty-contents,
.movie-contents {
  font-size: 2.0rem;
}
@media screen and (max-width: 1224px) {
  .category-group article {
    justify-content: flex-start;
  }
  #price-sign,
  #price-novelty,
  #price-movie {
    height: auto;
  }
  .sign-contents,
  .novelty-contents,
  .movie-contents {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .sign-contents,
  .novelty-contents,
  .movie-contents {
    font-size: 1.8rem;
  }
}


@media (max-width: 767px) {
  .main-contents {
    margin: 5rem auto 0;
  }
}












