.select-wrap {
	background-color:#fff;
	margin:2px 0 1px 0;
	border-radius: 5px;
}

.select-wrap select {
	height: 43px;
	border: 1px solid #bbb;
	border-radius: 5px;
	font-size:16px;
	font-weight:bold;
	box-shadow:1px 1px 3px rgba( 0, 0, 0, 0.3 );
	margin:0;
}

.select-wrap select[name="supporter_prefecture"] {
	box-shadow:none;
	font-size:15px;
	font-weight:normal;
}


#croudf_main_wrap {
	min-width:1024px;
	width:100%;
	background-color:#eee;
	margin-bottom:0;
	padding-top:40px;
	padding-bottom:40px;
}

#croudf_main {
	min-width:1024px;
	width:100%;
	margin:auto;
	display:flex;
	flex-wrap:wrap;
}
#croudf_main div {
	box-sizing:border-box;
}
#croudf_list {
	min-width:980px;
	width:980px;
	margin:auto;
}
#croudf_list ul {
	display:flex;
	flex-wrap:wrap;
}

#croudf_list ul > li {
	list-style:none;
	width:calc( 100% / 3 );
	box-sizing:border-box;
}

#croudf_list ul > li > a > div {
	background-color:#fff;
	border-radius: 8px;
}

#croudf_list ul > li:nth-of-type( 3n+1 ){
	padding-right:16px;
}

#croudf_list ul > li img {
	width:100%;
	aspect-ratio: 3 / 2;
	object-fit:cover;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

#croudf_list ul > li h3 {
	color:#000;
	padding:12px;
	font-size:16px;
	line-height:1.6em;
	height:4.6em;
	font-weight:bold;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

#croudf_list li .croudf_amount {
	display:flex;
	padding:0 12px 8px 12px;
}

#croudf_list li .croudf_amount > div p, #croudf_list li .croudf_time > div {
	font-size:18px;
	line-height:1.5em;
	color:#000;
	font-weight:bold;
}
#croudf_list li .croudf_amount > div p span, #croudf_list li .croudf_time > div span {
	font-size:14px;
	color:#000;
}
#croudf_list li .croudf_amount > div:first-of-type {
	width:40%;
}
#croudf_list li .croudf_amount > div:last-of-type {
	width:60%;
	text-align:right;
}
#croudf_list li .croudf_time {
	display:flex;
	padding:8px 12px;
	background-color:#f8f8f8;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
#croudf_list ul > li a > div {
	transition:all 0.3s;
}
#croudf_list ul > li a:hover > div, #croudf_list ul > li a:active > div {
	opacity:0.6;
}

#croudf_first_top {
	min-width:1024px;
	width:100%;
	height:400px;
	background-image:url( images/croudf/main.jpg );
	background-size:auto 100%;
	background-repeat:repeat-x;
	background-position: 0 0;
  	animation: scroll 30s linear infinite;
}
@keyframes scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -800px 0;
  }
}

