@charset "UTF-8";


/* ======================================================================
 reset
====================================================================== */

html{
    box-sizing:border-box;
    font-size:16px;

}

*,:after,:before{
    box-sizing:inherit;
}
    
ul,ol{
    list-style:none;
}

img{
    max-width:100%;
    vertical-align: middle !important;
}



/* ======================================================================
 base
====================================================================== */



  
  body {
    color: #332E2C;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, sans-serif;
    word-wrap: break-word;

  }

    

  
  html, body {
    width: 100%;
    height: 100%;
  }
  
  * {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  /* a */
  a {
    text-decoration: none;
  }
  a:link {
    color: #332E2C;
    cursor: pointer;
  }
  a:visited {
    color: #332E2C;
  }
  a:hover {
    color: #332E2C;
  }
  a:active {
    color: #332E2C;
  }
  
  a[href^=tel] {
    color: #332E2C;
  }

  a img{
    -webkit-transition: opacity 0.6s;
        -o-transition: opacity 0.6s;
            transition: opacity 0.6s;
  }
  

  a img:hover{
    opacity: 0.6;
  }
  

  /* Text Highlight */
  /* button */
  button {
    display: block;
  }
  
  textarea {
    resize: vertical;
  }
  
  select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #332E2C;
  }
  
  /* placeholder */
  input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
    color: #332E2C;
  }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #332E2C;
  }
  input:placeholder-shown, textarea:placeholder-shown {
    color: #332E2C;
  }
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #332E2C;
  }
  input:-moz-placeholder, textarea:-moz-placeholder {
    color: #332E2C;
    opacity: 1;
  }
  input::-moz-placeholder, textarea::-moz-placeholder {
    color: #332E2C;
    opacity: 1;
  }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #332E2C;
  }
  input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
    color: #332E2C;
  }
  input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: #332E2C;
  }
  input:focus:placeholder-shown, textarea:focus:placeholder-shown {
    color: #332E2C;
  }
  input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: #332E2C;
  }
  input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
    color: #332E2C;
    opacity: 1;
  }
  input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    color: #332E2C;
    opacity: 1;
  }
  input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: #332E2C;
  }
  


  /* ======================================================================
 utility
====================================================================== */

