.content-inner{
  max-width: 1280px;
  margin: 0 auto;
  @media (max-width: 767px) {
    margin: 0 5%;
  }
}

.note{
	font-size: 14px;
	margin-top: 1em;
    padding-left: 1em;
    text-indent: -1em;
}
.note-list {
    font-size: 14px;
    padding-left: 1em;
    text-indent: -.7em;
}
.note-list2 {
	margin: 24px 0 0;
	padding-left: 1.4em;
}

.note-list2 li {
	margin-top: 8px;
	font-size: 16px;
	line-height: 1.8;
}

.note-list2 li:first-child {
	margin-top: 0;
}

.note-list2__color {
	display: inline-block;
	width: 1em;
	height: 1em;
	margin: 0 0.2em;
	background: #A0D3D3;
	vertical-align: -0.1em;
}

@media (max-width: 767px) {
	.note-list2 li {
		font-size: 13px;
		line-height: 1.7;
	}
}

/* =========================
   TOPおすすめの価格
========================= */
.osusume-area {
  padding-top: 50px;
  padding-bottom: 50px;
	position: relative;
	margin: 0 auto;
  background: #eaf8f8;
  h3{
    text-align: center;
    font-size: 24px;
    span{
    font-size: 30px;
    &.red{
      color: red;
    }
    }
  }
  @media (max-width: 767px) {
    width: 100vw;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.consistent-img{
  img{
    display: block;
    margin: 0 auto;
  }
  margin-top: 20px;
  margin-bottom: 20px;
}

.osusume {
	position: relative;
	max-width: 920px;
	margin: 0 auto;
}

.osusume__bg {
	width: 720px;
	background: #fff;
	padding: 45px 0;
}

.osusume__bg .content-inner {
	width: auto;
	max-width: none;
	padding: 0;
}

.osusume__box {
	padding: 0 60px;
	min-height: 330px;
	display: flex;
	align-items: center;
}

.osusume__text {
	width: 100％;
}

.osusume__image {
	position: absolute;
	right: 0;
  top: 50%;
  transform: translateY(-50%);
	width: 430px;
	z-index: 2;
}

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

.osusume__catch {
	margin: 0 0 12px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	color: #009ca6;
}

.osusume__lead {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	color: #009ca6;
}

.osusume__title {
	margin: 0 0 14px;
	font-size: 44px;
	font-weight: 700;
	line-height: 1.25;
	color: #000;
}

.osusume__size {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 700;
}

.osusume__size span {
	background: #ffea00;
	padding: 2px 10px;
  font-size: 14px;
}

.osusume__price {
	margin: 0;
	text-align: right;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	color: #000;
}

.osusume__price span {
	color: #f00;
	font-size: 64px;
  font-family: "Montserrat", sans-serif;
	font-weight: 700;
}

/* SP */
@media (max-width: 767px) {
	.osusume {
		padding: 0 0 34px;
    display: flex;
    flex-direction: column;
	}

	.osusume__image {
    position: inherit;
    top: inherit;
    right: inherit;
    width: 63%;
    max-width: 300px;
    margin: 0 auto -52px;
    transform: inherit;
    transform: translateX(-10px);
    order: -1;
    top: inherit;
	}

	.osusume__bg {
		width: 100%;
		padding: 60px 0 30px;
	}

	.osusume__box {
		min-height: auto;
		padding: 0 10px;
	}
  .osusume__title {
    font-size: 34px;
  }
	.osusume__text {
		width: 100%;
	}
}

/* =========================
   TOP強み
========================= */

.strength-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
  &.small{
    gap: 34px;
    max-width: 1159px;
    margin: 0 auto 15px;
      @media (max-width: 767px) {
        gap: 20px;
      }
    .strength-item__image {
      aspect-ratio: 4 / 2.1;
      margin-bottom: 0;
      img {
        width: 80%;
        height: auto;
        margin: 0 auto;
      }
    }
    .strength-item__text {
      font-size: clamp(18px, 1.5vw, 28px);
    }
  }
}

.strength-item {
	background: #FFFEF0;
	border: 3px solid var(--main-color);
	padding: 28px 20px 26px;
	text-align: center;
}

.strength-item__image {
	aspect-ratio: 4 / 2.5;
	margin-bottom: 18px;
	overflow: hidden;
}

.strength-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.strength-item__text {
	margin: 0;
	font-size: clamp(18px, 1.8vw, 28px);
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: .03em;
	color: #000;
}

.strength-item__text span {
	color: var(--main-color);
  font-weight: 700;
}

/* SP */
@media (max-width: 767px) {

	.strength-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.strength-item {
		padding: 16px 12px 18px;
	}

	.strength-item__image {
		margin-bottom: 12px;
	}

	.strength-item__text {
		font-size: 20px;
		line-height: 1.4;
	}
}

/* =========================
   TOP短納期
========================= */
.quick-delivery {
	text-align: center;
}

.quick-delivery__text {
	position: relative;
	display: inline-block;
	padding: 0 140px;
}

.quick-delivery__text::before {
	content: "";
	position: absolute;
  left: 55px;
  top: 50%;
  width: 4px;
	height: 120px;
	background: #009ca6;
	transform: translateY(-50%) rotate(-33deg);
}

.quick-delivery__text::after {
	content: "";
	position: absolute;
	right: 55px;
	top: 50%;
	width: 4px;
	height: 120px;
	background: #009ca6;
	transform: translateY(-50%) rotate(33deg);
}

.quick-delivery__main {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #000;
}

.quick-delivery__main span {
  color: #00a6ad;
}
.quick-delivery__main span.namber {
  font-size: 56px;
}

.quick-delivery__sub {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.4;
}

/* SP */
@media screen and (max-width: 767px) {
  .quick-delivery__text {
    padding: 0;
  }
  .quick-delivery__text::before {
    left: -35px;
    width: 3px;
    height: 100px;
    background: #009ca6;
    transform: translateY(-50%) rotate(-25deg);
  }
  .quick-delivery__text::after {
    right: -35px;
    width: 3px;
    height: 100px;
    background: #009ca6;
    transform: translateY(-50%) rotate(25deg);
  }

  .quick-delivery__main {
    font-size: 30px;
  }

  .quick-delivery__sub {
    font-size: 14px;
  }
}

/* =========================
   配送スケジュール（日付のみ
========================= */
.shipping-banner-wrap {
  width: 100%;
  position: relative;
  background: var(--yellow-color);
  padding: 16px;
  box-sizing: border-box;
  margin-top: 1em;
  margin-bottom: 8px;
  .ssc-out-month,.ssc-out-day{
      font-size: 24px;
  }
}
.shipping-banner-note {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  b{
      font-size: 28px;
  }
}
.shipping-banner-boxes {
  display: flex;
  gap: 12px;
}
.shipping-box {
  flex: 1;
  background: #fff;
  padding: 5px;
  text-align: center;
  font-weight: 700;
  box-sizing: border-box;
}
.shipping-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
}
.shipping-label {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}
.shipping-label-express {
  background: #ff2a2a;
  color: #fff;
  border: 2px solid #fff;
}
.shipping-label-normal {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}
.shipping-date {
  display: block;
  font-size: 24px;
  margin: 6px 0;
  white-space: nowrap;
}
.shipping-text {
  font-size: 14px;
  padding-top: 9px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .shipping-banner-boxes {
    flex-direction: column;
  }
  .shipping-date {
    font-size: 16px;
  }
  .shipping-banner-note {
    font-size: 20px;
    b{
        font-size: 28px;
    }
  }
  .shipping-line {
    gap: 8px;
    letter-spacing: 0.05em;
  }
  .shipping-label {
    padding: 2px 5px;
    font-size: 12px;
  }
}

