@charset "utf-8";
/* head,text */
/* Link */
a:has(.hover_scale){
  transition:translate .4s;
}
.hover_scale {
  overflow: hidden;
}
.hover_scale img {
  transition: scale .4s;
}
.block_link a,
a.block_link {
  display: block;
  transition: background 0.4s, color 0.4s, border 0.4s;
}
.block_link a img {
  transition: opacity 0.4s;
}
.common_btn {
  text-align: center;
  margin: 0 auto;
}
.common_btn a {
  --key_color: var(--white);
  --bg_color: var(--main_color);
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 205px;
  width: fit-content;
  min-height: 3.125em;
  font-size: 1rem;
  font-weight: 500;
  color: var(--key_color);
  background: var(--bg_color);
  border-radius: 3.125em;
  padding: 0.75em 2.25em;
  text-decoration: none;
  transition: color .4s, background .4s;
  border: 1px solid var(--main_color);
}
.common_btn a::after {
  content:"";
  width:18px;
  height:11px;
  background:url(../img/common/icon-arrow.svg) no-repeat center / contain;
  position:absolute;
  inset: 0 10% 0 auto;
  margin:auto;
  transition:.5s filter;
}
.common_btn.btn_white a {
  --key_color: var(--sub_color);
  --bg_color: var(--white);
}
@media (any-hover: hover) {
  a:has(.hover_scale):hover{
    translate:0 -6px;
  }
  a:hover .hover_scale img,
  .hover_scale a:hover img {
    scale: 1.05 1.05;
  }
  .block_link a:hover,
  a.block_link:hover {
    text-decoration: none;
  }
  .block_link a:hover img,
  a:hover img.opacity {
    opacity: 0.7;
    text-decoration: none;
  }
  .common_btn a:hover {
    --key_color: var(--main_color) !important;
    --bg_color: var(--white);
  }
  .common_btn a:hover:after{
      animation-name: arrowRightUp;
      animation-duration: 0.5s;
      filter: brightness(0) saturate(100%) invert(18%) sepia(41%) saturate(3593%) hue-rotate(224deg) brightness(82%) contrast(96%);
  }
	
}
@media screen and (max-width: 767px) {
  .common_btn a {
    min-width: 0;
    width: min(100%, 230px);
    margin-inline: auto;
  }
}
/* image */
@media screen and (max-width: 767px) {
  .scale_sp img {
    max-width: inherit;
    width: 100%;
    height: auto;
  }
}
/* list */
.news-list{
	padding:0;
	margin:0;
}