/* ユーティリティ */
.u_sp {
	display: none;
  }

  .u_inlineblock {
	display: inline-block ;
  }
  
  
  @media screen and (max-width: 768px) {
	.u_pc {
		display: none;
	  }
	  
	.u_sp {
	  display: block;
	}
	.u_sp_inlineblock {
	  display: inline-block ;
	}
  
  }
  
  
  .u_clearfix:after {
	content: "";
	display: block;
	clear: both;
  } 

  /*font*/
  .u_notomin{
    font-family: "Noto Serif JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, serif;
  }

  /*backgrpund*/

  .l_bg_1{
    background:url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/bg_1.jpg) center top;
    background-size: cover;
  }

  .l_bg_2{
    background:#e4dfd7;
  }

  .l_bg_grad_1{
    background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, #fff),color-stop(80%, #fff5f3));
        background: -o-linear-gradient(bottom, #fff 60%,#fff5f3 80%);
        background: linear-gradient(to top, #fff 60%,#fff5f3 80%);
  }

/*color*/
.u_color_red{
    color: #942323;
}




/*l_inner_1*/
.l_inner_1{
    max-width:1000px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

@media screen and (max-width: 768px) {
    .l_inner_1{
        padding-left:4vw;
        padding-right:4vw;
    }

}



  /* ======================================================================
 common
====================================================================== */


/*スクロールフェード*/

.c_box_fade{
    opacity: 0;
}

.c_box_fade.fadeIn {
    opacity: 1;

  }

.c_box_fade._up {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  }

  .c_box_fade._up.fadeIn {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .c_box_fade._fade {
    -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  }



  .c_box_fade._left {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  }
  .c_box_fade._left.fadeIn {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .c_box_fade._right {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  }
  .c_box_fade._right.fadeIn {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  /*haedline*/

  .c_hl_1{
    font-size: 30px;
    text-align: center;
    font-family: "Noto Serif JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, serif;
    margin-bottom:40px;
  }

.c_hl_1_attention{
    margin-top:-40px;
    text-align: center;
    font-size: 10px;
    margin-bottom:40px;
}

.c_hl_1 sup{
  font-size: 12px;
}

.c_hl_1_small_1{
    font-size: 20px;
}

.c_hl_1_red{
  color:#942323;
}

.c_hl_1_big_1{
  font-size: 40px;
}

.c_hl_1_bottom_1{
  color:#942323;
  font-size: 14px;
  text-align: center;
  margin-top:-40px;
  margin-bottom:40px;
}

@media screen and (max-width: 768px) {
  .c_hl_1{
    font-size: 5vw;
    margin-bottom:5vw;
  }

  .c_hl_1 sup{
    font-size: 3vw;
  }
  
.c_hl_1_attention{
    margin-top:-2vw;
    font-size: 3vw;
    margin-bottom:5vw;
}

.c_hl_1_small_1{
    font-size: 4vw;
}

.c_hl_1_big_1{
  font-size: 7vw;
}


.c_hl_1_bottom_1{
  font-size: 3vw;
  margin-top:-5vw;
  margin-bottom:5vw;
}


}

/*button*/

.c_button_1{
  position: relative;
    display: block;
    width:100%;
    padding:10px;
    font-weight: bold;
    color:#fff !important;
    font-size: 18px;
    background:#942323;
    text-align: center;
    border-radius:100px;
    border: 2px solid #942323;
    -webkit-transition: 0.3s background, 0.3s color;
        -o-transition: 0.3s background, 0.3s color;
        transition: 0.3s background, 0.3s color;
}



.c_button_1_arrow{
  display: block;
  position: absolute;
  top:0;
  bottom:0;
  right:20px;
  margin:auto 0;
  width:10px;
  height:8px;
  z-index: 10;
  -webkit-transition: 0.3s background;
  -o-transition: 0.3s background;
  transition: 0.3s background;
}

.c_button_1_arrow._bottom{
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.c_button_1_arrow::before,
.c_button_1_arrow::after{
  content: "";
  display: block;
  position: absolute;
  width:8px;
  height: 2px;
  background: #fff;
  border-radius: 5px;
}

.c_button_1_arrow::before{
  top:0;
  -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
.c_button_1_arrow::after{
  bottom:0;
  -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.c_button_1._green{
  background:#1a7026;
  border-color: #1a7026;
}


.c_link_1{
  color:#942323 !important;
  font-size: 14px;
  text-decoration: underline;
  position: relative
}



.c_link_1 .c_link_1_ico{
  display: inline-block;
  position: relative;
  width:10px;
  height:8px;
  margin-left:5px;
}

.c_link_1 .c_link_1_ico::before,
.c_link_1 .c_link_1_ico::after{
  content: "";
  display: block;
  position: absolute;
  width:8px;
  height: 2px;
  background: #942323;
  border-radius: 5px;
}

.c_link_1 .c_link_1_ico::before{
  top:0;
  -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
.c_link_1 .c_link_1_ico::after{
  bottom:0;
  -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

@media screen and (min-width: 769px) {

    .c_button_1:hover{
        color:#942323 !important;
        background:#fff;
    }

    .c_button_1:hover .c_button_1_arrow::before,
    .c_button_1:hover .c_button_1_arrow::after{
      background: #942323;
    }

    .c_button_1._green:hover{
      color:#1a7026 !important;
      background:#fff;
  }

    .c_link_1:hover{
      text-decoration: none;
    }
}


@media screen and (max-width: 768px) {

  .c_button_1{
    padding:2vw;
    font-size: 3vw;
    border-radius:10vw;
}

.c_button_1_arrow{
  right:4vw;
  width:1.9vw;
  height:1.9vw;
}

.c_button_1_arrow::before,
.c_button_1_arrow::after{
  width: 2vw;
  height: 0.5vw;
  border-radius: 0.5vw;
}

.c_link_1{
  font-size: 3.5vw;
}

.c_link_1 .c_link_1_ico{
  width:2vw;
  height:2vw;

}


.c_link_1 .c_link_1_ico{
  width:1.7vw;
  height:1.7vw;
}

.c_link_1 .c_link_1_ico::before,
.c_link_1 .c_link_1_ico::after{
  content: "";
  display: block;
  position: absolute;
  width: 2vw;
  height: 0.5vw;
  background: #942323;
  border-radius: 0.5vw;
}

}

    /* ======================================================================
 layout
====================================================================== */
  
.l_content{
    font-size:16px;
    line-height:1.8;
    letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
    .l_content {
        font-size:3.5vw;
      }
}


/*header*/

.l_header{
    padding: 20px;
    position: absolute;
    top:0;
    left: 0;
    z-index: 10;
}

.l_header_logo img{
    width:150px;
}

@media screen and (max-width: 768px) {
    .l_header{
        padding: 2vw;
    }
    
    .l_header_logo img{
        width:18vw;
    }
}

/*footer*/

.l_fixed_btn{
  position: fixed;
  right:20px;
  bottom:20px;
  width:100px;

}



.l_footer .l_inner_1{
  padding-top:30px;
  padding-bottom:30px;
}

.l_footer_cont{
  margin-bottom:20px;
  
}

.l_footer_name{
  width:200px;
  float:left;
}

.l_footer_copyright{
  float:right;
  font-size: 12px;
  margin-top:40px;
  text-align: left;
}

@media screen and (max-width: 1245px) {
  .l_footer_copyright{
    padding-right:110px;
  }
}

@media screen and (max-width: 768px) {

  .l_fixed_btn{
    right:2vw;
    bottom:2vw;
    width:15vw;
  
  }
  .l_footer .l_inner_1{
    padding-top:10vw;
    padding-bottom:15vw;
  }
  
  .l_footer_cont{
    margin-bottom:0;
    text-align: center;
  }

  .l_footer_name{
    width:auto;
    float:none;
    margin-bottom:4vw;
  }

  .l_footer_name img{
    width:40vw;
  }
  

  
  .l_footer_copyright{
    font-size: 2.5vw;
    padding-right:0;
    text-align: center;
    margin-top:0;
  }

}


    /* ======================================================================
 content
====================================================================== */

/*l_fv*/


.l_fv_img{
    text-align: center;
    width:100%;
}

.l_fv_img img{
  width:100%;
}



/*sec_about*/






.sec_about .l_inner_1{
    padding-top: 100px;
    padding-bottom: 100px;
}

.sec_about_ttl{
    text-align: center;
    font-size: 30px;
    margin-bottom:20px;
    color:#942323;
}

.sec_about_readbox{
    text-align: center;
    letter-spacing: 0.1em;
    line-height:2;
    color:#555;
}

@media screen and (max-width: 768px) {


  .sec_about .l_inner_1{
    padding-top: 20vw;
    padding-bottom: 20vw;
}

.sec_about_ttl{
    text-align: center;
    font-size: 5vw;
    margin-bottom:6vw;
}



}


/*sec_ranking*/

.sec_ranking .l_bg_1{
    padding-top:80px;
    padding-bottom:80px;
}

.sec_ranking .l_inner_1{
    max-width:800px;
}

.sec_ranking_list li{
    width:45%;
}

.sec_ranking_list li:nth-child(odd){
    clear:both;
    float:left;    
}

.sec_ranking_list li:nth-child(even){
    float:right;    
}

.sec_ranking_img{
    text-align: center;
    margin-bottom:10px;
}


.sec_ranking_img img{
  border:2px solid #fff;
}

.sec_ranking_name{
    position: relative;
    padding-left:45px;
    font-size: 18px;
    margin-bottom:20px;
}

.sec_ranking_mark{
    display: block;
    position: absolute;
    left: 0;
    top:0;
    z-index: 2;
    width:30px;
  }

  

.sec_ranking_cont{
    margin-bottom:10px;
}

.sec_ranking_cont_child{
    display: table;
    width:100%;
}

.sec_ranking_cont dt,
.sec_ranking_cont dd{
    display: table-cell;

}

.sec_ranking_cont dt{
    font-weight: bold;
    width:90px;
    white-space: nowrap;
}

.sec_ranking_price{
    font-weight: bold;
    text-align: right;
    margin-bottom:10px;
}


.sec_recommend_tax{
    color:#999;
    font-size: 14px;
}

.sec_ranking_big{
    font-size: 30px;
    color:#942323;
}


.sec_ranking_fushi{
  margin-top:60px;
}

.sec_ranking_cont_child_note{
  font-size:14px;
    line-height: 1.4 !important;
    display: inline-block;
}

@media screen and (max-width: 768px) {

  .sec_ranking .l_bg_1{
    padding-top:15vw;
    padding-bottom:15vw;
}

.sec_ranking .l_inner_1{
    max-width:inherit;
}

.sec_ranking_list{
  max-width:80%;
  margin:0 auto;
}

.sec_ranking_list li{
  width:auto;
}

.sec_ranking_list li:nth-child(odd){
  float:none;    
}

.sec_ranking_list li:nth-child(even){
  float:none;    
}


.sec_ranking_list li+li{
  margin-top:10vw;
}



.sec_ranking_img{
    margin-bottom:2vw;
}

.sec_ranking_name{
    padding-left:5.9vw;
    font-size: 3.7vw;
    margin-bottom:2vw;
    letter-spacing: 0;
    line-height:1.4;
}

.sec_ranking_mark{
  width:5vw;
}
.sec_ranking_mark img{
  width:5vw;
}
.sec_ranking_cont{
    margin-bottom:2vw;
}

.sec_ranking_cont_child{
  font-size: 3vw;
}

.sec_ranking_cont dt{
  width:4vw;
}

.sec_ranking_price{
    margin-bottom:2vw;
}


.sec_recommend_tax{
    color:#999;
    font-size: 3vw;
}

.sec_ranking_big{
    font-size: 6vw;
}


.sec_ranking_fushi{
  margin-top:10vw;
}

.sec_ranking_cont_child_note{
  font-size:2.5vw;
}

}


/*sec_story*/

.sec_story{
  overflow: hidden;
}
.sec_story .l_inner_1{
  margin-bottom:100px;
  padding-top:80px;
  padding-left:0;
  padding-right:0;
  max-width:1300px;
}

.sec_story_cont_hl{
  font-size: 20px;
  margin-bottom:20px;
}

.sec_story_cont{
  display:table;
  width:100%;

}

.sec_story_cont_txt,
.sec_story_cont_img{
  display: table-cell;
  vertical-align: middle;
  width:50%;
}

.sec_story_cont_img{
  height:450px;
}

.sec_story_cont_txt_inner{
  max-width:600px;
  padding:10px 30px;
}

.sec_story_cont._type_3 .sec_story_cont_txt_inner,
.sec_story_cont._type_1 .sec_story_cont_txt_inner{
  float:left;
}


.sec_story_cont._type_2 .sec_story_cont_txt_inner{
  float:right;
}



.sec_story_cont._type_1 .sec_story_cont_img{
  background:url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/story_img01.jpg) center bottom no-repeat;
  background-size: cover;

}

.sec_story_cont._type_2 .sec_story_cont_img{
  background:url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/story_img02.jpg) center bottom no-repeat;
  background-size: cover;
}


.sec_story_cont._type_3 .sec_story_cont_img{
  background:url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/story_img03.jpg) center bottom no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1300px) {

  .sec_story_cont_img{
    height:auto;
    padding-bottom:35%;
  }
  



}

@media screen and (max-width: 840px) {



  .sec_story_cont._type_2 .sec_story_cont_img{
    background-size: 100% 100%;
  }

}


@media screen and (max-width: 768px) {


  .sec_story .l_inner_1{
    margin-bottom:15vw;
    padding-top:15vw;
    max-width:inherit;
  }
  
  .sec_story_cont_hl{
    font-size: 4.5vw;
    margin-bottom:5vw;
  }
  
  .sec_story_cont{
    display:block;
  
  }
  
  .sec_story_cont_txt,
  .sec_story_cont_img{
    display:block;
    width:auto;
  }
  
  .sec_story_cont_img{
    height:auto;
    padding-bottom:50%;
  }

  .sec_story_cont_img.u_pc{
    display: none;
  }
  
  .sec_story_cont_txt_inner{
    max-width:inherit;
    padding:0 4vw 4vw;
  }
  
  .sec_story_cont._type_3 .sec_story_cont_txt_inner,
  .sec_story_cont._type_1 .sec_story_cont_txt_inner{
    float:none;
  }
  
  
  .sec_story_cont._type_2 .sec_story_cont_txt_inner{
    float:none;
  }
  

  
  .sec_story_cont._type_1 .sec_story_cont_img,
  .sec_story_cont._type_3 .sec_story_cont_img{
    margin-right:4vw;
  }
  
  .sec_story_cont._type_2 .sec_story_cont_img{
    margin-left:4vw;
  }
  

  .sec_story_cont+.sec_story_cont{
    margin-top:8vw;
  }

  .sec_story_cont._type_2 .sec_story_cont_img{
    background-size: cover;
  }

}

/*sec_voice*/

.sec_voice .l_inner_1{
  padding-top:80px;
  padding-bottom:80px;
}


.sec_voice_item > li::after{
	content: "";
	display: block;
	clear: both;
}

.sec_voice_item > li+li{
  margin-top:50px;
}


.sec_voice_item_icon{
  width:100px;
  text-align: center;
}

.sec_voice_item_type{
  font-weight: bold;
  color:#999;
}

.sec_voice_item_icon img{
  width:80px;
}

.sec_voice_item_txt{
  background:#f5f2ed;
  position: relative;
  padding:25px 40px;
  width:calc(100% - 110px);
  color:#555;
}

.sec_voice_item_txt::before{
  content: "";
  display: block;
  position: absolute;
  top:30px;
}


.sec_voice_item li:nth-child(odd) .sec_voice_item_icon{
  float:left;
}

.sec_voice_item li:nth-child(odd) .sec_voice_item_txt{
  float:right;
}

.sec_voice_item li:nth-child(odd) .sec_voice_item_txt::before{
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 20px solid #f5f2ed;
  border-left: 0;
  left:-15px;
}

.sec_voice_item li:nth-child(even) .sec_voice_item_icon{
  float:right;
}

.sec_voice_item li:nth-child(even) .sec_voice_item_txt{
  float:left;
}

.sec_voice_item li:nth-child(even) .sec_voice_item_txt::before{
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #f5f2ed;
  border-right: 0;
  right:-15px;
}


@media screen and (max-width: 768px) {

  .sec_voice .l_inner_1{
    padding-top:10vw;
    padding-bottom:10vw;
  }
  

  .sec_voice_item > li+li{
    margin-top:8vw;
  }
  
  
  .sec_voice_item_icon{
    width:15vw;
  }

  .sec_voice_item_icon img{
    width:calc(100% - 2vw);
  }
  
  .sec_voice_item_txt{
    padding:5vw 5vw;
    width:calc(100% - 16vw);
  }
  
  .sec_voice_item_txt::before{
    top:5vw;
  }
  

  .sec_voice_item li:nth-child(odd) .sec_voice_item_txt::before{
    border-top: 1.8vw solid transparent;
    border-bottom: 1.8vw solid transparent;
    border-right: 1.8vw solid #f5f2ed;
    left:-1.5vw;
  }

  .sec_voice_item li:nth-child(even) .sec_voice_item_txt::before{
    border-top: 1.8vw solid transparent;
    border-bottom: 1.8vw solid transparent;
    border-left: 1.8vw solid #f5f2ed;
    right:-1.5vw;
  }
  
}

/*sec_item*/


.sec_item .l_bg_1{
    padding-top:80px;
    padding-bottom:80px;
}


.sec_item_child+.sec_item_child{
  margin-top:60px;
}

.sec_item_thum{
  margin-bottom:10px;
}

.sec_item_thum img{
  border:2px solid #fff;
}

.sec_item_name{
  margin-bottom:5px;
  line-height:1.4;
}

.sec_item_price{
  text-align: right;
}

.sec_item_price_number{
  font-size: 20px;
  font-weight: bold;
}

.sec_item_price_big{
  font-size: 25px;
  color:#942323;
}

.sec_item_tax{
  color:#999;
  font-size: 14px;
}

.sec_item_img{
  width:calc(100% - 300px);
  height:450px;
}

.sec_item_detail{
  width:270px;
}


.sec_item_warp .sec_item_child:nth-child(odd) .sec_item_img{
  float:left;
}

.sec_item_warp .sec_item_child:nth-child(odd) .sec_item_detail{
  float:right;
}


.sec_item_warp .sec_item_child:nth-child(even) .sec_item_img{
  float:right;
}

.sec_item_warp .sec_item_child:nth-child(even) .sec_item_detail{
  float:left;
}


.sec_item_warp .sec_item_child:nth-child(1) .sec_item_img{
  background:url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/item_img_5.jpg) center center no-repeat;
  background-size: cover;
}


.sec_item_warp .sec_item_child:nth-child(2) .sec_item_img{
  background:url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/item_img_10.jpg) center center no-repeat;
  background-size: cover;
}




@media screen and (max-width: 768px) {


  .sec_item .l_bg_1{
    padding-top:10vw;
    padding-bottom:10vw;
}



.sec_item_child+.sec_item_child{
  margin-top:10vw;
}

.sec_item_thum{
  margin-bottom:1.5vw;
}

.sec_item_name{
  margin-bottom:1vw;
}


.sec_item_price_number{
  font-size: 3vw;
}

.sec_item_price_big{
  font-size: 4.5vw;
  line-height:1.2;
}

.sec_item_tax{
  font-size: 3vw;
}

.sec_item_img{
  width:50%;
  height:auto;
  padding-bottom:68%;
}

.sec_item_detail{
  width:45%;
}

.sec_item_detail._spfloatnone{
  width:80%;
  float:none !important;
  clear:both;
  margin:0 auto;
  padding-top:5vw;
}

}



/*.sec_recipe*/

.sec_recipe {
  padding-top:80px;
  padding-bottom:100px;
}


.sec_recipe_txt{
    text-align: center;
    margin-bottom:40px;
}

.sec_recipe_slider{
  margin-bottom:80px;
}

.sec_recipe_gift{
  text-align: center;
}


.sec_recipe .c_button_1{
  max-width:350px;
  margin:0 auto 60px;
}

@media screen and (max-width: 768px) {

  .sec_recipe {
    padding-top:10vw;
    padding-bottom:10vw;
  }

  
  .sec_recipe_txt{
      margin-bottom:4vw;
  }
  
  .sec_recipe_slider{
    margin-bottom:10vw;
  }
  
  .sec_recipe .c_button_1{
    max-width:80%;
    margin:0 auto 8vw;
  }
  
  

}


/*sec_order*/

.sec_order .l_inner_1{
  padding-top:80px;
  padding-bottom:80px;
}

.sec_order_body {
	padding: 60px 0px 20px;
	border: 1px solid #942323;
	border-radius: 20px;
	margin-bottom: 20px;
	background-color: #fff;
  }

  .sec_order_list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
	position: relative;
	margin-left:auto !important;
	margin-right:auto !important;
  }

  .sec_order_list::after {
	content: "";
	position: absolute;
	top: -34px;
	left: 0;
	right: 0;
	margin-inline: auto;
	width: 76%;
	height: 1px;
	border-bottom: 2px dashed #942323;
  }

  .sec_order_list li {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: subgrid;
	grid-template-rows: subgrid;
	-ms-grid-row-span: 3;
	grid-row: span 3;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
  }

  .sec_order_list li:not(:last-child) {
	border-right: 1px solid #942323;
  }

  .sec_order_title {
	color: #942323;
	font-size: 28px;
	text-align: center;
	position: relative;
	padding-top: 60px;
	margin-bottom: 30px;
  }

  
  .sec_order_title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin-inline: auto;
	display: inline-block;
	width: 42px;
	height: auto;
	aspect-ratio: 1/1;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
  }

  .sec_order_title::after {
	content: "";
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	margin-inline: auto;
	display: inline-block;
	width: 16px;
	height: auto;
	aspect-ratio: 1/1;
	background-color: #fff;
	border-radius: 10em;
	border: 2px solid #942323;
	z-index: 1;
  }

  
  .sec_order_title.cart::before {
	background-image: url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/icon_cart_red.png);
  }
  .sec_order_title.mail::before {
	background-image: url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/icon_mail_red.png);
  }
  .sec_order_title.box::before {
	background-image: url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/icon_box_red.png);
  }
  .sec_order_title.box::after {
	background-color: #942323;
  }
  .sec_order_icon {
	text-align: center;
	margin: auto;
	position: absolute;
  }

  .sec_order_list li .sec_order_icon:not(.sec_order_list li .sec_order_icon:empty) {
	display: inline-block;
	border: 1px solid #942323;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0.2em;
	font-size: 15px;
	font-weight: bold;
	color: #942323;
	background-color: #fff;
	margin-top: 10px;
	margin-bottom: 10px;
	top: -55px;
	z-index: 2;
  }


  
  .sec_order_text {
	font-size: 15px;
	line-height: 2;
  }

  
  .sec_order_list li:nth-child(3) .sec_order_icon {
	left: 46%;
  }


  .sec_order_list li:nth-child(4) .sec_order_icon {
	left: 71%;
  }

  
  .sec_order_foot li {
	font-size: 14px;
	line-height: 1.8;
  }

  @media screen and (max-width: 768px) {
	.sec_order_body {
		padding: calc(20 * 100vw / 750) calc(20 * 100vw / 750) calc(20 * 100vw / 750) calc(80 * 100vw / 750);
		margin-bottom: calc(20 * 100vw / 750);
	}

	.sec_order_list {
		-ms-grid-columns: (1fr)[1];
		grid-template-columns: repeat(1, 1fr);
	  }

	  .sec_order_list::after {
		top: calc(80 * 100vw / 750);
		right: auto;
		left: calc(-40 * 100vw / 750);
		width: 1px;
		height: calc(710 * 100vw / 750);
		border-bottom: none;
		border-left: 2px dashed #942323;
	  }

	  .sec_order_list li {
		padding-left: calc(20 * 100vw / 750);
		padding-right: calc(20 * 100vw / 750);
		padding-bottom: calc(20 * 100vw / 750);
	  }

	  .sec_order_list li:not(:last-child)  {
		border-right: none;
		border-bottom: 1px solid #942323;
	  }

	  .sec_order_title {
		font-size: calc(42 * 100vw / 750);
		padding-top: calc(30 * 100vw / 750);
		padding-bottom: calc(30 * 100vw / 750);
		text-align: left;
		padding-left: calc(77 * 100vw / 750);
		margin-bottom: calc(30 * 100vw / 750);
		line-height:1.2;
	  }

	  .sec_order_title::before {
		top: auto;
		right: auto;
		width: calc(57 * 100vw / 750);
	  }

	  .sec_order_title::after {
		top: 50%;
		right: auto;
		left: calc(-70 * 100vw / 750);
		width: calc(25 * 100vw / 750);
	  }

	  .sec_order_icon {
		margin-left: 0;
	  }
	  .sec_order_list li .sec_order_icon:not(.sec_order_list li .sec_order_icon:empty){
		padding: calc(10 * 100vw / 750);
		font-size: calc(26 * 100vw / 750);
		margin-top: calc(10 * 100vw / 750);
		margin-bottom: calc(30 * 100vw / 750);
		-webkit-writing-mode: vertical-rl;
			-ms-writing-mode: tb-rl;
				writing-mode: vertical-rl;
		text-orientation: mixed;
		-webkit-font-feature-settings: normal;
				font-feature-settings: normal;
				line-height:1.2;
	  }
	

	  .sec_order_text {
		font-size: calc(26 * 100vw / 750);
	  }
  	.sec_order_list li:nth-child(3) .sec_order_icon {
		top: calc(286 * 100vw / 750) !important;
		left: calc(-64 * 100vw / 750) !important;
	  }

	  .sec_order_list li:nth-child(4) .sec_order_icon {
		top: calc(575 * 100vw / 750) !important;
		left: calc(-64 * 100vw / 750) !important;
	  }

	  .sec_order_foot li {
		font-size: calc(24 * 100vw / 750);
	  }
	}



/*pay*/

.sec_pay {
	padding: 0 0 80px;
}


.pay-flow__item {
	margin-bottom: 68px;
}


.pay-flow__number {
	position: absolute;
	top: 0px;
	left: 0;
	display: block;
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;
	color: #fff;
	font-weight: 700;
	width: 45px;
	margin-right: 15px;
}

.pay-flow__number::before {
	position: absolute;
	content: "";
	background: #942323;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	top: 54%;
	left: 47%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.pay-flow__number span {
	position: relative;
}

.pay-flow__heading {
	position: relative;
	font-size: 20px;
	letter-spacing: 0.1em;
	padding-bottom: 16px;
	border-bottom: 2px solid #9b9b9b;
	margin-bottom: 21px;
  padding-left:40px;
}

.pay-flow__heading::after {
	position: absolute;
	content: "";
	background: #942323;
	height: 2px;
	width: 5%;
	left: 0;
	bottom: -2px;
}

.pay-flow__heading--no-num {
	padding-left: 0;
}

.pay-flow__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.pay-flow__inner:not(:last-child) {
	margin-bottom: 31px;
}

.pay-flow__image {
	margin-top: 10px;
	width: 50%;
	border: 2px solid #000;

}

.pay-flow__main {
	width: 47.7%;
}

.pay-flow__text {
	margin-top: 3px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.75;
}

.pay-flow__text__image {
	display: inline-block;
	width: 209px;
	margin-right: 10px;
	vertical-align: middle;
}

.pay-flow__text__image--lg {
	width: 222px;
}

.pay-flow__text__image--sm {
	width: 108px;
}

.pay-flow__text__btn {
	display: block;
	font-size: 16px;
	letter-spacing: 0.1em;
	background: #db6557;
	color: #ffffff;
	padding: 10px 0;
	text-align: center;
	border-radius: 4px;
	max-width: 444px;
	position: relative;
	margin: 3px 0;
}

.pay-flow__text__btn::before {
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "";
	width: 9px;
	height: 11px;
	display: block;
	background: url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/icon_arrow_white.png) no-repeat center/contain;
}

.pay-flow__text p:not(:last-child) {
	margin-bottom: 83px;
}

.pay-flow__text--mb-sm p:not(:last-child) {
	margin-bottom: 30px;
}

.pay-flow__text--mb-sm-2 p:not(:last-child) {
	margin-bottom: 73px;
}

.pay-flow__text .text-red {
	color: #df0b28;
}

.pay-flow__screen-btn {
	padding: 0 12px;
	font-size: 18px;
	min-width: 320px;
	margin-right: 25px;
	color: #db6557;
    padding: 0 12px;
    font-size: 18px;
    border: 2px solid #db6557;
    position: relative;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-left: auto;
    margin-right: auto;
    background: url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/icon_arrow_pink.png) no-repeat right 11px center/8px auto, #fff;
    cursor: pointer;
    font-family: inherit;
    box-shadow: none;
    transition: 0.4s;
    padding-right: 34px;
    padding-left: 20px;
    margin-right: 20px;
}

