/* エフェクト */
.fade_in {
	opacity : 0.0;
	transition : all 1500ms;
}
.fade_in.active {
	opacity : 1;
}
.scroll_in {
	opacity : 0.0;
	transform : translate(0, 15px);
	transition : all 1000ms;
}
.scroll_in_left {
	opacity : 0.0;
	transform : translate(-15px, 0);
	transition : all 1000ms;
}
.scroll_in_right {
	opacity : 0.0;
	transform : translate(15px, 0);
	transition : all 1000ms;
}

.scroll_in.active, .scroll_in_left.active, .scroll_in_right.active {
	opacity : 1;
	transform : translate(0, 0);
}
.scroll_in_right:nth-of-type(2), .scroll_in_left:nth-of-type(2), .scroll_in:nth-of-type(2), .fade_in:nth-of-type(2) {
	-moz-transition-delay:200ms;-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;-ms-transition-delay:200ms;
}
.scroll_in_left:nth-of-type(3), .scroll_in_left:nth-of-type(3), .scroll_in:nth-of-type(3), .fade_in:nth-of-type(3) {
	-moz-transition-delay:400ms;-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;-ms-transition-delay:400ms;
}
.scroll_in_left:nth-of-type(4), .scroll_in_left:nth-of-type(4), .scroll_in:nth-of-type(4), .fade_in:nth-of-type(4) {
	-moz-transition-delay:600ms;-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;-ms-transition-delay:600ms;
}
.scroll_in_left:nth-of-type(5), .scroll_in_left:nth-of-type(5), .scroll_in:nth-of-type(5), .fade_in:nth-of-type(5) {
	-moz-transition-delay:400ms;-webkit-transition-delay:400ms;
	-o-transition-delay:800ms;-ms-transition-delay:800ms;
}
.scroll_in_left:nth-of-type(6), .scroll_in_left:nth-of-type(6), .scroll_in:nth-of-type(6), .fade_in:nth-of-type(6) {
	-moz-transition-delay:1000ms;-webkit-transition-delay:1000ms;
	-o-transition-delay:1000ms;-ms-transition-delay:1000ms;
}
.scroll_in_left:nth-of-type(7), .scroll_in_left:nth-of-type(7), .scroll_in:nth-of-type(7), .fade_in:nth-of-type(7) {
	-moz-transition-delay:1200ms;-webkit-transition-delay:1200ms;
	-o-transition-delay:1200ms;-ms-transition-delay:1200ms;
}
.scroll_in_left:nth-of-type(8), .scroll_in_left:nth-of-type(8), .scroll_in:nth-of-type(8), .fade_in:nth-of-type(8) {
	-moz-transition-delay:1400ms;-webkit-transition-delay:1400ms;
	-o-transition-delay:1400ms;-ms-transition-delay:1400ms;
}


.rotation{
  animation:1s linear infinite rotation;
}
@keyframes rotation{
  0%{ transform:rotate(-5deg);}
  50%{ transform:rotate(5deg); }
  100%{ transform:rotate(-5deg); }
}


.loop_box {
    display: flex;
    width: 100%;
    overflow: hidden;
}
.loop_box img:first-child {
    animation: loop 40s -20s linear infinite;
}
.loop_box img:last-child {
    animation: loop2 40s linear infinite;
}
@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}




/* ワードプレス用 */
.has-text-align-center {
	text-align: center;
}
.has-text-align-right {
	text-align: right;
}
.wp-block-image {
	margin: 0;
}



:root {
	--white: #FFFFFF;
	--black: #3B3B3B;
	--red: #DC0101;
	--red2: #FF1950;
	--brown: #42210B;
	--pink: #E93C8D;
	--pink2: #FB4B81;
	--green: #2DB150;
	--green2: #07B5A9;
	--green3: #A9F1E0;
	--blue: #5392FF;
	--orange: #F9994F;
	--gray: #F3F3F3;
}
.green { color: var(--green); }
.blue { color: var(--blue); }
.pink2 { color: var(--pink2); }




