/*
--------------------------------------------------------
共通部分
--------------------------------------------------------
*/

*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}

*::before,
*::after{
  background-size: cover;
  background-position: center;
  font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
}

body{
  font-size: 16px;
  line-height: 1.3;
  letter-spacing:0.08em;
  font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

main{
  overflow: hidden;
  padding-top: 80px;
}

img{
  display: block;
  object-position: center;
}

.container{
  max-width:1240px;
  margin:0 auto;
  padding:0 20px;
}

@media(any-hover:hover){
  a[href^="tel:"] {
    pointer-events: none;
  }
}



.hide{
  display: none!important;
}

.common_hover_opa{
  transition: 0.4s;
}

.common_hover_opa:hover{
  opacity: 0.7;
}

.common_button{
  width:fit-content;
  min-width:200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:24px;
}

.common_def_thumb{
  width:100%;
  height:100%;
  background-color:#E6E6E6;
}

.button_type1{
  border-radius: 10px;
  border: 1px solid #fff;
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.16);
  transition: 0.4s;
}

.button_type1:hover{
  opacity: 0.7;
}

.button_type2{
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.button_type2:hover{
  transform: translateY(3px);
}

.button_type2::after{
  content:"";
  width:100%;
  height:5px;
  background-color: inherit;
  position: absolute;
  bottom:0;
  left:0;
  filter: brightness(0.8);
  transition: 0.4s;
}

.button_type2:hover::after{
  height:2px;
}


.button_type3{
  max-width: 400px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  background-color: #000;
  color:#fff;

}

.button_type3 .button_bg{
  width: 150%;
  aspect-ratio: 1 / 0.9;
  /* height: 500%; */
  transition: all 0.5s ease-in-out;
  position: absolute;
  top:0;
  left:0;
  z-index:0;
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
  background-color: inherit;
}

.button_type3:hover .button_bg{
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.button_type3 span{
  position: relative;
  z-index:1;
}


.button_type4{
  -webkit-transform: rotateX(35deg);
  transform: rotateX(35deg);
  /* border-radius: 0.25rem 0.25rem 0 0; */
  border-radius: 6px 6px 0 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: 0.4s;
}

.button_type4 .button_bg {
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: 30%;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  border-radius: 0 0 6px 6px;
  filter: brightness(0.8);
}

.button_type4:hover {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  /* border-radius: 0.25rem; */
  border-radius: 6px;
}


.common_border_title_head{
  display: flex;
  align-items: center;
  justify-content: center;

}

.common_border_title_head .sec_title{
  min-width:415px;
  padding:0 24px;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  color: #3b4043;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common_border_title_head .border{
  width:100%;
  height:1px;
  flex-shrink: 1;
}

.common_pagenation{
  margin-top: 56px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:20px;
}

.common_pagenation span.current{/*現在のページボタン*/
  width: 30px;
  height: 30px;
  border:1px solid #707070;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color:#707070 ;
  color:#fff;
}

.common_pagenation a.page-numbers{/*指定のページ移動ボタン*/
  width: 30px;
  height: 30px;
  border:1px solid #707070;
  color:#000000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}

.common_pagenation a.page-numbers.next,
.common_pagenation a.page-numbers.prev{/*next prevボタン*/
  border:none;
}

.common_pagenation a.page-numbers:hover{
  background-color:#707070 ;
  color:#fff;
}

.common_pagenation a.page-numbers.next:hover,
.common_pagenation a.page-numbers.prev:hover{
  background: none;
  color:#000000;
}




header{
  position: fixed;
  top:0;
  left:0;
  z-index:120;
  width:100%;
  background-color: #fff;
}

header .header_container{
  padding:0 32px;
}

header .header_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height:80px;
}

header .header_logo_frame{
  display: block;
}

header .header_logo_frame a{
  display: block;
  height:50px;
  transition: 0.4s;
}

header .header_logo_frame a:hover{
  opacity: 0.7;
}

header .header_logo_frame img{
  height:100%;
  width:auto;
}

header .header_right{
  display: flex;
  align-items: center;
}

header .header_contact_area{
  margin-left: 56px;
  color:#222;
}

header .header_tel{
  color:#222;
  
}

header .header_tel span{
  font-size: 12px;
}

header .header_pc_menu_frame .menu{
  display: flex;
  align-items: center;
}

header .header_pc_menu_frame .menu>ul{
  display: flex;
  align-items: center;
}

header .header_pc_menu_frame .menu li{
  margin-left: 32px;
}

header .header_pc_menu_frame .menu li a{
  color:#000;
  white-space: nowrap;
}

header .drawer_menu_block{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width:40px;
  height:30px;
  cursor: pointer;
}

header .drawer_menu_block .bar{
  height:4px;
  border-radius: 2px; 
  transition-duration: 0.5s;
}

header .drawer_menu_block.active .bar1 {
  transform: translateY(12.8px) rotate(-45deg);
}
header .drawer_menu_block.active .bar2 {
  display: none;
}
header .drawer_menu_block.active .bar3 {
  transform: translateY(-12.8px) rotate(45deg);
}

#drawer_menu_bg{
  position: fixed;
  top:0;
  left:0;
  z-index:105;
  width:100vw;
  height:100vh;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  background-color: rgba(0,0,0,0.6);
}

#drawer_menu_bg.show{
  opacity: 1;
  pointer-events: auto;
}