.sec_pay .bg-pink {
	background: #fef9f8;
	display: none;
  padding-top:60px;
  padding-bottom:60px;
}

.lead {
	margin-bottom: 16px;
}

.pay-message {
	margin-top: -23px;
	text-align: center;
}

.pay-message__text {
	color: #942323;
	font: 600 24px "Noto Serif JP", serif;
	line-height: 1.5833;
	letter-spacing: 0.1em;
}

.paymethod-head {
	padding: 50px 0 30px;
}

.paymethod-head--pb0 {
	padding: 70px 0 0;
}

.paymethod-head__heading {
	font: 600 28px "Noto Serif JP", serif;
	letter-spacing: 0.1em;
	margin-bottom: 18px;
}

.paymethod-head__text {
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.75;
}

.paymethod-head__image {
	max-width: 662px;
	margin-top: 22px;
}

.paymethod-head__btn {
	margin-top: 60px;
}

.paymethod-head__btn a {
	height: 50px;
}

.paymethod-head__btn .btn {
	position: relative;
	width: 582px;
	height: 50px;
	border-radius: 4px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFF;
	cursor: pointer;
	font-family: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  border: 1px solid #942323;
  color:#942323;
  font-weight: bold;
}

.paymethod-head__btn .btn:before,
.paymethod-head__btn .btn:after {
	content: "";
	display: block;
	width: 14px;
	height: 3px;
	border-radius: 2px;
	background-color: #942323;
	position: absolute;
	top: 50%;
	right: 40px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.paymethod-head__btn .btn:before {
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.paymethod-head__btn .btn:after {
	-webkit-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
}

.paymethod-head__btn .btn:hover {
	background-color: #942323;
}

.paymethod-head__btn .btn:hover:before,
.paymethod-head__btn .btn:hover:after {
	background-color: #FFF;
}

.paymethod-head__btn .btn:hover .text {
	color: #ffffff;
}

.paymethod-head__btn .btn.is-opend:after {
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.paymethod-head__list {
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.75;
	text-indent: -1em;
	padding-left: 1em !important;
}

.paymethod-head__list li::before {
	content: "●";
}

@media screen and (max-width: 768px) {

.pay-flow { /* sp */
	padding: 4vw 0;
}

.pay-flow__item:not(:last-child) { /* sp */
	margin-bottom: 8vw;
}

.pay-flow__number { /* sp */
	top: 0.5vw;
}

.pay-flow__number::before { /* sp */
	width: 5vw;
	height: 5vw;
}

.pay-flow__number { /* sp */
	width: 5vw;
	font-size: 3vw;
	margin-right: 1vw;
}

.pay-flow__heading { /* sp */
	padding-left: 6vw;
}

.pay-flow__heading::after { /* sp */
	width: 8%;
	height: 1px;
	bottom: -1px;
}

.pay-flow__heading { /* sp */
	font-size: 3.5vw;
	padding-bottom: 1vw;
	margin-bottom: 3vw;
}

.pay-flow__heading--no-num { /* sp */
	line-height: 1.5;
	padding-left: 0;
}

.pay-flow__inner:not(:last-child) { /* sp */
	margin-bottom: 5vw;
}

.pay-flow__inner { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.pay-flow__image { /* sp */
	margin-top: 5vw;
	width: 100%;
}

.pay-flow__main { /* sp */
	width: 100%;
}

.pay-flow__text { /* sp */
	font-size: 3vw;
}

.pay-flow__text__image { /* sp */
	width: 40vw;
}

.pay-flow__text__image--sm { /* sp */
	width: 20vw;
}

.pay-flow__text__image--sp-lg { /* sp */
	width: 40vw;
}

.pay-flow__text__image--sp-sm { /* sp */
	display: inline-block;
	width: 40vw;
	margin-right: 2vw;
}

.pay-flow__text__btn { /* sp */
	font-size: 3vw;
	padding: 2vw 0;
	width: 91%;
}

.pay-flow__text__btn::before { /* sp */
	right: 5vw;
	width: 2vw;
	height: 4vw;
}

.pay-flow__text p:not(:last-child) { /* sp */
	margin-bottom: 4vw;
}

.pay-flow__text--mb-sm p:not(:last-child) { /* sp */
	margin-bottom: 4vw;
}

.pay-flow__text--mb-sm-2 p:not(:last-child) { /* sp */
	margin-bottom: 4vw;
}

.pay-flow__screen-btn { /* sp */
	width: 100%;
	min-width: inherit;
	font-size: 3vw;
	margin-right: 0;
	margin-bottom: 1em;
	position: relative;
	background: url(https://cdn.shopserve.jp/okabemen.co.jp/cdnassets/lp/lp-free-shipping/icon_arrow_pink.png) no-repeat right 20px center/8px auto, #fff;
}

.lead { /* sp */
	margin-bottom: 2vw;
}

.pay-message { /* sp */
	padding-bottom: 4vw;
}

.pay-message__text { /* sp */
	font-size: 3vw;
	line-height: 1.7353;
	letter-spacing: 0;
}

.paymethod-head { /* sp */
	padding: 4vw 0 4vw;
}

.paymethod-head--pb0 { /* sp */
	padding: 4vw 0 0;
}

.paymethod-head__heading { /* sp */
	font-size: 4vw;
	margin-bottom: 4vw;
}

.paymethod-head__heading--mb-sm { /* sp */
	margin-bottom: 4vw;
}

.paymethod-head__text { /* sp */
	font-size: 3vw;
}

.paymethod-head__btn { /* sp */
	margin-top: 4vw;
}

.paymethod-head__btn .btn { /* sp */
	width: 92%;
	height: 15vw;
	text-align: center;
}

.paymethod-head__btn .btn .text {
	font-size: clamp(3vw, 3.38541vw, 3vw) !important;
	line-height: 1.38 !important;
}

.paymethod-head__btn .btn:before,
.paymethod-head__btn .btn:after { /* sp */
	right: 4vw;
	width: 4vw;
	height: 1vw;
}

.paymethod-head__list { /* sp */
	font-size: 3vw;
}

}

/*sec_form*/

.sec_form .l_inner_1{
  padding-bottom:80px;
}

.sec_form_link{
  max-width:400px;
  margin:0 auto 20px;
  text-align: center;
}

.sec_form_link_second{
  display: block;
  color:#fff !important;
  background:#1a7026;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  margin:0 0 40px;
  padding:15px 10px;
  -webkit-transition: 0.3s background, 0.3s color;
  -o-transition: 0.3s background, 0.3s color;
  transition: 0.3s background, 0.3s color;
  border: 2px solid #1a7026;
}



.sec_form_first{
  padding:40px;
  border: 1px solid #942323;
  margin-bottom: 60px;
}

.sec_form_first_hl{
  text-align: center;
  font-size: 22px;
  margin-bottom:40px;
  padding-bottom:10px;
  border-bottom:2px dotted #942323;
}

.sec_form_read{
  font-size: 18px;
  font-weight: bold;
  color:#942323;

}


@media screen and (min-width: 769px) {

.sec_form_link_second:hover{
  color:#1a7026 !important;
  background:#fff;
}

}

@media screen and (max-width: 768px) {

  .sec_form .l_inner_1{
    padding-bottom:10vw;
  }
  
  .sec_form_link{
    max-width:90%;
    margin:0 auto 4vw;
  }
  
  .sec_form_link_second{
    font-size: 4.5vw;
    margin:0 0 5vw;
    padding:3vw 2vw;
    border: 1px solid #1a7026;
  }


  .sec_form_first{
    padding:2vw;
    margin-bottom: 10vw;
  }
  
  .sec_form_first_hl{
    font-size: 4vw;
    margin-bottom:4vw;
    padding-bottom:4vw;
  }
  
  .sec_form_read{
    font-size: 3.5vw;
  }
  

}


/*注文フォーム*/

/* Text Highlight */
/* button */
button {
  display: block;
}

textarea {
  resize: vertical;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #332E2C;
}

/* placeholder */
input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: #999;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
}
input:placeholder-shown, textarea:placeholder-shown {
  color: #999;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #999;
  opacity: 1;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
}
input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
  color: #999;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #999;
}
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #999;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #999;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: #999;
  opacity: 1;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #999;
  opacity: 1;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #999;
}

#orderForm form,
#orderForm{
  min-width: auto !important;
}

#orderForm{

  color: #332E2C;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, sans-serif;
}

