@charset "UTF-8";


/* ====================================

	common.css
	---------------------------

	INDEX:
	---------------------------
		ALL SIZES:
			0. General
			1. Module
			2. Layout
			3. Header
			4. Navigation
			5. MainArea
			6. Footer

		Media Queries:
			Print styles

==================================== */

/* カスタム ==============================*/

a {
    font-weight: bold;
}
.mb_9 {
    margin-bottom: 9px!important;
}
.txt_center {
    text-align: center;
}
.txt_left {
    text-align: left;
}
.btn_contact_2 {
    margin: 12px 10px 12px 25px;
}
.p10 {
    padding: 10px;
}

/* キャンペーンバナー */
.campaign_banner {
    width: 90%;
    margin: 10px auto;
  }

/* 画像ポップアップ */
.c {
    text-align: center;
}
.overlay { /* グレーの背景 */
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.5s 0s ease;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#pop-up {
  display: none!important;
}
#pop-up:checked + .overlay {
  visibility: visible;
  opacity: 1;
  z-index: 100000;
  background-color: #000000D0;
  width: 100%;
}
.popWindow {
  border-radius: 5px;
  overflow: auto; /* スクロールバー用 */
  width: 100%;
  max-height: 95%; /* すき間 */
  min-width: fit-content; /* 横幅が広い時に白の部分が大きくならないため */
  max-width: 95%; /* すき間 */
  position: fixed;
  top: 50%; /* 中央に */
  left: 50%; /* 中央に */
  transform: translate(-50%, -50%); /* 中央に */
  z-index: 100010;
  font-size: 13px;
  line-height: 18px;
  margin: 10px auto;
  padding: 4px 10px;
  background: #FFFD; /* 枠の色 */
  text-align: center; /* 文字を中央寄せ */
  transition: all 500ms ease-in-out;
}
.popWindow .ptitle {
  font-size: 15px;
  margin: 8px;
  color: #333;
}
.popWindow .close {
  position: absolute;
  top: 8px;
  right: 10px;
  transition: all 300ms;
  font-size: 24px;
  line-height: inherit;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  padding: 2px;
}
.popWindow .close:hover {
  color: #06D85F;
}
.popWindow::-webkit-scrollbar-track {
  background: none;
}
.popWindow::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.popWindow::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 5px;
}
.clickable:hover {
  cursor: pointer;
}
@media screen and (max-width: 200px){
  #pop-up:checked + .overlay {
    visibility: hidden;
    opacity: 0;
  }
}

/* 画像ポップアップ2 */
#pop-up2 {
  display: none;
}
#pop-up2:checked + .overlay {
  visibility: visible;
  opacity: 1;
  z-index: 100000;
  background-color: #000000D0;
  width: 100%;
}
@media screen and (max-width: 200px){
  #pop-up2:checked + .overlay {
    visibility: hidden;
    opacity: 0;
  }
}

.accordion-001 {
    /*margin-bottom: 7px;*/
    border-bottom: 3px solid #FEECD2;
    background-color: #fff;
    /*border-radius: 5px;*/
}
.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2.5em 1em 1em;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%23ee7800%3B%22%2F%3E%0A%3C%2Fsvg%3E');
    background-position: right calc(1em - 7px) center;
    background-size: 23px;
    background-repeat: no-repeat;
    color: #ee7800;
    font-weight: 600;
    font-size: 19px;
    cursor: pointer;
    line-height: 23px;
}
.accordion-001 summary::-webkit-details-marker {
    display: none;
}
.accordion-001 summary::before,
.accordion-001 summary::after {
    position: absolute;
    right: calc(1em + 2.5px);
    width: 3px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    content: '';
}
.accordion-001 summary::before {
    rotate: 90deg;
}
.accordion-001 summary::after {
    transition: rotate .3s;
}
.accordion-001[open] summary::after {
    rotate: 90deg;
}
.accordion-001 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0.2em 1em 1.2em 1em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}
.accordion-001[open] p {
    transform: none;
    opacity: 1;
}
dl.faq_2 {
    padding:0!important;
}
summary p {
    font-size: 16px;
}