#drawer_menu{
  position: fixed;
  bottom:0;
  right:0;
  z-index:110;
  width:100vw;
  max-width:400px;
  height: calc(100vh ); /* カスタムプロパティ未対応ブラウザ用のフォールバック */
  height: calc(var(--vh2, 1vh) * 100);
  /* background-color: #60bbd8; */
  opacity: 0;
  padding:100px 20px 20px;
  transform: translateX(100px);
  transition: 0.4s;
  pointer-events: none;
}

#drawer_menu.show{
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

#drawer_menu .frame{
  height:100%;
  overflow-y: scroll; 
}

#drawer_menu ul li{
  margin-bottom: 24px;
}

#drawer_menu ul li a{
  transition: 0.4s;
  color:inherit;
  font-weight: 700;
}

#drawer_menu ul li a:hover{
  opacity: 0.7;
}

#fix_sideber{
  position: fixed;
  z-index:50;
  right:-20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

#fix_sideber a{
  display: flex;
  justify-content: center;
  align-items: center;
  width:130px;
  height:130px;
  border-radius: 50%;
  background-color: #fff;
  border:1px solid #000000;
  color:#000;
}

#fix_sideber a+a{
  margin-top: -16px;
}

.wpcf7-form-control-wrap{
  /* display: none; */
}

#fix_sideber a .en_title{
  font-size: 13px;
  text-align: center;
}
#fix_sideber a .ja_title{
  font-size: 14px;
  text-align: center;
  margin-top: 6px;
}


.map_section .map{
  aspect-ratio: 1 / 0.2;
  width:100%;
  max-width: 100%;
  min-height:200px;
}

.map_section iframe{
  display: block;
  width:100%;
  height:100%;
}


.banner_link_section{
  padding-bottom: 48px;
}

.banner_link_section .card{
  display: flex;
  background-color: #F2F2F2;
  margin-bottom: 48px;
}

.banner_link_section .card .thumb{
  width:50%;
  background-color: #fff;
}

.banner_link_section .card .thumb img{
  width:100%;
  min-height:300px;
  height:100%;
  object-fit: cover;
}

.banner_link_section .text_block{
  width:50%;
  padding:32px;
}

.banner_link_section .text_block h2{
  font-weight: normal;
  font-size: 25px;
  margin-bottom: 12px;
}

.banner_link_section .text_block .p1{
  margin-bottom: 40px;
}

.banner_link_section .text_block .p2{
  line-height: 1.5;
  margin-bottom: 20px;
}

.banner_link_section .text_block .link{
  margin:16px auto 0;
  font-weight: normal;
  font-size: 15px;
  line-height: 1;


}


footer{
  padding:40px 0;

}

