@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700&display=swap');

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,
legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}

html {
  overflow: auto;
}
body {
  -webkit-print-color-adjust: exact;
  overflow:hidden;
  font-size: 16px;
  line-height:1.6;
  color:#000;
  font-feature-settings: "palt";
  font-family: 'M PLUS 1p', sans-serif;
  font-weight:400;
}

input,select,textarea,button{
  font-weight:400;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotate(0.05deg);
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dd,dt{
  margin:0;padding:0px;
  font-weight:500;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotate(0.05deg);
}
p{
  transform: rotate(0.05deg);

}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}


a {
  text-decoration: none; 
  color:#494949;
  transform: rotate(0.05deg);
}
a:hover {
  text-decoration: none;
  transform: rotate(0.05deg);
}
/*a img:hover { opacity: 0.9; -moz-opacity: 0.9;}*/
a img {
  border-style:none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

button{
  background-color: transparent;
  border: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

textarea{
  resize: vertical;
  min-height: 3em;
  max-height: 25em;
  height: 10em;
}

button:focus,
input:focus,
select:focus,
textarea:focus{
  outline: none;
}
button:hover{
  cursor:pointer
}

table{
  border-collapse: collapse;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*--------------------------------------------------------
定数 ※個別設定
--------------------------------------------------------*/

/*透かし文字*/
{
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/*共通設定*/
.pc-none{
  display: none;
}

.row{
  width:100%;
  margin:0 auto;
  text-align:center;
}
.in_row{
  width:1100px;
  margin:0 auto;
  text-align:center;
}

/*@media screen and (max-width: 1100px){
  .in_row{
    width:100%;
    padding:0 10px 0;
    box-sizing:border-box;
    margin:0 auto;
    text-align:center;
  }
}*/



/* IE hack */
_:-ms-input-placeholder, :root 
.boxsample {
  display: flex; /* 子要素をflexboxで揃える */
  flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
  justify-content: center; /* 子要素をflexboxにより中央に配置する */
  align-items: center;  /* 子要素をflexboxにより中央に配置する */
}
/*firefox hack*/
@-moz-document url-prefix() {
  div.boxsample{
  -webkit-border-radius: 5px;/* for Safari and Chrome */
  -moz-border-radius: 5px; /* for Firefox */
  -o-border-radius: 5px; /* for opera */
  border-radius: 5px;
  }
}


/* -----------------------------------
  **. Loader
------------------------------------- */
/*loading circle*/
#loading{
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
    margin:auto;
}
#loading img{
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
#loader-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    right:0;
    bottom:0;
    background: #FFF;
    z-index: 500000;
}

@keyframes rotate {
  0%    { transform: rotate(0deg); }
  100%  { transform: rotate(360deg); }
}

/*--------------------------------------------------------
ヘッダー
--------------------------------------------------------*/
div.head_main{
  width: 100%;
  border-bottom:1px solid #002776;
}
div.head_in{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  padding:20px 0 20px;
}
div.head_logo_area{width: 40%;}
div.head_logo_area img{width: 100%;}
div.head_navi_area{
  margin-left:auto;
}

/*--------------------------------
ナビゲーション
---------------------------------*/
.hamburger{
  display:none;
}
.globalMenuSp{

}
.globalMenuSp ul{
  display:flex;
  justify-content:center;
  align-items:center;
}
.globalMenuSp ul li{
  padding:0 12px 0;
}
.globalMenuSp ul li a{
  font-size:14px;
  color:#000;
}
.globalMenuSp ul li a:hover{
  color:#005aff;
}
.head_btn{
  padding:5px 15px 5px;
  font-size:14px;
  color:#fff !important;
  margin: auto;
  background-color: #005aff;
  border: solid 2px #fff;
  -moz-border-radius: 60px;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  box-shadow: 0 0 0 3px #4bbb57;
  -webkit-box-shadow: 0 0 0 3px #005aff;
  -moz-box-shadow: 0 0 0 3px #005aff;
  transition: all 0.7s ease;
}
.head_btn:hover{
  opacity:1 !important;
  color:#005aff !important;
  margin: auto;
  background-color: #fff;
  border: solid 2px #fff;
  -moz-border-radius: 60px;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  box-shadow: 0 0 0 3px #4bbb57;
  -webkit-box-shadow: 0 0 0 3px #005aff;
  -moz-box-shadow: 0 0 0 3px #005aff;
}

/*--------------------------------------------------------
key visual
--------------------------------------------------------*/
div.top_kv{
width: 100%;
  position: relative;
  padding:7% 0;
  box-sizing:border-box;
  background-image:url(../images/kv_bg.jpg);
  background-size: cover;
  background-position: center center;
}
.top_kv_in{
width: 80%;
margin: 0 auto;
}
.top_kv_in h1 img{
width: 40%;
display: block;
}
.top_kv_in h2 img{
width: 30%;
display: block;
margin: 5% 0 0 0;
}

.t_banner{width: 100%;max-width: 1100px;}
.t_banner img{width: 100%;}


/*--------------------------------
cta
---------------------------------*/
div.cta{
  padding:40px 0 0;
}
div.cta_in{
  background:#002776;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px;
  box-sizing: border-box;
}
div.cta_l{width: 37.5%;}
div.cta_l img{width: 100%;}
div.cta_r{width: 60%;}
div.cta_r img{width: 100%;}

div.cta a{
  transition: all 0.7s ease;
  display:inline-block;
}
div.cta a:hover{
  opacity:0.7;
}


/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
div.footer{
  margin-top:35px;
  border-top:1px solid #ccc;
}
.footer_in{
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  flex-wrap:wrap;
  padding:20px 0 0px;
}
ul.foot_navi{
  padding:20px 40px 20px 0;
}
ul.foot_navi li{
  text-align:left;
  padding:0 0 10px 15px;
  box-sizing:border-box;
  position:relative;
}
ul.foot_navi li::before {
  position: absolute;
  top: 12px;
  left: 0px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 0.4em solid transparent;
  border-left: 0.4em solid #002776;
  content: "";
}
ul.foot_navi a{
  font-size:16px;
}
ul.foot_navi a:hover{
  color:#005aff;
}
div.foot_logo{
width: 25%;
  margin-left:auto;
  padding:30px 0 0 0;
}
div.foot_logo img{
width: 100%;
}
div.copy{
  background:#002776;
  margin-top: 20px;
  border-top: 1px solid #fff;
  padding: 20px 0 20px;
}
.copy h5{
  font-size:14px;
  color: #fff;
  font-weight: normal;
}

/*page top*/
#page_top{
  width: 39px;
  height: 39px;
  border-radius: 5px;
  border:1px solid #fff;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #005aff;
  opacity: 0.8;
}
#page_top a{
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*--------------------------------------------------------
コンテンツ
--------------------------------------------------------*/
div.title_area{
  padding:0px 0 10px;
  border-bottom:2px solid #ccc;
}
div.title_area h2{
  font-size:24px;
}
/*sv*/
div.sv{

}
div.sv_in{

}
ul.sv_list{
  margin-top:20px;
  display:flex;
  justify-content:space-between;
  align-items:stretch;
  flex-wrap:wrap;
  gap:10px 0;
}
ul.sv_list li{
  width:24%;
  background:#eaeaea;
  padding:25px;
  box-sizing:border-box;
  position:relative;
  padding-bottom:60px;
}
ul.sv_list li h3{
  position:absolute;
  bottom:0;
  left:0;
  background:#000;
  width:100%;
  font-size:20px;
  padding:12px 0 12px;
  color:#fff;
  line-height:1;
}
ul.sv_list li img{

}

div.sv_price{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px 0;
}
div.bg_red{
  min-width:100px;
  display:inline-block;
  padding:0;
  font-size:16px;
  color:#fff;
  background:#005aff;
  font-weight:400;
}
div.bg_gold{
  min-width:100px;
  display:inline-block;
  padding:0;
  font-size:16px;
  color:#fff;
  background:#d1b102;
  font-weight:400;
}

.sv_list p{
  font-size:12px;
  margin: 10px 0 0 0;
}
div.sv_price h4{
  padding:0 0 0 20px;
  vertical-align:top;
  font-size:18px;
  line-height:1;
  color:#005aff;
}
div.sv_price h4 span{
  line-height:1;
  font-size:36px;
}
.fgold h4{
  color:#d1b102 !important;
}

.sv_list img{
  margin-top:20px;
  transition: transform .6s ease;/* ゆっくり変化させる */
}
.sv_list img:hover{
  transform: scale(1.1);/* 拡大 */
}

/*about*/
div.about{
  padding:40px 0 20px;
}
div.about_wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 0 0px;
  box-sizing:border-box;
}
div.about_l,div.about_r{
  width:50%;
}
div.about_r p{
  text-align:left;
  font-size:16px;
  line-height:2;
  padding-left:40px;
}