.croudf_title {
	margin:40px auto;
	text-align:center;
	font-size:22px;
	font-weight:bold;
	line-height:1.6em;
	color:#000;
}
#croudf_first_top > div {
	display:table;
	text-align:center;
	width:800px;
	max-width:100%;
	height:100%;
	margin:auto;
}
#croudf_first_top > div > div {
	display:table-cell;
	width:100%;
	vertical-align:middle;
	background-color:rgba( 255, 255, 255, 0.6 );
}
#croudf_first_top > div > div h2 {
	font-size:30px;
	line-height:1.6em;
	color:#000;
	font-family:'M PLUS 1p';
	font-weight:700;
	margin-bottom:12px;
}
#croudf_first_top > div > div p {
	font-size:18px;
	line-height:1.6em;
	color:#000;
	font-family:'M PLUS 1p';
	font-weight:700;
}
.croudf_top {
	width:100%;
	padding-bottom:40px;
}
.croudf_top.has_main_image {
	height:50vh;
	padding-bottom:0;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
}
.croudf_top h2 {
	text-align:center;
	color:#000;
	font-size:24px;
	font-weight:bold;
	line-height:1.5em;
}
.croudf_top.has_main_image h2,
.croudf_top.has_main_image .croudf_main_copy {
	color:#fff;
	text-shadow:0 0 8px #000, 0 2px 4px #000;
}
.croudf_top.has_main_image h2 {
	font-size:34px;
	line-height:1.4em;
}
.croudf_top.has_main_image .croudf_main_copy {
	font-size:22px;
	line-height:1.6em;
}
@supports (-webkit-touch-callout: none) {
	.croudf_top.has_main_image {
		background-attachment:scroll;
	}
}
#croudf_main {
	width:100%;
	max-width:1024px;
}
.croudf_left {
	width:60%;
	padding-right:10px;
}
.croudf_main_copy {
	font-size:18px;
	line-height:1.5em;
	color:#000;
	padding:20px 0;
}
.croudf_right > div {
	background-color:#fff;
	padding:20px;
	margin-bottom:40px;
}
.croudf_main_img {
	width:100%;
	position:relative;
}
.croudf_main_img img {
	width:100%;
	height:auto;
}
.croudf_right {
	width:40%;
	padding-left:20px;
}
.croudf_right dl dt {
	font-size:15px;
	line-height:1.5em;
	color:#000;
}
.croudf_right dl dt:nth-of-type( n+2 ){
	margin-top:20px;
}
.croudf_right dl dd {
	font-weight:bold;
	color:#000;
	font-size:40px;
	line-height:1.5em;
}
.croudf_right dl dd > span {
	font-size:22px;
	color:#000;
}
.croudf_right dl dd > div {
	font-size:15px;
	line-height:1.2em;
	color:#000;
	font-weight:normal;
	padding-bottom:16px;
}
#croudf_percent {
	font-size:14px;
	line-height:1.9em;
	padding:2px 8px 0 8px;
	margin-bottom:6px;
}
.croudf_red {
	color:#fff;
	background-color:#f33256;
}
.croudf_orange {
	color:#fff;
	background-color:#f5770f;
}
.croudf_yellow {
	color:#000;
	background-color:#d7ee06;
}
.croudf_green {
	color:#000;
	background-color:#21f809;
}
.croudf_skyblue {
	color:#000;
	background-color:#0feffa;
}
.croudf_blue {
	color:#fff;
	background-color:#092fe8;
}
.croudf_purple {
	color:#fff;
	background-color:#9806d6;
}
a.croudf_btn:link, a.croudf_btn:visited {
	text-align:center;
	background-color:#f33256;
	color:#fff;
	text-align:center;
	font-size:17px;
	line-height:49px;
	font-weight:bold;
	display:block;
	border-radius:6px;
	transition:all 0.3s;
}
a.croudf_btn:active, a.croudf_btn:hover {
	opacity:0.7;
}
a.croudf_btn.noenter:active, a.croudf_btn.noenter:hover {
	opacity:0.5;
	cursor:default;
}

.croudf_btn_area {
	margin-top:60px;
	margin-bottom:20px;
	text-align:center;
}

.croudf_btn_area .croudf_btn:link, .croudf_btn_area .croudf_btn:visited {
	display:inline-block;
	width:250px;
	max-width:40%;
}