.shipping-sub-banner{
  width: 72%;
  position: relative;
  z-index: 2;
  @media (max-width: 768px) {
      width: 80%;
  }
}

/* =========================
   スライドギャラリー
========================= */
.flow-gallery {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -100px;
}

.flow-gallery__track {

}

.flow-gallery__list {
  display: flex;
  gap: 0;
  width: max-content;
  animation: flowGallery 40s linear infinite;
}

.flow-gallery__list img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

@keyframes flowGallery {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

@media screen and (max-width: 767px) {
  .flow-gallery__list {
    animation-duration: 35s;
  }

  .flow-gallery__list img {
    width: 240px;
    height: 160px;
  }

  @keyframes flowGallery {
    to {
      transform: translateX(calc(-50% - 8px));
    }
  }
}


/* =========================
   人気サイズの価格一覧
========================= */
.plate-price {
  position: relative;
  margin-inline: auto;
  padding: 46px 46px 48px;
  border: 3px solid #00a6ad;
  background: #fffdf0;
}

.plate-price__icon {
position: absolute;
    top: -41px;
    left: -43px;
    width: 130px;
    height: auto;
}

.plate-price__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.plate-price__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 18px;
  line-height: 1.4;
}

.plate-price__table th,
.plate-price__table td {
  border: 1px solid #888;
  padding: 15px 20px;
  text-align: left;
}