/*sv02*/
div.sv02{
  padding:20px 0 0;
}
div.sv_price02{

}
div.sv_price02_tx{

}
div.sv_price02_tx h4{
  line-height:1;
  color:#002776;
  font-size:24px;
  padding-top:20px;
}
div.bg_lgreen{
  font-weight:400;
  display:inline-block;
  padding:0 10px 0;
  font-size:16px;
  color:#fff;
  background:#005aff;
}
#hanbai ul.sv_list h3{
  background:#002776 !important;
}

/*flow*/
div.flow{
  padding:30px 0 0;
}
div.flow_wrap{
  padding:25px 0 0;
}
ul.flow_list{
  display:flex;
  justify-content:space-between;
  align-items:stretch;
  flex-wrap:wrap;
}
ul.flow_list li{
  padding:0;
  position:relative;
  width:32%;
  border:1px solid #ccc;
  border-radius:5px;
  box-shadow: 0px 0px 2px 1px #eaeaea;
}
ul.flow_list li img{
  width:100%;
  border-radius:5px 5px 0 0;
}
ul.flow_list li h4{
  font-size:14px;
  padding-top:30px;
  border-bottom:1px solid green;
  display:inline-block;
}
ul.flow_list li h3{
  font-size:24px;
  padding-bottom:10px;
}
ul.flow_list li p{
  font-size:16px;
  text-align:left;
  width:100%;
  padding:15px;
  box-sizing:border-box;
}
div.sankaku{
  display:block;
  position:absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  height:80px;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 50px solid #002776;  
}