footer .logo_frame{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

footer .adress01{
  text-align: center;
  font-size: 18px;
  margin-bottom: 16px;
}

footer .border{
  /* border-top:dashed 1px #000; */
  
  height:1px;
  max-width:360px;
  margin:0 auto 16px;
}

footer .footer_address{
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 16px;
}

footer .footer_tel{
  text-align: center;
  margin-bottom: 16px;
}

footer .footer_tel a{
  font-weight: normal;
  font-size: 18px;
}

footer .sns_flex{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

footer .sns_flex a{
  width:40px;
  margin:0 32px;
}

footer .sns_flex a img{
  width:100%;
}

footer .copy{
  font-size: 18px;
  text-align: center;
}


/*
--------------------------------------------------------
下層共通
--------------------------------------------------------
*/


.common_full_mv_section{
  position: relative;
  height:500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:0 40px;
}

.common_full_mv_section .mv{
  position: absolute;
  width:100%;
  height:100%;
  z-index:-3;
  object-fit: cover;
}

.common_full_mv_section .page_title{
  font-weight: normal;
  font-size: 45px;
  line-height: 1.3; 
}



.common_half_mv_section .mv{
  position: relative;
  width:42vw;
  max-width:800px;
  min-width: 600px;
  margin:0 auto;
  
}

.common_half_mv_section .mv img{
  width:100%;
  aspect-ratio: 1/1;
  /* height: 100%; */
  max-height: 800px;
  object-fit: cover;
}

.common_half_mv_section .page_title{
  position: absolute;
  bottom:20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width:90%;
  display: flex;
  justify-content: center;
  line-height: 1.4;
  font-size: clamp(32px, 3vw, 56px);
}


/*
--------------------------------------------------------
TOPページ パターン1
--------------------------------------------------------
*/

body.top01_body{

}

main.top01_main{

}

.top01_section01{
  position: relative;

}

.top01_section01 .mv{
  width:100%;
  /* max-height:100vh; */
  object-fit: cover;
}

.top01_section01 .logo{
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin:auto;
  z-index:10;
  max-width:250px;
}

.top01_section01 .scroll{
  position: absolute;
  width:60px;
  left:0;
  right:0;
  bottom:32px;
  margin:auto;
  z-index:10;
}

.top01_section02{
  position: relative;
  padding:64px 0;
}

.top01_section02 .blog_bg{
  position: absolute;
  width:100%;
  height:100%;
  object-fit: cover;
  z-index:-10;
  top:0;
  left:0;
  opacity: 0.2;
}

.top01_section02 h2{
  font-family: "Noto Serif Myanmar";
  font-weight: normal;
  font-size: 25px;
  line-height: 1;
  text-align: center;
  margin-bottom: 16px;
}

.top01_section02 .sub{
  text-align: center;
  font-family: "Noto Serif Myanmar";
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 40px;
}

.top01_section02 .flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin:0 auto;

}

.top01_section02 .card{
  display: flex;
  width:45%;
  padding:32px 0;
  border-top:1px solid #707070;
  border-bottom:1px solid #707070;
  align-items: center;
  color: #000;
  margin-top: -1px;
}

.top01_section02 .card .thumb{
  width:150px;
  height:100px;
}

.top01_section02 .card .thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.top01_section02 .card .text_block{
  width:calc(100% - 150px);
  padding-left: 30px;
}

.top01_section02 .card .date{
  font-weight: normal;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 16px;
}

.top01_section02 .card h3{
  font-weight: normal;
  font-size: 15px;
  text-align: left;
}

.top01_section02 .blog_link{

  margin:24px auto 0;
  font-weight: normal;
  font-size: 15px;
  line-height: 1;
}

.top01_section03{
  padding:160px 0 72px;
}

.top01_section03 .area{
  position: relative;
}

.top01_section03 .area .img_frame{
  position: absolute;
  z-index:-2;
  width:calc(50% + 240px);
  height:600px;
}

.top01_section03 .area .img_frame img{
  object-fit: cover;
  width:100%;
  height:100%;
}

.top01_section03 .area .verti_text{
  height:360px;
  margin-bottom: 72px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.top01_section03 .area .verti_text .verti_title{
  font-weight: normal;
  font-size: 30px;
  line-height: 1.5;
}

.top01_section03 .area .text_block{
  width: 600px;
  min-height: 250px;
  background: rgba(242, 242, 242, 0.75);
  padding:56px 64px 24px;
}

.top01_section03 .area .text_block p{
  font-size: 15px;
}

.top01_section03 .area .link{
  margin:16px auto 0;
  font-weight: normal;
  font-size: 15px;
  line-height: 1;
}

.top01_section03 .area01{
  margin-bottom: 100px;

}

.top01_section03 .area01 .img_frame{
  top:0;
  left:0;
}

.top01_section03 .area01 .verti_text{
  margin-right: 0;
  margin-left: auto;
}

.top01_section03 .area01 .text_block{
  margin-right: 0;
  margin-left: auto;
}

.top01_section03 .area01{
  margin-bottom: 100px;

}

.top01_section03 .area02 .img_frame{
  top:0;
  right:0;
}

.top01_section04{
  padding-bottom: 120px;
}

.top01_section04 .catch{
  margin-bottom: 24px;
  font-size: 25px;
  text-align: center;
}

.top01_section04 .bg{
  position: relative;
  z-index:-1;
}

.top01_section04 .bg img{
  width:100%;
}

.top01_section04 .flex{
  display: flex;
  justify-content: center;
  margin-top: -24px;
}

.top01_section04 .flex .card{
  width:300px;
  background: rgba(242, 242, 242, 0.76);
  padding:32px 32px 40px;
  margin:0 12px;
}

.top01_section04 .flex .card .icon{
  width:100px;
  height:100px;
  margin:0 auto;
  display: flex;
  justify-content:center;
  align-items: center;
  margin-bottom: 32px;
}

.top01_section04 .flex .card .icon img{
  max-width:100%;
  max-height:100%;
}

.top01_section04 .flex .card .text{
  font-size: 15px;
  line-height:1.6;
}

.top01_section04 .contact_link{

  margin:40px auto 0;

  font-weight: normal;
  font-size: 15px;
  line-height: 1;

}



/*
--------------------------------------------------------
会社概要ーパターン1
--------------------------------------------------------
*/


body.company01_body{

}

main.company01_main{

}



.company01_section02{
  padding:80px 0 140px;
  /* background-image: url('../img/company01/vision_bg.jpg'); */
}

.company01_section02 .flex{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.company01_section02 .flex .text_area{
  width:100%;

  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.8;
  color: #3b4043;
  display: flex;
  justify-content: center;
}


.company01_section02 .flex .img_area{
  width:50%;
  flex-shrink: 0;
  margin-left: 64px;
}

.company01_section02 .flex .img_area img{
  width:100%;
}

.company01_section03{
  padding:140px 0;
  /* background-image: url('../img/company01/mission_bg.jpg'); */
  background-position: bottom;
}

.company01_section03 .flex{
  display: flex;
  justify-content: center;
  align-items: center;
}

.company01_section03 .flex .text_area{
  width:100%;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.8;
  color: #3b4043;
  display: flex;
  justify-content: center;
}


.company01_section03 .flex .img_area{
  width:480px;
  height:480px;
  flex-shrink: 0;
  margin-right: 15%;
}

.company01_section03 .flex .img_area img{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 50%;
}


.company01_section04{
  padding:64px 0 180px;
}

.company01_section04 .outline{
  width:fit-content;
  max-width:100%;
  min-width:800px;
  margin:0 auto;
}

.company01_section04 .outline li{
  display: flex;
  padding:16px 0;
  border-bottom:1px solid #ccc;
}

.company01_section04 .outline li:first-child{
  border-top:1px solid #ccc;
}

.company01_section04 .outline li .left{
  width:200px;
  padding-left: 16px;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.5;
}

.company01_section04 .outline li .right{
  width:100%;
  padding-left: 24px;
  font-weight: 500;
  line-height: 1.5;
  padding-right: 16px;
}


/*
--------------------------------------------------------
会社概要ーパターン2
--------------------------------------------------------
*/


body.company02_body{

}

main.company02_main{

}

.company02_section01{
  
  
}
/*
--------------------------------------------------------
会社概要ーパターン3
--------------------------------------------------------
*/


body.company03_body{

}

main.company03_main{
  padding-top: 120px;
}

.company03_section{

}



.company03_section01{
  padding-bottom: 60px;
  
}

.company03_section01 .mv_text{
  margin-top: 80px;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 2;
  color: #3b4043;
}

.company03_info_section{
  padding:60px 0;
}

.company03_info_section .flex{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.company03_info_section .flex .img_frame{
  width:50%;
  margin-right: 56px;
  flex-shrink: 0;
}

.company03_info_section .flex .img_frame img{
  max-width:100%;
}

.company03_info_section .flex .text_frame{
  width:100%;
}

.company03_info_section .flex .text_frame p{
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #3b4043;

}

.company03_outline_section{
  padding:60px 0;
}

.company03_outline_section .outline_frame{
  margin-top: 64px;
}

.company03_outline_section  table{
  /* table-layout: fixed; */
  width:900px;
  max-width:100%;
  margin:0 auto;
  border-collapse: collapse;
}

.company03_outline_section  table th,
.company03_outline_section  table td{
  vertical-align: top;
  padding:16px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  border-bottom:1px solid #707070;
}

.company03_outline_section  table th{
  text-align: left;
}

.company03_outline_section table tr{
  
}

.company03_outline_section table a{
  color: #75d2d6;
  border-bottom:1px solid #75d2d6;
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .company03_outline_section table a:hover{
    opacity: 0.5;
  }
}



/*
--------------------------------------------------------
事業について - パターン1
--------------------------------------------------------
*/


body.business01_body{

}

main.business01_main{

}


.business01_section02{
  padding-bottom: 148px;
}

.business01_section02 .service_area{
  padding-top: 40px;
  padding-bottom: 72px;
  position: relative;
  /* background-image: url('../img/business01/business01_bg.jpg'); */
  /* background-position: bottom; */
}

.business01_section02 .service_area .bg{
  width:100%;
  height:100%;
  object-fit: cover;
  position: absolute;
  z-index:-10;
  top:0;
  left:0;
}

.business01_section02 .service_area .bg_cover{
  width:100%;
  height:100%;
  background-color: rgba(255,255,255,0.8);
  position: absolute;
  z-index:-8;
  top:0;
  left:0;
}

.business01_section02 .service_area .flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}


.business01_section02 .service_area .text_area{
  width:100%;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.8;
  color: #3b4043;
  display: flex;
  justify-content: center;
}

.business01_section02 .service_area .img_area{
  width:50%;
  flex-shrink: 0;
  margin-left: 64px;
}

.business01_section02 .service_area .img_area img{
  width:100%;
}


.business01_section02 .service_area .img_area .service_title{
  display: flex;
  justify-content: center;
  align-items: center;
  padding:12px 24px;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;

}

.business01_section02 .service_area:nth-child(even) .flex{
  flex-direction: row-reverse;
}

.business01_section02 .service_area:nth-child(even) .flex .img_area{
  margin-left: 0;
  margin-right: 64px;
}


/*
--------------------------------------------------------
店舗紹介01
--------------------------------------------------------
*/


body.shop01_body{

}

main.shop01_main{

}


.shop01_section02{
  padding:64px 0 80px;
}

.shop01_section02 .shop_list{

  display: flex;
  flex-wrap: wrap;
}

.shop01_section02 .shop_list li{
  width:31.6%;
  margin-right: 2.2%;
  margin-bottom: 48px;
}

.shop01_section02 .shop_list li:nth-child(3n){
  margin-right: 0;
}

.shop01_section02 .shop_list li .thumb{
  height:380px;
  position: relative;
  margin-bottom: 24px;
}

.shop01_section02 .shop_list li .thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.shop01_section02 .shop_list li .shop_name{
  position: absolute;
  bottom:0;
  right:0;
  padding:8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  }

  .shop01_section02 .shop_list li .shop_info{
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 2;
  color: #3b4043;
  }

  .shop01_section02 .shop_list li .shop_title{
    margin-top: 16px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: #3b4043;
    padding-left: 16px;
    position: relative;
  }

  .shop01_section02 .shop_list li .shop_title .border{
    display: block;
    width:4px;
    height:100%;
    position: absolute;
    left:0;
    top:0;
  }

  .shop01_section02 .shop_list li .shop_text{
    margin-top: 16px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 2;
    color: #3b4043;

  }

  .shop01_section02 .shop_list li .shop_map{
    margin:24px auto 0;
    width: 200px;
    max-width:100%;
    height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
  }

  .shop01_section02 .shop_list li .shop_url{
    margin:24px auto 0;
    width: 200px;
    max-width:100%;
    height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    border:1px solid;
  }



  /*
--------------------------------------------------------
店舗紹介02
--------------------------------------------------------
*/


body.shop02_body{

}

main.shop02_main{

}

.shop02_section02{
  padding:60px 0 80px;
}

.shop02_section02 .shop_block{
  margin-bottom: 64px;
}

.shop02_section02 .shop_block:last-child{
  margin-bottom: 0;
}

.shop02_section02 .shop_block .img_list{
  margin-top: 48px;
  display: flex;
  justify-content: center; 
  gap:0 40px;
}

.shop02_section02 .shop_block .img_list img{
  width:300px;
  height:300px;
  object-fit: cover;
}

.shop02_section02 .shop_block .shop_info{
  margin-top: 48px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.shop02_section02 .shop_block .shop_text_head{
  font-weight: bold;
  font-size: 30px;
  line-height: 1.3;
  color: #3b4043;
  width:fit-content;
  padding:0 24px 8px;
  min-width:300px;
  max-width:80%;
  margin:0 auto;
  border-bottom:1px solid #3b4043;
  margin:32px auto 0;
  display: flex;
  justify-content: center;
}

.shop02_section02 .shop_block .shop_text{
  max-width: 800px;
  width:fit-content;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 2;
  color: #3b4043;
  margin:16px auto 0;
}

.shop02_section02 .shop_block .shop_map{
  margin:24px auto 0;
  width: 200px;
  max-width:100%;
  height: 50px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color:#fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.shop02_section02 .shop_block .shop_url{
  margin:24px auto 0;
  width: 200px;
  max-width:100%;
  height: 50px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  border:1px solid;
}

/*
--------------------------------------------------------
Q&Aパターン01
--------------------------------------------------------
*/


body.faq01_body{

}

main.faq01_main{

}

.faq01_section02{
  padding:48px 0 96px;
}

.faq01_section02 .faq01_msg{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1,8;
  color: #3b4043;

}

.faq01_section02 .faq_list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding:0 50px;
  align-items: flex-start;
}

.faq01_section02 .faq_block{
  width:500px;
  position: relative;
  padding:6px;
  margin-bottom: 24px;
}


.faq01_section02 .faq_block .bg{
  position: absolute;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100%;
  opacity: 0.3;
  
}

.faq01_section02 .faq_block .question_area{
  padding:18px 18px 0 80px;
  position: relative;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 2;
  color: #3b4043;
  min-height:64px;
}

.faq01_section02 .faq_block .question_area::before{
  content:"Q";
  width:50px;
  height:50px;
  border-radius: 50%;
  border: 1px solid #707070;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  color: #3b4043;
  position: absolute;
  left:14px;
  top:12px;
}

.faq01_section02 .faq_block .answer_area{
  margin-top: 16px;
  background-color: #fff;
  padding:18px 18px 18px 80px;
  position: relative;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 2;
  color: #3b4043;
  min-height:80px;
}

.faq01_section02 .faq_block .answer_area::before{
  content:"A";
  width:50px;
  height:50px;
  border-radius: 50%;
  border: 1px solid #707070;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  color: #3b4043;
  position: absolute;
  left:14px;
  top:12px;
}



  /*
--------------------------------------------------------
Q&Aパターン02
--------------------------------------------------------
*/


body.faq02_body{

}

main.faq02_main{

}

.faq02_section02{
  padding:56px 0 80px;
}

.faq02_section02 .faq02_msg{
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1,8;
  color: #3b4043;
}

.faq02_section02 .faq_area{

}

.faq02_section02 .faq_area .tab_flex{
  display: flex;
  justify-content: center;
}

.faq02_section02 .faq_area .tab{
  cursor: pointer;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: #3b4043;
  padding:16px;
  position: relative;
}

.faq02_section02 .faq_area .tab.active{
  pointer-events: none;
}

.faq02_section02 .faq_area .tab .tab_bg{
  width:100%;
  height:100%;
  position: absolute;
  z-index:-1;
  top:0;
  left:0;
  opacity: 0.2;
}

.faq02_section02 .faq_area .tab.active .tab_bg{
  opacity: 0.5;
}

.faq02_section02 .faq_area .tab:first-child{
  border-top-left-radius:24px;
}
.faq02_section02 .faq_area .tab:last-child{
  border-top-right-radius:24px;
}

.faq02_section02 .faq_body{
  padding:40px 120px 40px;
  overflow: hidden;
  position: relative;
  border-radius: 0 0 24px 24px;
}

.faq02_section02 .faq_body_border{
  width:100%;
  height:100%;
  position: absolute;
  top:0;
  left:0;
  border:5px solid;
  opacity: 0.5;
  border-radius: 0 0 24px 24px;
}


.faq02_section02 .faq_block{
  border-bottom:1px solid #707070;
}

.faq02_section02 .faq_block:first-child{
  border-top:1px solid #707070;
}

.faq02_section02 .faq_block .question_area{
  cursor: pointer;
  position: relative;
  padding:16px 24px 16px 48px;
  line-height: 1.5;
  font-weight: 500;
}

.faq02_section02 .faq_block .answer_area{
  padding-left: 48px;
  padding:16px 0 16px 48px;
  position: relative;
  display: none;
  line-height: 1.5;
  /* margin-top: 8px; */
}

.faq02_section02 .faq_block .icon_frame{
  position: absolute;
  left:0;
  top:12px;
}

.faq02_section02 .faq_block .icon{
  display: flex;
  justify-content: center;
  align-items: center;
  width:32px;
  height:32px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  color: #3b4043;
  position: relative;
  overflow: hidden;
}

.faq02_section02 .faq_block .icon_bg{
  opacity: 0.2;
  width:100%;
  height:100%;
  position: absolute;
  top:0;
  left:0;
  z-index:-1;
}

  /*
--------------------------------------------------------
採用について - パターン1
--------------------------------------------------------
*/


body.recruit01_body{

}

main.recruit01_main{

}

.recruit01_section02{
  padding:64px 0 120px;
}

.recruit01_section02 .recruit_block{
  margin-top: 160px;
}

.recruit01_section02 .recruit_block .recruit_title{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

.recruit01_section02 .recruit_block .flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* flex-wrap: wrap; */
}

.recruit01_section02 .recruit_block .recruit_text{
  width:100%;
}

.recruit01_section02 .recruit_block .recruit_img{
  width:580px;
  flex-shrink: 0;
  margin-left: 140px;
}

.recruit01_section02 .recruit_block .recruit_img img{
  width:100%;
}

.recruit01_section02 .recruit_block .appli_title{
  margin-top: 64px;
  margin-bottom: 8px;
  font-weight: bold;
}

.recruit01_section02 .recruit_block .table_frame{
  margin-top: 16px;
}

.recruit01_section02 .recruit_block table{
  table-layout: fixed;
  border-collapse: collapse;
}

.recruit01_section02 .recruit_block table td{
  padding:12px 24px;
  border: 1px solid #707070;
  line-height: 1.5;
}

.recruit01_section02 .recruit_block table td:first-child{
  font-weight: bold;
}

/*
--------------------------------------------------------
採用について - パターン1
--------------------------------------------------------
*/


body.recruit02_body{

}

main.recruit02_main{

}

.recruit02_section02{
  padding:80px 0 50px;
}

.recruit02_section02 .block_list{
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap:0 75px;
}

.recruit02_section02 .block{
  width:350px;
}

.recruit02_section02 .block .thumb{
  aspect-ratio: 1 / 1.08;
}

.recruit02_section02 .block .thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.recruit02_section02 .block .block_head{
  margin-top: 8px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  justify-content: center;
}

.recruit02_section02 .block .block_text{
  margin-top: 24px;
  line-height: 1.5;
}

.recruit02_section03{
  padding:50px 0 100px;
}

.recruit02_section03 .flex{
  display: flex;
  align-items: flex-start;
  margin-top: 80px;
}

.recruit02_section03 .flex .text_area{
  width:100%;
  line-height: 1.75;
}

.recruit02_section03 .flex .img_area{
  width:45%;
  flex-shrink:0 ;
  margin-left: 48px;
}

.recruit02_section03 .flex .img_area img{
  width:100%;
}

.recruit02_section03 .flex:nth-child(even){
  flex-direction: row-reverse;
}

.recruit02_section03 .flex:nth-child(even) .img_area{
  margin-left: 0;
  margin-right: 48px;
}

.recruit02_section04{
  padding:50px 0 80px;
}
/*
--------------------------------------------------------
メニュー パターン01
--------------------------------------------------------
*/


body.menu01_body{

}

main.menu01_main{

}

.menu01_section02{
  padding:96px 0 120px;
}

.menu01_section02 .table_title{
  display: flex;
  justify-content: center;
  align-items: center;
  padding:16px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  /* color:#fff; */
  position: relative;
}

.menu01_section02 .table_title .bg{
  position: absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:-1;
  opacity: 0.6;
}

.menu01_section02 table{

  border-collapse: collapse;
  width:100%;
}

.menu01_section02 table td{
  padding:12px 24px;
  border: 1px solid #707070;
  line-height: 1.5;
  
}

.menu01_section02 table td:first-child{
  width:300px;
}

.menu01_section02 table .cell1 td:first-child{
  width:100%;
}

.menu01_section02 table .cell2 td:first-child{
  width:calc(100% - 300px);
}

.menu01_section02 table td:last-child{
  width:300px;
  text-align: center;
}

.menu01_section02 .contact_link{
  margin:40px auto 0;
}


/*
--------------------------------------------------------
料金プラン パターン01
--------------------------------------------------------
*/


body.plan01_body{

}

main.plan01_main{

}

.plan01_section02{
  padding:64px 0 120px;
}

.plan01_section02 .contact_link{
  margin:48px auto 0;
}

.plan01_section02 .service_block{
  margin-bottom: 88px;
}

.plan01_section02 .service_block:last-child{
  margin-bottom: 0;
}

.plan01_section02 .service_block .common_border_title_head{
  /* margin-bottom: 80px; */
}

.plan01_section02 .service_block .flex{

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width:1150px;
  margin:80px auto 0;
  gap:40px 50px;
}


.plan01_section02 .service_block .plan_box{
  border:1px solid #707F89;
  width:250px;
}

.plan01_section02 .plan_box .plan_title{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height:100px;
  padding:16px 12px;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;

}

.plan01_section02 .plan_box ul li{
  padding:24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan01_section02 .plan_box ul li:nth-child(even) .bg{
  width:100%;
  height:100%;
  opacity: 0.2;
  position: absolute;
  top:0;
  left:0;
  z-index:-1;
}

.plan01_section02 .plan_box ul li .price{
  font-weight: normal;
  font-size: 20px;
  text-align: center;
}

.plan01_section02 .plan_box ul li .option_title{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
}

.plan01_section02 .plan_box ul li .option_text{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
}

.plan01_section02 .remark_frame{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  line-height: 1.5;
}



/*
--------------------------------------------------------
ブログ パターン01
--------------------------------------------------------
*/


body.blog01_body{

}

main.blog01_main{

}


.blog01_section02{
  padding:80px 0 120px;
}

.blog01_section02 .blog_list{
  display: flex;
  flex-wrap: wrap;
  gap:75px 60px;
}

.blog01_section02 .blog_list li{
  width:350px;
}

.blog01_section02 .blog_card{
  display: block;
  width:100%;
  font-weight: normal;
  color: #000;
} 

.blog01_section02 .blog_card .thumb{
  width:100%;
  aspect-ratio: 1 / 0.715;
}

.blog01_section02 .blog_card .thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.blog01_section02 .blog_card .blog_text_area{
  padding:24px 24px 16px;
  position: relative;
  background: rgba(175, 175, 175, 0.17);

}

.blog01_section02 .blog_card .blog_title{
  font-size: 16px;
  line-height: 1.5;
}

.blog01_section02 .blog_card .blog_date{
  font-size: 14px;
  margin-top: 16px;

}
/*
--------------------------------------------------------
ブログ パターン02
--------------------------------------------------------
*/


body.blog02_body{

}

main.blog02_main{

}


.blog02_section02{
  padding:80px 0;
}

.blog02_section02 .flex{
  display: flex;
  justify-content: space-between;
}

.blog02_section02 .article{
  width:700px;
}

.blog02_section02 .blog_card{
  padding:40px 24px;
  border:1px solid #707070;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  color:#000000;
}

.blog02_section02 .blog_card:last-child{
  margin-bottom: 0;
}


.blog02_section02 .blog_card .thumb{
  flex-shrink: 0;
  width:250px;
  height:150px;
}

.blog02_section02 .blog_card .thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
}


.blog02_section02 .blog_card .text_area{
  width:100%;
  padding-left: 32px;
}

.blog02_section02 .blog_card .blog_cat{
  font-weight: normal;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.blog02_section02 .blog_card .blog_time{
  font-weight: normal;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.blog02_section02 .blog_card .blog_title{
  font-weight: normal;
  font-size: 18px;
  line-height: 1.8;
}

#sidebar02{
  width:400px;
}

#sidebar02 .head_text{
  font-size: 30px;
  line-height: 1.3;
  color: #000;
  padding-bottom: 4px;
  border-bottom:2px solid #000;
}

#sidebar02 .category_area{
  margin-bottom: 80px;
}

#sidebar02 .category_area ul{
  margin-top: 24px;
}

#sidebar02 .category_area ul li{  
  margin-top: 16px;

}