.croudf_detail {
	width:60%;
	padding-right:10px;
}
.croudf_detail > div {
	padding:20px;
	background-color:#fff;
}
.croudf_return {
	width:40%;
	padding-left:20px;
}
.croudf_return.width100 {
	width:100%;
}
.croudf_return > h3 {
	font-size:22px;
	line-height:1.5em;
	font-weight:bold;
	color:#000;
	margin-bottom:8px;
}
.croudf_return > p {
	margin-bottom:12px;
	color:#000;
	font-size:15px;
	line-height:1.5em;
}
.croudf_return > ul > li {
	background-color:#fff;
	padding:20px;
	margin-bottom:16px;
	border-radius:6px;
}
.croudf_return_img {
	width:100%;
	position:relative;
	margin-bottom:8px;
}
.croudf_return_img img {
	width:100%;
	height:auto;
}
.croudf_return h4 {
	font-size:16px;
	line-height:1.6em;
	font-weight:bold;
	color:#000;
	margin-bottom:8px;
}
.croudf_return_tbl {
	display:flex;
	width:100%;
}
.croudf_return_tbl > div {
	width:50%;
	font-size:20px;
	line-height:1.5em;
	font-weight:bold;
	color:#000;
}
.croudf_return_tbl > div > span {
	font-size:15px;
	color:#000;
}
.croudf_return_tbl > div:nth-of-type(2) {
	text-align:right;
}
.croudf_return_text {
	color:#000;
	font-size:14px;
	line-height:1.6em;
	margin:16px 0;
}
.croudf_return_shien {
	color:#000;
	font-size:14px;
	line-height:1.6em;
}
.croudf_select p {
	margin-top:4px;
	color:#000;
	text-align:center;
}
.croudf_comment {
	margin-top:20px;
	box-sizing:border-box;
}
.croudf_comment > p {
	font-size:14px;
	color:#000;
	line-height:1.6em;
	padding-left:1.3em;
	position:relative;
}
.croudf_comment > p:nth-of-type( n+2 ){
	margin-top:6px;
}
.croudf_comment > p:before {
	content:'※';
	position:absolute;
	left:0;
	top:0;
}
#croudf_error_area ul {
	padding:10px 0 30px 0;
}
#croudf_error_area li {
	list-style-type:none;
	color:#f00;
	font-weight:bold;
	font-size:16px;
	line-height:1.6em;
}

#croudf_error_area2 p {
	color:#f00;
	font-weight:bold;
	font-size:16px;
	line-height:1.6em;
}

.croudf_supporter {
	width:720px;
	max-width:100%;
	padding:8px;
	margin:auto;
}

div.croudf_supporter+div.croudf_supporter {
	margin-top:40px;
	padding-top:40px;
	border-top:1px solid #ccc;
}

.croudf_supporter > P {
	font-size:15px;
	margin-top:20px;
	color:#000;
	line-height:1.6em;
}

.croudf_form {
	margin:30px 0;
}
.croudf_form input[type="text"], .croudf_form input[type="password"], textarea {
	padding:9px;
	font-size:14px;
	line-height:22px;
	font-family:Arial, sans-serif;
	border:solid 1px #ccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width:100%;
	max-width:100%;
	box-sizing:border-box;
}
.croudf_form input[type="text"][readonly] {
	background-color:#eee;
	color:#777;
	border-color:#ddd;
	cursor:not-allowed;
}

.croudf_form input.middle_field {
	width:360px;
	max-width:100%;
}

.croudf_form input.short_field {
	width:200px;
	max-width:100%;
}

.croudf_form dt {
	font-size:15px;
	line-height:1.6em;
	color:#000;
	font-weight:bold;
	margin-bottom:3px;
}
.croudf_form dt:nth-of-type( n+2 ){
	margin-top:20px;
}

.croudf_form input[type="checkbox"] {
    border: 1px solid #388094;
    vertical-align: -8px;
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    width: 26px;
    height: 26px;
    /*Other Browser*/
    background: #e2e2e2;
    /*For Old WebKit*/
    background: -webkit-gradient(
        linear, left top, left bottom,
        color-stop(0.00, #ffffff),
        color-stop(1.00, #e2e2e2)
    );
    /*For Modern Browser*/
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #e2e2e2 100%
    );
}

.croudf_form input[type="checkbox"]:disabled {
    background: #f3f3f3;
    border: 1px solid #ccc;
}

.croudf_form input[type="checkbox"]:checked {
    background: #99cc00;
    border: 1px solid #388094;
}

.croudf_form input[type="checkbox"]:checked:disabled {
    background: #dbf884;
    border: 1px solid #ccc;
}

.croudf_form input[type="checkbox"]:checked:before {
    position: absolute;
    left: 1px;
    top: 16px;
    display: block;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .8);
    content: "";
    width: 10px;
    height: 4px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right center;
}

.croudf_form input[type="checkbox"]:checked:after {
    display: block;
    position: absolute;
    left: 9px;
    top: 16px;
    content: "";
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .8);
    width: 16px;
    height: 4px;
    background: #ffffff;
    -webkit-transform: rotate(-53deg);
    -webkit-transform-origin: left center;
}