.news-list li{
	margin:0;
	list-style: none;
}
.post-type-archive-seihin .news-list{
	display:flex;
	justify-content:flex-start;
	align-items:stretch;
	flex-wrap:wrap;
	gap:2em 1%;
}
.post-type-archive-seihin .news-list li{
	width:33%;
	display:block;
}
.post-type-archive-seihin .news-list li a{
	flex-direction:column;
}
.news-list .news-item a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2em;
  font-size: 1rem;
  border-bottom: 1px solid #909090;
  text-decoration: none;
  padding: 2.25em 2em 2.25em 0.2em;
  transition: .5s background-color;
  position:relative;
  color: var(--black);
}
.news-list .news-item a::after {
  content:"";
  width:16px;
  height:8px;
  background:url(../img/common/icon-arrow.svg) no-repeat center / contain;
  position:absolute;
  inset: 0 1% 0 auto;
  margin:auto;
  transition:.5s filter;
	filter: brightness(0) saturate(100%) invert(9%) sepia(87%) saturate(2%) hue-rotate(314deg) brightness(91%) contrast(85%);
}
.news-list .news-item a time {
  font-size: 0.875em;
  width: 5.75em;
  font-family: "Poppins", sans-serif;
  line-height: 2;
}
.news-list .news-item .cat_area{
	width:8em;
}
.news-list .news-item p{
	width: calc(100% - 15em);
	margin-bottom: 0;
}
.cat-item{
	border-radius:40px;
	font-size:0.875rem;
	background:var(--white);
	border:1px solid var(--main_color);
	color:var(--black);
	min-width: 2em;
	width: auto;
	color: var(--main_color);
	width: fit-content;
	min-width: 5em;
	min-height: 2.286em;
	padding: 0.25em 1.798em;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.news-list .seihin-item a{
	padding:1em 0.5em;
}
.seihin-item .seihin-image{
	width:200px;
}
.seihin-item .seihin-image img{
	object-fit:cover;
	height:100%;
	width:100%;
}
.seihin-item .seihin-text{
	width: calc(100% - 300px - 1em);
}
.news-list .seihin-item .cat_area{
	width:100%;
	margin-bottom:1em;
	display:flex;
	justify-content:flex-start;
	align-items:stretch;
	gap: 0.5em 0.5em;
}
.news-list .seihin-item p{
	width:100%;
}
@media (any-hover: hover) {
  .news-list .news-item a:hover {
    background: #e1e7f3;
  }
.news-list .news-item a:hover:after{
      animation-name: arrowRightUp;
      animation-duration: 0.5s;
      animation-iteration-count: 1;
  }
}
@keyframes arrowRightUp {
	0% {
		transform: translate(0);
	}
	48% {
		transform: translateX(100%);
	}
	49% {
		transform: translateX(100%);
		visibility: hidden;
		opacity: 0;
	}
	50% {
		transform: translateX(-100%);
		visibility: hidden;
		opacity: 0;
	}
	51% {
		transform: translateX(-100%);
		visibility: visible;
		opacity: 1;
	}
	100% {
		transform: translate(0);
	}
}
@media screen and (max-width: 767px) {
  .news-list .news-item a {
    gap: 0.75em 0.25em;
    padding: 1em 1.75em 1em 10px;
    flex-wrap: wrap;
  }
	.news-list .news-item .cat_area{
		width:calc(100% - 6.75em);
	}
	.news-list .seihin-item .cat_area{
		width:100%;
		flex-wrap: wrap;
	}
	.news-list .news-item p{
		width:100%;
	}
	.cat-item{
		font-size:0.86rem;
		min-height: 1.66em;
		height: auto;
		padding: 0 1.0265em;
		min-width: auto;
	}
	.news-list .news-item a::after {
	  width:10px;
	  height:5px;
	  inset: 0 2% 0 auto;
	}
	.seihin-item .seihin-image{
		width:100px;
	}
	.seihin-item .seihin-text{
		width: calc(100% - 100px - 1em);
	}
	body.post-type-seihin .news-list .seihin-item a{
		padding: 0.75em 0.25em;
		gap: 1em;
	}
			
}
/*  GoogleMAP・動画埋め込み  */
.map_wrap iframe {
  width: 100%;
}
.movie_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.movie_wrap iframe,
.movie_wrap video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/*  パンくずリスト  */
#pan {
  position: relative;
  z-index: 2;
  margin-top: 1.75rem;
  margin-bottom: 4.25rem;
  overflow: hidden;
}
#pan ol {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  overflow-y: hidden;
  overflow-x: auto;
  text-align: left;
  gap:2em;
}
#pan li,
#pan li * {
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  white-space: nowrap;
	
}
#pan li{
	position:relative;
	margin: 0;
	line-height: 1;
}
#pan li::after {
  content:"";
  width: 0.875em;
  height:1px;
  background:#909090;
  position:absolute;
  inset: 5px -1.5em 0 auto;
  margin:auto;
}
#pan li:last-child::after {
  display: none;
}
#pan li * {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--black);
}
#pan li a {
	color:#909090;
}
@media (any-hover: hover) {
  #pan li a:hover {
    text-decoration: none;
  }
}
@media only screen and (max-width:1300px) {
	#pan ol{
		padding:0 15px;
	}
}
@media only screen and (max-width: 767px) {
  #pan {
    position: relative;
    z-index: 10;
    margin-top: 1em;
    margin-bottom: 4em;
    overflow: hidden;
  }
  #pan:after,
  #pan li:last-child:after {
    position: absolute;
    z-index: 10;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0.75em;
    background: var(--black);
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
  }
  #pan a {
    text-decoration: underline;
  }
  #pan li:last-child {
    position: relative;
    padding-right: 0.75em;
    margin-right: 0;
    flex-grow: 1;
  }
  #pan li:last-child:after {
    z-index: 20;
    top: -1em;
    bottom: -1em;
    background: var(--white);
  }
}
/*  ページャー  */
.pager{
	text-align:center;
	display:flex;
	justify-content:center;
	align-items:center;
	gap:0.5em;
	border: none;
}
.pager:has(.page-numbers){
	padding:30px 0 0 0;
}
.pager > *{
	border-bottom: 1px solid;
	font-size:1rem;
	padding: 0 0.875em 0.25em;
	border: 1px solid var(--main_color);
	aspect-ratio:1 / 1;
	display:flex;
	justify-content:center;
	align-items:center;
	line-height:1;
	padding-top: 0.25em;
}
.pager > a{
	text-decoration:none;
	transition:.5s color,.5s background-color;
}
.pager span.dots{
	border: none;
}
.pager .current{
	background: var(--main_color);
	color:var(--white);
}
.pager > a:hover{
	background: var(--main_color);
	color:var(--white);
}
.pager li.prev{
	margin:0 10px 0 0;
}
.pager li.next{
	margin:0 0 0 10px;
}
@media screen and (max-width: 768px) {
	.pager li{
		width: 30px;
	}
	.pager li a{
		font-size:12px;
		padding:6px 0;
	}
	.pager li.prev,
	.pager li.next{
		margin:0;
	}
	.pager > *{
		font-size:1rem;
		padding: 0.375em 0.75em;
	}
}
/*  モーダル  */
.modal-content {
  width: 80%;
  max-width: 1240px;
  margin: 0px;
  padding: 10px 20px;
  background: none;
  position: fixed;
  display: none;
  z-index: 1020;
}
#modal-overlay {
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.66);
}
.modal-content .close_btn {
  position: absolute;
  top: -10%;
  right: 0px;
  color: rgb(255, 255, 255);
  font-size: 40px;
  line-height: 1;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }
}
/*  タブ切替  */
.tab_change .news-title input[type="radio"] {
  display: none;
}
.tab_change .news-title:has(input[type="radio"]) ~ .tab_table .tab_content {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  z-index: -10;
  visibility: hidden;
  transition: opacity .4s;
}
.tab_change .news-title:has(input[id$="01"]:checked)~.tab_table div[class$="01"],
.tab_change .news-title:has(input[id$="02"]:checked)~.tab_table div[class$="02"],
.tab_change .news-title:has(input[id$="03"]:checked)~.tab_table div[class$="03"],
.tab_change .news-title:has(input[id$="04"]:checked)~.tab_table div[class$="04"],
.tab_change .news-title:has(input[id$="05"]:checked)~.tab_table div[class$="05"] {
  opacity: 1;
  z-index: 10;
  visibility: visible;
  max-height: 200vh;
  overflow: visible;
  width: 100%;
}
.tab_change {
  position: relative;
  z-index: 20;
}
.tab_controller {
  display: flex;
  justify-content: flex-start;
  gap: 2px;
}
.tab_controller label,
.tab_controller a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5em;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--white);
  text-decoration: none;
  background: #c4c4c4;
  border-radius: 0.75em 0.75em 0 0;
}
.tab_controller a:hover,
.tab_controller a.on,
.tab_change .news-title input[id$="01"]:checked ~.tab_controller label[for$="01"],
.tab_change .news-title input[id$="02"]:checked ~.tab_controller label[for$="02"],
.tab_change .news-title input[id$="03"]:checked ~.tab_controller label[for$="03"],
.tab_change .news-title input[id$="04"]:checked ~.tab_controller label[for$="04"],
.tab_change .news-title input[id$="05"]:checked ~.tab_controller label[for$="05"] {
  color: var(--white);
  background: var(--sub_color);
}
@media (any-hover: hover) {
  .tab_controller a:hover,
  .tab_controller label:hover {
    color: var(--black);
    background: var(--yellow);
  }
}
@media screen and (max-width: 767px) {
  .tab_change::after {
    top: 3.25em;
  }
  .tab_controller {
    overflow-x: auto;
    overflow-y: visible;
  }
  .tab_controller label,
  .tab_controller a {
    min-height: 3.25em;
    font-size: 1rem;
    padding: 0.35em;
  }
  .tab_controller:has(>*:nth-child(4))>* {
    min-width: calc(105% / 3);
  }
  .tab_controller:has(>*:nth-child(4))::after,
  .tab_controller:has(>*:nth-child(4))>*:last-child::after {
    position: absolute;
    z-index: 10;
    display: block;
    content: "";
    width: 1em;
    height: 100%;
    background: var(--black);
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
    top: 0;
    right: 15px;
    bottom: 0;
  }
  .tab_controller:has(>*:nth-child(4))>*:last-child {
    position: relative;
    margin-right: 1em;
  }
  .tab_controller:has(>*:nth-child(4))>*:last-child::after {
    z-index: 15;
    top: 0;
    right: -1em;
    bottom: 0;
    background: rgb(255, 255, 255);
  }
}
/*フォーム*/
.snow-monkey-form .smf-item {
	padding: 1rem 0;
	border-bottom: 1px solid #e4e4e4;
}
.snow-monkey-form .smf-item:last-child{
	border-bottom:none;
}
.smf-form--simple-table .smf-item{
	display:flex;
}
.smf-placeholder[data-name="your-doui"]{
	margin-block:2em 3em;
	text-align:center;
}
.smf-form .smf-radio-buttons-control--horizontal .smf-radio-buttons-control__control>.smf-label {
	display: inline-block;
	margin-right: 1em;
	margin-top: 0;
}
.smf-form .birth-wrap:not(.is-not-stacked-on-mobile)>.wp-block-column,
.smf-form .birth-wrap>.wp-block-column{
	flex-basis: auto;
	flex-grow: 0;
}
.snow-monkey-form .smf-item.no-form{
	border-bottom:none!important;
	padding: 0;
}
.snow-monkey-form .smf-item__col--label {
	max-width: 190px;
	flex: 100%;
}
.smf-form .smf-item .smf-item__col--label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 100%;
	max-height: 3.5em;
	flex: 280px;
	width: 280px;
	padding-right: 5em;
	box-sizing: border-box;
}
.smf-form .smf-item.required-box .smf-item__description {
	display: inline-block;
	font-size: 0.625rem;
	line-height: 1;
	color: #fff !important;
	background: #e52331 !important;
	border: 1px solid #e52331;
	padding: 0.35em 1.0875em;
	margin: 0;
}
.snow-monkey-form .smf-item__col--controls {
	max-width: calc(100% - 280px);
	flex: 100%;
	margin-top: 0;
	/* min-height: 3.5em; */
}
.snow-monkey-form .smf-item .smf-radio-button-control__control{
	display:none;
}
.smf-form--simple-table .smf-item--divider .smf-item__col{
	max-width:none;
}
.snow-monkey-form input,
.snow-monkey-form select{
	font-family: "Noto Sans JP", serif;
}
.snow-monkey-form .smf-form .smf-item .smf-text-control__control,
.snow-monkey-form input[type="search"],
.snow-monkey-form input[type="email"],
.snow-monkey-form input[type="tel"],
.snow-monkey-form input[type="number"],
.snow-monkey-form input[type="password"],
.snow-monkey-form .smf-form .smf-item .smf-textarea-control__control {
	appearance: none;
	-webkit-appearance: none;
	background: #fff;
	margin: 0;
	border: #bfbfbf solid 1px;
	display: block;
	width: 100%;
	height: 2.875em;
	line-height: 2.875em;
	padding: 0 1em;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 0;
}
.snow-monkey-form input[type="date"]{
	max-width:170px;
}
.smf-form .smf-item .smf-select-control,
.smf-form .smf-item .smf-select-control__control{
	width: 100%;
	height: 2.875em;
	line-height: 2.875em;
	padding: 0 1em;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 0;
}
.smf-form .smf-item .smf-select-control{
	padding:0;
	background: #fff;
}
.snow-monkey-form input::placeholder,
.snow-monkey-form textarea::placeholder {
	color: #a2a0a0;
}
.snow-monkey-form .smf-form .smf-item .smf-textarea-control__control {
	height: auto;
	padding: 0.5em 1em;
	line-height: 1.4em;
}
.smf-form .smf-item .smf-select-control__control:active,
.smf-form .smf-item .smf-select-control__control:focus,
.smf-form .smf-item .smf-select-control__control:focus-within,
.smf-form .smf-item .smf-select-control__control[aria-selected=true]{
	border-color:#000;
}
.smf-form .smf-item .smf-select-control__toggle:before,
.smf-form .smf-item .smf-select-control__control:focus + .smf-select-control__toggle:before{
	border-color:#000;
}
.snow-monkey-form[data-screen="confirm"] .smf-item.required-box .smf-item__description {
	display:none;
}
#autozip {
   display: none !important;
}