#sidebar02 .category_area ul li a{
  font-size: 20px;
  color:#000;
}

#sidebar02 .category_area ul li a:hover{
  border-bottom:2px solid #000;
}

#sidebar02 .category_area ul li a.active{
  pointer-events: none;
  border-bottom:2px solid #000;
}

#sidebar02 .recent_area{

}

#sidebar02 .recent_list{
  margin-top: 24px;
}

#sidebar02 .recent_list li{
  margin-bottom: 32px;
}

#sidebar02 .recent_list .recent_card{
  display: flex;
  color:#000;
}

#sidebar02 .recent_card .recent_thumb{
  flex-shrink: 0;
  width:150px;
  height:90px;
}

#sidebar02 .recent_card .recent_thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
}

#sidebar02 .recent_card .recent_text_area{
  width:100%;
  padding-left: 24px;
}

#sidebar02 .recent_card .recent_cat{
  font-size: 13px;
  margin-bottom: 6px;
}

#sidebar02 .recent_card .recent_time{
  font-size: 11px;
  margin-bottom: 12px;
}

#sidebar02 .recent_card .recent_title{
  font-size: 15px;
  line-height: 1.5;
}




/*
--------------------------------------------------------
シングルページ 共通
--------------------------------------------------------
*/


.common_single_block{

}