.plate-price__table th {
  width: 68%;
  background: #dff5f6;
  font-weight: 700;
}

.plate-price__table td {
  width: 32%;
  background: #fff;
  font-weight: 700;
}

.plate-price__note {
  margin: 5px 0 0;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.8;
}

.plate-price__title {
  margin: 4px 0 22px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.plate-price__spec + .plate-price__spec {
  margin-top: 22px;
}

.plate-price__spec h4 {
  position: relative;
  margin: 0 0 8px;
  padding-left: 24px;
  color: #00a6ad;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.plate-price__spec h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00a6ad;
  transform: translateY(-50%);
}

.plate-price__spec p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.plate-price__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 36px;
  height: 72px;
  border-radius: 999px;
  background: #00a6ad;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: .3s;
}

.plate-price__btn::after {
  content: "";
  position: absolute;
  right: 28px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: .3s;
}

.plate-price__btn:hover {
  opacity: .85;
}

.plate-price__btn:hover::after {
  transform: translateX(4px) rotate(45deg);
}

/* SP */
@media screen and (max-width: 767px) {
  .plate-price {
    padding: 28px 16px 28px;
  }

  .plate-price__icon {
    top: -55px;
    left: -29px;
    width: 96px;
  }

  .plate-price__inner {
    display: block;
  }

  .plate-price__table {
    font-size: 15px;
  }

  .plate-price__table th,
  .plate-price__table td {
    padding: 10px 12px;
  }

  .plate-price__note {
    font-size: 14px;
  }

  .plate-price__right {
    margin-top: 32px;
  }

  .plate-price__title {
    font-size: 22px;
  }

  .plate-price__spec h4 {
    font-size: 17px;
  }

  .plate-price__spec p {
    font-size: 15px;
  }

  .plate-price__btn {
    height: 60px;
    font-size: 17px;
  }
}
/* サイズ比較 */
.size-comparison__title {
	margin: 50px 0 36px;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	color: #000;
}

.size-comparison__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.size-comparison__item {
	overflow: hidden;
}

.size-comparison__item img {
	display: block;
	width: 100%;
	height: auto;
}

.size-comparison__item figcaption {
	margin-top: 14px;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

@media (max-width: 767px) {
	.size-comparison__title {
		margin-bottom: 24px;
		font-size: 24px;
	}

	.size-comparison__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
  	.size-comparison__item figcaption {
		margin-top: 10px;
		font-size: 16px;
	}
}

/* =========================
   単バナー
========================= */
.banner-single{
  max-width: 660px;
  &.bnr-maisuu{
  margin: 60px auto;
  }
}
.banner-single a,
.banner-single img {
  display: block;
}
.banner-single img {
  width: 100%;
  height: auto;
}
.banner-single a {
  transition: opacity .3s;
}
.banner-single a:hover {
  opacity: .8;
}

/* =========================
   2カラムバナー
========================= */
.full-width-contact{
  padding: 60px 0 70px;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2) !important;
  margin-right: calc((100% - 100vw) / 2) !important;
  background-color: #FFFCD1;
  max-width: 100vw !important;
}
.banner-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  max-width: 1160px;
  margin: 0 auto;
}