/*radio,checkbox*/
.snow-monkey-form label {
	cursor: pointer;
}
.smf-form .smf-item .smf-checkboxes-control__control>.smf-label{
	margin-right:0.5em;
	margin-bottom:0.5em;
}
.smf-form .smf-item.check_center .smf-checkboxes-control__control>.smf-label{
	text-align:center;
	margin-top:1.5em;
}
.smf-form .smf-item .smf-radio-control__control,
.smf-form .smf-item .smf-checkbox-control__control {
	display: none;
}
.smf-form input.smf-checkbox-control__control{
	display:none;
}
.smf-checkboxes-control__control:has(input[name="your-doui[]"]){
	text-align:center;
	margin-top: 1.5em;
}
.smf-form .smf-item .smf-select-control__toggle{
	background:transparent;
}
.snow-monkey-form input[type="radio"]+span,
.snow-monkey-form input[type="checkbox"]+span {
	display: inline-block;
	padding: 0.25em 0.25em 0.25em 1.875em;
	position: relative;
	margin-top: 0;
}
.snow-monkey-form input[type="radio"]+span{
	padding-left: 1.75em;
}
.snow-monkey-form label input[type="radio"]+span:before,
.snow-monkey-form label input[type="checkbox"]+span:before,
.snow-monkey-form label input[type="radio"]+span:after,
.snow-monkey-form label input[type="checkbox"]+span:after {
	content: "";
	display: inline-block;
	width: 1.375rem;
	height: 1.375rem;
	border: solid 1px #d2d2d2;
	border-radius: 2px;
	position: absolute;
	left: 0;
	top: 5px;
	transition: opacity .2s;
}
.snow-monkey-form label input[type="radio"]+span:before,
.snow-monkey-form label input[type="checkbox"]+span:before{
	background-color:#fff;
}
.snow-monkey-form label input[type="checkbox"]+span:after {
	border: none;
	width: 1rem;
	height: 0.5rem;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	transform: rotate(135deg);
	top: 10px;
	left: 3px;
	opacity: 0;
}
.snow-monkey-form label input[type="radio"]+span:before {
	border-radius: 50%;
	width: 24px;
	height: 24px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.snow-monkey-form label input[type="radio"]+span:after {
	border-radius: 50%;
	width: 18px;
	height: 18px;
	border: none;
	background: var(--main_color);
	top: 0;
	left: 3px;
	opacity: 0;
	bottom: 0;
	margin: auto;
}
.snow-monkey-form label input[type="radio"]:checked+span:before {
	border-color: var(--main_color);
}
.snow-monkey-form label input[type="checkbox"]:checked+span:before {
	border-color: var(--main_color);
	background: var(--main_color);
}
.snow-monkey-form label input[type="radio"]:checked+span:after,
.snow-monkey-form label input[type="checkbox"]:checked+span:after {
	opacity: 1;
}

/*smf-button-control__control*/
.smf-action{
	display:flex;
	justify-content:center;
	align-items:stretch;
	gap: 5%;
	margin-top: 2em
}
.smf-action > *{
	margin-top:0;
}
.smf-action .smf-button-control__control,
.common_btn button{
 position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 205px;
  width: fit-content;
  min-height: 3.125em;
  font-size: 1rem;
  font-weight: 500;
  color:  var(--white);
  background:var(--main_color);
  border-radius: 3.125em;
  padding: 0.75em 3.5em 0.7em 2.25em;
  text-decoration: none;
  transition: color .4s, background .4s;
  border: 1px solid var(--main_color);
}
.smf-action .smf-button-control__control:after,
.common_btn button:after{
	content: "";
	width:18px;
	height:11px;
	background:url(../img/common/icon-arrow.svg) no-repeat center / contain;
	position:absolute;
	inset: 0 10% 0 auto;
	margin:auto;
	transition:.5s filter;
}
.smf-action .smf-button-control__control[data-action="back"]{
	color:  var(--main_color);
	background:var(--white);
}
.smf-action .smf-button-control__control[data-action="back"]:after{
	filter: brightness(0) saturate(100%) invert(18%) sepia(41%) saturate(3593%) hue-rotate(224deg) brightness(82%) contrast(96%);
}
@keyframes arrowRightUp {
	0% {
		transform: translate(0);
	}
	48% {
		transform: translateX(100%);
	}
	49% {
		transform: translateX(100%);
		visibility: hidden;
		opacity: 0;
	}
	50% {
		transform: translateX(-100%);
		visibility: hidden;
		opacity: 0;
	}
	51% {
		transform: translateX(-100%);
		visibility: visible;
		opacity: 1;
	}
	100% {
		transform: translate(0);
	}
}
@media (any-hover: hover) {
	.smf-action .smf-button-control__control:hover,
	.common_btn button:hover{
	  color:  var(--main_color);
	  background:var(--white);
	  opacity: 1;
	}
	.smf-action .smf-button-control__control:hover:after,
	.common_btn button:hover:after{
	  animation-name: arrowRightUp;
      animation-duration: 0.5s;
      filter: brightness(0) saturate(100%) invert(18%) sepia(41%) saturate(3593%) hue-rotate(224deg) brightness(82%) contrast(96%);
	}
	.smf-action .smf-button-control__control[data-action="back"]:hover{
		color: var(--white) !important;
		background:var(--main_color);
	}
	.smf-action .smf-button-control__control[data-action="back"]:hover:after{
		filter: brightness(0) invert(1);
	}
}
@media screen and (max-width:767px) {
	.snow-monkey-form .smf-item{
		padding: 1em 0;
	}
	.smf-form--simple-table .smf-item{
		display:block;
	}
	.smf-form .smf-item .smf-item__col--label{
		justify-content:flex-start;
		gap:3%;
		margin-bottom: 0.75em;
		padding-bottom: 0;
		padding-right: 0;
		width: 100%;
	}
	.smf-form .birth-wrap.is-layout-flex{
		gap:12px;
	}
	.snow-monkey-form .smf-item__col--label,
	.snow-monkey-form .smf-item__col--controls,
	.snow-monkey-form .form_harf .smf-item__col--label,
	.snow-monkey-form .form_harf .smf-item__col--controls{
		max-width: 100%;
	}
	.smf-form .smf-item .smf-select-control{
		max-width:100%;
	}
	.smf-action{
		display:flex;
		flex-direction:column-reverse;
		flex-wrap: wrap;
	}
	.smf-action > * + *{
		margin-top:1em;
	}
	.smf-action .smf-button-control+.smf-button-control{
		margin:0;
	}
	.smf-action .smf-button-control__control{
		margin:0.5em auto;
		width: 100%;
		max-width: 270px;
		border-width: 1px;
	}
	.snow-monkey-form .smf-item.privacy-box,
	.snow-monkey-form .smf-item.text-box{
		margin: 20px auto;
		padding: 20px 15px;
	}
	.snow-monkey-form .privacy-box ul li:before{
		width:4px;
		height:4px;
		left:0;
		top:0.65em;
	}
	.snow-monkey-form .sp-flex{
		gap: 0.5em;
	}
	.snow-monkey-form label input[type="radio"]+span:before {
		top: 2px;
		width: 18px;
		height: 18px;
	}
	.snow-monkey-form label input[type="radio"]+span:after {
		top: 10px;
		bottom:auto;
		width: 12px;
		height: 12px;
		left: 3px;
	}
	.snow-monkey-form input[type="date"]{
		max-width:100%;
	}
}