.common_single_block .blog_title{
  font-weight: bold;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 40px;
}

.common_single_block h2{
  margin: 32px 0;
  pointer-events: none;
  position: relative;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
}

.common_single_block h3{
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin: 24px 0;
}

.common_single_block p{
  line-height: 2;
  margin: 24px 0;
}

.common_single_block figure{
  margin-top: 24px;
  margin-bottom: 24px;
}


/*
--------------------------------------------------------
シングルページ パターン01
--------------------------------------------------------
*/


body.single01_body{

}

main.single01_main{

}

.single01_section02{
  padding:108px 0 160px;
}

.single01_section02 article{
  padding:88px 100px 112px;
  border:1px solid #A0A0A0;
}


.single01_section02 .link_flex{
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}

.single01_section02 .link_flex .link{
  display: flex;
  justify-content: center;
  align-items: center;
  width:40%;
  
}



.single01_section02 .link_flex a{
  transition: 0.4s;
  color:#000;
}

.single01_section02 .link_flex a:hover{
  opacity: 0.7;
}


.single01_section02 .link_flex .archive_link{
  white-space: nowrap;
}

/*
--------------------------------------------------------
シングルページ パターン02
--------------------------------------------------------
*/


body.single02_body{

}

main.single02_main{

}

.single02_section02{
  padding:80px 0;
}