.banner-two a,
.banner-two img {
  display: block;
}

.banner-two img {
  width: 100%;
  height: auto;
}

.banner-two a {
  transition: opacity .3s;
}

.banner-two a:hover {
  opacity: .8;
}

@media (max-width: 767px) {
  .banner-two {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =========================
   プレート看板はさまざまな場所・業種で活躍しています
========================= */
.usage-scene__title {
	margin: 0 0 20px;
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
  @media (max-width: 767px) {
	font-size: 24px;
  }
}

.usage-scene__lead {
	margin: 0 auto 60px;
	text-align: center;
	font-size: 18px;
	line-height: 2;
  @media (max-width: 767px) {
	text-align: left;
  }
}

.usage-scene {
	margin-left: calc((100% - 100vw) / 2) !important;
	margin-right: calc((100% - 100vw) / 2) !important;
  width: 100vw;
      max-width: 100vw !important;
	padding: 80px 0;

	background: repeating-linear-gradient(
		-45deg,
		#EBF7F7 0px,
		#EBF7F7 3px,
		#ffffff 3px,
		#ffffff 9px
	);
}

.usage-scene__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 56px 64px;
}

.usage-scene__item img {
	width: 100%;
	aspect-ratio: 424 / 236;
	object-fit: cover;
	display: block;
}

.usage-scene__item h3 {
	margin: 18px 0 10px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4;
	color: #000;
}

.usage-scene__item p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	color: #000;
}

/* SP */
@media (max-width: 767px) {
	.usage-scene {
		padding: 60px 0;
	}

	.usage-scene__list {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.usage-scene__item h3 {
		font-size: 22px;
	}

	.usage-scene__item p {
		font-size: 15px;
		line-height: 1.8;
	}
}

/* =========================
   ご注文の流れ  
========================= */
.order-flow {
  padding: 60px 0 70px;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2) !important;
  margin-right: calc((100% - 100vw) / 2) !important;
  background-color: #EBF7F7;
  max-width: 100vw !important;
}

.order-flow__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
  margin-top: 50px;
}

.order-flow__item {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 370px;
	padding: 44px 28px 28px;
	background: #fff;
	border: 3px solid #009ca6;
}

.order-flow__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	border-left: 18px solid #009ca6;
	z-index: 2;
}

.order-flow__step {
	position: absolute;
	top: -20px;
	left: -18px;
	display: flex;
	align-items: baseline;
	justify-content: center;
	min-width: 96px;
	padding: 8px 16px;
	background: #009ca6;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.order-flow__step span {
	margin-left: 2px;
	font-size: 26px;
}

.order-flow__title {
	margin: 0 0 16px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}

.order-flow__text {
	margin: 0;
	font-size: 15px;
	line-height: 2;
}

.order-flow__item img {
	width: 150px;
	height: auto;
	margin: auto auto 0;
	display: block;
}