/* X(Twitter) セクション */
.x_box {
    width: 90%;
    border: 5px solid #6ab34c;
    padding: 1.75em;
    margin: 10px auto;
    border-radius: 15px;
  }
  .x_icon {
    height: 30px;
    width: auto;
    margin-right: 5px;
  }
  .x_follow_text {
    text-decoration: none;
    color: #000;
  }
  .x_follow_botton{
    width: fit-content;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f7f7f7;
    padding: 10px;
    margin: 0 auto 10px;
  }
  .x_text {
    text-align: left;
  }

.go-to-top {
    position: fixed;
    display: none;
    right: 10px;
    bottom: 90px;
    z-index: 99999;
}
.mr-9 {
    margin-right: -9px;
}
.pl10 {
    padding-left: 10px;
}
.w100 {
    width: 100%!important;
}
.list_plus {
    font-size: small;
    padding: 10px 9px 0 30px!important;
}
.pt22 {
    padding-top: 22px;
}
#wpadminbar {
    display: none!important;
}
#header_sp {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    border-bottom: gray 1px solid;
    background-color: #fff;
}
.header_inner_sp {
    /*width: 95%;*/
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.h_id_logo_sp {
    /* float: left; */
    /* padding: 2% 0 0 0; */
    /* width: 40%; */
    height: 100%;
    padding: 5px;
}
.h_tel_sp {
    /* float: right; */
    /* margin-top: 3%; */
    /* margin-right: 10px; */
    /* width: 50%; */
    /* text-align: right; */
    height: 100%;
    padding: 5px;
}
#header_sp > div > div.h_id_logo_sp > a > img {
  height: 100%!important;
  width: auto;
}
#header_sp > div > div.h_tel_sp > a > span > img{
    height: 100%!important;
}
/* ヘッダー追加分 231021 */
.nav_botton {
    color: #fff;
    background: #d5681c;
    font-size: 10px;
    text-align: center;
    height: 100%;
    width: 60px;
}
.nav_botton_box {
    height: 100%;
}
.h_inq_box {
 height: 100%;
 display: flex;
}
.apply_img{
  height: 62%;
}
.inq_img{
  height: 100%;
  width: auto;
}
.apply_txt {
  display: block;
  line-height: 1;
}

/* ===================================================

   ALL SIZES:

   =================================================== */
.list {
    text-align: left;
    padding-top: 10px;
    padding-left: 50px;
    list-style-type: disc;
}
.red {
    color: red;
}
.twitter-timeline {
    margin: 0 auto;
}
.box-notification {
    display: inline-block;
    color: red;
    font-size: 13px;
    line-height: 1.3;
    margin-top: 10px;
    text-align: left;
}
/* 220207 注意喚起 BOX :start */
.cautionbox{
  width: 95%;
  background-color: #fff5ee;
  margin: 30px auto 50px;
  padding: 30px;
}
.cautionbox-title{
  color: #ff6347;
  font-size: 23px;
  font-weight: bold;
}
 
.cautionbox p{
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  line-height:2.5em;
}
/* 220207 注意喚起 BOX :end */

/*	0. General
----------------------------- */
body {
    border-top: 8px solid #E60012;
}
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
/*	1. Module
-------------------------------- */
img {
    max-width: 100%;
    height: auto;
}

/*	2. Layout
----------------------------- */
#header {
    width: 100%;
    /* height: 190px; */
    margin-bottom: 10px;
}
.header_inner {
    width: 95%;
    margin: 0 auto;
    position: relative;
}
.h_id_logo {
    float: left;
    padding: 2% 0 0 0;
    width: 40%;
}
.h_tel {
    float: right;
    margin-top: 3%;
    margin-right: 10px;
    width: 50%;
    text-align: right;
}
#footer {
    background: #E60012;
    color: #fff;
    padding: 10px 0 20px 0;
}
#footer:after {
	content: "";
	display: block;
	clear: both;
}
.f_inner {
    width: 98%;
    margin: 0 auto;
    position: relative;
}
.f_inner:after {
	content: "";
	display: block;
	clear: both;
}