.single02_section02 .flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.single02_section02 .flex .article{
  width:700px;
}

.single02_section02 .single_frame{
  padding:40px;
  border:1px solid #707070;
  margin-bottom: 48px;
}

.single02_section02 .link_flex{
  padding:0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single02_section02 .link_flex a{
  transition: 0.4s;
  color:#000;
}

.single02_section02 .link_flex a:hover{
  opacity: 0.7;
}

/*
--------------------------------------------------------
お問い合わせ - パターン1
--------------------------------------------------------
*/


body.contact01_body{

}

main.contact01_main{

}

.contact01_section02{
  padding:80px 0 120px;
}

.contact01_section02 .p01{
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
  line-height: 2;
}

.contact01_section02 .contact_block{
  max-width:800px;
  margin:0 auto;
}

.contact01_section02 .contact_block .form_line{
  margin-bottom: 24px;
}


.contact_block .form_line .title{
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.contact_block .form_line .title::before{
  content:"任意";
  width: 50px;
  height: 30px;
  background-color: #adadad;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  font-size: 15px;
  line-height: 1;
  color: #fff;

}

.contact_block .form_line .title.must::before{
  content:"必須";
  background-color: #FF0000;
}

.contact_block .form_line input[type="text"],
.contact_block .form_line input[type="number"],
.contact_block .form_line input[type="tel"],
.contact_block .form_line input[type="email"]
{
  border:none;
  background:none;
  display: block;
  width:100%;
  height:50px;
  padding:0 16px;
  border:1px solid #707070;
}


.contact_block .form_line textarea{
  border:none;
  background:none;
  display: block;
  width:100%;
  height:200px;
  padding:16px;
  line-height: 1.5;
  border:1px solid #707070;
}

.contact_block input[type="submit"]{
  border:none;
  background:none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:40px auto 0;
  width: 200px;
  height: 40px;
  cursor: pointer;
  transition: 0.4s;
  background-color: #6FCC59;
  color:#fff;
}

.contact_block input[type="submit"]:hover{
  opacity: 0.7;
}



/*
--------------------------------------------------------
皆海運送用
--------------------------------------------------------
*/

.minami_mv_section{

}

.minami_mv_section .mv{
  width: 1200px;
  max-width: 100%;
  height:420px;
  margin: 0 auto 80px;
  object-fit: cover;
}

.minami_mv_section .mv img{
  width:100%;
  height:100%;
  object-fit: cover;
}


.minami_page_title{
  font-weight: normal;
  font-size: 45px;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  text-decoration: underline;
  margin-bottom: 64px;
}


.blog01_section .category_list{
  width: fit-content;
  margin:0 auto 80px;
  display: flex;
  flex-wrap: wrap;
}

.blog01_section .category_link{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width:145px;
  min-height:60px;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  padding:4px;
  border:1px solid #707070;
  margin-left: -1px;  
  transition-duration: 0.4s;
}

.blog01_section .category_link::after{
  content:'';
  width:100%;
  height:3px;
  background-color: #0059D7;
  position: absolute;
  bottom:0;
  left:0;
  transition-duration: 0.4s;
  opacity: 0;
}

.blog01_section .category_link.active{
  background-color: rgba(0,89,215,0.09);
}

.blog01_section .category_link.active::after{
  opacity: 1;
}

@media(any-hover:hover){
  .blog01_section .category_link:hover{
    background-color: rgba(0,89,215,0.09);
  }
  
  .blog01_section .category_link:hover::after{
    opacity: 1;
  }
}

.blog01_section .category_link:first-child{
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.blog01_section .category_link:last-child{
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.grecaptcha-badge { visibility: hidden; }