body {
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.7;
	color: var(--black);
}
a {
	color: var(--black);
}
p {
	margin: 1.0em 0;
}
li {
	margin: 10px 0;
}
img {
	max-width: 100%;
}
h1 {
	margin: 0;
}
h2 {
	font-size: 2.6rem;
	margin: 0;
}
h3 {
	font-size: 2.0rem;
	margin: 0;
}
h4 {
	font-size: 1.8rem;
	margin: 0;
}
h5 {
	font-size: 1.6rem;
	margin: 0;
}
input[type=text], textarea {
	padding: 15px 15px 12px;
	width: 100%;
	font-size: 20px;
	border: none;
	outline: none;
	box-sizing: border-box;
}
input[type=button] {
	background: var(--orange);
	color: var(--white);
	display: inline-block;
	width: 250px;
	font-size: 22px;
	text-align: center;
	border-radius: 30px;
	border: none;
	padding: 15px 15px 10px;
	cursor: pointer;
	font-weight: bold;
	box-shadow: 2px 2px #eee;
	margin-top: 20px;
}
textarea {
	height: 200px;
}
.btn_contact_form {
	transform: scale(0.95);
	transition: 0.5s;
}
.btn_contact_form:hover {
	transform: scale(1.0);
}
.btn_contact {
	transition: 0.5s;
}
.btn_contact:hover {
	opacity: 0.8;
}



.errmsg {
	color: #f22;
	border: 3px #f22 solid;
	padding: 10px 15px;
	background: #fff;
	font-size: 1rem;
	margin-bottom: 40px;
}
.flex { display: flex; }
.bold { font-weight: bold; }
.normal { font-weight: normal; }
.underline { text-decoration: underline; }
.wrap {
	margin: 0 auto;
	padding: 0 10px;
	box-sizing: border-box;
}
.w1400 {
	width: 1400px;
}
.w1200 {
	width: 1200px;
}
.w1024 {
	width: 1024px;
}
.w767 {
	width: 767px;
}
.center {
	display: block;
	text-align: center;
}