.fnav {
    text-align: center;
}
.fnav a {
	color: #fff;
    text-decoration: none;
}
.fnav a:hover {
    filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
}
.fnav {
    margin-bottom: 5px;
}
.fnav li {
    display: inline-block;
    font-size: 12px;
	border-left: 1px solid #D9D9D9;
	padding: 0 5px;
    letter-spacing: -.05em;
}
.fnav li:first-child {
	border: none;
	padding-left: 0px;
}
.copyright {
	font-size: 10px;
    text-align: center;
}
.btn_contact {
    text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}


/* ===================================================

   page styles

   =================================================== */
/* main */
.main_ttl01 {
    text-align: center;
    padding: 10px 0;
    background : #E60013;
    background : -moz-linear-gradient(50% 0% -90deg,rgba(230, 0, 19, 1) 0%,rgba(228, 1, 20, 1) 44.44%,rgba(221, 6, 22, 1) 62.14%,rgba(209, 14, 26, 1) 75.04%,rgba(193, 25, 32, 1) 84.94%,rgba(196, 23, 31, 1) 90.8%,rgba(205, 17, 27, 1) 94.88%,rgba(220, 7, 22, 1) 98.41%,rgba(230, 0, 18, 1) 100%);
  background : -webkit-linear-gradient(-90deg, rgba(230, 0, 19, 1) 0%, rgba(228, 1, 20, 1) 44.44%, rgba(221, 6, 22, 1) 62.14%, rgba(209, 14, 26, 1) 75.04%, rgba(193, 25, 32, 1) 84.94%, rgba(196, 23, 31, 1) 90.8%, rgba(205, 17, 27, 1) 94.88%, rgba(220, 7, 22, 1) 98.41%, rgba(230, 0, 18, 1) 100%);
  background : -webkit-gradient(linear,50% 0% ,50% 100% ,color-stop(0,rgba(230, 0, 19, 1) ),color-stop(0.4444,rgba(228, 1, 20, 1) ),color-stop(0.6214,rgba(221, 6, 22, 1) ),color-stop(0.7504,rgba(209, 14, 26, 1) ),color-stop(0.8494,rgba(193, 25, 32, 1) ),color-stop(0.908,rgba(196, 23, 31, 1) ),color-stop(0.9488,rgba(205, 17, 27, 1) ),color-stop(0.9841,rgba(220, 7, 22, 1) ),color-stop(1,rgba(230, 0, 18, 1) ));
  background : -ms-linear-gradient(-90deg, rgba(230, 0, 19, 1) 0%, rgba(228, 1, 20, 1) 44.44%, rgba(221, 6, 22, 1) 62.14%, rgba(209, 14, 26, 1) 75.04%, rgba(193, 25, 32, 1) 84.94%, rgba(196, 23, 31, 1) 90.8%, rgba(205, 17, 27, 1) 94.88%, rgba(220, 7, 22, 1) 98.41%, rgba(230, 0, 18, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#E60013', endColorstr='#E60012' ,GradientType=0)";
  background : linear-gradient(180deg, rgba(230, 0, 19, 1) 0%, rgba(228, 1, 20, 1) 44.44%, rgba(221, 6, 22, 1) 62.14%, rgba(209, 14, 26, 1) 75.04%, rgba(193, 25, 32, 1) 84.94%, rgba(196, 23, 31, 1) 90.8%, rgba(205, 17, 27, 1) 94.88%, rgba(220, 7, 22, 1) 98.41%, rgba(230, 0, 18, 1) 100%);
  background: linear-gradient(180deg, rgb(244 121 30) 0%, rgb(181 93 30) 95.44%)!important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E60013',endColorstr='#E60012' , GradientType=0);
}
.main_ttl01 img {
    max-width: 100%;
    height: 48px;
}
.main {
    width: 100%;
    margin-bottom: 20px;
}
.main_inner {
}
.main_t01 img {
    width:100%;
    height: auto;
}
.ct_mess {
    box-sizing: border-box;
    width: 95%;
    margin: 20px auto 20px;
    padding: 15px;
    border: 1px solid #5CB531;
    text-align: left;
    font-size: 16px;
    letter-spacing: -0.02em;
    background: #F0F7E9;
}
.ct_mess p + p {
    margin-top: 1em;
}

/* tw */
.tw_box {
    width: 95%;
    margin: 20px auto 0;
    padding: 20px;
    background: #FEECD2;
}
.price_ttl2 {
    width: 95%;
    margin: 20px auto;
    padding: 20px 0;
    background: lightgrey;
    font-size: 16px;
    color: red;
}
.price_ttl {
    width: 95%;
    margin: 20px auto 0;
    padding: 7px 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
    background : #E60013;
    background : -moz-linear-gradient(50% 0% -90deg,rgba(230, 0, 19, 1) 0%,rgba(228, 1, 20, 1) 44.44%,rgba(221, 6, 22, 1) 62.14%,rgba(209, 14, 26, 1) 75.04%,rgba(193, 25, 32, 1) 84.94%,rgba(196, 23, 31, 1) 90.8%,rgba(205, 17, 27, 1) 94.88%,rgba(220, 7, 22, 1) 98.41%,rgba(230, 0, 18, 1) 100%);
  background : -webkit-linear-gradient(-90deg, rgba(230, 0, 19, 1) 0%, rgba(228, 1, 20, 1) 44.44%, rgba(221, 6, 22, 1) 62.14%, rgba(209, 14, 26, 1) 75.04%, rgba(193, 25, 32, 1) 84.94%, rgba(196, 23, 31, 1) 90.8%, rgba(205, 17, 27, 1) 94.88%, rgba(220, 7, 22, 1) 98.41%, rgba(230, 0, 18, 1) 100%);
  background : -webkit-gradient(linear,50% 0% ,50% 100% ,color-stop(0,rgba(230, 0, 19, 1) ),color-stop(0.4444,rgba(228, 1, 20, 1) ),color-stop(0.6214,rgba(221, 6, 22, 1) ),color-stop(0.7504,rgba(209, 14, 26, 1) ),color-stop(0.8494,rgba(193, 25, 32, 1) ),color-stop(0.908,rgba(196, 23, 31, 1) ),color-stop(0.9488,rgba(205, 17, 27, 1) ),color-stop(0.9841,rgba(220, 7, 22, 1) ),color-stop(1,rgba(230, 0, 18, 1) ));
  background : -ms-linear-gradient(-90deg, rgba(230, 0, 19, 1) 0%, rgba(228, 1, 20, 1) 44.44%, rgba(221, 6, 22, 1) 62.14%, rgba(209, 14, 26, 1) 75.04%, rgba(193, 25, 32, 1) 84.94%, rgba(196, 23, 31, 1) 90.8%, rgba(205, 17, 27, 1) 94.88%, rgba(220, 7, 22, 1) 98.41%, rgba(230, 0, 18, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#E60013', endColorstr='#E60012' ,GradientType=0)";
  background : linear-gradient(180deg, rgba(230, 0, 19, 1) 0%, rgba(228, 1, 20, 1) 44.44%, rgba(221, 6, 22, 1) 62.14%, rgba(209, 14, 26, 1) 75.04%, rgba(193, 25, 32, 1) 84.94%, rgba(196, 23, 31, 1) 90.8%, rgba(205, 17, 27, 1) 94.88%, rgba(220, 7, 22, 1) 98.41%, rgba(230, 0, 18, 1) 100%);
  background: linear-gradient(180deg, rgb(244 121 30) 0%, rgb(181 93 30) 95.44%)!important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E60013',endColorstr='#E60012' , GradientType=0);
}
.price_list {
    width: 95%;
    height: 680px;
    margin: 20px auto;
    border: 1px solid #ccc;
    padding: 10px;
}
ul.m02_list {
    width: 95%;
    margin: 10px auto;
    color: #5CB531;
    text-align: left;
}
ul.m02_list li {
    font-size: 16px;
    text-indent: -1.4em;
    padding-left: 1.4em;
    line-height: 1.4;
}
ul.m02_list li + li {
    margin-top: 1em;
}
/* 3ステップ */
.step_ttl {
    text-align: center;
    padding: 5px 0;
    background: #60B630;
    background : -moz-linear-gradient(50% 100% 90deg,rgba(96, 182, 48, 1) 37.81%,rgba(130, 193, 79, 1) 77.74%,rgba(96, 182, 48, 1) 100%);
  background : -webkit-linear-gradient(90deg, rgba(96, 182, 48, 1) 37.81%, rgba(130, 193, 79, 1) 77.74%, rgba(96, 182, 48, 1) 100%);
  background : -webkit-gradient(linear,50% 100% ,50% 0% ,color-stop(0.3781,rgba(96, 182, 48, 1) ),color-stop(0.7774,rgba(130, 193, 79, 1) ),color-stop(1,rgba(96, 182, 48, 1) ));
  background : -o-linear-gradient(90deg, rgba(96, 182, 48, 1) 37.81%, rgba(130, 193, 79, 1) 77.74%, rgba(96, 182, 48, 1) 100%);
  background : -ms-linear-gradient(90deg, rgba(96, 182, 48, 1) 37.81%, rgba(130, 193, 79, 1) 77.74%, rgba(96, 182, 48, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#60B630', endColorstr='#60B630' ,GradientType=0)";
  background : linear-gradient(0deg, rgba(96, 182, 48, 1) 37.81%, rgba(130, 193, 79, 1) 77.74%, rgba(96, 182, 48, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#60B630',endColorstr='#60B630' , GradientType=0);
}
.step_ttl span {
    display: inline-block;
    width: 95%;
    margin: 0 auto;
}
.step {
    text-align: center;
    background: #ECF4E3;
    padding: 20px 0 20px; 
    margin-bottom: 20px;
}
.setp_set {
    box-sizing: border-box;
    width: 90%;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #C0DD98;
    border-radius: 10px;
    padding: 15px;
    text-align: left;
}
.setp_set + .setp_set {
    margin-top: 20px;
}
.step_ttl02 {
    margin: -30px 0 10px -20px;
}
.step_ttl02 img {
    height: 80px;
}
.step_img {
    margin-bottom: 10px;
}
.reason {
    text-align: center;
    background: #FFF5E0;
    padding: 30px 0;
    margin-bottom: 20px;
}

.reason2 {
    text-align: center;
    background: #FFF5E0;
    padding: 10px 0;
    margin-bottom: 10px;
}

.reason3 {
    text-align: center;
    background: #e0ffff;
    padding: 10px 5px;
    margin: 10px 5px;
}

.reason_ttl01 {
    width: 95%;
    margin: 0 auto 10px;
}
.reason_set {
    box-sizing: border-box;
    width: 90%;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #FACD89;
    border-radius: 10px;
    padding: 15px;
    text-align: left;
}
.reason_set + .reason_set {
    margin-top: 20px;
}
.reason_ttl02 {
    margin: -5px 0 10px -26px;
}
.reason_ttl02 > img {
    height: 36px;
}
.reason_set_in:after {
	content: "";
	display: block;
	clear: both;
}
.reason_img {
    float: right;
    margin: 0 0 5px 5px;
    width: 50%;
}
.faq_box {
    background: #FEECD2;
    padding: 30px 0;
    margin-bottom: 20px;
}
.faq_ttl {
    width: 90%;
    padding: 10px 0 7px;
    margin: 0 auto;
    text-align: center;
    background : -moz-linear-gradient(50% 100% 90deg,rgba(247, 176, 68, 1) 37.81%,rgba(252, 223, 181, 1) 77.74%,rgba(246, 169, 48, 1) 100%);
    background : -webkit-linear-gradient(90deg, rgba(247, 176, 68, 1) 37.81%, rgba(252, 223, 181, 1) 77.74%, rgba(246, 169, 48, 1) 100%);
    background : -webkit-gradient(linear,50% 100% ,50% 0% ,color-stop(0.3781,rgba(247, 176, 68, 1) ),color-stop(0.7774,rgba(252, 223, 181, 1) ),color-stop(1,rgba(246, 169, 48, 1) ));
    background : linear-gradient(0deg, rgba(247, 176, 68, 1) 37.81%, rgba(252, 223, 181, 1) 77.74%, rgba(246, 169, 48, 1) 100%);
    border-radius : 14px 14px 0px 0px;
    -moz-border-radius : 14px 14px 0px 0px;
    -webkit-border-radius : 14px 14px 0px 0px;
}
.faq_ttl img {
    height: 38px;
}
.faq_wrap {
    width: 90%;
    margin: 0 auto;
    background: #fff;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
dl.faq {
    padding: 20px;
    font-size: 18px;
}
.faq dt {
    color: #EE7800;
    margin-bottom: 5px;
    line-height: 1.4;
    text-indent: -1.4em;
    padding-left: 1.4em;
}
.faq dd + dt {
    margin-top: 1.5em;
}
.faq dd {
    font-size: 16px;
    text-indent: -1.3em;
    padding-left: 1.3em;
}
/* フォーム */

.sec_from {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    box-sizing: border-box;
    background: #fff;
}
.form_ttl {
    background: #DAE9B5;
    text-align: center;
    line-height: 1;
    padding: 12px 0 6px;
}
.btn_form {
    width: 90%;
    margin: 0 auto 30px;
    text-align: center;
}
table.formTable {
    margin-bottom: 30px;
    border-collapse:collapse;
    font-size: 1.3em;
}
table.formTable td,table.formTable th{
	border:1px solid #C1DB81;
	padding:15px;
    vertical-align: top;
    color: #333;
}
table.formTable th{
	font-weight:normal;
	background:#f9f7f1;
	text-align:left;
}

table.type03 {
    border-collapse: collapse;
    text-align: left;
    line-height: 1.5;
    border-top: 1px solid #ccc;
    border-left: 3px solid #369;
}
table.type03 th {
    width: 147px;
    padding: 10px;
    font-weight: bold;
    vertical-align: top;
    color: #153d73;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
table.type03 td {
    width: 349px;
    padding: 10px;
    vertical-align: top;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}


input,
textarea {
	width: 95%;
	padding: .5em;
    /* border: 2px solid #ccc; */
    font-size: 1em;
    color: #333;
}
input.radio_btn {
    width: 1em;
    padding: 0;
    border: none;
}
.icon {
    display: inline-block;
    color: #fff;
    background: #E60012;
    font-size: 12px;
    line-height: 1;
    padding: 2px 5px;
    margin: 0 0 0 .8em; 
}

.btn_form:hover {
    filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
    cursor: pointer;
}

.btn_back {
    font-size: 1.2em;
}
.atten {
    font-size: .8em;
}
.radio_set {
    font-size: .8em;
    margin-bottom: .5em;
}
.form-atten {
    text-align: center;
    font-size: 1.5em;
    color: #2AA42A;
    margin-bottom: 10px;
}
.form_notes {
    color: #727171;
    font-size: 13px;
    margin-top: 5px;
    text-align: left;
}
.select_dbox {
    width: 80%;
    float: none;
    margin: 0 auto;
    text-align: center;
}
.select_dbox + .select_dbox {
    margin-top: 20px;
}
.select_dbox.last {
}
.select_dbox label {
    font-weight: bold;
    line-height: 1;
}
.t_box_size {
    font-size: 12px;
    margin-bottom: 5px;
}
.select_dbox select {
    width: 5em;
    margin-right: 8px;
    font-size: 1.2em;
    margin-top: 10px;
}
.small {
    font-size: 13px;
    line-height: 1.3;
    margin-top: 5px;
    text-align: left;
}

/* 無料キット */
.kit_box {
    width: 95%;
    margin: 0 auto 30px;
    padding: 20px 20px 30px;
    background: #1897D4;
}
.kit_box_in {
    margin: 0 auto;
    padding: 10px 10px 20px;
    background: #fff;
}   
.kit_box_in:after {
	content: "";
	display: block;
	clear: both;
}
.kit_col_l {
}
.kit_m04 {
    margin-bottom: 8px;
    font-size: 18px;
}
.kit_m04 span {
    padding: 3px 5px;
    background: #007CC3;
    color: #FFF33B;
}
.sage {
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: .5em;
}
.aka {
    color: #E7211A;
    font-size: 90%;
}
.no_kit_atten {
    border: 1px solid #FF0000;
    padding: 10px;
    color: #FF0000;
    margin-bottom: 20px;
    font-size: 12px;
}
.no_kit_atten > h4 {
    font-size: 14px;
    font-weight: bold;
}
.dm-bnr {
	display: block;
	margin: 0 auto 70px;
	padding: 0;

}
.dm-bnr img {
	display: block;
	margin: 0 auto;
}