#orderForm input[name^="CNT"],
#orderForm input[type="text"],
#orderForm input[type="email"],
#orderForm input[type="tel"],
#orderForm input[type="password"]{
  color: #332E2C;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, sans-serif;
  padding:10px !important;
  height:auto !important;
  font-size: inherit;
}


select{
  color: #332E2C;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, sans-serif;
  padding:10px 50px 10px 10px  !important;
  height:auto !important;
  font-size: inherit;

}

#orderForm .required{
  background:#942323 !important;
  height:auto !important;
}

#orderGuest .formItem label, #orderGuest .formItemAddr label{
  font-weight: bold !important;
}

.sec_form_attention{
  font-size:16px;
  color:#942323;
  padding-top: 20px;
}

#orderAgree input {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

#orderAgree span {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  display: inline-block;
}

#orderAgree span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  top: 1px;
  border: solid 2px #ccc;
  border-radius: 3px;
  -webkit-transition: all ease-in-out 0.125s;
    -o-transition: all ease-in-out 0.125s;
      transition: all ease-in-out 0.125s;
}

#orderAgree span:after {
  content: "";
  position: absolute;
  top: 11px;
  left: 5px;
  -webkit-transform: rotate(-45deg) scaleX(0);
    -ms-transform: rotate(-45deg) scaleX(0);
      transform: rotate(-45deg) scaleX(0);
      -webkit-transform-origin: left;
        -ms-transform-origin: left;
          transform-origin: left;
  width: 12px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transition: -webkit-transform 0.125s ease-in-out;
    transition: -webkit-transform 0.125s ease-in-out;
      -o-transition: transform 0.125s ease-in-out;
        transition: transform 0.125s ease-in-out;
          transition: transform 0.125s ease-in-out,
   -webkit-transform 0.125s ease-in-out;
}