.croudf_form label.checkbox {
	line-height:20px;
	font-size:15px;
	padding-right:2em;
	white-space:nowrap;
	color:#000;
}

.croudf_form .checkbox_area input[type="checkbox"] {
	border-radius:28px;
}

.croudf_form dd p {
	font-size:15px;
	line-height:1.6em;
	color:#000;
	min-height:1.6em;
}

.croudf_form dd p > span.mini {
	font-size:12px;
	color:#000;
}

.croudf_form dd p > span.big {
	font-weight:bold;
	font-size:18px;
	color:#000;
}
dl.croudf_form+dl.croudf_form {
	padding-top:40px;
	margin-top:40px;
	border-top:1px solid #aaa;
}

.croudf_hissu {
	color:#f00;
	font-size:12px;
}

.croudf_login {
	width:350px;
	max-width:100%;
	padding:0 30px;
}

.croudf_login > p, #croudf_taikai_form > p {
	font-size:14px;
	color:#000;
	line-height:1.5em;
	padding-top:8px;
}
#ckeditor {
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	font-size:15px;
	line-height:1.6em;
	color:#000;
	background-color:#fff;
	padding:20px;
}

#ckeditor h1 {
	font-size:20px;
	line-height:28px;
	font-weight:500;
	letter-spacing: 2px;
	padding-bottom:7px;
	color:#000;
}

#ckeditor h2 {
	font-size:18px;
	line-height:24px;
	padding-bottom:7px;
	font-weight:bold;
	color:#000;
}

#ckeditor h3 {
	font-size:15px;
	line-height:20px;
	padding-bottom:7px;
	font-weight:bold;
	color:#000;
}


#ckeditor ul, #ckeditor ol {
	margin-top:0;
	margin-bottom:0;
}

#ckeditor ul li, #ckeditor ol li {
	position:relative;
	padding-left:1.3em;
	color:#000;
}

#ckeditor ul li:before {
	content: '・';
	position:absolute;
	left:0;
}

#ckeditor table {
	border-collapse:collapse;
}

#ckeditor th {
	background-color:#5d2c13;
	border:1px solid #fff;
	padding:4px;
	color:#fff;
}

#ckeditor td {
	border:1px solid #5d2c13;
	padding:4px;
	color:#000;
}

#ckeditor img {
	max-width:100%;
	height:auto;
	padding:8px 0;
}

#ckeditor p {
	margin:8px 0;
	padding:0;
	color:#000;
}

#ckeditor blockquote {
	padding:0 0 0 16px;
	margin:0 0 0 0;
	border-left:2px solid #ccc;
	box-sizing:border-box;
	color:#000;
}

#ckeditor ul.ck_img1, #ckeditor ul.ck_img2, #ckeditor ul.ck_img3 {
	margin: 0 0 1.5em 0;
	padding:0;
}

#ckeditor ul.ck_img1 li, #ckeditor ul.ck_img2 li, #ckeditor ul.ck_img3 li {
	float:left;
	list-style-type:none;
}

#ckeditor ul.ck_img1 li {
	width: 100%;
}

#ckeditor ul.ck_img2 li {
	width: calc( 100% / 2 );
}

#ckeditor ul.ck_img3 li {
	width: calc( 100% / 3 );
}

#ckeditor ul.ck_img1 li img, #ckeditor ul.ck_img2 li img, #ckeditor ul.ck_img3 li img {
	vertical-align:middle;
	width:100%;
	height:auto;
	aspect-ratio: 1 / 1;
	object-fit:cover;
	padding:0;
}

#ckeditor ul.ck_img1:after, #ckeditor ul.ck_img2:after, #ckeditor ul.ck_img3:after {
	content:'';
	display:block;
	clear:both;
}

#ckeditor p.atmark_caption {
	text-align:center;
	margin-top:-6px;
	padding-top:0;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}
.noenter {
	opacity:0.5;
}