/* SP */
@media (max-width: 767px) {
	.order-flow {
		padding: 50px 0;
	}

	.order-flow__list {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.order-flow__item {
		min-height: auto;
		padding: 42px 24px 28px;
	}

	.order-flow__item:not(:last-child)::after {
		top: auto;
		right: 50%;
		bottom: -29px;
		transform: translateX(50%) rotate(90deg);
	}

	.order-flow__item img {
		width: 140px;
		margin-top: 24px;
	}
}

/* =========================
   制作実績
========================= */
.type-post .c-eyecatch{
  max-width: 600px;
  margin: 0 auto;
}
.p-related-posts{
  margin-top: 100px;
}
.type-post .c-entry__header{
  .c-meta__item--author,
  .c-meta__item--modified,
  .c-meta__item--published{
    display: none;
  }
}

/* =========================
   お問合せ
========================= */
.contact{
  .inner{
    max-width: 800px;
  }
}
.contact-info{
  text-align: center;
  border-bottom: 1px #ccc solid;
  margin-bottom: 50px;
  padding-bottom: 30px;
  p{
    margin-bottom: 1em;
    &.tel{
      font-size: 18px;
      font-weight: bold;
    }
  }
}
.wp-block-snow-monkey-forms-item{
  display: flex;
  margin-bottom: 30px;
  @media screen and (max-width: 768px) {
    display: block;
  }
}
.smf-item__col--label{
  width: 250px;
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}
.smf-item__col--controls{
  width: calc(100% - 200px);
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}
.smf-item--divider{
  .smf-item__col--controls{
    width: 100%;
    text-align: center;
  }
}
input[type=text],input[type=email]{
  width: 60%;
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}
.smf-action .smf-button-control__control {
  position: relative;
  background-color: var(--main-color);
  background-image: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  width: 280px;
  padding: 15px 37px;
  text-align: left;
  text-decoration: none;
  border: 0;
  outline: 0;
  transition: 0.3s ease; 
  margin: 50px auto;
  border-radius: 10px;

  &:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 37px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;

    @media screen and (max-width: 768px) {
      right: 20px;
    }
  }

  &:hover {
    opacity: 0.7;
  }

  &[data-action="back"]{
    background: #B5B5B5;
    text-align: right;
    @media screen and (max-width: 768px) {
      margin-bottom: 0;
    }
    &:after{
      transform: rotate(225deg);
      left: 37px;
      right: inherit;
      @media screen and (max-width: 768px) {
        left: 20px;
      }
    }
  }
}
.smf-item__label{
  position: relative;
  margin-top: 12px;
  @media screen and (max-width: 768px) {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
[data-screen="confirm"]{
  .smf-item__label{
    margin-top: 0;
  }
}

.required .smf-item__label::after {
  content: "必須";
  background-color: #f0ad4e;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  min-width: 10px;
  padding: 3px 7px;
  margin: 0px 5px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  @media screen and (max-width: 768px) {
    right: 0;
  }
}
.form-privacy{
  background-color: #f7f7f7;
  border: 1px #eee solid;
  padding: 25px;
  height: 200px;
  border-radius: 4px;
  overflow-y: scroll;
  margin-bottom: 30px;
  font-size: 14px;
  p{
    margin-bottom: 1em;
  }
}

.contact-main{
  display: block;
}
.contact-confirm{
  display: none;
}
.contact-complete{
  display: none;
}
[data-screen="confirm"] {
  .contact-main{
    display: none;
  }
  .contact-confirm{
    display: block;
  }
  .contact-complete,.form-privacy{
    display: none;
  }
  [data-name="checkboxes-privacy"]{
    display: none;
  }
  .smf-action{
    display: flex;
    justify-content: center;
    @media screen and (max-width: 768px) {
      display: block;
    }
  }
}
[data-screen="complete"]{
  .contact-main{
    display: none;
  }
  .contact-confirm{
    display: none;
  }
  .contact-complete{
    display: block;
  }
}
[data-name="privacy"]{
  text-align: center;
  margin-top: 20px;
}
[data-screen="confirm"]{
  [data-name="privacy"]{
    display: none;
  }
  .privacy-text{
    display: none;
  }
  .wp-block-snow-monkey-forms-item {
    border-bottom: 1px solid #eee;
  }
}

body.is-form-step{
  .is-form-main{
    display: none;
  }
  .contact-main,.contact-confirm,.contact-complete{
    margin-top: 0;
  }
}
body.is-confirm{
  .contact-main{
    display: none;
  }
  .contact-confirm{
    display: block;
  }
  .contact-complete{
    display: none;
  }
}
body.is-complete{
  .contact-main{
    display: none;
  }
  .contact-confirm{
    display: none;
  }
  .contact-complete{
    display: block;
  }
}


.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number{
    background-color: var(--main-color);
}
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
    color: var(--main-color);
}
.snow-monkey-form h3{
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em;
}
#autozip {
   display: none !important;
}
.btn-form {
    position: relative;
    background-color: var(--main-color);
    background-image: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    width: 280px;
    padding: 15px 37px;
    text-align: left;
    text-decoration: none;
    border: 0;
    outline: 0;
    transition: 0.3s ease;
    margin: 50px auto;
    border-radius: 10px;
      &:after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 37px;
      width: 9px;
      height: 9px;
      margin: auto;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(45deg);
      box-sizing: border-box;
  }
}
.smf-item__label__text{
  font-weight: bold;
}
.check-box .smf-item__col--controls{
  padding-top: 12px;
}
.check-box img{
  margin-top: 10px;
}
.smf-item__controls .supplement{
  margin-top: 10px;
}