.head_top .logo {
	width: 400px;
}
.box_top {
	background-image: url(images/bg_top.jpg);
	background-size: cover;
	position: relative;
	height: 100vh;
}
.box_top .description {
	color: var(--brown);
	padding: 20px 50px;
	font-size: 18px;
}
.box_top .head_top div {
	width: 50%;
	text-align: center;
}
.box_top h2 {
	background: var(--pink);
	color: var(--white);
	padding: 10px 50px;
	width: 1024px;
	border-radius: 50px;
	box-sizing: border-box;
	margin: 30px 0 20px;
	position: relative;
	z-index: 2;
}
.box_top .main {
	position: relative;
}
.box_top .message {
	padding: 20px 40px;
	box-sizing: border-box;
	position: relative;
	z-index: 4;
	width: 70%;
}
.box_top .gacha {
	position: absolute;
	top: -50px;
	right: 20px;
	z-index: 3;
	width: 550px;
}
.box_top .facility {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.box_top .message1 {
	position: absolute;
	z-index: 4;
	left: 100px;
	bottom: -100px;
}
.box_top .message2 {
	position: absolute;
	z-index: 4;
	left: 420px;
	bottom: -100px;
}
.box_top .message3 {
	position: absolute;
	z-index: 4;
	left: 900px;
	bottom: 50px;
}

.box_owner {
	padding: 100px 0;
	position: relative;
}
.box_owner .content {
	padding-left: 40px;
	margin: 40px 0;
}
.box_owner .message {
	background: var(--red);
	color: var(--white);
	padding: 15px 30px;
	border-radius: 50px 0 0 50px;
	box-sizing: border-box;
}
.box_owner .box_text {
	padding-left: 200px;
	width: 60%;
}
.box_owner .box_image {
	width: 40%;
	background: url(images/owner_image.jpg);
	background-size: cover;
}
.box_owner .box_image img {
	height: 100%;
	object-fit: cover;
}
.box_zero {
	background-image: url(images/bg_zero.jpg);
	background-size: cover;
	padding: 120px 10px 70px;
}
.box_zero .box_default {
	padding: 20px 25px;
	box-sizing: border-box;
}
.box_zero .main {
	position: relative;
	margin-bottom: 50px;
}
.box_zero .message {
	background: var(--white);
	color: var(--blue);
	border: 3px var(--blue) solid;
	border-radius: 30px;
	padding: 10px;
	text-align: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 50px;
	box-sizing: border-box;
}
.box_zero .zero {
	background: var(--white);
	padding: 15px;
	border-radius: 20px;
	border: 3px var(--black) solid;
	width: 300px;
	text-align: center;
	position: absolute;
}
.box_zero .zero1 {
	left: 100px;
	top: 45%;
	transform: translateY(-45%);
}
.box_zero .zero1::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 20px solid var(--black);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.box_zero .zero1::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 20px solid var(--white);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.box_zero .zero2 {
	left: 50%;
	top: -50px;
	transform: translateX(-50%);
}
.box_zero .zero2::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  border-top: 20px solid var(--black);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
.box_zero .zero2::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-top: 20px solid var(--white);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
.box_zero .zero3 {
	right: 100px;
	top: 45%;
	transform: translateY(-45%);
}
.box_zero .zero3::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-right: 20px solid var(--black);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.box_zero .zero3::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  border-right: 20px solid var(--white);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.box_zero .bottom {
	margin-top: 30px;
	gap: 30px;
	justify-content: center;
	align-items: center;
}
.box_zero .bottom .text {
	font-size: 1.6rem;
}
.box_merit {
	padding: 70px 10px;
}
.box_merit .box_default::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -23px;
  border-top: 20px solid var(--green);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
.box_merit .box_default::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-top: 20px solid var(--white);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
.box_merit .logo {
	width: 350px;
	vertical-align: middle;
}
.box_merit .box_default {
	color: var(--green);
	border: 5px var(--green) solid;
	text-align: center;
	padding-bottom: 30px;
	line-height: 2.5;
	margin-bottom: 50px;
	position: relative;
}
.box_merit .main dl {
	margin-top: 50px;
	display: flex;
}
.box_merit .main dd {
	width: 1000px;
}
.box_merit h3 {
	border-bottom: 1px #262626 solid;
	padding-bottom: 12px;
}
.box_zero2 {
	background: var(--gray);
	color: var(--blue);
	padding: 30px 10px;
}
.box_zero2 .flex {
	gap: 20px;
	align-items: center;
	justify-content: center;
}
.box_zero2 .label {
	background: var(--blue);
	color: #fff;
	display: block;
	width: 120px;
	padding: 5px 10px;
	text-align: center;
	margin: 10px 0;
}
.box_flow {
	padding: 100px 0;
	color: var(--blue);
}
.box_flow .top_description {
	display: inline-block;
	position: relative;
}
.box_flow .top_description:before{
	content: "(カプセル自販機)";
	font-size: 16px;
	position: absolute;
	width: 100%;
	text-align: center;
	top: -15px;
}
.box_flow .flow {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
	margin: 50px 0;
}
.box_flow .flow h3 {
	text-align: center;
	margin: 0;
}
.box_flow .flow dl {
	width: 48%;
	display: flex;
	margin: 0;
}
.box_flow .flow dt {
	width: 120px;
}
.box_flow dd {
	background: var(--blue);
	color: var(--white);
	padding: 15px 25px;
	width: calc(100% - 120px);
}
.box_qa {
	padding: 40px 10px;
	background: var(--green3);
}
.box_qa h3 {
	margin: 20px 0 10px;
}
.box_qa .qa img {
	position: relative;
	top: 20px;
}
.box_qa dl {
	margin: 40px 0;
}
.box_qa dt, .box_qa dd {
	display: flex;
	margin-left: 0;
	align-items: flex-start;
	gap: 15px;
}
.box_qa dd {
	font-weight: normal;
}
.box_voice {
	padding: 70px 0;
}
.box_voice h2 img {
	vertical-align: middle;
	padding: 0 30px;
}
.box_voice .flex {
	gap: 20px;
	margin: 80px 0 60px;
}
.box_voice .case {
	border: 5px var(--black) solid;
	border-radius: 20px;
	position: relative;
	padding: 10px 20px;
	box-shadow: 3px 3px #e5e5e5;
}
.box_voice .case p {
	margin-top: 10px;
}
.box_voice h4 {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	text-align: center;
	background: #fff;
	border: 5px var(--black) solid;
	border-radius: 10px;
	padding: 5px;
}
.box_voice h5 {
	margin-top: 40px;
	text-align: center;
}
.box_contact {
	padding: 70px 0;
	background: var(--gray);
}
.box_contact dl {
	display: flex;
}
.box_contact dt {
	display: flex;
	gap: 10px;
	align-items: center;
	width: 35%;
}
.box_contact dd {
	width: 65%;
}
.box_contact .label {
	display: inline-block;
	width: 80px;
	text-align: center;
	padding: 3px 10px;
	border-radius: 7px;
}
.box_contact .label1 {
	background: var(--pink2);
	color: var(--white);
}
.box_contact .label2 {
	background: var(--green2);
	color: var(--white);
}
.box_footer {
	background-image: url(images/bg_footer.jpg);
	background-size: cover;
	padding: 70px 0;
	position: relative;
}
.box_footer .text {
	width: 60%;
}
.box_footer .image {
	width: 40%;
	position: relative;
	left: 50px;
}
.box_footer .box_default {
	padding: 25px 15px;
}
.box_info {
	padding: 70px 0;
}
.box_info h2 {
	padding-bottom: 40px;
	border-bottom: 5px var(--gray) solid;
	margin-bottom: 20px;
}
.box_info p {
	font-weight: normal;
}
.box_info ul {
	list-style: none;
	padding-left: 0;
	margin: 20px 0;
}
.box_info li {
	display: flex;
	align-items: center;
	border-bottom: 1px #e5e5e5 solid;
	padding-bottom: 10px;
}
.box_info .post_date {
	font-size: 1rem;
	width: 180px;
}
.box_info .post_title {
	text-decoration: none;
}
.box_policy {
	padding: 70px 0;
}
.box_policy h2 {
	padding-bottom: 40px;
	border-bottom: 5px var(--gray) solid;
	margin-bottom: 20px;
}
.box_policy p {
	font-weight: normal;
}
.box_default {
	background: var(--white);
	padding: 25px 0;
	box-shadow: 3px 3px #e5e5e5;
	border-radius: 30px;
}
.btn_prev {
	width: 150px !important;
}
footer .copyright {
	text-align: center;
	font-size: 1.2rem;
	padding: 25px 10px;
}



@media (max-width: 1400px) {
	.w1400 {
		width: 100%;
	}
	h2 {
		font-size: 2.2rem;
	}
	h3 {
		font-size: 1.8rem;
	}
	h4, h5 {
		font-size: 1.5rem;
	}
	.box_top .gacha {
		width: 450px;
	}
	.box_top .message1 {
		width: 250px;
		left: 50px;
		bottom: -50px;
	}
	.box_top .message2 {
		width: 350px;
		left: 350px;
		bottom: -50px;
	}
	.box_top .message3 {
		left: 750px;
		width: 300px;
	}
	.box_footer .image {
		left: auto;
	}
	.box_owner .box_text {
		padding-left: 30px;
		box-sizing: border-box;
	}
}
@media (max-width: 1200px) {
	.w1200 {
		width: 100%;
	}
	.box_top h2 {
		width: 100%;
	}
	.box_top .gacha {
		width: 350px;
	}
	.box_top .message1 {
		bottom: 0;
	}
	.box_top .message2 {
		left: 320px;
		bottom: 0;
	}
	.box_top .message3 {
		left: 680px;
		bottom: 0;
	}
}
@media (max-width: 1024px) {
	body {
		font-size: 18px;
	}
	input[type=text], textarea {
		font-size: 18px;
	}
	input[type=button] {
		font-size: 18px;
	}
	.w1024 {
		width: 100%;
	}
	h2 {
		font-size: 1.8rem;
	}
	h3 {
		font-size: 1.5rem;
	}
	h4, h5 {
		font-size: 1.3rem;
	}
	.head_top .contact {
		display: none;
	}
	.box_top .description {
		font-size: 16px;
		padding: 10px 0;
	}
	.box_top .message1 {
		width: 160px;
		left: 0;
		bottom: 50px;
	}
	.box_top .message2 {
		width: 250px;
		left: 50%;
		transform: translateX(-50%);
		bottom: 170px;
	}
	.box_top .message3 {
		width: 200px;
		left: auto;
		right: 5px;
		bottom: 50px;
	}
	.box_owner {
		padding: 80px 10px 40px;
	}
	.box_owner .flex {
		display: block;
	}
	.box_owner .box_text {
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
	}
	.box_owner .box_image {
		width: 100%;
	}
	.box_owner .message {
		border-radius: 50px;
	}
	.box_zero .bottom .text {
		font-size: 1.4rem;
	}
	.box_merit .main dl {
		margin-top: 25px;
	}
	.box_merit .main dt {
		width: 20%;
	}
	.box_merit .main dd {
		margin-left: 15px;
		width: 80%;
	}
	.box_qa dl {
		margin: 20px 0;
	}
	footer .copyright {
		font-size: 1.0rem;
	}
}





@media (max-width: 767px) {
	body {
		font-size: 15px;
		line-height: 1.6;
	}
	input[type=text], textarea {
		font-size: 16px;
	}
	.w767 {
		width: 100%;
	}
	.errmsg {
		padding: 10px;
		font-size: 0.9rem;
	}
	.flex { display: block; }
	.sp_none { display: none; }
	h2 {
		font-size: 1.4rem;
	}
	h3 {
		font-size: 1.2rem;
	}
	h4, h5 {
		font-size: 1.1rem;
	}
	.box_top .head_top div {
		width: 220px;
		margin: 10px auto;
	}
	.box_top .description {
		font-size: 14px;
		width: calc(100% - 60px);
	}
	.box_top .message1 {
		width: 130px;
		bottom: 0;
	}
	.box_top .message2 {
		width: 220px;
		bottom: 80px;
	}
	.box_top .message3 {
		width: 170px;
		bottom: 0;
	}
	.box_top .message {
		width: 100%;
		padding: 0;
	}
	.box_top .gacha {
		top: 70px;
		width: 150px;
		right: 10px;
	}
	.box_top h2 {
		padding: 5px 30px;
		margin-top: 15px;
	}
	.box_owner .content {
		padding-left: 0;
		margin: 20px 0 40px;
	}
	.box_zero .image {
		width: 60%;
	}
	.box_zero .zero {
		width: 80px;
		font-size: 1.0rem;
	}
	.box_zero {
		padding: 80px 10px 30px;
	}
	.box_zero .zero1 {
		left: 0;
		top: 30%;
		transform: translateY(-30%);
	}
	.box_zero .zero1::before {
		right: -12px;
		border-left: 10px solid var(--black);
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
	}
	.box_zero .zero1::after {
		right: -8px;
	    border-left: 10px solid var(--white);
	    border-top: 10px solid transparent;
	    border-bottom: 10px solid transparent;
	}
	.box_zero .zero2::before {
	    bottom: -12px;
	    border-top: 10px solid var(--black);
	    border-right: 10px solid transparent;
	    border-left: 10px solid transparent;
	}
	.box_zero .zero2::after {
	    bottom: -8px;
	    border-top: 10px solid var(--white);
	    border-right: 10px solid transparent;
	    border-left: 10px solid transparent;
	}
	.box_zero .zero3::before {
	    left: -12px;
	    border-right: 10px solid var(--black);
	    border-top: 10px solid transparent;
	    border-bottom: 10px solid transparent;
	}
	.box_zero .zero3::after {
	    left: -8px;
	    border-right: 10px solid var(--white);
	    border-top: 10px solid transparent;
	    border-bottom: 10px solid transparent;
	}
	
	.box_zero .zero3 {
		right: 0;
		top: 30%;
		transform: translateY(-30%);
	}
	.box_zero .message {
		position: initial;
		transform: none;
		margin-top: 20px;
	}
	.box_zero .main {
		margin-bottom: 30px;
		padding: 0;
	}
	.box_zero .box_default {
		padding: 15px 20px;
	}
	.box_zero .bottom {
		margin-top: 10px;
	}
	.box_zero .bottom .text {
		font-size: 1.2rem;
	}
	.box_merit {
		padding: 40px 10px 10px;
	}
	.box_merit .box_default {
		padding: 15px;
		line-height: 1.6;
		margin-bottom: 30px;
	}
	.box_merit .logo {
		width: 80%;
		display: block;
		margin: 15px auto;
	}
	.box_zero2 .flex {
		text-align: center;
	}
	.box_zero2 .label {
		display: inline-block;
		width: 80px;
	}
	.box_zero2 .message3 {
		margin-bottom: 15px;
	}
	.box_flow {
		padding: 50px 0 30px;
	}
	.box_flow .top_description:before {
		font-size: 13px;
	}
	.box_flow .flow {
		padding: 0;
		margin: 30px 0;
		display: block;
	}
	.box_flow .flow dl {
		width: 100%;
		margin-bottom: 10px;
	}
	.box_flow .flow dt {
		width: 50px;
		margin-left: 10px;
	}
	.box_flow .flow dd {
		margin-left: 20px;
		width: calc(100% - 50px);
		padding: 10px 15px;
	}
	.box_qa dl {
		margin: 0;
	}
	.box_qa dt, .box_qa dd {
		gap: 10px;
	}
	.box_qa .box_default {
		padding: 10px 10px 0 15px;
	}
	.box_voice {
		padding: 40px 0;
	}
	.box_voice .flex {
		margin: 60px 0 0;
	}
	.box_voice h2 img {
		padding: 0 30px;
		height: 40px;
	}
	.box_voice .case {
		border: 3px var(--black) solid;
		margin-bottom: 50px;
	}
	.box_voice h4 {
		border: 3px var(--black) solid;
		top: -23px;
		width: 50%;
	}
	.box_voice h5 {
		margin-top: 25px;
	}
	.box_contact {
		padding: 40px 0 40px;
	}
	.box_contact h2 {
		margin-bottom: 10px;
	}
	.box_contact dl {
		display: block;
	}
	.box_contact dt, .box_contact dd {
		width: 100%;
		margin-left: 0;
		margin-bottom: 7px;
	}
	.box_contact .label {
		width: 50px;
		padding: 2px 7px;
	}
	.box_footer {
		padding: 40px 0;
	}
	.box_footer .text {
		width: 100%;
	}
	.box_footer .box_default {
		padding: 15px;
	}
	.box_footer .box_default ul {
		padding-left: 20px;
	}
	.box_footer .logo {
		display: block;
		width: 220px;
		margin-left: 10px;
	}
	.box_footer .image {
		position: absolute;
		right: 10px;
		bottom: 0;
	}
	.box_info {
		padding: 40px 0;
	}
	.box_info h2 {
		padding-bottom: 20px;
		margin-bottom: 0;
	}
	.box_info li {
		display: block;
		padding-bottom: 7px;
	}
	.box_info .post_date {
		display: block;
		font-size: 0.85rem;
	}
	.box_policy {
		padding: 40px 0 0;
	}
	.box_policy h2 {
		padding-bottom: 20px;
		margin-bottom: 0;
	}
	footer .copyright {
		font-size: 0.8rem;
	}
	.btn_prev {
		width: 100px !important;
	}
	.btn_submit {
		width: 200px !important;
	}
}