#sub_window {
	width:100%;
	height:100vh;
	position:fixed;
	z-index:10000;
	left:0;
	top:0;
	background-color:rgba( 255, 255, 255, 0.6);
	display:none;
}

#sub_window #sub_dialog {
	width:640px;
	max-width:calc( 100% - 16px );
	margin:auto;
	border:1px solid #aaa;
	background-color:#fff;
	box-sizing:border-box;
	padding:16px;
	max-height:calc( 100vh - 32px );
	display:none;
	overflow:scroll;
}

#sub_dialog > p {
	font-size:15px;
	line-height:1.5em;
	color:#000;
}
#sub_dialog dl {
	margin-top:30px;
}
 #sub_dialog dl > dt {
	font-size:15px;
	line-height:1.6em;
	color:#000;
	font-weight:bold;
	margin-bottom:3px;
}
#sub_dialog dl > dt:nth-of-type( n+2 ){
	margin-top:20px;
}

#sub_dialog dl >  dd {
	color:#000;
	font-size:15px;
	line-height:1.6em;
}

#croudf_menu {
	background-color:#fff;
	position:relative;
	box-sizing:border-box;
	padding-right:80px;
}

#croudf_menu2 {
	background-color:#fff;
	position:fixed;
	left:0;
	top:0;
	width:100%;
	z-index:100;
	box-sizing:border-box;
	padding-right:80px;
	display:none;
}

#croudf_menu > ul, #croudf_menu2 > ul {
	display:flex;
	justify-content:flex-end;
	align-items:center;
	padding:2px 0;
}

#croudf_menu > ul > li, #croudf_menu2 > ul > li {
	list-style-type: none;
	display:inline-block;
	padding:4px 16px;
	text-align:center;
}

#croudf_msg {
	padding:16px 0;
	text-align:center;
	font-size:16px;
	font-weight:bold;
	color:#f00;
}

.croudf_history  {
	margin-top:60px;
}

.croudf_history li {
	position:relative;
	padding:20px 0;
	border-top:1px solid #ccc;
}

.croudf_history li p {
	color:#000;
	font-size:16px;
	line-height:1.6em;
}

.croudf_history_next {
	border-top:1px solid #ccc;
	padding:20px 0;
	text-align:center;
}

p.croudf_history_date span {
	font-size:12px;
	font-weight:bold;
	color:#000;
}

p.croudf_history_date {
	font-size:14px;
	line-height:1.7em;
}

div.croudf_history_return {
	padding:8px 0;
	width:100%;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
}

div.croudf_history_return > div {
	color:#000;
	font-size:14px;
	line-height:1.6em;
	box-sizing:border-box;
}

div.croudf_history_return > div:nth-of-type( 4n+1 ){
	width:55%;
}

div.croudf_history_return > div:nth-of-type( 4n+2 ), div.croudf_history_return > div:nth-of-type( 4n+3 ), div.croudf_history_return > div:nth-of-type( 4n+4 ){
	padding-left:8px;
	text-align:right;
	width:15%;
	position:relative;
}

div.croudf_history_return > div:nth-of-type( 4n+3 ):before {
	content:'×';
	position:absolute;
	left:18px;
	top:0;
}

div.croudf_history_return > div:nth-of-type( 4n+4 ):before {
	content:'=';
	position:absolute;
	left:18px;
	top:0;
}

div.croudf_history_return > div:nth-of-type( 4n+2 ) span, div.croudf_history_return > div:nth-of-type( 4n+3 ) span, div.croudf_history_return > div:nth-of-type( 4n+4 ) span{
	font-size:11px;
	color:#000;
}

p.croudf_history_sum {
	text-align:right;
	font-weight:bold;
}
p.croudf_history_sum span {
	font-size:13px;
}

a.courdf_history_receipt {
	position:absolute;
	right:0;
	top:15px;
	display:inline-block;
	width:120px;
	background-color:#99cc00;
	color:#fff;
	text-align:center;
	font-size:14px;
	line-height:26px;
	border-radius:6px;
}

.croudf_table {
	width:700px;
	min-width: 100%;
	border-collapse:collapse;
}