.material02[hidden],
.size02[hidden] {
	display: none !important;
}

.form_yoko{
  .smf-item__controls{
    display: flex;
    align-items: center;
    .smf-placeholder{
      margin-left: inherit !important;
      margin-right: inherit !important;
    }
    input[type=text]{
      width: 90%;
    }
    .form_yoko_txt{
      margin-top: 0;
      margin-left: inherit !important;
      margin-right: inherit !important;
    }
  }
}
.form_subtxt{
  font-size: 14px;
  color: var(--wp--preset--color--sm-accent);
  margin-top: 0;
}
.form_subtxt02{
  font-size: 14px;
  color: var(--wp--preset--color--sm-accent);
  margin-top: 5px;
}
[data-name="date-nouki"]{
  margin-top: 1em;
}
.mt10{
  margin-top: 10px;
}
.smf-item__controls{
  .card{
    max-width: 300px;
  }
}

/* =========================
   価格表 
========================= */

/* 3種類swiper */
.material-spec {
	overflow: hidden;
}

.material-spec__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
}

.material-spec__item {
	background: #EBF7F7;
	padding: 24px;
}

.material-spec__item img {
	width: 100%;
	aspect-ratio: 252 / 166;
	object-fit: cover;
	display: block;
	margin-bottom: 22px;
}

.material-spec__item h3 {
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
}

.material-spec__catch {
	margin: 0 0 20px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.6;
	color: #009ca6;
}

.material-spec__item p {
	font-size: 16px;
	line-height: 2;
}

.material-spec__note {
	margin-top: 20px;
	padding: 16px 18px;
	background: #fff;
	font-size: 15px;
	line-height: 1.8;
}

.material-spec__pagination {
	display: none;
}

@media (max-width: 767px) {
	.material-spec {
		width: 100vw;
		margin-left: calc(50% - 50vw) !important;
		overflow: hidden;
	}

	.material-spec__list {
		display: flex;
		gap: 0;
	}

	.material-spec__item {
		width: auto;
		height: auto;
		padding: 20px;
	}

	.material-spec__pagination {
		display: block;
		position: static;
		margin-top: 24px;
	}
}

/* 定番価格表 */
.price-table-wrap {
	overflow-x: auto;
}

.price-table {
	width: 100%;
	min-width: 920px;
	table-layout: fixed;
	border-collapse: collapse;
}

.price-table th:first-child,
.price-table td:first-child {
	width: 30%;
}

.price-table th:not(:first-child),
.price-table td:not(:first-child) {
	width: 23.333%;
}

.price-table th,
.price-table td {
	border: 1px solid #707070;
	padding: 18px 22px;
	text-align: left;
	vertical-align: middle;
}

.price-table thead th {
	background: #EBF7F7;
	font-size: 16px;
	font-weight: 700;
}