/*faq*/
div.faq{
  padding:30px 0 0;
}
div.faq_wrap{
  padding: 0;
}

dl.faq_list{
  box-sizing: border-box;
  margin: 25px auto 0px;
  width:90%;
}
dl.faq_list dt{
  cursor: pointer;
  font-size:16px;
  color:#fff;
  text-align:left;
  box-sizing: border-box;
  padding:15px 0 15px 20px;
  margin:10px 0 0px 0px;
  background: #002776;
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
dl.faq_list dt::before{
  position: relative;
  font-family: 'Poppins', sans-serif;
  content:'Q';
  font-size:28px;
  display: inline-block;
  background: #fff;
  color: #002776;
  padding: 0 10px 0;
  margin-right: 10px;
  box-sizing: border-box;
  border-radius: 5px;
}
dl.faq_list dd{
  margin:0px auto;
  border-radius: 0 0 5px 5px;
  background: #f5f5f5;
  padding:15px 15px 15px 20px;
  box-sizing: border-box;
  position: relative;
  color:#000;
  font-size:16px;
  line-height: 1.7;
  text-align:left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
dl.faq_list dd::before{
  position: relative;
  font-family: 'Poppins', sans-serif;
  content:'A';
  font-size:28px;
  display: inline-block;
  color: #002776;
  padding: 0 10px 0;
  margin-right: 10px;
  box-sizing: border-box;
  border-radius: 5px;
}
/*accodion*/
dl.faq_list dt:after {
   content: "";
   position: absolute;
   border-right: 2px solid #fff;
   border-bottom: 2px solid #fff;
   width: 10px;
   height: 10px;
   top:25px;
   right: 20px;
   bottom:0;
   margin:12px 0 0 0;
   transform: rotate(45deg);
}
dl.faq_list dt.ac:after {
   content: "";
   position: absolute;
   border-right: 0;
   border-bottom: 0;
   border-right: 2px solid #fff;
   border-bottom: 2px solid #fff;
   width: 10px;
   height: 10px;
   top:30px;
   right: 20px;
   transform: rotate(-135deg);
}
dl.faq_list dt.ac{
  border-radius: 5px 5px 0 0;
}

dl.faq_list dt.even1{
  background: #eaeaea;
  color:#000;
}
dl.faq_list dt.even1:before{
  color: #000;
}
dl.faq_list dd.even2:before{
  color: #000;
}
dl.faq_list dt.even1:after{
   border-right: 2px solid #000;
   border-bottom: 2px solid #000;
}


/*//////////////////////////////////
//下層ページ
//////////////////////////////////*/

div.kv_low{
  width: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

div.low_title{
  padding:60px 0 0px;
}
div.low_title h1{
  font-size: 24px;
  color: #002776;
  font-weight:500;
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
div.low_title h1:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #002776;
  border-radius: 2px;
}


div.low_contents{
  padding: 60px 0 20px;  
}

/*service*/
div.sv_conte{
  display:flex;
  justify-content:space-around;
  align-items:center;
  flex-direction:column;
  padding-bottom:40px;
}
div.title_area_svlow{
  width:100%;
  border-top:2px solid #ccc;
  border-bottom:2px solid #ccc;
  position:relative;
  margin:0 auto 20px;
  padding:15px 0 15px;
}
div.title_area_svlow h2{
  color:#000;
  font-size:20px;
  font-weight:500;
}
div.sv_wrap{
  width:100%;

  display:flex;
  justify-content:space-between;
  align-items:stretch;
}
div.sv_in_wrap{
  width:33.3%;
}
div.sv_img_wrap{
  background:#eaeaea;
  display:flex;
  justify-content:center;
  align-items:center;
}
div.sv_kaitori{
  padding:0 15px 15px;
  box-sizing:border-box;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  flex-direction:column;
}
div.sv_kaitori h3{
  width:100%;
  padding:5px;
  box-sizing:border-box;
  font-size:18px;
  color:#b81423;
  /*background:#b81423;*/
  border:1px solid #b81423;
}
div.sv_in_wrap dl{
  width: 100%;
  text-align: right;
  margin-left: auto;
  padding-top:10px;
}
div.sv_in_wrap dl dt,dd{
  font-size: 16px;
}
div.sv_in_wrap dl dt{
  padding-top: 10px;
}
div.sv_in_wrap dl dd{
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
div.sv_in_wrap dl dd:last-child{
  border: none;
}
div.sv_hanbai{
  padding:0 15px 15px;
  box-sizing:border-box;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  flex-direction:column;
}
div.sv_hanbai h3{
  width:100%;
  padding:5px;
  box-sizing:border-box;
  font-size:18px;
  color:#000;
  /*background:#d1b102;*/
  border:1px solid #000;
}
span.sv_kai{
  color:#b81423;
  font-size:20px;
}
span.sv_han{
  font-size:20px;
  color:blue;
}
div.sv_btn_wrap{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px 0 40px;
}
.sv_btn{
  display:block;
  width:60%;
  padding:15px;
  font-size:20px;
  color:#fff !important;
  margin: auto;
  background-color: #005aff;
  border: solid 2px #fff;
  -moz-border-radius: 60px;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  box-shadow: 0 0 0 3px #005aff;
  -webkit-box-shadow: 0 0 0 3px #005aff;
  -moz-box-shadow: 0 0 0 3px #005aff;
  transition: all 0.7s ease;
}
.sv_btn:hover{
  opacity:1 !important;
  color:#005aff !important;
  margin: auto;
  background-color: #fff;
  border: solid 2px #fff;
  -moz-border-radius: 60px;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  box-shadow: 0 0 0 3px #005aff;
  -webkit-box-shadow: 0 0 0 3px #005aff;
  -moz-box-shadow: 0 0 0 3px #005aff;
}

dl.privacy_faq{
  margin:0 auto;
  padding:0;
  width:80%;
}
dl.privacy_faq dt{
  font-size:16px;
  text-align:left;
  font-weight:500;
  padding:0 0 5px 0;
  border-bottom:1px solid #000;
}
dl.privacy_faq dd{
  font-size:14px;
  text-align:left;
  padding:0 0 40px 0;
}


.tokute_wrap{
  padding: 20px 0 20px;
}
table.toku_tb{
  width: 70%;
  border-collapse: collapse;
  margin: 0 auto;
}
table.toku_tb th{
  border-collapse: collapse;
  width: 35%;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #002776;
  border-top:none;
  border-left:none;
  border-right:none;
  font-weight: normal;
}
table.toku_tb td{
  border-collapse: collapse;
  width: 65%;
  padding: 20px;
  font-size: 14px;
  text-align: left;
  border: 1px solid #002776;
  border-top:none;
  border-left:none;
  border-right:none;
}



/*contact*/
table.contact_tb{
  width: 70%;
  border-collapse: collapse;
  margin: 0 auto;
}
table.contact_tb th{
  border-collapse: collapse;
  width: 35%;
  padding: 20px;
  font-size: 14px;
  text-align: right;
  border: 2px solid #32c1ef;
  font-weight: normal;
}
table.contact_tb td{
  border-collapse: collapse;
  width: 65%;
  padding: 20px;
  font-size: 14px;
  text-align: left;
  border: 2px solid #32c1ef;
}
.r_tx{
  color: red;
}
/*input text design*/
.form-text{
  width: 100%;
  font-weight: bold;
  border: 2px solid #4bbb57;
  border-radius: 5px;
  padding: 12px;
  box-sizing: border-box;
  font-size: 16px;
}
.form-textarea{
  width: 100%;
  height: 250px;
  font-weight: bold;
  border: 2px solid #4bbb57;
  border-radius: 5px;
  padding: 12px;
  box-sizing: border-box;
  font-size: 16px;
}
.form-textmini{
  width: 30%;
  font-weight: bold;
  border: 2px solid #4bbb57;
  border-radius: 5px;
  padding: 12px;
  box-sizing: border-box;
  font-size: 16px;
}
.form-select01{
  width: 65%;
  font-weight: bold;
  border: 2px solid #4bbb57;
  border-radius: 5px;
  padding: 12px;
  box-sizing: border-box;
  font-size: 16px;
}
.form-select02{
  width: 20%;
  font-weight: bold;
  border: 2px solid #4bbb57;
  border-radius: 5px;
  padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  background: #fff;
}

/* チェックボックス03 */
input[type=checkbox] {
    display: none;
}
.form-checkbox {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 8px 30px 0;
    position: relative;
    width: auto;
}
.form-checkbox::before {
    background: #fff;
    border: 1px solid #4bbb57;
    border-radius: 3px;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    left: 0;
    margin-top: -8px;
    position: absolute;
    top: 50%;
}
.form-checkbox::after {
    border-right: 6px solid #4bbb57;
    border-bottom: 3px solid #4bbb57;
    content: '';
    display: block;
    height: 20px;
    left: 7px;
    margin-top: -16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    width: 9px;
}
input[type=checkbox]:checked + .form-checkbox::before {
    border-color: #666;
}
input[type=checkbox]:checked + .form-checkbox::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}



.sv-btn{
  margin: 10px auto;
  width: 80%;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
  background: orange;
  color: #fff;
  font-size: 20px;
  text-align: center;
  transition: 1.0s ;
  border: none;
  box-shadow: 2px 2px 4px #494949;
}
.sv-btn:hover{
  opacity: 0.8;
}

.address_box{
  padding: 5px 0 5px;
}
::placeholder {
  font-weight: normal;
  color: #cccccc;
}
div.btn_row{
  padding: 20px 0 20px;
}
.submit-btn{
  width: 25%;
  padding: 15px;
  border-radius: 5px;
  background: #2ab0e7;
  color: #fff;
  font-size: 20px;
  text-align: center;
  transition: 1.0s ;
  border: none;
  box-shadow: 2px 2px 4px #494949;
}
.submit-btn:hover{
  opacity: 0.8;
}
.order-btn{
  width: 30%;
  padding: 25px;
  border-radius: 5px;
  background: #2ab0e7;
  color: #fff;
  font-size: 20px;
  text-align: center;
  transition: 1.0s ;
  border: none;
  box-shadow: 2px 2px 4px #494949;
}
.order-btn:hover{
  opacity: 0.8;
}
.order-prev-btn{
  width: 30%;
  padding: 25px;
  border-radius: 5px;
  background: #494949;
  color: #fff;
  font-size: 20px;
  text-align: center;
  transition: 1.0s ;
  border: none;
  box-shadow: 2px 2px 4px #494949;
}
.order-prev-btn:hover{
  opacity: 0.8;
}

.err_tx{
  color: red;
}

.disabled-submit{
  filter: grayscale(100%);
}
.disabled-submit:hover{
  transform: translateY(0) !important;
  opacity: 1 !important;
  cursor: no-drop;
}
.disabled-input{
  background: #eaeaea;
}
/*order*/
table.order_tb{
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
table.order_tb th{
  border-collapse: collapse;
  width: 24%;
  padding: 15px 20px 15px;
  font-size: 16px;
  text-align: right;
  border: 2px solid #4bbb57;
}
table.order_tb td{
  border-collapse: collapse;
  padding: 15px 20px 15px;
  font-size: 16px;
  text-align: left;
  border: 2px solid #4bbb57;
  font-weight: bold;
}
.order_td01{
  text-align: center !important;
}
table.order_tb td .item_wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 5px 0;
}

h3.order_title{
  font-size: 20px;
  padding: 10px 0 10px;
  background: #4bbb57;
  color: #fff;
}
h3.order_title span{
  font-size: 14px;
  color: #fff;
  font-weight: normal;
}
h3.order_title span a{
  color: yellow;
}
.error_box{
  display: none;
  width: 80%;
  padding: 15px;
  text-align: left;
  margin: 10px auto;
  border-radius: 10px;
  border: 2px solid #b81423;
  font-size: 14px;
  color: #b81423;
}
.error_box2{
  display: none;
  width: 80%;
  padding: 15px;
  text-align: left;
  margin: 10px auto;
  border-radius: 10px;
  border: 2px solid red;
  font-size: 14px;
  color: red;
}




div.sale_wrap{
  width:100%;
  padding:40px 0 40px;
}
div.sale_text{
  width:100%;
}
div.sale_text h3{
  background:#005aff;
  font-size:24px;
  color:#fff;
  padding:20px 0 20px;
}
div.sale_text p{
  line-height:1.5;
  font-size:16px;
  text-align:left;
  margin:0 auto;
  padding:30px 0 30px;
  color:red;
}
table.sale_tb{
  width:70%;
  margin:0 auto;
  border-collapse:collapse;
  border:1px solid #005aff;
}
table.sale_tb th{
  fon-size:16px;
  padding:10px;
  text-align:right;
  width:50%;
  border-collapse:collapse;
  border:1px solid #005aff;
}
table.sale_tb td{
  fon-size:16px;
  padding:10px;
  width:50%;
  text-align:left;
  border-collapse:collapse;
  border:1px solid #005aff;
}
table.sale_tb td span{
  color:red;
}

div.sale_text2 p{
  border-top:1px solid #666;
  line-height:1.5;
  font-size:16px;
  text-align:right;
  margin:0 auto;
  padding:20px;
  box-sizing:border-box;
}