.croudf_table th, .croudf_table td {
	border:1px solid #777;
	font-size:14px;
	line-height:1.6em;
	color:#000;
	padding:6px 4px;
}

.croudf_table th {
	text-align:center;
	font-weight:bold;
	background-color:#99cc00;
	color:#fff;
}

#croudf_privacy {
	width:700px;
	min-width:100%;
	padding:0 8px;
	box-sizing:border-box;
	margin:auto;
	font-size:14px;
	line-height:1.6em;
	color:#000;
}

#croudf_privacy p {
	line-height:1.6em;
	font-size:14px;
	color:#000;
}
#croudf_privacy p.croudf_title {
	font-size:18px;
}
ol.count_list {
	counter-reset: number2;
	list-style: none;
	font-size:14px;
	line-height:1.6em;
}
ol.count_list > li:before {
	counter-increment: number2;
	content: counter(number2)". ";
	display: block;
	float: left;
	margin-left: -2em;
}
ol.count_list > li {
	padding-left: 2em;
	position: relative;
	color:#000;
}
ol.count_list > li:not(:first-of-type) {
	margin-top:8px;
}
ol.about_list {
	counter-reset: number;
	list-style: none;
	line-height:1.6em;
}
ol.about_list > li:before {
	counter-increment: number;
	content: "("counter(number)")";
	display: block;
	float: left;
	margin-left: -2em;
}
ol.about_list > li {
	margin-top:4px;
	padding-left: 2em;
	position: relative;
	color:#000;
}

.croudf_show_form {
	display:block;
}
.croudf_hidden_form {
	display:none;
}
.show_mobile {
	display:none;
}
@media screen and (max-width:640px) {
	html, body, article {
		max-width:100%;
		overflow-x:hidden;
	}
	#croudf_main_wrap {
		min-width:100%;
		max-width:100%;
		box-sizing:border-box;
	}
	#croudf_main {
		min-width:100%;
		max-width:100%;
		box-sizing:border-box;
	}
	#croudf_menu > ul > li, #croudf_menu2 > ul > li {
		font-size:12px;
		padding:4px 8px;
	}
	#croudf_menu, #croudf_menu2 {
		padding-right:0;
		overflow:hidden;
	}
	#croudf_menu > ul, #croudf_menu2 > ul {
		justify-content:center;
		flex-wrap:wrap;
	}
	#croudf_first_top {
		min-width:100%;
	}
	#croudf_first_top > div {
		width:100%;
		text-align:left;
	}
	#croudf_first_top > div > div h2 {
		font-size:24px;
		line-height:1.6em;
		width:100%;
		padding:0 16px;
		box-sizing:border-box;
	}
	#croudf_first_top > div > div p {
		font-size:16px;
		line-height:1.6em;
		padding:0 16px;
		box-sizing:border-box;
	}
	.croudf_title {
		font-size:18px;
		line-height:1.6em;
	}
	#croudf_list {
		min-width:100%;
		width:100%;
	}
	#croudf_list ul > li {
		width:100%;
		padding:0 12px;
		box-sizing:border-box;
	}
	#croudf_list ul > li:nth-of-type( 3n+1 ){
		padding-right:12px;
	}
	#croudf_main {
		max-width:100%;
	}
	.croudf_top, .croudf_left, .croudf_right, .croudf_detail, .croudf_return {
		padding-left:8px;
		padding-right:8px;
		box-sizing:border-box;
	}
	.croudf_top.has_main_image {
		align-items:flex-start;
		text-align:left;
	}
	.croudf_top.has_main_image h2 {
		width:100%;
		font-size:24px;
		line-height:1.5em;
		text-align:left;
	}
	.croudf_top.has_main_image .croudf_main_copy {
		width:100%;
		font-size:18px;
		line-height:1.5em;
		text-align:left;
	}
	.croudf_left, .croudf_right, .croudf_detail, .croudf_return {
		width:100%;
	}
	.croudf_return {
		margin-top:40px;
		margin-bottom:20px;
	}
	#croudf_privacy, .croudf_table {
		width:100%;
	}
	.show_mobile {
		display:block;
	}
	.show_pc {
		display:hidden;
	}
}