.price-table thead th:first-child {
	background: transparent;
	border-top: none;
	border-left: none;
}

.price-table tbody th {
	position: relative;
	padding-right: 64px;
	background: #EBF7F7;
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
}

.price-table tbody td {
	font-size: 16px;
	background: #fff;
}

.price-table__truck {
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	width: 20px;
  height: 15px;
	background: url("/wp-content/plugins/my-snow-monkey/assets/img/price/icon-truck.svg") center center / contain no-repeat;
}

.price-table-note {
	position: relative;
	margin-top: 10px;
	padding-left: 0;
	font-size: 16px;
	line-height: 2;
}

.price-table__truck--note {
    position: relative;
    display: inline-block;
    top: inherit;
    left: inherit;
    right: auto;
    transform: none;
    width: 20px;
}

@media (max-width:767px){

	.price-table-wrap{
		width:100vw;
		margin-left:calc(50% - 50vw);
		overflow-x:auto;
		padding:0 20px;
	}

	.price-table{
		min-width:900px;
	}

  .price-table th,
  .price-table td {
    padding: 10px 10px;
  }

  .price-table tbody th {
    font-size: 14px;
    padding-right: 25px;
  }

	.price-table-note{
		padding-left:34px;
		font-size:14px;
	}

	.price-table__truck{
		width:24px;
		height:20px;
		right:18px;
	}

}
.price-big-table-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.price-big-table {
	width: max-content;
	min-width: 100%;
	border-collapse: collapse;
	background: #fff;
}

.price-big-table th,
.price-big-table td {
	padding: 10px 10px;
	border: 1px solid #d9d9d9;
	text-align: center;
	white-space: nowrap;
	font-size: 15px;
	line-height: 1.5;
}

.price-big-table th {
	background: #f7f7f7;
	font-weight: 700;
}

.price-big-table td {
	background: #fff;
}

.price-big-table tbody tr:nth-child(even) td {
	background: #fcfcfc;
}


/* =========================
   プレート看板とは
========================= */

.plate-menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 25px 32px;
}


/* 各メニュー */
.plate-menu__item {
	display: grid;
	grid-template-columns: 67.2% 32.8%;
	height: 150px;
	overflow: hidden;
	color: #111;
	text-decoration: none;
}


/* テキストエリア */
.plate-menu__text {
	display: flex;
	align-items: center;
	padding: 0 46px;
	background: #edfafa;
}

.plate-menu__text span {
	font-size: 23px;
	font-weight: 400;
	letter-spacing: .08em;
	line-height: 1.6;
}


/* 画像 */
.plate-menu__image {
	height: 100%;
	overflow: hidden;
}

.plate-menu__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* ホバーはデザインを崩さない程度 */
.plate-menu__item .plate-menu__image img {
	transition: transform .4s ease;
}

.plate-menu__item:hover .plate-menu__image img {
	transform: scale(1.03);
}


/* =========================
   SP
========================= */
@media screen and (max-width: 767px) {

	.plate-menu {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.plate-menu__item {
		grid-template-columns: 65% 35%;
		height: 125px;
	}

	.plate-menu__text {
		padding: 0 22px;
	}

	.plate-menu__text span {
		font-size: 18px;
		letter-spacing: .06em;
	}

}

/* =========================
   ブロックレイアウト  
========================= */
/* テーブル */
.wp-block-table.is-style-regular table{
  th,td{
    border-color: #B4B4B4;
    padding: 10px 15px;
  }
  th{
    width: 25%;
    background-color: #EFEFEF;
  }
  .card-image{
    max-width: 300px
  }
}

.wp-block-table.is-style-company table{
  border-collapse:collapse;
  margin:0 auto;
  width: 100%;
  td,th{
    border: none;
    border-top:1px solid #666;
    padding:10px;
  }
  tr:last-child td,
  tr:last-child th{
    border-bottom:1px solid #666;  
  }
  th{
      width: 25%;
      color: var(--main-color);
    }
}