#orderAgree input:checked + span:before {
  background-color: #074DBF;
  border-color: #074DBF;
}

#orderAgree input:checked + span:after {
  -webkit-transform: rotate(-45deg) scaleX(1);
    -ms-transform: rotate(-45deg) scaleX(1);
      transform: rotate(-45deg) scaleX(1);
}


@media screen and (max-width: 768px) {

  .sec_form_attention{
    font-size:3vw;
    padding-top: 2vw;
  }
  

  #orderForm form > div{
    padding:2vw !important;
  }

#orderForm .required{
  padding:0 0.5 0 0.8vw !important;
  font-size: 2vw;
  left: auto !important;
  margin-left:2vw;
}

.formItemErr .error{
  font-size: 3vw !important;

}

#orderForm input[name^="CNT"],
#orderForm input[type="text"],
#orderForm input[type="email"],
#orderForm input[type="tel"],
#orderForm input[type="password"]{
  padding:1vw !important;
}


select{
  padding:1vw 6.5vw 1vw 1vw  !important;

}

#orderInfo .formItem label,
#orderGuest .formItem label, #orderGuest .formItemAddr label{
  float:none !important;
  width:auto !important;
  display: block;
  font-size: 3vw;
  padding:0 0 2vw;
}

#orderGuest .formItem label + div, #orderGuest .formItemAddr label + div, #orderDeliv .formItem label + div, #orderDeliv .formItemAddr label + div {
  width: auto !important;
  display: block;
}


#orderForm label + div {
float: none !important;
}

#orderInfo .formItem label + div{
  width:auto;
}

.orderInfoOptStock{
  font-size: 3vw !important;
}

.orderInfoOptPrice{
  font-size: 4vw !important;
}

#orderInfo .formItem select{
  min-width: auto !important;
  font-size: 4vw !important;
}

#orderGuest .formItem input[type="email"] ~ p:not(.error){
  font-size: 3vw !important;
}

#itemCnt{
  width:50%;
}

#orderAgree input {
  height: 1vw;
  width: 1vw;
  clip: rect(1vw, 1vw, 1vw, 1vw);
}

#orderAgree span {
  padding-left: 4vw;
  font-size: 3vw !important;
  line-height:1.6;
}

#orderAgree span:before {
  width: 3vw;
  height: 3vw;
  top: 1vw;
  border-width: 1px;
  border-radius: 0;
}

#orderAgree span:after {
  top: 2.3vw;
  left: 1vw;
  width: 1.5vw;
  height: 1vw;

  border-width: 0.4vw;
}

.lpc_paymentInfo p{
  font-size: 2.5vw;
}

.lpc_paymentInfo input[type="button"] {
  padding: 1vw;
  border-radius: 1vw;
  font-size: inherit !important;
}

input[type=radio] + span{
  font-size: 3vw !important;
}

.lpc h3{
  font-size: 4vw;
}

.lpc h2, #orderForm > p.completeMsg{
  font-size: 5vw !important;
  padding:2vw 0 2vw !important;
}

}